/* =testimonial-rotator block
*/


.testimonial__slider {
  position: relative;
  width: 100%;
  margin: 20px auto 0;
}
@media only screen and (min-width: 768px) {
  .testimonial__slider {
    margin-top: 0;
  }
}

.testimonial__slider__inner-container {
  position: relative;
  width: 100%;
}

.testimonial {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .testimonial__slider::before {
    top: 0;
    left: -50px;
    font-size: 80px;
  }
}

.testimonial__slider .testimonial__slider__inner-container ul {
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

.testimonial__slider .testimonial__slider__inner-container li {
  width: 100%;
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

.testimonial__slider blockquote {
  background: none;
  font-family: var(--wp--preset--font-family--primary);
  padding: 0;
  font-size: var(--wp--preset--font-size--medium);
  position: relative;
}

.testimonial__slider blockquote cite {
  font-family: var(--wp--preset--font-family--system-font);
  text-transform: none;
  letter-spacing: 0;
}

.testimonial__slider .testimonial__name {
  font-family: var(--wp--preset--font-family--system-font);
  font-weight: bold;
  text-transform: uppercase;
  font-size: var(--wp--preset--font-size--min);
  display: block;
  margin-bottom: 0;
}
.testimonial__slider .testimonial__title {
  margin-top: 0;
  color: var(--wp--custom--color--gray-700);
  font-size: var(--wp--preset--font-size--tiny);
  font-weight: normal;
}

.jshowoff-controls {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .jshowoff-controls {
    position: absolute;
    top: 50%;
    margin-top: -22px;
    left: -94px;
    right: -94px;
    width: calc(100% + 196px);
  }
}


.jshowoff-controls a {
  text-indent: -9999px;
  display: block;
  width: 30px;
  height: 30px;
  padding: 9px;
  background-size: 30px 30px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  opacity: 0.5;
}
.jshowoff-controls a:hover, .jshowoff-controls a:focus, .jshowoff-controls a:active {
  opacity: 1;
}
.jshowoff-controls .jshowoff-play {
  display: none;
}
.jshowoff-controls .jshowoff-prev {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 31 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.044 31.111 2 16.056 17.044 1M30.422 16.056H2' stroke='%232F2F35' stroke-width='1.557' stroke-miterlimit='10'/%3E%3C/svg%3E");
}
.jshowoff-controls .jshowoff-next {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m13.379 1 15.044 15.056L13.38 31.11M0 16.056h28.422' stroke='%232F2F35' stroke-width='1.557' stroke-miterlimit='10'/%3E%3C/svg%3E");
}


/*Testimonial Nav*/
.testimonial-nav {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  scroll-snap-type: x mandatory;
  justify-content: flex-start;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE 10+ */
  border-top: 1px solid var(--wp--preset--color--senary);
}

.testimonial-nav::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.testimonial-nav-item {
  display: flex;
  align-items: center;
  text-align: left;
  flex-shrink: 0;
  scroll-snap-align: center;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
  min-width: 260px;
  max-width: 300px;
  margin-top: 2rem;
}

.testimonial-nav-item.active {
  opacity: 1;
  position: relative;

  &::before {
    top: -2rem;
    left: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    mask-composite: exclude;
    border-color: rgba(0, 0, 0, 0);
    border-top-color: var(--wp--preset--color--senary);
    border-width: 10px;
    margin-left: -10px;
  }
}

.testimonial-nav-item img {
  border-radius: 50%;
  width: 60px;
  min-width: 60px;
  height: 60px;
  margin-right: 0.5rem;
  flex-shrink: 0;
}
@media only screen and (min-width: 768px) {
  .testimonial-nav-item img {
    width: 100px;
    min-width: 100px;
    height: 100px;
  }
}

.testimonial-nav-item .testimonial__name {
  font-weight: bold;
  margin-bottom: 0.25rem;
  color: var(--wp--preset--color--primary);
}

.testimonial-nav-item .testimonial__title {
  font-size: 0.875rem;
  margin: 0;
}

/*With Dark Background*/
.has-dark-gray-background-color .block-testimonial-rotator.has-featured-style {
  .testimonial {
    padding: 4rem 2rem 1.5rem;
    background: rgba(255,255,255,.1);
  }

  .testimonial-nav-item.active {
    &::before {
      border-top-color: rgba(255,255,255,.1);
    }
  }
}
