/* Stylesheet for Study Guides page */
.champions-section {
	padding: 4rem;
	background-image: url(../images/champions-background.jpg);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.champions-section .wrapper.row > div {
	margin-bottom: 4rem;
}

.champions-section .wrapper.row h4 {
	line-height: 120%;
	padding-top: 8px;
	padding-bottom: 0px;
	max-width: 800px;
	margin: 20px auto;
}



/* champion year section layout */

.year-champion-set {
	display: flex;
	flex-direction: row;

	margin-bottom: 140px;
}

.champion-left {
	width: 30%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
}
.champion-right {
	width: 68%;
}

.year-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
}
.year-block img {
	width: 300px !important;
	height: 300px !important;
	margin-bottom: 20px;
}
.year-block h3 {
	font-size: 28px;
	line-height: 30px;
	margin-top: 20px;
	color: #88DBFF;
}

/* cycler */
.cycler { 
	position: relative; width: 90%; height: 220px; max-height: 220px; text-align: center;
}
.cycler img {
	position: absolute; z-index:1; width: 100%; height: 220px;
	max-height: 220px; max-width: 100%; left: 0px; right: 0px; margin: 0px auto;
}
.cycler img.active { z-index:3; }
.trophy-masked { 
	margin: 0px auto;
  	display: block;		  	
  	-webkit-mask-image: url('../images/trophy-mask.png');
  	mask-image: url('../images/trophy-mask.png');
  	-webkit-mask-position: center center;
  	mask-position: center center;
  	-webkit-mask-repeat: no-repeat;
  	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
  	mask-size: contain;
}


.champion-block {

}



.champions-row {
	display: flex;
	align-items: center;
	justify-content: center;	
}
.champions-row img {
	width: auto;
	height: 105px;
	margin-bottom: 50px;
}
.champions-row > ul {
	background-repeat: no-repeat;
	background-size: auto 80px;
	background-position: left center;
	padding-left: 20px;
	text-align: center;
	min-height: 100px;
	display: block;
	padding-bottom: 20px;
	margin-bottom: 30px;
	max-width: 800px;
}
.champions li {
	display: block;
	font-size: 16px;
	padding-bottom: 8px;
}
.champions-row.gold-champions > ul, .gold-champions, .champions-row.silver-champions > ul, .silver-champions, .champions-row.bronze-champions > ul, .bronze-champions {
	background-image: none !important;
}



.link-box p {
    text-transform: none;
    line-height: 1.4rem;
}
.link-box .button {
    margin-top: 1rem;
    display: inline-block;
}



.row.years-row {
	padding-top: 80px;
}


#the-boys-group, #the-girls-group {
	display: none;
}
.active-champions {
	display: block !important;
}

.boy-girl-toggler {
	display: flex;
	align-items: center;
	justify-content: center;	
}
.toggler-boys {
	display: inline-block;
	padding-right: 20px;
	text-transform: uppercase;
	font-size: 28px;
	font-weight: 700;
	color: #0a80d5;
}
.toggler-girls {
	display: inline-block;
	padding-left: 20px;
	text-transform: uppercase;
	font-size: 28px;
	font-weight: 700;
	color: #0a80d5;
}
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #88d9fe;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(24px);
  -ms-transform: translateX(24px);
  transform: translateX(24px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}







@media (max-width: 1200px) {
	
	
}

@media(max-width: 992px) {
	
	.champions-section {
		padding: 2rem;    	
	}  

	.year-champion-set {
		display: flex;
		flex-direction: column;
		border-bottom: solid 1px #88dbff;
		margin-bottom: 60px;
	} 

	.champion-left {
		width: 100%;
		display: block;
	}
	.champion-right {
		width: 100%;
		display: block;
	}

	.year-block {
		padding-bottom: 60px;
	}

	.year-block img {	
		margin: 0px auto !important;
	}

	
    
}
@media(max-width: 768px) {
   .champions-section {
		padding: 2rem;    	
	}  

	.champions-row {
		display: flex;
		flex-direction: column;
		text-align: center;
	}
	.champions-row img {
		margin: 0px auto 20px auto;

	}
    
}