/* Copyright 2020-2026 Information Management Services, Inc. */

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ TABLES GRADIENTS ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.table-gradient {
    position: relative;
}
.table-gradient .table {
    margin-bottom: 0px;
    border-bottom: 3px solid #dee2e6;
}
.table-gradient thead tr {
    background-color: #ffffff;
}

/* ~~~~~ TABLE GRADIENTS - CLICKABLE REGIONS ~~~~~ */
.table-gradient a.gradient {
    position: absolute;
    top: 0;
    font-size: 3em;
    color: #333333;
    text-shadow: 0px 0px 34px #ffffff;
    height: 100%;
    width: 2em;
    text-align: center;
    cursor: pointer;
    z-index: 900;
}
.gradient {
    /* The gradients are not rendered by default.  JavaScript will toggle the visibility if the seeker settings enable showTableGradient */
    visibility: hidden;
}
.gradient:hover {
    text-decoration: none;
}
.table-gradient .scroll-side-right:hover,
.table-gradient .scroll-side-left:hover {
    color: #2c71ad;
}
@media (max-width: 500px) {
    .table-gradient a.gradient {
        font-size: 1em;
    }
}

/* ~~~~~ TABLE GRADIENTS - ARROWS ~~~~~ */
.scroll-arrow {
    position: absolute;
    left: 34px;
}
.gradient .scroll-arrow:after {
    font-family: FontAwesome, sans-serif;
    position: relative;
    font-size: 0.65em;
    z-index: 999;
    text-shadow: 0 0 28px #ffffff;
    color: #2c71ad;
}
.gradient .scroll-side-arrow-left:after {
    content: "\f137";
}
.gradient .scroll-side-arrow-right:after {
    content: "\f138";
}
.gradient .scroll-arrow:hover {
    text-decoration: none;
    cursor: pointer;
}
@media (max-width: 768px) {
    .gradient .scroll-arrow:after {
        content: none;
    }
}
@media (max-width: 500px) {
    .table-gradient span[id*="scroll-side-arrow-"] {
        display: none;
    }
}

/* ~~~~~ TABLE GRADIENTS - RIGHT SIDE ~~~~~ */
.table-gradient .scroll-side-right {
    background-image: linear-gradient(to left, #9e9e9e8f, #fff0);
    right: 0;
}
.table-gradient #scroll-side-right {
    background-image: linear-gradient(to left, rgba(158, 158, 158, 0.6), rgba(255, 255, 255, 0));
}
.table-gradient .scroll-side-right:hover {
    background-image: linear-gradient(to left, #7979798a, #fff0);
}

/* ~~~~~ TABLE GRADIENTS - LEFT SIDE ~~~~~ */
.table-gradient .scroll-side-left {
    background-image: linear-gradient(to right, #9e9e9e8f, #fff0);
    left: 0;
}
.table-gradient #scroll-side-left {
    background-image: linear-gradient(to right, rgba(158, 158, 158, 0.6), rgba(255, 255, 255, 0));
}
.table-gradient .scroll-side-left:hover {
    background-image: linear-gradient(to right, #7979798a, #fff0);
}
