.ch-slider-wrapper {
  height: 100%;
  overflow: hidden;
}

.ch-slider-container {
  height: 100%;
  display: flex;
  position: relative;
  z-index: 2;
}

.ch-slider-slide {
  width: 100%;
  height: 100%;
  position: relative;
  transition: all 1000ms;
}

.ch-slider-arrow {
  cursor: pointer;
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.ch-slider-arrow.__back {
  left: 20px;
}

.ch-slider-arrow.__next {
  right: 20px;
}

.ch-slider-dots {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 15px;
}

.ch-slider-dot {
  margin: 10px 5px;
  cursor: pointer;
  border-radius: 50px;
  box-sizing: border-box;
}

@media screen and (max-width: 640px) {
  .ch-slider-arrow {
    width: 24px !important;
    height: 24px !important;
  }

  .ch-slider-arrow.__back {
    left: 15px;
  }

  .ch-slider-arrow.__next {
    right: 15px;
  }

  .ch-slider-arrow svg {
    width: 6px !important;
  }
}