/**
 * @file
 * Provides basic designs for Youtube's video transcript based on time frame.
 */

 .video-transcript {
  width: 100%;
  margin-top: 10px;
  border: 1px dotted #000;
  padding: 10px;
  margin-bottom: 100px;
}

.transcripts{
  max-height: 400px;
  overflow-y: auto;
  height: 400px;
}

.video-transcript p {
  cursor: pointer;
}

.transcript-tracks {
  color: #5c5650;
  font-weight: normal;
  cursor: pointer;
}

.video-transcript span {
  font-weight: normal;
}

.video-transcript .active {
  color: #ff0000;
  font-weight: bold;
}

.video-iframe iframe {
  width: 100% !important;
}

