/*** RESET ***/
:root{
	--purpleColor: #512be1;
	--purpleColor2: #947cec;
	--redColor: #ff2768;
	--greenColor: #0fe2c2;
	--yellowColor: #fcba03;
	--drakGreenColor: #42B1A0;
	--gray100: #f7fafc;
	--gray200: #eff4f8;
	--gray300: #dbe4ed;
	--gray350: #bdcbd6;
	--gray400: #848484;
	--gray500: #585858;
	--gray600: #04000b;
	--primaryFont: 'Montserrat', sans-serif;
	--swiper-pagination-color:var(--purpleColor);
}

html,body{
	margin:0;
	padding:0;
	font-size:16px;
	line-height:100%;
}

body{
	line-height: 100%;
	font-family: var(--primaryFont);
	color: var(--gray600);
	background: var(--gray200);
}


/*** MISC ***/
#page_wrapper{
	float:left;
	width:100%;
	overflow: hidden;
	padding-top: 75px;
}
*{
	box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5{
	width:100%;
	display: inline-block;
	margin: 0 0 10px 0;
	line-height: 100%;
}
p{
	display: inline-block;
	width: 100%;
	font-size: 14px;
	margin: 0 0 20px 0;
	line-height: 130%;
}
ul, ol{
	font-size: 14px;
	line-height: 130%;
}
p:last-child{
	margin-bottom: 0;
}
img{
	max-width: 100%;
	border:none;
	outline:none;
}
a{
	color: currentColor;
}
a, a:hover{
	text-decoration:none
}
input,
select,
textarea,
button{
	font-family: var(--primaryFont);
}
.button{
	--btnColor: var(--purpleColor);
	--btnColorHover: var(--purpleColor);
	--btnTextColor: #FFF;
	display: inline-block;
	position: relative;
	border-radius: 99px;
	background: var(--btnColor);
	color: var(--btnTextColor);
	border: none;
	cursor: pointer;
	font-size: 14px;
	padding: 8px 25px;
	line-height: 20px;
	text-align: center;
	transition: all 0.5s;
}
.button:hover{
	background: var(--btnColorHover);
}
.button:disabled,
.button.disabled{
	--btnColor:var(--gray400);
	pointer-events: none;
	opacity: 0.3;
}
.button.ghost_button{
	background: none;
	border: 2px solid var(--btnColor);
	color: var(--btnColor);
}
.button.plus_button{	
	padding:5px 30px 5px 20px;
}
.button.plus_button::after{
	content:'+';
	position: absolute;
	top:50%;
	right:12px;
	transform: translateY(-50%);
	font-size: 120%;
}
.button.medium_button{
	padding: 14px 25px;
    font-weight: bold;
}

.red_button{
	--btnColor: var(--redColor);
	--btnColorHover: var(--redColor);
}
.green_button{
	--btnColor: var(--greenColor);
	--btnColorHover: var(--greenColor);
}

.purple_text{
	color: var(--purpleColor);
}
.red_text{
	color: var(--redColor);
}

.section_title{
	font-size: 40px;
	color: var(--purpleColor);
}

.section_subtitle{
	font-size: 25px;
	margin-bottom: 30px;
}

/*** SCROLL BAR ***/
body::-webkit-scrollbar {
	width: 5px;
}
body::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.2);
}
body::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.3);
}

/*** GRAVITY FORMS ***/
.gform_description:empty{
	display: none;
}

/*** HEADER ***/
#dashboard_header{
	position: fixed;
	top:0;
	left:0;
	padding: 0 20px;
	background:#FFF;
	box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.1);
	transition: all 0.5s;
	z-index: 90;
}
#dashboard_header_main{
	height: 75px;
}
#dashboard_header_logo{
	display: inline-block;
	width: 100px;
}

