/*!***********************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/splash-testimonials/style.scss ***!
  \***********************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/* Wrapper */
.splash-testimonial-module-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 72px 20px;
  background-color: var(--module-background-color);
  color: var(--module-text-color);
  position: relative;
  overflow: hidden;
}

/* Content Wrapper */
.splash-testimonial-content-wrapper {
  max-width: 1240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.splash-testimonial-title {
  color: var(--module-text-color);
  padding-bottom: 42px;
  text-align: center;
}

/* Carousel */
.splash-testimonial-carousel {
  position: relative;
  width: 100%;
  max-width: 1020px;
  overflow: hidden;
}

.splash-testimonial-items-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

/* Individual Testimonial */
.splash-testimonial-item {
  flex: 0 0 100%;
  box-sizing: border-box;
  text-align: left;
}

/* Item parts */
.splash-testimonial-quote {
  padding: 8px 0 18px;
}

.splash-testimonial-quote p {
  font-size: 22px;
  line-height: 32px;
  margin: 0;
}

.splash-testimonial-quote p strong {
  font-size: 24px;
}

.splash-testimonial-source-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
}

.splash-testimonial-source-wrapper img {
  width: 65px;
  height: auto;
}

.splash-testimonial-source-info-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 8px;
}

.splash-testimonial-quote-source-name {
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
}

.splash-testimonial-quote-source-pro-wrapper {
  font-size: 16px;
  line-height: 24px;
}

.splash-testimonial-quote-logo-wrapper {
  padding-top: 18px;
}

/* Arrows */
.testimonial-arrows-wrapper {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  width: 33.33%;
}

.testimonial-arrow-svg-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.testimonial-arrow-svg-wrapper:hover {
  transform: scale(1.2);
}

/* Dots */
.splash-testimonial-dots {
  text-align: center;
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.splash-dot {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.splash-dot.active {
  background: var(--module-accent-color);
}

/* Controls */
.testimonial-controls-wrapper {
  max-width: 1020px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 24px;
}

/* Timer Wrapper */
.testimonial-timer-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33.33%;
}

.testimonial-circular-timer {
  position: relative;
  width: 40px;
  height: 40px;
  transform-origin: center;
}

.testimonial-progress-circle {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.testimonial-progress-circle circle {
  fill: none;
  stroke-width: 3;
}

.testimonial-progress {
  stroke: var(--module-text-color);
  stroke-dasharray: 113.1;
  stroke-dashoffset: 113.1;
}

/* Pause/Play Button */
.testimonial-pause-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.testimonial-pause-play-button.pause::before {
  content: "❚❚";
  font-size: 16px;
  color: var(--module-text-color);
}

.testimonial-pause-play-button.play::before {
  content: "▶";
  font-size: 16px;
  color: var(--module-text-color);
}

/* Responsive Adjustments */
@media only screen and (max-width: 1020px) {
  .splash-testimonial-item {
    flex-direction: column;
    gap: 18px;
  }
  .splash-testimonial-content-wrapper {
    width: 650px;
  }
  .testimonial-controls-wrapper {
    max-width: 650px;
    padding-top: 18px;
  }
}
@media only screen and (max-width: 687px) {
  .splash-testimonial-module-wrapper {
    padding: 42px 20px;
  }
  .splash-testimonial-content-wrapper {
    width: 90%;
    align-items: flex-start;
  }
}

/*# sourceMappingURL=style-index.css.map*/