.wp-block-lazyblock-video-document-list-block .video-list {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.wp-block-lazyblock-video-document-list-block .video-list li {
  margin-bottom: 30px;
}
.wp-block-lazyblock-video-document-list-block .video-list li:last-child {
  margin-bottom: 0px;
}

.video-popup {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
}

.video-popup.is-open {
  display: flex;
}

.video-popup__wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  min-height: 500px;
  /* Set your desired minimum height */
  max-height: 90vh;
  overflow-y: auto;
  background: #EDF7FF;
  padding: 30px 20px;
  box-sizing: border-box;
}

.video-popup__video video {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  object-fit: cover;
  /* or contain */
  border-radius: 8px;
  background: #000;
}

.video-popup__content {
  margin-top: 24px;
}

.video-popup__close {
  position: absolute;
  top: -5px;
  right: 0px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--color-dark-gray);
  font-size: 24px;
  line-height: 40px;
  cursor: pointer;
}

@media (max-width: 767px) {
  .video-popup {
    padding: 15px;
  }
  .video-popup__wrapper {
    min-height: auto;
    max-height: 95vh;
    padding: 20px;
  }
}/*# sourceMappingURL=video-popup.css.map */