*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  background: #fff;
  color: rgb(20, 23, 26);
}
.video * {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); 
}
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: rgb(20, 23, 26);
}
:root {
  --primary: rgb(29, 161, 242);
}
.video {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  color: white;
  border-radius: 10px;
  margin: 0 auto;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .video {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .video {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .video {
/*     width: 50%; */
  }
}
.video:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(#ffffff00, 85%, #000000c9);
  opacity: 1;
  transition: all 1s;
  -webkit-transition: all 1s;
}
.video-preview {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  z-index: 10;
  background-origin: border-box;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.3s ease;
}
.video-preview .video-start-btn {
  border: 5px solid white;
  background: rgb(255 255 255);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  outline: none;
  user-select: none;
  cursor: pointer;
  width: fit-content;
  height: fit-content;
  transition: all 0.3s ease;
  position: relative;
  appearance: none;
}
.video-preview .video-start-btn svg {
  fill: var(--primary);
  overflow: hidden;
}
.video-top {
  position: absolute;
  height: 90%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  background: transparent;
  z-index: 1;
}
.video-player-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
}
.video-player-controls .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: auto;
  position: relative;
}
.video-player-controls .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-control {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: fit-content;
  margin-right: 0.5rem;
}
.video-control .video-control-btn {
  border: none;
  background: transparent;
  color: white;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  position: relative;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.215, 0.61, 0.355, 1);
  appearance: none;
  outline: none;
  user-select: none;
}
.video-control .video-control-btn:hover {
  background: rgb(255 255 255 / 8%);
}

.video-control .video-control-btn .video-control-play {
  overflow: hidden;
  position: relative;
}
.video-control .video-control-btn .video-control-pause {
  overflow: hidden;
  position: relative;
  display: none;
}
.video-views {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: fit-content;
}
.video-counts {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: fit-content;
  margin-right: 0.5rem;
}
.video-counts .video-count-time {
}
.video-counts .video-count-line {
}
.video-counts .video-count-fulltime {
}
.video-voice {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: fit-content;
  margin-right: 0.5rem;
}
.video-voice .video-voice-btn {
  border: none;
  background: transparent;
  color: white;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  position: relative;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.215, 0.61, 0.355, 1);
  appearance: none;
  outline: none;
  user-select: none;
}
.video-voice .video-voice-btn:hover {
  background: rgb(255 255 255 / 8%);
}

.video-voice .video-voice-btn .video-voice-on {
  overflow: hidden;
  position: relative;
}
.video-voice .video-voice-btn .video-voice-off {
  overflow: hidden;
  position: relative;
  display: none;
}
.video-voice:hover .video-voice-slider {
  visibility: visible;
  opacity: 1;
}

.video-voice-slider {
  width: 120px;
  transition: all 0.4s ease;
  transform: rotate(-90deg);
  position: absolute;
  bottom: 80px;
  z-index: 9999;
  background: #0000002e;
  padding: 13px;
  border-radius: 9999px;
  visibility: hidden;
  opacity: 0;
}
.video-voice-slider-rail {
  width: fit-content;
  height: 6px;
  background: #b7b7b74d;
  border-radius: 9999px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
}
.video-voice-slider-rail:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}
.video-voice-slider-buffer {
  height: 6px;
  background: #ffffff;
  border-radius: 9999px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 0;
}

.video-voice-slider-range {
  -webkit-appearance: none;
  width: 100%;
  height: 100%;
  background: transparent;
  outline: none;
  margin: 0;
  padding: 0;
  z-index: 15;
  position: relative;
}

.video-voice-slider-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  margin: 0;
  border: none;
  outline: none;
}

.video-voice-slider-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  background: white;
  border-radius: 9999px;
  cursor: pointer;
  margin-top: -4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.video-voice-slider-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  background: none;
  border-radius: 9999px;
}

.video-voice-slider-range:focus::-webkit-slider-runnable-track {
  background: none;
}
.video-voice-slider-range:active::-webkit-slider-runnable-track {
  background: none;
}

