/** Shopify CDN: Minification failed

Line 20:5 Unexpected "{"
Line 20:14 Expected ":"
Line 20:21 Unexpected "{"
Line 23:14 Expected identifier but found whitespace
Line 23:16 Unexpected "{"
Line 23:25 Expected ":"
Line 23:59 Expected ":"
Line 24:17 Expected identifier but found whitespace
Line 24:19 Unexpected "{"
Line 24:28 Expected ":"
... and 126 more hidden warnings

**/
/* =========================================================
   VIDEO TESTIMONIALS
   ========================================================= */

#vt-{{ section.id }} {
  background: var(--vt-bg);
  color: var(--vt-heading);
  padding-top: {{ section.settings.section_padding_top }}px;
  padding-bottom: {{ section.settings.section_padding_bottom }}px;
  overflow: hidden;
}

#vt-{{ section.id }} *,
#vt-{{ section.id }} *::before,
#vt-{{ section.id }} *::after {
  box-sizing: border-box;
}


/* =========================================================
   CONTAINER
   ========================================================= */

#vt-{{ section.id }} .vt__container {
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

#vt-{{ section.id }} .vt__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}


/* Heading */

#vt-{{ section.id }} .vt__heading {
  margin: 0;
  font-size: clamp(42px, 3.6vw, 64px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -1px;
}

#vt-{{ section.id }} .vt__highlight {
  color: var(--vt-highlight);
}


.vt__stat:first-child{
    border-right: 1px solid var(--vt-highlight);;
}

/* =========================================================
   RATING SUMMARY
   ========================================================= */

#vt-{{ section.id }} .vt__stats {
  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 520px;
  min-height: 108px;

  padding: 16px 34px;

  background: #fff;
  border-radius: 16px;

  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.02);
}


#vt-{{ section.id }} .vt__stat {
  flex: 1;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}


#vt-{{ section.id }} .vt__stat strong {
  display: block;

  color: var(--vt-highlight);

  font-size: 36px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -1px;
}


#vt-{{ section.id }} .vt__stat span {
  display: block;

  margin-top: 8px;

  color: #777;

  font-size: 15px;
  line-height: 1.2;
}


#vt-{{ section.id }} .vt__divider {
  width: 1px;
  height: 68px;

  background: #e4cbbd;
}


/* =========================================================
   TESTIMONIAL GRID
   ========================================================= */

#vt-{{ section.id }} .vt__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}


/* =========================================================
   TESTIMONIAL ITEM
   ========================================================= */

#vt-{{ section.id }} .vt__item {
  position: relative;

  min-width: 0;
  overflow: hidden;

  border-radius: var(--vt-radius);

  background: #111;

  isolation: isolate;
}


/* =========================================================
   MEDIA
   ========================================================= */

#vt-{{ section.id }} .vt__media {
  position: relative;

  width: 100%;
  aspect-ratio: 0.76;

  overflow: hidden;

  background: #222;
}


#vt-{{ section.id }} .vt__media video,
#vt-{{ section.id }} .vt__poster {
  position: absolute;
  inset: 0;

  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* Slight image treatment */

#vt-{{ section.id }} .vt__media::after {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 1;

  pointer-events: none;

  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0) 45%,
      rgba(0, 0, 0, 0.18) 100%
    );
}


/* =========================================================
   VIDEO OVERLAY TEXT
   ========================================================= */

#vt-{{ section.id }} .vt__overlay {
  position: absolute;

  top: 22%;
  left: 50%;

  z-index: 3;

  width: calc(100% - 70px);
  transform: translateX(-50%);
  padding: 8px 12px;
  color: #111;
  background: #fff;
  border-radius: 5px;
  font-size: 21px;
  line-height: 1.12;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   SOUND BUTTON
   ========================================================= */

#vt-{{ section.id }} .vt__sound {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
  backdrop-filter: blur(5px);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}


#vt-{{ section.id }} .vt__sound:hover {
  transform: scale(1.08);
  background: rgba(0, 0, 0, 0.75);
}


#vt-{{ section.id }} .vt__sound span {
  font-size: 18px;
  line-height: 1;
}


#vt-{{ section.id }} .vt__sound-off {
  display: none;
}


/* =========================================================
   CONTENT CARD
   ========================================================= */

#vt-{{ section.id }} .vt__content {
  position: absolute;

  left: 16px;
  right: 16px;
  bottom: 16px;

  z-index: 4;

  padding: 18px 18px 20px;

  background: var(--vt-card);

  border-radius: 14px;
}


/* =========================================================
   CUSTOMER
   ========================================================= */

