
/*----------------------------------------------*/
/*				Page Specific					*/
/*----------------------------------------------*/


.page-header{
	text-align: center;
	font-size: 25px;
	font-weight: 600;
}


.page-subheader{
	font-weight: 500;
	text-align: center;
	font-size: 15px;
	color: #8e8e8e;
	max-width: 800px;
	width: 95%;
	margin: auto;
}

.plans-container{
	display: flex;
	justify-content: center;
	align-content: center;
	max-width: 1100px;
	margin: auto;
	min-height: 335px;
	flex-wrap: wrap;
}

.info-container{
	display: flex;
	justify-content: center;
	align-content: center;
	margin-top: 50px;
	flex-wrap: wrap;
}


.info-container div{
	color: black; 
	font-size: 13px;
	padding: 10px 30px;
}


.promo-code-row{
	text-align: center;
	font-size: 15px;
	color: black; 
	font-weight: bold;
}

.subscription-question{
	background-color: white; 
	color: #7ba5cc; 
	padding: 15px 25px; 
	margin: 10px 30px; 
	font-size: 20px; 
	text-align: center; 
	min-width: 200px;
	font-weight: bold;
	display: flex;
	flex-direction: column;
	justify-content: center;
	-moz-border-radius: 35px;
	-webkit-border-radius: 35px;
	border-radius: 35px;
	border: 5px solid #01245a;
}

.subscription-question.plan{
	min-width: 200px;
	width: 200px;
	padding: 15px 5px;
	color: rgb(80,80,80); 
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

.subscription-question.active{
	border: 5px solid #7ba5cc;
}

.subscription-question-row{
	display: flex; 
	justify-content: center;
	flex-wrap: wrap;
}

.subscription-question-title{
	color: white; 
	padding-left: 10px; 
	font-size: 30px;
	text-align: center;
}

.plan{
	text-align: center;
	color: white;
}

.plan-name{
	font-size: 20px;
}

.plan-frequency{
	font-size: 15px;

}

.plan-price{
	font-size: 25px;
	padding: 20px 0;
	padding-bottom: 0;
}

.plan-discount{
	font-size: 13px;
	color: #7ba5cc; 
	padding-bottom: 0;
}

.subscription-question.clickable:hover .plan-discount{
	color: #388fe0; 
}

.plan-unit{
	font-size: 15px;
	padding-bottom: 20px;
}

.plan-description{
	font-size: 14px;
	text-align: left;
	padding: 0 10px;
}

.subscription-question.clickable:hover{
	cursor: pointer;
	color: #388fe0; 
}

.plan-description ul{
	padding-inline-start: 20px;
}

.purchased-plan-container{
	display: flex;
	justify-content: space-around;
	max-width: 800px;
	margin: auto;
	flex-wrap: wrap;
}

.purchased-plan-right-info{
	color: black;
	padding-top: 20px;
}


/*----------------------------------------------*/
/*				Toggle					*/
/*----------------------------------------------*/


.toggle,
.toggler {
  display: inline-block;
  vertical-align: middle;
  margin: 10px;
}
.toggler {
  color: #8e8e8e;
  transition: 0.2s;
  font-weight: bold;
}
.toggler--is-active {
  color: #7ba5cc;
}
.b {
  display: block;
}
.toggle {
  position: relative;
  width: 80px;
  height: 35px;
  border-radius: 100px;
  background-color: #7ba5cc;
  overflow: hidden;
  box-shadow: inset 0 0 2px 1px rgba(0, 0, 0, 0.05);
}
.check {
  position: absolute;
  display: block;
  cursor: pointer;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 6;
}
.check:checked ~ .switch {
  right: 2px;
  left: 57.5%;
  transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-property: left, right;
  transition-delay: 0.08s, 0s;
}
.switch {
  position: absolute;
  left: 2px;
  top: 2px;
  bottom: 2px;
  right: 57.5%;
  background-color: #fff;
  border-radius: 36px;
  z-index: 1;
  transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-property: left, right;
  transition-delay: 0s, 0.08s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}