.form-v2 input:not([type=submit]) {
  height: 50px;
  width: 100%;
  padding: clamp(9px, calc(0.4375vw + 7.6px), 16px) clamp(15px, calc(0.9375vw + 12px), 30px);
  border-radius: 30px;
  border: 1px solid var(--borderInput, var(--Main-text));
  background: var(--backgroundInput, var(--Head));
  font-weight: 300;
  font-size: clamp(12px, calc(0.125vw + 11.6px), 14px);
  line-height: 130%;
  color: var(--color, var(--Main-text));
  --color: var(--Stroke);
  transition: var(--transition);
}
.form-v2 input:not([type=submit])::-moz-placeholder {
  font-weight: 300;
  font-size: clamp(12px, calc(0.125vw + 11.6px), 14px);
  line-height: 130%;
  color: var(--color, var(--Main-text));
  --color: var(--Stroke);
  text-transform: uppercase;
}
.form-v2 input:not([type=submit])::placeholder {
  font-weight: 300;
  font-size: clamp(12px, calc(0.125vw + 11.6px), 14px);
  line-height: 130%;
  color: var(--color, var(--Main-text));
  --color: var(--Stroke);
  text-transform: uppercase;
}
.form-v2 input:not([type=submit]):focus-visible {
  outline: none;
}
.form-v2 input:not([type=submit]).error {
  border-color: red;
  --colorInput: red;
}
.form-v2 input:not([type=submit]).error::-moz-placeholder {
  --colorInput: red;
}
.form-v2 input:not([type=submit]).error::placeholder {
  --colorInput: red;
}
.form-v2 textarea {
  height: 140px;
  width: 100%;
  padding: clamp(9px, calc(0.4375vw + 7.6px), 16px) clamp(15px, calc(0.9375vw + 12px), 30px);
  border-radius: 30px;
  border: 1px solid var(--borderInput, var(--Main-text));
  background: var(--backgroundInput, var(--Head));
  font-weight: 300;
  font-size: clamp(12px, calc(0.125vw + 11.6px), 14px);
  line-height: 130%;
  color: var(--color, var(--Main-text));
  --color: var(--Stroke);
  transition: var(--transition);
  resize: none;
}
.form-v2 textarea::-moz-placeholder {
  font-weight: 300;
  font-size: clamp(12px, calc(0.125vw + 11.6px), 14px);
  line-height: 130%;
  color: var(--color, var(--Main-text));
  --color: var(--Stroke);
  text-transform: uppercase;
}
.form-v2 textarea::placeholder {
  font-weight: 300;
  font-size: clamp(12px, calc(0.125vw + 11.6px), 14px);
  line-height: 130%;
  color: var(--color, var(--Main-text));
  --color: var(--Stroke);
  text-transform: uppercase;
}
.form-v2 textarea:focus-visible {
  outline: none;
}
.form-v2 textarea.error {
  border-color: red;
  --colorInput: red;
}
.form-v2 textarea.error::-moz-placeholder {
  --colorInput: red;
}
.form-v2 textarea.error::placeholder {
  --colorInput: red;
}
.form-v2 button[form-send] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-v2 button[form-send].disabled {
  color: transparent;
}
.form-v2 input.hidden {
  display: none;
}
.form-v2 .form-status {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.form-v2 .form-preloader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 45px;
  height: 45px;
  transform: scale(0.85);
  margin: auto;
}
.form-v2 .form-preloader .preloader__item {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  border-radius: 50%;
  animation: bounce_circularG 1.1s infinite;
}
.form-v2 .form-preloader .preloader__item-1 {
  left: 0;
  top: 18px;
  animation-delay: 0s;
}
.form-v2 .form-preloader .preloader__item-2 {
  left: 5px;
  top: 5px;
  animation-delay: 0.14s;
}
.form-v2 .form-preloader .preloader__item-3 {
  top: 0;
  left: 18px;
  animation-delay: 0.28s;
}
.form-v2 .form-preloader .preloader__item-4 {
  right: 5px;
  top: 5px;
  animation-delay: 0.42s;
}
.form-v2 .form-preloader .preloader__item-5 {
  right: 0;
  top: 18px;
  animation-delay: 0.56s;
}
.form-v2 .form-preloader .preloader__item-6 {
  right: 5px;
  bottom: 5px;
  animation-delay: 0.7s;
}
.form-v2 .form-preloader .preloader__item-7 {
  left: 18px;
  bottom: 0;
  animation-delay: 0.84s;
}
.form-v2 .form-preloader .preloader__item-8 {
  left: 5px;
  bottom: 5px;
  animation-delay: 0.98s;
}
.form-v2 .form__btn {
  position: relative;
  width: -moz-max-content;
  width: max-content;
}
.form-v2 .form__privacy {
  --color: var(--Stroke);
}
.form-v2 .form__privacy-link {
  --color: var(--Primary);
  cursor: pointer;
  transition: var(--transition);
}
@media (min-width: 992px) {
  .form-v2 .form__privacy-link:hover {
    text-decoration: underline;
  }
}
.form-v2 .form__checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.form-v2 .form__checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.form-v2 .form__checkbox input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: max(2 / 19.2 * 1vw, 2px);
  left: max(8 / 19.2 * 1vw, 8px);
  width: max(6 / 19.2 * 1vw, 6px);
  height: max(12 / 19.2 * 1vw, 12px);
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-v2 .form__checkbox input:checked + label::before {
  background-color: #000;
  border-color: #000;
}
.form-v2 .form__checkbox input.error ~ label::before {
  border-color: red;
  color: red;
}
.form-v2 .form__checkbox label {
  position: relative;
  cursor: pointer;
  display: flex;
}
.form-v2 .form__checkbox label:before {
  content: "";
  background-color: transparent;
  border: 1px solid #e2e3e3;
  padding: max(10 / 19.2 * 1vw, 10px);
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: max(10 / 19.2 * 1vw, 10px);
  border-radius: 3px;
  height: 100%;
}
@keyframes bounce_circularG {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.3);
  }
}

