@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700,900&display=swap');

:root {
  --content-width: 1180px;
  --border-radius: 8px;

  --font-head: 28pt;
  --font-sub: 14pt;
  --font-copy: 13pt;
  --font-small: 9pt;

  --font-headline: clamp(1.88rem, calc(1.49rem + 1.92vw), 3.13rem);
  --font-headline-big: 40pt;
  --font-sub-headline: 23pt;
  --font-hero-headline: 34pt;

  --transition: 0.25s ease-in-out;

  --image-drop-shadow: -15px 20px 40px 15px rgba(0,0,0,0.35);  

  --bg-color: #1f1f1f;
  --dark-bg-color: #060606;
  --light-bg-color: #444444;

  --primary-color: #9cf74d;
  --secondary-color: #0858bf;
  --white-color: #e6e6e6;

  --error-color: #C6372C;

  --focus-opacity: 0.25;
}



/*** GLOBALS ***/
*{
	font-family: 'Lato', sans-serif;
	box-sizing: border-box;
}

body, html{
	height: 100%;
	width: 100%;
}

body{
	margin: 0;padding: 90px 0 0 0;
	background: var(--bg-color);
	overflow: hidden;
	overflow-y: scroll;
}

body::-webkit-scrollbar{
	width: 4px;
    height: 10px;
}

body::-webkit-scrollbar-thumb{
	background: var(--light-bg-color);
	border-radius: 10px;
}

body::-webkit-scrollbar-track{
	background: transparent;
}


html {
	scroll-behavior: smooth;
}

input{
	background: var(--light-bg-color);
	padding: 20px;
	margin: 0;
	outline: none;
	border: none;
	width: 100%;
	font-size: var(--font-copy);
	color: var(--white-color);
	border-radius: var(--border-radius);
}

input:disabled{
	opacity: var(--focus-opacity);
}

textarea{
	border: none;
	outline: none;
}

textarea::-webkit-scrollbar{
	width: 4px;
    height: 10px;
}

textarea::-webkit-scrollbar-thumb{
	background: var(--dark-bg-color);
	border-radius: 10px;
}

textarea::-webkit-scrollbar-track{
	background: transparent;
}

select {
	width: 100%;
    background: var(--light-bg-color);
    outline: none;
    border: none;
    padding: 20px;
    margin: 0;
    border-radius: var(--border-radius);
    color: var(--white-color);
	-moz-appearance:none; /* Firefox */
    -webkit-appearance:none; /* Safari and Chrome */
    appearance:none;
    font-size: var(--font-copy);
text-transform: capitalize;
}


button{
	outline: none;
	box-shadow: none;
	border: none;
	cursor:pointer;
}

h1, h2, h3, p{
	font-weight: 300;
	color: var(--white-color);
	margin: 0;
	letter-spacing:0.02em;
}


p{
	font-size: var(--font-copy);
}

h2{
	font-size: var(--font-sub);
}

i{
	margin: 0;
	padding:0;
}


canvas{
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: transparent;
}

label{
	cursor: pointer;
}


nav{
  width: 100%;
  position: fixed;
  top:0;left:0;
  background: var(--dark-bg-color);
  height: 90px;
  z-index: 9001;
}


.noscroll{
	overflow: hidden !important;
}

.content_container{
	width: 95%;
	max-width: var(--content-width);
	margin: 0 auto;
	padding-top: 100px;
}

.container{
	max-width: var(--content-width);
	width: 95%;
	margin: 0 auto;
}

.row{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}




/*** NAV **/

