.cpSliderKarusel{
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  user-select: none;       /* Стандартное свойство */
  -webkit-user-select: none; /* Для Safari и старых браузеров */
  -moz-user-select: none;    /* Для Firefox */
  -ms-user-select: none;     /* Для IE/Edge */
}

.cpSliderKarusel .cpSliderKarusel__btn {
  width: 70px;
  height: 100%;
  cursor: pointer;
}
.cpSliderKarusel .cpSliderKarusel__btn svg {
  width: 30px;
  margin: 0 20px;
}

.cpSliderKarusel .cpSliderKarusel__container {
  width: calc(100% - 140px);
  width: -o-calc(100% - 140px);
  width: -moz-calc(100% - 140px);
  width: -webkit-calc(100% - 140px);
  height: auto;
}

.cpSliderKarusel .cpSliderKarusel__container .cpSliderKarusel__item {
  width: 100%;
  height: auto;
}

.cpSliderKarusel .cpSliderKarusel__container .cpSliderKarusel__item.active img{
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.cpSliderKarusel .cpSliderKarusel__container .cpSliderKarusel__item img{
  display: none;
}

.cpSliderKarusel .cpSliderKarusel__description {
  width: calc(100% - 140px);
  width: -o-calc(100% - 140px);
  width: -moz-calc(100% - 140px);
  width: -webkit-calc(100% - 140px);
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
}
.cpSliderKarusel .cpSliderKarusel__description p {
  margin: 20px 0 20px 0 !important;
}

@media (max-width: 720px) {

  .cpSliderKarusel .cpSliderKarusel__btn {
    width: 35px;
  }
  .cpSliderKarusel .cpSliderKarusel__btn svg {
    width: 20px;
    margin: 0 7.5px;
  }
  .cpSliderKarusel .cpSliderKarusel__container {
    width: calc(100% - 70px);
    width: -o-calc(100% - 70px);
    width: -moz-calc(100% - 70px);
    width: -webkit-calc(100% - 70px);
  }
  
}

.cpSliderKarusel .cpSliderKarusel__container {
  position: relative;
  overflow: hidden;
}

.cpSliderKarusel .cpSliderKarusel__item {
  display: none;
  transition: opacity 0.5s ease;
}

.cpSliderKarusel .cpSliderKarusel__item.active {
  display: block;
  animation: cpSliderKarusel_fadeIn 0.5s;
}

@keyframes cpSliderKarusel_fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cpSliderKarusel .cpSliderKarusel__btn.disabled {
  cursor: default;
  pointer-events: none;
  opacity: 0.3 !important;
}