@charset "utf-8";
:root {
    --max-width: calc(100% - 250px);
    /*
    --max-width: 1460px;
    --px40: 40px;
    --color-accent: #00983D;
    --color-sub1: #319cff;
    --color_darkBlack: #45496A;
    --color_gray1: #9e9e9e;
    --color_gray2: #d9d9d9;
    */
    --ff-default: 'Poppins', 'Noto Sans KR', system-ui, -apple-system, helvetica, sans-serif;
}

/* Common */
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-repeat: no-repeat !important;
}

html {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    min-width: 320px;
    min-height: 100%;
    background-color: #fff;
    line-height: 1;
    font-family: var(--ff-default);
    font-size: 18px;
    font-weight: 500;
    word-break: keep-all;
    -webkit-font-smoothing: antialiased;
}

html,
body {
    width: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a,
body,
button,
blockquote,
button,
caption,
dd,
dialog,
div,
details,
dl,
dt,
fieldset,
figure,
form,
h1,
h2,
h3,
h4,
h5,
h6,
html,
img,
input,
legend,
li,
ol,
p,
pre,
select,
summary,
textarea,
ul,
video {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: inherit;
}

address,
em {
    font-style: normal;
}

em {
    text-decoration: underline;
}

article,
aside,
dialog,
footer,
header,
section,
nav,
figure,
menu {
    display: block;
}

audio,
button,
canvas,
embed,
iframe,
img,
input,
object,
optgroup,
select,
svg,
textarea,
video {
    vertical-align: middle;
}

b,
strong {
    font-weight: 700;
}

button,
[role='button'] {
    cursor: pointer;
}

button,
select {
    text-transform: none;
}

button,
input,
select,
textarea {
    border-radius: inherit;
    color: inherit;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    line-height: inherit;
}

input:focus {
    outline: none;
}

button,
[type='button'],
[type='reset'],
[type='submit'],
::-webkit-file-upload-button {
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none;
}

dl,
li,
menu,
ol,
ul {
    list-style: none;
}

fieldset,
img {
    border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
button,
input,
optgroup,
select,
textarea {
    font-size: inherit;
    font-weight: inherit;
}

hr {
    height: 0;
    border-top-width: 1px;
    color: inherit;
}
/*
img,
video {
    max-width: 100%;
}
*/
input::placeholder,
textarea::placeholder {
    line-height: normal;
}

progress {
    vertical-align: baseline;
}

small {
    font-size: 80%;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    text-indent: 0;
}

textarea {
    resize: vertical;
}

video::-internal-media-controls-download-button {
    display: none;
}

:disabled {
    cursor: default;
}

:-moz-focusring {
    outline: auto;
}

::-webkit-search-decoration {
    -webkit-appearance: none;
}

[type='search'] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

.button,
.input,
.select,
.textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: 0;
    outline: 0;
    text-decoration: none;
    cursor: pointer;
}

/* Layout */
.x-cent {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.y-cent {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.xy-cent {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.hide {
    position: absolute;
    left: -9999px;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
    border: 0;
    background-color: transparent;
    line-height: 0;
    font-size: 0;
    text-indent: -9999px;
    text-shadow: none;
    color: transparent;
}

[hidden] {
    display: none;
}

.flx {
    display: flex;
}

.flxbox {
    flex-wrap: wrap;
}

.flxbt {
    justify-content: space-between;
}

.flxbox>.col {
    flex: 0 0 auto;
}

.iflxcent {
    display: inline-flex;
}
.flhe {/* 새로 정렬 */
    flex-direction: column;
}
.flLe {/* 좌측 정렬 */
    flex-direction: row;
}
.flRi {/* 우측 정렬 */
    flex-direction: row-reverse;
}
.flxcent {/* 상하-좌우:중앙 */
    align-items: center;
    justify-content: center;
}
.fl-H {/* 상하- 중앙정렬 */
    align-items: center;
}
.fl-W {/* 좌우- 중앙정렬 */
    justify-content: center;
}

/* Spacing */
.sp_20 {
    padding: 10px 0;
}

.sp_30 {
    padding: 15px 0;
}
.sp_40 {
    padding: 20px 0;
}
.sp_50 {
    padding: 50px 0;
}
.sp_60 {
    padding: 30px 0;
}
.sp_80 {
    padding: 40px 0;
}
.sp_100 {
    padding: 50px 0;
}

.sp_120 {
    padding: 60px 0;
}


/* Typography */
.tx-left {
    text-align: left;
}

.tx-cent {
    text-align: center;
}

.tx-right {
    text-align: right;
}

.tx-through {
    text-decoration: line-through;
}

.undline {
    text-decoration: underline;
}

.nowrap {
    white-space: nowrap;
}


/* 반응형 */
@media screen and (max-width: 992px) {
    .fd-column--992 {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .fd-column--768 {
        flex-direction: column;
    }
}
@media screen and (max-width: 576px) {
    .fd-column--576 {
        flex-direction: column;
    }
}


/* 버튼 정의 */
.bt {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left:25px;
    padding-right:25px;
    height:60px;
    border-radius:60px;
}
.bt2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left:25px;
    padding-right:25px;    
    height:45px;
    border-radius:30px;
}
.btn-s1 {
    color:#000;
    background: #fff;
    border:2px solid #000;
}
.btn-s2 {
    color:#fff;
    background: #63D75B;
    border:2px solid #63D75B;
}
.btn-s3 {
    color:#fff;
    background: #000;
    border:2px solid #000;
}
/* 인풋 정의 */
.select {
    background: url(../images/arrow_down_thick_gray.svg) no-repeat right center;
}

.input[type=checkbox],
.input[type=radio] {
    width: 22.5px;
    min-width: 22.5px;
    height: 22.5px;
    background: url(../images/chk_default.svg) no-repeat center/contain;
}

.input[type=checkbox]:checked,
.input[type=radio]:checked {
    background-image: url(../images/chk_checked.svg);
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #fff inset;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s;
}

.input[type=file]::-webkit-file-upload-button,
.input[type=file]::file-selector-button {
    width: 0;
    visibility: hidden;
}

.input[type=text] {
    min-width: 230px;
    padding: 0.5em 0;
    text-indent: 10px;
}

.input[type=text]:read-only {
    cursor: default;
}

.input[type=number] {
    -moz-appearance: textfield;
}

.input[type=number]::-webkit-outer-spin-button,
.input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* 모달 */
.blocker {
    z-index: 91;
}

.modal {
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.modal a.close-modal {
    position: static;
    display: flex;
    width: 100%;
    height: 59px;
    border-radius: 0;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 0;
    background: var(--color-accent2);
    text-indent: 0;
    color: #fff;
}

.modal a.close-modal::before {
    content: "닫기";
    font-size: 1.4286rem;
}

.modal .half-btns a.close-modal,
.modal .half-btns .btn-basic {
    width: 50%;
}

.modal .half-btns a.close-modal {
    background: #6f6f6f;
}

.modal .half-btns .btn-basic {
    border-radius: 0;
}

#modalVerify,
#modalVerify_tail {
    padding: var(--px50) var(--px40);
}

#modalVerify button[type=submit].btn-basic,
#modalVerify_tail button[type=submit].btn-basic {
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 0;
}

#modalVerify .form--verify,
#modalVerify_tail .form--verify {
    width: unset;
}

#modalEmpty .tx-cent {
    padding: var(--px60) 1em;
}

#modalEmail .tx-cent,
#modalApplied .tx-cent,
#modalCreate .tx-cent,
#modalDelete .tx-cent,
#modalCreateLimitError .tx-cent,
#modalCreateDateError .tx-cent {
    padding: var(--px50) var(--px40);
}