#vt-{{ section.id }} .vt__customer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 10px;

  margin-bottom: 12px;
}


#vt-{{ section.id }} .vt__name {
  color: var(--vt-text);

  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
}


#vt-{{ section.id }} .vt__stars {
  color: var(--vt-highlight);

  font-size: 18px;
  line-height: 1;

  letter-spacing: -.6rem;
}


/* =========================================================
   TESTIMONIAL
   ========================================================= */

#vt-{{ section.id }} .vt__quote {
  margin: 0;

  color: var(--vt-text);

  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
}


/* =========================================================
   HOVER
   ========================================================= */

#vt-{{ section.id }} .vt__item {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


#vt-{{ section.id }} .vt__item:hover {
  transform: translateY(-4px);

  box-shadow:
    0 14px 35px rgba(0, 0, 0, 0.12);
}


#vt-{{ section.id }} .vt__item:hover .vt__media video,
#vt-{{ section.id }} .vt__item:hover .vt__poster {
  transform: scale(1.015);
}


#vt-{{ section.id }} .vt__media video,
#vt-{{ section.id }} .vt__poster {
  transition: transform 0.5s ease;
}


/* =========================================================
   TABLET
   ========================================================= */

@media screen and (max-width: 989px) {

  
  /* Cards */

  #vt-{{ section.id }} .vt__grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    margin-right: -16px;
    padding-right: 16px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  #vt-{{ section.id }} .vt__grid::-webkit-scrollbar {
    display: none;
  }


  #vt-{{ section.id }} .vt__item {
    flex: 0 0 86%;
    scroll-snap-align: start;
  }


  #vt-{{ section.id }} .vt__item:last-child {
    max-width: none;
  }

  /*#vt-{{ section.id }} .vt__header {
    flex-direction: column;
    gap: 25px;
  }*/

  #vt-{{ section.id }} .vt__stats {
    width: 100%;
    min-width: 0;
  }

  .vt__item {
    flex: 0 0 86%;
    scroll-snap-align: start;
  }

  /*#vt-{{ section.id }} .vt__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #vt-{{ section.id }} .vt__item:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 7px);
  }*/

}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 749px) {

  #vt-{{ section.id }} {
    padding-top: 45px;
    padding-bottom: 60px;
  }

  #vt-{{ section.id }} .vt__container {
    width: min(100% - 32px, 600px);
  }


  #vt-{{ section.id }} .vt__header{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  /* Heading */

  #vt-{{ section.id }} .vt__heading {
    font-size: 42px;
    line-height: 1.05;
    letter-spacing: -1px;
  }


  /* Stats */

  #vt-{{ section.id }} .vt__stats {
    min-height: 90px;
    padding: 12px 16px;
  }

  #vt-{{ section.id }} .vt__stat strong {
    font-size: 27px;
  }

  #vt-{{ section.id }} .vt__stat span {
    font-size: 12px;
  }

  #vt-{{ section.id }} .vt__divider {
    height: 52px;
  }


  /* Cards */

  #vt-{{ section.id }} .vt__grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    margin-right: -16px;
    padding-right: 16px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  #vt-{{ section.id }} .vt__grid::-webkit-scrollbar {
    display: none;
  }


  #vt-{{ section.id }} .vt__item {
    flex: 0 0 86%;
    scroll-snap-align: start;
  }


  #vt-{{ section.id }} .vt__item:last-child {
    max-width: none;
  }


  #vt-{{ section.id }} .vt__media {
    aspect-ratio: 0.72;
  }


  #vt-{{ section.id }} .vt__content {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 15px 15px 17px;
  }


  #vt-{{ section.id }} .vt__quote {
    font-size: 16px;
    line-height: 1.45;
  }


  #vt-{{ section.id }} .vt__name {
    font-size: 15px;
  }


  #vt-{{ section.id }} .vt__stars {
    font-size: 16px;
  }


  #vt-{{ section.id }} .vt__sound {
    top: 14px;
    right: 14px;

    width: 42px;
    height: 42px;
  }


  #vt-{{ section.id }} .vt__overlay {
    width: calc(100% - 40px);
    font-size: 17px;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media screen and (max-width: 420px) {

  #vt-{{ section.id }} .vt__heading {
    font-size: 36px;
  }

  #vt-{{ section.id }} .vt__stats {
    padding: 10px;
  }

  #vt-{{ section.id }} .vt__stat strong {
    font-size: 24px;
  }

  #vt-{{ section.id }} .vt__stat span {
    font-size: 11px;
  }

}