/* S:reset */
img {
    max-width: 100%;
}

button, input {
    background: inherit;
    border:none;
    -webkit-box-shadow:none;
    box-shadow:none;
    border-radius:0;
    padding:0;
    overflow:visible;
    cursor:pointer;
}
/* E:reset */
:root {
    --white-primary: #fff;
    --black-primary: #000;
    --red-primary: #E1414D;
    --yellow-primary-100: #FCC800;
    --btn-gray-100: #DDDDDD;
    --btn-gray-200: #A0A0A0;
    --font-yellow: #FCC802;
    --font-red: #E52E33;
    --font-black: #1B1B1B;
    --border-radius-100: 4px;
    --border-radius-200: 8px;
    --border-radius-300: 16px;
}

html {
    font-size: 20px;
}

.container.md {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
}

.w_50 {
    width: 50% !important;
}

.mt_5 {
    margin-top: 0.5rem !important;
}

.mt_1r {
    margin-top: 1rem !important;
}

.bg_white {
    background: var(--white-primary) !important;
}

.bg_gray_100 {
    background: #F9F9F9 !important;
}

.font_yellow {
    color: var(--font-yellow) !important;
    font-size: inherit;
}

.font_normal {
    font-style: normal !important;
}

.font_400 { font-weight: 400 !important; }
.font_600 { font-weight: 600 !important; }
.font_700 { font-weight: 700 !important; }
.font_800 { font-weight: 800 !important; }

.p_header {
    padding-top: 13vh;
}

.max_w_100 {
    max-width: 100vw !important;
}

.btn_wrapper {
    text-align: center;
}

