@charset "UTF-8";

/* 초기화 및 초기 세팅 */
:root {
    /* 버튼 및 인풋 폼 높이 세팅 */
    --body_width: 57.6rem;
    --hd_height: 9rem;
    --hd_height_m: 5.6rem;
    --height_sm: 3.2rem;
    --height_md: 3.8rem;
    --height: 4.8rem;
    --height_lg: 5.4rem;
    --ic_date: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Crect width='256' height='256' fill='none'/%3E%3Crect x='40' y='40' width='176' height='176' rx='8' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='16'/%3E%3Cline x1='176' y1='24' x2='176' y2='56' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='16'/%3E%3Cline x1='80' y1='24' x2='80' y2='56' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='16'/%3E%3Cline x1='40' y1='88' x2='216' y2='88' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='16'/%3E%3Ccircle cx='128' cy='132' r='12'/%3E%3Ccircle cx='172' cy='132' r='12'/%3E%3Ccircle cx='84' cy='172' r='12'/%3E%3Ccircle cx='128' cy='172' r='12'/%3E%3Ccircle cx='172' cy='172' r='12'/%3E%3C/svg%3E");
    --ic_time: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Crect width='256' height='256' fill='none'/%3E%3Ccircle cx='128' cy='128' r='96' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='16'/%3E%3Cpolyline points='128 72 128 128 184 128' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='16'/%3E%3C/svg%3E");
    --ic_send: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1656_12716)'%3E%3Cpath d='M15.6657 20.3503L22.4508 33.7998L30.2 5.81934L15.6657 20.3503Z' fill='%23F8C327'/%3E%3Cpath d='M2.19996 13.549L15.6495 20.334L30.1804 5.7998L2.19996 13.549Z' fill='%23F2A20E'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1656_12716'%3E%3Crect width='28' height='28' fill='white' transform='matrix(-1 0 0 1 30.2 5.7998)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

/*스크롤 스타일*/
div::-webkit-scrollbar {
    width: 0.4rem;
    height: 0.4rem;
}

div::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.04);
    border-radius: 100px;
}


html {
    font-size: 10px;
}

body {
    margin: 0 auto;
    padding: 0;
}

html,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
img {
    margin: 0;
    padding: 0;
    border: 0
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

ul,
dl,
dt,
dd {
    margin: 0;
    padding: 0;
    list-style: none
}

legend {
    position: absolute;
    margin: 0;
    padding: 0;
    font-size: 0;
    line-height: 0;
    text-indent: -9999em;
    overflow: hidden
}

label,
input,
button,
select,
img {
    vertical-align: middle;
}

input,
button {
    margin: 0;
    padding: 0;
}

input[type="submit"] {
    cursor: auto;
}

button {
    cursor: auto;
    word-break: keep-all;
}

select {
    margin: 0
}

p {
    margin: 0;
    padding: 0;
}

hr {
    display: none
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.un_reboot_a {
    color: var(--text);
    text-decoration: underline;
}

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    word-break: normal;
    word-wrap: break-word;
}

img {
    max-width: 100%;
    display: inline-block;
    height: auto;
}

.container-fluid {
    max-width: 2560px;
}

.mobile_wr {
    max-width: var(--body_width);
    box-sizing: content-box;
    min-height: calc(100vh - 5.6rem);
}

.curs_pointer {
    cursor: pointer;
}


/*메인*/
.idx_pg {}

/*서브*/
.sub_pg {
    position: relative;
    padding-bottom: 4.0rem;
    padding-top: 1.0rem;
}

.over_hidden {
    overflow: hidden;
}

.text-red {
    color: var(--red);
}

.text-orange {
    color: var(--orange);
}

.text-green {
    color: var(--green);
}

.text-purple {
    color: var(--purple);
}

.text-gray-50 {
    color: var(--gray-50);
}

.text-gray-100 {
    color: var(--gray-100);
}

.text-gray-200 {
    color: var(--gray-200);
}

.text-gray-300 {
    color: var(--gray-300);
}

.text-gray-400 {
    color: var(--gray-400);
}

.text-gray {
    color: var(--gray);
}

.text-gray-600 {
    color: var(--gray-600);
}

.text-gray-700 {
    color: var(--gray-700);
}

.text-gray-800 {
    color: var(--gray-800);
}

.text-gray-900 {
    color: var(--gray-900);
}

.text-black {
    color: #000;
}



.bg-black {
    background: #000;
}

.bg-gray-50 {
    background: var(--gray-50);
}

.bg-gray-100 {
    background: var(--gray-100);
}

.bg-gray-200 {
    background: var(--gray-200);
}

.bg-gray-300 {
    background: var(--gray-300);
}

.bg-gray-400 {
    background: var(--gray-400);
}

.bg-gray {
    background: var(--gray);
}

.bg-gray-600 {
    background: var(--gray-600);
}

.bg-gray-700 {
    background: var(--gray-700);
}

.bg-gray-800 {
    background: var(--gray-800);
}

.bg-gray-900 {
    background: var(--gray-900);
}

.bg-primary-light {
    background: var(--primary-light);
}



.border-50 {
    border-color: var(--border-50) !important;
}

.border-200 {
    border-color: var(--border-200) !important;
}



.num_list ul {
    list-style: decimal-leading-zero;
    padding-left: 2.5rem;
}

.num_list li {
    line-height: 1.4em;
    margin-bottom: 0.5rem;
    word-break: keep-all;
    white-space: pre-line;
}

.dot_list li {
    list-style: none;
    margin-bottom: 0.5rem;
    display: flex;
    word-break: keep-all;
    line-height: 140%;
}

.dot_list li * {
    word-break: keep-all;
}

.dot_list li:before {
    content: "-";
    vertical-align: middle;
    margin-right: 0.5rem;
}

.dot_list li:last-child {
    margin-bottom: 0;
}


.line_h1 {
    line-height: 1.0em;
}

.line_h1_1 {
    line-height: 1.1em;
}

.line_h1_2 {
    line-height: 1.2em;
}

.line_h1_3 {
    line-height: 1.3em;
}

.line_h1_4 {
    line-height: 1.4em;
}

.line_h1_5 {
    line-height: 1.5em;
}

.line_h1_6 {
    line-height: 1.6em;
}

.line_h1_7 {
    line-height: 1.7em;
}

.line_h1_8 {
    line-height: 1.8em;
}

.line_h1_9 {
    line-height: 1.9em;
}

.line_h2 {
    line-height: 2.0em;
}


/*폰트커스텀 기본사이즈 10px*/
.tit_h1 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #000;
    line-height: 140%;
    word-break: keep-all;
}

.tit_h2 {
    font-size: 2.0rem;
    font-weight: 700;
    color: #000;
    line-height: 140%;
    word-break: keep-all;
}

.tit_h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    line-height: 140%;
    word-break: keep-all;
}

.tit_h4 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #000;
    line-height: 150%;
    word-break: keep-all;
}

.body_lg {
    font-size: 1.6rem;
    line-height: 150%;
}

.body_md {
    font-size: 1.4rem;
    line-height: 150%;
}

.body_small {
    font-size: 1.2rem;
    line-height: 150%;
}

.fs_8 {
    font-size: 0.8rem;
}

.fs_9 {
    font-size: 0.9rem;
}

.fs_10 {
    font-size: 1.0rem;
}

.fs_11 {
    font-size: 1.1rem;
}

.fs_12 {
    font-size: 1.2rem;
}

.fs_13 {
    font-size: 1.3rem;
}

.fs_14 {
    font-size: 1.4rem;
}

.fs_15 {
    font-size: 1.5rem;
}

.fs_16 {
    font-size: 1.6rem;
}

.fs_17 {
    font-size: 1.7rem;
}

.fs_18 {
    font-size: 1.8rem;
}

.fs_19 {
    font-size: 1.9rem;
}

.fs_20 {
    font-size: 2.0rem;
}

.fs_21 {
    font-size: 2.1rem;
}

.fs_22 {
    font-size: 2.2rem;
}

.fs_23 {
    font-size: 2.3rem;
}

.fs_24 {
    font-size: 2.4rem;
}

.fs_25 {
    font-size: 2.5rem;
}

.fs_26 {
    font-size: 2.6rem;
}

.fs_27 {
    font-size: 2.7rem;
}

.fs_28 {
    font-size: 2.8rem;
}

.fs_29 {
    font-size: 2.9rem;
}

.fs_30 {
    font-size: 3.0rem;
}

.fs_31 {
    font-size: 3.1rem;
}

.fs_32 {
    font-size: 3.2rem;
}

.fs_33 {
    font-size: 3.3rem;
}

.fs_34 {
    font-size: 3.4rem;
}

.fs_35 {
    font-size: 3.5rem;
}

.fs_36 {
    font-size: 3.6rem;
}

.fs_37 {
    font-size: 3.7rem;
}

.fs_38 {
    font-size: 3.8rem;
}

.fs_39 {
    font-size: 3.9rem;
}

.fs_40 {
    font-size: 4.0rem;
}

