/* Попапы WildJam: скрыты по умолчанию, открываются по ссылке-хуку.
   На текущем сайте триггеров нет — стили обеспечивают корректное
   скрытие и базовое открытие. */

.wj-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10000001;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.wj-popup.wj-popup--visible {
  display: block;
  opacity: 1;
}

.wj-popup__container {
  position: relative;
  margin: 60px auto;
  max-width: 460px;
  background-color: #fff;
}

.wj-popup__close {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 43px;
  height: 43px;
  z-index: 9;
}
.wj-popup__close-button {
  display: inline-block;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.wj-popup__close-icon {
  display: block;
}

body.wj-page--popup-open {
  overflow: hidden;
}
