/*Выбор турнира*/
.tab-slider {
  width: 100%;
  height: 44px;
  position: relative;
  background-color: #576075;
}

.tab-slider .tab-slider-controls {
  position: absolute;
  width: 100%;
}

.tab-slider .left-arrow,
.tab-slider .right-arrow {
  width: 32px;
  height: 44px;
  cursor: pointer;
  position: relative;
}

.tab-slider .left-arrow {
  float: left;
}

.tab-slider .right-arrow {
  float: right;
}

.tab-slider .left-arrow[aria-disabled="true"],
.tab-slider .right-arrow[aria-disabled="true"] {
  opacity: 0.3;
}

.tab-slider .left-arrow:after,
.tab-slider .right-arrow:after {
  content: '';
  width: 11px;
  height: 19px;
  background-image: url(../img/chevron-spray-white.png);
  background-size: 38px 19px;
  position: absolute;
  top: 13px;
  left: 9px;
}

.tab-slider .right-arrow:after {
  transform: rotate(180deg);
}

.tab-slider .left-arrow.disable:after,
.tab-slider .right-arrow.disable:after {
  opacity: 0.4;
}

.tab-slider .tab-slider-cont {
  margin: 0 32px;
  overflow: hidden;
}

.tab-slider .tab-slider-list {
  list-style-type: none;
  display: flex;
}

.tab-slider .tab-slider-item {
  flex-grow: 1;
  text-align: center;
  background-color: #576075;
}

.tab-slider .tab-slider-item.active {
  background-color: #ff4847;
}

.tab-slider .tab-slider-link {
  color: #ffffff;
  font-size: 17px;
  line-height: 44px;
  display: block;
  padding: 0 10px;
  box-sizing: border-box;
  max-width: 100%;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tab-slider .tab-slider-item.active .tab-slider-link {
  color: #ffffff;
}

@media (max-width: 481px) and (orientation: portrait) {
  .tab-slider {
    height: 40px;
    margin-bottom: 15px;
  }

  .tab-slider.mini {
    margin: 0;
  }

  .tab-slider .left-arrow:after,
  .tab-slider .right-arrow:after {
    top: 11px;
  }

  .tab-slider .tab-slider-link {
    font-size: 16px;
    line-height: 40px;
  }

  .tab-slider .left-arrow,
  .tab-slider .right-arrow {
    height: 40px;
  }
}
