﻿/**
 * jquery-bootstrap-scrolling-tabs
 * @version v1.2.2
 * @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 {
    height: 140px;
}*/
.scrtabs-tabs-fixed-container {
    float: left;
    width: 100%;
}

.scrtabs-allow-scrollbar .scrtabs-tabs-fixed-container {
    overflow-x: auto;
    overflow-y: hidden;
}
    .scrtabs-allow-scrollbar .scrtabs-tabs-fixed-container::-webkit-scrollbar {
        display: none;
    }

.scrtabs-tabs-movable-container {
    position: relative;
}
    .scrtabs-tabs-movable-container .tab-content {
        display: none;
    }
    .scrtabs-tabs-movable-container .nav {
        flex-wrap: inherit;
    }
.scrtabs-tab-scroll-arrow {
    color: white;
    cursor: pointer;
    display: none;
    float: left;
    font-size: 12px;
    height: 50px;
    padding-top: 16px;
    width: 20px;
    text-align: center;
}
    .scrtabs-tab-scroll-arrow:hover {
        color: #f37000;
    }

    .scrtabs-tab-scroll-arrow.scrtabs-disable {
        color: #ddd;
        cursor: default;
    }
.nav-tabs {
    border: 0;
}
.scrtabs-tabs-fixed-container .nav-item:after {
    content: "/";
    font-size: 1.4rem;
    color: #515151;
}
.scrtabs-tabs-fixed-container .nav-item:last-child:after {
    content: "";
}
.scrtabs-tabs-fixed-container .nav-link {
    background-color: transparent;
    padding: 0;
    height: 30px;
    width: 170px;
    color: white;
    border: 0;
    text-align: center;
    border-radius: 0;
    float: left;
}
.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
    background-color: transparent;
    color: #f37000;
    border: 0;
}
.scrtabs-tabs-fixed-container .nav-link p {
    background-color: white;
    padding: 7px 5px;
    margin: 0;
    height: 50px;
    text-align: center;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-right: 1px solid #c15900;
}
.scrtabs-tabs-fixed-container .nav-link h6 {
    line-height: 30px;
    margin: 0;
}
@media (max-width: 991px) {
    .scrtabs-tabs-fixed-container .nav-link {
        width: 100px;
    }
}