/* ==========================================================
   components.css — 공유 UI 컴포넌트
   ----------------------------------------------------------
   여러 페이지에서 재사용되는 공통 UI 스타일 모음:
     1. Utilities       — display / spacing / color / alignment / state
     2. Form elements   — input · textarea 기본
     3. Buttons         — .btn_*, .btn / .label / border · bg 색상 시스템
     4. Tabs            — .tabs / .tabs-link
     5. Tables          — .table / .tb_basic / .result_table / .wd*
     6. Icons           — .xi_*
     7. Content sections — .con_top / .con_div / .sub_div_* / .skipNav*
     8. Modals & Popups — exam 팝업 / 네트워크 팝업 / .c-popup 공통 셸
     9. Banner indicators — .banner_indi_* / .deadline-label
    10. Timer           — #timer_wrap / .timer_*
    11. Floating cart   — .cart_*
    12. Pagination      — .pageing
    13. Slider (PC)     — .slider-* / .arrow / .dots
    14. Slider (MO)     — .ms-*

   하단은 Responsive (1000px → 768px → 550px → height 900px) 통합 블록.
   ========================================================== */

/* ==================================
   1. Utilities (display, spacing, color, alignment)
   ================================== */

/* Display / Visibility */
.dis_mo {
    display: none;
}
.disB_tamo {
    display: none;
}
.disB_tamo img {
    width: 100%;
}
.dis_ta {
    display: none;
}
.hide {
    display: none;
}

/* Layout */
.con_in {
    width: 1000px;
    padding: 0 10px;
    margin: 0 auto;
    box-sizing: border-box;
}
.flex_between {
    display: flex;
    justify-content: space-between;
}
.flex_around {
    display: flex;
    justify-content: space-around;
}
.txt_left {
    text-align: left !important;
}
.txt_center {
    text-align: center !important;
}
.dp_inline {
    display: inline !important;
}
.dp_inlineB {
    display: inline-block !important;
}

/* Color / Weight */
.red {
    color: red;
}
.blue {
    color: blue;
}
.fw_600 {
    font-weight: 600;
}
.fw_800 {
    font-weight: 800;
}
.emphasis {
    color: red;
    font-weight: 600;
}
.container small {
    font-size: 0.875rem;
}
.inner {
    width: 1000px;
    margin: 0 auto;
}
.container img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* Margin / Spacing */
.mgleft_10 {
    margin-left: 10px;
}
.mgtop_10 {
    margin-top: 10px;
}
.mgtop_20 {
    margin-top: 20px;
}
.mgtop_30 {
    margin-top: 30px;
}
.mgtop_50 {
    margin-top: 50px;
}
.mgbottom_10 {
    margin-bottom: 10px;
}
.mgbottom_50 {
    margin-bottom: 50px;
}
.mgbottom_80 {
    margin-bottom: 80px;
}
.lineheight_14 {
    line-height: 1.4;
}

.cont_maxW {
    max-width: 1000px;
    margin: 0 auto;
}
.img100 img {
    width: 100%;
}

.margin1000 {
    width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* State classes */
.tab_on {
    background-color: #ffffff !important;
    border-bottom: 1px solid #ffffff !important;
}
.dis_on {
    display: block !important;
}
.indi_on {
    background-color: #ffffff !important;
}
.sub_click {
    color: blue;
    font-weight: 600;
    transform: skew(-0.03deg);
}
.certifi_click {
    color: #ff3c00;
    border: 1px solid #fa4400;
    font-size: 1rem;
    padding: 5px;
    margin-left: 6px;
    font-weight: 700;
}

/* .selected */
.selected {
    color: #0974db !important;
    background: #ffffff !important;
}

/* Padding / Alignment */
.hPd40px {
    padding: 0 4vw;
}

.vPd05 {
    padding: 0.5em 0;
}
.vPd10 {
    padding: 1em 0;
}
.vPd15 {
    padding: 1.5em 0;
}
.vPd20 {
    padding: 2em 0;
}
.vPd30 {
    padding: 3em 0;
}
.vPd40 {
    padding: 4em 0;
}
.vPd50 {
    padding: 5em 0;
}
.vPd60 {
    padding: 6em 0;
}

.txtLeft {
    text-align: left !important;
}
.txtRight {
    display: inline-block;
    text-align: right !important;
}

/* ==================================
   2. Form elements
   ================================== */

/* .searchForm2 / .btn-search — 검색창 (faq / jobsupport / news / practice04 등 공용) */
.searchForm2 {
    width: 650px;
    margin: 0 auto;
    border-bottom: 4px solid #111;
    padding: 30px 0 15px 0;
    display: flex;
    align-items: center;
}
.searchForm2 .form-control {
    border: 0;
    width: 620px;
    font-size: 20px;
}
.searchForm2 .btn-search {
    width: 23px;
    height: 23px;
    position: relative;
}
.btn-search:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    border: 3px solid #bebebe;
    border-radius: 100%;
}
.btn-search:after {
    content: "";
    display: block;
    transform: rotate(-45deg);
    position: absolute;
    height: 12px;
    width: 3px;
    background: #bebebe;
    top: 16px;
    left: 18px;
}

