


.newsletter {
  --newsletter-max-width: 37.5rem;
  --newsletter-text-align: center;
  --newsletter-title-margin: 0 auto 2rem auto;
  --newsletter-text-margin: 0 auto 1rem auto;
  --newsletter-input-checkbox-margin: 3rem auto;
  max-width: var(--newsletter-max-width);
}
.newsletter__title {
  margin: var(--newsletter-title-margin);
  text-align: var(--newsletter-text-align);
}
.newsletter__text {
  margin: var(--newsletter-text-margin);
  text-align: var(--newsletter-text-align);
  
  font-family: var(--font-family-DIN-OT);
  font-style: normal;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 120%;
  
}
.newsletter__form .input__field {
  box-shadow: none;
}
.newsletter__form .input__field .input__field__input {
  width: 100%;
  box-shadow: none;
}
.newsletter__form .input__field:not(.valid) .input__field__input {
  padding-right: 1.6rem;
  text-align: center;
}
.newsletter__form .input__field.input__field--filled .input__field__input {
  padding: 2.4rem 1.6rem 1rem 1.6rem;
}
.newsletter__form .input__field.valid .input__field__input ~ .icon {
  opacity: 1;
}
.newsletter__form .input__field:not(.error) .error-message {
  display: none;
}
.newsletter__form .input__field .icon path {
  stroke: var(--color-green);
}
.newsletter__form .input__checkbox {
  width: 100%;
  margin: var(--newsletter-input-checkbox-margin);
  justify-content: center;
}
.newsletter__form button {
  width: 100%;
}
.newsletter__form .input__checkbox:not(.show),
.newsletter__form button:not(.show) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.newsletter__form__confirmation {
  margin-top: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .newsletter__form__confirmation {
    width: 100%;
    text-align: center;
  }
}
.newsletter__form__confirmation:not(.show) {
  display: none;
}
@media screen and (min-width: 1024px) {
  .newsletter {
    --newsletter-max-width: 34.9rem;
    --newsletter-text-align: left;
    --newsletter-title-margin: 0 auto 2rem auto;
    --newsletter-text-margin: 0 auto 3rem auto;
  }
  .newsletter__text {
    
    font-family: var(--font-family-DIN-OT);
    font-style: normal;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 120%;
    
  }
}