/** Shopify CDN: Minification failed

Line 19:1 Expected identifier but found "{"
Line 19:2 Unexpected "{"
Line 19:11 Expected ":"
Line 19:18 Unexpected "{"
Line 65:5 Expected identifier but found "{"
Line 65:6 Unexpected "{"
Line 65:15 Expected ":"
Line 65:22 Unexpected "{"
Line 85:5 Expected identifier but found "{"
Line 85:6 Unexpected "{"
... and 2 more hidden warnings

**/


/* CSS from section stylesheet tags */
.{{ section.id }} {
    max-width: 1000px;
    width: 100%;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--backgroundCard);
    border-radius: var(--borderRadius);
    box-shadow: var(--boxShadow);
  }
  .size-inputs {
    width: 100%;
    display: flex;
    gap: 1rem;
    margin: 2rem auto;
    justify-content: space-between;
    align-items: center;
    .side-by-side {
      display: flex;
      gap: 0.5rem;
    }
    input:not(.br-size,.eu-size) {
      border: 2px solid #000;
      border-radius: 2px;
      padding-inline: 1rem;
      margin-bottom: 1rem;
    }
    label {
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
    }
    button {
      border-radius: 5px;
      font-size: 1.2rem;
      height: 40px;
    }
  }
  .validate {
    font-style: italic;
    font-size: 0.9rem;
    color: var(--bont);
  }
  .size-calculator {
    display: grid;
    grid-template-columns: 1fr;
  }
  @media (max-width: 1023px) {
    .{{ section.id }} {
     width: auto;
    margin: 1rem;
    padding: 1rem;
  }
    padding: 2rem;
    .size-inputs {
      flex-direction: column;
    }
    .size-calculator {
      grid-template-columns: 1fr;
      grid-gap: 1rem;
      align-items: center;
    }
    input {
      width: 100%;
      min-width: auto;
    }
  }
  @media (max-width: 390px) {
    .{{ section.id }} {
    grid-column: 1 / 1;
    }
    .footer-subscribe {
      grid-template-columns: 1fr;
    }
  }
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  li {
    display: inline-block;
    margin-right: 2rem;
  }
  a {
    color: var(--white);
    text-decoration: none;
    &:hover {
      color: var(--watermelon);
    }
  }
  a svg {
    vertical-align: middle;
  }
  p {
    margin: 0 0 1rem;
  }