.v-vlite {
  --vlite-colorPrimary: #ffd723;
  --vlite-transition: 0.25s ease;
  --vlite-controlBarHeight: 60px;
  --vlite-controlBarHorizontalPadding: 10px;
  --vlite-controlBarBackground: linear-gradient(0deg,#000 -50%,transparent);
  --vlite-controlsColor: #fff;
  --vlite-controlsOpacity: 0.9;
  --vlite-progressBarHeight: 5px;
  --vlite-progressBarBackground: rgba(0,0,0,.25);
  font-family: -apple-system, blinkmacsystemfont, segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji;
  overflow: hidden;
  position: relative;
}

.v-vlite, .v-vlite * {
  box-sizing: border-box;
}

.v-vlite.v-audio {
  --vlite-controlsColor: #000;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.v-vlite.v-video {
  aspect-ratio: 16/9;
  background-color: #000;
}

.v-vlite::-webkit-full-screen {
  height: 100%;
  width: 100%;
}

.v-vlite::-moz-full-screen, ::-moz-full-screen .v-vlite {
  height: 100%;
  width: 100%;
}

.v-vlite video::-webkit-media-controls {
  display: none !important;
}

.v-vlite.v-fullscreenButtonDisplay .v-bigPlay, .v-vlite.v-fullscreenButtonDisplay .v-controlBar {
  position: fixed;
  z-index: 2147483647;
}

.v-vlite.v-paused .v-controlBar.v-hidden {
  opacity: 1;
}

.v-vlite.v-paused:not(.v-firstStart) .v-poster, .v-vlite.v-playing .v-bigPlay, .v-vlite.v-playing .v-poster {
  opacity: 0;
  visibility: hidden;
}

.v-vlite iframe.vlite-js {
  pointer-events: none;
}

.v-container, .v-media, .v-media > iframe {
  height: 100%;
  width: 100%;
}

.v-controlButton, .v-media {
  position: relative;
}

.v-controlButton {
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: inherit;
  height: 100%;
  justify-content: center;
  opacity: var(--vlite-controlsOpacity);
  outline: none;
  padding: 0;
  transition: opacity var(--vlite-transition);
  width: 40px;
}

.v-controlButton * {
  pointer-events: none;
}

.v-controlButton.v-controlPressed .v-iconUnpressed, .v-controlButton:not(.v-controlPressed) .v-iconPressed {
  display: none;
}

.v-controlButton:focus-visible {
  outline: 2px dashed var(--vlite-colorPrimary);
  outline-offset: -4px;
}

.v-controlButton svg {
  fill: var(--vlite-controlsColor);
}

.v-controlButton.v-playPauseButton svg {
  height: 17px;
  width: 15px;
}

.v-controlButton.v-volumeButton svg {
  height: 20px;
  width: 24px;
}

.v-controlButton.v-fullscreenButton svg {
  height: 20px;
  width: 20px;
}

@media (hover: hover) {
  .v-controlButton:hover {
    opacity: 1;
  }
}
.v-bigPlay {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  height: 58px;
  left: 50%;
  opacity: var(--vlite-controlsOpacity);
  outline: none;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: opacity var(--vlite-transition);
  width: 58px;
  z-index: 3;
}

.v-bigPlay * {
  pointer-events: none;
}

.v-bigPlay svg {
  fill: var(--vlite-controlsColor);
  height: 100%;
  width: 100%;
}

.v-loading .v-bigPlay {
  opacity: 0;
}

@media (hover: hover) {
  .v-bigPlay:hover {
    opacity: 1;
  }
}
@keyframes loader {
  0%, 80%, to {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
.v-loader {
  align-items: center;
  display: flex;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity var(--vlite-transition), visibility var(--vlite-transition);
  visibility: hidden;
  width: 100%;
  z-index: 5;
}

.v-loaderContent {
  margin: 0 auto;
  text-align: center;
  width: 70px;
}

.v-loaderContent > div {
  animation: loader 1.4s ease-in-out infinite both;
  background-color: var(--vlite-controlsColor);
  border-radius: 100%;
  display: inline-block;
  height: 18px;
  width: 18px;
}

.v-loaderContent .v-loaderBounce1 {
  animation-delay: -0.32s;
}

.v-loaderContent .v-loaderBounce2 {
  animation-delay: -0.16s;
}

.v-loading .v-loader {
  opacity: 1;
  visibility: visible;
}

.v-overlay {
  height: calc(100% - var(--vlite-controlBarHeight));
}

.v-overlay, .v-poster {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.v-poster {
  background-color: #000;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
}

.v-poster.v-active {
  opacity: 1;
  visibility: visible;
}

.v-controlButtonIcon {
  display: none;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.v-playPauseButton {
  flex-shrink: 0;
}

.v-time {
  align-items: center;
  color: var(--vlite-controlsColor);
  display: flex;
  font-size: 14px;
  height: 100%;
  margin-right: auto;
}

.v-progressBar {
  width: calc(100% - var(--vlite-controlBarHorizontalPadding) * 2);
}

.v-progressBarStyle {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  outline: none;
  touch-action: manipulation;
  transition: height var(--vlite-transition), top var(--vlite-transition);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 1;
}

.v-progressBarStyle:focus-visible {
  outline: 2px dashed var(--vlite-colorPrimary);
  outline-offset: 2px;
}

.v-progressBarStyle::-webkit-slider-runnable-track {
  background: linear-gradient(to right, var(--vlite-colorPrimary) 0, var(--vlite-progressBarBackground) 0);
  background: linear-gradient(to right, var(--vlite-colorPrimary) var(--vlite-progressValue, 0), var(--vlite-progressBarBackground) var(--vlite-progressValue, 0));
  border: none;
  border-radius: var(--vlite-progressBarHeight);
  height: var(--vlite-progressBarHeight);
}

.v-progressBarStyle::-moz-range-track {
  background: linear-gradient(to right, var(--vlite-colorPrimary) 0, var(--vlite-progressBarBackground) 0);
  background: linear-gradient(to right, var(--vlite-colorPrimary) var(--vlite-progressValue, 0), var(--vlite-progressBarBackground) var(--vlite-progressValue, 0));
  border: none;
  border-radius: var(--vlite-progressBarHeight);
  height: var(--vlite-progressBarHeight);
}

.v-progressBarStyle::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  background: var(--vlite-colorPrimary);
  border: none;
  border-radius: 50%;
  height: calc(var(--vlite-progressBarHeight) * 2);
  margin-top: calc(var(--vlite-progressBarHeight) / 2 * -1);
  width: calc(var(--vlite-progressBarHeight) * 2);
}

.v-progressBarStyle::-moz-range-thumb {
  background: var(--vlite-colorPrimary);
  border: none;
  border-radius: 50%;
  height: calc(var(--vlite-progressBarHeight) * 2);
  margin-top: calc(var(--vlite-progressBarHeight) / 2 * -1);
  width: calc(var(--vlite-progressBarHeight) * 2);
}

.v-volumeButton {
  flex-shrink: 0;
  transition: transform var(--vlite-transition), opacity var(--vlite-transition);
}

.v-controlBar {
  align-items: center;
  display: flex;
  height: var(--vlite-controlBarHeight);
  justify-content: flex-end;
  padding-left: var(--vlite-controlBarHorizontalPadding);
  padding-right: var(--vlite-controlBarHorizontalPadding);
  padding-top: calc(var(--vlite-progressBarHeight) + 10px);
  position: relative;
  text-align: right;
  transition: opacity var(--vlite-transition);
  width: 100%;
}

.v-controlBar.v-hidden {
  opacity: 0;
}

.v-audio .v-playPauseButton {
  order: 1;
}

.v-audio .v-progressBar {
  height: 25px;
  order: 2;
}

.v-audio .v-time {
  order: 3;
  padding: 0 8px 0 12px;
}

.v-audio .v-progressBar + .v-volumeArea, .v-audio .v-progressBar + .v-volumeButton {
  order: 4;
}

.v-audio .v-controlBar {
  padding-top: 0;
}

.v-video .v-progressBar {
  height: calc(var(--vlite-progressBarHeight) + 10px);
}

.v-video .v-controlBar {
  background: var(--vlite-controlBarBackground);
  bottom: 0;
  left: 0;
  position: absolute;
}

.v-video .v-controlBar .v-progressBar {
  align-items: flex-end;
  display: flex;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
}

@media (hover: hover) {
  .v-controlBar:hover {
    opacity: 1 !important;
  }
}
.v-subtitleButton svg {
  height: 22px;
  width: 26px;
}

.v-captions {
  background-color: #212121;
  border-radius: 5px;
  bottom: 70px;
  color: #fff;
  display: none;
  left: 50%;
  padding: 5px 10px;
  pointer-events: none;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  width: auto;
  z-index: 2;
}

.v-captions.v-active {
  display: block;
}

.v-subtitle {
  height: 100%;
  position: relative;
}

.v-subtitlesList {
  background-color: #fff;
  border-radius: 5px;
  bottom: calc(var(--vlite-controlBarHeight) + 10px);
  left: 50%;
  opacity: 0;
  position: absolute;
  transform: translateX(-50%);
  transition: opacity var(--vlite-transition), visibility var(--vlite-transition);
  visibility: hidden;
  z-index: 3;
}

.v-subtitlesList.v-active {
  opacity: 1;
  visibility: visible;
}

.v-subtitlesList ul {
  margin: 0;
  padding: 0;
}

.v-subtitlesList li {
  list-style-type: none;
}

.v-trackButton {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  outline: none;
  padding: 8px 15px 8px 30px;
  position: relative;
  text-align: left;
  transition: background-color var(--vlite-transition);
  width: 100%;
}

.v-trackButton:focus-visible {
  outline: 2px dashed var(--vlite-colorPrimary);
  outline-offset: 2px;
}

.v-trackButton svg {
  fill: var(--vlite-colorPrimary);
  display: none;
  left: 5px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
}

.v-trackButton.v-active svg {
  display: block;
}

.v-vlite video::-webkit-media-text-track-display {
  display: none;
}

@media (hover: hover) {
  .v-trackButton:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
}

/*# sourceMappingURL=vlite.css.map */
