/** Shopify CDN: Minification failed

Line 31:47 Unexpected "\u00a0"
Line 34:47 Unexpected "\u00a0"
Line 37:47 Unexpected "\u00a0"
Line 40:47 Unexpected "\u00a0"

**/
footer.footer {
  color: rgb(var(--color-foreground));
  font-size: 12px;
  border-top: 1.5px solid rgb(var(--color-shadow));
}

.footer-container {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 6.5rem 1.5rem 4.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

@media (max-width: 990px) {
  .footer-container > * {
    flex: 1 1 calc(50% - 32px);
    max-width: calc(50% - 32px);
  }

  .footer-container .footer-column:nth-child(1)  {
    order: 3;
  }
  .footer-container .footer-column:nth-child(2)  {
    order: 1;
  }
  .footer-container .footer-column:nth-child(3)  {
    order: 2;
  }
  .footer-container .footer-column:nth-child(4)  {
    order: 4;
  }
}

.footer-container * {
  font-size: 10px;
}

@media (max-width: 749px) {
  .footer-container .footer-column:nth-child(1) {
    order: 0;
  }
  
  .footer-container {
    justify-content: center;
  }

  .footer-container > * {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.footer-logo {
  width: 180px;
}

.footer-contact-info {
  margin: 8px 0;
}

.footer-contact-info a {
  text-decoration: none;
  color: inherit;
  text-transform: unset;
}

.footer-social-media {
  display: flex;
  gap: 4px;
}

.social-icon {
  width: 20px;
  margin-right: 10px;
}

.footer-heading {
  color: rgb(var(--color-foreground));
  margin: 0 0 12px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

ul.footer-links li {
  margin: 4px 0px;
}

.footer-links li a {
  text-decoration: none;
  color: rgb(var(--color-foreground));
}

.footer-newsletter-text {
  margin-bottom: 10px;
}

.footer-form {
  display: flex;
}

.footer-input {
  width: 100%;
  padding: 8px;
  margin-right: 8px;
  font-size: 12px;
  border: 1px solid rgb(var(--color-foreground));
  background-color: transparent;
  color: rgb(var(--color-foreground));
}

.footer-button {
  background-color: rgb(var(--color-foreground));
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  color: white;
  font-size: 12px;
}

.list-social__link {
  padding: 0;
}

.footer__field__input::placeholder {
  opacity: 1;
  font-size: 10px;
}

.field.footer__field:after,
.field__input.footer__field__input:focus {
  box-shadow: none !important;
}

a.link.list-social__link span.svg-wrapper {
    width: 22px;
    height: 22px;
}

@media screen and (min-width: 750px) {
  .footer-container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

@media screen and (min-width: 990px) {
  .footer-container {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .footer-container .footer-column:nth-child(4) {
    min-width: 300px;
  }
}
