@charset "utf-8";

body.scroll-lock {
    overflow: hidden;
    height: 100vh;
}

.modal-item {
    display: table;
    table-layout: fixed;;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1200;
    pointer-events: none;
    opacity: 1;
}

.modal-item.on {
    pointer-events: all;
    opacity: 1;
}

.modal-item .dim {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .6);
    transition: all 0.3s;
    opacity: 0;
}

.modal-item.on .dim {
    opacity: 1;
}

.modal-item.on .dim.white {
    background-color: rgba(255, 255, 255, .9);
}

.modal-item .middler {
    display: table-cell;
    width: 100%;
    height: 100%;
    position: relative;
    vertical-align: middle;
    pointer-events: none;
    padding: 16px;
}

.modal-item .modal-pannel {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 40px);
    overflow: hidden;
    background-color: rgb(255, 255, 255);
    margin: 0 auto;
    position: relative;
    border-radius: 4px;
    pointer-events: none;
    transition: all .4s;
    transform: translateY(80px) translateZ(0);
    opacity: 0;
    border: 1px solid rgb(217, 219, 220);
    box-shadow: 0 8px 16px rgba(0, 0, 0, .2);
}

.modal-item.on .modal-pannel {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0) translateZ(0);
}

.modal-item .modal-pannel .modal-header {
    height: 48px;
    line-height: 48px;
    background-color: rgb(249, 249, 250);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 0 0 1px rgb(217, 219, 220);
    z-index: 210;
    padding-right: 48px;
    font-size: 0;
}

.modal-item.drawer .middler {
    vertical-align: bottom;
    pointer-events: none;
    padding: 0;
}

.modal-item.drawer .modal-pannel {
    /* height: 50%; */
    border: none;
    border-radius: 0;
}

.modal-item.drawer .modal-pannel .modal-body .modal-scroller {
    /* height: calc(var(--vh, 1vh) * 100 - 40px - 48px); */
}

.modal-item.full .modal-pannel {
    border: none;
}

.modal-item.full .modal-pannel .modal-header {
    background-color: rgb(255, 255, 255);
}

.modal-item .modal-pannel .modal-header .modal-headcopy {
    font-size: 18px;
    padding-left: 20px;
    white-space: nowrap;
}

.modal-item .modal-pannel .button-popup-close {
    background: transparent;
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
}

.modal-item.drawer .modal-pannel .button-popup-close {
    /* right: 8px;
    top: 8px;
    transform: translateY(0); */
}

.modal-item .modal-pannel .modal-action {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 24px;
    z-index: 1;
    background-color: #fff;
}

.modal-item.full .modal-pannel .modal-action {
    height: auto;
    padding: 24px;
    padding-bottom: calc(24px + constant(safe-area-inset-bottom));
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
}

.modal-item.full .modal-pannel .modal-header + .modal-action + .modal-body {
    padding-bottom: calc(10px + 10px + 40px + constant(safe-area-inset-bottom));
    padding-bottom: calc(10px + 10px + 40px + env(safe-area-inset-bottom));
}

.modal-item.full .modal-pannel .modal-action::after {
    content: "";
    display: table;
    clear: both;
}

.modal-item.full .modal-pannel .modal-action ul li {
    /* padding: 0 8px; */
}

.modal-item.full .modal-pannel .modal-action.no-boundary {
    background-color: rgb(255, 255, 255);
    box-shadow: none;
}

.modal-item .modal-pannel .modal-action ul {

}

.modal-item .modal-pannel .modal-action ul li {

}

.modal-item .modal-pannel .modal-body {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    max-height: calc(100vh - 40px);
}

.modal-item .modal-pannel .modal-body .modal-scroller {
    width: 100%;
    height: auto;
    overflow: auto;
    overflow-x: hidden;
    position: relative;
    max-height: calc(100vh - 40px);
}

.modal-item .modal-pannel .modal-header + .modal-body {
    padding-top: 48px;
}

.modal-item .modal-pannel .modal-action + .modal-body {
    padding-bottom: 60px;
}

.modal-item .modal-pannel .modal-header + .modal-action + .modal-body {
    padding-top: 48px;
    padding-bottom: 60px;
}

.modal-item .modal-pannel .modal-header + .modal-body .modal-scroller {
    max-height: calc(100vh - 40px - 48px);
}

.modal-item .modal-pannel .modal-action + .modal-body .modal-scroller {
    max-height: calc(100vh - 40px - 60px);
}

.modal-item .modal-pannel .modal-header + .modal-action + .modal-body .modal-scroller {
    max-height: calc(100vh - 40px - 108px);
}

.modal-item.full {
    display: block;
    table-layout: unset;
}

.modal-item.full .middler {
    display: block;
    padding: 0;
}

.modal-item.full .modal-pannel {
    height: 100%;
    min-height: 100%;
    border-radius: 0;
}

.modal-item.full .modal-pannel .modal-body {
    height: 100%;
    min-height: 100%;
    max-height: 100%;
}

.modal-item.full .modal-pannel .modal-header + .modal-body .modal-scroller {
    max-height: calc(100vh - 48px);
}

.modal-item.full .modal-pannel .modal-action + .modal-body .modal-scroller {
    max-height: calc(100vh - 60px);
}

.modal-item.full .modal-pannel .modal-header + .modal-action + .modal-body .modal-scroller {
    max-height: calc(100vh - 108px);
}

.modal-item.full .modal-pannel .modal-body .modal-scroller {
    /* padding-bottom: calc(36px + constant(safe-area-inset-bottom));
    padding-bottom: calc(36px + env(safe-area-inset-bottom)); */
}


body.os-ios .modal-item .modal-pannel {
    max-height: calc(var(--vh, 1vh) * 100 - 40px);
}

body.os-aos .modal-item .modal-pannel {
    /* Empty */
}

body.os-ios .modal-item .modal-pannel .modal-body {
    max-height: calc(var(--vh, 1vh) * 100 - 40px);
}

body.os-aos .modal-item .modal-pannel .modal-body {
    max-height: calc(var(--vh, 1vh) * 100 - 40px);
}

body.os-ios .modal-item .modal-pannel .modal-body .modal-scroller {
    max-height: calc(var(--vh, 1vh) * 100 - 40px);
}

body.os-aos .modal-item .modal-pannel .modal-body .modal-scroller {
    max-height: calc(var(--vh, 1vh) * 100 - 40px);
}

body.os-ios .modal-item .modal-pannel .modal-header + .modal-body .modal-scroller {
    max-height: calc(var(--vh, 1vh) * 100 - 40px - 48px);
}

body.os-aos .modal-item .modal-pannel .modal-header + .modal-body .modal-scroller {
    max-height: calc(var(--vh, 1vh) * 100 - 40px - 48px);
}

body.os-ios .modal-item .modal-pannel .modal-action + .modal-body .modal-scroller {
    max-height: calc(var(--vh, 1vh) * 100 - 40px - 60px);
}

body.os-aos .modal-item .modal-pannel .modal-action + .modal-body .modal-scroller {
    max-height: calc(var(--vh, 1vh) * 100 - 40px - 60px);
}

body.os-ios .modal-item .modal-pannel .modal-header + .modal-action + .modal-body .modal-scroller {
    max-height: calc(var(--vh, 1vh) * 100 - 40px - 108px);
}

body.os-aos .modal-item .modal-pannel .modal-header + .modal-action + .modal-body .modal-scroller {
    max-height: calc(var(--vh, 1vh) * 100 - 40px - 108px);
}

body.os-ios .modal-item.full .modal-pannel .modal-header + .modal-body .modal-scroller {
    max-height: calc(var(--vh, 1vh) * 100 - 48px);
}

body.os-aos .modal-item.full .modal-pannel .modal-header + .modal-body .modal-scroller {
    max-height: calc(var(--vh, 1vh) * 100 - 48px);
}

