.modal {
  transition: all 0.2s ease-in;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  max-height: 100vh;
  max-width: 177.8vh;
  top: 0;
  left: 0;
}

.modal__shadow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-backdrop-filter: blur(calc(42.79999923706055 / 720 * 100vh));
  backdrop-filter: blur(calc(42.79999923706055 / 720 * 100vh));
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 998;
}

.modal__wrapper {
  position: relative;
  z-index: 999;
  border: calc(3 / 720 * 100vh) solid #fc782c;
  background-color: #ffffff;
  border-radius: calc(30 / 720 * 100vh);
}

.modal__close {
  position: absolute;
  cursor: pointer;
  width: calc(21 / 720 * 100vh);
  height: calc(21 / 720 * 100vh);
}

.modal__open {
  cursor: pointer;
}

.modal_active {
  opacity: 1;
  pointer-events: all;
}
