.form__item {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 480px;
  width: 100%;
  gap: 20px;
}

.preloader {
  display: none;
  background: white;
  position: absolute;
  top: 0%;
  bottom: 0;
  left: 0%;
  right: 0;
  z-index: 400;
  background-image: url(../images/preloader.gif);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  opacity: 0.5;
  border-radius: 8px;
}

.form__top {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form__item h3 {
  text-align: center;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.5rem; /* 133.333% */
  text-transform: uppercase;
  margin: 0;
}

/* .form__subtitle {
  color: rgb(46, 42, 43);
  font-size: 1rem;
  font-weight: 400;
  line-height: 140%;
  text-align: left;
} */

.form__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form__input[type="tel"] {
  padding-block: 16px;
}

.form__input::placeholder {
  color: rgba(28, 28, 28, 0.6);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.form__label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 50px;
  color: rgb(46, 42, 43);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.015rem;
  transition: 0.3s ease;
  pointer-events: none;
}

.form__input-wrapper {
  position: relative;
}

.form__input-wrapper.active .form__label {
  top: 9px;
  transform: none;
  color: rgb(46, 42, 43);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

label.error {
  display: flex;
  transform-style: preserve-3d;
  position: absolute;
  z-index: 2;
  top: calc(100% + 4px);
  left: 0;
  min-width: 90%;
  border-radius: 8px;
  background: #ff2314;
  color: #ffffff;
  font-size: 0.775rem;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 1.05rem */
  padding: 5px 10px;
}

label.error::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 15px;
  height: 15px;
  background: #ff2314;
  border-radius: 2px;
  transform: translateZ(-1px) rotate(45deg);
  top: -8px;
  left: 11px;
  transform-style: preserve-3d;
}

/* .intl-tel-input.allow-dropdown .flag-container,
.intl-tel-input.separate-dial-code .flag-container {
  padding: 0 !important;
} */

.intl-tel-input .selected-flag {
  outline: none;
  border: none;
  padding: 0 10px !important;
}

/*input[type="tel"] {*/
/*  padding-left: 130px !important;*/
/*}*/

.form__footer {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.checkbox-svg {
  margin-bottom: 0 !important;
}

.checkbox-svg label.checked-svg {
  /*margin-top: -10px!important;*/
  width: 20px !important;
  height: 20px !important;
}

.privacy-checkbox p {
  /*padding-left: 9px !important;*/
  color: #ccc;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.03rem;
}

.intl-tel-input .selected-flag {
  position: relative;
  /* background-color: #eee; */
}

.privacy-checkbox a {
  color: #fff;
  text-decoration: none;
}

.form__protect {
  display: flex;
  align-items: start;
  column-gap: 9px;
}

.form__protect h3 {
  margin: 0;
}

.form__protect-icon {
  width: 16px;
  height: 12px;
  flex-shrink: 0;
}

.form__protect-title {
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: normal;
}

.form__protect-description {
  color: #fff;
  font-size: 6px;
  font-weight: 400;
  line-height: normal;
}

/* .selected-flag {
  background-color: transparent !important;
} */

.country-name {
  color: #000;
}

.form__submit {
  padding-block: 22px;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media (max-width: 1200px) {
  .form__item h3 {
    font-size: 1.5rem;
    line-height: normal;
  }
}

@media (max-width: 700px) {
  .form__item {
    padding: 30px 20px;
    width: 100%;
    max-width: 340px;
    gap: 16px;
  }

  .form__content {
    gap: 10px;
  }
}