body.os-ios .modal-item.full .modal-pannel .modal-action + .modal-body .modal-scroller {
    max-height: calc(var(--vh, 1vh) * 100 - 60px);
}

body.os-aos .modal-item.full .modal-pannel .modal-action + .modal-body .modal-scroller {
    max-height: calc(var(--vh, 1vh) * 100 - 60px);
}

body.os-ios .modal-item.full .modal-pannel .modal-header + .modal-action + .modal-body .modal-scroller {
    max-height: calc(var(--vh, 1vh) * 100 - 108px);
}

body.os-aos .modal-item.full .modal-pannel .modal-header + .modal-action + .modal-body .modal-scroller {
    max-height: calc(var(--vh, 1vh) * 100 - 108px);
}

.modal-item .modal-drawer {
    width: 100%;
    /* height: 100%; */
    background-color: rgba(255, 255, 255, .9);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 210;
}

.button-item {
    display: inline-block;
    overflow: visible;
    width: auto;
    height: 40px;
    width: 40px;
    margin: 0;
    position: relative;
    font-size: 0;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    border: none;
    outline: none;
}

.button-item:active::before {
    content: "";
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border-radius: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-color: rgba(0, 0, 0, .1);
}

.button-item .label-txt {

}

.button-item .icon-close::after,
.button-item .icon-close::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 1px;
    background-color: #fff;
}

[data-ref=tearms] .button-item .icon-close::after,
[data-ref=tearms] .button-item .icon-close::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 1px;
    background-color: #000;
}

[data-ref=modalEmployContent] .button-item .icon-close::after,
[data-ref=modalEmployContent] .button-item .icon-close::before {
    background-color: #000;
}