@keyframes fadeUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 0.1;
    }

    50% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
        opacity: 0.5;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 0.1;
    }

    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
        opacity: 0.5;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

/* Transition */
.tr02 {
    -webkit-transition: all 200ms;
    transition: all 200ms;
}

.tr04 {
    -webkit-transition: all 400ms;
    transition: all 400ms;
}

.ani_35 div,
.ani_35 input,
.ani_35 li,
.ani_35 main,
.ani_35 ol,
.ani_35 section,
.ani_35 ul,
.ani_35 a {
    transition: all 0.35s;
    -moz-transition: all 0.35s;
    -webkit-transition: all 0.35s;
    -o-transition: all 0.35s;
}
.ani_55 div,
.ani_55 input,
.ani_55 li,
.ani_55 main,
.ani_55 ol,
.ani_55 section,
.ani_55 ul,
.ani_55 a {
    transition: all 0.55s;
    -moz-transition: all 0.55s;
    -webkit-transition: all 0.55s;
    -o-transition: all 0.55s;
}

@media screen and (min-width: 2560px) {
    :root {
        /* --max-width: 1800px; */
    }
}
@media screen and (max-width: 992px) {
    :root {
        /* --px40: 20px; */
    }
}
@media (max-width: 1230px) {
    :root {
        --max-width: calc(100% - 100px);
    }
}
@media (max-width: 1000px) {
    .sp_80 {padding: 20px 0;}
    .sp_100 {padding: 35px 0;}
}
@media (max-width: 990px) {
    html, body {font-size: 17px;}
}
@media (max-width: 720px) {
    html, body {font-size: 16px;}
}
@media (max-width: 620px) {
    :root {
        --max-width: calc(100% - 50px);
    }
    html, body {font-size: 15px;}
}
@media (max-width: 380px) {
    :root {
        --max-width: calc(100% - 10px);
    }
    html, body {font-size: 14px;}

    .sp_20 {padding: 5px 0;}    
    .sp_30 {padding: 8px 0;}
    .sp_40 {padding: 10px 0;}
    .sp_50 {padding: 15px 0;}
    .sp_60 {padding: 15px 0;}
    .sp_80 {padding: 15px 0;}
    .sp_100 {padding: 25px 0;}
    .sp_120 {padding: 50px 0;}
}