$tabs-height: 42px;
$border-bootstrap-lt-gray: 1px solid rgb(221, 221, 221);
$color-bootstrap-blue: rgb(66, 139, 202);
$background-color-bootstrap-gray-hover: rgb(238, 238, 238);

.scrtabs-tab-container * {
  box-sizing: border-box;
}

.scrtabs-tab-container {
  height: $tabs-height;
}

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

.scrtabs-tab-wrapper-container.force-height {
  height: $tabs-height;
}

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

.scrtabs-allow-scrollbar .scrtabs-tabs-fixed-container {
  overflow-x: auto;

  &::-webkit-scrollbar {
    display:none;
  }
}

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

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

.scrtabs-tab-scroll-arrow {
  border: $border-bootstrap-lt-gray;
  border-top: none;
  color: $color-bootstrap-blue;
  cursor: pointer;
  display: none;
  float: left;
  font-size: 12px;
  height: $tabs-height;
  margin-bottom: -1px;
  padding-left: 2px;
  padding-top: 13px;
  width: 20px;
  &:hover {
    background-color: $background-color-bootstrap-gray-hover;
  }
}

.scrtabs-tab-scroll-arrow--is-on-edge {
  pointer-events: none;
  opacity: .5;
}

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