/** Shopify CDN: Minification failed

Line 35:9 Expected ":"
Line 163:0 Expected "}" to go with "{"

**/
.testimonials-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px
}
.testimonials-section {
  padding: 60px 0;
}
.testimonials-description {
  margin-top: 0.5em;
  font-size: 1rem;
  color: #555;
}
.testimonials-grid {
  margin-top: 2em;
  display: grid;
  gap: 2em;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.testimonials-right {
  display: flex;
  flex-direction: column;
  gap: 40px
}
.testimonial-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding 0;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.testimonial-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonials-icon {
  width: 50px;
  height: 50px;
}
.testimonials-icon svg {
  user-select: none;
  width: 100%;
  height: 100%;
  display: inline-block;
  fill: rgb(110, 110, 110);
  color: rgb(110, 110, 110);
  flex-shrink: 0;
}
.testimonials-heading {
  font-size: 32px;
  font-weight: 700;
}
.testimonials-subheading {
  font-size: 18px;
}
.testimonial-stars {
  letter-spacing: -1px;
  color: black;
  font-size: 1.2em;
}
.testimonial-stars svg {
  width: 100px;
  height: auto;
}
.testimonial-text {
  margin: 1em 0;
}
.testimonial-name {
  font-size: 20px;
  font-weight: bold;
}
.testimonial-location {
  font-size: 16px;
}
.testimonial-date {
  font-size: 14px;
  color: #888;
}
.testimonial-more {
  background: none;
  border: none;
  color: black;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font-weight: 600;
}
.testimonial-more:hover {
  opacity: 0.8;
}

/* TESTIMONIALS TRUST BLOCK */
[data-rating^="4"] .short-star-1 {
    border-color: var(--short-star-color);
    background: var(--short-star-color);
}
[data-rating^="4"] .short-star-2 {
    border-color: var(--short-star-color);
    background: var(--short-star-color);
}
[data-rating^="4"] .short-star-3 {
    border-color: var(--short-star-color);
    background: var(--short-star-color);
}
[data-rating^="4"] .short-star-4 {
    border-color: var(--short-star-color);
    background: var(--short-star-color);
}
[data-rating^="4.5"] .short-star-5 {
    border-left-color: var(--short-star-color);
}
.trustpilot-stars-top {
  position: relative;
  top: 2px;
  font-size: 14px !important;
}
.rating-mn i {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-width: 0 0.75em;
    border-style: solid;
    border-color: var(--short-star-inactive);
    border-radius: 0;
    color: white;
    background: var(--short-star-color);
    font-style: normal;
    line-height: 24px;
    text-indent: -8px;
    text-shadow: 1px 0 1px #b3b3b3;
}

@media (width >= 1024px) {
  .testimonials-wrapper {
    grid-template-columns: 1fr 2fr;
    gap: 40px
  }

  .testimonial-block {
    grid-template-columns: auto 3fr;
    gap: 40px;
    padding: 1.5em;
  }
  
  .testimonial-info {
    flex-direction: row;
  }
  .testimonials-right {
    flex-direction: column;
    gap: unset;
  }
