/** Shopify CDN: Minification failed

Line 96:0 Comments in CSS use "/* ... */" instead of "//"
Line 105:48 Unexpected "/"
Line 107:0 Comments in CSS use "/* ... */" instead of "//"
Line 130:2 Comments in CSS use "/* ... */" instead of "//"
Line 131:2 Comments in CSS use "/* ... */" instead of "//"

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

.newsletter-form .field:after, .newsletter-form .field:hover.field:after,
.newsletter-form *:focus-visible {
  border-bottom: 1px solid #231f20;
  box-shadow: none;
  outline: none;
}

.newsletter-form .field__label {
  font-size: 11px;
  left: calc(var(--inputs-border-width));
  letter-spacing: .2em;
  line-height: 20px;
  opacity: .5;
  text-transform: uppercase;
  top: calc(var(--inputs-border-width) + 1rem);
}
.newsletter-form .field__input:focus~.field__label,
.newsletter-form .field__input:not(:placeholder-shown)~.field__label {
  display: none;
  letter-spacing: .2em;
  left: calc(var(--inputs-border-width));
  top: calc(var(--inputs-border-width));
}

@media screen and (min-width: 750px) {
  .newsletter-form {
    align-items: flex-start;
    margin: 0 auto;
  }
}

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

/* .newsletter-form__field-wrapper .field__input {
  border: 0;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  line-height: 30px;
  padding-left: 0;
  padding-right: 5rem;
  top: -12px;
} */

.newsletter-form__field-wrapper .field {
  z-index: 0;
}

.newsletter-form__message {
  flex-direction: column;
  justify-content: start;
  margin-bottom: 0;
}

.newsletter-form__message--success {
  font-family:"Aktiv-Grotesk",Arial,Sans-Serif !important;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.3em;
  min-width: 400px;
  line-height: 30px;
  text-transform: uppercase;
  width: 100%;
}

.newsletter-form__message--success .subheading {
  font-size: 11px;
  font-weight: normal;
  letter-spacing: 0.1em;
}

.newsletter-form__message--success:focus-visible {
  border-bottom: 0;
}

// Subscribe Button - Arrow Animation
.newsletter-form__button {
  content: '';
}

.newsletter-form__button:after {
  background-position-x: -80px;
  margin: 0 !important;
}
.newsletter-form__button:after { content: '' } */

// Hover effect - with arrow movement
.newsletter-form__button:hover {
  cursor: pointer;
}
.newsletter-form__button:hover:before {
  background-position-x: 80px;
  box-shadow: none;
  cursor: pointer;
  transition: background-position-x .3s ease;
}
.newsletter-form__button:hover:after {
  background-position-x: 0;
  box-shadow: none;
  cursor: pointer;
  transition: background-position-x .3s ease;
}

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

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

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