@charset "UTF-8";
.newsletter {
  background-color: var(--color-dark-grey);
  padding-block: 4.375rem;
  color: white;
}
.views-element-container + .newsletter {
  margin-block-start: 50px;
}
.newsletter_title {
  font-size: 2rem;
  font-weight: 500;
  color: white;
  margin-bottom: 1.875rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 48rem) {
  .newsletter_title {
    font-size: 3rem;
  }
}
.newsletter #edit-email {
  width: 100%;
  max-width: 21.875rem;
  padding: 1rem;
  font-size: 1rem;
  background-color: transparent;
  border: 1px solid white;
  color: white;
  margin-bottom: 30px;
}
.newsletter #edit-email::placeholder {
  color: white;
  font-size: 1rem;
}
.newsletter .js-form-item {
  margin-top: 5px;
}
.newsletter .js-form-type-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.4;
}
.newsletter .js-form-type-checkbox .form-checkbox {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  width: 18px;
  height: 18px;
  border: 1px solid white;
  background-color: transparent;
  margin: 1px 0 0 0;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
}
.newsletter .js-form-type-checkbox .form-checkbox:checked {
  background-color: white;
}
.newsletter .js-form-type-checkbox .form-checkbox:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-dark-grey);
  font-size: 14px;
  font-weight: bold;
}
.newsletter .js-form-type-checkbox label {
  color: white;
  font-size: 14px;
  line-height: 22px;
  font-family: "Roboto";
}
.newsletter .js-form-submit {
  margin-block-start: 15px;
}