.testimonial-scroller .slick-dots {
  bottom: -3.875rem;
}

.testimonial-scroller .slick-dots button:before {
  font-size: 1.25rem;
}

.testimonial-btn-container {
  width: 13.125rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.testimonial-btn-container .testimonial-btn {
  cursor: pointer;
  background: none;
  border: 1px solid #3917171f;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  transition: background-color .3s, border-color .3s;
  display: flex;
  position: relative;
}

.testimonial-btn-container .testimonial-btn img {
  z-index: 1;
  width: 12px;
  height: auto;
  transition: transform .3s, opacity .3s;
  position: relative;
}

.testimonial-btn-container .testimonial-btn:before {
  content: "";
  background-color: var(--color-dark, #000);
  opacity: 0;
  z-index: 0;
  width: 0;
  height: 2px;
  transition: width .3s, opacity .3s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.testimonial-btn-container .testimonial-btn-prev:before {
  left: 45%;
}

.testimonial-btn-container .testimonial-btn-next:before {
  right: 45%;
}

.testimonial-btn-container .testimonial-btn:hover:before {
  opacity: 1;
  width: .625rem;
}

.testimonial-btn-container .testimonial-btn:hover img {
  opacity: .8;
}

.testimonial-btn-container .testimonial-btn-prev:hover img {
  transform: translateX(-2px)rotate(90deg);
}

.testimonial-btn-container .testimonial-btn-next:hover img {
  transform: translateX(2px)rotate(-90deg) !important;
}

.testimonial-btn-container .testimonial-btn-next img {
  transform: rotate(-90deg) !important;
}

.testimonial-btn-container .testimonial-btn-prev img {
  transform: rotate(90deg);
}

.testimonial-btn-container .testimonial-btn-next {
  position: absolute;
  right: 0;
}

.testimonial-btn-container .testimonial-btn.slick-arrow.slick-hidden {
  display: none;
}


/*# sourceMappingURL=testimonialScroller.css.map*/