input[type="tel"] {
    width: 100px;
}
input[type="radio"] {
    margin: 0 4px;
}
input[type="checkbox"] {
    margin: 0 4px;
}
input[type="button"] {
    cursor: pointer;
}
textarea {
    padding: 10px;
}

/* ==================================
   3. Buttons
   ================================== */

.btn_blue {
    width: 180px;
    display: block;
    background: #5483eb !important;
    color: #fff !important;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
    margin: 0 auto;
} /* 파란색 버튼 */
.btn_blue:hover {
    background: #0056b3;
}
.btn_gray {
    width: 180px;
    display: inline-block;
    background: #666666 !important;
    color: #fff !important;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
} /* 회색 버튼 */
.searchForm .btn_gray {
    width: 100px;
    font-size: 14px;
    border-radius: 5px;
}
.btn_black {
    width: 180px;
    display: inline-block;
    background: #434343 !important;
    color: #fff !important;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
}
.registbtn {
    font-size: 1rem;
    border: none;
}

.btn_hide {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    text-indent: -999999px;
    position: relative;
}
.btn_hide:before,
.btn_hide:after {
    content: " ";
    position: absolute;
    left: 18px;
    top: 10px;
    height: 20px;
    width: 2px;
    background-color: #000;
    transform: rotate(45deg);
}
.btn_hide:after {
    transform: rotate(-45deg);
}
.btn-download {
    font-size: 14px;
    background: url(https://img.hunet.co.kr/event/2024/05/02_wf/ic_download_gray.svg) no-repeat 97% center !important;
    padding-right: 25px;
    color: #4f4f4f;
}

/* 결제창 btn */
input[type="button"].chk_btn {
    background: #f2f4f6;
    color: #0974db;
}

/* Button / Label / Color system */
.more {
    display: flex;
    justify-content: end;
}

.btn,
.label {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    padding: 0.5em 1em;
    border-radius: 5px;
    border: none;
    text-align: center;
    background: none;
}
td .btn,
.label {
    font-size: min(13px, 0.9em);
}
.btn.radi {
    border-radius: 50px; /*  padding: 0 20px; */
}
.label {
    width: 4.5em;
}
.label.bbs {
    font-weight: 600;
    padding: 0.2em 0.7em;
    width: auto;
    border-radius: 50px;
}
.btn.big {
    font-size: max(13px, 1em);
    padding: 0.7em 2em;
}

.bdrWt {
    border: 1px solid #fff;
    color: #fff;
}
.bdrBlk {
    border: 1px solid #000;
    color: #000;
    background: #fff;
}
.bdrBl {
    border: 1px solid #0043d7;
    color: #0043d7;
}
.bdrOrg {
    border: 1px solid #ff6000;
    color: #ff6000;
}
.bdrGr {
    border: 1px solid gray;
    color: #444;
}

.bgSky {
    background-color: #5483eb;
    color: #fff;
    font-weight: 300;
}
.bgBl {
    background-color: #0043d7;
    color: #fff;
    font-weight: 300;
}
.bgOrg {
    background-color: #ff6000;
    color: #fff;
    font-weight: 300;
}
.bgGr {
    background-color: #9a9a9a;
    color: #fff;
    font-weight: 300;
}
.bgPur {
    background-color: #bb3adb;
    color: #fff;
    font-weight: 300;
}
.bgRed {
    background-color: #e42727;
    color: #fff;
    font-weight: 300;
}
.bgDgr {
    background-color: #505050;
    color: #fff;
    font-weight: 300;
}

/* ==================================
   4. Tabs
   ================================== */

.tabs {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 1.25rem;
    list-style: none;
}
.tabs-item {
    text-align: center;
    position: relative;
    border-bottom: 1px solid #eee;
}
.tabs-link {
    display: block;
    padding: 0.5rem 0;
    color: #767676;
    background: #fff;
    border: 0;
    font-size: 1rem;
    width: 100%;
    cursor: pointer;
    text-decoration: none !important;
    font-weight: 600;
}
.tabs-link.active {
    position: relative;
    color: #0974db;
    background-color: #fff;
    border-bottom: 3px solid #0974db;
}

/* ==================================
   5. Tables
   ================================== */

.table {
    border-bottom: 1px solid #f7f7f7;
    margin: 10px 0;
    width: 100%;
    color: #212529;
    text-align: center;
    border-top: 2px solid #111;
}
.table th {
    font-weight: 600; /* color: #f7f7f7; */
}
.table th,
.table td {
    padding: 1rem 0;
    vertical-align: middle;
    border-top: 1px solid #f7f7f7;
    transform: skew(-0.03deg);
    line-height: 1.2;
}
.table2 th,
.table3 th,
.table3_start th,
.table4 th,
.table4_1 th {
    background: #f7f7f7;
    color: #333 !important;
}
.table4_1 tr td:first-child {
    background: #f7f7f7;
    color: #333 !important;
    font-weight: 600;
}
.table2 td,
.table4 td {
    border: 1px solid #f7f7f7;
}
.table3_start td {
    text-align: start;
    padding-left: 1rem;
}

.wd10 {
    width: 10%;
}
.wd12 {
    width: 12%;
}
.wd15 {
    width: 15%;
}
.wd20 {
    width: 20%;
}
.wd30 {
    width: 30%;
}
.wd50 {
    width: 50%;
}

/* Table .tb_basic */
.tb_basic {
    border-top: 1px solid #000;
}
.tb_basic table {
    table-layout: fixed;
}
.tb_basic th,
.tb_basic td {
    border-bottom: 1px solid #d4d4d4;
    text-align: center;
    padding: 0.5em 0;
    vertical-align: middle;
    line-height: 1.3;
    word-break: break-word;
    white-space: nowrap;
}
.tb_basic th {
    background: #f6f6f6;
}
.tb_basic td.date {
    font-size: 0.9em;
}

.tb_basic table {
    width: 100%;
}

/* result_table */
table.result_table {
    border: 1px solid #ededed;
    width: 100%;
    transform: skew(-0.1deg);
}
.result_table > tbody > tr > th {
    border: 1px solid #ededed;
    background: #f7f7f7;
    padding: 15px;
    font-weight: 700;
}
.result_table > tbody > tr > td {
    border: 1px solid #ededed;
    padding: 15px;
}

/* .table_sub — 테두리 없는 서브 테이블 (lecture_plan / lecture_plan2 / join 공용) */
.table_sub th,
.table_sub td {
    border: none !important;
}

/* .id_findTB / .pw_findTB — 폼 테이블 (find / modify / modify_confirm 공용) */
.id_findTB,
.pw_findTB {
    margin-top: 20px;
}
.id_findTB th {
    width: 20%;
}
.id_findTB th,
.pw_findTB th,
.id_findTB td,
.pw_findTB td {
    text-align: start;
}
.id_findTB th label,
.pw_findTB th label {
    font-weight: 600;
    font-size: 16px;
}
.id_findTB input[type="tel"],
.pw_findTB input[type="tel"] {
    width: auto;
}

/* .community_tab / .communityTB / .notice_download — community/support/practice 공용 UI */
.community_tab {
    display: flex;
    gap: 10px;
}
.community_tab li {
    width: 50%;
    border: 1px solid #dddddd;
}
.community_tab li button {
    width: 100%;
    display: block;
    font-size: 15px;
    text-align: center;
    padding: 13px 36px;
}
.community_tabs {
    align-items: center;
}
.community_tabs li a {
    display: flex;
    text-align: center;
    font-weight: 600;
    padding: 15px 0;
    justify-content: center;
    align-items: center;
}
.community_tabs .btn_blue {
    margin: 0;
}
.community_tabs a {
    display: block;
}
.community_on {
    background: #0974db;
    border: 1px solid #0974db;
}
.community_on button {
    color: #ffffff;
    font-weight: 500;
    border: 0;
}
.communityTB th {
    color: #333;
}
.notice_download {
    display: flex;
    justify-content: end;
    margin-bottom: 16px;
}
.notice_download:hover {
    text-decoration: underline;
}

/* ==================================
   6. Icons
   ================================== */

.xi_error {
    font-size: 20px;
    vertical-align: text-bottom;
    margin-right: 3px;
}
.xi_checkcircle {
    font-size: 20px;
    vertical-align: text-bottom;
    margin-right: 3px;
    color: #0974db;
}
.xi_exlink {
    font-size: 19px;
    vertical-align: middle;
    margin-right: 3px;
    color: blue;
}
.xi_angleright {
    display: block;
    text-align: center;
    font-size: 26px;
    color: #999;
}

/* .ico_step — 단계/질문 번호 원형 라벨 (regist_confirm / faq 공용) */
.ico_step {
    background: #888;
    padding: 0 4px;
    border-radius: 25%;
    font-family: "Pretendard", sans-serif;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
}

/* ==================================
   7. Content sections
   ================================== */

.con_top {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-top: 50px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}
.con_top h1 {
    font-size: 28px;
}
.con_top div {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    transform: skew(-0.03deg);
}
.con_div {
    line-height: 1.4;
}
.con_div_top {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    transform: skew(-0.03deg);
}
.con_div h5 {
    font-size: 20px;
    font-weight: bold;
}
.sub_div_title {
    margin: 30px 0 10px;
    display: flex;
    align-items: center;
}
.sub_div_title .sub_div_title_icon {
    width: 17px;
    height: 17px;
    background: url(/file/main/images/include/title_img.png) no-repeat 0 1px;
    transform: skew(-0.03deg);
}
.sub_div_title h3 {
    font-weight: 600;
}

.sub_div_step {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}
.sub_div_step > li > dl > dt {
    background: #0974db;
    padding: 12px;
    line-height: 1.2;
}
.sub_div_step > li > dl > dt > p {
    color: #fff;
    text-align: center;
}
.sub_div_step > li > dl > dt > p > span {
    color: #fff;
}
.sub_div_step > li > dl > dd {
    line-height: 1.2;
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
}
.sub_div_step > li {
    position: relative;
}
.sub_div_step > li > .xi_angleright {
    position: absolute;
    right: -25px;
    top: 38%;
}
.preface {
    width: 100%;
    border: 1px solid #ddd;
    padding: 20px;
    background: #fafafa;
    line-height: 1.4;
    transform: skew(-0.03deg);
}
.condiv_box {
    border: 4px solid #ddd;
    padding: 15px;
    background: #fff;
}

/* 본문바로가기 */
a.skipNav {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    display: block;
    width: 1px;
    height: 1px;
    margin-top: -1px;
    font-size: 1px;
    line-height: 0;
}
a.skipNav:hover,
a.skipNav:focus,
a.skipNav:active {
    width: 100%;
    padding: 20px 0;
    font-size: 14px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    background: #888;
    z-index: 5;
}
a.skipNav2 {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    display: block;
    width: 1px;
    height: 1px;
    margin-top: -1px;
    font-size: 1px;
    line-height: 0;
}
a.skipNav2:hover,
a.skipNav2:focus,
a.skipNav2:active {
    width: 100%;
    padding: 20px 0;
    font-size: 14px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    background: #757889;
    z-index: 5;
}
a.skipNav_before {
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    width: 1px;
    height: 1px;
    display: block;
    font-size: 1px;
}

/* ==================================
   8. Modals & Popups
   ================================== */

/* exam 팝업 */
.popup_screen {
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    z-index: 997;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.exam_popup {
    min-width: 350px;
    position: fixed;
    z-index: 998;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #f4f4f4;
    font-size: 24px;
}
.exam_popup h3 {
    text-align: center;
}
.exam_popup_title {
    margin-bottom: 10px;
    padding: 20px;
    background: #114087;
    text-align: center;
}
.exam_popup_title > h1 {
    font-size: 1.3em;
    font-weight: bold;
    color: #fff;
}
.exam_popup_content {
    line-height: 1.5;
    padding: 0 15px;
    text-align: center;
    justify-content: center;
}
.exam_popup_content > p {
    padding: 5px 0;
    margin-top: 3%;
    line-height: 1.3;
    font-weight: bold;
    font-size: 1em;
}
.page {
    margin-bottom: 4%;
    margin-top: 4%;
    width: 100%;
    justify-content: center;
    display: flex;
    text-align: center;
}
.exam_popup_content a {
    text-align: center;
}
.exam_popup_content a img {
    opacity: 1;
}
.exam_popup_content a img:hover {
    opacity: 0.7;
}
.exam_popup_content img {
    width: 90%;
}
.exam_popup_content2 {
    text-align: center;
    justify-content: center;
    display: flex;
}
.exam_strong {
    padding: 7px 5px;
    font-size: 0.8em;
    font-weight: bold;
    color: #ffffff;
    background: #ff0000;
}
.exam_strong2 {
    color: #ff0000;
    font-weight: bold;
    font-size: 0.8em;
}
.careful {
    margin-bottom: 5px;
}
.close {
    font-size: 0.7em;
    padding: 7px 5px;
    margin: 10px auto;
    border: 3px solid #fff;
    display: block;
    background: #ffffff;
    opacity: 0.7;
}
.close:hover {
    background: #888888;
    color: #ffffff;
    font-weight: bold;
    cursor: pointer;
}
.exam_footer {
    height: 70px;
    background: #323232;
    padding-top: 0.5px;
}
.exam_box {
    margin-bottom: 3%;
    background: #f3f3f3;
    width: 50%;
    padding-top: 10px;
}
.exam_box a {
    display: inline-block;
    padding: 20px 50px 20px 20px;
    background: url("https://img.hunet.co.kr/event/2024/05/02_wf/ic_download_gray.svg") no-repeat right 20px center;
    background-size: 25px;
    border: 1px solid #333;
}

/* 네트워크 팝업 */
/* 팝업 컨테이너 */
.popup-content {
    max-width: 500px; /* PC에서의 최대 너비 */
    min-width: 450px;
    position: fixed;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
}

/* 상단 버튼 영역 */
.popup-header {
    background-color: #333;
    padding: 10px 15px;
    display: flex;
    justify-content: flex-end; /* 오른쪽 정렬 */
    border-bottom: 1px solid #ddd;
}

.close-button {
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    padding: 0.3rem 0.5rem;
    background: #f1f1f1;
    color: #333;
}

.close-button:hover {
    background: #888;
    color: #fff;
}

/* 이미지 영역 (반응형) */
.popup-body img {
    width: 100%;
    height: auto;
    display: block; /* 이미지 하단 공백 제거 */
}

.download-area {
    padding: 20px 0; /* 아래쪽 여백을 주어 버튼 배치 */
    text-align: center;
    background-color: #fff; /* 이미지 아래 배경색 */
}

.download-btn {
    display: inline-block;
    padding: 25px 40px;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-decoration: none; /* 밑줄 제거 */
    border: 2px solid #333; /* 검정색 테두리 */
    background-color: #fff;
    transition: all 0.2s ease;
    background: url(https://img.hunet.co.kr/event/2024/05/02_wf/ic_download_gray.svg) no-repeat right 20px center;
    background-size: 20px;
}

.download-btn:hover {
    background-color: #333;
    color: #fff;
}

/* 공통 팝업 셸 c-popup (from sub_style.css) */
body.popup-open {
    overflow: hidden;
}

.c-popup__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1100;
}

.c-popup__overlay[hidden] {
    display: none;
}

.c-popup[hidden] {
    display: none;
}

.c-popup.c-popup--active:not(.c-popup--modeless) {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1200;
    pointer-events: none;
}

.c-popup--modeless.c-popup--active {
    position: fixed;
    display: block;
    z-index: 1200;
    pointer-events: all;
}

.c-popup__dialog {
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    pointer-events: all;
}

.c-popup__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #114087;
}

.c-popup__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.c-popup__close {
    position: absolute;
    top: 12px;
    right: 12px;

    background: transparent;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    margin: 2px;
}

.c-popup__body {
    padding: 16px;
}

.c-popup--light-header .c-popup__header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

.c-popup--light-header .c-popup__title {
    color: #222;
}

.c-popup--light-header .c-popup__close {
    color: #666;
}

.c-popup--light-header .c-popup__close:hover,
.c-popup--light-header .c-popup__close:focus {
    background: #f1f1f1;
    outline: 2px solid #333;
}

.c-popup--consult .c-popup__dialog {
    max-width: 660px;
    border-radius: 8px;
}

.c-popup--consult .c-popup__body {
    padding-top: 40px;
}
.c-popup--consult .advice_fom select,
.c-popup--consult .advice_fom input {
    margin: 5px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.c-popup--modeless .c-popup__dialog {
    max-height: none;
    overflow: visible;
    border-radius: 0;
}

.c-popup--modeless .c-popup__header {
    padding: 8px 12px;
    background: #333;
}

.c-popup--modeless .c-popup__title {
    font-size: 0.9rem;
    color: #fff;
}

/* 기존 팝업 내부 스타일 호환 */
.c-popup .advice_content1 {
    display: block;
    position: static;
    top: auto;
    left: auto;
    transform: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    max-width: none;
    width: auto;
    max-height: none;
    overflow: visible;
    z-index: auto;
}

.c-popup .exam_popup {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    z-index: auto;
}

.c-popup #consultPopup {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: none;
    z-index: auto;
}

/* ==================================
   9. Banner indicators
   ================================== */

.banner_indi_wrap {
    position: absolute;
    top: 0;
    left: 0;
    height: 400px;
    z-index: 200;
    overflow-y: auto;
    box-sizing: border-box;
}
.banner_indi ul li button {
    display: block;
    padding: 15px 30px;
    background: rgb(16 16 16 / 74%);
    color: #fff;
    transition: all 0.3s;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    font: inherit;
}
.banner_indi ul li button:hover,
.banner_indi ul li.active button {
    background: #ff6c14;
}
.banner_indi_wrap::-webkit-scrollbar {
    width: 12px;
}
.banner_indi_wrap::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}
.banner_indi_wrap::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.banner_indi_wrap::-webkit-scrollbar-button:vertical:decrement {
    background: rgba(0, 0, 0, 0.3);
    height: 12px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid rgba(0, 0, 0, 0.5);
    cursor: pointer;
}
.banner_indi_wrap::-webkit-scrollbar-button:vertical:increment {
    background: rgba(0, 0, 0, 0.3);
    height: 12px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

/* Controller, Indicator */
.ctrl_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mo_indi ul {
    display: flex;
    flex-direction: row;
    gap: 8px;
}
.mo_indi ul li a {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(16, 16, 16, 0.5);
    border: 1px solid #333;
    overflow: hidden;
    line-height: 0;
    font-size: 0;
}

.indicator ul li a:hover,
.indicator ul li.on a {
    background: #ff6c14;
}

@keyframes blink-effect {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.deadline-label {
    width: 60px;
    border: 1px solid #df0101;
    color: #fff;
    background: #df0101;
    animation: blink-effect 1.5s infinite;
    font-size: 12px;
    font-weight: 600;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    padding: 2px;
    text-align: center;
    z-index: 10;
}
.gnb_item.has-deadline-label {
    position: relative;
}

/* ==================================
   10. Timer (from sub_style.css)
   ================================== */

#timer_wrap {
    background: #161616;
}
.timer_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.timer_inner span {
    color: #fff;
    font-weight: 800;
    font-size: 22px;
}
.timer_inner .date {
    color: #72b7ee;
}
.timer_number {
    background: url(/file/main/images/landing/timerpc_bg.png) no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    width: 446px;
    height: 55px;
    margin: 16px 8px;
}
.timer_number span {
    position: absolute;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 24px;
    padding-left: 10px;
}
.timer_btn {
    background: #72b7ee;
    padding: 12px 24px;
    border-radius: 24px;
    font-weight: 800;
}
#event_hour {
    left: 140px;
}
#event_minute {
    left: 255px;
}
#event_sec {
    left: 365px;
}

