.entry-popup {
  position: fixed;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  transform: translateY(60%) scale(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.entry-popup.visible {
  transform: translateY(0) scale(1);
  background: rgba(0, 0, 0, 0.63);
}
.entry-popup__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.entry-popup__container-close {
  display: flex;
  justify-content: flex-end;
}
.entry-popup__close {
  text-align: end;
  font-size: 26px;
  color: #fff;
  font-weight: 600;
  z-index: 20;
  background: transparent;
  border: 0;
}
.entry-popup .modal-exit {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.entry-popup figure {
  position: relative;
  max-width: 660px;
  width: 100%;
  height: auto;
}
.entry-popup figure img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.disable-scroll {
  overflow: hidden;
}