/*** HEADER MENU ***/
#dashboard_menu{
	font-size: 14px;
	font-weight: 700;
	color: var(--gray500);
	gap: 25px;
}
#dashboard_menu > *{
	position: relative;
}
#dashboard_menu > *:not(.button)::before{
	content: '';
	position: absolute;
	display: none;
	top: -10px;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(to right, rgba(81,43,225,1) 0%,rgba(209,40,136,1) 100%);
}
#dashboard_menu > *.current-menu-item{
	color: var(--purpleColor);
}
#dashboard_menu > *.current-menu-item::before{
	display: inline-block;
}
#dashboard_menu > *:not(.button){
	padding: 20px 5px;
}
#dashboard_header_actions{
    margin-right: 20px;
    padding-right: 10px;
    border-right: 1px solid var(--gray350);
	gap: 5px;
}
#dashboard_header_actions > *{
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: 18px;
	color: var(--gray400);
}
.letters_avatar{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: #FFF;
	background: linear-gradient(to right,  rgba(81,43,225,1) 0%,rgba(209,40,136,1) 100%);
}
.header_account{
	cursor: pointer;
	text-align: center;
}
#dashboard_header_actions .header_account i {
	font-size: 24px;
	opacity: 0.6;
}

#account_menu_sidebar{
	position: fixed;
	top: 65px;
	right: 0;
	width: calc(100% - 40px);
	max-width: 220px;
	height: calc(100vh - 65px);
	background: #FFF;
	box-shadow: -10px 0 10px -10px rgba(0, 0, 0, 0.05);
	transition: all 0.3s;
	transform: translateX(100%);
	z-index: 99;
}
.account_menu_active #account_menu_sidebar{
	transform: translateX(0);
}
#account_menu_sidebar::before{
	content:'';
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height: 3px;
	background:linear-gradient(to right,  rgba(81,43,225,1) 0%,rgba(209,40,136,1) 100%)
}
.account_menu_name{
	font-size: 18px;
	font-weight: 700;
	color: var(--purpleColor);
	padding: 20px;
	border-bottom: 1px solid var(--gray200);
}
#account_menu{
	padding: 5px 0;
}
#account_menu > *{
	padding: 15px 20px;
	font-size: 14px;
	color: var(--gray600);
	font-weight: 600;
	transition: all 0.3s;
}
#account_menu > *:hover{
	opacity: 0.6;
}
#account_menu_overlay{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: all 0.3s;
	z-index: 80;
	opacity: 0;
	visibility: hidden;
}
.account_menu_active #account_menu_overlay{
	opacity: 1;
	visibility: visible;
}
#account_menu > .menu-item-944{
	color:var(--redColor);
}

/*** MOBILE MENU ***/
#menu_trigger{
	position: relative;
	width: 25px;
	height: 16px;
	cursor: pointer;
}
#menu_trigger::after{
	content: '';
	position: absolute;
	top:calc(50% - 1px);
	left: 0;
	width: 100%;
	height: 2px;
	background:currentColor;
	transition:all 0.5s;
}
.menu_open #menu_trigger::after{
	transform: translateX(100%);
	opacity: 0;
}
#menu_trigger i{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
}
#menu_trigger i::before{
	content: '';
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 2px;
	background:currentColor;
	transition:all 0.5s;
}
.menu_open #menu_trigger i::before{
	transform: translate(0px, 5px) rotate(45deg);
}
#menu_trigger i::after{
	content: '';
	position: absolute;
	bottom:0;
	left: 0;
	width: 100%;
	height: 2px;
	background:currentColor;
	transition:all 0.5s;
}
.menu_open #menu_trigger i::after{
	transform: translate(0px, -9px) rotate(-45deg);
}
#mobile_menu_wrapper{
	position: absolute;
    bottom: -1px;
    right: 0;
    width: 100%;
    background: var(--purpleColor);
    color: #FFF;
    transform: translateY(100%);
    padding: 10px;
    text-align: center;
	transition: all 0.3s;
	visibility: hidden;
	clip-path: inset(0 0 100% 0);
}
.menu_open #mobile_menu_wrapper{
	visibility: visible;
	clip-path: inset(0 0 0 0);
}
#mobile_menu_wrapper a{
	padding: 10px;
}

/*** FOOTER ***/
#footer{
	font-size: 12px;
	border-top: 1px solid var(--gray300);
}
#footer_text{
	height: 50px;
	display: flex;
	align-items: center;
	color: var(--gray500);
	padding-right: 20px;
	border-right: 1px solid var(--gray300);
	gap: 5px;
}
#footer_text strong{
	color: var(--purpleColor);
}

