dialog {
  width: 90%;
  height: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 30px;
  border: 0px;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 768px) {
  dialog {
    aspect-ratio: 3/4;
    padding: 40px 10px;
  }
}
dialog::backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust the color and opacity as desired */
  z-index: 9999; /* Ensure the backdrop overlays other elements */
}

iframe {
  width: 100%;
  height: 100%;
}

.close-button {
  float: right;
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 5px;
  width: 25px;
  height: 25px;
  background-image: url(../icon/icon_close.svg?v=2);
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .close-button {
    width: 35px;
    height: 35px;
  }
}

.dialog:before {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
  z-index: 9999; /* Set a high z-index value to ensure the modal appears on top */
}/*# sourceMappingURL=diaglog.css.map */