/*!
 * @license MIT
 * @name vlitejs
 * @version 5.0.2
 * @copyright 2023 Joris DANIEL
 */ .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: #fff;
    display: flex;
    font-size: 13px;
    height: 100%;
    margin-right: auto;
    margin-left: 21px;
  
}
.v-progressBar {
  width: 63%;
}
.v-progressBarStyle {
  -webkit-tap-highlight-color: transparent;
  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;
  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: 100%
}
.v-progressBarStyle::-webkit-slider-thumb {
  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: 46px;
    justify-content: flex-end;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    position: relative;
    text-align: center;
    transition: opacity var(--vlite-transition);
    width: 100%;
}
.v-controlBar:hover {
  opacity: 1 !important
}
.v-controlBar.v-hidden {
  opacity: 0
}

.v-bigPlay {
    appearance: none;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    height: 173px;
    width: 173px;
    left: 0;
    right: 0;
    opacity: var(--vlite-controlsOpacity);
    outline: none;
    padding: 0;
    position: absolute;
    top: 27%;
    /* transform: translateX(-50%) translateY(-50%); */
    transition: opacity var(--vlite-transition);
    z-index: 3;
    margin: 0 auto;
}
.v-bigPlay * {
  pointer-events: none
}
.v-bigPlay:hover {
  opacity: 1
}
.v-bigPlay svg {
/*  fill: #fff;;*/
  height: 100%;
  width: 100%
}
.v-loading .v-bigPlay {
  opacity: 0
}
.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-vlite {
  --vlite-colorPrimary: #ff7f15;
  --vlite-transition: 0.25s ease;
  --vlite-controlBarHeight: 50px;
  --vlite-controlBarHorizontalPadding: 10px;
  --vlite-controlBarBackground: linear-gradient(0deg, #000 -50%, #0000);
  --vlite-controlsColor: #fff;
  --vlite-controlsOpacity: 0.9;
  --vlite-progressBarHeight: 5px;
  --vlite-progressBarBackground: #00000040;
  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 #0000001a
}
.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-fullscreenButtonDisplay .v-bigPlay {
 top: 40%;   

}
.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-vlite .v-container, .v-vlite .v-media, .v-vlite .v-media > iframe {
  height: 100%;
  width: 100%
}
.v-controlButton {
  align-items: center;
  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;
  position: relative;
  transition: opacity var(--vlite-transition);
  width: 40px;
    margin-bottom: 0;
}
.v-controlButton * {
  pointer-events: none
}
.v-controlButton:hover {
  opacity: 1
}
.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: #fff;
}
.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
}