/** Shopify CDN: Minification failed

Line 61:0 Expected "}" to go with "{"

**/
/* Footer bottom wrapper: desktop */
.footer__content-bottom-wrapper {
  display: flex;
  justify-content: space-between; /* copyright left, socials right */
  align-items: center;
  flex-wrap: wrap;
}

/* Copyright text */
.copyright__content {
  font-size: 12px;
  font-weight: 500;
  line-height: 110%;
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  letter-spacing: .1em;
  color: #fff;
  margin: 0;
}

.list-social {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-left: auto;
    padding-top: 7px;
    margin-right: -120px; 
}
/* Mobile view */
@media only screen and (max-width: 749px) {
  .footer__content-bottom-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .copyright__content {
    margin: 0 auto;
  }

  .list-social {
    justify-content: center;
    margin-left: 0;
  }

.newsletter-input-wrapper {
    display: flex!important;
    gap: 6px;
    height: 34px;
}
@media screen and (min-width: 767px) {
  .newsletter-input-wrapper {
    display: flex !important;
  }
}