#footer_menu{
	font-weight: 600;
	color: var(--purpleColor);
}
#footer_menu >*{
	padding: 0 15px;
    height: 50px;
	display: flex;
	align-items: center;
}
#footer_menu >*:not(:last-child){
	border-right: 1px solid var(--gray300);
}

/*** LOGIN PAGE ***/
.login_form{
	background: #FFF;
	border-radius: 30px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
#login_logo{
	width: 150px;
}
.register_link a{
	color: var(--purpleColor);
	text-decoration: underline;
	font-weight: bold;
}

/*** FORMS ***/
input[type=text],
input[type=email],
input[type=password],
input[type=phone]{
	display: inline-block;
	width: 100%;
	height: 40px;
	border:1px solid var(--gray300);
	border-radius: 5px;
	padding: 0 10px;
	outline: none;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=phone]:focus{
	border-color: var(--purpleColor);
}
.form_field_label{
	font-size: 14px;
	margin-bottom: 5px;
}

/*** LEVELS MENU ***/
.levels_filters_section{
	border-bottom: 1px solid var(--gray300);
	font-size: 12px;
}
.top_menu_title{
	line-height: 50px;
	font-weight: 600;
}
.top_menu{
	gap: 45px;
}
.top_menu .current{
	font-weight: bold;
}

/*** PAGE HEADER ***/
.page_header_section{
	padding: 40px 0;
	border-bottom: 1px solid var(--gray300);
}
.dashboard_header_actions{
	gap: 40px;
}
.dashboard_header_actions > *{
	position: relative;
}
.dashboard_header_actions > *:not(:last-child)::after{
	content: '';
	position: absolute;
	top:50%;
	right:-20px;
	width: 1px;
	height: 50px;
	background: var(--gray300);
	transform: translateY(-50%);
}
.header_achievements{
	gap: 10px;
	font-size: 16px;
	font-weight: bold;
}
.logros_count{
	color: var(--purpleColor);
}
.header_achievements i{
	font-size: 30px;
	color: var(--gray350);
}
.current_course{
	font-size: 14px;
	font-weight: bold;
}
.current_course .current_course_value{
	color: var(--purpleColor);
}

