/** Shopify CDN: Minification failed

Line 92:0 Unexpected "}"

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

.newsletter-form__field-wrapper {
  width: 80%;
}

@media screen and (min-width: 750px) {

  .newsletter-form {
    align-items: flex-start;
    margin: 0 auto;
    max-width: 45rem;
  }
  .newsletter-form__field-wrapper {
    width: 100%;
  }
}



.newsletter-form__field-wrapper .field__input {
  padding-right: 5rem;
  border-top:1px solid red;
  border-bottom:1px solid red;
  height: 4.5rem;
}

.newsletter-form__field-wrapper .field__input{
  border: none;
  background: url(https://cdn.shopify.com/s/files/1/0677/9079/9162/t/3/assets/input-bg-mobile.svg) no-repeat center center;
  height: 40px;
  background-size: auto 100%;
  margin-right: 15px;
  line-height: 40px;
  padding: 0;
  padding-left:calc(var(--inputs-border-width) + 1rem);
  font-size:.875rem;
  min-width:180px;
}
.newsletter-form__field-wrapper .field__label{
  font-size: .875rem;
  left: 4rem;
  left:27%;
  top: calc(.5rem + var(--inputs-border-width));
}

@media screen and (min-width: 750px) {

    .newsletter-form__field-wrapper .field__input {
      padding-right: 5rem;
      border-top:1px solid red;
      border-bottom:1px solid red;
      height: 4.5rem;
    }
    
    .newsletter-form__field-wrapper .field__input{
      border: none;
      background: url(https://cdn.shopify.com/s/files/1/0677/9079/9162/t/3/assets/input-bg.svg?v=1669067251) no-repeat center center;
      height: 50px;
      background-size: auto 100%;
      margin-right: 20px;
      line-height: 50px;
      padding: 0;
      padding-left:calc(var(--inputs-border-width) + 2rem);
      font-size:1.6rem;
    }
    .newsletter-form__field-wrapper .field__label{
      font-size: 1.5rem;
      left: calc(var(--inputs-border-width) + 2rem);
      top: calc(.4rem + var(--inputs-border-width));
    }

  
}


.field__input:focus~.field__label{
    opacity:0.7;
}
}
.newsletter-form__field-wrapper .field {
  z-index: 0;
}
.newsletter-form__field-wrapper .field:hover.field:after, 
.newsletter-form__field-wrapper .field:hover.field:after,
.newsletter-form__field-wrapper .field__input:focus,
.newsletter-form__field-wrapper .field:focus{
  box-shadow:none;
}

.newsletter-form__field-wrapper .field:after{
  box-shadow:none;
  border:none;
}

.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__button {
  margin: 0;
  right: var(--inputs-border-width);
  top: 0;
  height: 100%;
  height: 4.5rem;
  z-index: 2;
  position:relative;
  right:0;
  background-color:#8B8781;
  overflow:visible;
}

.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: #8B8781;
}

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

.newsletter-form__button {
  width: 170px;
  height: 50px;
  position: relative;
  background: #8B8781;
  color:#ffffff;
  font-weight:600;
  font-size:1.2rem;
  letter-spacing:0;
}
.newsletter-form__button:after {
  content: "";
  position: absolute;
  left: -16px;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 25px 16px;
  border-color: transparent transparent transparent #8B8781;
  transform: rotate(180deg);
  
}

.newsletter-form__button:before {
  content: "";
  position: absolute;
  right: -16px;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 25px 16px;
  border-color: transparent transparent transparent #8B8781;
}


@media screen and (max-width: 749px) {
  
  .newsletter-form__button {
    width: 150px;
    height: 40px;
    font-size: .875rem;
  }
  .newsletter-form__button:after {
    left: -10px;
    border-width: 20px 0 20px 10px;
  }
  
  .newsletter-form__button:before {
    right: -10px;
    border-width: 20px 0 20px 10px;
  }
  

}
