._ask-question .modal__container,
._ask-question-2 .modal__container {
  /* min-height: 100%; */
}

._ask-question .modal__wrap,
._ask-question-2 .modal__wrap {
  /* flex-flow: wrap; */
}

.form__loader {
  /* position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; */
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

@keyframes progressForm {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.form__loader-progress {
  animation: progressForm 1s infinite linear;
}

.form__loader-title {
  margin-top: 24px;
  font-family: 'Kaspersky Sans Text';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #1F3238;
  opacity: 0.7;
}