.message{
    padding: 3px 20px;
    width: fit-content;
    border-radius: 5px;
    margin: 5px auto 10px;
}

.message.ok{
    background: #379b37;
    color: #fbfbfb;
}

.video-admin{
    margin: 15px auto 5px;
    max-width: 400px;
}

.checkbox_preseleccionado:not(.checkbox_preseleccionado:disabled){
    cursor: pointer;
}

.logo_laplena_admin{
    width: 130px;
}

/* PRESELECT VIDEOS */
.videos_grid{
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 30px;
}

.videos_grid .video h2{
    font-size: 18px;
    text-align: center;
    padding: 10px;
}

@media(min-width: 768px){
    .form-responsive{
        width: fit-content;
        margin: 0 auto;
    }

    .videos_grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 1024px){
    .videos_grid{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .w-full {
        width: 90% !important;
        border-radius: 0.5rem;
    }
    
}