#navbar_canvas{height: 90px; transition: var(--transition);}
#navbar{width: 100%; position: fixed; background-color: var(--bg_white); top: 0px; left: 0px; z-index: 55; box-shadow: var(--shadow); padding: 35px 20px 0px 20px; box-sizing: border-box;}
#navbar > div{display: grid; height: 55px; grid-template-columns: 225px 1fr 225px; padding: 0px 15px; box-sizing: border-box; align-items: center; max-width: 1400px; transition: var(--transition);}
#navbar > div > div{width: 100%;}
#navbar > div > div:nth-child(3){text-align: right;}
#navbar .navLogo{width: 225px; display: inline-block; transition: var(--transition);}
#navbar .navLogo > div{padding-bottom: 19%;}
#navbar .navMenu{white-space: nowrap; max-width: min-content; transition: var(--transition);}
#navbar .navMenu > a{display: inline-block;}
#navbar .navMenu > a > div{padding: 10px; font-weight: bold; color: var(--text_silver); position: relative;}
#navbar .navMenu > a > div:before{content: ''; position: absolute; opacity: 0; bottom: 0px; left: 0px; width: 100%; height: 2px; background: var(--bg_green);}
#navbar .navMenu > a.active > div{color: var(--text_purple);}
#navbar .navMenu > a.active > div:before{opacity: 1;}
#navbar .navOpt{white-space: nowrap; float: right;}
#navbar .navOpt > a{display: inline-block;}
#navbar .navOpt > a:not(:last-child) > div{margin-right: 15px;}
#navbar .navOpt .noItem{display: grid; color: var(--text_black); grid-template-columns: 15px 1fr; grid-gap: 10px; align-items: center; border: 1px solid var(--bg_black); border-radius: 10px; padding: 5px 10px; background: var(--bg_white);}
#navbar .navOpt .noItem > div{width: 100%;}
#navbar .navOpt .noItem > div:first-child > div{width: 15px; height: 15px;}
#navbar .navCA{width: 141px; display: inline-block; margin-top: 4px;}
#navbar .navCA > div{padding-bottom: 29%;}

.navbar_mini{height: 30px; border-bottom: 1px solid var(--bg_line); position: fixed; top: 0px; z-index: 56; background: var(--bg_white); width: 100%; padding: 0px 30px; box-sizing: border-box;}
.navbar_mini > div{float: right; margin-top: 4px;}
.navbar_mini > div > div:not(:last-child){margin-right: 25px;}
.navbar_mini .nmItem{display: inline-block;}
.navbar_mini .nmItem > div{display: grid; white-space: nowrap; grid-template-columns: 15px min-content; grid-gap: 10px; align-items: center;}
.navbar_mini .nmItem > div > div{width: 100%;}
.navbar_mini .nmItem > div > div:first-child > div{width: 15px; height: 15px;}

#footer{background-color: var(--bg_purple); color: var(--text_white);}
#footer > div{max-width: 1100px; padding: 25px 20px;}
#footer .fContent{display: grid; grid-template-columns: 1fr 1fr; grid-gap: 25px; align-items: center;}
#footer .fContent > div{width: 100%;}
#footer .fContent .fcLogo{max-width: 330px; display: inline-block; width: 100%;}
#footer .fContent .fcLogo > div{padding-bottom: 18%;}
#footer .fContent .fcSlogan{margin-top: 15px; font-size: 20px; font-family: 'bold'; max-width: 240px; display: inline-block;}
#footer .fContent .fcContact > div{display: grid; grid-template-columns: 15px 1fr; align-items: center; grid-gap: 10px;}
#footer .fContent .fcContact > div:not(:last-child){margin-bottom: 10px;}
#footer .fContent .fcContact > div > div{width: 100%;}
#footer .fContent .fcContact > div > div:first-child > div{width: 15px; height: 15px;}
#footer .fCopyright{text-align: center; margin-top: 30px; padding-top: 30px; border-top: 1px solid var(--bg_white); font-size: 11px;}
#footer .fcSocmed{margin-top: 25px; white-space: nowrap;}
#footer .fcSocmed > a{display: inline-block;}
#footer .fcSocmed > a:not(:last-child){margin-right: 15px;}
#footer .fcSocmed .fcItem{width: 20px; height: 20px;}

section{max-width: 1100px;}
section.minHeight{min-height: calc(100vh - 250px);}
section div.distance{padding: 0px 15px;}