.nav_contain{
  max-width: 1680px;
  width: 90%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav_item{
	text-decoration: none;
	color: var(--white-color);
}

.nav_item a{
    color: var(--white-color);
    text-decoration: none;
    position: relative;
    text-align: right;
    height: 20px;
    font-weight: 400;
}

.nav_item a:hover, a.nav_item:hover, .nav_item:hover{
	color: var(--primary-color);
}

/*.logo{
  width: 30px;min-width:30px;
  text-decoration: none;
}*/

.logo svg{
  fill: var(--primary-color);
}

.logo img {
    max-height: 34px;
}


.nav_dropdown{
	height: 0;
	overflow: hidden;
	list-style: none;
	text-decoration: none;
	padding:0;
	margin:0;
	display: flex;
  gap: 5px;
  flex-direction: column;
  padding: 0;
  border-radius: var(--border-radius);
  position: absolute;
  background: var(--dark-bg-color);
  min-width: 200px;
}


.nav_item:hover .nav_dropdown{
	height: auto;
	padding: 10px;
	margin-top: 10px;
}

.nav_dropdown li{
	display: none;
}

.nav_dropdown a{
	text-decoration: none;
	color: var(--white-color);
	position: relative;
	padding: 10px 15px;
	z-index: 1;
	display: flex;
	align-items: center;
	height: auto;
}

.nav_dropdown a:hover{
	color: var(--primary-color);
}

.nav_dropdown a:hover:after{
	content: '';
	width:100%;height:100%;
	top:0;left:0;
	position: absolute;
	border-radius: var(--border-radius);
	background: var(--light-bg-color);
	opacity: var(--focus-opacity);
	z-index: -1;
}

.nav_dropdown a span{
	padding-right: 10px;
}

.nav_item:hover .nav_dropdown li{
	display: block;
}


.nav_item:hover .nav_dropdown_header{
	padding-bottom: 10px;
}


.nav_dropdown_header:after{
	content: '\e901';
	font-size: 12px;
    display: inline-block;
    transform: rotateZ(90deg);
   margin-left: 10px;

  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icons' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

}

.nav_item:hover .nav_dropdown_header{
	color: var(--primary-color);
}


.nav_main{
	display: flex;
	justify-content: end;
	flex: 1;
  gap: 5%;
  align-items: center;
  list-style-type: none;
}


.nav_mobile_btn{
	display: none;
}

.open-nav{
	font-size: 30px;
	cursor: pointer;
}

.open-nav:hover{
	color: var(--primary-color);
}


a.nav_btn.btn{
	  color: var(--dark-bg-color) !important;
    width: auto;
    margin: 0;
    font-size: var(--font-copy);
    padding: 10px 20px;
    font-weight: 700;
}

@media(max-width: 768px){


	.nav_mobile_btn{
		display: inline-block;
	}

	.nav_desktop_btn{
		display: none;
	}

	.nav_dropdown{
		position: relative;
	}

	.nav_item{
		width: 100%;
	}

	.nav_main .nav_item a{
		font-size: var(--font-head);
		height: auto;
	}

	.nav_main .nav_item a.nav_btn{
		margin-top: 30px;
    display: block;
    text-align: center;
	}

	.nav_dropdown_header{
	    display: flex;
	    align-items: center;
	}

	.nav_dropdown_header:after{
		font-size: var(--font-sub);
	}

	.active-nav .nav_main{
		height: calc(100dvh - 90px);
		padding: 5% 5%;
		overflow-y: scroll;
	}

	.active-nav .open-nav .icon-menu:before{
		content: '\e922';
	}

	.nav_main{
			transition: var(--transition);
			overflow: hidden;
		  position: fixed;
	    top: 90px;left: 0;
	    flex-direction: column;
	    align-items: start;
	    justify-content: flex-start;
	    gap: 20px;
	    height: 0;
	    background: var(--dark-bg-color);
	    width: 100%;
	    z-index: 9001;
	    margin: 0;
	    padding: 0 5%;
	}
}

/***** HOME PAGE *****/

.Home{
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}






/** large playbtn **/
.controls-item .icon-arrow-right{
	font-size: 40px;
}

.controls-item .icon-pause{
	font-size: 50px;
}

.controls-item .icon-arrow-right, .controls-item .icon-pause{
	width: 80px;height:80px;
}

.controls-item .icon-arrow-right:after, .controls-item .icon-pause:after{
	opacity:0.85;
}

section.cta {
	text-align: center;
	margin: 30px auto 70px auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 15px;
}

section.cta.mobile-only {
	display: none;
}


.cta-a {
	font-size: calc(var(--font-head) / 1.6);
	display: inline-block;
	text-align: center;
	color: var(--bg-color);
	font-weight: 900;
	text-transform: capitalize;
	text-decoration: none;
	background: var(--primary-color);
	padding: 10px 30px;
	border-radius: var(--border-radius);
	box-shadow: 0 0 0 2px var(--primary-color);
}


.cta-a-outlined {
	font-size: calc(var(--font-sub) / 1.6);
	display: inline-block;
	text-align: center;
	color: var(--primary-color);
	font-weight: 900;
	text-transform: capitalize;
	text-decoration: none;
	background: transparent;
	padding: 10px 30px;
	border-radius: var(--border-radius);
	box-shadow: 0 0 0 2px var(--primary-color);
}

.cta-desc {
    font-weight: 500;
    color: var(--light-bg-color);
    max-width: 480px;
    margin: 20px auto;
}


section.hero {
    max-width: 750px;
    margin: 70px auto 30px auto;
}


@media(max-width: 768px){
	section.cta.mobile-only{
		display: flex;
	}
}









/******* COACH PAGE *****/

.Coach{
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.coach-profile{
    width: 100px;
    height: 100px;
    background: var(--light-bg-color);
    background-size: cover;
    background-position: center;
    color: var(--white-color) !important;
    border-radius: 1000px;
    align-items: center;
    display: flex;
    justify-content: center;
    font-size: 30pt;
    margin: 15px auto;
    object-fit: cover;
}

.coach_details {
    width: 90%;
    max-width: 400px;
    text-align: center;
}

.coach_details h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: var(--font-head);
    font-weight: 600;
    margin-bottom: 10px;
}



.Coach .coach_nav{
  width: 100%;
  background: var(--dark-bg-color);
  padding: 0;
  position: fixed;
  top: 0;left: 0;
  text-align: center;
}

.Coach .coach_logo{
  max-width: 250px;
  max-height: 150px;
  padding:  0;
}

.Coach .use-invite{
  font-size:  var(--font-small);
  cursor: pointer;
}

.btn.request-join{
	margin-top: 40px;
	display: inline-block;
    width: auto;
    padding: 15px 40px;
}





/*** Grid **/

.col-4{
	width: 32%;
	flex-basis: 32%;
}

.col-5{
	width: 40%;
	flex-basis: 40%;
}

.col-6{
	width: 48%;
	flex-basis: 48%;
}

.col-7{
	width: 56%;
	flex-basis: 56%;
}

.col-8{
	width: 64%;
	flex-basis: 64%;
}

.no-top-margin{
	margin-top: 0 !important;
}


.no-bottom-margin{
	margin-bottom: 0 !important;
}

.no-vertical-margin{
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.add-right-margin{
	margin-right: 5px;
}
.add-bottom-margin{
	margin-bottom: 10px;
}
.add-top-margin{
	margin-top: 10px;
}

.section-margin-bottom{
	margin-bottom: 7em;
}



.col-padding-right-20{
	padding-right: 2em;
}

.col-padding-right-40{
	padding-right: 4em;
}

.col-padding-left-40{
	padding-right: 4em;
}

.extra-top-margin{
	margin-top: 30px;
}

.extra-bottom-margin{
	margin-bottom: 30px;
}



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

.minimal-scrollbar::-webkit-scrollbar {
    width: 2px !important;
    height: 0px !important;
}

.minimal-scrollbar::-webkit-scrollbar-thumb{
	background: var(--light-bg-color);
	border-radius: 10px;
}

.minimal-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.page_input{
	background: var(--light-bg-color);
	padding: 20px;
	margin: 5px 0;
	outline: none;
	border: none;
	width: 100%;
	font-size: var(--font-copy);
	color: var(--white-color);
	border-radius: var(--border-radius);
}

textarea.page_input{
	min-height:  200px;
	resize: vertical;
}


.sep{
	border-bottom: 1px solid var(--light-bg-color);
	width: 100%;
}

.sep.extra-margin{
	margin:  25px 0;
}


.flex-row-override{
	flex-direction: row !important;
	align-items: center;
}


.icon-arrow-left:before {
  content: "\e901";
}

.icon-arrow-left {
  transform: rotate(180deg);
  display: inline-block;
}

h2.section_headline_big{
	font-size: var(--font-headline-big) !important;
	font-weight: 900;
}

h2.section_headline{
	font-size: var(--font-headline) !important;
	font-weight: 900;
}

.section_headline_highlight{
    display: block;
    clear: both;
    border-radius: 100px;
    font-size: var(--font-copy);
    background: var(--primary-color);
    width: fit-content;
    color: var(--dark-bg-color);
    padding: 5px 20px;
	margin-bottom: 20px
}

p.section_sub_headline, span.section_sub_headline{
	font-size: var(--font-sub-headline) !important;
}

p.section_sub{
	line-height: 1.5em;
}

p.section_sub_list{
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: start;
}

p.section_sub_list span {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    font-size: var(--font-sub);
	max-width: 420px;
}

p.section_sub_list img {
    width: 56px;
}

p.small-p{
	font-size: var(--font-small) !important;
}

.img_shadow{
	-webkit-box-shadow: var(--image-drop-shadow); 
	box-shadow: var(--image-drop-shadow);
}

.img-border{
	border-radius: var(--border-radius);	
}




/**** Global Media Queries *****/
@media(max-width: 768px){
	.container{
		width: 90%;
	}

	.col-4, .col-5, .col-6, .col-7, .col-8{
		width: 100%;
		flex-basis: 100%;
	}

	h2.section_headline_big{
		font-size: 40px!important;
		margin: 20px 0;
	}

	h2.section_headline{
		font-size: 34px!important;
		text-align: left;
		margin: 20px 0;
	}

	p.section_sub_headline, span.section_sub_headline{
		font-size: 24px!important;
		margin: 20px 0;
	}

	p.section_sub{
		font-size: 18px!important;
		margin-bottom: 20px;
	}

	.column-reverse{
		flex-direction: column-reverse;
	}

	.col-padding-right-20{
		padding-right: 0em;
	}
	
	.col-padding-right-40{
		padding-right: 0em;
	}
	
	.col-padding-left-40{
		padding-right: 0em;
	}

	.section-margin-bottom{
		margin-bottom: 50px;
	}


	/** FOR TEXT SPACING **/

	.dashboard .section_headline{
		margin-bottom: 1.3em;
	}

	.message_two .section_sub_headline{
		margin: 0.5em 0 2em 0;
	}

	.fast .section_sub{
		margin-bottom: 2em;
	}

	.nutrition .section_headline{
		margin: 0 0 1em 0;
	}

	.personalize .section_sub_headline{
		margin: 0 0 2em 0;
	}
	.control .section_headline{
		margin: 0.2em 0 0.5em 0;
	}
}


/***** HERO *******/

h2.hero_headline{
	font-size: var(--font-hero-headline);
	font-weight: 900;
	text-align: center;
}

span.hero_headline_two{
	color: var(--light-bg-color);
}

.optin{
	width: 85%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background-color: var(--light-bg-color);
	border-radius: var(--border-radius);
	padding: 0;
	margin-left: auto;
	margin-right: 0;
}

.klaviyo-form {
    min-width: 360px;
	width: 100%;
}



.ep-iFrameContainer{
	width: 100%;
	box-shadow: none;
}

.optin iframe{
	width: 100%;
}

.form-builder--wrap{
	border: 0 !important;
}





/**** Hero Media Queries *****/
@media(max-width: 991px){
	h2.hero_headline{
		font-size: 28px;
	}

	.klaviyo-form {
		min-width: 300px;
		width: 100%;
	}

	span.hero_headline_two{
		word-break: break-all;
	}
}

@media(max-width: 768px){

	h2.hero_headline{
		font-size: 28px;
	}

	.optin{
		width: 100%;
		margin-top: 2em;
	}
}

/***** Dashboard Section *****/

.dashboard{
	background-color: var(--dark-bg-color);
	padding-top: 5em;
	margin-bottom: 25em;
}

.dashboard_img{
	width: 100%;
	margin-bottom: -15em;
}

@media(max-width: 768px){
	.dashboard{
		margin-bottom: 8em;
		padding-top: 1em;
	}

	.dashboard_img{
		margin-bottom: -5em;
	}
}



/***** Message Section *****/
.message_img{
	width: 75%;
}

.message_two_img{
	width: 100%;
}

@media(max-width: 768px){
	.message_img{
		width: 100%;
		margin-top: 2em;
	}
}

/***** Content Section *****/

.content_box{
	background-color: var(--dark-bg-color);
	padding: 4em;
	border-radius: var(--border-radius);
	margin-bottom: 2em;
}


.content_main_headline{
	font-size: var(--font-headline-big) !important;
	font-weight: 900;

}

.powerhouse{
	color: var(--primary-color);
}

.content_main_sub{
	width: 70%;
	margin: 0 auto;
}

.content_box_headline{
	font-size: 30px;
	font-weight: 400;
}

.content_box_sub{
	font-size: 16px;
	color: var(--light-bg-color);
}

.content_icon{
	font-size: 60px;
	color: #fff;
}

.workouts_img{
	width: 100%;
}

@media(max-width: 768px){
	.content_box{
		padding: 2em;
	}

	.content .col-6:last-child .content_box{
		margin-bottom: 0;
	}

	.content_main_headline{
		font-size: 36px!important;
		font-weight: 900;
	}

	.content_main_sub{
		width: 100%;
	}

	.content .text-center .content_main_headline,
	.content .text-center .content_main_sub{
		text-align: left;
	}

	.content_icon{
		font-size: 50px;
	}

	.dashboard .section_headline{
		margin-bottom: 1.3em;
	}
}

/***** Control Section *****/
.control_img_one{
	display: block;
	width: 90%;
	margin-left: auto;
	margin-right: 0;
}

.control_img_two{
	display: block;
	width: 85%;
	margin: 2em 0;
}

.control_img_three{
	display: block;
	width: 90%;
	margin-left: auto;
	margin-right: 0;
	max-width: 200px;
}

/**** CHECKINS ***/

.checkin_step_image {
    width: 100%;
    max-width: 220px
}

.checkins .col-4{
    display: flex;
    justify-content: end;
}

.checkins .row{
	justify-content: space-between;
	gap: 20px;
}

.checkins-step-number{
	width: 60px;height: 60px;min-width:60px;
	background: var(--light-bg-color);
	border-radius: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: var(--font-sub);
	font-weight: 800;
}

.checkins [data-slider-step-button]{
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 20px;
	margin: 45px 0;
}

.checkins [data-slider-step-image]{
	width: 100%;
	transition: 0.25s ease;
}

.checkins [data-slider-step-button]:hover{
	transform: scale(0.95);
}


/** PREVIEW **/


.preview_image_col{
	position: relative;
	width: 75%;
}

.preview_image_col:after{
	content: 'Preview Active';
	position: absolute;
	top: -28px;right: -35px;
	background: var(--primary-color);
	color: var(--dark-bg-color);
	border-radius: var(--border-radius);
	padding: 10px 20px;
	font-weight: 700;
}

.preview_image_col img{
	width: 100%;
}


/***** Scanner Section *****/

.scanner .col-7{
	position: relative;
}
.scanner .col-7:after{
	content:'';
    width: 75%;
    aspect-ratio: 1 / 1;
	background: var(--dark-bg-color);
	border-radius: var(--border-radius);
	box-shadow: var(--image-drop-shadow);
	position: absolute;
    bottom: 0; right: 0;
    z-index: -1;
}

.scanner_img_two{
	max-height: 660px;
	display: flex;
	width: 100%;
	object-fit: contain;
}
.scanner p{
	display: flex;
	justify-content: start;
    align-items: center;
    margin-bottom: 20px;
}
.scanner p span{
	color: var(--primary-color);
	font-size: var(--font-sub-headline);
	margin-right: 10px;
}



/** SLIDER **/

.slider-step{
	display: none;
}

[data-slider-step-button]{
	opacity: 0.3;
	cursor: pointer;
	transition: 0.25s;
}

[data-slider-step="1"] .slider-step[data-slider-step-image="1"],
[data-slider-step="2"] .slider-step[data-slider-step-image="2"],
[data-slider-step="3"] .slider-step[data-slider-step-image="3"]{
	display: block;
}

[data-slider-step="1"] [data-slider-step-button="1"],
[data-slider-step="2"] [data-slider-step-button="2"],
[data-slider-step="3"] [data-slider-step-button="3"]{
	opacity: 1;
}

[data-slider-step="1"] [data-slider-step-button="1"] .checkins-step-number,
[data-slider-step="2"] [data-slider-step-button="2"] .checkins-step-number,
[data-slider-step="3"] [data-slider-step-button="3"] .checkins-step-number{
	background: var(--primary-color);
}

/***** Countdown *****/

.countdown{
	background-color: var(--dark-bg-color);
	padding: 8em 0;
}

.countdown_container{
	max-width: 750px;
	margin: 0 auto;
	text-align: center;
}

#countdown{
	display: flex;
	justify-content: space-between;
	margin-bottom: 5em;
}

.countdown_timer h3{
	font-size: 50px;
	font-weight: 900;
	color: var(--primary-color);
}

.countdown_timer p{
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 900;
	color: var(--light-bg-color);
}

.countdown-btn{
	display: block;
	text-align: center;
	width: 100%;
	background-color: var(--primary-color);
	color: var(--dark-bg-color);
	font-weight: 400;
	padding: 1em 2em;
	text-decoration: none;
	border-radius: var(--border-radius);
}

/*** FOOTER **/


footer{
	padding: 50px 10px;
}

.footer_contain{
	display: flex;
	justify-content: center;
	gap: 20px;
}

.footer_contain a{
	text-decoration: none;
	color: var(--white-color);
}

.footer_contain a:hover{
	text-decoration: underline;
}



@media(max-width: 768px){
	.countdown{
		padding: 4em 0;
	}

	.countdown_container{
		width: 90%;
	}

	.countdown_container .section_headline{
		font-size: 44px !important;
		text-align: center;
	}

	#countdown{
		margin-bottom: 3em;
	}

	.countdown_timer h3{
		font-size: 40px;
	}

	.countdown_timer p{
		font-size: 12px;
	}
}