.btn_rounded {
    display: inline-block;
    padding: 0.8em 0.5em;
    border-radius: 10rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.btn_rounded.square {
    border-radius: var(--border-radius-200);
}

.btn_rounded.yellow {
    background: var(--yellow-primary-100);
    color: var(--white-primary);
}

.btn_rounded.red {
    background: var(--red-primary);
    color: var(--white-primary);
}

.btn_rounded.gray_200 {
    background: var(--btn-gray-200);
    color: var(--white-primary);
}

.btn_rounded.gray_100 {
    background: var(--btn-gray-100);
    color: var(--white-primary);
}

.btn_rounded.lg {
    font-size: 1.4rem;
    width: 100%;
    text-align: center;
}

.btn_rounded.font_lg {
    font-size: 1.4rem;
    padding: 0.8em 2em;
    margin: 0 auto;
}

.btn_rounded.md {
    font-size: 1.1rem;
    max-width: 50%;
    font-weight: 400;
}

.btn_rounded.form_md {
    margin-left: 0.5em;
}

.btn_wrapper.signup {
    padding: 10vh 0 0;
}

.btn_wrapper.signup_complete {
    padding: 5vh 0;
}

.btn_wrapper.login {
    padding: 1em 0 8vh;
}

.flex_block {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.flex_block.space_between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex_block.item_center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex_block.gap_5 {
    gap: 0.5rem;
}

/* S:form css */
.form_block {
    margin: 2em 0;
}

.form_box {
    margin-bottom: 1rem;
}

.form_title {
    border-bottom: 2px solid var(--black-primary);
    margin-bottom: 1rem;
    padding: 0.5em 0;
}

.form_title .title_txt {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -1px;
}

.form_title .title_txt::before {
    content: '';
    display: inline-block;
    width: 1.2rem;
    height: 1.2rem;
    background-image: url(/images/home/auth/arrow_down_yellow.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 0.3em;
    position: relative;
    top: 0.4rem;
}

.input_rounded {
    display: inline-block;
    width: 100% !important;
    height: auto !important;
    font-size: 1.1rem !important;
    padding: 1em 0.8em !important;
    border-radius: var(--border-radius-200) !important;
    border: 2px solid #E2E2E2;
    line-height: 1 !important;
}

.input_rounded:-moz-read-only {
    background-color: #EBEBEB !important;
}

.input_rounded.disabled,
.input_rounded:read-only,
.input_rounded:disabled {
    background-color: #EBEBEB !important;
}

.input_rounded::-webkit-input-placeholder {
    font-size: inherit !important;
    color: #AAAAAA;
}

.input_rounded::-moz-placeholder {
    font-size: inherit !important;
    color: #AAAAAA;
}

.input_rounded:-ms-input-placeholder {
    font-size: inherit !important;
    color: #AAAAAA;
}

.input_rounded::-ms-input-placeholder {
    font-size: inherit !important;
    color: #AAAAAA;
}

.input_rounded::placeholder {
    font-size: inherit !important;
    color: #AAAAAA;
}

.input_rounded:focus {
    outline: none;
    border: 2px solid #DDDDDD !important;
}

.input_rounded.sm {
    font-size: 0.9rem !important;
    padding: 0.45em !important;
}

.ck_circle,
.ck_circle_secondary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.ck_circle label {
    font-size: 1rem;
    color: #434343;
    padding: 0 !important;
    cursor: pointer;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: none !important;
}

.ck_circle label::before {
    content: '';
    display: inline-block;
    width: 1.4em;
    height: 1.4em;
    background: url(/images/home/auth/check_false.png) center center no-repeat;
    background-size: contain;
    margin-right: 0.3em;
}

.ck_circle input:checked + label::before {
    background: url(/images/home/auth/check_red.png) center center no-repeat;
    background-size: contain;
}

.ck_circle_secondary label {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    font-size: 1.1rem !important;
    background: none !important;
    width: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.ck_circle input,
.ck_circle_secondary input {
    position: absolute;
    visibility: hidden;
}

.ck_circle_secondary label::before {
    content: '';
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-color: var(--white-primary);
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    margin-right: 0.375em;
    -webkit-transition: 0.25s ease;
    -o-transition: 0.25s ease;
    transition: 0.25s ease;
    -webkit-box-shadow: inset 0 0 0 0.125em #DADADA;
    box-shadow: inset 0 0 0 0.125em #DADADA;
}

.ck_circle_secondary input:checked + label::before {
    -webkit-box-shadow: inset 0 0 0 0.3375em var(--red-primary);
    box-shadow: inset 0 0 0 0.3375em var(--red-primary);
}

.ck_square label {
    background: none !important;
    cursor: pointer;
    padding: 0 !important;
    position: relative;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.1rem !important;
    color: #AAAAAA !important;
}

.ck_square label::before {
    content: '';
    display: inline-block;
    margin-right: 0.5em;
    vertical-align: text-top;
    width: 0.9em;
    height: 0.9em;
    background: var(--white-primary);
    border: 2px solid #DADADA;
    -webkit-transition: border-color 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55), background-color 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    -o-transition: border-color 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55), background-color 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transition: border-color 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55), background-color 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.ck_square input:checked + label::before {
    background-color: var(--yellow-primary-100);
    border-color: var(--yellow-primary-100);
}

.ck_square input:checked + label::after {
    content: '';
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    left: 0.35em;
    top: 0.15em;
    display: table;
    width: 0.3em;
    height: 0.48em;
    border: 2px solid #fff;
    border-top: 0;
    border-left: 0;
    -webkit-animation-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);
    animation-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-name: amCheckboxOut;
    animation-name: amCheckboxOut;
}

@-webkit-keyframes amCheckboxOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes amCheckboxOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.form_warning_txt {
    font-size: 0.95rem;
    color: var(--font-red);
    margin-left: 1.3rem;
    margin-top: 5px;
}
/* E:form css */
#subBanner.signup { height: 0; display: none; }

.signup_wrapper {
    padding-bottom: 10em;
    max-width: 100vw;
}

.logo_box {
    text-align: center;
    max-width: 55vw;
    margin: 0 auto;
}

.logo_box.logo_v2,
.logo_box.signup_form {
    width: 140px;
    max-width: 25%;
    margin-bottom: 2rem;
}

.signup_title {
    margin-top: 0.3em;
    font-size: 2.4rem;
    font-weight: 700 !important;
    color: var(--font-black);
    text-align: center;
    letter-spacing: -1px;
    line-height: 1.3;
}

.signup_title.md {
    font-size: 2.2rem;
}

.division_title {
    position: relative;
    text-align: center;
    min-height: 1.1rem;
    box-sizing: border-box;
}

.division_title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background: #E4E4E4;
}

.division_title .txt {
    position: relative;
    top: 0;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #A8A8A8;
    letter-spacing: -0.5px;
    background: var(--white-primary);
    padding: 0 8px;
    box-sizing: border-box;
}

.sns_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 2rem 0;
}

.sns_block .sns_link {
    display: inline-block;
    width: 4.5rem;
}
.sns_block .sns_link img{
    width: 64px;
}

.signup_wrapper .login_block {
    padding: 2rem 0;
}

.login_txt {
    font-size: 1.3rem;
    color: #585858;
    text-align: center;
    font-weight: 300;
}

.login_txt a {
    font-weight: 500;
}

.email_info_box {
    margin: 1em 0;
    padding: 0.5em 0;
    border-radius: var(--border-radius-200);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.email_info .title {
    font-size: 1.2rem;
    text-align: center;
}

.email_info .email {
    font-size: 1.2rem;
    text-align: center;
    margin-top: 0.2em;
    margin-left: 0;
}

.btn_wrapper.signup {
    margin-top: 7vh;
}

.terms_wrapper {
    margin-top: 5vh;
}

.form_block .terms_block {
    border: 1px solid #e6e6e6;
    border-radius: 2px;
    padding: 1rem;
    margin-top: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.8em;
}

.form_block .terms_link {
    font-size: 0.9rem;
    color: #999;
    text-decoration: underline;
}

.form_block .ck_square {
    margin-top: 1.1rem;
}

.form_block .ck_square .input_rounded {
    margin-left: 0.5em;
}

.intro_title {
    font-size: 2rem;
    text-align: center;
    margin-top: 8vh;
}

.intro_desc {
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.6;
    margin: 1.5vh 0 3.5vh;
}

.auto_login_block {
    padding: 1rem 0.2rem;
}

.auto_login_block .ck_circle {
    min-width: 9rem;
}

.division_link_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1rem 0;
}