.contentSpace{height: 50px;}
.footerSpace{height: 50px;}

#popup{width: 100%; top: 0px; left: 0px; height: 100%; position: fixed; z-index: 90; background: rgba(239, 239, 239, 0.55); overflow: auto;}
#popup table{width: 100%; height: 100%;}
#popup .p_canvas{max-width: 400px; width: 80%; margin-top: 50px; margin-bottom: 50px; box-shadow: 0 0 6px 0 rgba(161, 161, 161, 0.5); border-radius: 5px; overflow: hidden;}

.popup_head_action{height: 50px; padding: 0px 15px; background: var(--bg_pink); color: var(--text_white);}
.popup_head_action .pha_title{font-size: 15px; font-family: 'bold'; float: left; margin-top: 15px;}
.popup_head_action .pha_action{float: right;}
.popup_head_action .pha_action button{margin-top: 10px;}

.popup_list{list-style-type: none;}
.popup_list > li{padding: 15px 20px; cursor: pointer; transition: all 0.5s ease;}
.popup_list > li:not(:last-child){border-bottom: 1px solid #f6f6f6;}
.popup_list > li:hover{background: #e7e7e7;}
.popup_list > a > li{padding: 15px 20px; cursor: pointer; transition: all 0.5s ease; color: var(--text_black);}
.popup_list > a:not(:last-child) > li{border-bottom: 1px solid #f6f6f6;}
.popup_list > a:hover > li{background: #e7e7e7;}

.pageTitle{padding: 20px 25px; font-size: 25px; font-weight: bold;}
.pageTitle > div{position: relative; width: min-content; white-space: nowrap; color: var(--text_purple); display: inline-block;}
.pageTitle > div:before{content: ''; position: absolute; left: 0px; bottom: 0px; width: 100%; height: 3px; background: var(--bg_green);}

.pageHead{margin-bottom: 35px; position: relative;}
.pageHead .phImg{padding-bottom: 30%; position: relative; background-color: var(--bg_silvercalm); background-size: cover;}
.pageHead .phImg:before{content: ''; position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; background: rgba(0,0,0,0.4);}
.pageHead .phTitle{font-size: 45px; font-weight: bold; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: var(--text_white);}

.page_info{background: var(--bg_silvercalm); padding: 25px 0px;}

.page_empty{margin-top: 75px; margin-bottom: 75px; text-align: center; color: var(--text_silver);}

.tab > div:first-child{display: table; color: var(--text_silver); border-bottom: 1.5px solid var(--bg_silver); table-layout: fixed; width: 100%; height: 50px;}
.tab > div:first-child > div{cursor: pointer; vertical-align: middle; white-space: nowrap; padding-bottom: 3px; font-size: 17px; text-align: center; position: relative;}
.tab.mini > div:first-child > div{font-size: 13px; font-weight: bold;}
.tab > div:first-child > div{display: table-cell;}
.tab > div:first-child > div:before{content: ''; position: absolute; bottom: -1.5px; height: 1.5px; width: 60%; background: var(--bg_blue); left: 0; right: 0; margin-left: auto; margin-right: auto; opacity: 0;}
.tab > div:first-child > div:hover{color: var(--text_black);}
.tab > div:first-child > div.active{color: var(--text_black);}
.tab > div:first-child > div.active:before{opacity: 1;}
.tab > div:last-child > span:not(:first-child){display: none;}

#alert{width: 100%; height: 0px; position: fixed; top: 0px; left: 0px; z-index: 100;}
#alert > div{width: 90%; max-width: 450px; transition: 0.2s; box-shadow: 0 0 6px 0 rgba(161, 161, 161, 0.5); position: relative; top: -100px; border-radius: 20px;}
#alert > div > div{padding: 9px 15px 11px 15px; text-align: center; color: var(--text_white);}
#alert > div.success{background: var(--bg_alert_green);}
#alert > div.warning{background: var(--bg_alert_orange);}
#alert > div.failed{background: var(--bg_alert_red);}

.title{padding: 15px 0px;}
.title > div{display: table; table-layout: fixed; width: 100%;}
.title > div > div{display: table-cell; vertical-align: middle;}
.title > div > div:first-child > div:first-child{font-size: 25px; font-family: 'bold';}
.title > div > div:first-child > div:nth-child(2){margin-top: 3px; color: var(--text_silver);}
.title > div > div:last-child{width: 150px;}
.title > div > div:last-child > a > div{border: 1px solid var(--bg_black); border-radius: 5px; float: right; padding: 5px 10px 6px 10px; transition: all 0.2s ease; background: var(--bg_black); color: var(--text_white);}
.title > div > div:last-child > a > div:hover{box-shadow: inset 0px 0px 0px 2px var(--bg_line);}

.menu_horizontal{margin: 15px 0px; overflow: hidden; height: 42px;}
.menu_horizontal > div{white-space: nowrap; overflow: auto; height: 75px;}
.menu_horizontal > div > a > div{display: inline-block; color: var(--text_black); padding: 10px 20px 12px 20px; cursor: pointer; transition: 0.2s; border-radius: 5px; background: var(--bg_silver); font-family: 'bold'; margin-right: 15px;}
.menu_horizontal > div > a:first-child > div{margin-left: 15px;}
.menu_horizontal > div > a:hover > div{background: var(--bg_silvercalm);}
.menu_horizontal > div > a > div.active{background: var(--bg_black); color: var(--text_white);}

/**FRONT**/
.front_layout{display: grid; width: 500px; overflow: hidden; grid-template-columns: 1fr 1fr; margin-top: 70px; border: 2.5px solid var(--bg_green); border-radius: 10px;}
.front_layout > div{width: 100%;}
.front_layout > div:first-child{background-image: url('../../../images/background/front_panel.png');}
.front_layout > div:nth-child(2) > div{padding: 70px 15px;}
.front_layout .flTitle{font-size: 15px; font-weight: bold;}
.front_layout .flBtn{margin-top: 15px;}
.front_layout .flBtn button{width: 100%;}

.front_section_box{padding: 55px 0px; background: var(--bg_silvercalm); margin-top: 55px; background-image: url('../../../images/background/front_pattern_1.webp');}

.front_header{position: relative;}
.front_header .fhBanner{padding-bottom: 40%; background-color: var(--bg_silvercalm); transition: background-image 0.5s ease-in-out;}
.front_header .fhBox{position: absolute; bottom: 0px; left: 0px; width: 100%;}
.front_header .fhBox:before{content: ''; position: absolute; bottom: 0px; left: 0px; width: 100%; height: 90%; background-image: linear-gradient(to bottom, transparent, var(--bg_black));}
.front_header .fhBox > div{position: relative; z-index: 1; color: var(--text_white); max-width: 1100px; display: grid; grid-template-columns: 350px 1fr min-content; padding-top: 65px; padding-bottom: 55px; grid-gap: 25px; align-items: center;}
.front_header .fhBox > div > div{width: 100%;}
.front_header .fhBox > div > div:first-child{font-size: 25px; font-weight: bold;}
.front_header .fhBox button{white-space: nowrap;}
.front_header .fhBubble{position: absolute; top: 15px; right: 15px; width: min-content; z-index: 15;}
.front_header .fhBubble .fbList{width: min-content; white-space: nowrap;}
.front_header .fhBubble .fbList > div{display: inline-block;}
.front_header .fhBubble .fbList > div:not(:last-child){margin-right: 10px;}
.front_header .fhBubble .fbList > div > div{width: 15px; height: 15px; background: var(--bg_silver); border: 2px solid var(--bg_purple); border-radius: 50%;}
.front_header .fhBubble .fbList > div.active > div{background: var(--bg_purple);}

.front_count{background: var(--bg_green); padding: 30px 0px;}
.front_count .fcContent{max-width: 1100px; display: grid; color: var(--text_purple); grid-template-columns: 300px 1fr; grid-gap: 25px; align-items: center;}
.front_count .fcContent > div{width: 100%;}
.front_count .fcContent > div:first-child{font-size: 20px; font-family: 'bold';}

.front_whats{margin-top: 55px;}
.front_whats .fwTitle{font-size: 35px; font-weight: bold; text-align: center;}
.front_whats .fwContent{margin-top: 20px;}
.front_whats .fwContent .fcBtn{margin-top: 15px; font-size: 15px; font-weight: bold; display: none;}

.front_point{margin-top: 65px;}
.front_point > div{display: grid; grid-gap: 25px; align-items: center;}
.front_point > div:not(:last-child){margin-bottom: 25px;}
.front_point > div > div{width: 100%;}
.front_point .fpLeft{grid-template-columns: 350px 1fr;}
.front_point .fpRight{grid-template-columns: 1fr 350px;}
.front_point .fpIcon > div{padding-bottom: 70%; border-radius: 10px;}
.front_point .fpTitle{font-weight: bold; font-size: 20px; margin-bottom: 5px;}
.front_point .fpDesc{color: var(--text_silver); font-size: 15px;}
.front_point .fpDesc > div:first-child{margin-bottom: 10px; font-style: italic;}

.front_enrollment{margin-top: 35px; padding: 30px 0px 10px 0px; position: relative;}
.front_enrollment .feLine{height: 2px; width: 100%; background: var(--bg_green); position: absolute; top: 56px;}
.front_enrollment .feContent{z-index: 5; position: relative; padding: 10px 35px; background: var(--bg_white); max-width: 400px; display: grid; grid-template-columns: 1fr min-content; align-items: center;}
.front_enrollment .feContent > div{width: 100%;}
.front_enrollment .feContent > div:first-child{font-size: 15px; font-weight: bold;}

.front_box{display: grid; grid-gap: 25px; grid-template-columns: 1fr 1fr 1fr 1fr;}
.front_box > div{width: 100%; border-radius: 10px; border: 2px solid var(--bg_blue); overflow: hidden; box-sizing: border-box; background: var(--bg_white);}
.front_box > div > div:first-child > div{padding-bottom: 55%;}
.front_box .fbContent{padding: 10px 15px 15px 15px; text-align: center;}
.front_box .fbContent > div:first-child{font-weight: bold; font-size: 17px; color: var(--text_purple); margin-bottom: 5px;}
.front_box .fbContent > div:nth-child(2){color: var(--text_silver);}

.front_news{margin-top: 35px;}
.front_news .fnHead{display: grid; grid-template-columns: min-content 1fr; align-items: center; grid-gap: 30px;}
.front_news .fnHead > div{width: 100%;}
.front_news .fnHead > div:first-child{font-size: 40px; font-family: 'bold'; color: var(--text_green);}
.front_news .fnHead > div:nth-child(2){text-align: right;}

.front_enrollment_bottom{margin-top: 35px; padding: 60px 0px 50px 0px; text-align: center; background-image: url('../../../images/background/front_pattern_1.webp');}
.front_enrollment_bottom > div:first-child{font-size: 20px; margin-bottom: 15px;}
.front_enrollment_bottom > div:nth-child(2) button{padding: 10px 25px;}

/**HOME**/
.home_layout{display: grid; grid-template-columns: 250px 1fr; grid-gap: 25px;}
.home_layout > div{width: 100%; box-sizing: border-box;}

.home_profile{padding: 15px; border: 1px solid var(--bg_line); border-radius: 10px;}
.home_profile > div:not(:first-child){margin-top: 10px;}
.home_profile .hpTitle{font-size: 15px; font-weight: bold;}
.home_profile .hpTable table{width: 100%;}
.home_profile .hpTable table tr td{padding: 2px 0px;}
.home_profile .hpTable table tr > td:first-child{width: 135px;}
.home_profile .hpTable table tr > td:nth-child(2){width: 15px;}
.home_profile .hpInfo{white-space: nowrap;}
.home_profile .hpInfo > div{display: inline-block; width: 150px; text-align: center; border-radius: 10px; overflow: hidden; border: 1px solid var(--bg_green);}
.home_profile .hpInfo > div:not(:last-child){margin-right: 10px;}
.home_profile .hpInfo > div > div{padding: 10px 0px;}
.home_profile .hpInfo > div > div:first-child{background: var(--bg_purple); color: var(--text_white); font-size: 12px;}
.home_profile .hpInfo > div > div:nth-child(2){font-weight: bold;}

.home_status{max-width: 300px; overflow: hidden; border-radius: 10px; text-align: center;}
.home_status > div:first-child{padding: 10px 0px; color: var(--text_white);}
.home_status.success{border: 1px solid var(--bg_green);}
.home_status.waiting{border: 1px solid var(--bg_blue);}
.home_status.failed{border: 1px solid var(--bg_red);}
.home_status.success > div:first-child{background: var(--bg_green);}
.home_status.waiting > div:first-child{background: var(--bg_blue);}
.home_status.failed > div:first-child{background: var(--bg_red);}
.home_status > div:nth-child(2){padding: 10px 0px; margin-top: 50px;}
.home_status .hsIcon{width: 150px; height: 150px; background-size: 100%;}
.home_status.success .hsIcon{background-image: url('../../../images/background/status_success.gif');}
.home_status.waiting .hsIcon{background-image: url('../../../images/background/status_waiting.gif');}
.home_status .hsTxt{font-size: 17px; font-weight: bold;}

/**GALLERY**/
.gallery_show{position: fixed; top: 0px; left: 0px; width: 100%; height: 100%; z-index: 100; background: var(--bg_black); display: grid; grid-template-columns: 1fr 50px; align-items: center; display: none;}
.gallery_show > div{width: 100%; height: 100%;}
.gallery_show > div:nth-child(2){height: min-content;}
.gallery_show .gsImg{box-sizing: border-box; text-align: center; position: relative; vertical-align: middle;}
.gallery_show .gsImg img{max-width: 100%; max-height: 100%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);}
.gallery_show .gsControl{color: var(--text_white); display: grid; font-size: 11px; font-weight: bold; max-width: 500px; text-align: center; grid-template-rows: 1fr 1fr 1fr 35px; grid-gap: 10px; align-items: center; height: 250px;}
.gallery_show .gsControl > div{width: 100%; cursor: pointer;}
.gallery_show .gsControl .gcItem > div:first-child{width: 15px; height: 15px; margin-bottom: 5px;}

/**ENROLLMENT**/
.enrollRegistLayout{margin-top: 35px;}
.enrollRegistLayout .erlHead{display: grid; grid-template-columns: 1fr 1fr; grid-gap: 25px;}
.enrollRegistLayout .erlHead > div{width: 100%; padding: 25px 15px; box-sizing: border-box; text-align: center; border-radius: 15px;}
.enrollRegistLayout .erlHead > div:first-child{background: var(--bg_green);}
.enrollRegistLayout .erlHead > div:nth-child(2){background: var(--bg_purple); color: var(--text_white);}
.enrollRegistLayout .erlHead .ehIcon{margin-bottom: 15px;}
.enrollRegistLayout .erlHead .ehIcon > div{width: 35px; height: 35px;}
.enrollRegistLayout .erlHead .ehTitle{font-weight: bold;}
.enrollRegistLayout .erlStep{margin: 75px 0px;}
.enrollRegistLayout .erlStep .esTitle{font-size: 17px; font-weight: bold; text-align: center; margin-bottom: 15px;}
.enrollRegistLayout .erlStep li{padding: 10px 15px; border-radius: 10px; background: var(--bg_silvercalm); margin-bottom: 15px; list-style-type: none;}
.enrollRegistLayout .erlDownload{text-align: center;}
.enrollRegistLayout .erlDownload button{white-space: nowrap;}
.enrollRegistLayout .erlDownload .edInfo{font-weight: bold; font-size: 15px;}
.enrollRegistLayout .erlDownload .edBtn{padding: 50px 0px; position: relative; overflow: hidden; border-radius: 25px; margin-top: 25px;}
.enrollRegistLayout .erlDownload .edBtn:before{content: ''; z-index: -1; opacity: 0.2; position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; background-image: url('../../../images/background/enrollment_download.jpg'); background-size: cover;}

.enrollCriteria{margin-top: 25px;}
.enrollCriteria > div:not(:last-child){margin-bottom: 35px;}
.enrollCriteria > div{display: grid; grid-gap: 25px; align-items: center;}
.enrollCriteria > div > div{width: 100%;}
.enrollCriteria .ecLeft{grid-template-columns: 250px 1fr;}
.enrollCriteria .ecRight{grid-template-columns: 1fr 250px;}
.enrollCriteria .elPhoto > div{padding-bottom: 60%; background-color: var(--bg_silvercalm); border-radius: 10px;}
.enrollCriteria .elTitle{font-weight: bold; margin-bottom: 5px;}
.enrollCriteria .elList{margin-top: 15px; border: 1px solid var(--bg_line); border-radius: 10px;}
.enrollCriteria .elList li{padding: 10px 15px; border-radius: 10px; list-style-type: none;}
.enrollCriteria .elList > li:not(:last-child){border-bottom: 1px solid var(--bg_line);}

.enrollFeeHead{display: grid; grid-gap: 25px; align-items: center; grid-template-columns: 250px 1fr; margin-top: 25px;}
.enrollFeeHead > div{width: 100%;}
.enrollFeeHead .efPhoto > div{padding-bottom: 60%; background-color: var(--bg_silvercalm); border-radius: 10px;}
.enrollFeeHead .ecTitle{font-weight: bold; margin-bottom: 5px;}
.enrollFeeHead .ecItem{display: grid; grid-template-columns: 1fr 1fr; grid-gap: 15px; margin-top: 15px;}
.enrollFeeHead .ecItem > div{width: 100%; padding: 10px; box-sizing: border-box; border-radius: 10px; background: var(--bg_silvercalm);}

.enrollFeePayment{margin-top: 65px;}
.enrollFeePayment .efTitle{text-align: center; font-size: 17px;}
.enrollFeePayment .efList{margin-top: 15px; display: grid; grid-template-columns: 1fr 1fr 1fr; grid-gap: 25px;}
.enrollFeePayment .efList > div{width: 100%;}
.enrollFeePayment .efList .elItem{display: grid; grid-template-columns: 35px 1fr; grid-gap: 20px;}
.enrollFeePayment .efList .elItem > div{width: 100%;}
.enrollFeePayment .efList .elItem > div:first-child > div{width: 35px; height: 35px;}

/**NEWS**/
.newsLayout{max-width: 800px;}

.newsHead{text-align: center;}
.newsHead .nhTitle{font-size: 25px; font-weight: bold;}
.newsHead .nhDate{color: var(--text_silver);}
.newsBanner{margin-top: 35px; margin-bottom: 25px;}
.newsBanner > div{padding-bottom: 60%; background-color: var(--bg_silver); border-radius: 10px;}

/**STUDENTS**/
.students_announ_status{max-width: 400px; margin-top: 35px; border: 1.5px solid var(--bg_greendark); text-align: center; border-radius: 10px; overflow: hidden;}
.students_announ_status > div:first-child{padding: 10px 0px; color: var(--text_white); background: var(--bg_greendark);}
.students_announ_status > div:nth-child(2){padding: 20px 0px; color: var(--text_greendark); font-size: 17px; font-weight: bold;}
.students_announ_status > div:nth-child(3){padding: 0px 15px 15px 15px;}
.students_announ_status.success{border: 1.5px solid var(--bg_greendark);}
.students_announ_status.success > div:first-child{background: var(--bg_greendark);}
.students_announ_status.success > div:nth-child(2){color: var(--text_greendark);}
.students_announ_status.failed{border: 1.5px solid var(--bg_red);}
.students_announ_status.failed > div:first-child{background: var(--bg_red);}
.students_announ_status.failed > div:nth-child(2){color: var(--text_red);}
.students_announ_status.waiting{border: 1.5px solid var(--bg_orange);}
.students_announ_status.waiting > div:first-child{background: var(--bg_orange);}
.students_announ_status.waiting > div:nth-child(2){color: var(--text_orange);}

.students_announ_user{max-width: 700px; border-radius: 10px; border: 1.5px solid var(--bg_line); margin-top: 25px;}
.students_announ_user .sauDetail{padding: 20px;}
.students_announ_user .sauDetail .sdName{font-weight: bold; font-size: 15px;}
.students_announ_user .sauDetail .sdNis{padding: 5px 0px;}
.students_announ_user .sauDetail .sdNis > div{display: inline-block; border-radius: 50px; background: var(--bg_blue); font-size: 11px; padding: 3px 15px; color: var(--text_white);}
.students_announ_user .sauDetail .sdClass{margin-top: 5px;}
.students_announ_user .sauInfo{display: grid; grid-template-columns: 1fr 1fr; grid-gap: 15px; padding: 0px 20px 20px 20px; box-sizing: border-box;}
.students_announ_user .sauInfo > div{width: 100%; border-radius: 10px; text-align: center; overflow: hidden; border: 1.5px solid var(--bg_purple);}
.students_announ_user .sauInfo > div > div:first-child{padding: 10px 0px; background: var(--bg_purple); color: var(--text_white);}
.students_announ_user .sauInfo > div > div:nth-child(2){padding: 15px 0px; color: var(--text_purple); font-weight: bold;}

.students_countdown{position: relative; top: 105px; margin-bottom: 45px; text-align: center; padding: 35px 20px 40px 20px; max-width: 350px; border: 2px solid var(--bg_purple); border-radius: 15px;}
.students_countdown > div:first-child{color: var(--text_silver);}
.students_countdown > div:nth-child(2){font-size: 15px; font-weight: bold; margin-top: 10px;}

/**INFO**/
.info_aboutPrincipal{display: grid; grid-template-columns: 250px 1fr; grid-gap: 25px;}
.info_aboutPrincipal > div{width: 100%;}
.info_aboutPrincipal .iapPhoto > div{padding-bottom: 120%; border-radius: 10px; background-color: var(--bg_silver);}
.info_aboutPrincipal .iapDesc{margin-top: 15px; text-align: center;}
.info_aboutPrincipal .iapDesc > div:first-child{font-size: 17px; font-weight: bold;}
.info_aboutPrincipal .iapDesc > div:nth-child(2){color: var(--text_silver);}

.info_aboutVM{display: grid; grid-template-columns: 1fr 1fr; grid-gap: 25px; position: relative;}
.info_aboutVM > div{width: 100%;}
.info_aboutVM::after{content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background-color: var(--bg_line); transform: translateX(-50%);}
.info_aboutVM .iavTitle{font-size: 17px; font-weight: bold; margin-bottom: 10px;}

.info_aboutCurriculum{display: grid; grid-template-columns: 1fr 1fr 1fr; grid-gap: 20px; text-align: center;}
.info_aboutCurriculum > div{padding: 20px 15px; border-radius: 10px; border: 1px solid var(--bg_silver); width: 100%; box-sizing: border-box;}
.info_aboutCurriculum .iacLogo{width: 150px;}
.info_aboutCurriculum .iacLogo > div{padding-bottom: 100%;}
.info_aboutCurriculum .iacTitle{font-size: 15px; font-weight: bold; margin-top: 15px;}
.info_aboutCurriculum .iacDesc{color: var(--text_silver);}

.info_aboutFacilities .afHead{padding: 25px 0px 15px 0px;}
.info_aboutFacilities .afContent{margin-top: 15px; display: grid; grid-template-columns: 1fr 1fr 1fr;}
.info_aboutFacilities .afContent > div{width: 100%; height: 230px; position: relative; transition: var(--transition); cursor: pointer;}
.info_aboutFacilities .afContent > div:hover{box-shadow: inset 0px 0px 0px 5px var(--bg_green);}
.info_aboutFacilities .afContent > div:before{content: ''; position: absolute; bottom: 0px; left: 0px; width: 100%; height: 60%; background-image: linear-gradient(to bottom, transparent, var(--bg_black));}
.info_aboutFacilities .afContent > div > div{position: absolute; bottom: 15px; font-weight: bold; left: 15px; z-index: 1; color: var(--text_white);}

.info_whatsonContent{margin-top: 25px; display: grid; grid-template-columns: 300px 1fr; grid-gap: 25px;}
.info_whatsonContent > div{width: 100%;}
.info_whatsonContent .iwCover{padding-bottom: 70%; background-color: var(--bg_silvercalm); border-radius: 10%;}
.info_whatsonContent .iwTitle{font-size: 17px; font-weight: bold; margin-bottom: 15px; margin-top: 15px;}

/**ERROR**/
.error_box{max-width: 500px; width: 90%; margin-top: 50px; margin-bottom: 50px; background: var(--bg_white); border-radius: 5px;}
.error_box > div{padding: 25px;}
.error_box .eIcon{padding: 25px 0px 35px 0px;}
.error_box .eIcon > div{width: 90px; height: 90px;}
.error_box .ebDesc{text-align: center;}
.error_box .eLogin{text-align: center; margin-top: 15px;}
.error_box .eLogin > div:not(:last-child){margin-bottom: 15px;}
.error_box .eBtn{text-align: center; margin-top: 25px;}
.error_box .eBtn a{font-family: 'bold';}

.error_coming{max-width: 500px; height: calc(100vh - 100px);}
.error_coming > div{padding-top: 100px;}
.error_coming .ecTime{text-align: center; display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; grid-gap: 15px;}
.error_coming .ecTime > div{width: 100%; border: 1px solid var(--bg_line); border-radius: 10px;}
.error_coming .ecTime > div > div:first-child{font-size: 20px; font-weight: bold; padding: 10px 0px;}
.error_coming .ecTime > div > div:nth-child(2){padding: 5px 0px; background: var(--bg_line);}