@import "../fonts/Pretendard/pretendard.css";
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Saira:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: 'Pretendard' !important;
}
.sound_only {
    display: none !important;
}

.fs-en {
    font-family: 'Poppins' !important;
}

.fs-en2 {
    font-family: 'Saira' !important;
}


input:focus-visible {
    outline-offset: 0;
}


.form-control:focus {
    color: var(--vz-body-color);
    background-color: var(--vz-input-bg-custom);
    border-color: var(--vz-primary-border-subtle);
    outline: 0;
    -webkit-box-shadow: 0 0 1 .25rem rgba(var(--vz-primary-rgb), .25);
    box-shadow: 0 0 0 .25rem rgba(var(--vz-primary-rgb), .25);
}



.required {
    background: url('../images/ico/required.png') top right no-repeat #fff !important
}

.menu-title span {
    padding: 12px 20px 0 !important;
}


/****** 재작성 ********/
.step-register {
    margin: 0;
    overflow: hidden
}

.step-register ul {
    display: flex;
    justify-content: space-around;
    align-items: center
}

.step-register li {
    position: relative;
    width: 33.3%;
    color: #888;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    text-align: center;
    list-style: none
}

.step-register li div {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3.875rem
}

.step-register li:first-child div::before {
    display: none
}

.step-register li div::before {
    content: '';
    display: block;
    position: absolute;
    top: 13px;
    left: 0;
    width: 10px;
    height: 10px;
    border-right: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    transform: rotate(-45deg) translate(-110%, 0)
}

.step-register li span i {
    display: inline-block;
    box-sizing: border-box;
    padding: 0 0.375rem;
    margin-right: 0.5625rem;
    line-height: 18px;
    border-radius: 1.25rem;
    border: 1px solid #ccc;
    background: #fff;
    color: #ccc;
    font-size: 14px
}

.step-register li:last-child span:after {
    background: none;
    margin: 0;
    padding: 0
}

.step-register li.selected {
    font-weight: bold;
    color: #444
}

.step-register li.selected:after {
    content: "";
    position: absolute;
    z-index: 2;
    bottom: -1px;
    left: 0;
    height: 3px;
    width: 100%;
    background: #fd3754;
    border-radius: 25px;
}


/* 페이징 */
.pg_wrap {
    clear: both;
    margin: 0 0 20px;
    padding: 20px 0 0;
    text-align: center
}

.pg {
    display: inline-block
}

.pg_page, .pg_current {
    color: #9f9f9f;
    display: inline-block;
    float: left;
    padding: 0 13px;
    line-height: 30px;
    text-decoration: none;
    border: 1px solid #ddd;
    margin-left: -1px
}

.pg a:focus, .pg a:hover {
    background-color: #f3f3f3
}

.pg a:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.pg a:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.pg_page {
    background: #fff;
    text-decoration: none
}

.pg_current {
    display: inline-block;
    background: #3f51b5;
    color: #fff;
    font-weight: normal
}


.btn-close.btn-white {
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'><path d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/></svg>") center/1em auto no-repeat;

}



.logo-badge {
    top: -14px !important;
    right: -30px !important;;
}

.form-label {
    margin-bottom: .25rem !important;
}


@media (max-width: 767.98px) {
    .logo-badge {
        top: -14px !important;
        right: -5px !important;;
    }
}


/* LOADING */
#loading {
    position:fixed;
    width:100%;
    height:100%;
    margin:0 auto;
    /*background-color:#fff;*/
    background-color:rgba(0, 0, 0, 0.3);
    display:block;
    z-index:9999;
}
#loading .loader {
    position:absolute;
    top:50%;
    left:50%;
    width:76px;
    height:76px;
    margin:-38px 0 0 -38px;
    display:block;
}
#loading .loader dl {
    margin-bottom:2px;
    display:flex;
    flex-direction:row;
    justify-content:space-between;
}
#loading .loader dt,
#loading .loader dd {
    width:24px;
    height:24px;
    border-radius:3px;
    opacity:0;
    display:block;
    animation:load_ani 3s ease-in-out infinite;
    margin-bottom:0 !important;
}
#loading .loader dd:first-child { margin-right:auto; }
#loading .loader dd:last-child { margin-left:auto; }
#loading .loader dl:nth-child(1) dd:first-child { background-color:#ffe600; animation-delay:-0.5s; }
#loading .loader dl:nth-child(1) dt				{ background-color:#9bc134; animation-delay:-0.25s; }
#loading .loader dl:nth-child(1) dd:last-child	{ background-color:#00652e; }
#loading .loader dl:nth-child(2) dd:first-child { background-color:#9bc134; animation-delay:-0.25s; }
#loading .loader dl:nth-child(2) dt				{ background-color:#87b435; }
#loading .loader dl:nth-child(2) dd:last-child	{ background-color:#00652e; animation-delay:0.25s; }
#loading .loader dl:nth-child(3) dd:first-child { background-color:#00652e; }
#loading .loader dl:nth-child(3) dt				{ background-color:#00652e; animation-delay:0.25s; }
#loading .loader dl:nth-child(3) dd:last-child	{ background-color:#00652e; animation-delay:0.5s; }
@keyframes load_ani {
    0%,
    70%,
    100% {
        opacity:0;
    }
    20% {
        opacity:1;
    }
}