/** CHAT WIDGET FROM GHL ***/

.lc_text-widget * {
	fill: var(--darb-bg-color);
}

.lc_text-widget--btn{
	background: var(--primary-color) !important;
}





/** PRICING HEADER SECTION **/

.price-header{
	background: var(--dark-bg-color);
	width: 100%;
    text-align: center;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-top: 70px;
}

.price-header-info {
    max-width: 720px;
    margin: 0 auto;
    width: 95%;
}

.price-header-info{
  margin: 30px auto;
  max-width: 720px;
}


.price-header .logos{
  width: 100%;
  margin-top:20px;
}

.hero-logo{
  width: 75%;
}

.price-hero-logo{
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 0 0 2px var(--primary-color);
  padding: 5%;
  margin: 0 auto 0 auto;
  max-width: 510px;
}


.header-step {
  display: none;
}

.header-step.active{
  display: block;
}




/** FAQS **/

section.faqs{
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 2.5%;
}

.faq-question input{
  display: none;
}

.faq-question{
  padding: 20px 0;
  border-bottom: 1px solid var(--light-bg-color);
  position: relative;
  color: var(--white-color);
}

.faq-question .icon-plus{
    position: absolute;
    z-index: 5;
    font-size: 32px;
    top: 20px;
    right: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-transition: .2s ease;
    -moz-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
    transform-orgin: center;
    pointer-events: none;
}

