/* Slider :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.cs-slider {
  display: flex;
  /* width: 100%; */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.cs-slider .imgs {
  display: flex;
  /* max-width: calc(100vw - 5px); */
  max-width: 100vw;
  align-items: center;
  justify-content: flex-start;
  overflow-x: hidden;
}

.cs-slider .imgs img {
  height: 80vh;
  width: 100%;
  min-width: 100%;
  object-fit: cover;
}

.cs-slider .imgs img.active {
  display: block;
}

.cs-slider .dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: absolute;
  bottom: 1rem;
  padding: 0.3rem 1rem;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 100rem;
}

.cs-slider .dots>a {
  height: 0.8rem;
  width: 0.8rem;
  background-color: rgba(250, 250, 250, 0.9);
  border-radius: 100rem;
  cursor: pointer;
}

.cs-slider .dots>a.active {
  background-color: #000000;
}

.cs-slider.h40 .imgs img {
  height: 40vh;
}

.cs-slider .thumbs {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  overflow: hidden;
  flex-wrap: wrap;
}

.cs-slider .thumbs>a {
  display: flex;
  height: 7rem;
  width: 7rem;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  overflow: hidden;
  border-radius: 0.5rem;
}

.cs-slider .thumbs>a>img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media screen and (min-width: 48em) {
  .cs-slider .imgs img {
    height: 65vh;
  }

  .cs-slider.thumbs .thumbs {
    display: flex;
  }

  .cs-slider.thumbs .dots {
    bottom: 8.5rem;
  }
}