*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  background-color:#253E65;
  font-size: 16px;
  line-height: 26px;
  font-family: 'Nunito Sans', sans-serif;
  color:#20355D;

  background-image:url('/app/images/smile.svg');
  background-position: right -120px top;
  background-size: auto 200px;
  background-repeat: no-repeat;   
}

img{
  border: 0;
  max-width:100%;
}

a{
  text-decoration: none;
  cursor:pointer;
  color:#20355D;  
  transition:.7s color, .7s background-color, .7s opacity;
}
a:focus{
  outline: none;
}
a:hover{
  transition:.3s color, .3s background-color, .3s opacity;
}

h1{
  font-size: 60px;
  line-height: 60px;
  color:#FFF; 
  margin-bottom: 20px; 
  padding-bottom: 60px; 
  max-width:80%;
}
h1.smile{
  display:inline-block;
  background-image:url('/app/images/smile.svg');
  background-position: right bottom;
  background-size: auto 60px;
  background-repeat: no-repeat; 
}

h2{
  font-size: 37px;
  line-height: 45px;
  color: #20355D; 
  font-weight: 900; 
  margin-bottom: 20px; 
}


h3{
  font-size: 30px;
  line-height: 35px;
  font-weight:400; 
  margin-top: 40px;
  margin-bottom: 10px;
}


h4{
  font-size: 20px;
  font-weight: 900;
  margin: 30px 0 5px 0;
}

h3:first-child, h4:first-child{
  margin-top:0;
}

p{
  margin-bottom: 15px;
}
p:last-child{
  margin-bottom:0;
}

ul, ol{
  margin: 0 0 15px 30px;
}

.large{
  font-size: 40px;
  line-height: 45px;
}
.medium{
  font-size: 30px; 
  line-height: 35px;
}
.small{
  font-size: 14px;
  line-height: 20px;
}

.tight{
  line-height: 105%; 
}

.light{
  font-weight:300;
}
.semi{
  font-weight: 600;
}
.bold{
  font-weight: 700;
}
.black{
  font-weight: 900;
}

.clear{ clear: both; }

.container{
  margin: 0 auto;
  width: 96%;
  max-width: 1200px;
  position:relative;
}
.container.narrow{
  max-width: 850px;
}

.relative{
  position:relative; 
}

.flex{
  display:flex;
}
.flex.wrap{
  flex-wrap:wrap;
}
.flex.end{
  align-items:flex-end;
}
.flex.vert{
  align-items:center;
}
.flex.right{
   justify-content: flex-end
}

.flex .half{
  width: 47%;
  margin-right: 6%;
}
.flex .half:nth-child(2n+2){
  margin-right:0;
}

.flex .third{
  width: 30%;
  margin-right: 5%;
}
.flex .third:nth-child(3n+3){
  margin-right:0;
}

.flex .twothirds{
  width: 65%; 
}
.flex .twothirds-third{
  width: 30%;
  margin-left: 5%; 
}

.flex .full{
  width:100%;
}

.flex .side{
  width: 20%;
}
.flex .hasside{
  width: 75%;
  margin-left: 5%;
}

.margined{
  margin: 75px auto;
}
.margined-small{
  margin: 20px auto;
}
.margined-none{
  margin:0;
}

.topmargin{
  margin-top: 75px;
}
.bottommargin{
  margin-bottom: 75px;
}

.padded{
  padding: 50px;
}

.left{
  text-align:left;
}
.center{
  text-align:center;
}
.right{
  text-align:right;
}


.button{
  display: inline-block;
  background-color:#ED6C25;
  color:#FFF;
  padding: 8px 25px;
  text-transform: uppercase;
  font-weight: 700; 
  cursor:pointer;
  border:0;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px; 
  line-height: 26px; 
}

.button:hover{
  color:#FFF;
}

.inline{
  display:inline;
}
.inlineblock{
  display:inline-block;
}
.block{
  display:block;
}

.bgcover{
  background-size:cover;
  background-position: center center;
}




.sidebar{
  position:fixed;
  top:0;
  left:0;
  height: 100%;
  width: 150px; 
  background-color: #F5F5F5; 
  padding: 20px; 
  text-align:center;
}

.sidebar nav{
  margin-top: 100px; 
}

.sidebar nav a {
  display:block;
  border-bottom: 1px solid #A1ABBB;
  padding: 15px 0;
}
.sidebar nav a:last-child{
  border:0;
}

.sidebar nav a img{
  width: 40%;
  transition:.7s opacity; 
}
.sidebar nav a:hover img{
  opacity: .5;
  transition:.3s opacity; 
}

.main{
  margin-left: 150px; 
  margin-bottom: 25px; 
  padding: 30px 0 0 50px; 
}

.logout{
  position:absolute;
  top:20px;
  right: 50px;
}