.faq-question-title{
  font-size: var(--font-sub);
  padding-right: 40px;
  display: inline-block;
  width: 100%;
}

.faq-question-content{
    font-size: var(--font-copy);
    font-weight: 300;
    height: 0;
    overflow: hidden;
    position: relative;
    opacity: 0;
    -webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease;
}

.faq-question input:checked ~ .faq-question-content {
    height: auto;
    opacity: 1;
    padding: 30px 14px;
}

.faq-question input:checked ~ .icon-plus:before{

  content:'\e90c';

}


/** OFFER CARDS **/

.prices{
	background: var(--dark-bg-color);
	width: 100%;
	padding: 110px 0;
	min-height: 570px;
}

.price_offerings{
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  row-gap: 30px;
  column-gap: 30px;
  padding: 2.5%;
}

.price {
  display: flex;
  box-shadow:0 0 0 4px var(--bg-color);
  border-radius: var(--border-radius);
  padding:30px 2.5%;
  flex-direction: column;
  gap:10px;
  align-items: start;
  text-align: left;
  position: relative;
  background: #131313;
  min-width: 270px;
}


.price.highlighted{
  background: var(--bg-color);
  box-shadow:0 0 0 4px var(--primary-color);
}

.price.highlighted:after{
  content: 'Most Popular';
  position: absolute;
  top: calc((var(--font-copy) * 2) * -1);
  left:0;
  font-size: var(--font-copy);
  color: var(--primary-color);
}


