<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.dropbtn {
    background-color: Transparent;
    color: #2E4053;
    border: none;
}
/* The container &lt;div&gt; - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    /* Links inside the dropdown */
    .dropdown-content a {
        color: black;
        padding: 10px 10px;
        text-decoration: none;
        display: block;
    }

        /* Change color of dropdown links on hover */
        .dropdown-content a:hover {
            background-color: white;
        }

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: white;
}

.verticalaling {
    display: flex;
    align-items: center;
}

#menu {
    width: 100%;
    z-index: 1000; /* Asegura que esté por encima de otros elementos */
    transition: all 0.5s ease;
}

    #menu.fixed {
        position: fixed; /* Cuando se fija, usa posición fija */
        top: 0;
        left: 0px;
        width: 100%;
        height: 50px;
        font-size: 1.1em;
    }

.zoom-scroll {
    position: absolute;
    top: 6px;
    left: 15px;
    font-size: 0.6em;
    margin-right: 5px;
    padding: 2px 4px 0 4px;
    background-color: #ba41fa;
    border-radius: 20px;
    color: #f3f3f3;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.zoom-scroll-gallery {
    position: absolute;
    bottom: 10px;
    left: 15px;
    font-size: 0.6em;
    margin-right: 5px;
    padding: 2px 4px 0 4px;
    background-color: #ba41fa;
    border-radius: 20px;
    color: #f3f3f3;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

    .zoom-scroll-gallery:hover {
        color: #f3f3f3;
        opacity: 0.8;
    }
/* Clase para el efecto de fade-out */
.fade-out {
    opacity: 0;
    transition: opacity 0.3s ease-out; /* Duración del fade-out */
}

/* Clase para el efecto de fade-in */
.fade-in {
    opacity: 1;
    transition: opacity 0.3s ease-in; /* Duración del fade-in */
}

.contenedor-div {
    position: relative;
}

.mi-imagen-abajo-derecha {
    position: relative;
    bottom: 5px;
    right: 10px;
}

#overbox3 {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    z-index: 999999;
    display: block;
}

#infobox3 {
    margin: auto;
    position: relative;
    top: 0px;
    height: 58px;
    width: 100%;
    text-align: center;
    vertical-align: middle;
    background-color: rgba(0,0,0,0.7);
}

    #infobox3 p {
        line-height: 58px;
        font-size: 12px;
        text-align: center;
    }

        #infobox3 p a {
            margin-right: 5px;
            text-decoration: underline;
        }

.description {
    width: 95%; /* Ancho máximo del contenedor */
    font-family: Source Sans Pro,-apple-system,BlinkMacSystemFont, Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;
    font-size: 16px;
    line-height: 1.2em; /* Altura de línea */
    max-height: 2.8em; /* Máxima altura para dos líneas */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 40px;
    margin-top: 10px;
    margin-bottom: 20px;
}

@media (max-width:480px) {
    #divrecaptcha, #t3-content {
        padding: 0 !important;
        margin: 0 !important;
        transform: scale(0.83);
        transform-origin: 0 0;
        left: 0px;
        position: relative;
    }
}
</pre></body></html>