@import url(//fonts.googleapis.com/earlyaccess/notosanskr.css);
@import url('https://fonts.googleapis.com/css2?family=Jua&display=swap');
@import url("https://fonts.googleapis.com/css?family=Material+Icons|Material+Icons+Outlined|Material+Icons+Two+Tone|Material+Icons+Round|Material+Icons+Sharp");

* {
    font-family: 'Noto Sans KR', sans-serif;
    box-sizing: border-box;
}

:root {
    --main: #0088FF;
    --sub: #FF6F00;
}

html, body {
    max-width: 100%;
    margin: 0;
    overflow-x: hidden;
}

/*a태그 리셋*/
a {
    text-decoration: none;
    outline: none;
    color: inherit;
}

a:hover, a:active {
    color: inherit;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
}

textarea {
    resize: none;
}

/*이미지 사이즈*/
img {
    max-width: 100%;
}

.material-icons-round {
    font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 48
}

/* 모바일 에서 보이는 부분 */
@media (max-width: 576px) {
    .mobile {
        width: 100%;
    }
    .font10-12 {
        font-size: 10px;
    }
    .font12-14 {
        font-size: 12px;
    }
}

/* pc 에서 보이는 부분 */
@media (min-width: 576px) {
    .mobile {
        width: 576px;
    }
    .font10-12 {
        font-size: 12px;
    }
    .font12-14 {
        font-size: 14px;
    }
}

.font10 {
    font-size: 10px;
}

.font12 {
    font-size: 12px;
}

.font14 {
    font-size: 14px;
}

.font20 {
    font-size: 20px;
}

.table-border-top-dark-bottom-none {
    border-top: 2px solid;
    border-bottom: 0;
}

.table-border-top-dark-bottom-none th {
    border-bottom: 0;
}

.bg-00DE5A {
    background-color: #00DE5A;
}

.bg-FFD369 {
    background-color: #FFD369;
}

.btn-FFD369 {
    --bs-btn-color: #000;
    --bs-btn-bg: #FFD369;
    --bs-btn-border-color: #FFD369;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #FFD369;
    --bs-btn-hover-border-color: #FFD369;
    --bs-btn-focus-shadow-rgb: 217, 164, 6;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #FFD369;
    --bs-btn-active-border-color: #FFD369;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #FFD369;
    --bs-btn-disabled-border-color: #FFD369;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0d6efd;
    --bs-btn-disabled-border-color: #0d6efd;
}

.pagination {
    --bs-pagination-active-color: dark;
    --bs-pagination-active-bg: #FFD369;
    --bs-pagination-active-border-color: #FFD369;
}

.btn-outline-warning {
    border-color: #BEBEBE!important;
    color:black!important;
}

.btn-check:checked+.btn-outline-warning {
    background-color: #FFD369!important;
}

.pt-37_5 {
    padding-top: 37.5%
}

.pt-100 {
    padding-top: 100%;
}

.pt-138_89 {
    padding-top: 138.89%;
}

.vh-50 {
    height: 50vh;
}

.vh-40 {
    height: 40vh;
}

.vh-10 {
    height: 10vh;
}

.vh-5 {
    height: 5vh;
}

.w-init {
    width: initial;
}

.blue-circle:before {
    content: '';
    position: absolute;
    display: inline-block;
    width: .9em;
    height: .9em;
    top: .2em;
    left: -1.2em;
    margin-right: .2em;
    border-radius: 100rem;
    background-color: white;
    border: 6px solid #00A6FF;
}

.blue-circle {
    position: relative;
}

.textCut {
    display: -webkit-box;
    --webkit-line-clamp: 2;
    --webkit-box-orient: vertical;
    text-overflow: ellipsis;
    word-break: break-all;
    overflow: hidden;
    line-height: 1.2;
    height: 2.4em;
}

.cursor-pointer {
    cursor: pointer;
}

.blueBlackBar {
    display: inline-block;
    background-color: black;
    vertical-align: middle;
    width: .2em;
    height: .8em;
}

.blueBlackBar::before {
    content: '';
    display: inline-block;
    background-color: #3081F5;
    vertical-align: top;
    width: .2em;
    height: .4em;
}

.carousel-indicators [data-bs-target] {
    width: 1em;
    height: 1em;
    border-radius: 50em;
    border: 1px solid transparent;
}

.filter-D6D6D6-to-FFD369 {
    filter: invert(80%) sepia(25%) saturate(879%) hue-rotate(347deg) brightness(260%) contrast(132%);
}

#spinner {
    display: none;
    width: 3rem;
    height: 3rem;
    border: 5px solid grey;
    border-top: 5px solid var(--main);
    border-radius: 50%;
    animation: loading 1s linear infinite;
    margin: 1.5rem auto;
}

@keyframes loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}