.button-item .icon-close::after {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.button-item .icon-close::before {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.modal-item.drawer[data-ref="lendingDrawer"] .modal-pannel{
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.pd-h-1u {
    padding-top: 4px;
    padding-bottom: 4px;
}

.pd-h-2u {
    padding-top: 8px;
    padding-bottom: 8px;
}

.pd-h-3u {
    padding-top: 12px;
    padding-bottom: 12px;
}

.pd-h-4u {
    padding-top: 16px;
    padding-bottom: 16px;
}

.pd-h-5u {
    padding-top: 20px;
    padding-bottom: 20px;
}

.pd-h-6u {
    padding-top: 24px;
    padding-bottom: 24px;
}

.pd-h-8u {
    padding-top: 32px;
    padding-bottom: 32px;
}

.pd-h-9u {
    padding-top: 36px;
    padding-bottom: 36px;
}

.pd-h-10u {
    padding-top: 40px;
    padding-bottom: 40px;
}

.pd-h-15u {
    padding-top: 60px;
    padding-bottom: 60px;
}

.pd-h-20u {
    padding-top: 80px;
    padding-bottom: 80px;
}

.pd-h-25u {
    padding-top: 100px;
    padding-bottom: 100px;
}

.pd-v-1u {
    padding-left: 4px;
    padding-right: 4px;
}

.pd-v-2u {
    padding-left: 8px;
    padding-right: 8px;
}

.pd-v-3u {
    padding-left: 12px;
    padding-right: 12px;
}

.pd-v-4u {
    padding-left: 16px;
    padding-right: 16px;
}

.pd-v-5u {
    padding-left: 20px;
    padding-right: 20px;
}

.pd-v-6u {
    padding-left: 24px;
    padding-right: 24px;
}

.pd-v-8u {
    padding-left: 32px;
    padding-right: 32px;
}

.pd-v-9u {
    padding-left: 36px;
    padding-right: 36px;
}

.pd-v-10u {
    padding-left: 40px;
    padding-right: 40px;
}

.pd-v-15u {
    padding-left: 60px;
    padding-right: 60px;
}

.pd-v-20u {
    padding-left: 80px;
    padding-right: 80px;
}

.pd-v-25u {
    padding-left: 100px;
    padding-right: 100px;
}

.pd-t-1u {
    padding-top: 4px;
}

.pd-b-1u {
    padding-bottom: 4px;
}

.pd-l-1u {
    padding-left: 4px;
}

.pd-r-1u {
    padding-right: 4px;
}

.pd-t-2u {
    padding-top: 8px;
}

.pd-b-2u {
    padding-bottom: 8px;
}

.pd-l-2u {
    padding-left: 8px;
}

.pd-r-2u {
    padding-right: 8px;
}

.pd-t-3u {
    padding-top: 12px;
}

.pd-b-3u {
    padding-bottom: 12px;
}

.pd-l-3u {
    padding-left: 12px;
}

.pd-r-3u {
    padding-right: 12px;
}

.pd-t-4u {
    padding-top: 16px;
}

.pd-b-4u {
    padding-bottom: 16px;
}

.pd-l-4u {
    padding-left: 16px;
}

.pd-r-4u {
    padding-right: 16px;
}

.pd-t-5u {
    padding-top: 20px;
}

.pd-b-5u {
    padding-bottom: 20px;
}

.pd-l-5u {
    padding-left: 20px;
}

.pd-r-5u {
    padding-right: 20px;
}

.pd-t-6u {
    padding-top: 24px;
}

.pd-b-6u {
    padding-bottom: 24px;
}

.pd-l-6u {
    padding-left: 24px;
}

.pd-r-6u {
    padding-right: 24px;
}

.pd-t-7u {
    padding-top: 28px;
}

.pd-b-7u {
    padding-bottom: 28px;
}

.pd-l-7u {
    padding-left: 28px;
}

.pd-r-7u {
    padding-right: 28px;
}

.pd-t-8u {
    padding-top: 32px;
}

.pd-b-8u {
    padding-bottom: 32px;
}

.pd-l-8u {
    padding-left: 32px;
}

.pd-r-8u {
    padding-right: 32px;
}

.pd-t-9u {
    padding-top: 36px;
}

.pd-b-9u {
    padding-bottom: 36px;
}

.pd-l-9u {
    padding-left: 36px;
}

.pd-r-9u {
    padding-right: 36px;
}

.pd-t-10u {
    padding-top: 40px;
}

.pd-b-10u {
    padding-bottom: 40px;
}

.pd-l-10u {
    padding-left: 40px;
}

.pd-r-10u {
    padding-right: 40px;
}

.pd-t-15u {
    padding-top: 60px;
}

.pd-b-15u {
    padding-bottom: 60px;
}

.pd-l-15u {
    padding-left: 60px;
}

.pd-r-15u {
    padding-right: 60px;
}

.pd-t-20u {
    padding-top: 80px;
}

.pd-t-25u {
    padding-top: 100px;
}

.pd-b-20u {
    padding-bottom: 80px;
}

.pd-b-25u {
    padding-bottom: 100px;
}

.pd-l-20u {
    padding-left: 80px;
}

.pd-l-25u {
    padding-left: 100px;
}

.pd-r-20u {
    padding-right: 80px;
}

.pd-r-25u {
    padding-right: 100px;
}

.no-pd {
    padding: 0;
}

.mg-h-1u {
    margin-top: 4px;
    margin-bottom: 4px;
}

.mg-h-2u {
    margin-top: 8px;
    margin-bottom: 8px;
}

.mg-h-3u {
    margin-top: 12px;
    margin-bottom: 12px;
}

.mg-h-4u {
    margin-top: 16px;
    margin-bottom: 16px;
}

.mg-h-5u {
    margin-top: 20px;
    margin-bottom: 20px;
}

.mg-h-6u {
    margin-top: 24px;
    margin-bottom: 24px;
}

.mg-h-8u {
    margin-top: 32px;
    margin-bottom: 32px;
}

.mg-h-9u {
    margin-top: 36px;
    margin-bottom: 36px;
}

.mg-h-10u {
    margin-top: 40px;
    margin-bottom: 40px;
}

.mg-h-15u {
    margin-top: 60px;
    margin-bottom: 60px;
}

.mg-h-20u {
    margin-top: 80px;
    margin-bottom: 80px;
}

.mg-h-25u {
    margin-top: 100px;
    margin-bottom: 100px;
}

.mg-v-1u {
    margin-left: 4px;
    margin-right: 4px;
}

.mg-v-2u {
    margin-left: 8px;
    margin-right: 8px;
}

.mg-v-3u {
    margin-left: 12px;
    margin-right: 12px;
}

.mg-v-4u {
    margin-left: 16px;
    margin-right: 16px;
}

.mg-v-5u {
    margin-left: 20px;
    margin-right: 20px;
}

.mg-v-6u {
    margin-left: 24px;
    margin-right: 24px;
}

.mg-v-8u {
    margin-left: 32px;
    margin-right: 32px;
}

.mg-v-9u {
    margin-left: 36px;
    margin-right: 36px;
}

.mg-v-10u {
    margin-left: 40px;
    margin-right: 40px;
}

.mg-v-15u {
    margin-left: 60px;
    margin-right: 60px;
}

.mg-v-20u {
    margin-left: 80px;
    margin-right: 80px;
}

.mg-v-25u {
    margin-left: 100px;
    margin-right: 100px;
}

.mg-t-1u {
    margin-top: 4px;
}

.mg-b-1u {
    margin-bottom: 4px;
}

.mg-l-1u {
    margin-left: 4px;
}

.mg-r-1u {
    margin-right: 4px;
}

.mg-t-2u {
    margin-top: 8px;
}

.mg-b-2u {
    margin-bottom: 8px;
}

.mg-l-2u {
    margin-left: 8px;
}

.mg-r-2u {
    margin-right: 8px;
}

.mg-t-3u {
    margin-top: 12px;
}

.mg-b-3u {
    margin-bottom: 12px;
}

.mg-l-3u {
    margin-left: 12px;
}

.mg-r-3u {
    margin-right: 12px;
}

.mg-t-4u {
    margin-top: 16px;
}

.mg-b-4u {
    margin-bottom: 16px;
}

.mg-l-4u {
    margin-left: 16px;
}

.mg-r-4u {
    margin-right: 16px;
}

.mg-t-5u {
    margin-top: 20px;
}

.mg-b-5u {
    margin-bottom: 20px;
}

.mg-l-5u {
    margin-left: 20px;
}

.mg-r-5u {
    margin-right: 20px;
}

.mg-t-6u {
    margin-top: 24px;
}

.mg-b-6u {
    margin-bottom: 24px;
}

.mg-l-6u {
    margin-left: 24px;
}

.mg-r-6u {
    margin-right: 24px;
}

.mg-t-7u {
    margin-top: 28px;
}

.mg-b-7u {
    margin-bottom: 28px;
}

.mg-l-7u {
    margin-left: 28px;
}

.mg-r-7u {
    margin-right: 28px;
}

.mg-t-8u {
    margin-top: 32px;
}

.mg-b-8u {
    margin-bottom: 32px;
}

.mg-l-8u {
    margin-left: 32px;
}

.mg-r-8u {
    margin-right: 32px;
}

.mg-t-9u {
    margin-top: 36px;
}

.mg-b-9u {
    margin-bottom: 36px;
}

.mg-l-9u {
    margin-left: 36px;
}

.mg-r-9u {
    margin-right: 36px;
}

.mg-t-10u {
    margin-top: 40px;
}

.mg-b-10u {
    margin-bottom: 40px;
}

.mg-l-10u {
    margin-left: 40px;
}

.mg-r-10u {
    margin-right: 40px;
}

.mg-t-15u {
    margin-top: 60px;
}

.mg-b-15u {
    margin-bottom: 60px;
}

.mg-l-15u {
    margin-left: 60px;
}

.mg-r-15u {
    margin-right: 60px;
}


.mg-t-20u {
    margin-top: 80px;
}

.mg-t-25u {
    margin-top: 100px;
}

.mg-b-20u {
    margin-bottom: 80px;
}

.mg-b-25u {
    margin-bottom: 100px;
}

.mg-l-20u {
    margin-left: 80px;
}

.mg-l-25u {
    margin-left: 100px;
}

.mg-r-20u {
    margin-right: 80px;
}

.mg-r-25u {
    margin-right: 100px;
}

.no-mg {
    margin: 0 !important;
}

.img-block {
    display: block;
    width: 100%;
    font-size: 0;
}

/* button-item */
.button-item {
    display: inline-block;
    overflow: visible;
    width: auto;
    height: 40px;
    line-height: 38px;
    margin: 0;
    padding: 0 20px;
    position: relative;
    font-size: 0;
    font-family: 'Pretendard','NotoSansKR','Malgun Gothic',sans-serif;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    border: none;
    outline: none;
    color: #101840;
    font-weight: 400;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    background-color: #fff;
    cursor: default;
}

.button-item * {
    pointer-events: none;
    user-select: auto;
}

.button-item:disabled,
.button-item.disabled {
    background-color: #d8dae5;
}

.button-item:disabled .label-txt,
.button-item.disabled .label-txt{
    color: #8f95b2;
}

.button-item > * + * {
    margin-left: 4px;
}

.button-item.button-free > * + * {
    margin-left: unset;
}

.button-item > .label-txt {
    display: inline-block;
    vertical-align: middle;
    line-height: 110%;
    position: relative;
    font-size: 14px;
    font-weight: inherit;
    pointer-events: none;
    white-space: nowrap;
}

.button-item > .label-txt.txt-11 {
    font-size: 11px !important;
}

.button-item > .label-txt.txt-12 {
    font-size: 12px !important;
}

.button-item > .label-txt.txt-13 {
    font-size: 13px !important;
}

.button-item > .label-txt.txt-14 {
    font-size: 14px !important;
}

.button-item > .label-txt.txt-16 {
    font-size: 16px !important;
}

.button-item > .label-txt em {
    font-weight: 500;
}

.button-item > .badge {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    min-width: 16px;
    line-height: 16px;
    padding: 0 4px;
    text-align: center;
    position: relative;
    font-size: 12px;
    font-weight: inherit;
    pointer-events: none;
    border-radius: 9px;
    color: #fff;
    background: #121c72;
    margin-left: 4px;
}

.button-item.min-w > .badge {
    position: absolute;
    margin: 0;
}

.button-item.button-xs {
    height: 24px;
    line-height: 22px;
    padding: 0 12px;
}

.button-item.button-s {
    height: 32px;
    line-height: 30px;
    padding: 0 16px;
}

.button-item.button-ms {
    height: 36px;
    line-height: 34px;
    padding: 0 18px;
}

.button-item.button-ml {
    height: 44px;
    line-height: 42px;
    padding: 0 22px;
}

.button-item.button-l {
    height: 48px;
    line-height: 46px;
    padding: 0 24px;
}

.button-item.button-xl {
    height: 56px;
    line-height: 54px;
    padding: 0 28px;
}

.button-item.button-xs > .label-txt {
    font-size: 10px;
}
.button-item.button-s > .label-txt {
    font-size: 12px;
}
.button-item.button-ms > .label-txt {
    font-size: 13px;
}
.button-item.button-ml > .label-txt {
    font-size: 15px;
}
.button-item.button-l > .label-txt {
    font-size: 16px;
}
.button-item.button-xl > .label-txt {
    font-size: 18px;
}

.button-item.round {
    border-radius: 20px;
}

.button-item.button-xs.round {
    border-radius: 12px;
}

.button-item.button-s.round {
    border-radius: 16px;
}

.button-item.button-ms.round {
    border-radius: 18px;
}

.button-item.button-ml.round {
    border-radius: 22px;
}

.button-item.button-l.round {
    border-radius: 24px;
}

.button-item.button-xl.round {
    border-radius: 28px;
}

.button-item.filet {
    border-radius: 12px;
}

.button-item.min-w {
    width: 40px;
    padding: 0;
}

.button-item.button-xs.min-w {
    width: 24px;
}

.button-item.button-s.min-w {
    width: 32px;
}

.button-item.button-ms.min-w {
    width: 36px;
}

.button-item.button-ml.min-w {
    width: 44px;
}

.button-item.button-l.min-w {
    width: 48px;
}

.button-item.button-xl.min-w {
    width: 56px;
}

.button-item.full-w {
    width: 100%;
}

.button-item.half-w {
    width: 50%;
}

.button-item.w-150 {
    width: 150px;
    padding: 0;
}

.button-item.button-free {
    height: auto;
    line-height: initial;
    padding: unset;
}

.button-item.button-neutral {
    background-color: #474d66;
    color: #fff;
}

.button-item.button-neutral .label-txt {
    color: #fff;
}

.button-item.button-neutral.button-inv {
    background-color: #fff;
    color: #474d66;
}

.button-item.button-neutral.button-inv .label-txt {
    color: #474d66;
}

.button-item.button-neutral.button-ol {
    background-color: #fff;
    border-color: #474d66;
    color: #474d66;
}

.button-item.button-naeutral.button-ol .label-txt {
    color: #474d66;
}

.button-item.button-neutral.button-ol:active {
    border-color: #474d66;
    color: #fff;
}

.button-item.button-primary {
    background-color: #121c72;
    color: #fff;
}
.button-item.button-green {
    background-color: #0AA622;
    color: #fff;
}

.button-item.button-primary .label-txt {
    color: #fff;
}

.button-item.button-primary.button-inv {
    background-color: #fff;
    color: #121c72;
}

.button-item.button-primary.button-inv .label-txt {
    color: #121c72;
}

.button-item.button-primary.button-ol {
    background-color: #fff;
    border-color: #121c72;
    color: #121c72;
}

.button-item.button-primary.button-ol .label-txt {
    color: #121c72;
}

.button-item.button-white {
    background-color: #fff;
    color: #101840;
}

.button-item.button-white .label-txt {
    color: #101840;
}

.button-item.button-white.button-inv {
    background-color: transparent;
    color: #fff;
}

.button-item.button-white.button-ol {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.button-item.button-gray {
    background-color: #d9dbdc;
    color: #fff;
}

.button-item.button-gray.button-inv {
    background-color: #fff;
    color: #101840;
}

.button-item.button-gray.button-ol {
    background-color: #fff;
    border-color: #d9dbdc;
    color: #101840;
}

.button-item.button-light-gray {
    background-color: #f2f2f7;
    color: #101840;
}

.button-item.button-light-gray.button-inv {
    background-color: #fff;
    color: #101840;
}

.button-item.button-light-gray.button-ol {
    background-color: #fff;
    border-color:#f2f2f7;
    color: #101840;
}

.button-item.button-light-gray.button-neu {
    color: #696f8c;
}

.button-item.button-dark-gray {
    background-color: #696f8c;
    color: #fff;
}

.button-item.button-dark-gray.button-inv {
    background-color: #fff;
    color: #696f8c;
}

.button-item.button-dark-gray.button-ol {
    background-color: #fff;
    border-color: #696f8c;
    color: #696f8c;
}

.button-item.bg-transparent {
    background-color: transparent !important;
}

.button-item.button-disabled {
    border-color: #D9DBDC !important;
    background-color: #F9F9FA !important;
    opacity: 1 !important;
}

.button-item.button-disabled .label-txt {
    color: #696f8c !important;
}

.button-item:active:before {
    content: '';
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border-radius: inherit;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: rgba(0,0,0,0.05);
}

.button-item.button-neutral:not(.button-ol):not(.button-inv):active:before {
    background: rgba(255,255,255,0.05);
}

.page-floating-button {
    position: fixed;
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 12px 20px;
    padding-bottom: calc(12px + constant(safe-area-inset-bottom));
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    background-color: #ffffff;
    box-shadow: 0 -6px 6px rgba(0, 0, 0, .16);
    z-index: 900;
}

ul,
ol,
dl {
    height: auto;
    list-style: none;
    margin: 0;
    padding: 0;
    cursor: default;
    position: relative;
}

ul:after,
ol:after,
dl:after {
    content: '';
    display: table;
    clear: both;
}

ul.list-size-full,
ol.list-size-full,
dl.list-size-full,
ul.list-size-free,
ol.list-size-free,
dl.list-size-free,
ul.list-size-equal,
ol.list-size-equal,
dl.list-size-equal {
    display: flex;
    /* width: 100%; */
}


ul > li,
ol > li {
    height: auto;
    overflow: visible;
    position: relative;
}

.list-size-full > li {
    width: 100%;

}

.list-size-free > li {
    display: inline-block;
    width: auto;
}

.list-size-equal > li {
    float: left;
}

.list-size-equal > li:first-child:nth-last-child(1) {
    width: 100%;
}

.list-size-equal > li:first-child:nth-last-child(2),
.list-size-equal > li:first-child:nth-last-child(2) ~ li {
    width: calc(100% / 2);
}

.list-size-equal > li:first-child:nth-last-child(3),
.list-size-equal > li:first-child:nth-last-child(3) ~ li {
    width: calc(100% / 3);
}

.list-size-equal > li:first-child:nth-last-child(4),
.list-size-equal > li:first-child:nth-last-child(4) ~ li {
    width: calc(100% / 4);
}

.list-size-equal > li:first-child:nth-last-child(5),
.list-size-equal > li:first-child:nth-last-child(5) ~ li {
    width: calc(100% / 5);
}

.list-size-equal > li:first-child:nth-last-child(6),
.list-size-equal > li:first-child:nth-last-child(6) ~ li {
    width: calc(100% / 6);
}

.list-size-flex {
    display: flex;
}

.list-size-flex > li {
    flex: 1; min-width: 0;
}

.list-size-flex > li.flex-2 {
    flex: 2;
}

.list-size-flex > li.flex-3 {
    flex: 3;
}

.list-size-flex > li.flex-4 {
    flex: 4;
}

.list-size-flex > li.flex-0 {
    flex: 0;
}

.list-size-flex > li.flex-auto {
    flex: auto
}

.flex-between {
    display:flex;
    justify-content: space-between;
}

.list-style-disc > * {
    margin: 0;
    overflow: hidden;
    position: relative;
    padding-left: 20px;
}

.list-style-disc > *:before {
    content: '\00B7';
    position: absolute;
    display: inline-block;
    width: 20px;
    line-height: inherit;
    font-size: inherit;
    text-align: center;
    vertical-align: middle;
    color: inherit;
    transform: translateX(-100%) scale(0.3,0.3);
}

ul.grid-list {
    display: table;
    width: 100%;
}

ul.grid-list > li {
    float: left;
    width: 100%;
    margin-bottom: 1%;
    margin-right: 1%;
}

ul.grid-list.grid-list-column-1 > li {
    width: 100%;
}

ul.grid-list.grid-list-column-2 > li {
    width: 49.5%;
}

ul.grid-list.grid-list-column-3 > li {
    width: 32.6666666667%;
}

ul.grid-list.grid-list-column-4 > li {
    width: 24.25%;
}

ul.grid-list.grid-list-column-5 > li {
    width: 19.2%;
}

ul.grid-list.grid-list-column-6 > li {
    width: 15.8333333333%;
}

ul.grid-list.grid-list-column-7 > li {
    width: 13.4285714286%;
}

ul.grid-list.grid-list-column-8 > li {
    width: 11.625%;
}

ul.grid-list.grid-list-column-9 > li {
    width: 10.2222222222%;
}

ul.grid-list.grid-list-column-10 > li {
    width: 9.1%;
}

ul.grid-list.grid-list-column-11 > li {
    width: 8.1818181818%;
}

ul.grid-list.grid-list-column-12 > li {
    width: 7.4166666667%;
}

ul.grid-list.grid-list-column-2 > li:nth-of-type(2n+0),
ul.grid-list.grid-list-column-3 > li:nth-of-type(3n+0),
ul.grid-list.grid-list-column-4 > li:nth-of-type(4n+0),
ul.grid-list.grid-list-column-5 > li:nth-of-type(5n+0),
ul.grid-list.grid-list-column-6 > li:nth-of-type(6n+0),
ul.grid-list.grid-list-column-7 > li:nth-of-type(7n+0),
ul.grid-list.grid-list-column-8 > li:nth-of-type(8n+0),
ul.grid-list.grid-list-column-9 > li:nth-of-type(9n+0),
ul.grid-list.grid-list-column-10 > li:nth-of-type(10n+0),
ul.grid-list.grid-list-column-11 > li:nth-of-type(11n+0),
ul.grid-list.grid-list-column-12 > li:nth-of-type(12n+0) {
    margin-right: 0;
}

ul.grid-list > li:last-of-type {
    margin-right: 0;
}

.form-control {
    position: relative;
    display: block;
    width: 100%;
}

.input-group {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}

.input-box {
    display: block;
    width: 100%;
    padding: 8px 16px;
    font-size: 14px;
    line-height: 22px;
    color: #101840;
    border: 1px solid #d8dae5;
    border-radius: 4px;
    text-align: left;
    height: auto;
    box-sizing: border-box;
    background: initial;
    background-color: #ffffff;
    outline: none;
}

.input-box.bg-light1 {
    background: #f9f9fa;
}

.input-box.txt-12 {
    font-size: 12px;
}

select.input-box {
    padding-right: 30px;
}

.input-box::placeholder {
    color: #696f8c;
}

.input-box:focus {
    border-color: #1943d4;
}

.input-box.bg-light1:focus {
    background: #fff;
}

.input-box.bg-light1:not(select):read-only:focus {
    background: #f9f9fa;
    border-color: #d9dbdc;
}

.input-box:not(select):read-only {
    background-color: #f9f9fa;
}

.input-box:disabled,
.input-box.disabled,
.form-control.disabled {
    pointer-events: none;
    opacity: 0.3;
}
.form-control.form-control-sm .input-box {
    padding-top: 4px;
    padding-bottom: 4px;
    height: 32px;
}
.form-control.form-control-medium-sm .input-box {
    padding-top: 6px;
    padding-bottom: 6px;
    height: 36px;
}

.form-control.form-control-md .input-box {
    padding-top: 8px;
    padding-bottom: 8px;
    height: 40px;
}

.form-control.form-control-lg .input-box {
    padding-top: 12px;
    padding-bottom: 12px;
    height: 48px;
}

.form-control .input-group .tools {
    position: absolute;
    display: inline-block;
    top: 0;
    right: 0;
    padding-right: 6px;
}

.form-control .input-group select.input-box ~ .tools {
    pointer-events: none;
}

.form-control .input-group .tools > button {
    display: inline-block;
    font-size: 0;
    color: #474d66;
    background-color: initial;
    height: 40px;
    width: auto;
}

.form-control .input-group .tools > button > span {
    font-size: 16px;
    vertical-align: middle;
}

.form-control.form-control-sm .input-group .tools > button {
    height: 32px;
}

.form-control.form-control-medium-sm .input-group .tools > button {
    height: 36px;
}

.form-control.form-control-md .input-group .tools > button {
    height: 40px;
}

.form-control.form-control-lg .input-group .tools > button {
    height: 48px;
}

.form-control label {
    display: block;
    color: #101840;
    margin-bottom: 8px;
    cursor: default;
}

.form-control label.txt-14 {
    font-size: 14px;
}

.form-control .input-group .tools > button.clear {
    display: none;
}

.form-control .input-group .tools > button.clear.on {
    display: inline-block;
}

.form-control.form-control-block {
    position: relative;

}

.form-control.form-control-block label {

}

.form-control.form-control-block .input-group {

}

.input-box.outline-primary {
    border: 1px solid;
    border-color: #30cca7;

}

.input-box.outline-error {
    border: 1px solid;
    border-color: #ff616d;
}


.form-control.form-control-block .input-group .input-box {
    padding: 0 16px;
    border-radius: 12px;
    background-color: #fff;
    line-height: 46px;
    letter-spacing: -.5px;
}

.form-control.form-control-block .input-group + .dash {
    display: inline-block;
    position: relative;
    flex: none;
    line-height: 100%;
    margin: 0 4px;
}

.form-control .input-group textarea {
    display: block;
    width: 100%;
    height: auto;
    padding: 8px 16px;
    color: #101840;
    border: 1px solid #d8dae5;
    border-radius: 12px;
    box-sizing: border-box;
    background-color: #ffffff;
    outline: none;
    font-size: 14px;
    line-height: 22px;
    text-align: left;
    letter-spacing: -.5px;
}

.form-control .input-group textarea.resize-none {
    resize: none;
}

.form-control.form-control-inline {
    position: relative;
    padding-left: 80px;
}

.form-control.form-control-inline label {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    padding-right: 10px;
    margin-bottom: initial;
}

.form-control.form-control-inline.inline-xs {
    padding-left: 60px;
}

.form-control.form-control-inline.inline-xs label {
    width: 60px;
}

.form-control.form-control-inline.inline-sm {
    padding-left: 70px;
}

.form-control.form-control-inline.inline-sm label {
    width: 70px;
}

.form-control.form-control-inline.inline-md {
    padding-left: 80px;
}

.form-control.form-control-inline.inline-md label {
    width: 80px;
}

.form-control.form-control-inline.inline-lg {
    padding-left: 90px;
}

.form-control.form-control-inline.inline-lg label {
    width: 90px;
}

.form-control.form-control-inline.inline-xl {
    padding-left: 100px;
}

.form-control.form-control-inline.inline-xl label {
    width: 100px;
}

.form-control.inline {
    display: inline-block;
}

.form-control.inline label {
    display: inline-block;
    padding-right: 4px;
    vertical-align: middle;
    margin-bottom: initial;
    width: auto;
}
.form-control.inline .input-group {
    display: inline-block;
    vertical-align: middle;
    width: auto;
}

.check-item {
    display: inline-block;
    width: auto;
    min-width: 32px;
    height: auto;
    min-height: 32px;
    line-height: 100%;
    font-size: 0;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    vertical-align: middle;
    cursor: default;
}

.check-item input {
    width: 0;
    height: 0;
    position: absolute;
    top: -100px;
}

.check-item .labelling {
    display: inline-block;
    width: auto;
    height: auto;
    overflow: hidden;
    font-size: 0;
    position: relative;
    padding: 6px;
    padding-left: 32px;
    white-space: nowrap;
}

.check-item.txt-right .labelling {
    padding: 6px;
    padding-right: 32px;
}

.check-item .icon-holder {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    text-align: center;
    position: absolute;
    top: 6px;
    left: 6px;
    font-size: 0;
    pointer-events: none;
}

.check-item.txt-right .icon-holder {
    left: auto;
    right: 6px;
}

.check-item .icon-holder:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    box-sizing: border-box;
    border: 1px solid #d9dbdc;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
}

.check-item .icon-holder .line-icons.square:before {
    content: '' !important;
}

.check-item .icon-holder span:nth-of-type(1) {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    color: #d9dbdc;
}

.check-item .icon-holder span:nth-of-type(2) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.check-item .label-txt {
    display: inline-block;
    width: auto;
    height: auto;
    line-height: 20px;
    vertical-align: middle;
    font-size: 14px;
}

.check-item .label-txt.txt-12 {
    font-size: 12px;
}

.check-item input[type="checkbox"]:checked ~ .labelling .icon-holder span::after,
.check-item input[type="checkbox"]:checked ~ .icon-holder span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    display: inline-block;
    width: 12px;
    height: 6px;
    border-top: 2px solid #626273;
    border-right: 2px solid #626273;
    transform: translate(-20%, -100%) rotate(135deg);
}

.check-item .labelling:active {
    background: rgba(0,0,0,0.05);
}

.check-item input:disabled ~ .icon-holder {
    pointer-events: none; opacity: 0.3;
}

.check-item input:disabled ~ .labelling {
    pointer-events: none; opacity: 0.3;
}

.check-item.no-disabled-style input:disabled ~ .icon-holder {
    opacity: 1;
}

.check-item.no-disabled-style input:disabled ~ .labelling {
    opacity: 1;
}

.input-list-column {
    display: flex;
    align-items: center;
}

.input-list-column.flex-1 > *{
    flex: 1;
}

.input-list-column.flex-2 > *{
    flex: 2;
}

.input-list-column.flex-3 > *{
    flex: 3;
}

.input-list-column.flex-4 > *{
    flex: 4;
}

.radio-item {
    display: inline-block;
    width: auto;
    min-width: 32px;
    height: auto;
    min-height: 32px;
    font-size: 0;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    line-height: initial;
    vertical-align: middle;
    cursor: default;
}

.radio-item.radio-item-block,
.radio-item.radio-item-block .labelling {
    display: block;
}

.radio-item input {
    width: 0;
    height: 0;
    position: absolute;
    top: -100px;
}

.radio-item .labelling {
    display: inline-block;
    width: auto;
    height: auto;
    overflow: hidden;
    font-size: 0;
    position: relative;
    padding: 6px;
    padding-left: 32px;
}

.radio-item .labelling.full-w {
    width: 100%;
}

.radio-item.btn-type .labelling {
    padding: 0 12px;
    border-radius: inherit;
    border: 1px solid #d9dbdc;
    line-height: 30px;
    text-align: center;
}

.radio-item.btn-type.size-l .labelling {
    line-height: 38px;
}

.radio-item.btn-type input[type="radio"]:checked ~ .labelling {
    background: #fe6a2b;
    border-color: #fe6a2b;
    color: #fff;
}

.radio-item.btn-type.btn-ol input[type="radio"]:checked ~ .labelling {
    background: #fff;
    border-color: #fe6a2b;
    color: #fe6a2b;
}

.radio-item .labelling:active {
    background: rgba(0,0,0,0.05);
}

.radio-item input:disabled ~ .icon-holder {
    pointer-events: none; opacity: 0.3;
}

.radio-item input:disabled ~ .labelling {
    pointer-events: none; opacity: 0.3;
}

.radio-item .icon-holder {
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    height: 18px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 6px;
    margin-top: -9px;
    font-size: 0;
    pointer-events: none;
}

.radio-item .icon-holder::before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    box-sizing: border-box;
    border: 1px solid #c1c4d6;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
}

.radio-item .icon-holder .line-icons.circle::before {
    content: '' !important;
}

.radio-item .icon-holder span {
    display: inline-block;
    width: 18px;
    height: 18px;
    position: relative;
    color: #d9dbdc;
}

.radio-item .label-txt {
    display: inline-block;
    width: auto;
    height: auto;
    line-height: 18px;
    vertical-align: middle;
    font-size: 14px;
}

.radio-item .label-txt.txt-12 {
    font-size: 12px;
}

.radio-item input[type="radio"]:checked ~ .labelling .icon-holder::before,
.radio-item input[type="radio"]:checked ~ .icon-holder::before {
    background-color: #1943d4;
    border-color: #1943d4;
}

.radio-item input[type="radio"]:checked ~ .labelling .icon-holder span::after,
.radio-item input[type="radio"]:checked ~ .icon-holder span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 7px;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.toggle-switch {
    display: inline-block;
    width: auto;
    height: auto;
    font-size: 0;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 6px;
}

.toggle-switch:active {
    background: rgba(0,0,0,0.05);
}

.toggle-switch input[type="checkbox"] {
    width: 0;
    height: 0;
    position: absolute;
    top: -100px;
    left: 0;
}

.toggle-switch .label-txt {
    display: inline-block;
    width: auto;
    height: 20px;
    line-height: 20px;
    vertical-align: middle;
    font-size: 14px;
}

.toggle-switch .switch-track {
    display: inline-block;
    width: 32px;
    height: 20px;
    overflow: hidden;
    vertical-align: middle;
    border-radius: 10px;
    background: #d9dbdc;
    border: 2px solid #d9dbdc;
    position: relative;
    transition: all 0.2s;
}


.toggle-switch .switch-track .switch {
    width: 100%;
    height: 16px;
    padding-right: 16px;
    overflow: hidden;
    border-radius: 8px;
    font-size: 0;
    position: relative;
    text-align: center;
    transform: translateX(calc(-100% + 16px)) translateZ(0);
    transition: all 0.2s;
}

.toggle-switch input:checked ~ .switch-track {
    background: #fe6a2b; border: 2px solid #fe6a2b;
}

.toggle-switch input:checked ~ .switch-track .switch {
    transform: translateX(0) translateZ(0);
}

.toggle-switch .switch-track .switch .switch-handle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
}

