@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;
}
.select .selectbox {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}
.select:has(.show) {
    z-index: 2;
}
.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 > 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;
    width: 100%; height: auto;
    border: 1px solid #919191;
    background: #fbfbfc;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    border-radius: 4px;
	bottom: -6px;
    left: 0;
}
.select .selectbox .option.show {
    display: block;
    z-index: 1;
}
.select .selectbox .optionWrap {
    max-height: 130px;
    position: relative;
    overflow: auto;
}
.select .selectbox .option ul {
    width: 100%;
    flex-wrap: wrap;
    display: flex;
    background-color: rgba(0,0,0,0.8);
}
.select .selectbox .option ul::-webkit-scrollbar {
    width: 7px;
}

.select .selectbox .option ul::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #162B64;
    opacity: 0;
    background-clip: padding-box;
    border: 2px solid transparent;
}

.select .selectbox .option ul::-webkit-scrollbar-track {
    background: #fbfbfc;
}
.select .selectbox .option ul > li {
    width: 100%;
}
.select .selectbox .option ul > li button {
    width: 100%; height: 40px;
    display: block;
    text-align: left;
    background: #fff;
    padding: 0 12px;
    border-bottom: 1px solid #D2D2D2;
	border: none;
}
.select .selectbox .option ul > li.active button {
    background: #ECF4FE;
}
.select .selectbox .option ul > li button:hover,
.select .selectbox .option ul > li button:focus-visible {
    color: #1260C4;
}

@media screen and (max-width: 768px) {
    .tblTop {
        flex-wrap: wrap;
    }
    .tblTop  .tblinfo {
        order: 2;
        margin-top: 24px;
    }
    .tblTop .tblSearch {
        width: 100%;
        order: 1;
    }
    .tblTop .tblSearch .inputText {
        width: calc(100% - 112px);
    }
}