.popup {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1000;
  font-family: "Gilroy";
  transition: 0.3s;
  overflow: auto;
}
.popup.hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: 0.3s;
}
.popup__body {
  padding: 16px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup__content {
  max-width: 550px;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
}
.popup__title {
  font-size: 26px;
  line-height: 34px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 16px;
}
.popup__box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 400px;
  margin: 0 auto 16px;
}
.popup__box-btn {
  padding: 16px 40px;
  border-radius: 4px;
  background: #f1d612;
  border: none;
  color: #000;
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.popup__box-btn:hover {
  scale: 1.05;
  transition: 0.3s;
}
.popup__text {
  font-size: 18px;
  line-height: 24px;
  text-align: center;
}

.money-back {
  margin-top: 24px;
}
.money-back-title {
  color: #fff;
  font-family: "Gilroy";
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 16px;
}
.money-back-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}
.money-back-box img {
  display: block;
  width: calc(33.33% - 8px);
}

.docs {
  min-height: 100vh;
  background: #303d6b;
  font-family: "Gilroy";
  color: #fff;
  margin: 0;
}
.docs .container {
  max-width: 1200px;
  padding: 0 16px;
  margin: 0 auto;
}
.docs h1 {
  text-align: center;
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 40px;
}
.docs p {
  font-size: 20px;
  line-height: 26px;
  margin-top: 16px;
}

.consent {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  cursor: pointer;
}
.consent__input {
  width: 25px;
  height: 25px !important;
}
.consent__text {
  font-size: 14px;
  line-height: 15px;
  text-align: left;
}

form button.hero__btn:disabled {
  background: gray !important;
  cursor: not-allowed;
  color: #fff !important;
}
form button.hero__btn:disabled:hover {
  box-shadow: none !important;
}
form button.hero__btn:disabled::after {
  display: none !important;
}

.form-item.invalid input {
  border-color: #fe736a !important;
  background-color: #fff5f1 !important;
}

.documents {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}
.documents a {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: "Gilroy";
}
.documents a:hover {
  text-decoration: underline;
}

.bottom__info {
  border: 2px solid red;
  margin: 10px 0;
  display: flex;
  padding: 3px;
}

.bottom__info-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 0.3rem;
}

.bottom__img-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}

.contr-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.countr-img {
  width: 38px;
  /* height: 30px; */
  border-radius: 7px;
  border: 1px solid #f1f1f1;
  margin-top: 3px;
  margin-bottom: 3px;
}

.countr-pref {
  font-size: 14px;
  color: #010101;
  font-family: "Gilroy";
  margin-right: 4px;
  margin-left: 4px;
}

.bottom__info-text {
  margin-bottom: 10px;
  font-size: 14px;
  color: #0e0e0e;
  font-family: "Gilroy";
  margin-top: 10px;
}

@keyframes alertI {
  0% {
    background-color: #fff;
  }
  25% {
    background-color: #d21e2f;
  }
  50% {
    background-color: #d21e2f;
  }
  75% {
    background-color: #d21e2f;
  }
  100% {
    background-color: #fff;
  }
}
@media all and (max-width: 680px) {
  .bottom__info-container {
    align-items: center;
  }
  .bottom__img-container {
    width: 100%;
    justify-content: center;
  }
  .bottom__info-text {
    text-align: center;
  }
  .countr-img {
    width: 40px;
    height: 32px;
    border-radius: 4px;
  }
}
@media (max-width: 819px) {
  .popup__content {
    border-radius: 12px;
  }
  .popup__box-btn {
    padding: 16px 20px;
    font-size: 18px;
  }
  .popup__text {
    font-size: 16px;
  }
  .money-back-title {
    color: #000;
  }
  .documents {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  .documents a {
    color: #000;
  }
  .docs h1 {
    font-size: 26px;
    line-height: 30px;
  }
  .docs p {
    font-size: 18px;
    line-height: 26px;
  }
}/*# sourceMappingURL=style-2.css.map */