.toggle-switch.disabled {
    pointer-events: none;
    opacity: 0.4;
}

.form-control-number {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    color: #101840;
    font-size: 0;
    padding: 6px 4px;
}
.form-control-number > input {
    position: absolute;
    top: -9999px;
    right: -99999px;
    height: 0;
    width: 0;
    font-size: 0;
}
.form-control-number > span {
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
}
.form-control-number .label {
    font-size: 14px;
    padding: 0 4px;
}
.form-control-number .control {
    position: relative;
    color: #474d66;
    background-color: initial;
    font-size: 0;
    -webkit-tap-highlight-color: transparent;
}
.form-control-number .control:active:before {
    position: absolute;
    content: '';
    display: inline-block;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    transform: translate(-50%, -50%);
    background-color: rgba(42, 49, 56, .15);
    border-radius: 50%;
}

.form-control-number.disabled {
    pointer-events: none;
}

.form-control-number.disabled .control {
    color: #d9dbdc;
}

.form-control-number .control.disabled {
    pointer-events: none;
    color:  #d9dbdc;
}

.tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 4px;
    background-color: #ffffff;
    border: 1px solid #D9DBDC;
    font-size: 14px;
}

.tag.on {
    background-color: #FE6A2B;
    color: #ffffff;
    font-weight: 500;
    border: 1px solid transparent;
}

