/** Shopify CDN: Minification failed

Line 21:16 Expected identifier but found whitespace
Line 21:18 Unexpected "{"
Line 21:28 Expected ":"
Line 44:16 Expected identifier but found whitespace
Line 44:18 Unexpected "{"
Line 44:28 Expected ":"

**/


/* CSS from section stylesheet tags */
.custom-vid-with-text__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
  }

  .custom-vid-with-text__heading {
    font-family: {{ settings.heading_font.family | default: "inherit" }}; /* Inherit theme heading font */
    color: var(--text-color, inherit); /* Inherit color from theme */
    margin-bottom: 1rem;
    text-align: center;
  }

  .custom-vid-with-text__video-wrapper {
    position: relative;
    overflow: hidden;
    background-color: transparent; /* Ensure no background color */
    box-shadow: none; /* Remove any shadow */
    border: none; /* Remove any borders */
  }

  .custom-vid-with-text__video-wrapper video {
    display: block;
    width: 100%;
    height: auto;
    background-color: transparent; /* Ensure no background color */
    box-shadow: none; /* Ensure no shadow on the video */
  }

  .custom-vid-with-text__text {
    font-family: {{ settings.body_font.family | default: "inherit" }}; /* Inherit theme body font */
    color: var(--text-color, inherit); /* Inherit color from theme */
    margin-top: 2rem;
    text-align: center;
    line-height: 1.6; /* Improved readability */
  }
.single-review-block {
    margin: 20px 0;
    padding: 20px 0;
    color: #000;
    font-family: inherit;
  }

  .single-review-block__slider-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .single-review-block__slide {
    margin-bottom: 20px;
  }

  .single-review-block__profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
  }

  .single-review-block__profile-image-wrapper {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .single-review-block__profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .single-review-block__profile-info {
    display: flex;
    flex-direction: column;
  }

  .single-review-block__name {
    font-weight: bold;
    margin: 0 0 2px 0;
  }

  .single-review-block__stars {
    color: #f2c200;
    line-height: 1;
    font-size: 1rem;
  }

  .single-review-block__text {
    font-size: 1rem;
    line-height: 1.4;
    margin: 0 0 10px 0;
  }

  .single-review-block__controls {
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .single-review-block__btn {
    background-color: #ddd;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 0.875rem;
    border-radius: 4px;
    color: #000;
  }

  .single-review-block__btn:hover {
    background-color: #ccc;
  }