.main__card li {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 30px;
}

.main__card li::after {
  content: "";
  position: absolute;
  left: 0;
  /* transform: translateX(-50%); */
  top: 50%;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: url(../img/dot.png) no-repeat center center / cover;
}

.main__form__title {
  color: #000000;
}

.main__form {
  width: 100%;
}

.main__card strong {
  font-size: 22px;
  font-weight: 700;
}

.main__card p {
  font-size: 20px;
  font-weight: 400;
}

.main__form input {
  display: block;
  border: none;
  width: 100%;
  height: 51px;
  /* margin-bottom: 10px; */
  padding-left: 20px;
  border-radius: 10px;
  background: #F4F4F4;
}


input::placeholder {
  color: #7F7F7F;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 14.86px;
  /* 92.875% */
}

.main__form label {
  font-size: 13px;
  color: #5b5b5b;
  margin-bottom: 20px;
  display: block;
}

.main__form button {
  border: none;
  margin-top: 20px;
  width: 100%;
  font-weight: 800;
  padding: 10px 20px;
  font-size: 20px;
  color: #0c0a27;
  border-radius: 10px;
  background: #3052D8;
  box-shadow: 0 4.054px 2.703px 0 #5D81F8 inset;

  color: #FFF;
  text-align: center;
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 15.54px;
  /* 97.125% */
}

.main__form_text {
  display: flex;
  align-items: center;
  padding: 20px 0;
  text-align: center;
  justify-content: center;

  position: relative;

  border-bottom: 0.5px solid #0000007a;
}

.main__form_text p {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  padding-left: 30px;
  max-width: 285px;
  margin: 0 auto;
  color: #242424;
}

.main__form_text p::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 30px;
  height: 30px;
  background: url(../img/icon.png) no-repeat center center / cover;
}

p.main__tht {
  font-size: 13px;
  color: #202020;
  text-align: center;
  padding-top: 20px;
  max-width: 275px;
  margin: 0 auto;
}

.footer {
  background-color: #fff;
  padding: 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
}

.phone-wrap-flag label {
  all: unset !important;
  position: relative !important;
  font-weight: normal !important;
  margin: 0 !important;
  z-index: 100 !important;
  margin-left: 2px !important;
}

/* Контейнер модалки (скрыт по умолчанию) */
.privacy-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 999;
}

/* Показать */
.privacy-modal.is-open {
  display: block;
}

/* Синий задний фон */
.privacy-modal__backdrop {
  position: absolute;
  inset: 0;
  background: #3156d6;
  /* синий фон страницы на скрине */
  opacity: 1;
}

/* Диалог */
.privacy-modal__dialog {
  position: relative;
  max-width: 780px;
  margin: 48px auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 28px 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  outline: none;
}

/* Кнопка закрытия */
.privacy-modal__close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 0;
  background: #eef3ff;
  color: #3b4b6a;
  cursor: pointer;
  line-height: 1;
}

/* Заголовок и текст */
.privacy-modal__title {
  font-size: 28px;
  font-weight: 800;
  margin: 6px 0 16px;
  color: #0b1426;
}

.privacy-modal__content h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 18px 0 8px;
  color: #0b1426;
}

.privacy-modal__content p {
  margin: 6px 0;
  color: #55607a;
  line-height: 1.55;
  font-size: 15px;
}

/* Небольшая адаптация */
@media (max-width: 840px) {
  .privacy-modal__dialog {
    margin: 24px 16px;
    padding: 22px 18px 24px;
  }

  .privacy-modal__title {
    font-size: 24px;
  }
}

/* Общая обертка на весь экран */
.privacy-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 999;
  overflow: hidden;
  /* убираем скролл у body под модалкой */
}

/* Синий задний фон */
.privacy-modal__backdrop {
  position: absolute;
  inset: 0;
  background: #3156d6;
  opacity: 1;
}

/* Диалог */
.privacy-modal__dialog {
  position: relative;
  max-width: 780px;
  height: 90vh;
  /* ограничиваем по высоте окна */
  margin: 48px auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 28px 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  outline: none;
  display: flex;
  flex-direction: column;
}

/* Контент делаем скроллимым */
.privacy-modal__content {
  overflow-y: auto;
  flex: 1;
  /* занимает всё доступное место */
  padding-right: 6px;
  /* небольшой отступ для скролла */
}

/* При открытии блокируем скролл body */
body.modal-open {
  overflow: hidden;
}

/* базовая кнопка для примера */
.btn-privacy {
  color: #08113F;
  text-align: center;
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  /* 135% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  background: transparent;
  border: none;
}

/* контейнер модалки */
.disclaimer-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  overflow: hidden;
}

.disclaimer-modal.is-open {
  display: block;
}

/* синий задний фон */
.disclaimer-modal__backdrop {
  position: absolute;
  inset: 0;
  background: #3156d6;
}

/* белая карточка-пилюля с синей рамкой */
.disclaimer-modal__dialog {
  position: relative;
  max-width: 680px;
  width: calc(100% - 32px);
  margin: 24px auto;
  background: #fff;
  border: 3px solid #2f55ff;
  border-radius: 24px;
  /* большие скругления как на макете */
  box-shadow: 0 16px 48px rgba(0, 0, 0, .2);
  outline: none;

  /* скролл внутри при переполнении */
  max-height: 60vh;
  display: flex;
  flex-direction: column;
}

/* шапка */
.disclaimer-modal__title {
  margin: 20px 56px 6px;
  /* запас под крестик справа */
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  color: #0b1426;
}

/* текст */
.disclaimer-modal__content {
  padding: 0 24px 20px;
  text-align: center;
  color: #5c6785;
  line-height: 1.55;
  font-size: 15px;
  overflow: auto;
  /* собственный скролл при переполнении */
}

/* крестик */
.disclaimer-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 0;
  background: #e9f3ff;
  color: #3b4b6a;
  cursor: pointer;
  line-height: 1;
}

/* блокируем скролл лендинга при открытии */
body.modal-open {
  overflow: hidden;
}

/* адаптация */
@media (max-width: 480px) {
  .disclaimer-modal__dialog {
    border-radius: 18px;
    max-height: 70vh;
  }

  .disclaimer-modal__title {
    font-size: 22px;
    margin: 16px 48px 4px;
  }
}

.policy_disclamer {
  display: flex;
  justify-content: space-around;
}