/*
======================================
section-slider
======================================
*/
.section-slider {
  background-color: var(--background-color);
  margin-bottom: 24px;
}

.section-slider__images {
  height: 480px;
  object-fit: contain;
}

.section-slider-nav__images {
  height: 184px;
  padding: 0 24px;
}

.section-slider-nav .slick-arrow {
  height: 40px;
  width: 40px;
}

.section-slider-nav .slick-next:before {
  content: '\f138';
}

.section-slider-nav .slick-prev::before {
  content: '\f137';
}

.section-slider-nav .slick-next::before,
.section-slider-nav .slick-prev::before {
  background-color: white;
  border-radius: 50px;
  color: var(--carsales-color);
  font-size: 40px;
}

@media screen and (min-width:1260px) {
  .section-slider-nav .slick-next {
    right: -64px;
  }

  .section-slider-nav .slick-prev {
    left: -64px;
  }
}

@media screen and (max-width:1023px) and (min-width:600px) {
  .section-slider__images {
    height: calc((100vw / 1024) * 480);
  }
  .section-slider-nav__images {
    height: calc((100vw / 1024) * 184);
  }
}

@media screen and (max-width:599px) {
  .section-slider__images {
    height: calc((100vw / 375) * 240);
  }
  .section-slider-nav__images {
    height: calc((100vw / 375) * 120);
    padding: 0 8px;
  }
}