/* ==================================
   11. Floating cart (from sub_style.css)
   ================================== */

:root {
    --bottom-consult-offset: 0px;
    --bottom-consult-panel-offset: 0px;
    --cart-floating-gap: 8px;
    --top-btn-size: 60px;
    --floating-right: calc((100% - 1000px) / 2 + 4px);
}

/* 장바구니 전체 */
.cart_pop {
    position: fixed;
    right: var(--floating-right);
    bottom: calc(var(--bottom-consult-offset) + var(--cart-floating-gap));
    z-index: 99;
}

/* 토글 버튼 */
.cart_btn {
    position: relative;
    z-index: 2;
    width: auto;
    min-width: 290px;
    height: 60px;
    background: #3a3a3a;
    border-radius: 16px;
    box-shadow: 0 0 10px rgb(0 0 0 / 40%);
}

.cart_btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 100%;
    padding: 0 20px;
}

.cart_btn img {
    margin-right: 0;
}

.cart_btn a span {
    display: inline-block;
    color: #fff;
    font-size: 17px;
}

/* 펼쳐지는 목록 팝업 */
.cart_area {
    display: none;
    width: 360px;
    max-width: calc(100vw - 24px);
    max-height: calc(100vh - var(--bottom-consult-offset) - 24px);
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 0 10px rgb(0 0 0 / 50%);
    overflow: hidden;
    flex-direction: column;
    margin-bottom: 0;
}
/* 열림 상태 */
.cart_pop.is-open .cart_btn {
    display: none;
}

