@charset "utf-8";

#example__modal {
	display: none;
}
#example__modal.example__show {
	display: flex;
}

#exampleBtn{
	background: #ad00ff;
	padding: .5rem .75rem;
	border-radius: 10px;
	color: white;
	font-weight: 600;
	font-size: .85rem;
	cursor: pointer;
	width: fit-content;
	margin: auto;
}
#example__form {
	display: flex;
	justify-content: center;
	align-items: center;
}
.example__wrapper {
	width: fit-content;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	border-radius: 5px;
}
#example__holder{
	min-width: 1100px;
}
#example__tabGrid{
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: white;
	border-radius: 5px;
}
#example__titleHolder{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
#example__title{
	background: #ad00ff;
	padding: .5rem 1rem;
	border-radius: 10px 10px 0 0;
	font-weight: 500;
}

#example__close{
	color: white;
	cursor: pointer;
}
#example__tabContent{
	background: #f8f8f8;
	box-shadow: 0px 10px 50px 25px rgba(0, 0, 0, 0.15);
	border-radius: 0 15px 15px 15px;
	padding: .75rem .5rem;
	display: flex;
	justify-content: space-between;
	text-align: center;
	font-size: .8rem;
	line-height: 1.5;
	color: var(--brand-blue);
	font-weight: 500;
}
.example__columnTitles{
	font-weight: 700;
	font-size: 1;
}

.example__columns{
	background: white;
	border-radius: 15px;
	min-height: 500px;
	padding: 1rem;
	margin: 0 .25rem;
	display: flex;
}

#example__column1{
	flex-direction: column;
	justify-content: space-between;

}
#example__column1Content{
	flex-grow: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

#example__column2{
	flex-direction: column;
	justify-content: space-between;
}
#example__column2Content{
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
}
#example__column2Content > div{
	padding: 1rem 0;
}
#example__column3{
	flex-direction: column;
	justify-content: space-between;
}
#example__column3Content{
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
}
#example__column3Content > div{
	padding: 1rem 0;
}

#example__column4{
	flex-direction: column;
	justify-content: space-between;
	flex-grow: 1;
	padding: 1rem 0;
}
#example__column4Content{
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
}
.example__progressGrid{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.example__progressTitle{
	padding: 0 1rem;
}
.example__progressBar{
	border-radius: 100px;
	background: #C1C7F0;
	display: flex;
	align-items: center;
	min-width: 10rem;
	margin: 0 1rem;
}

.example__progressFill{
	border-radius: 100px 0 0 100px;
	background: var(--brand-blue);
	min-height: .5rem;
}

#example__progress1 .example__progressFill{
	width: 75%;
}
#example__progress2 .example__progressFill{
	width: 80%;
}
#example__progress3 .example__progressFill{
	width: 40%;
}
#example__progress4 .example__progressFill{
	width: 80%;
}
#example__progress5 .example__progressFill{
	width: 95%;
}
#example__progress6 .example__progressFill{
	width: 80%;
}
#example__progress7 .example__progressFill{
	width: 70%;
}
#example__column5{
	flex-direction: column;
	justify-content: space-between;
}
#example__column5Content{
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 1rem;
}

#example__score{
	font-size: 2rem;
}


@media only screen and (max-width: 800px) {
	#example__tabGrid{
		width: 100vw;
		position: fixed;
		left: 0;
		top: 0;
	}
	#example__title{
		border-radius: 0 0 15px 0;
	}
	#example__tabContent{
		overflow: scroll;
		overflow-x: hidden;
		flex-direction: column;
		max-width: 90%;
		margin: auto;
		max-height: 100vh;
	}
	.example__columns{
		min-height: 150px;
		margin: .25rem 0;
	}
	#example__close {
		color: var(--brand-blue);
		cursor: pointer;
		margin-right: .5rem;
	}
	.example__progressGrid{
		width: 100vw;
		flex-wrap: wrap;
	}
	.example__progressGrid > *{
		width: 100%;
		margin-top: .5rem;
	}
	#example__column4{
		min-height: 500px;
	}
}
