/**
  * SimpleAdaptiveSlider by itchief (https://github.com/itchief/ui-components/tree/master/simple-adaptive-slider)
  * Copyright 2020 - 2022 Alexander Maltsev
  * Licensed under MIT (https://github.com/itchief/ui-components/blob/master/LICENSE)
  */

/* стили для корневого элемента слайдера */
.itcss {
 position: relative;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* стили для wrapper */
.itcss__wrapper {
  position: relative;
    overflow: hidden;
}

/* стили для элемента, в котором непосредственно расположены элементы (слайды) */
.itcss__items {
  display: flex;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: transform 0.5s ease;
  will-change: transform;
}

/* стили для элементов */
.itcss__item {
  position: relative;
  flex: 0 0 100%;
  max-width: 100%;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform;
}

/* кнопки Prev и Next */
.itcss__btn {
    position: absolute;
    bottom: -112px;
    width: 88px;
    height: 56px;
    transform: translateY(-50%);
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #EFF0F4;
    opacity: 1;
    user-select: none;
    border-radius: 7px;
    border: none;
}

.itcss__btn_hide {
  display: none;
}

.itcss__btn:hover,
.itcss__btn:focus {
  color: #fff;
  text-decoration: none;
  border: none;
  opacity: 0.7;
}

.itcss__btn_prev {
  right: 97px;
  display: flex;
}

.itcss__btn_next {
  right: 0;
    display: flex;
}

.itcss__btn::before {
  content: "";
  display: inline-block;
      width: 40px;
    height: 40px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

.itcss__btn_prev::before {
  background: url(/img/otzyvy/str.png) no-repeat -5px center;
}

.itcss__btn_next::before {
  background: url(/img/otzyvy/str2.png);
}

/* Индикаторы */
.itcss__indicators {
  position: absolute;
    left: 0;
    right: 0;
    bottom: -60px;
    display: flex;
    justify-content: flex-start;
    padding-left: 0;
    margin: 0 0%;
    list-style: none;
    user-select: none;
    max-width: calc(100% - 205px);
}

.itcss__indicator {
  flex: 0 1 auto;
    width: 25%;
    height: 3px;
    margin-right: 0px;
    margin-left: 0px;
    background-color: #EFF0F4;
    background-clip: padding-box;
    cursor: pointer;
}

.itcss__indicator_active {
  background-color:#13AE70
}

/* класс для отключения transition */
.transition-none {
  transition: none;
}

.d-none {
  display: none;
}


.itcss__items {
      counter-reset: slide;
    }

    .itcss__item {
      counter-increment: slide;
    }

    .itcss__item>div::before {
      content: counter(slide);
      position: absolute;
      top: 10px;
      right: 20px;
      color: #fff;
      font-style: italic;
      font-size: 32px;
      font-weight: bold;display: none;
    }


@media screen and (max-width:700px) and (min-width:200px){
.itcss__btn {
    width: 70px;
    height: 40px;
    bottom: -100px;
}    
.itcss__btn::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background-size: 100% 100%;
}
.itcss__btn_prev {
    right: 80px;
    display: flex;
}
.itcss__indicators {
    max-width: calc(100% - 170px);
}


.itcss {
 position: relative;
    max-width: 94%;
    margin-left: auto;
    margin-right: auto;
}
















}   