@import url(https://cdn.jsdelivr.net/gh/moonspam/NanumSquare@2.0/nanumsquare.css);
:root {
    --wrap-width: 1600px;
    --color-primary: #4193c9;
}

/*@import "./fonts/IBMPlexSansKR.css";*/
html, body {
    height: 100%;
    width: 100%;
    min-width: var(--wrap-width);
    font-family: 'NanumSquareAc', sans-serif;
    /*font-family: 'Asta Sans', sans-serif;*/
    font-size: 14px;
}
/*html {*/
/*    overflow-y: auto !important;*/
/*    overflow-x: auto !important;*/
/*}*/
input, textarea, select, button {
    outline: none;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
}
.scrollbar-hidden::-webkit-scrollbar {
    display: none;
}
li {
    list-style: none;
}
table {
    border-collapse: collapse;
}

/* Hide scrollbar for IE, Edge add Firefox */
.scrollbar-hidden {
    -ms-overflow-style: none;
    scrollbar-width: none; /* Firefox */
}
body .v-application ul{
    padding-left: initial;
}

body .cropper-point.point-se::before, body .cropper-point{
    background-color: rgb(255, 0, 0);
}
body .cropper-view-box{
    outline-color: rgb(255, 0, 0);
}

:root {
    --color-primary: #0091FF;
    --color-error: #f14668;
}

body * {
    box-sizing: border-box;
}
button.v-btn.main{
    background: var(--color-primary);
    color: #fff;
    font-size: 18px;
    height: 50px;
    font-weight: 700;
    padding: 0 40px;
    border-radius: 10px;
}
div.swal2-icon {
    margin: 60px auto .6em
}
h2.swal2-title{
    color: #333;
}
div#swal2-html-container{
    padding: 1em 1.6em;
    color: #A5AAB5;
    font-size: 20px;
}
button.swal2-styled{
    color: #fff;
    min-width: 130px;
    height: 50px;
    font-size: 16px;
}

button.v-btn.main.large{
    font-size: 16px;
}
button.swal2-close{
    color: #333;
    position: relative;
    top:1px;
    right: 1px;
}
button.swal2-close .material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 700,
        'GRAD' 0,
        'opsz' 20
}
.swal2-popup .swal2-styled:focus, .swal2-popup .swal2-close:focus {
    box-shadow: none !important;
}
.swal2-container {
    z-index: 3000;
}
.chip{
    color: #000;
    font-size: 12px;
    border-radius: 3px;
    background: #EEF0F5;
    margin-right:5px;
    padding:1px 5px 2px;
}
.flex-center{
    display: flex;
    align-items: center;
    justify-content: center;
}
.datetime{
    font-size: 0.9em;
    color: #999;
}
.ps {
    scroll-behavior: auto;
}

.trans-slide-enter-to, .trans-slide-leave-from{
}
.trans-slide-enter-active {
    overflow: hidden !important;
    transition: all .3s ease;
}
.trans-slide-leave-active {
    overflow: hidden !important;
    transition: all .4s ease;
}
.trans-slide-enter-from, .trans-slide-leave-to {
    max-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.no-emphasis{
    color: #F44336 !important;
}

/* 스크롤바의 폭 너비 */
.simple-select-list.v-list::-webkit-scrollbar, .simple-custom-list.v-list::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    transition: all 0.3s;
}
.simple-select-list.v-list::-webkit-scrollbar-thumb, .simple-custom-list.v-list::-webkit-scrollbar-thumb {
    background-color: #eee; /* 스크롤바 색상 */
    border-radius: 1px; /* 스크롤바 둥근 테두리 */
}
.simple-select-list.v-list:hover::-webkit-scrollbar-thumb, .simple-custom-list.v-list:hover::-webkit-scrollbar-thumb {
    background-color: #ccc;
}

.simple-select-list.v-list::-webkit-scrollbar-track, .simple-custom-list.v-list::-webkit-scrollbar-track {
    background: transparent;
}

.rounded-button{
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    border: 2px solid black;
}

@keyframes rotateY{
    0% {
        transform: rotateY(-360deg);
    }
    100% {
        transform: rotateY(0);
    }
}

/* 아이콘 회전 애니메이션 */
@keyframes rotate{
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

/* 아이콘 크기 커졌다 작아졌다 애니메이션 */
@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* 아이콘 점프 애니메이션 */
@keyframes jumpIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* 아이콘 투명도 변화 애니메이션 */
@keyframes fadeIcon {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

