.contact__checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

form.contact__form {
  margin-top: 50px;
  max-width: 650px;
}

.contact__text {
  font-size: calc( (100vw - 480px)/(1280 - 480) * (34 - 25) + 25px) !important;
  text-align: left;
  margin-bottom: 24px;
}

.contact__block-field {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

input.contact__email {
  flex-grow: 1;
  margin-right: 30px;
  padding: 16px 12px;
  font-size: 20px;
  font-family: inherit;
  margin-bottom: 0;
}

.contact__btn {
  flex-shrink: 0;
  background-color: var(--Green);
  font-size: 24px;
  letter-spacing: 0;
  color: #ffffff;
  border-radius: 5px;
  padding: 16px 26px;
  text-transform: none;
}

button.contact__btn:hover {
  font-weight: bold;
  transition: none;
}

button.contact__btn::after,
button.contact__btn::before {
  content: none;
}	

.contact__label {
position: relative;
text-align: left;
padding-left: 32px;
font-size: 123.961875%;
line-height: 1.1667;
font-weight: normal;
text-transform: none;
}

.contact__label::before {
content: "";
position: absolute;
left: 0;
top: 1px;
width: 20px;
height: 20px;
border-radius: 4px;
border: 1px solid var(--Green);
}

.contact__checkbox:checked + .contact__label::before {
background-color: var(--Green);
}

.contact__checkbox:checked + .contact__label::after {
content: "";
position: absolute;
left: 4px;
top: 7px;
width: 11px;
height: 4px;
border-bottom: 2px solid #fff;
border-left: 2px solid #fff;
transform: rotate(-47deg);
}

@media screen and (max-width: 768px) {
form.contact__form {
margin-top: 24px;
margin-bottom: 24px;
}

.contact__block-field--email {
flex-direction: column;
}

input.contact__email {
width: 100%;
max-width: 400px;
margin-bottom: 16px;
margin-right: 0;
padding-top: 12px;
padding-bottom: 12px;
}

.contact__btn {
padding: 8px 24px;
}
}

/* Два согласия в форме подписки (политика + рассылка). Переиспользуем зелёный
   чекбокс .contact__checkbox/.contact__label, но в своём контейнере, чтобы не
   наследовать строчную раскладку .mailing__filed. */
.mailing__agreements {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-width: 650px;
  width: 100%;
  margin: 16px auto 0;
}

.mailing__agree {
  position: relative;
}

.mailing__agree .contact__label {
  font-size: 14px;
  line-height: 20px;
}

#subscribe-message {
  color: green;
}

#subscribe-message.error {
  color: red;
}

.subscribe_form button[disabled]{
  opacity: .6;
}