/**
 * ItcSlider
 * @version 1.0.1
 * @author https://github.com/itchief
 * @copyright Alexander Maltsev 2020 - 2023
 * @license MIT (https://github.com/itchief/ui-components/blob/master/LICENSE)
 * @tutorial https://itchief.ru/javascript/slider
 */

    /*.itc-slider-item {*/
    /*  flex: 0 0 33.3333333333%;*/
    /*  */
    /*}*/

/*.itc-slider {*/
/*  position: relative;*/
/*}*/

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

.itc-slider-wrapper_banner {
  overflow: visible;
}

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

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

.itc-slider-item {
  user-select: none;
  will-change: transform;
}

/* индикаторы */
.itc-slider-indicators {
  display: flex;
  justify-content: center;
}

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

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