.tag:before {
    content: '#'
}

.txt-white {
    color: #fff;
}

.radius-1u {
    border-radius: 4px;
}

.radius-2u {
    border-radius: 8px;
}

.radius-3u {
    border-radius: 12px;
}

.radius-4u {
    border-radius: 16px;
}

.border-primary {
    border: 1px solid #121c72;
}

.border-neutral1 {
    border: 1px solid #101840;
}

.border-neutral2 {
    border: 1px solid #474d66;
}

.border-neutral3 {
    border: 1px solid #696f8c;
}

.border-neutral4 {
    border: 1px solid #8f95b2;
}

.border-neutral5 {
    border: 1px solid #c1c4d6;
}

.border-neutral6 {
    border: 1px solid #d8dae5;
}

.txt-primary {
    color: #1943d4;
}

.txt-neutral1 {
    color: #101840;
}

.txt-neutral2 {
    color: #474d66;
}

.txt-neutral3 {
    color: #696f8c;
}

.txt-neutral4 {
    color: #8f95b2;
}

.txt-neutral5 {
    color: #c1c4d6;
}

.txt-neutral6 {
    color: #d8dae5;
}

.txt-neutral7 {
    color: #e6e8f0;
}

.txt-neutral8 {
    color: #edeff5;
}

.txt-neutral9 {
    color: #f4f6fa;
}