.cart_pop.is-open .cart_area {
    display: flex;
}

.cart_area_header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 18px 48px 14px;
    border-bottom: 1px solid #eee;
    background: #3a3a3a;
}

.cart_area_title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.cart_area_title img {
    width: 22px;
    height: 22px;
}

.cart_area_title span {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.2;
}

.cart_area_close {
    position: absolute;
    top: 18px;
    right: 12px;
    width: 22px;
    height: 22px;
    border: 0;
    border-radius: 50%;
    background: #f3f3f3;
    color: #333;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.cart_area_close:hover {
    background: #e9e9e9;
}

.cart_list {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
}

.cart_list > p {
    text-align: center;
    font-size: 0.8rem;
    color: #555;
    padding: 16px 20px 0;
    flex-shrink: 0;
}

.cart_txt {
    font-size: 1rem;
    padding: 20px 24px;
    color: #222;
    text-align: left;
    overflow-y: auto;
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
}
.cart_txt > ul {
    width: 100%;
}

.cart_txt > ul > li {
    border-top: 1px solid #ccc;
    padding: 10px 0;
    text-align: left;
}

.cart_txt > ul > li:first-of-type {
    border-top: 0;
}

.cart_area .cart_list strong {
    display: block;
    color: #222;
    text-align: left;
    line-height: 1.4;
    font-size: 1.1rem;
    word-break: keep-all;
}

