.container-videoteca{
    width: 100%;
}
.video-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.video-container .video{
    margin: 5px;
    padding: 8px;
    overflow: hidden;
    text-align: center;
    background-color: #ffff;

    flex-basis: 18%;
    min-width: 180px;
    margin-bottom: 10px;
    cursor: pointer;
}

.video-container .video img{
    overflow: hidden;
    object-fit: cover;
    max-width: 100%;
    max-height: 150px;
    min-width: 100%;
    min-height: 150px;
}
.video-container .video h4{
    margin: 5px 0;
    font-size: 15px;
    color: #000;
    min-height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-container .video .active{
    position: fixed;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: auto;
    width: 80%;
    box-shadow: 0 0 0 100vh rgba(0, 0, 0, .7);
    z-index: 999;
}

/*SECCIÓN DE PRESENTACION DE CURSOS*/
.video-container .card-clases{
    height: 350px;
    width: 300px;
    margin: 10px;
    box-shadow: 2px 2px 5px 2px #3d3d3d;
    overflow: hidden;
    border-radius: 10px;
    text-align: center;
}

.video-container .card-clases img{
    width: 300px;
    height: 250px;
    overflow: hidden;
}
.video-container .card-clases p{
    margin: 5px;
    font-size: 15px;
}
.video-container .card-clases button{
    background: linear-gradient(180deg, #113661 0%, #1464c4 100%);
    color: #fff;
    border: none;
    padding: 5px 10px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
}
.video-container .card-clases button:hover{
    border: 1px solid #023877;
    background-color: #0463a7;
}
.botitemeliminar i{
    color: red;
}