.txt-yellow {
    color: #ffa200;
}

.txt-mint {
    color: #51c5b0;
}

.txt-kakao {
    color: #ffdf00;
}

.txt-naver {
    color: #01c73c;
}

.txt-facebook {
    color: #3f67af;
}

.txt-apple {
    color: #000000;
}

.txt-notice {
    color: #eb8382;
}

.txt-w100 {
    font-weight: 100;
}

.txt-w200 {
    font-weight: 200;
}

.txt-w300 {
    font-weight: 300;
}

.txt-w400 {
    font-weight: 400;
}

.txt-w500 {
    font-weight: 500;
}

.txt-w600 {
    font-weight: 600;
}

.txt-w700 {
    font-weight: 700;
}

.txt-w800 {
    font-weight: 800;
}

.txt-w900 {
    font-weight: 900;
}

.txt-0 {
    font-size: 0;
}

.txt-10 {
    font-size: 10px;
}

.txt-11 {
    font-size: 11px;
}

.txt-12 {
    font-size: 12px;
}

.txt-13 {
    font-size: 13px;
}

.txt-14 {
    font-size: 14px;
}

.txt-15 {
    font-size: 15px;
}

.txt-16 {
    font-size: 16px;
}

.txt-17 {
    font-size: 17px;
}

.txt-18 {
    font-size: 18px;
}

