html,
body {
  height: 100%;
  margin: 0;
}

.full-height {
  height: 100%;
}

.fila {
  display: flex;
  flex-direction: row;
}

.columna {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.controles {
  background-color: rgba(226, 220, 220, 0.609);
  background-image: linear-gradient(to right, rgba(255, 255, 255), black);
  height: 100%;
  flex-grow: 1;
  padding: 1rem;
}

.video {
  background-color: rgb(0, 0, 0);
  height: 100%;
  flex-grow: 8;
  padding: 1rem;
}

#volumen {
  margin: 2rem;
}

#pausar {
  border: none;
  background: none;
  margin: 2rem;
}

#mutear {
  border: none;
  background: none;
  margin: 2rem;
}

#barra {
  width: 1180px;
  height: 12px;
  padding: 2px;
  margin: 1rem;
  border: 1px solid #cccccc;
  background: #eeeeee;
}

#progreso {
  width: 0px;
  height: 12px;
  background: black;
}

input[type="range"] {
  -webkit-appearance: none;
  background-color: #ddd;
  overflow: hidden;
}

input[type="range"]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  height: 20px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: #333;
  border-radius: 50%;
  box-shadow: -210px 0 0 200px #666;
  cursor: pointer;
  height: 20px;
  width: 20px;
  border: 0;
}

input[type="range"]::-moz-range-thumb {
  background: #333;
  border-radius: 50%;
  box-shadow: -1010px 0 0 1000px #666;
  cursor: pointer;
  height: 20px;
  width: 20px;
  border: 0;
}

input[type="range"]::-moz-range-track {
  background-color: #ddd;
}
input[type="range"]::-moz-range-progress {
  background-color: #666;
  height: 20px;
}
input[type="range"]::-ms-fill-upper {
  background-color: #ddd;
}
input[type="range"]::-ms-fill-lower {
  background-color: #666;
}
