.video-player {
      max-width: 920px;
      margin: auto;
}

video {
      width: 100%;
      display: block;
      border-radius: 10px;
}

.controls {
      margin-top: 15px;
}

button {
  background: none;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  padding: 10px;
}

button img {
    width: 40px; /* ajusta tamaño */
    height: 40px;
}

button:hover {
    opacity: 0.5;
    transition: 0.6s;
}
.progress-container {
    width: 100%;
    height: 8px;
    background: #ccc;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
    overflow: hidden;
}

    .progress {
      height: 100%;
      width: 0%;
      background: #FF5100;
    }

    .time {
      margin-top: 8px;
      font-size: 18px;
    }

@media screen and (max-width: 991px) {

.video-player {

    padding-left: 10px;
    padding-right: 10px;
      
}

}