html.bvm-lock,
html.bvm-lock body {
  overflow: hidden;
}

.bvm-modal {
  display: none;
}
.bvm-modal.is-open {
  display: block;
}

.bvm-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
}

.bvm-dialog {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(960px, 92vw);
  background: #111;
  border-radius: 12px;
  z-index: 9999;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.bvm-video {
  width: 100%;
  height: auto;
  max-height: 78vh;
  border-radius: 10px;
  background: #000;
}

.bvm-close {
  position: absolute;
  left: 10px;
  top: 2px;
  background: transparent;
  border: 0;
  color: #000;
  font-size: 40px;
  cursor: pointer;
  z-index: 10000;
}

.bvm-mute--topleft {
  position: absolute;
  left: 52px;
  top: 9px;
}

.bvm-mute {
  background: transparent;
  border: 0;
  color: #000;
  font-size: 36px;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bvm-icon {
  width: 36px;
  height: 36px;
}

.bvm-icon--small {
  width: 20px;
  height: 20px;
  color: white;
}

.bvm-mute .icon-volume {
  display: none;
}
.bvm-mute.is-unmuted .icon-muted {
  display: none;
}
.bvm-mute.is-unmuted .icon-volume {
  display: inline;
}

@media (max-width: 768px) {
  .bvm-close {
    font-size: 20px;
  }
}

.bvm-dismiss-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 6px;
}

.bvm-dismiss {
  appearance: none;
  background: transparent;
  color: white;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
}

.bvm-hide {
  display: none;
}
