.vl-simple-video {
  width: 100%;
  padding: 18px 16px 34px;
  display: flex;
  justify-content: center;
}

.vl-simple-video__frame {
  position: relative;
  overflow: hidden;
  width: min(360px, 100%);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #07070b;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.34);
  aspect-ratio: 9 / 16;
}

.vl-simple-video__player {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #07070b;
}

@media (max-width: 760px) {
  .vl-simple-video {
    padding: 14px 14px 28px;
  }

  .vl-simple-video__frame {
    width: min(340px, 100%);
    border-radius: 24px;
  }
}


.vl-simple-video__frame.is-vl-video-expanded {
  position: fixed;
  inset: 0;
  z-index: 9999;
  width: 100vw;
  height: 100svh;
  max-width: none;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background: #000;
}

body.vl-simple-video-lock {
  overflow: hidden;
}

.vl-simple-video__frame.is-vl-video-expanded {
  position: fixed;
  inset: 0;
  z-index: 9999;
  width: 100vw;
  height: 100svh;
  max-width: none;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background: #000;
  cursor: pointer;
}

.vl-simple-video__frame.is-vl-video-expanded .vl-simple-video__player {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}
