/* Style for the popup (initially hidden) */
.popup {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7); /* Black background with opacity */
}

.trigger-popup{
  cursor: pointer;
}

/* Style for the popup content (centered in the popup) */
.popup-content {
  padding: 8px;
  border-radius: 4px;
  background-color: white;
  width: 100%;
  max-width: 1152px;
  height: 648px;
  margin: auto;
  margin-top: 32px;
  position: relative;
}

.popup-content iframe{
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1280px) {
  .popup-content {
    width: 86.4vw;
    height: 48.6vw;
    margin-top: calc(50vh - 24.3vw);
  }
}

/* Close button */
.close-button {
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 12px;
  top: 12px;
  width: 32px;
  height: 32px;
  background: white;
  border: gainsboro;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
  color: black;
  box-shadow: 2px 2px 8px 8px #0003;
}

.close-button:hover,
.close-button:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}