.txt-19 {
    font-size: 19px;
}

.txt-20 {
    font-size: 20px;
}

.txt-21 {
    font-size: 21px;
}

.txt-24 {
    font-size: 24px;
}

.txt-28 {
    font-size: 28px;
}

.txt-30 {
    font-size: 30px;
}

.txt-32 {
    font-size: 32px;
}

.txt-36 {
    font-size: 36px;
}

.txt-48 {
    font-size: 48px;
}

.txt-60 {
    font-size: 60px;
}

.line-14 {
    line-height: 14px;
}

.line-16 {
    line-height: 16px;
}

.line-18 {
    line-height: 18px;
}

.line-20 {
    line-height: 20px;
}

.line-24 {
    line-height: 24px;
}

.line-30 {
    line-height: 30px;
}

.line-32 {
    line-height: 32px;
}

.line-36 {
    line-height: 36px;
}

.line-40 {
    line-height: 40px;
}

.line-50 {
    line-height: 50px;
}

.line-60 {
    line-height: 60px;
}

.line-100per {
    line-height: 100%;
}

.line-110per {
    line-height: 110%;
}

.line-120per {
    line-height: 120%;
}

.line-130per {
    line-height: 130%;
}

.line-140per {
    line-height: 140%;
}

.line-150per {
    line-height: 150%;
}

.line-initial {
    line-height: initial;
}

.line-inherit {
    line-height: inherit;
}

.txt-center {
    text-align: center;
}

.txt-left {
    text-align: left;
}

.txt-right {
    text-align: right;
}

.v-middle {
    vertical-align: middle;
}

.v-top {
    vertical-align: top;
}

.v-base {
    vertical-align:baseline;
}

.txt-italic {
    font-style: italic;
}

.txt-no-deco {
    text-decoration: none !important;
}

.txt-underline {
    text-decoration: underline !important;
    text-underline-position: under;
}
.txt-overline {
    text-decoration: overline;
}

.txt-throughline {
    text-decoration: line-through;
}

.txt-narrow {
    letter-spacing: -0.5px;
}

.txt-narrower {
    letter-spacing: -1px;
}

.word-keep {
    word-break: keep-all;
}

.word-break {
    word-break: break-all;
}

.txt-nowrap {
    white-space: nowrap;
}

