.r-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 5px 0;
}

.r-slider__slides {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--gap);
  width: var(--slider-width);
  left: var(--edge-width);
}

.r-slider__slides.in-transition {
  -webkit-transition: left var(--animation-duration) ease-in-out;
  transition: left var(--animation-duration) ease-in-out;
}

.r-slider__slide {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: all var(--animation-duration) ease-in-out;
  transition: all var(--animation-duration) ease-in-out;
}

.r-slider__slide-caption {
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  color: #FFF;
}

.r-slider__slide.r-slider__slide--active {
  outline: 5px solid rgba(225, 202, 127, 0.9);
  -webkit-transform: scale(1);
          transform: scale(1);
}

.r-slider__slide-img {
  width: 100%;
}

.r-slider__controls {
  position: absolute;
  top: calc(50% - 25px);
  left: 20px;
  width: calc(100% - 40px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.r-slider__prev, .r-slider__next {
  background: rgba(0, 0, 0, 0.4);
  border: 0;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 32px;
  color: #FFF;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.r-slider__prev:hover, .r-slider__next:hover {
  background: rgba(0, 0, 0, 0.8);
}
/*# sourceMappingURL=r-slider.css.map */