/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 97:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  .footer-menu {
    display: flex;
    flex-direction: column;
  }
  
  .footer-menu__block {
    padding-bottom: 1em;
    margin-bottom: 20px;
  }

  .footer-menu__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .2em;
  }

  .footer-menu__title--open .arrow {
    transform: rotate(180deg);
  }

  .footer-menu__links li {
    padding: .2em 0;
  }

  @media (min-width: 600px) and (max-width: 799px) {
    .footer-menu {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
    }
    .footer-menu__block {
      width: 50%;
      margin-bottom: 2em;
    }
    .footer-menu__title .arrow {
      display: none;
    }
  }

  @media (min-width: 800px) {
    .footer-menu {
      display: flex;
      justify-content: space-around;
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-menu__block {
      width: auto;
      /* flex: 1; */
      max-width: 25%;
    }

    .footer-menu__title .arrow {
      display: none;
    }

    @media (min-width: 1000px) {
      .footer-menu {
        margin: 1em auto -3em auto;
      }
    }
  }
  /* Mobile */
  @media (max-width: 600px) {
      .footer-menu__title {
        font-size: var(--text-h3) !important;
      }
      .footer-menu__block {
        border-bottom: 1px solid #eaeaea;
      }
      .footer-menu__item {
        font-size: 1em;
      }
      .footer-menu__links {
        padding-top: 1em !important;
        display: none;
      }
      .footer-menu__title {
        cursor: pointer;
      }
    }
  .footer-menu__links--open {
    display: block;
  }
</style>