.youtubemodal {
  background-color: rgba(0, 0, 0, 0.8);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.youtubemodal.show {
  opacity: 1;
  pointer-events: auto;
}
.youtubemodal-overlay {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}
.youtubemodal-content {
  max-height: 100%;
  max-width: 100%;
  padding-inline: 10px;
  position: relative;
  width: calc(56.25vh - 80px);
}
@media screen and (max-width: 767px) {
  .youtubemodal-content {
    padding-inline: 0;
  }
}
.youtubemodal-close {
  background-color: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 40px;
  line-height: 1;
  position: absolute;
  right: 0;
  top: -40px;
  z-index: 11;
}
.youtubemodal-player {
  aspect-ratio: 9 / 16;
  height: auto;
  width: 100%;
}
.youtubemodal-player iframe {
  border: 0;
  height: 100%;
  width: 100%;
}
