.player {
  height: 100%;
  width: 100%;
}

.player-overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) -22.28%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 1;
  transition: 0.3s opacity;
}

.container {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr 100px;
}

.information-container {
  width: 100%;
  height: 100%;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.player-container {
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.player-progress-bar {
  width: 100%;
}

.video-progress {
  display: flex;
  width: 100%;
  height: 6px;
  transition: 0.3s;
  background-color: #7c7c7c;
  cursor: pointer;
}

.video-progress-filled {
  width: 0;
  background-color: white;
}

.player-controls {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
}

.player-buttons {
  display: flex;
  align-items: center;
}

.volume-progress {
  display: flex;
  width: 100px;
  height: 6px;
  transition: 0.3s;
  background-color: #7c7c7c;
  cursor: pointer;
}

.volume-progress-filled {
  width: 0;
  background-color: white;
}

.time-container {
  display: flex;
  align-items: center;
  margin: 0 20px;
}

.current-time {
  width: 40px;
}

.duration-video {
  width: 40px;
}

.time-separator {
  margin: 0 10px 0 5px;
}

.expand-container {
  display: flex;
  align-items: center;
}