/*.price_highlight .highlight{
  position: absolute;
  top:-15px;
  background: var(--white-color);
  margin: auto;
  color: var(--dark-bg-color);
  border-radius: 100px;
  padding: 5px 20px;
  font-weight: 800;
  font-size: var(--font-copy);
}*/

.price_total {
    font-size: var(--font-sub);
    font-weight: 600;
}

.price_total s{
  font-weight: 400;
  opacity: 0.25;
}


.offer{
    font-weight: 800;
    font-size: 40pt;
    display: flex;
    text-align: left;
    line-height: 16pt;
    gap: 10px;
    align-items: center;
    margin: 15px 0;
}


.offer span{
  font-size: 13pt;
  letter-spacing: 0.03em;
}

.price .btn {
    padding: 10px 0;
    margin: 30px auto 0 auto;
}

.price.enterprise{
  justify-content: space-between;
}

.price.enterprise h3{
  margin-bottom: 20px;
    font-size: 23px;
    font-weight: 600;
}

.price_details{
  text-align: left;
  width: 100%;
}

.price_details-expand{
  font-weight: 800;
  font-size: var(--font-copy);
  padding: 10px 0;
}


.price_title {
    font-weight: 800;
    font-size: 23px;
}

ul.details_list{
  padding:0;
  list-style-type: none
}

