

.encabezado{
    display: flex;
    justify-content:flex-start;
    /* background-color: #e01d44; */
    background: linear-gradient(90deg, rgb(138, 19, 43) 0%, rgb(196, 25, 59) 25%, rgba(32,164,204,1) 100%);
    color: rgb(248, 248, 248);
    height: 45px;
    background-size: 200%;
    transition: all 0.5s ease-in-out;
    animation: cambiar-Gradiente-encabezado 10s ease-in-out infinite;
}

@keyframes cambiar-Gradiente-encabezado{
    0%{
        background-position: 0% 50%;
    }
    50%{
        background-position: 100% 50%;
    }
    100%{
        background-position: 0% 50%;
    }
}

.sticky-encabezado{
    transform: translateY(-30px);
    transition: all 0.5s ease-in-out;
}
.encabezado img{
    width: 30px;
    margin-right: 0.5rem;
}

.hora{
    display: flex;
    margin-left: 1.5rem;
}

.locacion{
    display: flex;
    margin-left: 1.5rem;
}

.hora span{
    color: rgb(226, 226, 226);
    margin-left: 0.5rem;
}
.locacion span{
    margin-left: 0.5rem;
    color: rgb(226, 226, 226);
}

@media (max-width:992px){
    .encabezado{
        flex-direction: column;
        height: 5rem;
        overflow: auto;
        overflow-y: hidden;
        z-index: 2;
        font-size: 12px;
    }
    .encabezado img{
        width: 25px;
    }

}