/**
 * Slide
 */

.slide {
  position: relative;
  display: none;
  flex-direction: column;
  height: 100%;
}
.slide.js-active {
  display: flex;
}

/**
 * Slide Button
 */

.slide-button {
  width: 50px;
  height: 50px;
  display: block;
  text-indent: -999px;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  background-color: transparent;
  position: absolute;
  bottom: 1.5rem;
}
.slide-button--next {
  background-image: url(../../medias/images/button/arrow--right.svg);
  right: 2.5rem;
}
.slide-button--prev {
  left: 2.5rem;
  background-image: url(../../medias/images/button/arrow--left.svg);
}
.slide--form .slide-button {
  bottom: 2.5rem;
}

.slide-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 01rem;
}
.slide-navigation__item {
  display: block;
  border-radius: 100%;
  width: 15px;
  height: 15px;
  background-color: var(--color-grey);
  margin-right: 1rem;
}
.slide-navigation__item:last-child {
  margin-right: 0;
}
.slide-navigation__item.js-active {
  background-color: var(--color-secondary--1);
}