.tui-grid-container * {

}

.tui-grid-container {
    font-family: 'Pretendard' !important;
}

.tui-grid-summary-area {
    margin-bottom: 0 !important;
}
/*.tui-grid-body-container {*/
/*    margin-top: 0 !important;*/
/*}*/

.tui-grid-cell-content input[type='text'],
.tui-grid-cell-content input[type='password'],
.tui-grid-cell-content input[type='number']
{
    border: none !important;
    width: 100%;
    padding: 6px 7px;
    border: solid 1px #ddd;
}

.tui-grid-container input[type='number'] {
    outline: none;
    box-sizing: border-box;
    line-height: normal;
}

.tui-grid-cell-disabled input[type='number'] {
    opacity: 0.3;
    filter: alpha(opacity=30);
}

.tui-pagination .tui-is-selected, .tui-pagination strong {
    color: #fff;
    background: #405189;
    border-color: #405189;
    cursor: default;
}
.tui-pagination .tui-is-selected:hover {
    background-color: #405189;
}
.tui-pagination .tui-last-child, .tui-pagination .tui-next-is-ellip {
    border-right: none;
}

.tui-pagination .tui-page-btn {
    width: 32px;
    padding: 0;
    line-height: 32px;
    border: 0 none;
    border-radius: 32px;
}

.tui-pagination .tui-first, .tui-pagination .tui-prev, .tui-pagination .tui-next, .tui-pagination .tui-last, .tui-pagination .tui-prev-is-ellip, .tui-pagination .tui-next-is-ellip {
    height: 32px;
    line-height: 32px;
}



.tui-pagination .tui-last-child.tui-is-selected {
    border-right: none !important;
}
.tui-pagination .tui-first-child.tui-is-selected {
    border-left: none !important;
}


.tui-grid-cell {
    cursor: pointer;
}
.tui-grid-cell[data-column-name="Cmd"] {
    cursor: default;
}

.tui-grid-container p {
    font-family: 'Pretendard' !important;
}

/*.tui-grid-layer-editing {*/
/*    top: 0 !important;*/
/*}*/
/*.tui-grid-layer-focus-border {*/
/*    top: 0 !important;*/
/*}*/
/**
    Bootstrap 5 offcanvas size custom
 */

@media (max-width: 767.98px) {
    .offcanvas-screen50 {
        width: 100vw !important;
        height: 100vh !important;
    }
    .offcanvas-screen100 {
        width: 100vw !important;
        height: 100vh !important;
    }
}

@media (min-width: 767.98px) {
    .offcanvas-screen30 {
        width: 30vw !important;
        height: 100vh !important;
    }

    .offcanvas-screen40 {
        width: 40vw !important;
        height: 100vh !important;
    }

    .offcanvas-screen50 {
        width: 50vw !important;
        height: 100vh !important;
    }

    .offcanvas-screen60 {
        width: 60vw !important;
        height: 100vh !important;
    }

    .offcanvas-screen70 {
        width: 70vw !important;
        height: 100vh !important;
    }

    .offcanvas-screen80 {
        width: 80vw !important;
        height: 100vh !important;
    }

    .offcanvas-screen90 {
        width: 95vw !important;
        height: 100vh !important;
    }

    .offcanvas-screen100 {
        width: 100vw !important;
        height: 100vh !important;
    }

}

table.duksan > :not(caption) > * > * {
    padding: .6rem .6rem !important;
}

.spinner-grow-xs {
    width: 0.7rem !important;
    height: 0.7rem !important;
}

.ck.ck-toolbar {
    border: none !important;
    border-bottom: 1px solid var(--vz-input-border-custom) !important;
}


@media (min-width: 1400px) {
    .modal-dialog.modal-xxl { max-width: 1320px; }
}

.vr {
    display: inline-block;
    -ms-flex-item-align: stretch;
    align-self: auto;
    width: 1px;
    min-height: 0.5em;
    background-color: currentcolor;
    opacity: .25;
}