.division_link_block .division_link {
    position: relative;
    font-size: 1.1rem;
    color: #646464;
    padding: 0 1.5rem;
}

.division_link_block .division_link::after {
    content: '|';
    position: absolute;
    top: -1px;
    right: 0;
    color: #E1E1E1;
}

.division_link_block .division_link:last-child::after {
    content: '';
}

/*  아이디/비밀번호 찾기 */
.tab_link_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.tab_link_block .tab_link {
    width: 50%;
    font-size: 1.4rem;
    color: #A4A4A4;
    font-weight: 600;
    text-align: center;
    padding: 0.7em 0;
    border-bottom: 1px solid #D0D0D0;
}

.tab_link_block .tab_link a {
    color: inherit;
}

.tab_link_block .tab_link.active {
    color: #232223;
    border-bottom: 2px solid var(--yellow-primary-100);
}

.find_wrapper .confirm_wrapper,
.find_wrapper .find_info_wrapper {
    width: 90%;
    margin: 0 auto;
    padding: 3em 0;
}

.confirm_wrapper .desc_txt {
    font-size: 1rem;
    text-align: center;
    line-height: 1.5;
    margin-top: 1em;
}

.find_info_wrapper .title_block {
    margin-bottom: 2em;
}

.find_info_wrapper .title_block .title {
    font-size: 1.8rem;
    text-align: center;
}

.find_info_wrapper .title_block .sub_desc {
    font-size: 1.3rem;
    color: #A4A4A4;
    text-align: center;
    font-weight: 400;
}

.login_form_block {
    margin-top: 3em;
}

.pw_form_block {
    margin-top: 6vh;
}

.find_info_wrapper .find_info_box {
    margin: 1em 0;
    padding: 0.5em 2em;
    border-radius: var(--border-radius-300);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.find_info_wrapper .btn_wrapper {
    margin-top: 2.5em;
}

.find_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.1rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.find_info .title::after {
    content: ':';
    padding: 0 0.3em;
}

.find_info .desc {
    padding: 0;
    margin: 0;
    font-weight: 600;
}

/*  아이디/비밀번호 찾기 */

/* toastr custom */
#toast-container.toast-top-center > div, #toast-container.toast-bottom-center > div {
    width: 90%;
    max-width: 650px;
    margin-top: 3rem;
}

.toast-message {
    font-size: 1rem !important;
}
/* toastr custom */

/* pc 버전 only (1200px 이상) */
@media screen and (min-width: 1200px) {
    .btn_rounded.md {
        min-width: 200px;
    }

    .btn_rounded.form_md {
        min-width: 150px;
    }
}

@media screen and (min-width: 650px) {
    .find_wrapper {
        width: 100%;
        max-width: 650px;
        background-color: var(--white-primary);
        margin: 0 auto;
        border: 1px solid #DDDDDD;
        border-radius: var(--border-radius-300);
        padding-top: 0.2em;
    }

    .find_wrapper .confirm_wrapper {
        min-height: 25vh;
    }

    .login_form_block,
    .btn_wrapper.login {
        max-width: 24.1rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

/* 반응형 max-width 650px (태블릿) */
@media  screen and (max-width: 650px) {
    html {
        font-size: 16px;
    }

    .container.md {
        max-width: 90%;
    }

    .ck_square input:checked + label::after {
        top: 0.3em;
    }

    .find_wrapper .confirm_wrapper {
        min-height: 40vh;
    }
}

@media  screen and (max-width: 640px) {
    /*  S:기존 css overwrite  */
    #container.signup_wrapper {
        padding-top: 100px !important;
    }

    #allwrap {
        padding-top: 0 !important;
    }

    .m_bg_white {
        background-color: var(--white-primary);
    }

    .input_rounded {
        width: 100% !important;
    }

    .btn_rounded.form_md {
        max-width: 20vw;
        padding: 0.8em 0.2em;
    }

    input.input_rounded[type='text'], input.input_rounded[type='password'] {
        width: 100% !important;
    }
    /*  E:기존 css overwrite  */
}

/* 반응형 max-width 450px (모바일) */
@media  screen and (max-width: 450px) {
    html {
        font-size: 14px;
    }

    .btn_rounded.md {
        min-width: 50%;
    }

    .signup_title.md {
        font-size: 1.8rem;
    }

    .sns_block {
        gap: 1.5rem;
    }

    .sns_block .sns_link {
        width: 3.5rem;
    }
}
/* 반응형 max-width 375px (모바일: iphone SE) */
@media  screen and (max-width: 375px) {
    html {
        font-size: 12px;
    }
}