.text-white{ color:#FFF; }
.text-white a{ color:#FFF; }
.text-green{ color: #59CD90; }
.text-grey{ color: #707070;}
.text-orange{ color: #ED6C25;}
.text-blue{ color: #253E65; }

.link-hover-orange a:hover{ color: #ED6C25; }


.box{
  background-color: #F5F5F5;
  padding: 30px; 
  border-radius: 30px 0 0 30px; 
}

.footer{
  color:#FFF; 
  opacity: .5;
  text-align:right;
  font-size: 11px; 
  padding: 5px 40px 20px 0;
}

.todo{
  color:#FFF;
  background-color:#DBA1A1;
  border: 2px dashed red;
  border-radius: 5px; 
  padding: 15px;
  text-align:center;
  margin: 20px 0;
}

.line{
  border-bottom: 1px solid #A1ABBB;
  margin-bottom: 25px;
  height: 25px; 
} 


.sidebox{
  background-color:#FFF; 
  padding: 20px;
  margin-top: -90px; 
  border-radius: 15px; 
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.sidebox.notraised{
  margin-top:0;
}

.ticklist{
  list-style-type:none;
  margin: 0 0 20px 0;
}
.ticklist li{
  padding-left: 35px; 
  background-image:url('/app/images/tick.svg');
  background-repeat: no-repeat;
  background-size: 25px auto; 
  background-position: left center; 
  margin-bottom: 10px; 
  font-weight: 900;
}


.hours-circle{
  max-width: 300px; 
  border-radius:100%; 
  aspect-ratio: 1/1;
  background-color: #A1ABBB;
  text-align:center; 
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.hours-circle .hours{
  font-size: 80px;
  line-height: 100px;  
  margin: 20px 0;
}
.hours-circle .affirmation{
  border-top:1px solid #FFF; 
  font-weight: 400; 
  margin: 20px 50px 0 50px; 
}

.course{
  background-color:#FFF; 
  padding: 25px; 
  padding-bottom: 120px; 
  position:relative; 
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 12px; 
  margin-bottom: 5%; 
  border: 2px solid #FFF; 
  transition:.7s border; 
}
.course.nopad{
  padding-bottom: 25px; 
}
.course .course-price{
  position:absolute;
  bottom: 25px;
  right: 25px;     
  background-color: #FCDCCB;
  font-weight: 900; 
  border-radius: 100%;
  height: 80px;
  width: 80px;
  text-align:center;
  line-height: 16px; 
} 
.course .course-price img{
  max-height: 30px;
  max-width: 30px; 
  vertical-align: middle;
}
.course .course-price span{
  font-weight:400;
  font-size: 10px; 
  line-height: 10px; 
  display:block;
}

.course:hover{
  border: 2px solid #20355D;
  transition:.3s border; 
}

.course .stars img{
  width: 22px; 
}
.course .trophy{
  width: 95px; 
}

.tabs{
  position:absolute;
  top:0;
  left:0;
  width:100%; 
  display:flex;
}

.tabs a{
  flex:1;
  text-align:center; 
  padding: 10px 10px 10px 20px; 
  color:#FFF; 
  font-weight: 600; 
  line-height: 18px; 
  position: relative;
  max-width:50%;
}

.tabs a:nth-child(1){ background-color: #ED6C25; }
.tabs a:nth-child(2){ background-color: #FCDCCB; }
.tabs a:nth-child(3){ background-color: #DBE6A5; }
.tabs a:nth-child(4){ background-color: #66DF79; }
.tabs a:nth-child(5){ background-color: #4BD28E; }
.tabs a:nth-child(6){ background-color: #1EB164; }
.tabs a:nth-child(7){ background-color: #348B68; }
.tabs a:nth-child(8){ background-color: #49DCA8; }
.tabs a:nth-child(9){ background-color: #25727C; }
.tabs a:nth-child(10){ background-color: #31799D; }
.tabs a:nth-child(11){ background-color: #1B51A4; }
.tabs a:nth-child(12){ background-color: #3FA7D6; }

.tabs a img{
  width: 12px; 
  margin: 0 auto;
  vertical-align: center;
  opacity:.5;
}

.tabs a.current{
  padding-right: 150px; 
}

.tabs a .triangle{
  width:100%;
  height: 30px; 
  position:absolute;
  left:0;
  top:100%;
  z-index: 9;
}

.tabs a .triangle path{
  width:100%;
}

.tabs a .triangle.prev{
  width: 20px;
  height: 100%; 
  left: 100%;
  top:0;
}

.tabs a:nth-child(1) .triangle path{ fill: #ED6C25; }
.tabs a:nth-child(2) .triangle path{ fill: #FCDCCB; }
.tabs a:nth-child(3) .triangle path{ fill: #DBE6A5; }
.tabs a:nth-child(4) .triangle path{ fill: #66DF79; }
.tabs a:nth-child(5) .triangle path{ fill: #4BD28E; }
.tabs a:nth-child(6) .triangle path{ fill: #1EB164; }
.tabs a:nth-child(7) .triangle path{ fill: #348B68; }
.tabs a:nth-child(8) .triangle path{ fill: #49DCA8; }
.tabs a:nth-child(9) .triangle path{ fill: #25727C; }
.tabs a:nth-child(10) .triangle path{ fill: #31799D; }
.tabs a:nth-child(11) .triangle path{ fill: #1B51A4; }
.tabs a:nth-child(12) .triangle path{ fill: #3FA7D6; }



#videolightbox.out{
  display:none;
}
#videolightbox.in{
  display:block;
}

.lightbox-close{
  position:fixed;
  left:0;
  top:0;
  width:100%;
  height: 100%;
  background:rgba(255,255,255,.9);
  z-index: 10; 
}

.lightbox-x{
  position:absolute;
  right:-10px;
  top: -30px;
  font-size: 25px; 
  color: #253E65;
  z-index: 99;
  transition:.3s font-size; 
}
.lightbox-x:hover{
  font-size: 30px;
  transition:.3s font-size; 
}

.lightbox-wrapper{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height: 100%;
}
.lightbox-inner{
  width: 80%;
  max-width: 1920px; 
  aspect-ratio: 16/9;
  margin: 0 auto; 
  position:relative;
  z-index: 11; 
}




.logincontainer{
  width: 90%;
  max-width: 500px;
  box-sizing: border-box;
  margin: 40px auto;
  text-align:center;
}

.logincontainer .logo{
  max-height: 100px;
  max-width: 250px;
}
.logincontainer h2{
  color:#FFFFFF;
  font-weight:900;
  font-size: 25px;
  margin: 15px 0 50px 0;
}
.logincontainer .loginbox{
  background-color:#FFFFFF;
  border-top: 8px solid #ED6C25;
  
  text-align:left;
  overflow:hidden;
}
.logincontainer .loginbox .padding{
  padding: 20px;
}
.logincontainer .grey{
  background-color:#f1f1f1;
  padding: 10px 20px;
}
.logincontainer .button{
  float:right;
}

.loginbox.logingone{
  display: none;
}


.label{
  margin: 15px 0 5px 0;
  color:#666; 
  font-size: 12px; 
  text-transform:uppercase; 
}

.input, .textarea, .select{
  width:100%;
  padding: 10px; 
  border: 1px solid #CCC; 
  background-color:#FFF; 
}


#note{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index: 99; 
}

.note{
  background-color: #53AC67;
  color:#FFFFFF;
  padding: 10px 40px;
  
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 25px;
}
.note .fa{
  font-size: 35px;
  line-height:35px;
  vertical-align:middle;
  margin-right: 15px;
}
.note.error{
  background-color:#BF312F;
}

#note .note{
  text-align:center;
  width: 90%; 
  max-width: 800px;
  margin: 0 auto;
  border-radius: 0 0 10px 10px; 
}
#note.out{
  top: -100px;
  transition: 2s top; 
}


.video-embed{
  border: none; 
  width:100%; 
  aspect-ratio:16/9;
  margin: 30px 0;
}


.restrict p{
  max-width: 700px;
}
.restrict .video-embed{
  max-width: 950px;
}

.intro{
  color: #20355D;
  font-weight: 900; 
}

.price-bubble{
  display: inline-block; 
  background-color:#FCDCCB;
  border-radius: 80px; 
  padding: 15px 30px; 
  text-align:center;
}

.transaction{
  display:block;
  border-bottom: 1px solid #CCC;
  padding: 5px 0;
}
.transaction span{
  display:block;
}
.transaction .date{
  font-size: 12px; 
  line-height: 12px; 
}

.white{
  background-color:#FFF;
  padding: 25px; 
  border-radius: 12px; 
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}



.left-border{
  border-left: 1px solid #253E65;
  padding-left: 5%; 
}

.price-float{
  float:right;
  margin: 0 0 20px 40px; 
}

.hidden-radio{
  display:none;
}

.radiolabel{
  display:block;
  width:100%;
  border-radius: 80px; 
  border: 1px solid #253E65;
  text-align:center;
  font-weight: 900; 
  cursor:pointer;
  transition:.3s background-color; 
}

.radiolabel:hover{
  background-color:#FFF; 
  transition:.3s background-color; 
}

.radiolabel .inner-pill{
  padding: 15px; 
  border-radius: 80px; 
  background-color: #F5F5F5; 
  transition:.7s background-color; 
}
.radiolabel .price{
  font-size: 15px; 
  font-weight: 400; 
  display:block;
}

.hidden-radio:checked + .radiolabel {
  border: 2px solid #ED6C25;
  color: #FFF; 
  padding: 2px; 
}

.hidden-radio:checked + .radiolabel .inner-pill{
  background-color: #ED6C25;
  transition:.3s background-color; 
  border: 4px solid #FFF; 
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.gone{
  display:none; 
}
.here{
  display: block; 
}

.resource{
  background-color:#FFF;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  font-size: 20px;
  font-weight: 900;
  margin: 30px 0 5px 0;
  padding: 25px 80px 25px 25px; 
  border-radius: 12px; 
  margin-bottom: 15px; 
  background-image: url('/app/images/download.svg');
  background-position: center right 25px;
  background-size: auto 30px; 
  background-repeat: no-repeat;
}
.resource:hover{
  background-color:#FCDCCB;
}

#mobilenavbar{
  display:none;
}

.faded{
  opacity: .6;
}
.course-content img{
  display:block;
  width: 100% !important;
  height: auto !important; 
}

.subtitle{
  display:block;
  font-size: 20px;
  line-height: 1.2;
}