

.container-video {
  width: 100vw;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
  padding: .5rem 1rem;
}

.container-video p {
  font-size: 15px;
  line-height: 1 !important;
}

.container-video h3 {
  font-weight: 400 !important;
  line-height: 1 !important;
}

.container-video .active h3 {
  font-weight: 700 !important;
  line-height: 1 !important;
}

@media screen and (max-width: 990px) {
  .container-video {
    grid-template-columns: 1fr;
  }
}

.badge-primary {
  color: #212120;
  border-radius: 10px;
  border: 1px solid #8B9298;
  font-size: 14px !important;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.sub-video {
  font-family: Barlow;
  font-size: 23px;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: normal;
}

iframe {
  aspect-ratio: 16/9;
}

.text-ccb-cursos {
  text-transform: unset;
}

.main-video,
.video-playlist {}

.main-video .title {
  margin-top: 1rem;
}

.video-playlist .title {
  padding-left: 1rem;
}

.video-playlist>p {
  padding: 1rem;
  color: var(--secondary);
}

.video-playlist .videos {
  height: 70%;
  overflow-y: auto;
}

.video-playlist .videos::-webkit-scrollbar {
  width: .4rem;
  border-radius: .4rem;
  background-color: #0005;
}

.video-playlist .videos::-webkit-scrollbar-thumb {
  border-radius: .4rem;
  background-color: #fff;
}

.video-playlist .videos .video {
  position: relative;
  width: 100%;
  height: 4rem;

  display: flex;
  justify-content: start;
  align-items: center;

  padding: 0 1rem;
  margin-top: .1rem;
  cursor: pointer;

  border-radius: .5rem;
}

.video-playlist .videos .video:hover {
  background-color: #f2f5f9;
}

.video-playlist .videos .video.active {
  background-color: #f2f5f9;
  color: var(--secondary);
}

.main-video video {
  width: 100%;
  border-radius: .5rem;
}

.video img {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);

  width: 1.5rem;
  height: 1.5rem;

  /* filter: invert(100%); */
}

.video-playlist .videos .video.active img {
  /* filter: invert(100%) sepia(100%) saturate(2000%) hue-rotate(360deg); */
}

.video p {
  margin-left: 2.5rem;
}

.video h3 {
  width: 23rem;
  overflow: hidden;
  text-overflow: ellipsis;
  font: 100 1rem sans-serif;
  padding: 0 .5rem;
}