/* Embedded iframe */
.embedded-wrapper {
  width: 100%;
  height: 1200px;
}

.embedded-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Launcher icon */
#iframeLauncher {
  position: absolute;
  top: 12px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9998;
  box-shadow: 0 8px 20px rgba(0,0,0,.3);
}

/* Lightbox */
#iframeLightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  display: none;
  z-index: 9999;
}

#iframeLightbox.active {
  display: block;
}

.iframe-container {
  position: absolute;
  inset: 5%;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.lightbox-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  background: #000;
  color: #fff;
  border: none;
  font-size: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}
