.evento{
    position: relative;
    padding: 15px;
    box-sizing: border-box;

    border-left: 4px solid var(--rojo1);

    cursor: pointer;

    transition: all 0.25s ease-in-out;

    background-color: #ffffff;
}

.evento:hover{
    transform: translateY(-0.1rem);
        box-shadow: 0px 0.1rem 0px rgba(0, 0, 0, 0.25);
}

.evento:active{
    transform: scale(0.9);
}

.fondo{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;

    mix-blend-mode: luminosity;
    opacity: 0.25;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

.fecha{
    position: relative;
    width: 22%;
}

.fecha .bg-primary{
    border-radius: 0.25rem 0.25rem 0rem 0rem;
}

.datos{
    position: absolute;
    width: 78%;
    height: 100%;
    top: 0px;
    left: 22%;
    padding: 15px 15px 15px 30px;
    box-sizing: border-box;
}

.d-flex{ font-size: 14px;}

.cuerpo{
    text-align: justify;
    font-size: 14px;
}

.asistencia, .multimedia{
    position: absolute;
    font-size: 20px !important;
}

.asistencia{ left: 10px; }

.multimedia{
    bottom: 10px;
    right: 10px;
}

@media only screen and (min-width: 768px) {
    #tablonAgenda{ transition: all 0.5s ease-in-out; }
    .evento{ height: 250px; }
    .fecha{ width: 15%; }
    
    .datos{ 
        width: 85%;
        left: 15%;
    }

    #footer{
        position: fixed;
        height: 50px;
        bottom: 0px;
        transition: all 0.5s ease-in-out;
    }
    #footer #flechaArribaFooter{ transition: all 0.5s ease-in-out; }

    #footer:hover{ height: 680px; }
    #footer:hover #flechaArribaFooter{ opacity: 0; }

    #relleno{
        height: 5vh;
    }
}

@media only screen and (max-width: 768px) {
    .evento{ height: 400px; }
    #footer { transition: all 0.5s ease-in-out;}
    #footer i{ opacity: 0; }
}