/**
 * jquery-bootstrap-scrolling-tabs
 * @version v0.0.3
 * @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: 50px;
  position:relative;
}
.scrtabs-tab-container .tab-content {
  clear: left;
}
.scrtabs-tabs-fixed-container {
  float: left;
  height: 50px;
  overflow: hidden;
  width: 100%;
}
.scrtabs-tabs-movable-container {
  position: relative;
}
.scrtabs-tabs-movable-container .tab-content {
  display: none;
}

.scrtabs-tab-scroll-arrow {
  /*border: 1px solid #dddddd;*/
  /*border-top: none;*/
  border-bottom: 2px solid #ddd;
  position:absolute;
  bottom:1px;
  right:0;
  color: #0AB2D0;
  cursor: pointer;
  float: left;
  font-size: 12px;
  height: 42px;
  margin-bottom: -1px;
  padding-left: 2px;
  padding-top: 16px;
  width: 20px;
  text-align: center;
}
.scrtabs-tab-scroll-arrow:hover {
/*  background-color: #eeeeee;*/
}
.scrtabs-tab-scroll-arrow.scrtabs-js-tab-scroll-arrow-left{right:20px;}

.scrtabs-tabs-fixed-container ul.nav-tabs {
  height: 41px;
}
.scrtabs-tabs-fixed-container ul.nav-tabs > li {
  white-space: nowrap;
}

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