* {
  box-sizing: border-box;
/*  font-family: Roboto;*/
}

.tabs--container {
  margin: 0 auto;
}

.tabs {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tabs--scrollable {
  display: flex;
  position: relative;
  top: 1px;
  flex-grow: 1;
  flex-shrink: 1;
  flex-direction: row;
}

.tabs__scroller {
  border: 0 none;
  color: #A1A3A3;
  font-size: 1em; background: transparent;
}
.tabs__scroller .fa {
  position: relative;
}
.tabs__scroller--left .fa {
  left: -1px;
}
.tabs__scroller--right .fa {
  right: -2px;
}
.tabs__scroller[disabled] {
  opacity: 0.5;
}
.tabs__scroller:focus {
  outline: none;
}

.tabs__toggle-group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  flex-grow: 1;
  flex-shrink: 1;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

.tabs__toggle {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-grow: 1;
  flex-shrink: 1;
  /* flex-basis: 0%; */
  white-space: nowrap;
}

.tabs__toggle {
  margin: 0px 20px;
  padding: 0px 0px 4px 0px;
  color: #58595b;
  text-align: center;
  background: #fff;
  border-right: 0px;
  border-left: 0px;
  border-bottom: 1px solid transparent;
}
.tabs__toggle:first-child {
  margin-left: 0;
}
.tabs__toggle:hover {
  color: #000;
}
.tabs__toggle--active {
  color: #000;
  background: #fff;
}
.tabs__toggle--active::before {
    content: "";
    position: absolute;
    width: 100%;
    bottom: 0;
    right: 0px;
    left: 0px;
    height: 2px;
    background-color: #005BA1;
}

.tabs__tabs-group {
    /*border: 1px solid #e4e4e4;*/
}

.tabs__tab {
  width: 100%;
  padding: 24px;
}

.tabs__left {
  position: absolute;
  left: 0;
  opacity: 0.5;
}
.tabs__left::before {
  content: "<";
  background: #0195e7;
  color: #fff;
  width: 30px;
  display: inline-block;
}
.tabs__left--active {
  opacity: 1;
}

.tabs__right {
  position: absolute;
  right: 0;
  opacity: 0.5;
}
.tabs__right::after {
  content: ">";
  background: #0195e7;
  color: #fff;
  width: 30px;
  display: inline-block;
}
.tabs__right--active {
  opacity: 1;
}