/**
 * jquery-bootstrap-scrolling-tabs
 * @version v2.4.0
 * @link https://github.com/mikejacobson/jquery-bootstrap-scrolling-tabs
 * @author Mike Jacobson <michaeljjacobson1@gmail.com>
 * @license MIT License, http://www.opensource.org/licenses/MIT
 */
.scrtabs-tab-container * {
    box-sizing: border-box;
}

.scrtabs-tab-container {
    /*height: 42px;*/
}

    .scrtabs-tab-container .tab-content {
        clear: left;
    }

    .scrtabs-tab-container.scrtabs-bootstrap4 .scrtabs-tabs-movable-container > .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row;
    }

.scrtabs-tabs-fixed-container {
    float: left;
    /*height: 42px;
    overflow: hidden;*/
    width: 100%;
}

.scrtabs-tabs-movable-container {
    position: relative;
}

    .scrtabs-tabs-movable-container .tab-content {
        display: none;
    }

.scrtabs-tab-container.scrtabs-rtl .scrtabs-tabs-movable-container > ul.nav-tabs {
    padding-right: 0;
}

.scrtabs-tab-scroll-arrow {
    border: 0px solid #dddddd;
    border-top: none;
    color: #ffffff;
    display: none !important;
    float: left;
    font-size: 12px;
    margin-bottom: -1px;
    padding: 8px 0px;
    width: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .scrtabs-tab-scroll-arrow {
        display: block !important;
    }

    .scrtabs-tabs-fixed-container {
        float: left;
        /*height: 42px;*/
        overflow: hidden;
        width: 100%;
    }
}

.scrtabs-tab-scroll-arrow:hover {
    background-color: #eeeeee;
}

.scrtabs-tab-scroll-arrow,
.scrtabs-tab-scroll-arrow .scrtabs-click-target {
    cursor: pointer;
}

    .scrtabs-tab-scroll-arrow.scrtabs-with-click-target {
        cursor: default;
    }

    .scrtabs-tab-scroll-arrow.scrtabs-disable,
    .scrtabs-tab-scroll-arrow.scrtabs-disable .scrtabs-click-target {
        color: #ddd;
        cursor: default;
    }

        .scrtabs-tab-scroll-arrow.scrtabs-disable:hover {
            background-color: initial;
        }

.scrtabs-tabs-fixed-container ul.nav-tabs > li {
    white-space: nowrap;
    padding: 0px 16px;
}

.scrtabs-tabs-movable-container .nav.nav-tabs {
    border: none;
}

.scrtabs-tab-scroll-arrow {
    margin-top: 55px;
}