.select_lec {
    display: flex;
    flex-wrap: wrap;
}

.select_lec li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.select_lec li .removeBtn {
    display: flex;
    align-items: center;
}

.select_lec li .removeBtn img {
    display: block;
    width: 14px;
    height: 14px;
}

.cart_area .cart_list .select_lec li span {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
    color: #666;
    margin-right: 1.1rem;
    font-size: 1rem;
    word-break: keep-all;
    text-align: left;
}

.cart_box {
    display: flex;
    justify-content: space-between;
    color: #fff;
    background: #3a3a3a;
    min-height: 72px;
    padding: 12px 20px;
}

.cart_box_detail1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 1.2rem;
    flex: 1;
    width: 70%;
}
.cart_box_detail1 * {
    font-size: 1.2rem;
}
.cart_box_detail1 .cart_cho strong {
    color: #fff;
    word-break: keep-all;
}
.cart_box_detail1 .cart_cho span {
    color: #d82121;
    font-weight: bold;
}
.cart_box_detail1 .cart_total strong {
    color: #fff;
    word-break: keep-all;
}
.cart_box_detail1 .cart_total span {
    color: #d82121;
    font-weight: bold;
}

.cart_box_detail2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
}
.cart_box_detail2 > a {
    display: block;
    width: 100%;
    height: 100%;
}
.cart_box_detail2 > a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ==================================
   12. Pagination
   ================================== */