.fs_41 {
    font-size: 4.1rem;
}

.fs_42 {
    font-size: 4.2rem;
}

.fs_43 {
    font-size: 4.3rem;
}

.fs_44 {
    font-size: 4.4rem;
}

.fs_45 {
    font-size: 4.5rem;
}

.fs_46 {
    font-size: 4.6rem;
}

.fs_47 {
    font-size: 4.7rem;
}

.fs_48 {
    font-size: 4.8rem;
}

.fs_49 {
    font-size: 4.9rem;
}

.fs_50 {
    font-size: 5.0rem;
}

.fs_51 {
    font-size: 5.1rem;
}

.fs_52 {
    font-size: 5.2rem;
}


.fw_100 {
    font-weight: 100;
}

.fw_200 {
    font-weight: 200;
}

.fw_300 {
    font-weight: 300;
}

.fw_400 {
    font-weight: 400;
}

.fw_500 {
    font-weight: 500;
}

.fw_600 {
    font-weight: 600;
}

.fw_700 {
    font-weight: 700;
}

.fw_800 {
    font-weight: 800;
}

.fw_900 {
    font-weight: 900;
}


.wh_pre {
    white-space: pre-line;
}

.wh_nowrap {
    white-space: nowrap;
}

.break_all {
    word-break: break-all;
}

.keep_all {
    word-break: keep-all;
    word-wrap: break-word;
}

/*글자 줄임말/자르기*/
.line_text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    word-break: break-all;
}

.line1_text {
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.line2_text {
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.line3_text {
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-all;
}


/* 폼 사각형 */
.sq_guide {
    display: flex;
    flex-wrap: wrap;
}

.sq_guide li {
    width: 103px;
    height: 35px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0.2rem;
}

/* 스크롤바 none */
.scroll_bar_none {
    -ms-overflow-style: none;
}

.scroll_bar_none::-webkit-scrollbar {
    display: none;
}


/*테이블 반응형때*/
.touch_scroll {
    overflow-x: auto;
    overflow-y: hidden;
}



/* 버튼 */
.btn {
    height: var(--height);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 1.0rem;
    padding-left: 2.0rem;
    padding-right: 2.0rem;
    font-size: 1.5rem;
    font-weight: 600;
    word-break: keep-all;
    word-wrap: normal;
}

.btn-sm {
    height: var(--height_sm);
    border-radius: 0.8rem;
    font-size: 1.3rem;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
}

.btn-md {
    height: var(--height_md);
    font-size: 1.4rem;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
}

.btn-lg {
    height: var(--height_lg);
    font-weight: 700;
    font-size: 1.7rem;
}

.btn-link {
    height: auto;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-radius: 0;
    background: transparent;
    flex-shrink: 0;
    border: 0;
    font-weight: 500;
}

.btn-icon {
    height: auto;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-radius: 0;
    background: transparent;
    flex-shrink: 0;
    border: 0;
}

.btn-icon img {
    flex-shrink: 0;
}

.btn-primary-light {
    background: var(--primary-light);
    color: var(--primary);
}

.btn-primary-light:hover,
.btn-primary-light:focus {
    background: var(--primary-light);
    color: var(--primary);
}

.btn-naver {
    background: #00CD4C;
    border-color: #00CD4C;
    color: #fff;
}

.btn-naver:hover,
.btn-naver:focus {
    background: #1ABB00;
    border-color: #1ABB00;
}

.btn-kakao {
    background: #FEE404;
    border-color: #FEE404;
    color: #333;
}

.btn-kakao:hover,
.btn-kakao:focus {
    background: #FFCC00;
    border-color: #FFCC00;
}

.btn-apple {
    background: #fff;
    border-color: var(--border);
    color: #000;
}

.btn-apple:hover,
.btn-apple:focus {
    background: #fff;
    border-color: var(--border-200);
}

.btn-google {
    background: #fff;
    border-color: var(--border);
    color: #000;
}

.btn-google:hover,
.btn-google:focus {
    background: #fff;
    border-color: var(--border-200);
}



.btn.disabled,
.btn:disabled {
    opacity: 1;
    color: var(--gray) !important;
    background: var(--gray-100);
    border-color: var(--gray-100);
}

.btn-outline-light.active {
    color: var(--secondary);
    background-color: #fff;
}

.btn-group-toggle .btn-outline-light:not(:disabled):not(.disabled).active,
.btn-group-toggle .show>.btn-outline-light.dropdown-toggle {
    color: #fff;
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-group-toggle .btn-light:not(:disabled):not(.disabled).active,
.btn-group-toggle .show>.btn-light.dropdown-toggle {
    color: #fff;
    background-color: #000;
    border-color: #000;
}

.btn-group-toggle .btn-light:not(:disabled):not(.disabled).active img,
.btn-group-toggle .show>.btn-light.dropdown-toggle img {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(65deg) brightness(240%) contrast(103%);
}

.btn-group-toggle .btn input[type=radio],
.btn-group-toggle .btn input[type=checkbox],
.btn-group-toggle .btn-group .btn input[type=radio],
.btn-group-toggle .btn-group .btn input[type=checkbox] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}


.btn-group-full {
    display: flex;
}

.btn-group-full .btn {
    display: flex;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
}

.btn_toggle_primary .btn-outline-light {
    border-color: #D6DAE5;
}

.btn_toggle_primary .btn-outline-light:not(:disabled):not(.disabled).active {
    color: var(--primary);
    background-color: #fff;
    border-color: var(--primary);
    font-weight: 600;
}

.btn-group-wrap {
    display: flex;
    flex-wrap: wrap;
}

.btn-group-wrap .btn {
    margin-bottom: 0.8rem !important;
    margin-right: 0.6rem;
    flex-shrink: 0;
}

.btn-group-wrap .btn:last-child {
    margin-right: 0;
}

.keyword_badge_wr {
    gap: 0.8rem;
}

.keyword_badge {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    padding: 0;
}

.keyword_badge .btn {
    height: 100%;
    font-size: 1.5rem;
}

.keyword_badge .btn-link {
    padding-left: 1.3rem;
    margin-right: 0.2rem;
}

.keyword_badge .btn-icon {
    padding-right: 1.0rem;
}

.keyword_badge .btn * {
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
}


/* 인풋 자동완성 초기화 */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-text-fill-color: var(--text);
    -webkit-box-shadow: 0 0 0px 1000px var(--bg) inset;
    box-shadow: 0 0 0px 1000px var(--bg) inset;
    transition: background-color 5000s ease-in-out 0s;
}

input:autofill,
input:autofill:hover,
input:autofill:focus,
input:autofill:active {
    -webkit-text-fill-color: var(--text);
    -webkit-box-shadow: 0 0 0px 1000px var(--bg) inset;
    box-shadow: 0 0 0px 1000px var(--bg) inset;
    transition: background-color 5000s ease-in-out 0s;
}

/* 입력 인풋 */
.form-control {
    height: var(--height);
}

.form-control-sm {
    height: var(--height_sm);
    border-radius: 0.8rem;
    font-size: 1.2rem;
}

.form-control-md {
    height: var(--height_md);
    border-radius: 0.8rem;
    font-size: 1.4rem;
    padding-left: 1.5rem !important;
}

.form-control-lg {
    height: var(--height_lg);
}

.form-control-auto {
    height: auto;
}


input.form-control {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
}

.ip_wr .ip_tit {
    margin-bottom: 1.0rem;
}

.ip_tit h5 {
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: 700;
    display: inline-block;
    position: relative;
    color: #000;
    word-break: keep-all;
}

.ip_tit.required h5::after {
    content: "*";
    font-size: 1.4rem;
    position: absolute;
    color: var(--primary);
    top: 0;
    right: -1.2rem;
}

.ip_wr .form-row .col-3 {
    max-width: 10rem;
}

.ip_wr .btn-group-toggle {
    margin-bottom: -0.8rem;
}

.ip_wr .btn-group-toggle .btn {
    margin-bottom: 0.8rem;
}

.form-password {
    position: relative;
}

.form-password .form-control {
    padding-right: 5.0rem;
}

.form-password .pw_icon {
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    background: transparent;
    padding: 0;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}


/* form-text */
.form-text {
    display: none;
    margin-top: 0.8rem;
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--gray-600);
}

.ip_valid .ip_valid {
    display: flex;
    color: var(--success);
}

.ip_invalid .ip_invalid {
    display: flex;
    color: var(--danger);
}



