.secao-player-videos {

  .container-player {
    margin: 2em 0 3em;
    border-radius: 0.75em;
    overflow: hidden;
    display: flex;


    @media(max-width: 991px) {
      flex-direction: column;
    }

    .video-player {
      width: 66%;
      height: 440px;
      background: #111;

      .error-msg {
        width: 95%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
      }

      iframe {
        width: 100%;
        height: 100%;
      }

      @media(max-width: 991px) {
        width: 100%;
        height: 55vw;
      }
    }

    .video-sidebar {
      background: #000;
      width: 34%;
      height: 440px;
      overflow-y: auto;

      @media(max-width: 991px) {
        width: 100%;
        height: auto;
        max-height: 440px;
      }
    }

    .video-card {
      display: flex;
      cursor: pointer;
      margin-left: 0.5em;
      margin-top: 0.25em;
      margin-bottom: 0.25em;
      align-items: flex-start;

      &:hover {
        filter: brightness(1.25);
        background: rgba(#fff, 0.1);
      }

      img {
        display: block;
        width: 110px;
        height: auto;
        object-fit: cover;
        margin: 0.125em;
        padding: 0;
      }

      h3 {
        padding-top: 0.75em;
        color: #fff;
        font-weight: normal;
        line-height: 1.25;
        padding: 0.5em 0.75em;
        font-size: 0.9em;
      }

      &.selected {
        background:#383838;
      }
    }
  }
}