.pageing {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    padding: 0;
    gap: 2px;
    list-style: none;
}
.pageing li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.pageing > li:not(:has(a, strong)) {
    display: none;
}
.pageing li a,
.pageing li strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 50%;
    font-size: 14px;
    color: #585858;
    text-decoration: none;
    transition:
        background-color 0.15s ease,
        color 0.15s ease;
}
.pageing li strong {
    background-color: #eee;
    color: #111;
    font-weight: 700;
}
.pageing li a:hover,
.pageing li a:focus {
    background-color: #f4f4f4;
    color: #0958a5;
    outline: none;
}
.pageing li a img {
    display: block;
}

/* ==================================
   13. Slider (PC 랜딩 페이지 공통 슬라이더)
   ================================== */
/* ── 슬라이더 전체 컨테이너 ── */
.slider-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
.slider-overflow {
    overflow: hidden;
    width: 100%;
}
.slider-wrapper {
    display: flex;
    width: 100%;
    transition: transform 0.35s ease;
    will-change: transform;
}
.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 이동 버튼 */
.arrow,
.EVarrow {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;

    width: 4rem;
    height: 4rem;
    background-color: #333 !important;
    border-radius: 50% !important;
    border: none !important;

    color: transparent !important;
    text-indent: -9999px;
    overflow: hidden;

    background-size: 1.5rem 1.5rem;
    background-repeat: no-repeat;
    background-position: center center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition:
        transform 0.2s,
        background-color 0.2s;
}
.arrow:hover,
.EVarrow:hover {
    background-color: #444 !important;
    transform: translateY(-50%) scale(1.1);
}
.arrow.left,
.EVarrow.left {
    left: 70px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='0,50 80,100 80,0' fill='%23fff'/%3E%3C/svg%3E");
}
.arrow.right,
.EVarrow.right {
    right: 70px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='100,50 20,100 20,0' fill='%23fff'/%3E%3C/svg%3E");
}
.arrow:disabled,
.EVarrow:disabled {
    opacity: 0.3;
    cursor: default;
    transform: translateY(-50%);
}
.arrow::after,
.EVarrow::after {
    display: none !important;
}