ul.details_list li{
  font-size: var(--font-small);
  line-height: 150%;
}

ul.details_list li:before {
  content: "\e908";
  color: var(--primary-color);
  margin-right:5px;

  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icons' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul.details_list li:last-child:before{
  display: none;
}

select.change_price{
  padding: 10px 40px 10px 15px;
  font-size: var(--font-small);
  text-transform: none;
}

.offer_overage {
    font-weight: 800;
    font-size: 23px;
}

.price_savings {
    position: absolute;
    top: calc((var(--font-copy)* 2)* -1);
    right: 0;
    margin: auto;
    font-size: var(--font-copy);
    color: var(--light-bg-color);
    font-weight: 800;
}



@media all and (max-width: 1170px) {

  .price_offerings{
    flex-wrap: wrap;
  }

  .price{
    flex-basis: 48%;
  }

  .price_offerings{
    row-gap: 50px;
  }

}


@media all and (max-width: 800px) {


  .price{
    flex-basis: 100%;
  }


}


/** ACCOUNTS / LOGIN **/

input{
	background: var(--light-bg-color);
	padding: 13px 20px;
	margin: 0;
	outline: none;
	border: none;
	width: 100%;
	font-size: var(--font-copy);
	color: var(--white-color);
	border-radius: var(--border-radius);
}

