.popups-container {
  position: fixed;
  display: none;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}
.popups-container .cache {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgb(255, 255, 255);
}
.popups-container .popup {
  position: absolute;
  background-color: #fff;
  top: 50%;
  left: 50%;
  padding: 40px 0 60px 0;
  width: 100vw;
  height: 90vh;
  display: flex;
  justify-content: center;
  transform: translateX(-50%) translateY(-50%);
}
.popups-container .popup img {
  object-fit: contain;
  padding: 10px 0;
}
.popups-container .popup .close {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff;
  padding: 5px;
}

@media (min-width: 769px) {
  .popups-container .popup {
    padding: 40px;
    width: calc(100vw - 40px);
    height: 80vh;
  }
}