/*** HEADER RESERVATIONS SECTION ***/
.header_reservations_section{
	padding: 40px 0;
}
.icon_widget {
	gap: 10px;
	padding: 20px;
	background: #FFF;
	border-radius: 15px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
a.icon_widget{
	transition:all 0.3s;
}
a.icon_widget:hover{
	background: var(--gray200);
}
.widget_icon {
	width: 60px;
	display: flex;
	align-content: center;
	justify-content: center;
	font-size: 40px;
}
.widget_title {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
}
.widget_content p{
	font-size: 14px;
	line-height: 130%;
}

/*** LESSONS ARCHIVE ***/
.lessons_archive_section{
	padding: 50px 0;
}
.lessons_archive_list{
	gap: 15px;
}
.lesson_item{
	padding: 10px;
	background: #FFF;
	border-radius: 15px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.lesson_index{
	width: 60px;
	height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--purpleColor);
	font-size: 30px;
	font-weight: lighter;
	border-right: 1px solid var(--gray300);
	margin-right: 10px;
}
.lesson_title{
	color: var(--purpleColor);
}
.lesson_actions{
	gap: 20px;
}
.lesson_action{
	color: var(--gray400);
	font-weight: 600;
	font-size: 14px;
	gap: 10px;
}
.lesson_action i{
	font-size: 20px;
}
.lesson_preview i{
	color: var(--redColor);
}
.lesson_vocabulary i{
	color: var(--purpleColor);
}
.lesson_quizz i{
	color: var(--greenColor);
}
.widget_header{
	background: var(--color, --purpleColor);
	border-radius: 20px 20px 0 0;
	padding: 20px;
	gap: 15px;
	color: #FFF;
}
.letter_icon{
	width: 50px;
	height: 50px;
	border: 2px solid #FFF;
	color: #FFF;
	border-radius: 10px;
	font-weight: 700;
	font-size: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
}
.widget_date{
	margin-bottom:5px;
}
.widget_time{
	font-weight: 700;
	color: var(--highlightColor);
}
.widget_body{
	background: #FFF;
	color: var(--gray600);
	padding: 20px;
}
.widget_footer{
	background: #FFF;
	border-top: 1px solid var(--gray200);
	border-radius: 0 0 20px 20px;
}
.widget_footer_actions a:not(.button){
	color: var(--purpleColor);
	font-size: 14px;
}
.widget_footer_actions > *{
	height: 55px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-right: 1px solid var(--gray200);
}
.widget_footer_actions > *:last-child{
	border-right: none;
}
.widget_subtitle{
	text-transform: uppercase;
	font-weight: 700;
	font-size: 14px;
	color: var(--purpleColor);
}

/*** NEXT LESSONS CAROUSEL ***/
.next_lessons_carousel_section{
	padding: 20px 0 50px;
}

/*** BLOG ITEMS SECTION ***/
.blog_grid_section{
	padding: 60px 0;
	background:var(--gray100);
}
.blog_item h3{
	font-size: 18px;
	color: var(--purpleColor);
	line-height: 130%;
}
.blog_item p{
	font-size: 14px;
	line-height: 130%;
}
.blog_item_date{
	font-size: 12px;
	opacity: 0.5;
	margin-top: 15px;
}

/*** BLOG POST ***/
.prev_next_header{
	border-bottom: 1px solid var(--gray300);
}
.prev_next_header > *{
	position: relative;
}
.prev_next_header > *{
	height: 50px;
	display: inline-flex;
	align-items: center;
	padding: 0 20px;
	line-height: 50px;
	border-width: 0 1px 0 4px;
	border-color: #000 var(--gray300) #000 var(--purpleColor);
	border-style: solid;
	font-size: 13px;
	gap: 5px;
	color: var(--purpleColor);
	overflow: hidden;
}
.prev_next_header >*:hover{
	color:#FFF;
}
.prev_next_header > * i{
	font-size: 18px;
	position: relative;
	top: 3px;
}
.prev_next_header > .next_post{
	border-width: 0 4px 0 1px;
	border-color: #000 var(--purpleColor) #000  var(--gray300);
}

.prev_next_header >*::before{
	content: '';
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background: var(--purpleColor);
	z-index: -1;
	transition: all 0.3s;
	transform: translateX(-100%);
}
.prev_next_header >.next_post::before{
	transform: translateX(100%);
}
.prev_next_header >*:hover::before{
	transform: translateX(0);
}

.post_wrapper{
	padding: 50px 0;
}
.post_wrapper .page_title{
	font-size: clamp(30px, 3vw, 50px);
	color: var(--purpleColor);
	margin-bottom: 15px;
}
.post_meta{
	font-size: 13px;
	gap: 30px;
}
.post_meta > *{
	position: relative;
}
.post_meta > *:not(:last-child)::after{
	content: '';
	position: absolute;
	top:50%;
	right:-15px;
	width: 1px;
	height: 10px;
	background: var(--gray400);
	transform: translateY(-50%);
}
.post_meta a{
	color: var(--purpleColor);
}
.sidebar_widget{
	border-radius: 20px;
	background-color: #FFF;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.sidebar_widget_title{
	padding: 20px 30px;
	background: #ebe8f7;
	border-radius: 20px 20px 0 0;
}
.sidebar_widget_title h4{
	margin: 0;
	font-size: 25px;
}
.blog_categories ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
.blog_categories ul li{
	border-bottom: 1px solid var(--gray200);
}
.blog_categories ul li a{
	position: relative;
	display: inline-block;
	width: 100%;
	padding: 13px 20px;
	color: var(--purpleColor2);
}
.blog_categories ul li a i{
	font-size: 18px;
	position: relative;
	top: 3px;
	color: var(--gray300);
}
.related_posts{
	padding: 50px 0;
	background: var(--gray100);
}

/*** ARCHIVE ***/
.archive_grid_wrapper{
	padding: 50px 0;
}

/*** COURSE HEADER ***/
.course_header_section{
	background: var(--color);
	color:#FFF;
	padding-top: 50px;
}
.course_header_section > *{
	z-index: 2;
}
.course_header_section::after{
	content: '';
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
}
.course_header_content{
	padding: 50px 0;
}
.course_header_bar{
	position: fixed;
	top:75px;
	left:0;
	width: 100%;
	padding: 0 20px;
	background: var(--color);
	font-size: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	z-index: 10;
}
.course_header_bar::after{
	content: '';
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
}
.course_header_current_course{
	height: 50px;
	gap: 10px;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	padding-right: 15px;
	cursor: pointer;
}
.course_header_current_course i{
	font-size: 22px;
	opacity: 0.5;
}
.course_header_current_course strong{
	color: var(--highlightColor);
}
.course_progress{
	height: 50px;
	gap: 30px;
}
.course_progress > *{
	position: relative;
	height: 50px;
	line-height: 50px;
}
.course_progress > *:not(:last-child)::after{
	content: '';
	position: absolute;
	top:0;
	right: -15px;
	width: 1px;
	height: 100%;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.course_progress_percent strong{
	color: var(--highlightColor);
}
.course_title{
	font-size:clamp(30px, 8vw, 100px);
}
.course_progress_bar{
	position: relative;
}
.main_progress_bar{
	position: relative;
	display: inline-block;
	width:100%;
	height: 5px;
	background: rgba(255, 255, 255, 0.3);
}
.main_progress_bar::after{
	content: '';
	position: absolute;
	top:0;
	left:0;
	width: var(--progress, 1%);
	height: 100%;
	background: var(--highlightColor);
}
.progress_bar_label{
	display: inline-block;
	margin-top: 10px;
	font-size: 14px;
}
.progress_bar_number{
	position: absolute;
	top: 10px;
	left: var(--progress, 1%);
	font-size: 13px;
	color: var(--highlightColor);
	font-weight: bold;
	transform: translateX(-50%);
}
.course_archive_section{
	padding: 40px 0;
}
.sublevels_accordeon_item{
	border-radius: 20px;
	overflow: hidden;
}
.sublevels_accordeon_item_header{
	padding: 30px;
	background: #ebe8f7;
	border-radius: 20px 20px 0 0;
	cursor: pointer;
}
.sublevel_name{
	font-size: 25px;
	font-weight: bold;
}
.level_name{
	color: var(--purpleColor);
}
.sublevels_accordeon_item_body{
	width: 100%;
	background: #FFF;
	display: none;
}
.sublevels_accordeon_item:first-child .sublevels_accordeon_item_body{
	display: inline-block;
}
.level_lessons_list{
	gap:10px;
}
.sublevel_lesson{
	padding: 10px 20px 10px 0;
	transition: all 0.5s;
}
.sublevel_lesson:hover{
	background: var(--gray100);
}
.sublevels_accordeon{
	gap:20px
}
.lesson_title h3{
	margin: 0;
}
.lesson_complete{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: 35px;
	color:var(--greenColor);
	border-radius: 50%;
	margin-left: auto;
}
.course_certificate {
	padding: 20px;
	border-radius: 20px;
	background: var(--purpleColor);
	color: #FFF;
	gap: 10px;
}
.course_certificate_icon{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	font-size: 40px;
}
.certificate_title_wrapper{
	font-size: 18px;
	font-weight: bold;
	line-height: 120%;
}
.certificate_actions{
	gap: 15px;
}
.certificate_actions > *{
	position: relative;
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 22px;
	transition: all 0.5s;
	border-radius: 3px;
}
.certificate_actions > *:hover{
	background: rgba(255, 255, 255, 0.3);
}
.certificate_actions > *:not(:last-child)::after{
	content: '';
	position: absolute;
	top:50%;
	right: -7px;
	width: 1px;
	height: 40px;
	background: rgba(0, 0, 0, 0.2);
	transform: translateY(-50%);
}
.big_white_icon{
	background: #FFF;
	padding: 10px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.big_white_icon img{
	border-radius: 10px;
}
.big_white_icon span{
	font-size: 18px;
	font-weight: bold;
	margin: 10px 0;
}

/*** LESSON SINGLE ***/
.lesson_single_page{
	padding: 40px 0;
}
.lesson_single_page .letter_icon{
	color: var(--color);
	border-color: var(--color);
	width: 60px;
	height: 60px;
	font-size: 25px;
	border-width: 3px;
}
.lesson_single_title{
	gap: 20px;
}
.lesson_single_title .page_title{
	width: calc(100% - 90px);
	margin: 0;
}
.schedules_list_item{
	padding: 10px 0;
}
.schedules_list_item > *:not(:first-child){
	border-top:1px solid var(--gray300);
}
.schedules_list_item_date{
	height: 60px;
	padding: 0 20px;
	font-size: 16px;
	font-weight: bold;
	line-height: 120%;
	border-right: 1px solid var(--gray300);
}
.schedules_list_item_time{
	font-size: 14px;
}
.lesson_resources{
	padding-top: 40px;
	margin-top: 40px;
	border-top: 1px solid var(--gray300);
}
.lesson_resources h3{
	font-size: 20px;
	margin-bottom: 20px;
}
.file_item{
	padding: 20px;
	background:#FFF;
	border-radius: 10px;
	color: var(--color);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.file_item i{
	font-size: 30px;
}
.file_item span{
	margin-top: 10px;
	font-weight: bold;
}
.all_lessons_link{
	padding: 20px 0;
	border-top: 1px solid var(--gray300);
	font-size: 14px;
	color: var(--purpleColor2);
}
.schedule_item h2{
	font-size: 35px;
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--gray300);
}
.schedule_item h2 span{
	color: var(--purpleColor);
}
.schedule_item:nth-child(odd) h2 span{
	color: var(--redColor);
}
.schedules_header{
	border-bottom: 1px solid var(--gray300);
}
.schedules_header_title{
	height: 50px;
	line-height: 50px;
	font-size: 14px;
	font-weight: bold;
	border-right: 1px solid var(--gray300);
	padding-right: 20px;
}
.tax_header_list{
	font-size: 14px;
	gap: 40px;
}
.tax_header_list .current{
	font-weight: bold;
}

/*** QUIZZES ***/
.quizz_item{
	padding: 20px;
	background: #FFF;
	box-shadow: 0px 2px 6px #091B7B12;
	border-radius: 14px;
}
.quizz_item .quizz_title{
	font-size: 16px;
	margin: 0;
}
.quizz_item .quizz_level{
	font-size: 13px;
	color: var(--purpleColor);
}
.quizz_restul_label{
	font-size: 13px;
	margin-bottom: 4px;
}
.quizz_result_value{
	font-size: 16px;
	font-weight: bold;
	color: var(--gray500);
}
.completed .quizz_result_value{
	color: var(--purpleColor);
}
.quizz_actions > *{
	position: relative;
}
.quizz_actions > *:not(:last-child)::after{
	content: '';
	position: absolute;
	top:50%;
	right:-10px;
	width: 1px;
	height: 70px;
	background: var(--gray200);
	transform: translateY(-50%);
}
.quizz_result_icon{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	font-size: 30px;
}
.quizz_result_icon .fi-rs-check-circle{
	color: var(--greenColor);
}
.quizz_result_icon .fi-rs-circle-cross{
	color: var(--redColor);
}
.question_header{
	padding-bottom: 30px;
	border-bottom: 1px solid var(--gray300);
}
.question_header .letter_icon{
	width: 65px;
	height: 65px;
	font-size: 28px;
	color: var(--purpleColor);
	border-color: var(--purpleColor);
}
.question_title{
	font-size: 28px;
	line-height: 130%;
	font-weight: bold;
}
.quizz_header{
	height: 50px;
	font-size: 13px;
}
.quizz_header .quizz_title{
	padding: 0 20px;
}
.quizz_header .quizz_title span{
	color: var(--purpleColor);
}

.quizz_audio_wrapper{
	border: 4px solid var(--purpleColor2);
    color: var(--purpleColor2);
    border-radius: 99px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
}
.quizz_audio_wrapper audio{
	width:100%;
}

.quizz_question_item hr{
	border-bottom: 1px solid var(--gray300);
}

.quizz_header .question_count{
	font-weight: bold;
	color: var(--purpleColor);
}
.quizz_option_label{
	cursor: pointer;
	display: inline-flex;
	width: 100%;
}
.quizz_option_label input{
	display: none;
}
.quizz_option_box {
	width:100%;
	padding:25px 20px;
	background: #FFF;
	box-shadow: 0px 2px 6px #091B7B12;
	border-radius: 14px;
	border: 3px solid transparent;
	font-size: 14px;
	transition: all 0.5s;
}
.quizz_option_box:hover {
	box-shadow: 0px 8px 15px #091b7b24;
}
.option_idx{
	font-size: 40px;
	opacity: 0.3;
	font-weight: bold;
}
.quizz_option_label input:checked + .quizz_option_box{
	border-color: var(--purpleColor);
	color: var(--purpleColor);
}
.quizz_option_label input:checked + .quizz_option_box .option_idx{
	opacity: 1;
}
.question_footer::before{
	content: '';
	position: absolute;
	top:50%;
	left: 0;
	width: 100%;
	height: 1px;
	background: var(--gray300);
}
.question_button{
	position: relative;
	padding: 0 0 0 20px;
	background: var(--gray200);
}

.answer_result{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	color: #FFF;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s;
}
.answer_result.active{
	opacity: 1;
	visibility: visible;
}
.answer_result h3{
	font-size: 50px;
	margin: 0;
}
.answer_result i{
	font-size: 80px;
}
#answer_correct.answer_result{
	background: #42B1A0;
}
#answer_fail.answer_result{
	background: #C9003D;
}
.quizz_single_page.loading{
	opacity: 0.5;
	pointer-events: none;
}
.answer_result_wrapper{
	border-width: 1px 0;
	border-style: solid;
	border-color: rgba(255, 255, 255, 0.2);
}

/*** QUIZZ RESULT ***/
.quizz_result_single_page{
	height: calc(100dvh - 126px);
}
.result_box{
	padding:50px;
	border-radius:20px;
	background:#FFF;
	box-shadow:0 0 10px rgba(0,0,0,0.2);
}
.score_number{
	display:inline-flex;
	width: 150px;
	height: 150px;
	border-radius:50%;
	align-items:center;
	justify-content:center;
	font-size:45px;
	font-weight:bold;
	color:#FFF;
}
.result_box.result_green .score_number{
	background:var(--greenColor);
}
.result_box.result_red .score_number{
	background:var(--redColor);
}
.result_box.result_yellow .score_number{
	background:var(--yellowColor);
}
.score_detail{
	font-size: 20px;
    font-weight: bold;
}

/*** REGULAR DASHBOARD PAGE CONTENT ***/
.regular_dashboard_page_content{
	padding:40px;
	border-radius:20px;
	background:#FFF;
}
.woocommerce-MyAccount-navigation{
	display:none;
}
fieldset {
	border: 1px solid var(--gray300);
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 30px;
}
.woocommerce-form-row label{
	font-size: 12px;
    margin-bottom: 5px;
    display: block;
    font-weight: 600;
}
.form-row-first,
.form-row-last{
	width:calc(50% - 10px);
	float:left;
}
.form-row-last{
	margin-left:20px;
}
.woocommerce-form-row span em{
	display: block;
    font-size: 12px;
    margin-top: 10px;
    color: var(--gray400);
}
fieldset legend{
	text-transform: uppercase;
    font-weight: 600;
    padding: 0 10px;
    color: var(--gray500);
    font-size: 14px;
}
.woocommerce-info{
	padding:20px;
	background:var(--gray100);
	border-radius:5px;
	margin-bottom:20px;
	text-align:center;
}

.woocommerce-input-wrapper{
	display: block;
}
.woocommerce-input-wrapper select{
	width: 100%;
	max-width: 250px;
	height: 40px;
	border-radius: 5px;
	border: 1px solid var(--gray300);
	padding: 0 10px;
	outline: none;
	cursor: pointer;
}
.password-input{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap:10px;
	width: 100%;
	height: 40px;
	border-radius: 5px;
}
.show-password-input{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	cursor: pointer;
	font-size: 14px;
	color: var(--purpleColor);
	background-color:transparent;
	background-image: url(../images/hide.svg);
	background-size: 20px;
	background-position: center;
	background-repeat: no-repeat;
	border:1px solid var(--gray300);
	border-radius: 5px;
}


@media(max-width:992px) {
	.section_title {
		font-size: 25px;
	}
	#footer_text{
		padding-right: 0;
		border-right: none;
		justify-content: center;
		border-bottom: 1px solid var(--gray300);
	}
	.answer_result i {
		font-size: 50px;
	}
	.answer_result h3 {
		font-size: 25px;
	}
	.question_title {
		font-size: 20px;
		width: calc(100% - 70px);
	}
}