.container-videos {
    display: flex;
    height: 100%;
    max-height: 100vh;
    width: 95%;
    margin: auto;
    padding-bottom: 20px;
}

#accordion {
    overflow: auto;
    max-height: 70vh;
}

.containVideoAula {
    width: 75%;
    height: 75vh;
}

.playlist {
    width: 25%;
    height: 100%;
}

.academyContain p {
    margin: 0;
    color: #6b6b6b;
}

.horarioAula {
    font-size: 13px;
    color: #babaca !important;
}

.horarioAula i {
    margin-right: 5px;
}

.vjs_video_3-dimensions {
    width: 100%;
    min-height: 500px;
    height: auto;
}

.video-js .vjs-big-play-button {
    top: 45%;
    left: 45%;
    right: 50%;
    bottom: 50%;
}

.card {
    min-height: 70px;
    max-height: fit-content;
    cursor: pointer;
}

.card-header {
    cursor: pointer;
    background-color: #ececec;
}

.card-body {
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tituloAula {
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1;
}


.btn-link {
    color: #091846b8;
    background-color: transparent;
    text-decoration: none !important;
}

.btn-link:hover {
    color: #02091db8;
    text-decoration: none !important;
}

.selecionado {
    background-color: rgba(0, 0, 0, 0.137);
}

.aula-list {
    transition: all .4s ease-in-out;
}


.option-input:checked> {
    background-color: #eeeeee;
    transition: all .5s ease-in;
}

.setaTopicos {
    transform: rotate(90deg) !important;
}

.fa-chevron-right {
    transition: all .3s ease;
    font-size: 14px;
    color: #6f6f6f;
}

.btn-link {
    color: #575757;
}




/* checkbox */
@keyframes click-wave {
    0% {
        height: 20px;
        width: 20px;
        opacity: 0.35;
        position: relative;
        border-radius: 5px;
    }

    100% {
        height: 80px;
        width: 80px;
        margin-left: -30px;
        margin-top: -30px;
        opacity: 0;
        border-radius: 5px;
    }
}

.option-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    border-radius: 3px;
    height: 20px;
    width: 20px;
    transition: all 0.15s ease-out 0s;
    background: #cbd1d8;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin-right: 0.5rem;
    outline: none;
    position: relative;
    /* z-index: 1000; */
}

.option-input:hover {
    background: #9faab7;
}

.option-input:checked {
    background: #071641;
}

.option-input:checked::before {
    position: absolute;
    content: '\2713';
    display: inline-block;
    font-size: 15px;
    text-align: center;
    line-height: 20px;
    left: 5px;
}

.option-input:checked::after {
    /* -webkit-animation: click-wave 0.65s;
    -moz-animation: click-wave 0.65s;
    animation: click-wave 0.65s; */
    content: '';
    background: #133185;
    display: block;
    position: relative;
    z-index: 100;
}

.option-input.radio {
    border-radius: 50%;
}

.option-input.radio::after {
    border-radius: 50%;
}

.aula-list label {
    display: flex;
    margin: 20px;
    width: fit-content;
    cursor: pointer;
    align-items: center;
    width: 88%;
    justify-content: space-between;
}

.iconPlay {
    color: #757575;
    display: none;
}

@media screen and (max-width: 990px) {
    .container-videos {
        display: block;
    }

    .containVideoAula,
    .playlist {
        width: 100%;
    }

}