.login-step{
	display: none;
}

.active-step{
	display: block;
}

.login-step p{
	margin-bottom: 40px;
}



.login,
#create-account{
	margin: 0 auto;
	width: 100%;
	max-width: 460px;
	text-align: center;
}

#create-account input{
	margin: 5px auto;
}

#recaptcha-container{
	display:none !important;
}


#countryCode{
	width:  calc(100% - 4px);
	flex-basis: calc(100% - 4px);
	margin: 5px auto !important;
	background: transparent;
	box-shadow: 0 0 0 2px var(--light-bg-color);
	padding: 7px 20px;
}

#phoneNumber{
	width: 100%;
	flex-basis:100%;
	margin: 5px 0 !important;
}


.phoneInput{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#new-client-country-code, #new-assistant-country-code{
	margin: 0 auto 10px 2px !important;
    background: transparent;
    box-shadow: 0 0 0 2px var(--light-bg-color);
    padding: 7px 20px;
    width: calc(100% - 4px);
    flex-basis: calc(100% - 4px);
}

#welcome-message{
	background: var(--message-color);
	color: var(--message-fg-color);
}

textarea#welcome-message::placeholder {
	color:  var(--white-color);
}

#onetime-email-btn{
	font-size: var(--font-copy) !important;
}

#create-account-overlay, #watch-demo-overlay {
    position: fixed;
    z-index: 90001;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--dark-bg-color);
    color: var(--white-color);
    height: 100vh;
	display: flex;
    justify-content: center;
    flex-direction: column;
}

#create-account-overlay h2{
	margin-bottom: 20px;
	font-size: 2em;
}

#create-account-overlay .login-step{
    margin: 0 auto;
    width: 100%;
    max-width: 460px;
    text-align: center;
}

#create-account-overlay #error-box{
    margin: 20px auto;
    width: 100%;
    max-width: 460px;
    text-align: center;
}

.nameInputs{
	display: flex;
	gap: 10px;
	margin: 10px 0;
}

#create-account-overlay #phoneNumber{
	margin: 10px 0 !important;
}


#create-account-overlay a{
    font-weight: 300;
    color: var(--white-color);
    letter-spacing: 0.01em;
    display: block;
}

.price-header-demo-optin{
	max-height: 400px;
}

.price-header-demo{
	padding: 0 15% 0 15%;
}

@media all and (max-width: 800px) {
	.price-header-demo{
		padding: 0;
	}
}

/** COMPARE / CONTRAST **/

section.compare{
  width: 100%;
  background: var(--dark-bg-color);
  padding:20px 2.5% 50px 2.5%;
}

.compare-grid {
    display: grid;
    grid-template-columns: 300px 1fr repeat(3, 1fr);
    overflow-x: scroll;
    padding-bottom: 10px;
}