/* 슬라이드 점(dot) 인디케이터 */
.dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    z-index: 10;
}
.EVdots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    z-index: 10;
}
.dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(18, 51, 112, 0.35);
    cursor: pointer;
    filter: drop-shadow(0 0 4px rgba(18, 51, 112, 0.5));
    transition: all 0.3s ease;
}
.dot:hover {
    background: #fff;
    transform: scale(1.2);
}
.dot.active {
    width: 32px;
    border-radius: 999px;
    background: #123370;
    filter: drop-shadow(0 0 5px rgba(18, 51, 112, 0.4));
    box-shadow: none;
}

/* 슬라이더 클릭 영역 커서 */
.slider-container {
    cursor: default;
}
.slider-container .slide {
    cursor: default;
}
.slider-container .slide img {
    cursor: pointer;
}

/* 자동재생 토글 시 표시되는 ▶/⏸ 오버레이 (JS가 .is-visible / .is-play 토글) */
.slider-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 100;
}
.slider-icon.is-visible {
    opacity: 1;
}
.slider-icon-inner {
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    line-height: 1;
    text-align: center;
}
.slider-icon-inner.is-play {
    padding-left: 6px;
}

/* ==================================
   14. Slider (MO 랜딩 페이지 공통 슬라이더)
   ================================== */

.ms-wrap {
    padding: 32px 28px;
    border-radius: 12px;
    overflow: hidden !important;
    width: 100%;
}
.ms-track {
    padding: 0 10vw;
    display: flex;
    gap: 16px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.ms-item {
    flex: 0 0 80vw; /* 👉 크기만 80vw */
    aspect-ratio: 977 / 500;
    margin: 0; /* 👉 margin 제거 */
    border-radius: 14px;
    overflow: hidden;
}
.ms-item::after {
    content: "";
    position: absolute;
    inset: 0;
}

.ms-dots {
    display: flex;
    gap: 6px;
    margin-top: 20px;
    justify-content: center;
}
.ms-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #555;
    transition:
        background 0.3s,
        width 0.3s;
    cursor: pointer;
}
.ms-dot.active {
    background: #e73700;
    width: 18px;
    border-radius: 3px;
}

/*   .cs-item img { width: 100%; height: 100%; object-fit: contain; display: block; } */
.ms-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==================================
   15. Responsive
   ================================== */

/* --- max-width: 1200px --- */
@media (max-width: 1200px) {
    .cart_pop {
        right: 12px;
        bottom: calc(var(--bottom-consult-offset) + var(--cart-floating-gap) * 2 + var(--top-btn-size));
    }
    .cart_btn {
        min-width: 60px;
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }
    .cart_btn a {
        padding: 0;
    }
    .cart_btn a span {
        display: none;
    }
}

