/* Start Form */

.scroll--lock {
  overflow: hidden;
}

.modal-form._show {
  overflow-y: auto;
  display: grid;
}

.modal-form {
  position: fixed;
  z-index: 1;
  inset: 0;
  background: rgba(28, 33, 48, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  align-items: center;
}

.modal-form__item img {
  width: 100%;
}

.modal-form__item {
}

.modal-form__item:first-child {
  max-width: 859px;
  width: 100%;
  padding: 48px 20px;
}
/* .modal-form__item-one {
	max-width: 700px ;
	width: 100%;
} */

.modal-form_title {
  color: var(--text, #2f2f2f);
  text-wrap: balance;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.025rem;
  margin-bottom: 2rem;
}

.modal-form_info {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.96px;
  text-align: center;
  margin-bottom: 57px;
}

.pulse-button {
  max-width: 384px;
  width: 100%;
  color: var(--white, #fff);
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  /* 1rem */
  letter-spacing: -0.02rem;
  border-radius: 0.5rem;
  background: var(--red, #e52529);

  padding: 1rem 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-content: center;
  animation: pulse 1.5s ease-in-out infinite;
  margin: 32px auto 0px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.pulse-element {
  animation: pulse 1.5s ease-in-out infinite;
}

.register-form {
  max-width: 384px;
  width: 100%;
}

.loader-parent {
  background-color: #ffffff;
  padding: 32px;
  width: 384px;
  background: #fff;
  max-width: 384px;
}

.loader-parent__heading {
  margin-bottom: 10px;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;

  color: #000;
}

.form-input-main {
  margin-bottom: 15px;
}

.form-input-main input,
.form-input-main select {
  font-family: "Inter", sans-serif;
  height: 42px;
  width: 100%;
  padding-left: 16px;
  border: 1px solid #25cf44;
  background-color: #fff;
  border-radius: 4px;
  font-weight: 400;
  font-size: 16px;
  color: #3c4152;
}

.form-input-main select {
  margin: 0;
  width: 100%;
}

.form-input-main input::placeholder,
.form-input-main select::placeholder {
  color: #3c4152;
  font-size: 16px;
}

button[name="submitBtn"] {
  width: 100%;
  height: 44px;
  border-radius: 4px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  border: none;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;

  border-radius: 0.5rem;
  background: var(--red, #e52529);
  color: var(--white);
}

button[name="submitBtn"]:active {
  box-shadow: 3px 3px 4px #000;
  transform: translateY(0.25rem);
}

.form-header-text,
.form-footer-text {
  color: #fff;
  font-size: 14px;
  text-align: center;
}

.form-header-text {
  margin-bottom: 20px;
  font-size: 1.375rem;
  text-transform: uppercase;
}

.form-footer-text {
  margin-top: 20px;
}

.form-input-main label {
  display: flex;
  align-items: flex-start;
  flex-direction: column-reverse;
  gap: 10px;
  font-size: 1rem;
  line-height: 100%;
  color: #000;
}

.form-input-main label.checkbox--row {
  flex-direction: row;
  align-items: center;
}

.form-input-main label.checkbox--row span.checkbox--span {
  width: 100%;
}

.form-input-main label input[type="checkbox"] {
  width: 25px;
  height: 25px;
  padding: 0;
  margin: 0;
  accent-color: #25cf44;
}

.iti--separate-dial-code.iti--show-flags .iti__selected-dial-code {
  margin-left: 6px;
  font-size: 16px;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type="tel"],
.iti--allow-dropdown input[type="text"],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type="tel"],
.iti--separate-dial-code input[type="text"] {
  width: 100%;
  /* padding-left: 96px !important; */
}

.iti__selected-dial-code,
.iti__arrow {
  color: #000 !important;
  border-top-color: #000 !important;
}

.iti {
  width: 100% !important;
}

.iti__country {
  color: #000 !important;
}

.form-input option {
  color: #000 !important;
}

/* Hide arrows */

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.error {
  background-color: rgba(255, 0, 0, 0.6) !important;
  color: #fff !important;
}

.error::placeholder {
  color: #fff !important;
}

.valid {
  background-color: rgba(0, 255, 0, 0.6) !important;
}

/* loader */
.loader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: rgba(37, 44, 51, 0.5);
}

.loader-element {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #00faaa;
  -webkit-animation: 2s linear infinite spin;
  animation: 2s linear infinite spin;
}

.loader-element::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #f70044;
  -webkit-animation: 3s linear infinite spin;
  animation: 3s linear infinite spin;
}

.loader-element::after {
  position: absolute;
  content: "";
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #00faaa;
  -webkit-animation: 1.5s linear infinite spin;
  animation: 1.5s linear infinite spin;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.modal_phone {
  opacity: 1;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 99999;
  display: none;
  outline: 0;
  padding-right: 15px;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
  overflow-x: hidden;
  overflow-y: auto;
  color: #000;
}

.modal_phone.open_phone {
  display: flex;
}

.modal-open_phone {
  overflow: hidden;
}

.modal-dialog_phone {
  position: relative;
  width: 100%;
  max-width: 32rem;
  padding: 1rem;
  box-sizing: border-box;
}

.modal-content_phone {
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-header_phone {
  display: flex;
  align-items: center;
  padding: 1rem 1rem;
}

.modal-header_phone {
  justify-content: space-between;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

.modal-body_phone {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-title_phone {
  font-size: 1.25rem;
  font-weight: 600;
}

.close-button_phone {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.5;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

@media screen and (max-width: 768px) {
  button[name="submitBtn"] {
    width: 100%;
  }

  .modal-form_info {
    font-size: 1.75rem;
  }

  .modal-form__item {
    width: 100%;
  }

  .modal-form-content {
    flex-direction: column;
    max-width: 400px;
  }
}

@media screen and (max-width: 640px) {
  .modal-form_title {
    font-size: 22px;
  }

  .modal-form_info {
    font-size: 18px;
  }

  .loader-parent__heading {
    font-size: 22px;
  }

  .loader-parent {
    padding: 16px;
  }
  .loader-parent {
    width: 320px;
  }
}
@media screen and (max-width: 400px) {
  .modal-form_title {
    font-size: 22px;
  }

  .modal-form_info {
    font-size: 18px;
  }

  .loader-parent__heading {
    font-size: 22px;
  }

  .loader-parent {
    padding: 16px;
  }
  .loader-parent {
    width: 300px;
  }
}

/* End Form */
