.warranty-form .invalid-feedback {
  font-size: 0.75rem;
}

.warranty-form .input--required label::after {
  content: "*";
  color: #eb5806;
  font-size: 1.2em;
}

.warranty-form .textarea label {
  font-size: 1rem;
}

.warranty-form__success-message {
  margin-bottom: 0;
}

section.contacts {
  padding-bottom: 64px;
}

section.contacts.bottom {
  padding-bottom: 128px;
}

.contacts.bottom {
  padding-top: 0;
}

.contacts.bottom .contacts__wrap {
  align-items: flex-start;
}

.contacts.bottom .contacts__card {
  padding: 0;
  border: unset;
}

.contacts__title {
  font-size: 28px;
  font-weight: 600;
  line-height: 33.6px;
  letter-spacing: -0.01em;
  margin: 0;
}

.contacts__title span {
  color: var(--color-primary);
}

.contacts.bottom .contacts__info {
  margin-bottom: 32px;
}

.contacts.bottom .contacts__inf {
  font-size: 16px;
  line-height: 21.6px;
  color: var(--color-dark4);
}

.contacts.bottom .contacts__inf a {
  color: var(--color-primary);
  font-size: 18px;
  line-height: 24.3px;
  text-decoration: underline;
  white-space: nowrap;
}

.contacts.bottom .contacts__inf.phone a {
  color: var(--color-dark6);
  font-weight: 600;
  text-decoration: none;
}

.input__container {
  margin-bottom: 24px;
}

.form__wrap-half {
  display: flex;
}

.form__half,
.contacts__card.form .button {
  width: 100%;
}

.form__half:not(:last-child) {
  margin-right: 24px;
}

.input__container textarea {
  background-color: var(--color-gray1);
  padding: 12px;
  border-radius: 8px 8px 0 0;
  border: none;
  border-bottom: 1px solid var(--color-gray3);
  color: var(--color-dark6);
  font-size: 16px;
  line-height: 21px;
  width: 100%;
  height: 132px
}

.contacts-form__agree {
  font-size: 14px;
  line-height: 18.2px;
  text-align: center;
  margin-top: 24px;
  color: var(--color-gray5)
}

.contacts-form__agree a{
  color: var(--color-gray5);
  text-decoration: underline;
}

.contacts-form__agree a:hover{
  text-decoration: none;
}

.contacts.bottom .contacts__submit {
  display: inline-block;
  border-radius: 12px;
  padding: 13px 24px;
  background-color: var(--color-primary);
  font-size: 12px;
  line-height: 14px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
}

@media (width <=1024px) {
  .contacts.bottom .contacts__wrap {
    gap: 32px;
  }

  .contacts__info-wrap {
    display: flex;
  }

  .contacts.bottom .contacts__info {
    margin-bottom: 0;
  }

  .contacts.bottom .contacts__info:not(:last-child) {
    margin-right: 48px;
  }
}

@media (width <=900px) {
  .contacts.bottom .contacts__info:not(:last-child) {
    margin-right: 24px;
  }

  .contacts.bottom .contacts__info:nth-child(2) {
    margin-right: 9px;
  }

  section.contacts {
    padding-bottom: 48px;
  }

  section.contacts.bottom {
    padding-bottom: 64px;
  }
}

@media (width <=767px) {
  .contacts__info-wrap {
    flex-direction: column;
  }

  .contacts.bottom .contacts__info:not(:last-child) {
    margin-right: 0;
    margin-bottom: 24px;
  }

  .form__wrap-half {
    flex-direction: column;
  }
}

@media (width <=600px) {
  .contacts.bottom .contacts__info {
    flex-direction: row;
  }
}

.privacy-block input {
  width: 1rem;
  min-width: 1rem;
  height: 1rem;
  margin-top: 6px;
  vertical-align: top;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid #eeeff3;
  appearance: none;
  color-adjust: exact;
  background-size: auto;
  transition: all 0.3s ease-in-out;
  transform: translateY(-0.25rem);
  cursor: pointer;
  border-radius: 0.125rem;
  display: inline-block;
}

.privacy-block input:checked {
  background-color: transparent;
  border-color: #eeeff3;
  background-image: url('data:image/svg+xml,%3csvg width="9" height="8" viewBox="0 0 9 8" fill="none" xmlns="http://www.w3.org/2000/svg"%3e%3cpath d="M3.42069 6.91431C3.47956 6.99648 3.55717 7.06343 3.64708 7.10962C3.73699 7.1558 3.83661 7.1799 3.93769 7.1799C4.03877 7.1799 4.13839 7.1558 4.2283 7.10962C4.31821 7.06343 4.39582 6.99648 4.45469 6.91431L8.66669 1.07431C8.74269 0.968313 8.66669 0.820312 8.53669 0.820312H7.59869C7.39469 0.820312 7.20069 0.918312 7.08069 1.08631L3.93869 5.44631L2.51469 3.47031C2.39469 3.30431 2.20269 3.20431 1.99669 3.20431H1.05869C0.928691 3.20431 0.852691 3.35231 0.928691 3.45831L3.42069 6.91431V6.91431Z" fill="%23eb5806"/%3e%3c/svg%3e');
}

.privacy-block label {
  width: calc(100% - 33px);
  margin-left: 12px;
}

.privacy-block .error_message {
  display: none;
}

.privacy-block.has-error .error_message {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #eb5806;
}

.privacy-block.has-error input {
  border-color: var(--bs-danger);
}