video-zoom {
  top: 0px;
  bottom: 0px;
  position: absolute;
  z-index: 110;
  width: 100vw;
  height: auto;
  background-color: var(--color-modo);
}

.top-video-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
  position: relative;
  z-index: 112;
}

.controls {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: stretch;
  gap: 0.25rem;
  height: 2.25rem;
  left: 0px;
  align-items: center;
}

.controls-general {
  padding: 0px 0.5rem;
  position: absolute;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .controls-general {
    flex-direction: row;
  }
}

.range-slider {
  display: flex; /* Usa flexbox */
  justify-content: center; /* Centra el slider horizontalmente */
  align-items: center; /* Centra el slider verticalmente */
  padding: 0.5rem 1.5rem;
  background-color: var(--background); /* Color de fondo */
  width: inherit;
  border-radius: 0.125rem;
  border: 1px solid var(--principal);
  background: var(--background);
  /* Sombra A */
  box-shadow: 0px -7px 68px 0px rgba(96, 150, 251, 0.12),
    0px -1.564px 15.189px 0px rgba(96, 150, 251, 0.07),
    0px -0.466px 4.522px 0px rgba(96, 150, 251, 0.05);
  color: var(--blanco-puro);
}

.progress {
  width: 100%;
  min-height: 21px;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.progress::-webkit-progress-bar {
  background-color: #555;
}

.progress::-webkit-progress-value {
  background-color: #fff;
}

#videoViewport {
  display: flex;
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0px;
  justify-content: center;
  align-items: center;
}

@media (max-height: 800px) {
  #videoViewport {
    height: 83vh;
  }
}
