.modal {
  opacity: 0;
  width: 90vw;
  height: 80vh;
  background: #fff;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  padding: 50px;
  height: 600px;
  transition: all 0.3s ease 0s;
}

.modal.active {
  opacity: 1;
  z-index: 30;
}

.modal__exit {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 20px;
  right: 20px;
}
.modal__exit:before, .modal__exit:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background: #000;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.modal__exit:after {
  transform: rotate(45deg);
}
.modal__exit:before {
  transform: rotate(-45deg);
}

.modal__title {
  text-align: center;
}

.modal form {
  margin: 30px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal__input,
.modal__select {
  display: block;
  font-size: 20px;
  line-height: 120%;
  padding: 10px;
  border: 2px solid #444;
}

.modal__policy-block {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox {
  width: 20px;
  height: 20px;
}

.modal__btn {
  margin: 20px auto 0;
}

.exit {
  z-index: 100;
}

@media (max-width: 820px) {
  .modal__btn {
    width: 100%;
    max-width: 100%;
  }
  .modal {
    padding: 20px 30px 20px;
  }
}
@media (max-width: 500px) {
  .modal__title {
    font-size: 32px !important;
  }
  .exit {
    top: 10px;
    right: 10px;
  }
}
@media (max-width: 460px) {
  .modal {
    padding: 20px;
  }
}/*# sourceMappingURL=modal.css.map */