.txt-ellipsis {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.blind {
    position: absolute !important;
    overflow: hidden;
    clip: rect(0 0 0 0);
    margin: -1px;
    width: 1px;
    height: 1px;
    pointer-events: none;
}

.dp-block {
    display: block;
}

.dp-inblock {
    display: inline-block;
}

.dp-inline {
    display: inline;
}

.floating-bottom-wrapper {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 20px;
	z-index: 100;
    transition: bottom .5s;
    -webkit-transition: bottom .5s;
}

.floating-bottom-wrapper.hide {
    bottom: -120px;
}

legend, caption {
    display: none;
}

.underline-primary {
	position: relative;
}

.underline-primary::before {
	content: "";
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 3px;
	height: 24%;
	background-color: rgba(1, 140, 61, .4)
}

.modal-comment {
	position: fixed;
	left: 50%;
	top: 50%;
	padding: 16px 20px;
	border-radius: 12px;
	background-color: rgba(0, 0, 0, .4);
    transition: all 0.3s;
	transform: translate(-50%, -50%);
	opacity: 0;
	z-index: 9999;
	color: #fff;
	font-size: 14px;
	white-space: nowrap;
}

.modal-comment.on {
	opacity: 1;
}

@keyframes loadSpinner {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.nav-insure-list {
    width: 100%;
    height: auto;
    position: absolute;
    transition: all .2s;
    transform: translateY(-400px) translateZ(0);
    opacity: 0;
    z-index: 0;
    padding-bottom: 12px;
    background-color: #fff;
}

.nav-insure-list.active {
    opacity: 1;
    z-index: 1;
    transform: translateY(0) translateZ(0);
    border-bottom: 1px solid #f4f6fa;
}

.nav-insure-list .item > a {
    display: block;
    padding: 12px;
    font-size: 14px;
    text-align: center;
    font-weight: bold;
}

.nav-insure-list .item > a.active {
    color: #30cca7;
}

.validation-txt {
    margin-top: 4px;
    font-size: 11px;
    color: #ed3241;
    white-space: nowrap;
}


[data-ref=oldModalPopup] .modal-action .button-item {
    height: 48px;
    background-color: #121c72;
    line-height: 46px;
    border-radius: 12px;
    color: #fff;
}

[data-ref=oldModalPopup].modal-item.full .modal-pannel .modal-action.no-boundary {
    box-shadow: 0 -4px 16px 0 rgba(0, 0, 0, .1);
}

.section-contour {
    position: relative;
    margin-top: 8px;
}

.section-contour::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    display: block;
    height: 8px;
    background-color: #fafbff;
}

[data-ref=insureSubscrib].modal-item .modal-pannel .modal-header {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0px;
    height: 48px;
    background-color: #fff;
    box-shadow: none;
    padding: 0;
}

[data-ref=kakaoShareModal].modal-item .modal-pannel .modal-header {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0px;
    height: 48px;
    background-color: #fff;
    box-shadow: none;
    padding: 0;
}

[data-ref=kakaoShareModal].modal-item .modal-pannel .modal-header {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0px;
    height: 48px;
    background-color: #fff;
    box-shadow: none;
    padding: 0;
}

[data-ref=kakaoShareModal].modal-item .modal-pannel .modal-action ul li+li {
    margin-left: 8px;
}

[data-ref=kakaoShareModal].modal-item .modal-pannel {
    border-radius: 24px;
}

.os-desktop [data-ref=telModal].modal-item .modal-pannel {
    max-width: 320px;
}

.os-desktop [data-ref=telModal] .modal-action .button-item,
[data-ref=kakaoShareModal] .modal-action .button-item {
    height: 48px;
    background-color: #121c72;
    line-height: 46px;
    border-radius: 12px;
    color: #fff;
}

[data-ref=kakaoShareModal] .modal-action .button-item.button-ol {
    margin-right: 8px;
    background-color: #fff;
    border-color: #121c72;
    color: #121c72;
}

[data-ref=kakaoShareModal] .modal-headcopy .icon-surprise {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-left: 4px;
    background-image: url(../../images/common/icon-surprise.png);
    background-size: auto 18px;
    background-position: left top;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.os-desktop .button-item {
    cursor: pointer;
}

.os-desktop input[type=number]::-webkit-outer-spin-button,
.os-desktop input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.os-desktop .page {
    box-shadow: 0 0 2px 0 rgb(0, 0, 0, .2);
}

[data-ref=kakaoShareModal] .banner-share-wrap .bg-share {
    display: block;
    width: 100%;
    max-width: 450px;
    height: 80px;
    margin: auto;
    padding-top: 26.5%;
    background-image: url(../../images/common/img-share-event-base.png);
    background-size: 100% auto;
    background-position: 50%;
    background-repeat: no-repeat;
}

[data-ref=kakaoShareModal].is-bel .banner-share-wrap .bg-share {
    background-image: url(../../images/common/img-share-event-bel.png);
}

[data-ref=kakaoShareModal].is-base .banner-share-wrap .bg-share {
    background-image: url(../../images/common/img-share-event-base.png);
}

[data-ref=kakaoShareModal].is-kt .banner-share-wrap .bg-share {
    background-image: url(../../images/common/img-share-event-kt.png);
}

.border-t {
    border-top: 1px solid #e6e8f0;
}

.border-b {
    border-bottom: 1px solid #e6e8f0;
}

.clearfix::after {
    clear: both;
    display: block;
    content: '';
}

.tab-item {
    width: 100%;
    height: 45px;
    line-height: 45px;
    background: #fff;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    left: 0;
    overflow: hidden;
    font-size: 0;
    z-index: 800;
}

.tab-item.no-sticky {
    position: relative;
    top: auto;
    z-index: auto;
}

.tab-item:before {
    content: '';
    display: block;
    width: 100%;
    height: 0;
    border-bottom: 1px solid #d9dbdc;
    position: absolute;
    left: 0;
    bottom: 0;
}

.tab-item > a {
    display: inline-block;
    text-decoration: none;
    width: auto;
    height: inherit;
    line-height: 44px;
    text-align: center;
    color: #5b6068;
    font-size: 14px;
    font-weight: 400;
    padding: 0 12px;
    position: relative;
    cursor: default;
    white-space: nowrap;
}

.tab-item:not(.on-layer) > a:active {
    background: rgba(0, 0, 0, .05);
}

.tab-item > a.on {
    color: #121c72;
    font-weight: 700;
}

.tab-item > a.disabled {
    color: #e3e5e8;
    pointer-events: none;
}

.tab-item > .indicator {
    position: absolute;
    display: block;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #121c72;
    min-width: 0;
    transition: left ease-in-out .16s, width ease-in-out .16s;
}

.tab-item.list-size-equal > a:first-of-type:nth-last-of-type(0) { width: 100%; }

.tab-item.list-size-equal > a:first-of-type:nth-last-of-type(2),
.tab-item.list-size-equal > a:first-of-type:nth-last-of-type(2) ~ a { width: calc(100% / 2); }

.tab-item.list-size-equal > a:first-of-type:nth-last-of-type(3),
.tab-item.list-size-equal > a:first-of-type:nth-last-of-type(3) ~ a { width: calc(100% / 3); }

.tab-item.list-size-equal > a:first-of-type:nth-last-of-type(4),
.tab-item.list-size-equal > a:first-of-type:nth-last-of-type(4) ~ a { width: calc(100% / 4); }

.tab-item.list-size-equal > a:first-of-type:nth-last-of-type(5),
.tab-item.list-size-equal > a:first-of-type:nth-last-of-type(5) ~ a { width: calc(100% / 5); }

.tab-item.list-size-equal > a:first-of-type:nth-last-of-type(6),
.tab-item.list-size-equal > a:first-of-type:nth-last-of-type(6) ~ a { width: calc(100% / 6); }

.tab-contents {
    position: relative;
    display: none;
    width: 100%;
    height: auto;
}

.tab-contents.on-modal-with-header {
    padding-top: 45px;
}

.tab-contents.on {
    display: block;
}

.tab-item.on-modal-with-header {
    padding-top: 45px;
}

.radio-item.radio-item-tile {
    display: inline-block;
    margin-bottom: 0;
}

.radio-item.radio-item-tile .label-txt {
    padding: 0;
    border-radius: 12px;
    background-color: #f4f6fa;
    line-height: 48px;
}

.radio-item.radio-item-tile input:checked + .label-txt {
    background-color: #1943d4;
    color: #fff;
}

.input-list-column.flex-1 .radio-item-tile .label-txt {
    width: 100%;
    text-align: center;
}

.skeleton {
    overflow: hidden;
    position: relative;
    background: #eee;
    border-radius: 4px;
    font-size: 0;
}

.skeleton-bar {
    position: absolute;
    top: 0; left: -100px;
    width: 40px;
    height: 100%;
    background: #fff;
    transform: rotate(15deg);
    filter: blur(15px);
    -webkit-filter: blur(15px);
    animation: skeletonMove 1s infinite;
}

@keyframes skeletonMove {
    from{
        left: -100px;
    }
    to{
        left: calc(100% + 100px);
    }
}


.spinner-old {
	width: 60px;
	height: 60px;
    margin-top: -30px;
    margin-left: -30px;
	border-radius: 50%;
	text-indent: -9999em;
	border-top: 7px solid rgba(0, 0, 0, .1);
	border-right: 7px solid rgba(0, 0, 0, .1);
	border-bottom: 7px solid rgba(0, 0, 0, .1);
	border-left: 7px solid rgba(48, 204, 167, 1);
	animation: loadSpinner 1.4s infinite linear;
	transform: translateZ(0);
}

.spinner::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    opacity: 1;
    background-image: url(../../images/common/spinner.gif);
    background-size: 40px auto;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.spinner {
    overflow: hidden;
}

.spinner::after {
    content: "\d398\c774\c9c0  \c900\be44\c911  \c785\b2c8\b2e4";
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 99999;
    margin-top: 24px;
    transform: translate(-50%, -50%);
    font-size: 12px;
    font-weight: bold;
}

.shape-word {
    position: relative;
    word-break: keep-all;
}

.shape-word .shape {
    position: absolute;
    left: 2px;
    top: 0;
}


.floating-bottom-button .cm-button-wrap .button-item {
	padding: 0 12px;
}

.floating-bottom-button .cm-button-wrap .button-cta-call {
	margin-left: 8px;
}

.floating-bottom-button .button-cta-cm .label-txt.icon-cm {
    position: relative;
    padding-left: 32px;
    line-height: 24px;
    font-weight: 700;
}

.floating-bottom-button .button-cta-cm .label-txt.icon-cm::before {
	content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background-image: url(../../images/common/icon-cm.png);
    background-size: auto 24px;
    background-position: left top;
    background-repeat: no-repeat;
    z-index: 1
}

.floating-bottom-button .button-cta-call .label-txt.icon-tel {
    margin-left: -4px;
}


[data-ref=cmModal].modal-item .modal-pannel .modal-action {
    padding: 12px;
}

[data-ref=cmModal].modal-item .modal-pannel .modal-action {
    padding: 12px;
}

[data-ref=cmModal].modal-item .modal-action .button-item {
    background-color: #121c72;
    border-color: #121c72;
    color: #fff;
    border-radius: 4px;
}

[data-ref=cmModal].modal-item .modal-action .button-item.button-ol {
    background-color: #fff;
    border-color: #121c72;
    color: #121c72;
}

[data-ref=cmModal].modal-item .modal-pannel .modal-header {
    background-color: #fff;
    box-shadow: none;
}

.txt-fff {
    color:#fff;
}

.txt-kyobo {
    color: #4dac26;
}

.division {
    position: relative;
}

.division::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background-color: #e6e8f0;
}

.input-box {
    padding: 0 16px;
    border-radius: 12px;
    background-color: #fff;
    line-height: 46px;
    letter-spacing: -.5px;
    user-select: none;
    appearance: none;
    outline: none;
    color: #101840;
    border: 1px solid #d8dae5;
    box-sizing: border-box;
}