.itc-slider {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.itc-slider__wrapper {
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.itc-slider__items {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.itc-slider__item {
  flex: 0 0 100%;
  max-width: 100%;
  user-select: none;
  will-change: transform;
}

.itc-slider__btn {
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
  font-size: 20px;
  font-weight: bold;
}

.itc-slider__btn:hover {
  color: #fff;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.7);
  outline: 0;
}

.itc-slider__btn:focus {
  color: #fff;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.7);
  outline: 0;
}

.itc-slider__btn:before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

.itc-slider__btn_prev {
  left: 20px;
}

.itc-slider__btn_prev:before {
  content: '‹';
  font-size: 24px;
  line-height: 1;
}

.itc-slider__btn_next {
  right: 20px;
}

.itc-slider__btn_next:before {
  content: '›';
  font-size: 24px;
  line-height: 1;
}

.itc-slider__indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin: 0 15%;
  padding-left: 0;
  list-style: none;
}

.itc-slider__indicator {
  flex: 0 1 auto;
  width: 30px;
  height: 4px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.5);
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.itc-slider__indicator_active {
  background-color: #fff;
}
