/* Styles will be added later */
.popup-container {
  display: none;
  /* Additional styles */
}

.popup-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10vh 10vw;
}

.popup-container .popup-content {
  background: white;
  /* 	padding: 0 10px; */
  overflow: scroll;
  height: 80vh;
  font-size: 16px;
  border: 30px solid white;
}

.popup-container .popup-content h2 {
  font-size: 30px;
}

.popup-images {
  /* 	display: flex; */
}

.popup-images img {
  width: 100%;
  display: block;
  margin-top: 30px;
}

.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0;
  width: 40px;
  aspect-ratio: 1;
  display: block;
  background: white;
  border: none;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.popup-close::after {
  content: "+";
  font-size: 40px;
  transform: rotate(-45deg);
  display: block;
  transition: 0.2s;
}

.popup-close:hover::after {
  transform: rotate(45deg);
}

@media (max-width: 1000px) {
  .popup-container .popup-content h2 {
    font-size: 18px;
  }

  .popup-container .popup-content {
    border: 20px solid white;
    /* 	height: 70vh; */
  }

  .popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
  }

  .popup-close::after {
    font-size: 30px;
  }

  .popup-container {
    padding: 10vh 5vw;
  }
}
