@import url(https://fonts.googleapis.com/css?family=Inter:400,600,800);
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 8;
  font-weight: 400;
  pointer-events: none;
  opacity: 0;
  transition-property: opacity;

  display: flex;
  justify-content: center;
}

.popup-content {
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.popup-header {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 20%;
}

.popup-title {
  margin-top: 5vh;
  font-size: min(55px, 11vw);
  font-weight: 600;
}

.popup-close {
  position: absolute;
  top: 0;
  right: 2.2%;
  cursor: pointer;
  font-size: min(48.1px, 8vw);
}

.popup.fade-in {
  pointer-events: all;
  opacity: 1;
}

.popup.fade-out {
  pointer-events: none;
  opacity: 0;
}

.popup .big-margin {
  margin-top: 5% !important;
}

.popup .space-out {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popup .shadow {
  text-shadow: 0 0 5px #000;
}


pop-up {
  display: none;
}

popup-error {
  display: none;
}

popup-success {
  display: none;
}

.fullscreen-on, .fullscreen-on .popup-body {
  width: 100% !important;
  height: 100vh !important;
  border-radius: 0 !important;
}
/* не понятно зачем было добавлено */
.fullscreen-on .popup-close {
  /*top: 0 !important;*/
  /*right: 0 !important;*/
}

.popup .popup-content {
  max-height: 100vh;
  color: var(--color-corp);
  margin: 0 !important;
  border-radius: 16px;
  box-shadow: 0 0 0 0;
  overflow-y: auto;
}
@media (max-width: 833px) {
  .popup .popup-content {
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
  }
}
.popup .popup-header {
  height: 0 !important;
  margin: 0 !important;
}
.popup .popup-title {
  display: none;
}
.popup .popup-body {
  text-align: initial;
  margin: 0 !important;
}
.popup .popup-close {
  top: 10px;
}/*# sourceMappingURL=popup.css.map */