/** Shopify CDN: Minification failed

Line 16:23 Unexpected "{"
Line 16:32 Expected ":"
Line 24:25 Unexpected "{"
Line 24:34 Expected ":"
Line 30:25 Unexpected "{"
Line 30:34 Expected ":"
Line 37:25 Unexpected "{"
Line 37:34 Expected ":"
Line 41:25 Unexpected "{"
Line 41:34 Expected ":"
... and 20 more hidden warnings

**/
.contact-subscription-{{ section.id }} .subscription-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
  }

  .contact-subscription-{{ section.id }} .subscription-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gradient-base-accent-1);
  }

  .contact-subscription-{{ section.id }} .subscription-checkbox label {
    font-size: 16px;
    font-family: 'Montserrat';
    cursor: pointer;
    line-height: 1.4;
  }

  .contact-subscription-{{ section.id }} .contact__button {
    text-align: center;
  }

  .contact-subscription-{{ section.id }} .contact__button button {
    background: #d1d5db;
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .contact-subscription-{{ section.id }} .contact__button button:hover {
    background: #9ca3af;
  }

.contact__button  .button:after {
    box-shadow: none;
  }

.button:not([disabled]):hover::after,
.shopify-challenge__button:hover::after,
.customer button:hover::after,
.shopify-payment-button__button--unbranded:hover::after {
  --border-offset: 1.3px;
  box-shadow: none;
}

.subscription-form-container {
    max-width: 100%;
    margin: auto;
}

.subscription-heading-container {
    max-width: 250px;
    margin: 0 auto;
}

.subscription-heading h2 {
    text-align: center;
    font-family: 'Merriweather';
    font-size: 28px;
    color: #3E7DD9;
    font-weight: 900;
    position: relative;
    margin-bottom: 5rem;
}

.subscription-heading h2:before {
 content: "";
 height: 1px;
 width: 35%;
 background-color: #3E7DD9;
 position: absolute;
 top: 18px;
right: 100%;
}
.subscription-heading h2:after {
 content: "";
 height: 1px;
 width: 35%;
 background-color: #3E7DD9;
 position: absolute;
 top: 18px;
left: 100%;
}
.bottom-para-container {
    padding: 1rem;
    text-align: center;
}

.address-container {
display: grid;
grid-template-columns: 1fr;
gap: 4rem;
margin-top: 6rem;
}
.address-container h4 {
  font-family: 'Montserrat';
  font-size: 22px;
}

.address-block {
display: flex;
flex-direction: column;
gap: 2rem;
}
.timing-block {
display: flex;
flex-direction: column;
gap: 2rem;
}
.timing-block ul {
list-style: none;
text-align: left;
}

/* Hours Table Styling */
  .contact-subscription-{{ section.id }} .hours-table {
    border-spacing: 0px;
    text-align: left;
    display: table;
width: 60%;
    margin: 0 auto;
  }

  .contact-subscription-{{ section.id }} .hours-table tr {
    cursor: auto;
    border-bottom: none;
  }

  .contact-subscription-{{ section.id }} .hours-table tr:last-child {
    border-bottom: none;
  }

  .contact-subscription-{{ section.id }} .hours-table td {

  }

  .contact-subscription-{{ section.id }} .day-column {
    
  }

  .contact-subscription-{{ section.id }} .hours-column {
  padding-left: 1rem;

  }

  /* Current Day Styling */
  .contact-subscription-{{ section.id }} .hours-table tr.current-day .day-column {
    font-weight: bold;
    color: #000;
  }

  .contact-subscription-{{ section.id }} .hours-table tr.current-day .hours-column {
    font-weight: bold;
    color: #000;
  }


@media screen and (min-width: 750px) {
.subscription-heading-container {
    max-width: 100%;
    margin: auto;
}
.subscription-heading h2:before {
 width: 20%;
right: 75%;
}
.subscription-heading h2:after {
 width: 20%;
left: 75%;
}
.subscription-form-container {
    max-width: 60%;
    margin: 0 auto;
}
.bottom-para-container {
    padding: 3rem 1rem;
}
.address-container {
grid-template-columns: 3fr 2fr;
}
 .contact-subscription-{{ section.id }} .hours-table {
width: 100%;
  }

}