/** Shopify CDN: Minification failed

Line 38:0 Unexpected "}"

**/
.newsletter-form {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
}
.newsletter-form .field:after,
.newsletter-form .field:before { display:none;}
@media screen and (min-width: 750px) {
  .newsletter-form {
    align-items: flex;
    margin: 0 auto;
    max-width:54rem;
  }
}

/*new submit button*/
.sub-button2 {
  background-color: #e5710b;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 150px;
  height: 45px;
  font-size: 16px;
  font-family: 'FuturaStd-Light';
  padding: 8px 12px;
  box-shadow: var(--inputs-shadow-horizontal-offset) var(--inputs-shadow-vertical-offset) var(--inputs-shadow-blur-radius) rgba(var(--color-base-text),var(--inputs-shadow-opacity));
}
}
.sub-button2:HOVER {
  color: #D3D3D3;
}
.newsletter-form__field-wrapper {
  width: 100%;
}
.newsletter-form .field input[type="email"] {
    border-radius: 6px;
    box-shadow: var(--inputs-shadow-horizontal-offset) var(--inputs-shadow-vertical-offset) var(--inputs-shadow-blur-radius) rgba(var(--color-base-text),var(--inputs-shadow-opacity));
    border: 1px solid #979797;
    margin-right: 20px;   font-family: 'FuturaStd-Medium';
}
.newsletter-form__field-wrapper .field__input {
  padding-right: 5rem;
}
.newsletter-form .field__label{ font-family: 'FuturaStd-Medium';}
.newsletter-form__field-wrapper .field {
  z-index: 0;
}

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

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

@media screen and (min-width: 1400px) {
.sub-button2 {
  font-size:18px;
}

}

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

.newsletter-form__button {
  width: 4.4rem;
  margin: 0;
  right: var(--inputs-border-width);
  top: 0;
  height: 100%;
  z-index: 2;
}

.newsletter-form__button:focus-visible {
  box-shadow: 0 0 0 .3rem rgb(var(--color-background)),0 0 0 .4rem rgba(var(--color-foreground));
  background-color: rgb(var(--color-background));
}

.newsletter-form__button:focus {
  box-shadow: 0 0 0 .3rem rgb(var(--color-background)),0 0 0 .4rem rgba(var(--color-foreground));
  background-color: rgb(var(--color-background));
}

.newsletter-form__button:not(:focus-visible):not(.focused) {
  box-shadow: inherit;
  background-color: inherit;
}

.newsletter-form__button .icon {
  width: 1.5rem;
}

@media screen and (max-width: 749px) {
.newsletter-form__field-wrapper .field {
    flex-wrap: wrap; justify-content: center;
}
  .newsletter-form .field input[type="email"]{
    margin:0 0 20px 0;
  }
}