html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, input, textarea {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    font-family: Noto Sans KR;
    line-height: 1.5;
}
.d_none{
    display: none !important;
}
.d_block{
    display: block !important;
}
.d_flex{
    display: flex !important;
    align-content: center !important;
}
.fade_out{
    animation: fade_out 0.3s;
}
.fade_in{
    animation: fade_in 0.3s;
}
@keyframes fade_in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.input_style{
    height: 32px;
    width: 100%;
    padding: 6px 12px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px !important;
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-sizing: border-box;
}
.input_style::placeholder{
    color: #d1d1d1;
}
.input_style:disabled{
    background: #e7e7e7;
    opacity: 0.5;
}

.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    cursor: pointer;
}
.btn_gray_reverse {
    color: #000000 !important;
    background-color: #fff !important;
    border-color: #d1d1d1 !important
}

/*모달*/
.h_modal_bg{
    position: fixed;
    width: 0;
    height: 0;
    top: 0;
    left: 0;
    z-index: 8899;
}
.h_modal{
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}
.h_modal_container{
    width: fit-content;
    min-width: 300px;
    height: auto;
    min-height: auto;
    max-height: calc(100vh - 112px);
    position: relative;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-sizing: border-box;
    overflow: hidden;
}
.h_modal_close{
    cursor: pointer;
    position: absolute;
    right: 0px;
    margin-right: 24px;
    background: url("/public/assets/icons/icon_close_gray.svg") center center / 1em no-repeat transparent;
    width: 1em;
    height: 1em;
    border: none;
}
.h_modal_title{
    width: 100%;
    height: 48px;
    min-height: 48px;
    padding: 8px;
    display:flex;
    align-items:center;
    justify-content: center;
    font-weight: bold;
    background-color: #f4f7ff;
    border-bottom: 1px solid #d1d1d1;
    box-sizing: border-box;
    font-size: 16px;
}
.h_modal_content{
    min-height: 58px;
    padding: 8px;
    overflow: hidden;
    overflow-y: auto;
    box-sizing: border-box;
}
.h_modal_footer{
    width: 100%;
    height: 60px;
    padding: 8px;
    box-sizing: border-box;
    border-top: 1px solid #d1d1d1;
    overflow: hidden;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.h_modal_btn_close{
    width: 100%;
    height: 40px;
    border-radius: 4px !important;
    font-size: 15px;
    font-weight: bold;
    border: 1px solid #929292;
    background: #FFF;
    color: #929292;
    box-sizing: border-box;
    cursor: pointer;
    white-space: nowrap;
}
.h_modal_btn{
    width: 100%;
    height: 40px;
    border-radius: 4px !important;
    font-size: 15px;
    font-weight: bold;
    border: none;
    background-image: linear-gradient(to bottom, #3d84c1, #005abb);
    color: #FFFFFF;
    box-sizing: border-box;
    cursor: pointer;
    white-space: nowrap;
}
.h_modal_btn:disabled{
    background-image: none;
    background-color: #d1d1d1;
    color: #a3a3a3;
    cursor: no-drop;
}

/*셀렉트 박스*/
.select_style{
    height: 32px;
    width: 100%;
    padding: 6px 24px 6px 10px;
    font-size: 13px;
    color: #555;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-sizing: border-box;
    appearance: none;
    background-image: url("/assets/icons/icon_select_down.svg");
    background-repeat: no-repeat;
    background-position: calc(100% - 8px) center;
    background-size: 13px;
    outline: none;
    cursor: pointer;
    text-overflow: ellipsis;
}
.select_style:hover {
    border-color: #888;
}
.select_style:focus {
    border-color: #888;
}
.select_style:disabled {
    background: #e7e7e7;
    opacity: 0.5;
}

/*테이블*/
.table {
    width: 100%;
    user-select: text;
    font-size: 14px !important;
    font-weight: 400 !important;
}

.table th {
    padding: 0.75rem;
    vertical-align: middle;
    border-top: 1px solid #dee2e6;
    box-sizing: border-box;
}

.table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
    box-sizing: border-box;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
    box-sizing: border-box;
}

.table tbody + tbody {
    border-top: 2px solid #dee2e6;
    box-sizing: border-box;
}

.table_bordered {
    border: 1px solid #ddd;
}
.table_bordered tbody>tr>th, .table_bordered thead>tr>th{
    background: #F1F1F1;
}
.table_bordered tbody>tr>td, .table_bordered thead>tr>td{
    background: #ffffff;
}
.table_bordered tbody>tr>th, .table_bordered tbody>tr>td,
.table_bordered thead>tr>th, .table_bordered thead>tr>td{
    border: 1px solid #ddd;
}

/*그리드*/
.btn_grid {
    display: inline-flex;
    align-items: center !important;
    justify-content: center !important;
    padding: 2px 5px !important;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 400;
    text-align: center !important;
    white-space: nowrap;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 3px;
}
.btn_grid:disabled{
    opacity: 0.5;
    cursor: no-drop;
}
.btn_grid.btn_orange{
    color: #fff;
    background-color: #e57b2f;
}
.btn_grid.btn_red{
    background-color: #dc3545;
    color: #ffffff;
}

/*메인 슬라이드*/
.splide__arrow{
    background: transparent !important;
}
.splide__pagination{
    display: flex !important;
}

.splide__pagination__main{
    position: absolute;
    bottom: 0;
    text-align: center;
    padding-bottom: 16px !important;
    width: 100%;
}

.splide__pagination__main::-webkit-scrollbar {
    display: none;
}

.splide__pagination__main .splide__pagination__page{
    margin: 0 12px !important;
    width: 8px;
    height: 8px;
    border: 0;
    padding: 6px !important;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    text-align: center;
    cursor: pointer;
    opacity: 0.5 !important;
}
.splide__pagination__main .splide__pagination__page.is-active{
    padding: 6px 35px !important;
    background-color: #1f8dd6 !important;
    border-radius: 6px !important;
}
.splide__pagination__main li{
    flex-shrink: 0;
}
.splide__pagination__main .splide__pagination__page > *{
    flex-shrink: 0;
}

/*대시보드 슬라이드*/
.splide__pagination__dashboard{
    position: absolute;
    bottom: 0;
    text-align: center;
    padding-bottom: 16px !important;
}

.splide__pagination__dashboard::-webkit-scrollbar {
    display: none;
}

.splide__pagination__dashboard .splide__pagination__page{
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
    background-color: #B7B7B7;
    text-align: center;
    cursor: pointer;
    opacity: 0.5 !important;
    box-sizing: border-box;
}
.splide__pagination__dashboard .splide__pagination__page.is-active{
    margin: 0 8px 4px 8px !important;
    width: 23px !important;
    height: 6px;
    background-color: #1f8dd6 !important;
    border-radius: 6px !important;
}
.splide__pagination__dashboard li{
    flex-shrink: 0;
}
.splide__pagination__dashboard .splide__pagination__page > *{
    flex-shrink: 0;
}

/*이벤트 슬라이드*/
.splide__pagination__tag{
    height: 24px;
    padding: 0 8px !important;
    position: static !important;
    gap: 8px;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start !important;
    box-sizing: content-box !important;
    –webkit-overflow-scrolling: touch;
    -ms-overflow-style: none; /* 인터넷 익스플로러 */
    scrollbar-width: none; /* 파이어폭스 */
    -webkit-transform: translateZ(0);
    pointer-events: auto !important;
}

.splide__pagination__tag::-webkit-scrollbar {
    display: none;
}

.splide__pagination__tag .splide__pagination__page{
    width: fit-content;
    height: 30px;
    margin: 0;
    padding: 6px 16px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    border-radius: 100px;
    background: #F5F5F5;
    color: #454545;
    font-size: 14px;
    font-weight: 500;
}
.splide__pagination__tag .splide__pagination__page.is-active{
    transform: none;
    background: #98c3e0;
    color: #000;
}
.splide__pagination__tag li{
    flex-shrink: 0;
}
.splide__pagination__tag .splide__pagination__page > *{
    flex-shrink: 0;
}
.hebees_common_modal .wrap{
    z-index: 1000 !important;
}
.hebees_common_modal .popup{
    min-width: 300px;
}
#routify-app{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