/* --- max-width: 1000px --- */
@media (max-width: 1000px) {
    /* Display */
    .disB_tamo {
        display: block;
    }
    .dis_pc {
        display: none;
    }
    .dis_mo {
        display: block;
    }

    .inner {
        width: 96%;
    }

    .margin1000 {
        width: 100%;
    }
    .margin1000 p img {
        width: 100%;
        max-width: 100%;
    }

    /* Font-size :where() */
    :where(
        div,
        span,
        object,
        iframe,
        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        p,
        blockquote,
        pre,
        a,
        abbr,
        address,
        big,
        cite,
        code,
        del,
        dfn,
        em,
        img,
        ins,
        kbd,
        q,
        s,
        samp,
        small,
        strike,
        strong,
        sub,
        sup,
        b,
        u,
        i,
        center,
        dl,
        dt,
        dd,
        ol,
        ul,
        li,
        fieldset,
        form,
        label,
        legend,
        table,
        caption,
        tbody,
        tfoot,
        thead,
        tr,
        th,
        td,
        article,
        aside,
        canvas,
        details,
        embed,
        figure,
        figcaption,
        footer,
        header,
        menu,
        nav,
        output,
        section,
        summary,
        time,
        mark,
        audio,
        video
    ) {
        font-size: 2vw;
    }

    /* Table */
    .table th,
    .table td {
        padding: 1rem 0;
    }

    .table2 img {
        width: 1rem;
        height: 1rem;
    }

    .table th {
        font-size: 1rem;
    }

    /* Content */
    .con_div_top {
        font-size: 3vw;
    }

    /* Spacing */
    .mgtop_10 {
        margin-top: 1vw;
    }
    .mgtop_20 {
        margin-top: 2.5vw;
    }
    .mgtop_30 {
        margin-top: 5vw;
    }

    .con_top {
        margin-top: 7vw;
        margin-bottom: 4vw;
        padding-bottom: 3vw;
    }
    .con_top img {
        width: auto !important;
    }
    .con_in {
        width: 100%;
        padding: 0 16px;
    }

    /* Floating cart mobile (from sub_style.css) */
    .cart_pop {
        right: 12px;
        bottom: calc(var(--bottom-consult-panel-offset) + var(--top-btn-size) + var(--cart-floating-gap));
        transition: bottom 0.2s ease-in-out;
    }
    body.bottom-consult-closed .cart_pop {
        bottom: calc(var(--top-btn-size) + var(--cart-floating-gap));
    }
    .cart_area {
        width: min(360px, calc(100vw - 24px));
        max-height: calc(100vh - var(--bottom-consult-offset) - 16px);
    }
    .cart_area_header {
        padding: 16px 44px 12px;
    }
    .cart_area_close {
        top: 16px;
    }
    .cart_list > p {
        padding: 10px 0;
    }
    .cart_txt {
        padding: 16px 20px 20px;
    }
    .cart_box {
        display: flex;
        justify-content: space-between;
        color: #fff;
        background: #3a3a3a;
        min-height: 72px;
        padding: 12px 20px;
    }

    /* Timer mobile (from sub_style.css) */
    .timer_inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding: 20px 0;
    }
    .timer_number {
        background: url(/file/main/images/landing/timermo_bg.png) no-repeat;
        width: 65vw;
        height: 7vw;
    }
    .tiimer_number span {
        font-size: 6vw !important;
    }
    .timer_inner span {
        font-size: 4vw;
    }
    .timer_inner .date {
        margin-right: 10px;
    }
    .timer_number span {
        font-size: 5.5vw;
    }
    .timer_btn {
        font-size: 2.5vw;
        padding: 1.5vw 2.5vw;
        border-radius: 40px;
    }
    #event_hour {
        left: 32%;
    }
    #event_minute {
        left: 56%;
    }
    #event_sec {
        left: 80%;
    }
}

/* --- max-width: 768px --- */
@media (max-width: 768px) {
    /* Font-size :where() */
    :where(
        div,
        span,
        object,
        iframe,
        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        p,
        blockquote,
        pre,
        a,
        abbr,
        address,
        big,
        cite,
        code,
        del,
        dfn,
        em,
        img,
        ins,
        kbd,
        q,
        s,
        samp,
        small,
        strike,
        strong,
        sub,
        sup,
        b,
        u,
        i,
        center,
        dl,
        dt,
        dd,
        ol,
        ul,
        li,
        fieldset,
        form,
        label,
        legend,
        table,
        caption,
        tbody,
        tfoot,
        thead,
        tr,
        th,
        td,
        article,
        aside,
        canvas,
        details,
        embed,
        figure,
        figcaption,
        footer,
        header,
        menu,
        nav,
        output,
        section,
        summary,
        time,
        mark,
        audio,
        video
    ) {
        font-size: 3vw;
    }

    .con_div_top {
        font-size: 4vw;
    }

    .searchForm2 {
        width: auto;
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
        box-sizing: border-box;
    }
    .searchForm2 form {
        display: flex;
        align-items: center;
        width: 100%;
    }
    .searchForm2 .form-control {
        width: auto;
        flex: 1;
        min-width: 0;
    }
    .searchForm2 .btn-search {
        flex-shrink: 0;
        float: right;
    }

    /* Width utilities */
    .wd10 {
        width: 15vw;
    }
    .wd12 {
        width: 17vw;
    }
    .wd15 {
        width: 20vw;
    }
    .wd20 {
        width: 25vw;
    }
}

/* --- max-width: 550px --- */
@media (max-width: 550px) {
    .exam_box a {
        font-size: 0.7em;
    }
}

/* --- max-height: 900px --- */
@media (max-height: 900px) {
    .cart_txt {
        max-height: 350px;
    }
}
