/** Shopify CDN: Minification failed

Line 23:10 Expected identifier but found whitespace
Line 23:11 Unexpected "800px"
Line 23:18 Unexpected "{"
Line 23:27 Expected ":"
Line 23:51 Expected identifier but found "%"
Line 52:10 Expected identifier but found whitespace
Line 52:11 Unexpected "800px"
Line 52:18 Unexpected "{"
Line 52:27 Expected ":"
Line 52:51 Expected identifier but found "%"

**/


/* CSS from section stylesheet tags */
.catalog-embed-wrapper {
    display: flex;
    justify-content: center; /* Center the embed horizontally */
    margin-top: 20px;
    margin-bottom: 20px;
    width: 800px {{ section.settings.embed_width }}%; /* Use the width setting */
  }

  .catalog-embed-container {
    position: relative;
    width: 100%; /* Make it take full width of the wrapper */
    height: auto; /* Let the content determine the height */
    overflow: hidden; /* Prevent content overflow */
  }

  .catalog-embed-container > iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none; /* Ensure no extra borders */
  }
/* Optional: Add any specific styling for your custom code container here */
  .custom-code {
    width: 100%; /* Adjust as needed */
    margin-top: 20px; /* Adjust as needed */
    margin-bottom: 20px; /* Adjust as needed */
  }
.catalog-embed-wrapper {
    display: flex;
    justify-content: center; /* Center the embed horizontally */
    margin-top: 20px;
    margin-bottom: 20px;
    width: 800px {{ section.settings.embed_width }}%; /* Use the width setting */
  }

  .catalog-embed-container {
    position: relative;
    width: 100%; /* Make it take full width of the wrapper */
    height: auto; /* Let the content determine the height */
    overflow: hidden; /* Prevent content overflow */
  }

  .catalog-embed-container > iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none; /* Ensure no extra borders */
  }
/* Optional: Add any specific styling for your custom code container here */
  .custom-code {
    width: 100%; /* Adjust as needed */
    margin-top: 20px; /* Adjust as needed */
    margin-bottom: 20px; /* Adjust as needed */
  }
.uniform-faq-hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    text-align: center; /* Default text alignment */
  }

  .hero-image-wrapper {
    position: relative;
    width: 100%;
    z-index: 1;
    padding-bottom: 20%;
    height: 0;
  }

  .hero-image {
    position: absolute; /* To fill the wrapper */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
  }

  .hero-text-content {
    position: relative;
    z-index: 3;
    padding: 5px;
  }

  .hero-text-content.left {
    text-align: left;
  }

  .hero-text-content.center {
    text-align: center;
  }

  .hero-text-content.right {
    text-align: right;
  }

  .hero-title {
    font-size: 2.5em;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 1.2em;
    line-height: 1.5;
  }

  .hero-placeholder {
    padding: 50px;
    text-align: center;
    background-color: #f9f9f9;
    color: #777;
  }
.uniform-faq-page {
    padding: 20px;
  }

  .faq-group__title {
    margin-bottom: 15px;
    font-size: 1.5em;
    margin-top: 20px;
  }

  .faq-group__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
  }

  .faq-item {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
  }

  .faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px;
    background-color: #f9f9f9;
    border: none;
    text-align: left;
    cursor: pointer;
    font-weight: bold;
  }

  .faq-item__icon {
    font-size: 1.2em;
  }

  .faq-item__question[aria-expanded="true"] .faq-item__icon {
    content: '-'; /* Needs JS */
  }

  .faq-item__answer {
    padding: 15px;
    background-color: #fff;
    border-top: 1px solid #ddd;
  }

  .faq-item__answer[aria-hidden="true"] {
    display: none;
  }