@charset "UTF-8";

/* select */
.select {
    position: relative;
    display: inline-flex;
    width: 104px; height: 40px;
}
.select select {
    position: absolute;
    top: 50%; left: 50%;
    width: 1px; height: 1px;
    visibility: hidden;
}
.select .selectbox {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}
.select .selectbox > button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%; height: 100%;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #919191;
    text-align: left;
    padding-left: 12px;
}
.select .selectbox:has(.show) > button {
    border-radius: 8px 8px 0 0 !important;
}
.select .selectbox > button:after {
    content: "";
    display: block;
    width: 40px; height: 40px;
    min-width: 40px;
    background-image: url(img/icon_select-arrow-down.svg);
    background-repeat: no-repeat;
    background-position: center;

}
.select .selectbox > button:has(+ .show):after {
    transform: rotate(180deg);
}
.select .selectbox > button > span {
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space:nowrap;
}
.select .selectbox .option {
    display: none;
    position: absolute;
    bottom: 1px; left: 0;
    width: 100%; height: auto;
    border: 1px solid #D8D8D8;
    background: #fbfbfc;
    max-height: 203px;
    overflow: auto;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    border-radius: 0 0 8px 8px;
}
.select .selectbox .option::-webkit-scrollbar {
    width: 7px;
}

.select .selectbox .option::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #08627D;
    opacity: 0;
    background-clip: padding-box;
    border: 2px solid transparent;
}

.select .selectbox .option::-webkit-scrollbar-track {
    background: #fbfbfc;
}
.select .selectbox .option.show {
    display: block;
    position: relative;
    z-index: 1;
}
.select .selectbox .option ul {
    width: 100%;
    flex-wrap: wrap;
    display: flex;
    background-color: rgba(0,0,0,0.8);

}
.select .selectbox .option ul > li {
    width: 100%;
}
.select .selectbox .option ul > li button {
    width: 100%; min-height: 40px;
    display: block;
    text-align: left;
    background: #fff;
    padding: 0 12px;
    border-bottom: 1px solid #D2D2D2;
}
.select .selectbox .option ul > li.active button {
    background: #F8F8F8;
}
.select .selectbox .option ul > li button:hover,
.select .selectbox .option ul > li button:focus-visible {
    color: #1D1D1D;
}

@media screen and (max-width: 767px) {
    .tblTop {
        flex-wrap: wrap;
    }
    .tblTop  .tblinfo {
        order: 2;
        margin-top: 24px;
    }
    .tblTop .tblSearch {
        width: 100%;
        order: 1;
    }
    .tblTop .tblSearch .inputText {
        width: calc(100% - 112px);
    }
}