@charset "UTF-8";
.playlist {
  display: flex;
  justify-content: space-evenly;
}
@media screen and (max-width: 768px) {
  .playlist {
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  .playlist {
    justify-content: unset;
  }
}
.playlist.media-left {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .playlist.media-left {
    flex-direction: column-reverse;
  }
}
.playlist__item {
  cursor: pointer;
  display: flex;
  align-items: center;
  list-style: none;
  margin: 1rem 0;
  font-weight: bold;
}
.playlist__item::before {
  font: normal normal normal 14px/1 "Font Awesome 6 Pro";
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  content: "\f04b";
  border: none;
  text-decoration: none;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-right: 1.5rem;
  color: #1b2b34;
}
.playlist__item:hover::before {
  color: #2890e5;
}
.playlist__item.playlist-active-step::before {
  font: normal normal normal 14px/1 "Font Awesome 6 Pro";
  font-weight: 900;
  color: #2890e5;
  content: "\f04b";
}
.playlist__item.playlist-active-step .playlist__text {
  color: #2890e5;
  font-weight: 700;
}
.playlist__item .video-length::before {
  font: normal normal normal 14px/1 "Font Awesome 6 Pro";
  content: "·";
  margin: 0 5px 0 2px;
}
.playlist__text:hover {
  color: #2890e5;
  text-decoration: underline;
}
.playlist__text-container {
  flex-basis: 33.4%;
  margin-top: 1.75rem;
}
.playlist__text-container h3 {
  border-bottom: 1px solid #6f7176;
}
@media screen and (max-width: 768px) {
  .playlist__text-container {
    flex-basis: unset;
  }
}
.playlist__counter {
  counter-reset: playlist-counter;
  margin: 2rem 0;
  padding: 0;
}
.playlist__media {
  list-style: none;
  display: none;
}
.playlist__media-list {
  margin-top: 0;
}
.playlist__media .video--box {
  margin-top: 0;
}
.playlist__media .video--info {
  padding: 0;
}
.playlist__media.playlist-active-step {
  display: block;
}
.playlist__media img {
  display: block;
  max-height: 50rem;
  margin: 0 auto;
}
.playlist__media-container {
  flex-basis: 66.6%;
  margin: 0 2rem 0 0;
}