/**
 * 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 * {
    box-sizing: border-box;
}

.scrtabs-tab-container {
    height: 30px;
}

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

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

.scrtabs-allow-scrollbar .scrtabs-tabs-fixed-container {
    overflow-x: 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-tab-scroll-arrow {
    border: 1px solid #20a8ff;
    background-color: #0582d2;
    color: #fff;
    cursor: pointer;
    display: none;
    float: left;
    font-size: 14px;
    margin-bottom: -1px;
    padding-left: 2px;
    padding-top: 10px;
    width: 20px;
    height: 30px;
} 
    .scrtabs-tab-scroll-arrow.scrtabs-disable {
        color: #ddd;
        cursor: default;
    }

.scrtabs-tabs-fixed-container ul.nav-tabs > li {
    white-space: nowrap;
}
@-moz-document url-prefix() {
    .scrtabs-tabs-movable-container {
        overflow: hidden;
    }
}


.dropdown {
    display: inline-block;
    margin: 0px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 120px;
    z-index: 1;
}

    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

        .dropdown-content a:hover {
            background-color: #ddd
        }

.dropdown:hover .dropdown-content {
    display: block;
}
 