<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.vi-modal-container {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease 0s; }
  .vi-modal-container.active {
    opacity: 1;
    pointer-events: auto; }
  .vi-modal-container .vi-modal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); }
  .vi-modal-container .vi-modal-inner {
    width: 100%;
    max-width: 600px;
    height: 100%;
    margin: 0 auto;
    text-align: center; }
  .vi-modal-container .vi-modal-video {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center; }
    .vi-modal-container .vi-modal-video video {
      height: 100%;
      width: auto;
      max-width: 540px;
      max-height: 960px;
      margin: 0 auto; }
  .vi-modal-container.scale-width .vi-modal-inner {
    max-width: 1600px; }
  .vi-modal-container.scale-width .vi-modal-video video {
    height: auto;
    width: 90%;
    max-width: none;
    max-height: none; }
  .vi-modal-container .vi-modal-close {
    position: fixed;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: flex-end;
    border: 1px solid #fff;
    background-color: rgba(0, 0, 0, 0.2); }
    .vi-modal-container .vi-modal-close::before, .vi-modal-container .vi-modal-close::after {
      position: absolute;
      top: 40%;
      left: 30%;
      width: 40%;
      height: 2px;
      background-color: #FFF;
      content: ""; }
    .vi-modal-container .vi-modal-close::before {
      transform: rotate(45deg); }
    .vi-modal-container .vi-modal-close::after {
      transform: rotate(-45deg); }
    .vi-modal-container .vi-modal-close .close-txt {
      text-align: center;
      font-size: 12px;
      margin-bottom: 2px;
      width: 100%;
      color: #fff; }
</pre></body></html>