/** Shopify CDN: Minification failed

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

**/
.newsletter-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;

}

@media screen and (min-width: 750px) {
  .newsletter-form {
    flex-direction: row;
    align-items: flex-start;
    margin: 0 auto;
    max-width: 36rem;
    color: rgb(var(--color-base-text));
  }
}

.newsletter-form__field-wrapper {
  width: 100%;
  color: rgb(var(--color-base-text));
}

.newsletter-form__field-wrapper .field__input {
  padding-right: 5rem;
  background-color: #fff;
  color: rgb(var(--color-base-text));

}

.newsletter-form__message {
  justify-content: center;
  margin-bottom: 0;
}

.newsletter-form__message--success {
  margin-top: 2rem;
}

@media screen and (min-width: 750px) {
  .newsletter-form__message {
    justify-content: flex-start;
  }

  .newsletter-form__message--success {
    position: absolute;
    left: 0;
    bottom: -65%;
  }
}

.newsletter-form__button {
  width: 5rem;
  margin: 0;
  background-color: rgb(var(--color-base-background-1));
}

.newsletter-form__button:hover {
  background-color: rgb(var(--color-base-background-2), 1);

.newsletter-form__button .icon {
  width: 1.2rem;
  color: rgb(var(--color-base-text));
}
