@charset "utf-8";

:root {
    --common-font-size: 14px;
    --common-font-color: #4d4d4d;
    --background-color: #ededef;
    --content-padding: 20px;
    --input-text-size: 14px;
    --input-text-size-small: 12px;
    --label-text-size: 20px;
    --button-text-size: 20px;
    --checkbox-text-size: 18px;
    --input-border-color: #D9D9D9;
    --input-text-color: #212121;
    --input-active-color: #3d5afe;
    --input-inactive-color: #CBCBCB;
}
/*html, body, h1, h2, h3, h4, h5, h6, form, fieldset, img, p { margin: 0; padding: 0; border: 0; }*/
h1, h2, h3, h4, h5, h6 { font-size: var(--common-font-size); font-weight: revert; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
/*ul, dl, dt, dd li { margin: 0; padding: 0; list-style: none; }*/
a { text-decoration: none; }
/**, :after, :before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }*/
html,body,th,td,input,select,textarea,button { color: #000;font-size: var(--common-font-size);line-height: 1;}
/*html, body { position: relative; width: 100%; overflow-x: hidden; }*/
body { margin: 0; padding: 0; background-color: #fff;font-family: 'Noto Sans KR', sans-serif;
    /*font-family: -apple-system,'SF Pro Display','Apple SD Gothic Neo','Malgun Gothic',sans-serif;*/
}
footer {width: 100%; padding: 2px; text-align: center; margin: 0 auto;}
footer .copyright {font-size: 10px;}
.centered { position: fixed; top: calc( 50% - 25px ); left: 50%; transform: translate(-50%, -50%); text-align: center; }
.text-center {text-align: center;}
.mob-wrap {
    max-width: 700px;
    min-width: 340px;
    overflow-x: hidden;
    margin: 0 auto;
    position: relative;
    /*height: 100%;*/
    /*height: 100vh;*/
}
.mob-pad {padding: 0 20px}
#input-call-tm {width: 100%;}

.form-wrap {padding: var(--content-padding) 0 0;}
.form-title {font-weight: 700; font-size: 20px; line-height: 1.5;}

.form-wrap label {display: inline-block;font-weight: 700;font-size:var(--label-text-size);width: 135px;vertical-align: middle;}
input::placeholder, textarea::placeholder {color: var(--input-inactive-color);font-weight: 500;font-size: 14px;line-height: 26px;}
/*
.input-text, .input-textarea {width: 100%;height: 45px;font-size: var(--input-text-size);padding:15px;border: solid 1px var(--input-border-color);outline: 0;background: #fff;border-radius: 6px;}
.input-text.disabled {color: #333333; background: #D9D9D9;}
.input-textarea:focus {border-color: var(--input-active-color);}
.input-text.inline {width:249px;}
.input-text:focus { border-color: var(--input-active-color);}
.input-textarea {min-height:100px;}
*/
.input-text, .input-textarea {width: 100%;font-size: var(--input-text-size);padding:7px;border: solid 1px var(--input-inactive-color);outline: 0;}
.input-textarea:focus {border-color: var(--input-active-color);}
.input-text {box-sizing: border-box; padding: 7px 0; margin: 0; font: inherit; background: transparent; outline: none; line-height: 1; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; background-image: linear-gradient(to top, transparent 1px, var(--input-inactive-color) 1px); background-size: 100% 2px; background-repeat: no-repeat; background-position: center bottom; background-color: transparent; border: none; border-radius: 0; vertical-align: middle; -webkit-transform: translate3d(0, 0, 0); }
.input-text:focus { background-image: linear-gradient(var(--input-active-color), var(--input-active-color)), linear-gradient(to top, transparent 1px, #afafaf 1px); background-image: linear-gradient(var(--input-active-color), var(--input-active-color)), linear-gradient(to top, transparent 1px, var(--input-inactive-color) 1px); -webkit-animation: material-text-input-animate 0.3s forwards; animation: material-text-input-animate 0.3s forwards; }
@-webkit-keyframes material-text-input-animate { 0% { background-size: 0% 1px, 100% 1px; } 100% { background-size: 100% 1px, 100% 1px; } }
@keyframes material-text-input-animate { 0% { background-size: 0% 1px, 100% 1px; } 100% { background-size: 100% 1px, 100% 1px; } }
.input-textarea {border-radius: 5px;min-height:150px;}

.form-wrap-button {padding: var(--content-padding) 2px 0;display: flex; justify-content: center;}
.form-button {color: #fff; font-size: var(--button-text-size); width: 100%; height: 50px; background: linear-gradient(126deg, #274fe4 15.0%, #0019b5 90%); border-radius: 37px; font-weight: 700; border: 0;}
button { cursor: pointer; }
button:disabled, button[disabled],
.form-button.disabled {color: #fff; background: #CACACA;border: 1px solid #CACACA;cursor: default;}
.form-reverse-button {color: #237040; font-size: var(--input-text-size); width: 200px; height: 50px; background: transparent; border-radius: 37px; font-weight: 700; border: 1px solid #237040;}

.form-group {background-color: #fff; border-radius: 10px; padding: var(--content-padding); margin: 0 auto 10px;border: solid 1px var(--input-border-color);}
.form-group .form-wrap {padding: 10px 10px 0;}
.form-group .form-wrap > label {display: inline-block;font-weight: 600;font-size:16px;}

.radio-buttons-wrapper {
    clear: both;
    display: inline-block;
}
.radio-button {
    position: absolute;
    left: -9999em;
    top: -9999em;
}
.radio-button + label {
    float: left;
    padding: .5em 1em;
    cursor: pointer;
    border: 1px solid var(--input-border-color);
    margin-right: -1px;
    color: #000;
    background-color: #fff;
}
.radio-button:checked + label {
    color: #fff;
    background-color: #001d7c;
}
.radio-buttons-wrapper > label {
    width: 80px;
    text-align: center;
    font-size: var(--input-text-size);
}
.section-content {
    padding: 10px 0;
}
.section-top {
    background-color: #00246b; /*var(--background-color);*/
    padding: var(--content-padding);
    padding-bottom: calc(var(--content-padding) - 9px);
    text-align: center;
}
.section-top .title {
    display: inline-block;
    font-size: 36px;
    font-weight: 700;
    vertical-align: middle;
    color: #fff;
}
.section-top .back-button {
    color: #fff;
    font-size: 36px;
    position: absolute;
    left: 15px;
    top: 15px;
    /*padding: 0 7px 10px 0;*/
    /*vertical-align: middle;*/
}
.section-home {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-content: center;
    text-align: center;
    height: calc(100vh - 20px);
    background-color: var(--background-color);
}
.section-home .section-top {
    color: #00246b;
    background-color: var(--background-color);
}
.section-home .section-top .title {
    color: #00246b;
}
.section-home .section-content .form-wrap-button {
    max-width: 500px;
    margin: auto;
}

.section-register .form-wrap {display: flex; align-items: center;}
.section-offer .form-wrap {display: flex; align-items: center;}
.section-offer .form-wrap-button, .section-register .form-wrap-button {padding: var(--content-padding) 10px;}
.section-offer label, .section-register label {flex: 1;}
.section-offer .input-text, .section-register .input-text {flex: 3;}

.section-offer label {flex: 1;}
.section-offer .input-text {flex: 3;}
.section-offer .mobile-wrap {flex: 3; display: flex;}
.section-offer .dropdown-wrap {flex: 1;}

.mobile-wrap .dropdown-wrap {flex: none; width: 95px;margin-right: 15px;white-space: nowrap;}
.mobile-wrap .input-text {flex: 1;}

.k-input, .k-widget .k-input {
    font-size: var(--input-text-size);
    border: 0;
    padding: 4px 8px;
}
.k-combobox, .k-dropdown {display: block;}
span.k-dropdown, span.k-combobox {width: 100%;border-color: var(--input-border-color);}
.k-dropdown-wrap .k-clear-value, .k-dropdown-wrap .k-select, .k-popup .k-item {
    font-size: var(--input-text-size); padding: 4px 8px;
}
.k-dropdown-wrap .k-state-hover {background-color: unset; background-image: unset;}
/*.k-popup {box-shadow: none;}*/
.k-state-focused { box-shadow: 0 0 1px 1px #d7dae0;}
.k-list-scroller {overflow-y: auto;}

/* MODAL */
.modal-wrapper.is-show {
    opacity: 1;
    pointer-events: visible !important;
}
.modal-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    pointer-events: none !important;
    z-index: 99;
    opacity: 0;
    transition: all 0.3s 0.3s;
}
.modal-wrapper.is-show .modal-light-box {
    opacity: 1;
    pointer-events: visible;
}
.modal-light-box {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s;
    transition-delay: 0.2s;
}

.modal-window.is-show {
    opacity: 1;
    pointer-events: visible;
    transition-delay: 0.3s;
}
.modal-window {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    margin: 0;
    opacity: 0;
    transition: all 0.3s;
    z-index: 120;
    pointer-events: none;
    max-width: 600px;
    background: #F4F5F7;
    border: 1px solid #E7DEDE;
    border-radius: 20px;
    padding: 32px 30px 20px;
}
.modal-window .modal-box {
    padding: 0;
    background-color: transparent;
    border: 0;
}
.modal-box .modal-head {
    text-align: center;
}
.modal-box .form-wrap {
    white-space: nowrap;
}
.modal-box .modal-title {
    font-weight: 700;
    font-size: 32px;
    color: #000000;
}
.modal-box .modal-description {
    font-size: 18px;
    line-height: 28px;
}
.modal-box .modal-body {
    margin: 0 auto;
}
.close {
    position: absolute;
    right: 10px;
    top: 20px;
    font-size: 45px;
    font-weight: 600;
    display: inline-block;
    transform: rotate(45deg);
    color: #adadad;
    line-height: 0;
}
.k-textbox-container { padding-top: 0; }
.k-textbox-container .k-label { display: none; }
.k-radio-list.medium .k-radio-item { margin-right: 14px; }
.k-radio-list.small .k-radio-item { margin-right: 7px; }
.k-radio-label { line-height: 0; }
.k-checkbox-label { line-height: 0; align-items: center; }
.k-overlay { z-index: 10003!important; }
.k-grid.k-state-disabled { color: #515967; }
.k-grid-header th.k-header { text-align: center; vertical-align: middle; }
.k-grid-norecords {
    width: 100%;
    min-height: 300px;
}
.k-popup.k-dropdowngrid-popup .k-grid-list .k-item {white-space: nowrap; overflow-x: hidden;text-align: center;background-color: #fff;}
span.k-cell {display: inline-block;}
#input-dept-cd-wrapper .k-dropdown-wrap .k-select {display: none;}
#input-dept-cd-wrapper {width:100%;}
@media (min-width: 320px) and (max-width: 520px) {
    .mob-pad {padding: 0 10px}
    .mob-wrap {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }
    .form-title {font-size: 17px;}
    .form-group {padding: 10px 10px;margin: 0 auto 5px;}
    .form-group .form-wrap {
        padding: 5px 5px 5px;
    }
    .form-group .form-wrap > label {font-size:13px;}
    .section-content {
        padding: 15px 15px;
    }
    .section-offer .form-wrap-button, .section-register .form-wrap-button {padding: 10px 10px;}
    .form-wrap label {word-break: keep-all;}
    .modal-box .modal-title {
        font-size: 22px;
    }
    .modal-box .modal-description {
        font-size: 15px;
        line-height: 1.5;
    }
    .modal-window {
        width: 80%;
        padding: 15px 15px 10px;
    }
    .form-wrap {
        padding: 10px 0 0;
    }
    .form-wrap-button {
        padding: 10px 2px 0;
    }
    .form-button {
        font-size: 17px;
        height: 40px;
    }
}