.compare-grid-container{
  position: relative;
  max-width: var(--content-width);
  margin: 0 auto;
  width: 100%;
}

.compare-grid-container:after {
    content: "";
    position: absolute;
    height: calc(100% - 20px);
    box-shadow: 0 0 20px 1px var(--primary-color);
    border: 1px solid var(--primary-color);
    width: calc((100% - 306px) / 4);
    top: 0;
    left: 300px;
    min-width: 100px;
    pointer-events: none;
    border-radius: var(--border-radius);
}


.compare-grid .fixed{
  position: sticky;
}

.compare-check, .compare-feature {
    padding: 15px;
    text-align: left;
    word-wrap: break-word;
    background: var(--dark-bg-color);
    border-right: 1px solid var(--light-bg-color);
    border-bottom: 1px solid var(--light-bg-color);
}

.compare-feature{
  padding: 15px 20px 15px 0;
}

.compare-feature, .compare-feature-detail {
    display: flex;
    flex-direction: column;
    border-left: none;
    justify-content: center;
}

.compare-feature-detail p, .compare-feature-detail li{
  font-size: var(--font-small);
  line-height: 130%;
  color: var(--white-color);
}

.compare-header {
    font-weight: 800;
    padding: 20px 10px;
    text-align: left;
    justify-content: end !important;
    text-wrap: nowrap;
    font-size: var(--font-small);

}

.compare-header svg{
    width: 30px;
    fill: var(--primary-color);
}
.compare-header img {
    width: 50px;
}


.compare-feature, .compare-feature-header{ left:0; }
.compare-check.fixed, .compare-header:not(.compare-feature-header).fixed{ left:300px; }

.compare-feature-title {
    font-weight: 800;
    margin-bottom: 10px;
    text-align: left;
}

.compare-check, .compare-header {
  background: var(--dark-bg-color);
  color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  word-wrap: break-word;
  flex-direction: column;
  gap:10px;
  min-width: 100px;
}

.compare-feature-header{
  flex-direction: row;
  justify-content: start !important;
  color: var(--primary-color);
  font-size: var(--font-sub);
}

.compare-feature ul {
    padding-left: 20px;
    margin: 0;
}



.compare-check{
  color: var(--light-bg-color);
  font-size: var(--font-small);
}

.compare-check.checked, .compare-check.not-checked {

  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icons' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  font-size: calc(var(--font-sub) * 1.5);
}

.compare-check.not-checked:after{
  content: "\e922";
}

.compare-check.checked:after{
  content: "\e908";
  color: var(--light-bg-color);
}

.compare-check.checked.fixed:after{
  color: var(--primary-color);
}

.compare-grid .compare-check:nth-child(5n) {
  border-right: none;
}


.compare-grid::-webkit-scrollbar{
  width: 9px;
  height: 10px;
}

.compare-grid::-webkit-scrollbar-thumb{
  background: var(--light-bg-color);
  border-radius: 10px;
}

.compare-grid::-webkit-scrollbar-track{
  background: transparent;
}

.compare-desc{
  max-width: 500px;
  margin: 20px auto 60px auto;
}



@media all and (max-width: 800px) {

  .compare-grid {
      grid-template-columns: 200px 1fr repeat(3, 1fr);
  }

  .compare-check.fixed, .compare-header:not(.compare-feature-header).fixed{ 
    left:200px; 
  }

  .compare-grid-container:after{
      width: calc((100% - 200px) / 4);
      left: 200px; 
  }

  .compare-check, .compare-header, .compare-grid-container:after{
    min-width: 50px;
  }

  .compare-header{
    font-size: 0;
    justify-content: start !important;
  }

  .compare-header svg{
    margin-top: 10px;
  }
  .compare-desc{
  	text-align: left;
  }
}





/*** CHECKOUT PAGE **/
#loading-page p{
	font-size: var(--font-small);
}

#loading-page .logo{
	width: 33px;
}


.loading-page-center{
    position: relative;
    z-index: 1;
    width: calc(300px + 5%);
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    align-items: center;
}

.loading-page-desc{
	display: flex;
	gap: 50px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
	width: 95%;
  max-width: 300px;
  flex-direction: column;
}

#loading-page-bar{
	max-width: 190px !important;
}

#loading-text{
  font-size: var(--font-sub);
}

#thank-you-text{
	text-align: center;
}