.theme-modal {
  height: -moz-fit-content;
  height: fit-content;
  width: 570px;
  max-height: 90vh;
  max-width: 90vw;
  background: var(--Head);
  border-radius: 30px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  transition: transform 0.3s ease-in;
  z-index: 99999;
  padding: clamp(30px, calc(1.875vw + 24px), 60px) clamp(20px, calc(3.75vw + 8px), 80px);
  overflow-x: hidden;
  overflow-y: auto;
}
.theme-modal::-webkit-scrollbar {
  width: 3px;
}
.theme-modal::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background: var(--Primary);
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  background-clip: padding-box;
}
.theme-modal::-webkit-scrollbar-track {
  background-color: var(--Head);
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  background-clip: padding-box;
}
.theme-modal.modal-open {
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.theme-modal .close-modal {
  position: absolute;
  right: clamp(15px, calc(0.9375vw + 12px), 30px);
  top: clamp(15px, calc(0.9375vw + 12px), 30px);
  width: clamp(13px, calc(0.1875vw + 12.4px), 16px);
  height: clamp(13px, calc(0.1875vw + 12.4px), 16px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.theme-modal .close-modal * {
  pointer-events: none;
}
.theme-modal .close-modal svg {
  --svgColor: var(--Main-text);
  margin-right: 0;
}
.theme-modal .close-modal.theme-modal__close-btn {
  position: static !important;
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .theme-modal .close-modal:hover svg {
    --svgColor: var(--Primary);
  }
}
.theme-modal__title {
  --color: var(--Background-dark);
  margin-bottom: clamp(10px, calc(0.3125vw + 9px), 15px);
}
.theme-modal__subtitle {
  --color: var(--Text);
}
.theme-modal__close-btn {
  margin-top: clamp(15px, calc(0.9375vw + 12px), 30px);
}
.theme-modal .form__input {
  width: 100%;
  margin-bottom: clamp(10px, calc(0.625vw + 8px), 20px);
}
.theme-modal .form__input input::-moz-placeholder {
  --color: var(--Main-text);
}
.theme-modal .form__input input::placeholder {
  --color: var(--Main-text);
}
.theme-modal .form__btn {
  width: 100% !important;
  margin-bottom: clamp(10px, calc(0.625vw + 8px), 20px);
}
.theme-modal .form__btn .btn {
  width: 100%;
}
.theme-modal .form__holder {
  margin-top: clamp(15px, calc(0.9375vw + 12px), 30px);
}
.theme-modal__holder.text-block {
  margin-top: clamp(15px, calc(0.9375vw + 12px), 30px);
  --color: var(--Text);
}
.theme-modal__holder.text-block h2,
.theme-modal__holder.text-block h3,
.theme-modal__holder.text-block h4,
.theme-modal__holder.text-block h5,
.theme-modal__holder.text-block h6 {
  --color: var(--Background-dark);
  margin-bottom: clamp(5px, calc(0.9375vw + 2px), 20px);
}
.theme-modal__holder.text-block h2,
.theme-modal__holder.text-block h3 {
  font-weight: 900;
  font-size: clamp(16px, calc(0.5vw + 14.4px), 24px);
  line-height: 130%;
  color: var(--color, var(--Head));
  text-transform: uppercase;
}
.theme-modal .form__privacy {
  --color: var(--Text);
  text-align: center;
}
.theme-modal .form__privacy-link {
  --color: var(--Primary);
  text-decoration: underline;
}
.theme-modal .form__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.theme-modal .form__bottom .form__btn,
.theme-modal .form__bottom .form__btn .btn {
  width: -moz-fit-content !important;
  width: fit-content !important;
  margin-bottom: 0;
}
.theme-modal .form__bottom .form__privacy {
  margin-right: 10px;
  max-width: 60%;
}

#modal-policy {
  width: 920px;
}/*# sourceMappingURL=form.css.map */