/**
 * jquery-bootstrap-scrolling-tabs
 * @version v2.2.1
 * @link https://github.com/mikejacobson/jquery-bootstrap-scrolling-tabs
 * @author Mike Jacobson <michaeljjacobson1@gmail.com>
 * @license MIT License, http://www.opensource.org/licenses/MIT
 */
 .nav>li>a {
   padding: 8px 12px!important;
}
.scrtabs-tab-container * {
  box-sizing: border-box; }

.scrtabs-tab-container {
  height: 50px; }
  .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: 50px;
  overflow: hidden;
  width: 100%;
  border-top:1px solid #ddd; 
  border-bottom:1px solid #ddd;
  /*border-left: 1px solid #ddd;
  border-right: 1px solid #ddd; */
}

.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: 1px solid #dddddd;*/
  background: #42383c;
  color: #fff;
  cursor: pointer;
  display: none;
  float: left;
  font-size: 10px;
  height: 20px;
    border-radius: 50%;
    position: relative;
    top: 16px;
  margin-bottom: -1px;
  /*padding-left: 5px;
  padding-top: 15px;*/
  width: 20px; 
}
  .scrtabs-tab-scroll-arrow:hover {
    background-color: #ef2b40;
    color: #fff; 
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
  }

.scrtabs-tab-scroll-arrow .glyphicon {
    position: relative;
    top: 5px;
    left: 5px;
}
.scrtabs-tab-scroll-arrow.scrtabs-disable {
  color: #ddd;
  cursor: default; }

.scrtabs-tabs-fixed-container ul.nav-tabs > li {
  white-space: nowrap; }
