@charset "UTF-8";

.taiouTbl-instance {
    padding: 0 20px;
}

.taiouTbl-outer {
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
    border: 1px solid #ced6e7;
    text-align: center;
}

.taiouTbl-wrap {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    cursor: ew-resize;
    user-select: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.taiouTbl-wrap::-webkit-scrollbar {
    display: none;
}

.taiouTbl-wrap.taiouTbl-dragging {
    cursor: grabbing;
}

.taiouTbl-outer table {
    border-collapse: separate;
    border-spacing: 0;
    width: max-content;
    min-width: 100%;
    font-size: 13px;
}

.taiouTbl-outer th,
.taiouTbl-outer td {
    padding: 14px 30px;
    white-space: nowrap;
    border-bottom: 1px solid #ced6e7;
    background: #fff;
}

.taiouTbl-outer td:nth-of-type(odd) {
    background-color: #f2f6fd;
}

.taiouTbl-outer thead th {
    position: sticky;
    top: 0;
    z-index: 3;
    background: #0c3387;
    color: #fff;
}

.taiouTbl-outer tbody th {
    position: sticky;
    left: 0;
    z-index: 2;
}

@media screen and (max-width: 600px) {
    .taiouTbl-outer tbody th {
        word-wrap: break-word;
        white-space: pre-wrap;
        max-width: 150px;
    }
}

.taiouTbl-outer thead th:first-child {
    left: 0;
    z-index: 4;
    background: #0c3387;
}

.taiouTbl-fixedClone {
    position: fixed;
    top: 80px;
    left: 0;
    z-index: 50;
    pointer-events: none;
    display: none;
    height: var(--taiouTbl-head-h, auto);
    font-size: 13px;
}

@media screen and (max-width: 1200px) {
    .taiouTbl-fixedClone {
        top: 60px;
    }
}

.taiouTbl-fixedClone table {
    border-collapse: separate;
    border-spacing: 0;
}

.taiouTbl-fixedClone th {
    background: #0c3387;
    color: #fff;
    white-space: nowrap;
    padding: 14px 30px;
}

.taiouTbl-cloneFirstCol {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    overflow: hidden;
}

.taiouTbl-cloneScrollWrap {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.taiouTbl-carrierFilter {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    padding: 3em 0 2em 0;
}

.taiouTbl-carrierBtn {
    padding: 0.5em 1.5em;
    border: 1px solid #0c3387;
    color: #0c3387;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}

.taiouTbl-carrierBtn::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 1em;
    border-right: 2px solid #0c3387;
    border-bottom: 2px solid #0c3387;
    transform: rotate(45deg);
    transition: 0.3s;
}

.taiouTbl-carrierBtn.taiouTbl-active,
.taiouTbl-carrierBtn:hover {
    background: #0c3387;
    color: #fff;
    transition: 0.3s;
}

.taiouTbl-carrierBtn.taiouTbl-active::after,
.taiouTbl-carrierBtn:hover::after {
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transition: 0.3s;
}