.video-voice-slider-range::-webkit-slider-thumb:active {
  box-shadow: 0 0 26px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 0, 0, 4),
    0 0 0 5px rgba(255, 255, 255, 0.2);
}
.video-voice-slider-range::-webkit-slider-thumb:hover {
  box-shadow: 0 0 26px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 0, 0, 4),
    0 0 0 5px rgba(255, 255, 255, 0.2);
}

.full-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: fit-content;
}
.full-screen .full-screen-btn {
  border: none;
  background: transparent;
  color: white;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  position: relative;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.215, 0.61, 0.355, 1);
  appearance: none;
  outline: none;
  user-select: none;
}
.full-screen .full-screen-btn:hover {
  background: rgb(255 255 255 / 8%);
}

.full-screen .full-screen-btn .full-screen-open {
  overflow: hidden;
  position: relative;
}
.full-screen .full-screen-btn .full-screen-exit {
  overflow: hidden;
  position: relative;
  display: none;
}
.video .video-player {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  user-select: none;
}
.video .video-player video {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  object-fit: contain;
  object-position: center;
  user-select: none;
}

.video-slider {
  width: 100%;
  position: relative;
}
.video-slider-container {
  width: 100%;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  position: relative;
  cursor: pointer;
}
.video-slider-bg {
  width: 100%;
  background: #ffffff6b;
  height: 5px;
  border-radius: 9999px;
  position: relative;
  display: flex;
  align-items: center;
  transition: background 100ms cubic-bezier(0.6, -0.28, 0.74, 0.05);
}
.video-slider-bg:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}
.video-slider-rail {
  width: 0%;
  background: #ffffff;
  height: 5px;
  border-radius: 9999px;
  position: relative;
}
.video-slider-buffer {
  position: absolute;
  left: 0%;
  width: 15px;
  height: 15px;
  background: white;
  border-radius: 9999px;
  cursor: pointer;
  transition: transform 100ms cubic-bezier(0.6, -0.28, 0.74, 0.05);
  transform: scale(0);
  opacity: 0;
}
.video-slider-buffer:hover {
  box-shadow: 0 0 26px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 0, 0, 4),
    0 0 0 5px rgba(255, 255, 255, 0.2);
}
.video-slider-container:hover .video-slider-buffer {
  transform: scale(1);
  opacity: 1;
}
.video-slider-container:hover .video-slider-bg {
  background: #ffffff82;
}

.video-loading-spinner {
  width: 55px;
  height: 55px;
  border: 5px solid #ffffff;
  border-top: 5px solid #9e9e9e;
  border-radius: 50%;
}

.video-loading-spinner {
  -webkit-transition-property: -webkit-transform;
  -webkit-transition-duration: 1.2s;
  -webkit-animation-name: rotate;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;

  -moz-transition-property: -moz-transform;
  -moz-animation-name: rotate;
  -moz-animation-duration: 1.2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;

  transition-property: transform;
  animation-name: rotate;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

@-moz-keyframes rotate {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.video-loading {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00000061;
  z-index: 1;
  transition: all 0.3s ease;
}

.video-reset {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00000061;
  z-index: 1;
  transition: all 0.3s ease;
  display: none;
}
.video-reset-btn {
  border: none;
  background: #000000d9;
  border-radius: 9999px;
  padding: 10px 20px;
  color: white;
  font-weight: 700;
  font-size: 15px;
  outline: none;
  user-select: none;
  cursor: pointer;
  appearance: none;
}
.video-reset-btn:hover {
  background: #000000;
}

.video-contextMenu {
  position: absolute;
  background: white;
  border-radius: 6px;
  padding-top: 5px;
  padding-bottom: 5px;
  z-index: 4;
  transition: all 0.1s ease;
  overflow: hidden;
  width: fit-content;
  height: fit-content;
  display: none;
}

.video-contextMenu-btn {
  border: none;
  background: white;
  padding: 8px 20px;
  cursor: pointer;
  font-size: 15px;
  outline: none;
  user-select: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.1s ease;
}