/*.form-row*/
.form-row {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

.form-row>.col,
.form-row>[class*=col-] {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

/* textarea 높이 */
textarea {
    resize: none;
}

textarea.form-control {
    min-height: 15rem;
    padding: 1.5rem 1.5rem;
    line-height: 140%;
    word-break: keep-all;
}

.form-control textarea {
    min-height: 14rem;
    padding: 0;
    line-height: 130%;
    border: 0;
    width: 100%;
}

.form-control textarea:focus {
    color: var(--text);
    background-color: var(--bg);
    border-color: var(--gray);
    outline: 0;
    box-shadow: 0 0 0 0 var(--border);
}

.form-control textarea::placeholder {
    color: var(--input_placeholder);
    opacity: 1;
}

.form-control textarea:disabled,
.form-control textarea[readonly] {
    background-color: var(--input_disabled);
    opacity: 1;
}

/* 셀렉트 박스 */
.custom-select,
.custom-select2 {
    padding-right: 3.3rem;
    background-repeat: no-repeat;
    background-position: center right 1.5rem;
    background-size: 1.6rem;
    background-color: #fff;
    border-color: var(--border);
    padding-left: 2.0rem;
    font-weight: 400;
    color: #000;
    text-align: left;
    position: relative;
}

.custom-select {
    background-image: url(../img/ic_fold.png);
}

.custom-select:focus {
    border-color: var(--border-200);
}

.custom-select2:after {
    content: '';
    display: block;
    width: 1.6rem;
    height: 1.6rem;
    background: url(../img/ic_fold.png)no-repeat center center;
    background-size: 1.6rem;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}


/* 날짜 선택 */
input.form-control[type="date"],
input.form-control[type="time"] {
    position: relative;
}

input.form-control[type="date"]::-webkit-calendar-picker-indicator,
input.form-control[type="time"]::-webkit-calendar-picker-indicator {
    -webkit-appearance: none;
    background: none;
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
}

input.form-control[type="date"]::before,
input.form-control[type="time"]::before {
    content: '';
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.6rem;
    background: var(--gray);
    cursor: pointer;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

input.form-control[type="time"]::before {
    -webkit-mask: var(--ic_time);
    mask: var(--ic_time);
}

input.form-control[type="date"]::before {
    -webkit-mask: var(--ic_date);
    mask: var(--ic_date);
}

input.form-control.no-icon[type="date"]::before,
input.form-control.no-icon[type="time"]::before {
    display: none;
}


/*버튼타입 인풋*/
input.form-control[type="button"] {
    position: relative;
    background: url(../img/ic_more_ip.png)no-repeat right 1.5rem center / 1.5rem;
    text-align: left;
}


/* 체크박스*/
.checks_wr {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -1rem;
}

.checks_wr .checks {
    margin-right: 3rem;
    margin-bottom: 1rem;
}

.checks label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checks label.chk_right {
    flex-flow: row-reverse;
    justify-content: flex-end;
}

.checks input {
    display: none;
}

.checks .ic_box {
    display: inline-block;
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.6rem;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #fff;
    background-image: url(../img/ic_check_off.png);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.0rem;
    flex-shrink: 0;
}

.checks input:checked+.ic_box {
    background-color: var(--primary);
    border-color: var(--primary);
}

.chk_right .ic_box {
    margin-right: 0;
    margin-left: 0.5rem;
}

.checks input:checked~.chk_p {}

.chk_p {
    padding-top: 0.1rem;
}

.checks.primary_checks .ic_box {
    background-color: #eae9f0;
    border-radius: 50%;
    background-image: none;
}

.checks.primary_checks input:checked+.ic_box {
    background-image: url(../img/ic_check_on.png);
}


.radios_wr {
    display: flex;
    flex-wrap: wrap;
}

.radios_wr .radios {
    margin-right: 2rem;
    margin-bottom: 1rem;
}

.radios label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radios label.chk_right {
    flex-flow: row-reverse;
    justify-content: flex-end;
}

.radios input {
    display: none;
}

.radios .ic_box {
    display: inline-flex;
    flex-shrink: 0;
    position: relative;
    width: 2.4rem;
    height: 2.4rem;
    text-align: center;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.0rem;
    border-radius: 2.0rem;
    border: 1px solid var(--gray-300);
}

.radios input:checked+.ic_box {
    border-color: var(--primary);
}

.radios input:checked+.ic_box:after {
    content: '';
    display: block;
    width: 1.0rem;
    height: 1.0rem;
    border-radius: 50%;
    background-color: var(--primary);
}

.radios input+.ic_box:after {
    content: '';
    display: block;
    width: 1.0rem;
    height: 1.0rem;
    border-radius: 50%;
    background-color: var(--gray-200);
}




/* 이미지 업로드 */
.image_upload {
    display: inline-block;
    position: relative;
    margin-right: 1.0rem;
}

.rprs_img {
    position: absolute;
    top: 1px;
    left: 1px;
    font-sizE: 1.4rem;
    color: #fff;
    color: #fff;
    background: var(--primary);
    padding: 0.2rem 0.5rem;
    border-radius: 1.0rem 0 1.0rem 0;
    z-index: 1;
}

.upload_box {
    width: 10rem;
    overflow: hidden;
    cursor: pointer;
    background: url(../img/btn_add_img2.png) no-repeat center top 35% / 3.0rem;
    background-color: #fff;
    border: 1px solid var(--border);
    border-radius: 1.2rem;
    position: relative;
}

.upload_box .max_img {
    position: absolute;
    bottom: 15%;
    width: 100%;
    left: 0;
    font-size: 1.6rem;
    text-align: center;
    color: var(--gray-400);
    font-weight: 500;
}

.image_upload.on .upload_box {
    background: none;
    border: 1px solid var(--border);
}

.upload_del {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background-color: transparent;
    padding: 0 !important;
    display: none;
}

.upload_del img {
    width: 100%;
}

.image_upload.on .upload_del {
    display: flex;
}



/* 페이지네이션 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
}

.pagination a {
    color: var(--gray-900);
    font-weight: 500;
    width: 4.0rem;
    height: 4.0rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.8rem;
}

.pagination a.on {
    background-color: var(--primary);
    color: #fff;
    font-weight: 400;
    color: #fff;
}

.pagination a.on:hover {
    background-color: var(--primary);
}

.pagination a.disabled {
    color: var(--gray);
}

.pagination a.on.disabled {
    color: var(--gray-900);
    background-color: var(--gray-100);
}

.pagination a:hover {
    background-color: var(--gray-50);
}

.pagination a:active {
    background-color: var(--gray-100);
}

.pagination a.arrow {
    width: auto;
    padding: 0.8rem;
    height: 4.0rem;
    border-radius: 0.8rem;
    border: 1px solid var(--gray-100);
}

.pagination a.arrow.disabled img {
    opacity: 0.5;
}

.pagination a.arrow.disabled {
    background-color: transparent;
    cursor: auto;
    color: var(--gray);
}

.pagination a.arrow span {
    display: block;
    margin-top: 0.1rem;
}

/* 페이저 */
.pager {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 3.0rem;
    background: var(--light);
    padding: 0.3rem 0.6rem;

}

.pager .btn {
    padding: 0;
    width: 3.6rem;
    height: 3.6rem;
}

.pager .btn img {
    width: 3.6rem;
}

.pager .btn.disabled {
    background: transparent;
    border: 0;
}

.pager .btn.disabled img {
    opacity: 0.3;
}

/* 테이블 */
.table_01 {
    width: 100%;
    border-collapse: collapse;
    border-bottom: 1px solid #e3e3e3;
    border-top: 1px #eee solid;
    line-height: 140%;
}

.table_01 th {
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    font-weight: 500;
    padding: 1.0rem 0.5rem;
    background: var(--gray-50);
    vertical-align: top;

}

.table_01 td {
    border-bottom: 1px solid var(--border);
    padding: 1.2rem 0.5rem;
    border-right: 1px solid var(--border);
}

.table_01 th:last-child {
    border-right: 0;
}

.table_01 td:last-child {
    border-right: 0;
}


/* 테이블 슬래쉬 */
.table_01 th.slash {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><line x1="0" y1="100%" x2="100%" y2="0" stroke="rgb(77,77,77)" /></svg>');
    background-repeat: no-repeat;
}

.table_01 th.backslash {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><line x1="0" y1="0" x2="100%" y2="100%" stroke="rgb(77,77,77)" /></svg>');
    background-repeat: no-repeat;
}

.table_01 th.slash,
.table_01 th.backslash {
    text-align: left;
}

.slash div,
.backslash div {
    text-align: right;
}

/*테이블 반응형때*/
.table_scroll {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0px !important;
}






/* 이미지 크롭 */
.rect {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.rect:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.rect img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.rect2 {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.rect2:after {
    content: "";
    display: block;
    padding-bottom: calc(9 / 16 * 100%);
}

.rect2 img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.rect3 {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.rect3:after {
    content: "";
    display: block;
    padding-bottom: calc(190 / 335 * 100%);
}

.rect3 img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.rect4 {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.rect4:after {
    content: "";
    display: block;
    padding-bottom: calc(142 / 250 * 100%);
}

.rect4 img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.rect5 {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.rect5:after {
    content: "";
    display: block;
    padding-bottom: calc(110 / 335 * 100%);
}

.rect5 img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



.gap_02 {
    gap: 0.2rem;
}

.gap_04 {
    gap: 0.4rem;
}

.gap_05 {
    gap: 0.5rem;
}

.gap_08 {
    gap: 0.8rem;
}

.gap_10 {
    gap: 1rem;
}

.gap_15 {
    gap: 1.5rem;
}

.gap_2_10 {
    gap: 0.2rem 1rem;
}

/*기본모달*/
body {
    padding-right: 0px !important;
}

body.modal-open[style] {
    overflow-y: scroll;
    position: fixed;
    top: 0px;
    width: 100%;
}

.modal {
    padding-right: 0px !important;
}

.modal-dialog {
    max-height: 100%;
    height: 100%;
}

.modal-sm {
    max-width: 34rem;
    margin: 0 auto;
    padding: 1.5rem;
    padding: 2.0rem;
}

.modal-md {
    max-width: 48rem;
    margin: 0 auto;
    padding: 1.5rem;
    padding: 0rem 2.0rem;
    max-height: calc(100% - 3.5rem);
    min-height: calc(100% - 3.5rem);
}

.modal-default {
    max-width: var(--body_width);
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
    padding: 2.0rem 2.0rem;
}

.modal {
    overflow-y: auto;
}

.modal .modal-header {
    align-items: center;
    padding: 2rem 2rem 0.5rem;
    justify-content: space-between;
    border-bottom: 0;
}

.modal .modal-header .modal-title {
    font-weight: 700;
    font-size: 1.8rem;
    flex: 1 1 auto;
    border: 0;
}

.modal .modal-header .close {
    text-shadow: none;
    opacity: 1;
    width: 2.4rem;
    padding: 0;
    margin: 0;
}

.modal .modal-content {
    border: 0;
    border-radius: 1.5rem;
}

.modal .modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 2.0rem 2.0rem 2.5rem;
}

.modal .modal-body .close_bar {
    width: 4.4rem;
    height: 0.4rem;
    background: #E3E3E3;
    border-radius: 1.0rem;
    margin: 0 auto 1.0rem;
    border: 0;
    display: block;
}

.modal .modal-footer>* {
    margin: 0;
}

.modal .modal-footer {
    padding: 1.0rem 2.0rem 2.0rem;
    border: 0;
    display: block;
}

.modal .modal-footer .form-row {
    margin-right: -0.4rem;
    margin-left: -0.4rem;
}


.modal-sm .modal-footer {
    padding: 0 2.0rem 2.0rem;
}

.modal-md .modal-footer {
    padding: 0 2.0rem 2.0rem;
}

.modal .modal-sm .modal-header {
    padding: 1.5rem 2rem;
}

.modal .modal-sm .modal-body {
    border: 0;
    padding-top: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 1.5rem;
}

.modal .modal-md .modal-header {}

.modal .modal-md .modal-body {}

.modal_close {
    width: 4.0rem;
    height: 4.0rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4) !important;
    opacity: 1;
    backdrop-filter: blur(9px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal_close img {
    width: 1.6rem;
}


/*전체사이즈*/
.modal_full.modal {
    overflow-y: auto;
}

.modal_full.modal .modal-header {
    width: 100%;
    background: #fff;
    color: #000;
    padding: 0rem 2.0rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--hd_height_m);
    border-bottom: 0;
    border-radius: 0;
}

.modal_full.modal .modal-header button {
    border: 0;
    background: transparent;
    width: 2.4rem;
}

.modal_full.modal .modal-content {
    border-radius: 0;
    max-height: 100vh;
    height: 100vh;
}

.modal_full.modal .modal-dialog {
    margin: 0 auto;
    max-width: var(--body_width);
    transform: translate(0%, 0);
    max-height: 100%;
}

.modal_full.modal .modal-body {
    border: 0;
    padding: 1.0rem 2.0rem 5.0rem;
}

.modal_full.modal .modal-footer {
    padding: 2.0rem 2.0rem 1.0rem;
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent, #fff 20%);
    border-radius: 0;
}


/*하단 팝업*/
.modal_bottom.modal {
    padding-right: 0 !important;
    overflow-y: hidden;
}

.modal_bottom.modal.fade {}

.modal_bottom.modal.show .modal-dialog {
    padding-right: 0 !important;
    transform: translate(-50%, 0);
}

.modal_bottom.modal .modal-dialog {
    transform: translate(0, 5rem);
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    transform: translate(-50%, 5rem);
    left: 50%;
}

.modal_bottom.modal .modal-header {
    padding: 2.4rem 2.0rem 0;
}

.modal_bottom.modal .modal-header .modal-title {
    font-size: 2.6rem;
    line-height: 1.385;
}

.modal_bottom.modal .modal-title button {
    border: 0;
    background: transparent;
    width: 2.4rem;
    position: absolute;
    right: 2.0rem;
    top: 1.6rem;
}

.modal_bottom.modal .modal-dialog {
    justify-content: flex-end;
    margin: 0 auto;
    min-height: 100%;
    max-width: var(--body_width);
}

.modal_bottom.modal .modal-content {
    border-radius: 1.5rem 1.5rem 0 0;
}

.modal_bottom.modal .modal-body {
    border-bottom: 0;
    padding: 2.0rem 2.0rem 2.4rem;
}

.modal_bottom.modal .modal-footer {
    padding: 0 2.0rem 1.0rem;
}

.modal-backdrop {
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    max-width: var(--body_width);
}



/* 토스트팝업 */
.toast {
    color: #fff;
    border-radius: 0.6rem;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

/* toast */
.toast {
    position: fixed;
    top: 5.6rem;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: none;
    font-weight: 300;
    z-index: 9999;
    border: 0;
    background: transparent;
    width: 90%;
    max-width: 34rem;
}

.toast-body {
    padding: 0.8rem 2.0rem;
    background-color: var(--gray-800);
    color: var(--white);
    font-weight: 400;
    border-radius: 0.8rem;
    text-align: center;
    width: 100%;
}

.toast-body p {
    display: flex;
    align-items: center;
    justify-content: center;
}




/* 뱃지 */
.badge {
    padding: 0.4rem 0.8rem;
    border-radius: 0.8rem;
    font-weight: 500;
    font-size: 1.2rem;
}

.badge-primary-light {
    background: var(--primary-light);
    color: var(--primary);
}

.badge-light {
    background: var(--light);
    color: #858585;
}

.badge-sm {
    font-size: 1.3rem;
    padding: 0.3rem 0.5rem;
}

.badge-md {
    font-size: 1.4rem;
    padding: 0.6rem 1.0rem;
}

.badge-lg {
    font-size: inherit;
    padding: 1.0rem 2.0rem;
}




/*탭*/
.tab_sticky {
    position: sticky;
    top: var(--hd_height_m);
    z-index: 15;
}

/*nav-tabs*/
.nav-tabs {
    background: #F5F6F8;
    border-radius: 0.8rem;
    padding: 0.8rem;
    border: 0;
    flex-wrap: nowrap;
}

.nav-tabs .nav-link {
    height: 4.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #999;
    border: 0;
    margin-bottom: 0px;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
    border-radius: 0.8rem;
    font-weight: 600;
    word-break: keep-all;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    color: #495057;
    background: #fff;
    color: #000;
    box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.06);
}

/*nav-pills*/
.nav-pills {
    margin-left: -0.4rem;
    margin-right: -0.4rem;
    flex-wrap: nowrap;
}

.nav-pills .col {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
}

.nav-pills .nav-link {
    background: none;
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: #fff;
    color: var(--gray-600);
}

.nav-pills .nav-link.active {
    background: none;
    border: 0;
    border-radius: 1rem;
    background: var(--secondary);
    border: 1px solid var(--secondary);
}



/*nav_tab_line*/
.nav_tab_line {
    width: 100%;
    margin: 0;
    background-color: #fff;
}

.nav_tab_line {
    border: unset;
    border-bottom: 1px solid #E3E3E3;
}

.nav_tab_line .col,
.nav_tab_line [class*=col-] {
    padding-left: 0;
    padding-right: 0;
}

.nav_tab_line .nav-item {
    text-align: center;
    background-color: #fff;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    margin-right: 2.0rem;
    flex-basis: content;
}

.nav_tab_line .nav-link {
    border: 1px solid white;
    color: var(--gray);
    height: 5.7rem;
    padding: 1.8rem 0.0rem 1.5rem;
    width: 100%;
    font-size: 2.0rem;
    font-weight: 600;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav_tab_line .nav-link.active,
.nav_tab_line .nav-item.show .nav-link {
    border-bottom: 3px solid var(--secondary);
    color: var(--secondary);
    transform: translateY(0.15rem);
    padding: 1.6rem 0.0rem 1.5rem;
}


.nav_tab_line.cate_auto {
    width: fit-content;
}

.nav_tab_line.cate_auto .nav-item {
    flex-grow: 0;
}

.nav_tab_line.cate_auto .nav-link {
    white-space: nowrap;
}


/*top_tab*/
.top_tab {
    width: 100%;
    margin: 0;
}

.top_tab {
    border: unset;
    border-bottom: 1px solid var(--border);
}

.top_tab .col,
.top_tab [class*=col-] {
    padding-left: 0;
    padding-right: 0;
}

.top_tab .nav-item {
    text-align: center;
}

.top_tab .nav-link {
    border: 1px solid transparent;
    color: var(--gray);
    height: 5.0rem;
    width: 100%;
    font-size: 1.8rem;
    font-weight: 700;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
}

.top_tab .nav-link span {
    padding: 1.8rem 0.0rem 1.5rem;
    display: inline-block;
}

.top_tab .nav-link.active span,
.top_tab .nav-item.show .nav-link span {
    border-bottom: 2px solid #000;
    color: #000;
    transform: translateY(0.2rem);
    padding: 1.1rem 0.0rem 0.9rem;
    width: 100%;
}



/*드롭다운*/
.dropdown-menu {
    padding: 1.0rem 0;
    min-width: 13rem;
    box-shadow: 0 0rem 1.6rem rgba(0, 0, 0, 0.06);
    border-color: var(--border);
    border-radius: 1.2rem;
    font-size: 1.6rem;
    color: #000;
    margin-top: 0.9rem;
}

.dropdown-menu.dropdown-menu02 {
    padding: 1.0rem 1.5rem;
}

.dropdown-menu .dropdown-item {
    padding: 0.35rem 1.5rem;
    cursor: pointer;
    color: #000;
}

.dropdown-menu.dropdown-menu02 .dropdown-item {
    padding: 0.35rem 0.8rem;
    cursor: pointer;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.dropdown-menu.dropdown-menu02 .dropdown-item:last-child {
    border-bottom: 0;
}

.dropdown-menu .dropdown-item:hover {
    background: var(--light);
}

.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
    background: var(--light) !important;
    color: #000;
}

/*커스텀 스위치*/
.custom-switch {
    padding: 0;
    width: 4.1rem;
    height: 2.7rem;
    position: relative;
    flex-shrink: 0;
}

.custom-switch .custom-control-label::after {
    width: 2.4rem;
    height: 2.4rem;
    background-color: #fff;
    border-radius: 3rem;
    top: 0.2rem;
    left: 0.2rem;
}

.custom-control-label::after {
    position: absolute;
    top: 0.3rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    cursor: pointer;
}

.custom-switch .custom-control-input:checked~.custom-control-label::after {
    background-color: #fff;
    left: 1.0rem;
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: var(--primary);
    background-color: var(--primary);
}

.custom-control-label::before {
    background-color: var(--gray-200);
    border: 0;
    top: 0;
    cursor: pointer;
}

.custom-switch .custom-control-label::before {
    left: 0;
    top: 0;
    width: 4.4rem;
    height: 2.8rem;
    border-radius: 3rem;
}



/*마진*/
.mt_2 {
    margin-top: 0.2rem;
}

.mt_8 {
    margin-top: 0.8rem;
}

.mt_12 {
    margin-top: 1.2rem;
}

.mt_16 {
    margin-top: 1.6rem;
}

.mt_20 {
    margin-top: 2.0rem;
}

.mt_24 {
    margin-top: 2.4rem;
}

.mt_25 {
    margin-top: 2.5rem;
}

.mt_28 {
    margin-top: 2.8rem;
}

.mt_35 {
    margin-top: 3.5rem;
}

.mt_36 {
    margin-top: 3.6rem;
}

.mt_40 {
    margin-top: 4.0rem;
}

.mt_50 {
    margin-top: 5.0rem;
}

.mt_60 {
    margin-top: 6.0rem;
}

.mt_70 {
    margin-top: 7.0rem;
}

.mt_80 {
    margin-top: 8.0rem;
}


.mb_2 {
    margin-bottom: 0.2rem;
}

.mb_4 {
    margin-bottom: 0.4rem;
}

.mb_5 {
    margin-bottom: 0.5rem;
}

.mb_6 {
    margin-bottom: 0.6rem;
}

.mb_8 {
    margin-bottom: 0.8rem;
}

.mb_10 {
    margin-bottom: 1.0rem;
}

.mb_12 {
    margin-bottom: 1.2rem;
}

.mb_14 {
    margin-bottom: 1.4rem;
}

.mb_16 {
    margin-bottom: 1.6rem;
}

.mb_18 {
    margin-bottom: 1.8rem;
}

.mb_20 {
    margin-bottom: 2.0rem;
}

.mb_24 {
    margin-bottom: 2.4rem;
}

.mb_25 {
    margin-bottom: 2.5rem;
}

.mb_27 {
    margin-bottom: 2.7rem;
}

.mb_30 {
    margin-bottom: 3.0rem;
}

.mb_40 {
    margin-bottom: 4.0rem;
}

.mb_50 {
    margin-bottom: 5.0rem;
}

.mb_60 {
    margin-bottom: 6.0rem;
}

.mb_70 {
    margin-bottom: 7.0rem;
}

.mb_90 {
    margin-bottom: 9.0rem;
}

.mb_110 {
    margin-bottom: 11.0rem;
}

.mr_4 {
    margin-right: 0.4rem;
}

.mr_6 {
    margin-right: 0.6rem;
}

.mr_8 {
    margin-right: 0.8rem;
}

.mr_12 {
    margin-right: 1.2rem;
}

.mr_16 {
    margin-right: 1.6rem;
}

.mr_20 {
    margin-right: 2.0rem;
}

.ml_6 {
    margin-left: 0.6rem;
}

.ml_8 {
    margin-left: 0.8rem;
}

.ml_12 {
    margin-left: 1.2rem;
}

.ml_16 {
    margin-left: 1.6rem;
}

.ml_20 {
    margin-left: 2.0rem;
}


.mx_4 {
    margin-left: 0.4rem;
    margin-right: 0.4rem;
}

.mx_20 {
    margin-left: 2.0rem;
    margin-right: 2.0rem;
}

.mx_n16 {
    margin-left: -1.6rem;
    margin-right: -1.6rem;
}

.mx_n20 {
    margin-left: -2.0rem;
    margin-right: -2.0rem;
}


.my_2 {
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
}



/*패딩*/
.pt_hd {
    padding-top: var(--hd_height_m);
}

.pt_6 {
    padding-top: 0.6rem;
}

.pt_7 {
    padding-top: 0.7rem;
}

.pt_14 {
    padding-top: 1.4rem;
}

.pt_15 {
    padding-top: 1.5rem;
}

.pt_20 {
    padding-top: 2.0rem;
}

.pt_24 {
    padding-top: 2.4rem;
}

.pt_25 {
    padding-top: 2.5rem;
}

.pt_28 {
    padding-top: 2.8rem;
}

.pt_38 {
    padding-top: 3.8rem;
}

.pt_40 {
    padding-top: 4.0rem;
}

.pt_50 {
    padding-top: 5.0rem;
}

.pt_60 {
    padding-top: 6.0rem;
}

.pt_80 {
    padding-top: 8.0rem;
}

.pt_120 {
    padding-top: 12.0rem;
}

.pb_8 {
    padding-bottom: 0.8rem;
}

.pb_14 {
    padding-bottom: 1.4rem;
}

.pb_16 {
    padding-bottom: 1.6rem;
}

.pb_18 {
    padding-bottom: 1.8rem;
}

.pb_20 {
    padding-bottom: 2.0rem;
}

.pb_22 {
    padding-bottom: 2.2rem;
}

.pb_24 {
    padding-bottom: 2.4rem;
}

.pb_25 {
    padding-bottom: 2.5rem;
}

.pb_40 {
    padding-bottom: 4.0rem;
}

.pb_50 {
    padding-bottom: 5.0rem;
}

.pb_60 {
    padding-bottom: 6.0rem;
}

.pb_70 {
    padding-bottom: 7.0rem;
}

.pb_80 {
    padding-bottom: 8.0rem;
}

.pb_90 {
    padding-bottom: 9.0rem;
}

.pb_100 {
    padding-bottom: 10.0rem;
}


.pl_12 {
    padding-left: 1.2rem !important;
}

.pl_16 {
    padding-left: 1.6rem;
}

.pl_25 {
    padding-left: 2.5rem;
}


.pr_12 {
    padding-right: 1.2rem !important;
}

.pr_16 {
    padding-right: 1.6rem;
}

.py_8 {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}

.py_12 {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
}

.py_20 {
    padding-top: 2.0rem;
    padding-bottom: 2.0rem;
}

.py_24 {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
}

.py_35 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.py_40 {
    padding-top: 4.0rem;
    padding-bottom: 4.0rem;
}


.px_8 {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
}

.px_12 {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
}

.px_18 {
    padding-left: 1.8rem;
    padding-right: 1.8rem;
}

.px_16 {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
}

.px_20 {
    padding-left: 2.0rem;
    padding-right: 2.0rem;
}

.py_30 {
    padding-top: 3.0rem;
    padding-bottom: 3.0rem;
}

.p_20 {
    padding: 2rem;
}



.vh_min100_hd {
    min-height: calc(100vh - 5.6rem);
}

.vh_min100 {
    min-height: 100vh;
}

.vh_100_vh {
    height: 100vh;
}

.w-auto {
    width: auto;
}

.wrap {
    min-height: 100dvh;
    padding-top: var(--hd_height_m);
}

.licenses_item {
    padding-top: 2.0rem;
    padding-bottom: 2.0rem;
    border-bottom: 1px solid var(--border);
}

.licenses_item .tit {
    font-size: 1.6rem;
    color: #000;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.licenses_item .link_a {
    font-size: 1.4rem;
    color: var(--blue);
    display: block;
    margin-bottom: 0.2rem;
}

.licenses_item .info {
    font-size: 1.4rem;
    color: var(--gray-600);
    margin-bottom: 0.4rem;
    white-space: pre-line;
}


/*********디자인**********/
body {
    overflow-y: scroll;
}

.mobile_wr {
    max-width: var(--body_width);
    margin: 0 auto;
}

/* bar */
.bar {
    height: 1.0rem;
    background-color: var(--light);
}

/*버튼*/
.bottom_btn {
    position: fixed;
    left: 50%;
    bottom: 0;
    width: 100%;
    max-width: var(--body_width);
    transform: translateX(-50%);
    padding-bottom: env(safe-area-inset-bottom);
    z-index: 1040;
    background: #fff;
}

.bottom_btn .btn_wrap {
    padding: 0 2.0rem 1.0rem;
}


.go_top {
    width: 5.2rem;
    height: 3.6rem;
    background: url(../img/gotop_btn.png) no-repeat center;
    background-color: rgba(0, 0, 0, 0.06);
    background-size: 1.9rem auto;
    z-index: 1000;
    border-radius: 2.0rem;
    display: none;
    position: fixed;
    right: 50%;
    bottom: 1.0rem;
    transform: translateX(27.2rem);
    backdrop-filter: blur(3px);
}

.go_top.show {
    display: block;
}

.zd_2 {
    position: relative;
    z-index: 2;
}

.zd_3 {
    position: relative;
    z-index: 3;
}

.icon90 {
    width: 9.0rem;
    flex-shrink: 0;
}

.icon80 {
    width: 8.0rem;
    flex-shrink: 0;
}

.icon70 {
    width: 7.0rem;
    flex-shrink: 0;
}

.icon60 {
    width: 6.0rem;
    flex-shrink: 0;
}

.icon52 {
    width: 5.2rem;
    flex-shrink: 0;
}

.icon50 {
    width: 5.0rem;
    flex-shrink: 0;
}

.icon44 {
    width: 4.4rem;
    flex-shrink: 0;
}

.icon40 {
    width: 4.0rem;
    flex-shrink: 0;
}

.icon38 {
    width: 3.8rem;
    flex-shrink: 0;
}

.icon36 {
    width: 3.6rem;
    flex-shrink: 0;
}

.icon34 {
    width: 3.4rem;
    flex-shrink: 0;
}

.icon32 {
    width: 3.2rem;
    flex-shrink: 0;
}

.icon30 {
    width: 3.0rem;
    flex-shrink: 0;
}

.icon28 {
    width: 2.8rem;
    flex-shrink: 0;
}

.icon27 {
    width: 2.7rem;
    flex-shrink: 0;
}

.icon24 {
    width: 2.4rem;
    flex-shrink: 0;
}

.icon20 {
    width: 2.0rem;
    flex-shrink: 0;
}

.icon18 {
    width: 1.8rem;
    flex-shrink: 0;
}

.icon16 {
    width: 1.6rem;
    flex-shrink: 0;
}

.icon15 {
    width: 1.5rem;
    flex-shrink: 0;
}

.icon14 {
    width: 1.4rem;
    flex-shrink: 0;
}

.icon12 {
    width: 1.2rem;
    flex-shrink: 0;
}

.icon_shadow {
    filter: drop-shadow(0 0.3rem 0.6rem rgba(254, 103, 110, 0.49));
}


/* 헤더 */
.hd_m {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--hd_height_m) !important;
    width: 100%;
    max-width: var(--body_width);
    background: #fff;
    color: #000;
    position: fixed;
    top: 0;
    padding: 0 2.0rem;
    z-index: 1000;
    gap: 1.5rem;
}

.hd_m .logo img {
    width: 15.2rem;
    display: flex;
}

.hd_m .log_txt {
    font-size: 1.4rem;
    padding-left: 0.5rem;
}

.hd_m .log_txt span {
    padding: 0 0.5rem;
}

.hd_m button {
    border: 0;
    background: transparent;
    flex-shrink: 0;
}

.hd_m button>img {
    height: 2.4rem;
}

.hd_m .hd_btn,
.modal-header .hd_btn {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 1.5rem;
    min-width: 2.4rem;
}

.hd_m img {
    flex-shrink: 0;
}

.hd_m .hd_line {
    display: block;
    width: 1px;
    height: 1.7rem;
    background: var(--gray-200);
}

.hd_m .sch_ip {
    background: rgba(255, 255, 255, 0.1);
    border: 0;
    padding: 0;
    flex: 1 1 auto;
}

.hd_m .sch_ip button {
    width: 3.0rem;
}

.hd_m .sch_ip button>img {
    height: auto;
}

.hd_m .sch_ip .form-control {
    height: 4.0rem;
}

.bookmark_btn {
    width: 2.4rem;
    height: 2.4rem;
    background: url(../img/book_mark_off.png)no-repeat center / cover !important;
}

.bookmark_btn[aria-expanded="false"] {
    background-image: url(../img/book_mark_off.png) !important;
}

.bookmark_btn[aria-expanded="true"],
.bookmark_btn.active {
    background-image: url(../img/book_mark_on.png) !important;
}



.top_alarm {
    position: relative;
}

.top_alarm span {
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    position: absolute;
    top: -0.2rem;
    right: -0.2rem;
    background: var(--primary);
}

.hd_transparent {
    background: transparent;
}

.hd_menu {
    position: fixed;
    left: 50%;
    top: 1.4rem;
    width: 2.5rem;
    z-index: 1000;
    transform: translateX(24.6rem);
}

/* 모바일 메뉴 */
.hd_menu_btn {
    font-size: 2rem;
}

.m_menu_wr {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    max-width: var(--body_width);
    z-index: 99999;
    transition: all 0.5s ease-in-out;
    display: flex;
    justify-content: flex-end;
    overflow: hidden;
    transform: translateX(-50%);
}

/* x버튼 */
.close_btn_wr {
    display: none;
    opacity: 0;
}

.m_nav .close_btn_wr {
    display: flex;
    justify-content: flex-end;
    opacity: 0;
}

.menu_on .m_nav .close_btn_wr {
    opacity: 1;
}

.close_btn {
    font-size: 2rem;
    border: 0;
    height: auto;
}

.close_btn img {
    width: 3.0rem;
}

/* 메뉴 열렸을때 외부 */
.menu_on .m_menu_wr {
    visibility: visible;
    opacity: 1;
}

.m_nav {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: #fff;
    transition: all 0.4s ease-in-out;
    max-width: 0;
    transform: translateX(100%);
    visibility: hidden;
    opacity: 0;
}

.menu_on .m_nav {
    transform: translateX(0%);
    visibility: visible;
    opacity: 1;
    max-width: var(--body_width);
    width: 80%;
}

.menu_bg {
    position: fixed;
    left: 50%;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease-in-out;
    width: 100%;
    height: 100%;
    z-index: 99998;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-50%);
    max-width: var(--body_width);
}

.menu_on .menu_bg {
    visibility: visible;
    opacity: 1;
}

/* 메뉴 열렸을때 내부 */
.m_nav .nav_wr {
    height: auto;
}

.m_nav .nav_ul {
    display: block;
}

.m_nav .nav_li {
    height: 100%;
    position: relative;
}

.m_nav .nav_a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 1.2rem 1.6rem;
}

.m_nav .nav_a i {
    display: inline-block;
}

.m_nav .nav_a img {
    width: 2.0rem;
}

.m_nav .nav_ul2 {
    display: none;
    background: var(--light);
}

.m_nav .nav_ul2 a {
    display: block;
    padding: 1.2rem 1.6rem;
    white-space: nowrap;
}



/*검색*/
.sch_ip {
    display: flex;
    background: #fff;
    padding: 0 2rem;
    border-radius: 0.8rem;
}

.sch_ip .form-control {
    height: 4.8rem;
    padding: 0.5rem 0;
    margin-right: 1.0rem;
}

.sch_ip .form-control:focus {
    background-color: transparent;
}

.sch_ip button {
    width: 2.4rem;
    height: 2.4rem;
    border: 0;
    background: transparent;
}


/* IE의 경우 */
.sch_ip .form-control::-ms-clear,
.sch_ip .form-control::-ms-reveal {
    display: none;
}

/* 크롬의 경우 */
.sch_ip .form-control::-webkit-search-decoration,
.sch_ip .form-control::-webkit-search-cancel-button,
.sch_ip .form-control::-webkit-search-results-button,
.sch_ip .form-control::-webkit-search-results-decoration {
    display: none;
}

/*회색 검색*/
.sch_gray.sch_ip {
    background: var(--light);
    border: 0;
}


/*새로운 input 스타일*/
.form_box {
    border: 1px solid var(--border);
    border-radius: 1.2rem;
    padding-left: 2.0rem;
    padding-right: 2.0rem;
    display: flex;
    height: var(--height_lg);
    align-items: center;
}

.form_box .form-control {
    flex: 1 1 auto;
    height: auto;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.form_box .form_time {
    display: none;
}

.ip_box .ip_valid {
    display: none;
}

.ip_box.ip_valid .ip_valid {
    display: block;
}

.form_box .btn-sm {
    min-width: 6.0rem;
}

.form_box.disabled {
    background: var(--gray-50);
}

.form_box.disabled .form-control {
    background: var(--gray-50);
    color: var(--gray-300);
}

/*노데이터*/
.result_data {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.result_data img {
    width: 7.2rem;
}



/*숫자 증감*/
.item_opt_counter {
    position: relative;
    width: 11.2rem;
    height: 3.1rem;
    line-height: 3.1rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}

.item_opt_counter_btn {
    width: 3.1rem;
    height: 3.1rem;
    vertical-align: top;
    padding: 0;
    background: transparent;
    border: 1px solid var(--border);
    flex-shrink: 0;
    padding: 0;
    border-radius: 50%;
}

.item_opt_counter_btn.disabled,
.item_opt_counter_btn:disabled {
    opacity: 0.3;
    background: transparent;
}

.item_opt_counter .quantity {
    width: 48%;
    height: 100%;
    vertical-align: top;
    font-size: inherit;
    font-weight: 500;
    line-height: 3.1rem;
    text-align: center;
    border: unset;
    margin: 0 0.5rem;
}

.item_opt_counter .quantity:focus {
    outline: 0;
}

.item_opt_counter.time_counter {
    width: 15.0rem;
    height: 4.7rem;
    line-height: 4.7rem;
    border-radius: 3.6rem;
    border: 1px solid #E3E3E3;
}

.item_opt_counter.time_counter .quantity {
    color: #000;
    font-size: 1.8rem;
}

.item_opt_counter.disabled .quantity {
    color: #999;
}

.item_opt_counter.disabled .item_opt_counter_btn {
    opacity: 0.3;
}

/*양옆정렬 정보*/
.between_info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.between_info:last-child {
    margin-bottom: 0;
}

/*왼쪽정렬 정보*/
.left_info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 0.5rem;
}

.left_info:last-child {
    margin-bottom: 0 !important;
}

/*아이템*/
.item {}

.item .tit {
    font-weight: 700;
    color: #000;
    font-size: 1.6rem;
}

/*20251125 여기서부터*/
.item .hd_left {
    display: flex;
    align-items: self-end;
    flex-grow: 1;
    min-width: 0;
    padding-right: 1.0rem;
}

.item .tit.line2_text {
    flex-shrink: 1;
}

.item .n_badge {
    display: inline-flex;
    width: 1.6rem;
    height: 1.6rem;
    background: var(--primary);
    border-radius: 50%;
    color: #fff;
    font-size: 0.96rem;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform: translateY(-0.3rem);
}

/*20251125 여기까지*/
.item .thum {
    overflow: hidden;
    flex-shrink: 0;
}

.item .item_body {
    flex: 1 1 auto;
}

.item .info {
    color: var(--gray);
    font-size: 1.4rem;
    font-weight: 500;
}

.item .cate_icon {
    background: var(--gray-50);
    border-radius: 50%;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.item .date {
    color: var(--gray);
    font-weight: 500;
    font-size: 1.4rem;
}

/*푸쉬*/
.push_item {
    display: flex;
    padding: 1.5rem 2.0rem;
    align-items: center;
    width: 100%;
    border: 0;
    background: transparent;
}

.push_item.on {
    background: var(--gray-50);
}

.push_item .icon {
    width: 2.6rem;
    height: 2.6rem;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    align-self: flex-start;
    overflow: hidden;
}

.push_item .hd_body {
    flex: 1 1 auto;
    padding-left: 1.0rem;
    align-self: center;
}

.push_item .date {
    color: var(--gray);
    margin-top: 0.2rem;
    font-weight: 500;
    font-size: 1.4rem;
}

.push_item .push_cont {
    display: flex;
    align-items: center;
}

.push_item .push_cont .tit {
    /* display: -webkit-box; */
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 500;
    font-size: 1.5rem;
    flex: 1 1 auto;
    padding-right: 1.0rem;
}

.push_item .push_cont .icon16 {
    align-self: start;
    margin-top: 0.35rem;
}

.push_item .push_cont.active {}

.push_item .push_cont.active .tit {
    display: block;
}

.push_item.push_open .push_cont .icon16 {
    transform: rotate(90deg);
    transition: all .1s;
}

.push_item.push_open .push_cont.active .icon16 {
    transform: rotate(270deg);
    transition: all .1s;
}


/*메인 20251205*/
.main_cate {
    padding: 1.5rem 1.5rem 2.0rem;
    border-radius: 1.5rem;
    background: linear-gradient(180deg, #005BFF 30%, #97BCFF 100%);
}

.main_cate.sub_cate {
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.main_cate li {
    margin-bottom: 1.0rem;
}

.main_cate .item {
    padding: 0.5rem 1.5rem;
    background: #fff;
    min-height: 9.0rem;
    border-radius: 1.2rem;
    align-items: center;
}

.main_cate .cate_more {
    padding-top: 0.8rem;
}

.main_cate .cate_more img {
    transform: rotate(0deg);
    transition: all .1s;
}

.main_cate .cate_more.active img {
    transform: rotate(180deg);
    transition: all .1s;
}

/*20251205*/
.main_sch {
    width: 14rem;
    height: 3.8rem;
    padding: 0.5rem 1.5rem;
    border-radius: 3.0rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    justify-content: space-between;
    border: 0;
}


/*쿠폰등록*/
.coupon_top,
.coupon_box {
    display: flex;
    border-radius: 1.2rem;
    padding: 2.0rem;
    align-items: center;
    background: #fff;
}

.coupon_top {
    background: var(--gray-50);
}

.coupon_top .icon80 {
    position: relative;
    padding-bottom: 0.8rem;
}

.coupon_top .btn {
    position: absolute;
    bottom: 0;
    right: 0;
}

/*쿠폰 내역*/
.coupon_list .item {
    padding: 1.5rem 0;
}


/*문제리스트*/
.question_list li {
    margin-bottom: 1.0rem;
}

.question_list li:last-child {
    margin-bottom: 0rem;
}

.question_list .item {
    background: #fff;
    border-radius: 1.2rem;
    min-height: 7.8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.question_list .item .item_hd {
    padding: 1.5rem 2.0rem;
    display: flex;
    align-items: center;
}

.question_list .item .item_hd .tit {
    margin-right: 1.0rem;
}

.question_list .item .item_hd .badge {
    margin-right: 0.5rem;
}

.question_list .item .item_q {
    padding-bottom: 1.5rem;
    width: 100%;
}

.question_list .item .item_q .col {
    border-right: 1px dotted var(--gray-100);
    text-align: center;
}

.question_list .item .item_q a {
    display: block;
}

.question_list .item .item_q .col:last-child {
    border-right: 0;
}

.question_list .item .item_q a img {
    margin: 0 auto 0.5rem;
    display: block;
}

.question_list .item .item_q a p {
    color: var(--gray-600);
    font-weight: 500;
}


/*2차카테고리*/
.question_type {
    padding: 1.0rem 1.5rem;
    border-radius: 1.5rem;
    background: #fff;
}

.question_type .item {
    padding: 0.8rem 0;
    align-items: center;
}


/*문제지*/
.solve_top {
    position: relative;
}

.solve_top:after {
    content: '';
    display: block;
    width: calc(100% + 4.0rem);
    height: 1px;
    background: var(--gray-100);
    position: absolute;
    top: 0.8rem;
    left: -2.0rem;
}

.solve_top .item_tags .tags_body {
    color: #fff;
    background: #000;
    border-radius: 0.8rem 0 0.8rem 0.8rem;
    padding: 0.5rem 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.solve_top .item_tags .tags_body:after {
    content: '';
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    border-top: 0.4rem solid transparent;
    border-left: 0.4rem solid #000;
    border-bottom: 0.4rem solid #000;
    border-right: 0.4rem solid transparent;
    position: absolute;
    top: 0;
    right: -0.8rem;
}

.solve_top .top_exam {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-top: -0.8rem;
}

.mode_tit {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
}

.mode_tit img {
    display: inline-block;
}

/*답안 체크 박스*/
.answer_list {
    padding: 1.0rem;
    border: 1px solid var(--border);
    border-radius: 1.5rem;
}

.answer_list li {
    margin-bottom: 0.2rem;
}

.answer_list li:last-child {
    margin-bottom: 0;
}

.answer_checks .custom_label {
    display: flex;
    align-items: center;
    cursor: pointer;
    border-radius: 1.2rem;
    padding: 1.0rem;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 170%;
}

.answer_checks .visually_hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.answer_checks .num {
    display: inline-block;
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.5rem;
    line-height: 2.4rem;
    font-weight: 700;
    border-radius: 50%;
    background-color: var(--gray-400);
    text-align: center;
    display: flex;
    align-items: center;
    align-self: flex-start;
    justify-content: center;
    margin-right: 1.0rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    color: #fff;
}

.answer_checks .visually_hidden:checked+.custom_label .num {
    background-color: var(--primary);
}

.answer_checks .visually_hidden:checked+.custom_label {
    background-color: var(--primary-light);
}

.answer_checks.inc_answer .custom_label .num {
    background-color: var(--red) !important;
}

.answer_checks.inc_answer .custom_label {
    background-color: var(--red-light) !important;
}

.answer_checks.to_answer .custom_label .num {
    background-color: var(--green) !important;
}

.answer_checks.to_answer .custom_label {
    background-color: var(--green-light) !important;
}

.answer_cont img {
    mix-blend-mode: multiply;
}

/*ox*/
.answer_ox {
    position: relative;
}

.answer_ox .custom_label {
    display: flex;
    align-items: center;
    cursor: pointer;
    border-radius: 1.0rem;
    padding: 1.0rem;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 170%;
    height: 15rem;
    background: var(--gray-50);
    flex-direction: column;
    justify-content: center;
    color: var(--gray-600);
}

.answer_ox .custom_label .q_ox {
    font-size: 2.8rem;
    line-height: 100%;
    margin-bottom: 1.0rem;
}

.answer_ox .visually_hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.answer_ox .answer_mark:after {
    display: none;
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.1rem;
    line-height: 2.8rem;
    font-weight: 700;
    border-radius: 50%;
    background-color: var(--gray-400);
    text-align: center;
    display: flex;
    align-items: center;
    align-self: flex-start;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    position: absolute;
    top: 1.0rem;
    left: 1.0rem;
}

.answer_ox .visually_hidden:checked+.custom_label {
    background-color: var(--primary-light);
}

.answer_ox.inc_answer .visually_hidden:checked+.custom_label {
    background-color: var(--red-light) !important;
    color: var(--red);
}

.answer_ox.to_answer .visually_hidden:checked+.custom_label {
    background-color: var(--green-light) !important;
    color: var(--green);
}

.answer_ox.inc_answer .visually_hidden:checked+.custom_label .answer_mark:after {
    content: '선택';
    display: block;
    background-color: var(--red) !important;
}

.answer_ox.to_answer .visually_hidden:checked+.custom_label .answer_mark:after {
    content: '정답';
    display: block;
    background-color: var(--green) !important;
}

.answer_ox.to_answer.active .custom_label .answer_mark:after {
    content: '정답';
    display: block;
    background-color: var(--green) !important;
}



.answer_move {
    padding: 0.7rem 0 0.7rem 0.7rem;
    border: 1px solid var(--gray-300);
    cursor: pointer;
    background-color: var(--gray-200);
    border-radius: 3.0rem 0 0 3.0rem;
    display: inline-block;
    position: fixed;
    right: 0;
    bottom: 7.9rem;
}

.answer_move .move_icon {
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 50%;
    background: var(--gray-50);
    align-items: center;
    justify-content: center;
    display: flex;
}

.answer_move p {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--gray-600);
    display: none;
}

.answer_move.active {
    padding: 0.7rem 1.5rem 0.7rem 0.7rem;
}

.answer_move.active p {
    display: block;
    margin-left: 1.0rem;
}

.answer_move_list .row {
    margin-right: -0.4rem;
    margin-left: -0.4rem;
    row-gap: 0.8rem;
}

.answer_move_list .row>.col,
.answer_move_list .row>[class*=col-] {
    padding-right: 0.4rem;
    padding-left: 0.4rem;
}

.answer_move_list .btn.inc_answer {
    background: var(--red-light);
    color: var(--red);
}

.answer_move_list .btn.to_answer {
    background: var(--green-light);
    color: var(--green);
}

/*해설*/
.description_cont {
    padding-top: 2.0rem;
    padding-bottom: 6rem;
    border-top: 1px solid var(--border);
    position: relative;
    margin-top: 3.5rem;
}

.description_cont .item_tags {
    width: 6.5rem;
    height: 2.1rem;
    border-radius: 0.8rem 0.8rem 0 0;
    background: #fff;
    border: 1px solid var(--border);
    border-bottom: 0;
    text-align: center;
    position: absolute;
    top: -2.1rem;
    left: 2.0rem;
}

.description_cont .item_tags .tags_body {
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 700;
    transform: translateY(0.6rem);
    display: block;
}

.description_cont .cont_wrap {
    padding: 0 2.0rem;
}

/*시험결과*/
.result_top {
    padding: 2.0rem;
    background: #fff;
    position: sticky;
    top: 5.6rem;
    border-bottom: 1px solid var(--border);
}

.result_table img {
    display: block;
    margin: 0 auto;
}


/*동영상강의*/
.video_list li {
    margin-bottom: 1.0rem;
}

.video_list li:last-child {
    margin-bottom: 0rem;
}

.video_list .item {
    background: #fff;
    border-radius: 1.2rem;
    display: flex;
    padding: 1.5rem 2.0rem;
    align-items: center;
}

.video_list .item .thum {
    width: 10rem;
    position: relative;
    border-radius: 1.0rem;
}

.video_list .item .thum .youtube_icon {
    width: auto;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

/*오디오강의*/
.audio_list li {
    margin-bottom: 1.0rem;
}

.audio_list li:last-child {
    margin-bottom: 0rem;
}

.audio_list .item {
    background: #fff;
    border-radius: 1.2rem;
    display: flex;
    padding: 1.2rem 2.0rem;
    align-items: center;
}


/*오디오플레이컨트롤*/
.play_box .time {
    display: flex;
    justify-content: space-between;
    font-size: 1.4rem;
    font-weight: 600;
}

.play_box .time .full_time {
    color: var(--gray);
}

.play_bar {
    width: 100%;
    height: 0.6rem;
    background: var(--gray-100);
    border-radius: 2.0rem;
    position: relative;
}

.play_bar .play_ing {
    height: 0.6rem;
    background: var(--primary);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 2.0rem;
}

.play_bar .play_ing:after {
    content: '';
    display: block;
    width: 2.0rem;
    height: 2.0rem;
    border-radius: 50%;
    border: 1px solid var(--border-200);
    box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.06);
    position: absolute;
    right: 0;
    top: -0.7rem;
    background: #fff;
    transform: translateX(50%);
}

.control_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.4rem;
}

.control_btn button {
    width: 5.2rem;
}

.control_btn .control_play {
    border: 1px solid var(--border);
    border-radius: 50%;
}


/*아코디언 베이직*/
/* 초기 상태에서는 화살표 아래 아이콘을 보여줌 */
.accordion_basic li {}

.accordion_basic li:last-child {}

.accordion_basic .hd_btn {
    padding: 1.6rem 2.0rem;
    height: auto;
    width: 100%;
    text-align: left;
}

.accordion_basic .content {
    margin: 0 2.0rem;
    background: var(--light);
    padding: 2.0rem;
    border-radius: 1.2rem;
}

.accordion_basic .btn[aria-expanded="false"] img,
.accordion_box .btn[aria-expanded="false"] img {
    transform: rotate(0deg);
}

.accordion_basic .btn[aria-expanded="true"] img,
.accordion_box .btn[aria-expanded="true"] img {
    transform: rotate(180deg);
}


/*푸터*/
.ft {
    padding: 3.0rem 0 6rem;
}

.ft .fnb a {
    display: inline-block;
    color: var(--gray-500);
}

.ft .ft_info {
    gap: 0.8rem;
    row-gap: 0.2rem;
    display: flex;
    flex-wrap: wrap;
}

.ft .ft_info div {
    word-break: keep-all;
    width: 100%;
}







/* 초기 상태에서는 화살표 아래 아이콘을 보여줌 */
.collapse_ex .btn[aria-expanded="false"] img {
    transform: rotate(0deg);
}

/* 펼쳐진 상태에서는 화살표 위 아이콘을 보여줌 */
.collapse_ex .btn[aria-expanded="true"] img {
    transform: rotate(180deg);
}




/*반응형 max 1200 xl*/
@media (max-width: 1199.98px) {}

/*반응형 max 992px lg*/
@media (max-width: 991.98px) {}


/*반응형 max 767px md*/
@media (max-width: 767.98px) {

    .m_menu_wr {
        width: 100%;
        left: 50%;
        transform: translate(-50%);
        max-width: var(--body_width);
    }

    .menu_bg {
        width: 100%;
        left: 50%;
    }

    .menu_on .m_nav {
        max-width: 80%;
    }

}

/*반응형 max 576px sm*/
@media (max-width: 575.98px) {

    .mobile_wr {
        border-left: 0;
        border-right: 0;
    }

    .go_top {
        right: 1.0rem;
        transform: translateX(0);
    }


}

/*반응형 max 360px*/
@media (max-width: 360px) {
    html {
        font-size: 9.4px;
    }

}