#iframeBox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  border: none;
  z-index: 9999;
  display: none;
  background-color: rgba(0, 0, 0, 0.7);
}

#iframe-close-btn {
  display: none;
  position: fixed;
  top: 10px;
  right: 10px;
  padding: 7px 10px;
  height: 16px;
  z-index: 10000;
  cursor: pointer;
  border-radius: 5px;
  box-sizing: content-box;
  background-color: rgba(0, 0, 0, 0.5);
}

#videoContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  border: none;
  z-index: 9999;
  /* display: none; */
  background-color: rgba(0, 0, 0, 0.7);
}
.video-iframe {
  width: 100%;
  height: 100%;
  border: none;
  /* background-color: red; */
  background-color: transparent;
}