/*
 * This controls theme colors
 * Bootstrap will generate classes like btn-color-1, btn-black, text-color-1, bg-color-1, etc.
 * The classes can then be used across the site without repeating code
 */
/*
 * Do a sitewide search (CTRL + SHIFT + F if you're using Sublime Text or whatever your coding GUI has for a search in all files)
 * to see where these variables are used in the SASS code. They're all Bootstrap variables that control certain aspects of elements
 */
/**
 * Bootstrap removes the margin-left/right over the sm breakpoint and if we set it customly afterwards, it breaks the centered modal since it's no longer margin: auto.
 * We also can't remove this one because the value is used in a min-height calculation and removing causes the modal to go haywire on mobile
 * So set it at 15px and then after the sm breakpoint when it gets set to auto, add extra padding as need on .modal-dialog
 *
 * LE: messing with custom margins / paddings and modal-dialog is too much fuss. Simply ignore
 */
.block-reviews {
  padding: clamp(3.75rem, 0.9389671362vw + 3.5299295775rem, 4.375rem) clamp(0rem, 0vw + 0rem, 0rem);
}
.block-reviews .block-top {
  margin-bottom: clamp(1.875rem, 2.8169014085vw + 1.2147887324rem, 3.75rem);
}
.block-reviews .slider {
  padding-left: 16px;
}
@media (min-width: 1440px) {
  .block-reviews .slider {
    padding-left: 30px;
  }
}
.block-reviews .item {
  padding-top: clamp(1.875rem, 0.9389671362vw + 1.6549295775rem, 2.5rem);
  padding-bottom: clamp(1.875rem, 0.9389671362vw + 1.6549295775rem, 2.5rem);
  padding-left: clamp(1.875rem, 0.9389671362vw + 1.6549295775rem, 2.5rem);
  padding-right: clamp(1.875rem, 0.9389671362vw + 1.6549295775rem, 2.5rem);
  display: flex;
  flex-direction: column;
  background: var(--bs-white);
}
.block-reviews .item img {
  width: 100%;
  max-width: 180px;
  margin: 0 auto 2.1875rem;
}
@media (min-width: 576px) {
  .block-reviews .item img {
    max-width: 290px;
  }
}
@media (min-width: 768px) {
  .block-reviews .item img {
    max-width: 370px;
  }
}
@media (min-width: 1440px) {
  .block-reviews .item img {
    margin-bottom: 0;
  }
}
.block-reviews .item .review-rating {
  margin: 0 0 20px;
}
.block-reviews .item .content {
  margin-bottom: 30px;
  line-height: 1.75;
}
.block-reviews .item .content > * {
  margin-bottom: 30px;
}
.block-reviews .item .review-source {
  margin-top: auto;
}
.block-reviews .splide__pagination {
  position: static;
  margin-top: 30px;
}
.block-reviews .splide__pagination button {
  background: var(--bs-color-4);
  border-color: var(--bs-white);
}
.block-reviews .splide__pagination button.is-active {
  background: var(--bs-white);
  border-color: var(--bs-white);
}
.block-reviews .splide__arrow--prev {
  left: 0;
}
.block-reviews .splide__arrow--next {
  right: 0;
}