.bg_light {
    background-color: var(--secondary_3_7);
}

.library_container {
    margin-top: 4rem;
    padding: 3rem 2rem;
}

.library_image {
    margin-right: 0.5rem;
    height: auto;
}

/*---------- media ------------ */

@media (min-width: 1400px) {

}

@media (max-width: 1399px) {

}

@media (max-width: 1024px) {
    .library_image {
        margin-right: 0.5rem;
        margin-bottom: 1rem;
        height: auto;
    }

    #library_title {
        font-size: 2rem !important;
        text-align: center;
        margin-bottom: 1rem;
    }

    .library_container {
        margin-top: 2rem;
    }

}

section {
    display: flex;
    align-items: center;
    margin-top: 35px;
    margin-bottom: 35px;
}

.horizontal-blue-separator {
    height: 3px;
    flex: 1;
    background: var(--primary_4_1);
    margin: 0 10px;
}

/* Style in meta innova */
.image_metainnova_background {
    background-image: url(/static/infopages/images/meta_innova/fondo_ponentes_largo.png) !important;
    background-position: inherit;
    background-size: cover;
    max-width: 100%;
    height: auto;
}

#visor {
    position: absolute;
    overflow: hidden;
    width: 600px;
    height: 400px;
}

#avion {
    position: absolute;
    width: 80px;
    left: 140px;
}

@keyframes avion {
    from {
        left: 0;
    }
    to {
        left: 1200px;
    }
}

@-webkit-keyframes avion {
    0% {
        left: 30px;
        top: 20px;
    }
    20% {
        left: 60px;
        top: 30px;
    }
    70% {
        left: 35px;
        top: 60px;
    }
    100% {
        left: 0;
        top: 20px;
    }
}

#avion {
    animation: avion 13s infinite linear;
    -webkit-animation: avion 13s infinite linear;
}



