/*
    --- Versionamento ---
    20/07/2021 - Karine  - Primeira Versão
    --- Fim Versionamento ---
*/
.conteudo-videos{
    display: flex;
}
.lista-titulos{
    width: 50%;
    height: 310px;
}
.videos{
    width: 50%;
    padding-left: 15px;
    height: 310px;
}
.overflow{
    height: 100%;
    overflow: auto;
}

.card{
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
}

.card-cabecalho{
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0,0,0,.03);
    border-bottom: 1px solid rgba(0,0,0,.125);
    line-height: 0;
}

.card-conteudo{
    padding: 1.25rem;
}

.lista{
    position: relative;
    display: block;
    padding: .75rem 1.25rem;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.125);
    color:#495057;
    text-align: inherit;
}


.active{
    color: #fff;
    background-color:#007bff;
}




@media (max-width:900px) {
    .conteudo-videos{
        flex-direction: column;
    }
    .lista-titulos{
        width: 100%;
    }
    .videos{
        width: 100%;
        margin-top: 15px;
        padding: 0;
    }
}