
.itc-slider {
  position: relative;
}

.itc-slider-wrapper {
  overflow: hidden;
}

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

.itc-slider-transition-none {
  transition: none;
}

.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: rgb(255, 255, 255);
  border: none;
  transform: translateY(-50%);
  cursor: pointer;
  border-radius: 50%;
}

.itc-slider-btn-hide {
  background: #ffffff73;
}

.itc-slider-btn-prev {
  left: 10px;
}

.itc-slider-btn-next {
  right: 10px;
}

.itc-slider-btn:hover,
.itc-slider-btn:focus {
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.767);
  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::before {
  background-image: url("/img/left.svg");
}

.itc-slider-btn-next::before {
  background-image: url("/img/right.svg");
}

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

.itc-slider-indicator {
  border-radius: 50px;
  flex: 0 1 auto;
  box-sizing: content-box;
  width: 11px;
  height: 1px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  background-color: rgb(255 255 255 / 50%);
  border-bottom: 10px solid transparent;
  cursor: pointer;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.itc-slider-indicator-active {
  background-color: rgb(255 255 255 / 90%);
  width: 25px;
}
