/*!
Theme Name: SMiLE Web
Theme URI: https://smilecomunicacion.com/web/wordpress/smile-web/
Version: 6.0.1
Author: SMiLE Comunicación
Author URI: https://www.linkedin.com/in/cesarbla/
Description: Free theme, SEO optimized. Gain visibility and reach the top positions in search engines quickly. Fully configured and very easy to self-manage with the integration of WordPress Guttemberg blocks editor.
Tested up to: 5.4
Requires PHP: 7.0
License: GNU General Public License v2 or later
Text Domain: smile-web
Tags: two-columns, left-sidebar, right-sidebar, custom-background, custom-colors, custom-header, custom-menu, featured-images, full-width-template, threaded-comments, rtl-language-support, footer-widgets, sticky-post, theme-options, editor-style

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.
*/
/*--------------------------------------------------------------
# INDICE
# 1.0 - GENERAL
    # 1.1 - HEADERS H1, H2, H3, P
    # 1.2 - LINKS
    # 1.3 - BOTONES
    # 1.4 - CARD

# 2.0 - HEADER - Header-scrolled
# 3.0 - NAVBAR
# 4.0 - MAIN
    # 4.1 - COLUMNS
    # 4.2 - .Constainer
    # 4.3 - LIST BULLETS
    # 4.4 - CTA
    # 4.5 - BACKGROUND colors
    # 4.6 - SEARCH modal
    # 4.7 - IMAGE FEATURED
    # 4.8 - BLOG
    # 4.9 - SIDEBAR

# 5.0 - FORM

# 6.0 - FOOTER
# 7.0 - ACCESSIBILITY
# 98.0 - GUTTEMBERG BLOCKS - MINI
# 99.0 - BOOTSTRAP 5.2 MINI
--------------------------------------------------------------*/

/* Galería de imágenes Hermandad */
#bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-masonry-thumbnails .bwg-title2 {
    font-size: 16px !important;
    color: var(--color-link) !important;
}

.bwg-item {
    border: 1px solid var(--color-2-dark);
}

.bwg-title1 {
    background: #fff;
}

.fit-figure {
    position: relative;
    top: 0;
    width: 100%;
    height: auto;
}

.fit-figure img {
    width: 100% !important;
    height: auto;
}

.fit-margin-bottom img {
    width: 90% !important;
    position: relative;
    margin-left: 5%;
    margin-bottom: -83px;
}

@media (min-width:768px) {
    .fit-figure {
        overflow: hidden;
    }

    .fit-figure img {
        position: absolute;
        width: auto;
        min-width: 100%;
        /* La imagen ocupará al menos el 100% del ancho del contenedor */
        min-height: 100%;
        /* La imagen ocupará al menos el 100% de la altura del contenedor */
        top: 50%;
        /* Centra verticalmente */
        left: 50%;
        /* Centra horizontalmente */
        transform: translate(-50%, -50%);
        /* Ajuste central */
        object-fit: cover;
        /* Mantiene la proporción de la imagen y cubre el contenedor */
        object-position: center;
        /* Posiciona la imagen centrada */
    }

    .fit-margin-bottom img {
        width: 100% !important;
        margin-left: 0%;
        margin-bottom: -83px;
    }
}


/*--------------------------------------------------------------
# 1.0 - GENERAL
--------------------------------------------------------------*/
* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-family);
    line-height: 1.7em;
}

/* .bg-light {background: var(--bg-light);}
.bg-light2 {background: var(--bg-light2);}
.bg-white {background-color: var(--bg-white);}
.bg-cta {background: var(--color-warning);}
.bg-footer {background: var(--footer-bg);}
.bg-dark {background: var(--color-2-dark);border: none;}
.bg-dark h2,
.bg-dark h3 {color: var(--color-1-light);}
.bg-dark p,
.bg-dark li {color: var(--color-white);}
.bg-dark a {color: var(--color-link-light);} */

#color-var {
    /* --color-company: #0d4688; */
    --bg-white: #fff;
    /* --color-light: #f6f6f6;
    --color-light2: #f6f8ff; */
}

/*--------------------------------------------------------------
# 1.1 - HEADERS H1, H2, H3, P
--------------------------------------------------------------*/
h1,
h2,
.h2 {
    line-height: 1.1em;
    color: var(--color-link-hover);
    font-family: var(--font-family-bold);
    padding-top: 0;
    margin: 0;
    padding-bottom: 10px;
    width: 100%;
}

h2,
.h2 {
    font-size: 36px;

    /* font-size: 34px;

    color: var(--color-secondary);
    font-family: var(--font-family-heading);
    padding-top: 5px;
    padding-bottom: 5px; */
}

h3 {
    color: var(--color-2);
    line-height: 1.2em;
}

p {
    width: 100%;
}

section p:not(.lead):not(.h2) {
    color: var(--color-text);
}

.blog-page h3 {
    color: var(--color-2);
}

/*--------------------------------------------------------------
# 1.2 - LINKS
--------------------------------------------------------------*/
a {
    color: var(--color-link);
}

a:hover {
    text-decoration: none;
    color: var(--color-link-hover);
}

#contact a {
    text-decoration: none;
}

/*--------------------------------------------------------------
# 1.3 - BOTONES
--------------------------------------------------------------*/
.wp-block-buttons>.wp-block-button,
.btn-cta {
    display: inline-block;
    z-index: 100;
    padding: 5px 25px;
    border-radius: 50px;
    transition: .5s;
    margin: 5px;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 1px;
    background-color: var(--color-link);
    color: var(--color-white);
    text-decoration: none;
    border: 1px solid var(--color-link);
}

@media (min-width:768px) {

    .wp-block-buttons>.wp-block-button,
    .btn-cta {
        font-size: 16px;
    }
}

.wp-block-button__link {
    background-color: transparent;
    padding: inherit;
}

.wp-block-buttons>.wp-block-button:hover,
.btn-cta:hover {
    background-color: var(--color-white);
    color: var(--color-link);
    border: 1px solid var(--color-link);
}

.btn-cta2 {
    transition: .5s;
    z-index: 100;
    padding: 6px;
    margin: 10px;
    border-radius: 50px;
    color: var(--color-white);
    background-color: var(--color-2-dark);
    text-decoration: none;
    letter-spacing: 1px;
}

.btn-cta2:hover {
    background-color: var(--color-white);
    color: var(--color-2-dark);
}

/*--------------------------------------------------------------
# 1.4 - CARD
--------------------------------------------------------------*/
.card {
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--color-1-light);
    margin: 0 0 30px !important;
    transition: 0.4s;
}

.card:hover {
    margin-top: -15px !important;
    margin-bottom: 45px !important;
    transition: 0.4s;
    box-shadow: 0 10px 15px 5px var(--color-1-light);
}

.card h3 {
    color: var(--color-2);
}

/*--------------------------------------------------------------
# 2.0 - HEADER - Header-scrolled
--------------------------------------------------------------*/
#logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 10px;
}

#logo2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 10px;
}

#logo img {
    max-height: 70px;
    width: auto;
}

#logo2 img {
    max-height: 70px;
    width: auto;
}


#topBar p {
    margin: 0;
    padding: 20px 0;
}

header {
    background: #fff;
    margin-bottom: 2px;
    margin-top: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#topBar .social-links ul li a {
    display: inline-block;
    /* padding: 5px; */
    margin: 0 8px;
    text-align: center;
    /* width: 20px; */
    /* height: 20px; */
    transition: .3s;
}

.svg-icon svg {
    fill: var(--color-2-dark);
    width: 25px;
    height: 25px;
}

.header-scrolled {
    transition: background-color 0.3s ease;
}

.header-scrolled #logo img {
    transition: all 0.9s;
}

#masthead {
    transition: all 0.5s;
}

.header-scrolled {
    position: sticky !important;
    top: 0;
    z-index: 999;
}

nav {
    transition: all 0.5s;
    padding: 15px 0;
}

.header-scrolled .header-scrolled-visible p,
.header-scrolled-visible {
    display: none
}

.header-scrolled .header-scrolled-visible {
    display: inline-block;
    margin-top: -10px
}

.header-scrolled .header-scrolled-visible img {
    display: inline-block;
    margin-top: -15px;
    height: 40px
}

.header-scrolled .header-scrolled-novisible {
    display: none
}

.header-scrolled .header-scrolled-visible p {
    display: inline-block;
    padding-left: 6px;
    font-size: 32px
}

@media (min-width:768px) {
    .header-scrolled .header-scrolled-visible p {
        display: none
    }

    .header-scrolled .header-scrolled-visible img {
        margin-top: 10px
    }
}

@media (min-width:992px) {
    .header-scrolled .header-scrolled-visible img {
        margin-top: -15px
    }

    .header-scrolled .header-scrolled-visible p {
        display: inline-block;
        padding-left: 10px;
        font-size: 36px
    }
}

/*--------------------------------------------------------------
# 3.0 - NAVBAR
--------------------------------------------------------------*/

header nav {
    display: flex;
    justify-content: space-between;
    position: relative;
    min-height: 50px;
    line-height: 1.6em;
}

#nav-toggle {
    border: none;
    background-color: transparent;
    display: inline-block;
    cursor: pointer;
    z-index: 999;
}

#nav-menu {
    position: fixed;
    z-index: 999;
    top: 0px;
    margin: 0 auto;
    width: 80%;
    height: 100vh;
    overflow-y: auto;
    padding: 0;
    list-style: none;
    right: 100%;
    background-color: var(--color-2-dark);
}

.nav-menu-active {
    right: 20% !important;
}

#nav-menu.active::before {
    opacity: 1;
    /* Visible cuando el menú está activo */
}


#nav-menu a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: var(--color-1-light);
    margin-bottom: 0px;
}

.current_page_item>a {
    color: var(--color-link-light) !important;
}

@media (min-width:768px) {
    .current_page_item>a {
        color: var(--color-link-hover) !important;
    }
}

ul .sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

#nav-menu .sub-menu {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

#nav-menu .sub-menu {
    background-color: var(--color-1);
}

#nav-menu .sub-menu li>a {
    color: var(--color-2-dark);
}

.menu-item-has-children {
    position: relative;
    display: block;
    width: auto;
    padding-right: 10px;
}

.menu-item-has-children i::after {
    content: "\003E";
    position: absolute;
    top: 20px;
    right: 20px !important;
    z-index: 9999;
    right: 30px;
    color: var(--color-white);
    font-weight: 200;
    font-size: 20px;
}

.menu-item-has-children .child-arrow-down::after {
    transform: rotate(90deg);
}

.menu-item-has-children .child-arrow-up::after {
    right: 35px;
    transform: rotate(-90deg);
}

@media (min-width: 768px) {
    #nav-toggle {
        display: none;
    }

    #nav-menu {
        position: static;
        /*  position: relative; */
        display: flex;
        flex-wrap: wrap;
        right: 0px;
        justify-content: flex-end;
        width: 100%;
        height: auto;
        overflow-y: visible;
        background-color: transparent;
    }

    #nav-menu li {
        position: relative;
        margin: 5px 0;
        padding: 0 10px 0 0;
        line-height: 1.3em;
    }

    #nav-menu a {
        color: var(--color-light);
        text-align: left;
        padding: 5px;
        line-height: 1.2em;
        margin-bottom: 0px;
    }

    #nav-menu a:hover {
        color: var(--color-link-hover);
        background-color: var(--color-warning);
    }

    .menu-item-has-children {
        /* position: relative; */
        display: block;
        padding: 0 15px 0 0 !important;
    }


    .menu-item-has-children>a {
        display: block;
        width: 100%;
    }

    .menu-item-has-children i::after {
        top: 5px;
        right: 5px !important;
        color: var(--color-link);
        font-weight: 100;
        font-size: 15px;
    }


    #nav-menu .sub-menu {
        position: absolute;
        z-index: 99999;
        width: max-content;
        padding: 20px 15px;
        margin-top: 10px;
        min-width: 150px;
        max-width: 250px;
        background-color: var(--color-white);
        display: block !important;
        max-height: none !important;
    }

    .menu-item:hover>.sub-menu {
        display: block;
        height: auto;
        overflow: visible;
        visibility: visible;
        opacity: 1;
    }

    ul .sub-menu {
        max-height: inherit;
    }

    #nav-menu .sub-menu li>a {
        /* color: var(--color-link); */
        margin: 12px 0;
    }

    #nav-menu .sub-menu li>a:hover {
        color: var(--color-link-hover);
    }

    .menu-item-has-children .child-arrow-up::after {
        transform: rotate(90deg);
    }

    .menu-item-has-children .sub-menu .child-arrow-down::after {
        transform: rotate(0deg);
    }

    /* Inicialmente todos los sub-menús están ocultos */
    .menu-item-has-children>ul {
        display: none;
        position: absolute;
        background-color: var(--color-white);
        box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
        left: 0;
        /* Alinea sub-menús directamente bajo el elemento padre */
        width: 100%;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    /* Muestra el sub-menú cuando el elemento padre es hovered */
    .menu-item-has-children:hover>ul {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    /* Sub-menús para elementos de segundo nivel */
    .menu-item-has-children ul .menu-item-has-children>ul {
        left: 100%;
        /* Posición del sub-menú del tercer nivel al lado del segundo nivel */
        top: 0;
    }

    /* Asegúrate de que el tercer nivel solo se muestre cuando se hace hover sobre su enlace directo en el segundo nivel */
    .menu-item-has-children ul .menu-item-has-children:hover>ul {
        display: block;
        opacity: 1;
        visibility: visible;
    }


}


/*--------------------------------------------------------------
# 4.0 - MAIN
--------------------------------------------------------------*/
main figure {
    width: 100%;
}

main figure img,
.search-items img,
.post-thumbnail img {
    width: 100%;
    height: auto;
}

/* # 4.1 - COLUMNS */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 10px 0;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.col-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
}

.col-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-8 {
    flex: 0 0 66.6%;
    max-width: 66.6%;
}

.col-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
}

.col-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}

.col-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
}

@media (min-width:768px) {
    .col-md-12 {
        flex: 0 0 100%;
        padding: 10px;
        margin: 0;
    }

    .col-md-11 {
        flex: 0 0 91.666667%;
        padding: 10px;
        margin: 0;
    }

    .col-md-10 {
        flex: 0 0 83.333333%;
        padding: 10px;
        margin: 0;
    }

    .col-md-9 {
        flex: 0 0 75%;
        padding: 10px;
        margin: 0;
    }

    .col-md-8 {
        flex: 0 0 66.3%;
        padding: 10px;
        margin: 0;
    }

    .col-md-7 {
        flex: 0 0 58.333333%;
        padding: 10px;
        margin: 0;
    }

    .col-md-6 {
        flex: 0 0 50%;
        padding: 10px;
        margin: 0;
    }

    .col-md-5 {
        flex: 0 0 41.666667%;
        padding: 10px;
        margin: 0;
    }

    .col-md-4 {
        flex: 0 0 33.33%;
        padding: 10px;
        margin: 0;
    }

    .col-md-3 {
        flex: 0 0 25%;
        padding: 10px;
        margin: 0;
    }

    .col-md-2 {
        flex: 0 0 16.666667%;
        padding: 10px;
        margin: 0;
    }

    .col-md-1 {
        flex: 0 0 8.333333%;
        padding: 10px;
        margin: 0;
    }
}

@media (min-width:992px) {
    .col-lg-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-lg-10 {
        flex: 0 0 83.333333%;
        padding: 10px;
        margin: 0;
    }

    .col-lg-9 {
        flex: 0 0 75%;
        padding: 10px;
        margin: 0;
    }

    .col-lg-8 {
        flex: 0 0 66.6%;
        padding: 10px;
        margin: 0;
    }

    .col-lg-7 {
        flex: 0 0 58.333333%;
        padding: 10px;
        margin: 0;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        padding: 10px;
        margin: 0;
    }

    .col-lg-5 {
        flex: 0 0 41.666667%;
        padding: 10px;
        margin: 0;
    }

    .col-lg-4 {
        flex: 0 0 33.33%;
        padding: 10px;
        margin: 0;
    }

    .col-lg-3 {
        flex: 0 0 25%;
        padding: 10px;
        margin: 0;
    }

    .col-lg-2 {
        flex: 0 0 16.666667%;
        padding: 10px;
        margin: 0;
    }

    .col-lg-1 {
        flex: 0 0 8.333333%;
        padding: 10px;
        margin: 0;
    }
}

section {
    padding: 10px 0;
}

section h2 {
    font-size: 1.9em;
    position: relative;
    margin-bottom: 45px;
}


/* # 4.2 - .Constainer */

.container .header {
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-link-hover);
    font-size: 1.2em;
}

.container .header h2::before {
    position: absolute;
    content: "";
    display: block;
    width: 150px;
    height: 2px;
    background-color: var(--color-1-light);
    bottom: -15px;
    left: calc(50% - 75px);
}

.container {
    width: 95%;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 992px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1320px;
    }
}

hr {
    height: 1px;
    width: 100%;
    margin: 30px 0;
    background-color: var(--color-1-light);
}

/* c# 4.3 - LIST BULLETS */
main article li,
main section li {
    padding-left: 1em;
    text-indent: -.7em;
}

main ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

main li {
    padding-left: 1em;
    text-indent: -.7em;
}

main section ul li::before,
main article ul li::before {
    content: "• ";
    color: var(--color-link-light);
    font-size: 3em;
    position: relative;
    top: 0.25em;
}

#posts-relacionados article ul li::before {
    content: none;
}

/* Listas Ordenadas */
main ol li::marker {
    padding-left: 1em;
    color: var(--color-1-light);
    font-size: 1.6em;
}



/* # 4.4 - CTA */
#call-to-action h2,
#call-to-action h3 {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: var(--color-white);
}

/* BOOTSTRAP MINI - With Var colors */
.text-white {
    color: var(--color-white);
}

.border {
    border: 1px solid var(--color-link-hover) !important;
}

.lead {
    font-weight: 200;
    color: var(--color-link2);
    font-size: 22px;
    line-height: 1.2em;
    margin-bottom: 30px;
}

.display-4 {
    font-size: 3em;
    font-weight: 300;
    line-height: 1.2;
}

.justify-content-center {
    justify-content: center !important;
}

.text-center {
    text-align: center !important;
}

.align-center {
    align-items: center;
}

.vertical-align {
    vertical-align: middle;
}

.d-none {
    display: none !important;
}


/* # 4.5 - BACKGROUND colors */
.bg-light {
    background: var(--bg-light);
}

.bg-light2 {
    background: var(--bg-light2);
}

.bg-white {
    background-color: var(--bg-white);
}

.bg-cta {
    background: var(--color-warning);
}

.bg-footer {
    background: var(--color-2-dark);
}

.bg-dark {
    background: var(--color-2-dark);
    border: none;
}

.bg-dark h2,
.bg-dark h3 {
    color: var(--color-1-light);
}

.bg-dark p,
.bg-dark li {
    color: var(--color-white);
}

.bg-dark a {
    color: var(--color-link-light);
}


@media (min-width:768px) {
    .bg-dark figure {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .bg-dark figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: -50%;
        left: -50%;
        --0-transform: translate(50%, 50%);
        --webkit-transform: translate(50%, 50%);
        transform: translate(50%, 50%);
    }
}

/*--------------------------------------------------------------
# 4.6 - SEARCH modal
--------------------------------------------------------------*/
/* The Modal (background) */
.modal,
.modal2 {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 999;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

/* Modal Content */
.modal-content,
.modal-content2 {
    position: relative;
    background-color: var(--bg-light);
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 90%;
    max-width: 1000px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

/* The Close Button */
.close,
.close2 {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus,
.close2:hover,
.close2:focus {
    color: var(--color-text);
    text-decoration: none;
    cursor: pointer;
}


.modal-header {
    padding: 2px 16px;
    background-color: var(--color-2-dark);
    color: var(--color-white);
}

.modal-body {
    padding: 24px 32px 0px;
}

.modal-footer {
    padding: 2px 16px;
    background-color: var(--color-white);
    color: var(--color-text);
    min-height: 50px;
}

/*   END MODAL */

/*--------------------------------------------------------------
 # 4.7 - IMAGE FEATURED
  --------------------------------------------------------------*/
.img-featured {
    position: relative;
    margin: 0 0 30px;
}

.img-featured img {
    width: 95%;
    position: relative;
    z-index: 1;
}

.img-featured::after {
    content: "";
    position: absolute;
    top: 10%;
    left: 15%;
    width: 85%;
    height: 95%;
    background-color: var(--color-1-light);
    z-index: 0;
}

.img-fluid {
    width: 100%;
    /* max-width: 100%; */
    height: auto;
}

/*--------------------------------------------------------------
# 4.8 - BLOG
--------------------------------------------------------------*/

body.single .svg-icon svg {
    /* Estilo de las etiquetas */
    fill: var(--color-2-dark);
    /* width: 20px;
    height: 20px; */
    position: relative;
    /* top: 5px; */
}

.single #about h2,
.single #about h3 {
    padding-top: 70px;
    margin-top: 0;
}

.share-social-media ul {
    display: flex;
}

.share-social-media a {
    text-decoration: none;
}

.single #about .form-control {
    width: 100%;
    padding: 15px;
}

/* # 4.9 - SIDEBAR */
.sidebar-menu {
    background-color: var(--color-white);
    border: 2px solid var(--color-1-light);
    padding: 10px;
}

.sidebar-text {
    color: var(--color-text)
}

.sidebar-border-bot {
    border-bottom: 2px solid var(--color-1-light);
}

.sidebar-border {
    border: 2px solid var(--color-1-light);
}

/* BARRA LATERAL SIMULANDO HR  */
.sidebar-border-bot {
    border-bottom: 2px solid var(--color-1-light);
}

.sidebar-border {
    border: 2px solid var(--color-1-light);
}


/*--------------------------------------------------------------
# 6.0 - FORM
--------------------------------------------------------------*/
#details {
    background-color: var(--color-2-dark);
    text-align: center;
    line-height: 1.2;
}

#details span {
    color: var(--color-white);
    font-size: 3em;
}

/* Remover los puntos de las listas dentro del footer */
#footer .footer-link ul,
#footer .footer-link li {
    list-style: none !important;
    /* Eliminar la lista */
    padding: 0;
    /* Eliminar el padding */
    margin: 0;
    /* Eliminar el margen */
}

#footer .footer-link li::marker {
    display: none !important;
    /* Asegura que no se muestre el marcador */
    content: none !important;
    /* Elimina cualquier contenido del marcador */
}

#footer .footer-link li::before {
    display: none !important;
    /* Asegura que no haya contenido antes del <li> */
    content: none !important;
}


#footer-top {
    background-color: var(--bg-light);
}

#contact label {
    display: block;
    margin-bottom: 10px;
}

/* Botón de enviar */
.contactForm button[type=submit] {
    background: var(--color-link);
    border: 0;
    padding: 10px 30px;
    color: var(--color-white);
    transition: .4s;
    cursor: pointer;
}

.contactForm button[type=submit]:hover {
    background: var(--color-link-hover);
}

/* FIN Botón de enviar */


#contact input,
#contact textarea,
.dropdown button {
    padding: 10px 14px;
    border-radius: 0;
    box-shadow: none;
    font-size: 15px;
    /* width: 100%; */
}

#contact input[type="text"],
#contact input[type="number"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea,
.dropdown button {
    display: block;
    width: 100%;
    border: 1px solid var(--color-1-light);
}

.dropdown-menu {
    background-color: var(--color-white);
    border: 1px solid var(--color-1-light);
    padding: 10px;
}

.dropbtn {
    background-color: var(--color-link-hover);
    color: var(--color-white);
    padding: 16px;
    font-size: 16px;
    border: none;
}

.dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--color-1-light);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: var(--color-text);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: var(--color-white);
}

.dropdown:hover .dropdown-content {
    display: block;
    width: 100%;
    padding: 5px 10px;
}

/* Formulario respuesta Blog */
.form-submit .submit {
    background-color: var(--color-2);
    border: 1px solid var(--color-2);
    color: var(--color-white);
    padding: 10px;
    border-radius: 0;
    transition: .5s;
    margin: 10px 0px 40px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    text-decoration: none;
}

.form-submit .submit:hover {
    background-color: var(--color-white);
    color: var(--color-text);
    border: 1px solid var(--color-text);
    cursor: pointer;
}

.form-submit-subscribe {
    background-color: var(--color-1-light);
    padding: 10px 20px;
    transition: .5s;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    color: var(--color-link-hover);
    text-decoration: none;
}

.form-submit-subscribe:hover {
    background-color: var(--color-1-light);
    color: var(--color-text);
}

/*--------------------------------------------------------------
# 6.0 - FOOTER
--------------------------------------------------------------*/

#footer-bottom {
    padding: 30px 0;
    background-color: var(--color-2-dark);
    color: var(--color-white);
}

footer h3 {
    color: var(--color-1-light);
}

.footer-list {
    padding: 0;
}

.footer-list li {
    list-style: none;
}

/* FOOTER-TOP */

#footer .footer-top {
    padding: 4px 0 30px
}

#footer .footer-top .footer-info {
    margin-bottom: 30px
}

#footer .footer-top .footer-info h3 {
    font-size: 34px;
    margin: 0 0 20px;
    padding: 2px 0 2px 10px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 3px
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: var(--color-link-light);
    color: var(--color-white);
    line-height: 1;
    padding: 10px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 45px;
    height: 45px;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    transition: .3s
}

#footer .footer-top .social-links a:hover {
    background: var(--color-white);
    color: var(--color-link-light);
}

#footer .footer-top .footer-links {
    margin-bottom: 30px
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0
}

#footer .footer-top .footer-contact,
#footer .footer-top .footer-newsletter {
    margin-bottom: 30px
}

#footer .footer-top .footer-links ul i {
    padding-right: 8px;
    color: var(--color-white);
}

#footer .footer-top .footer-links ul li {
    border-bottom: 1px solid var(--bg-light);
    padding: 10px 0
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0
}

#footer .footer-top .footer-links ul a:hover {
    color: var(--color-link)
}

#footer .footer-top .footer-contact p {
    line-height: 26px
}

#footer .footer-top .footer-newsletter input[type=email] {
    border: 0;
    padding: 6px 8px;
    width: 65%
}

#footer .footer-top .footer-newsletter input[type=submit] {
    background: var(--color-link);
    border: 0;
    width: 35%;
    padding: 6px 0;
    text-align: center;
    color: var(--color-white);
    -moz-transition: .3s;
    -webkit-transition: .3s;
    transition: .3s;
    cursor: pointer
}

#footer .footer-top .footer-newsletter input[type=submit]:hover {
    background: var(--color-link-hover)
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 15px
}

#footer .credits {
    text-align: center;
    font-size: 13px;
    color: var(--bg-light);
}

/* FOOTER menu-3 */
#menu-legal-menu {
    display: inline;
    /* Mostrar los elementos en línea */
    list-style: none;
    /* Quitar los puntos de la lista */
    margin: 0;
    padding: 0;
}

#menu-legal-menu li {
    display: inline;
    /* Mostrar los elementos de la lista en línea */
    margin: 0;
    padding: 0;
}

#menu-legal-menu li:not(:first-child)::before {
    content: " | ";
    /* Separador antes de cada elemento (excepto el primero) */
    color: white;
    /* Color del separador */
}

#menu-legal-menu a {
    text-decoration: none;
    /* Quitar subrayado */
    color: white;
    /* Color de los enlaces */
}

#menu-legal-menu a:hover {
    text-decoration: underline;
    /* Subrayar al pasar el mouse (opcional) */
}

/* ------------------------------------
# 7.0 - ACCESSIBILITY
--------------------------------------------- */
/* Text meant only for screen readers. */
.skip-link {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    position: static;
    left: 0;
    background-color: yellow;
    color: black;
    padding: 10px;
}

/* ------------------------------------------
# 98.0 - GUTTEMBERG BLOCKS - MINI
--------------------------------------------- */
.wp-block-columns {
    margin: 40px 0;
}

.wp-block-latest-posts li {
    margin-bottom: 30px;
}

.wp-block-latest-posts__featured-image img {
    margin: 0 10px;
    padding: 5px 10px;
}

.wp-block-separator {
    color: var(--color-1-light);
    margin: 30px 0;
}

.wp-block-list {
    padding: 0;
}

.g-0 {
    /* Eliminar el padding de las columnas */
    gap: 0;
}

/* ------------------------------------------
# 99.0 - BOOTSTRAP 5.2 - MINI
--------------------------------------------- */

/* SHADOW */
.shadow {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

/* OBJECT-FIT */
.cover {
    object-fit: cover;
}

/* TEXT */
.text-decoration-none {
    text-decoration: none !important
}

.text-center {
    text-align: center !important
}

/* FONT Size */
@media (min-width:678px) {
    .fs-1 {
        font-size: 2.5rem !important
    }

    .fs-2 {
        font-size: 2rem !important
    }

    .fs-3 {
        font-size: 1.75rem !important
    }

    .fs-4 {
        font-size: 1.5rem !important
    }
}

/* DISPLAY */
.d-inline {
    display: inline !important
}

.d-inline-block {
    display: inline-block !important
}

.d-block {
    display: block !important
}

.d-grid {
    display: grid !important
}

.d-table {
    display: table !important
}

.d-table-row {
    display: table-row !important
}

.d-table-cell {
    display: table-cell !important
}

.d-flex {
    display: flex !important
}

.d-inline-flex {
    display: inline-flex !important
}

/* FLEX */
.flex-fill {
    flex: 1 1 auto !important
}

.flex-row {
    flex-direction: row !important
}

.flex-column {
    flex-direction: column !important
}

.flex-row-reverse {
    flex-direction: row-reverse !important
}

.flex-column-reverse {
    flex-direction: column-reverse !important
}

.flex-grow-0 {
    flex-grow: 0 !important
}

.flex-grow-1 {
    flex-grow: 1 !important
}

.flex-shrink-0 {
    flex-shrink: 0 !important
}

.flex-shrink-1 {
    flex-shrink: 1 !important
}

.flex-wrap {
    flex-wrap: wrap !important
}

.flex-nowrap {
    flex-wrap: nowrap !important
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important
}

/* JUSTIFY CONTENT */
.justify-content-start {
    justify-content: flex-start !important
}

.justify-content-end {
    justify-content: flex-end !important
}

.justify-content-center {
    justify-content: center !important
}

.justify-content-between {
    justify-content: space-between !important
}

.justify-content-around {
    justify-content: space-around !important
}

.justify-content-evenly {
    justify-content: space-evenly !important
}

/* ALIGN ITEMS */
.align-items-start {
    align-items: flex-start !important
}

.align-items-end {
    align-items: flex-end !important
}

.align-items-center {
    align-items: center !important
}

.align-center {
    align-items: center
}

.align-items-baseline {
    align-items: baseline !important
}

.align-items-stretch {
    align-items: stretch !important
}

.align-content-start {
    align-content: flex-start !important
}

.align-content-end {
    align-content: flex-end !important
}

.align-content-center {
    align-content: center !important
}

.align-content-between {
    align-content: space-between !important
}

.align-content-around {
    align-content: space-around !important
}

.align-content-stretch {
    align-content: stretch !important
}

.align-self-auto {
    align-self: auto !important
}

.align-self-start {
    align-self: flex-start !important
}

.align-self-end {
    align-self: flex-end !important
}

.align-self-center {
    align-self: center !important
}

.align-self-baseline {
    align-self: baseline !important
}

.align-self-stretch {
    align-self: stretch !important
}

.vertical-align {
    vertical-align: middle
}

/* ORDEN COLUMNAS */
.column-order {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse
}

@media (min-width:768px) {
    .column-order {
        flex-direction: row
    }
}

/* ORDER */
.order-first {
    order: -1 !important
}

.order-0 {
    order: 0 !important
}

.order-1 {
    order: 1 !important
}

.order-2 {
    order: 2 !important
}

.order-3 {
    order: 3 !important
}

.order-4 {
    order: 4 !important
}

.order-5 {
    order: 5 !important
}

.order-last {
    order: 6 !important
}

/* order-md */
@media (min-width:768px) {
    .order-md-first {
        order: -1 !important
    }

    .order-md-0 {
        order: 0 !important
    }

    .order-md-1 {
        order: 1 !important
    }

    .order-md-2 {
        order: 2 !important
    }

    .order-md-3 {
        order: 3 !important
    }

    .order-md-4 {
        order: 4 !important
    }

    .order-md-5 {
        order: 5 !important
    }

    .order-md-last {
        order: 6 !important
    }
}

/* JUSTIFY CONTENT */
.justify-content-center {
    justify-content: center !important;
}

/* BORDER */
.border-top {
    border-top: 1px solid #dee2e6 !important;
}

.border-bottom {
    border-bottom: 1px solid #dee2e6 !important;
}

.border-3 {
    border: 3px solid #dee2e6 !important;
}

.border-5 {
    border: 5px solid #dee2e6 !important;
}

.border-10 {
    border: 10px solid #dee2e6 !important;
}

.border-15 {
    border: 15px solid #dee2e6 !important;
}

.border-20 {
    border: 20px solid #dee2e6 !important;
}

.border-25 {
    border: 25px solid #dee2e6 !important;
}

.border-30 {
    border: 30px solid #dee2e6 !important;
}

.border-35 {
    border: 35px solid #dee2e6 !important;
}

.border-40 {
    border: 40px solid #dee2e6 !important;
}

/* ROUNDED */
.rounded {
    border-radius: 0.25rem !important;
}

.rounded-3 {
    border-radius: 0.3rem !important;
}

.rounded-5 {
    border-radius: 0.5rem !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

.rounded-pill {
    border-radius: 50rem !important;
}

/* MARGIN Y PADDING */
.m-0 {
    margin: 0 !important
}

.m-1 {
    margin: .25rem !important
}

.m-2 {
    margin: .5rem !important
}

.m-3 {
    margin: 1rem !important
}

.m-4 {
    margin: 1.5rem !important
}

.m-5 {
    margin: 3rem !important
}

.m-auto {
    margin: auto !important
}

.mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important
}

.mx-1 {
    margin-right: .25rem !important;
    margin-left: .25rem !important
}

.mx-2 {
    margin-right: .5rem !important;
    margin-left: .5rem !important
}

.mx-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important
}

.mx-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important
}

.mx-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important
}

.my-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important
}

.my-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important
}

.my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important
}

.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important
}

.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important
}

.mt-0 {
    margin-top: 0 !important
}

.mt-1 {
    margin-top: .25rem !important
}

.mt-2 {
    margin-top: .5rem !important
}

.mt-3 {
    margin-top: 1rem !important
}

.mt-4 {
    margin-top: 1.5rem !important
}

.mt-5 {
    margin-top: 3rem !important
}

.mt-auto {
    margin-top: auto !important
}

.me-0 {
    margin-right: 0 !important
}

.me-1 {
    margin-right: .25rem !important
}

.me-2 {
    margin-right: .5rem !important
}

.me-3 {
    margin-right: 1rem !important
}

.me-4 {
    margin-right: 1.5rem !important
}

.me-5 {
    margin-right: 3rem !important
}

.me-auto {
    margin-right: auto !important
}

.mb-0 {
    margin-bottom: 0 !important
}

.mb-1 {
    margin-bottom: .25rem !important
}

.mb-2 {
    margin-bottom: .5rem !important
}

.mb-3 {
    margin-bottom: 1rem !important
}

.mb-4 {
    margin-bottom: 1.5rem !important
}

.mb-5 {
    margin-bottom: 3rem !important
}

.mb-auto {
    margin-bottom: auto !important
}

.ms-0 {
    margin-left: 0 !important
}

.ms-1 {
    margin-left: .25rem !important
}

.ms-2 {
    margin-left: .5rem !important
}

.ms-3 {
    margin-left: 1rem !important
}

.ms-4 {
    margin-left: 1.5rem !important
}

.ms-5 {
    margin-left: 3rem !important
}

.ms-auto {
    margin-left: auto !important
}

.p-0 {
    padding: 0 !important
}

.p-1 {
    padding: .25rem !important
}

.p-2 {
    padding: .5rem !important
}

.p-3 {
    padding: 1rem !important
}

.p-4 {
    padding: 1.5rem !important
}

.p-5 {
    padding: 3rem !important
}

.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important
}

.px-1 {
    padding-right: .25rem !important;
    padding-left: .25rem !important
}

.px-2 {
    padding-right: .5rem !important;
    padding-left: .5rem !important
}

.px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important
}

.px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important
}

.px-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.py-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important
}

.py-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important
}

.pt-0 {
    padding-top: 0 !important
}

.pt-1 {
    padding-top: .25rem !important
}

.pt-2 {
    padding-top: .5rem !important
}

.pt-3 {
    padding-top: 1rem !important
}

.pt-4 {
    padding-top: 1.5rem !important
}

.pt-5 {
    padding-top: 3rem !important
}

.pe-0 {
    padding-right: 0 !important
}

.pe-1 {
    padding-right: .25rem !important
}

.pe-2 {
    padding-right: .5rem !important
}

.pe-3 {
    padding-right: 1rem !important
}

.pe-4 {
    padding-right: 1.5rem !important
}

.pe-5 {
    padding-right: 3rem !important
}

.pb-0 {
    padding-bottom: 0 !important
}

.pb-1 {
    padding-bottom: .25rem !important
}

.pb-2 {
    padding-bottom: .5rem !important
}

.pb-3 {
    padding-bottom: 1rem !important
}

.pb-4 {
    padding-bottom: 1.5rem !important
}

.pb-5 {
    padding-bottom: 3rem !important
}

.ps-0 {
    padding-left: 0 !important
}

.ps-1 {
    padding-left: .25rem !important
}

.ps-2 {
    padding-left: .5rem !important
}

.ps-3 {
    padding-left: 1rem !important
}

.ps-4 {
    padding-left: 1.5rem !important
}

.ps-5 {
    padding-left: 3rem !important
}

/* GUTTERS */
.g-0,
.gx-0 {
    --bs-gutter-x: 0
}

.g-0,
.gy-0 {
    --bs-gutter-y: 0
}

.g-1,
.gx-1 {
    --bs-gutter-x: 0.25rem
}

.g-1,
.gy-1 {
    --bs-gutter-y: 0.25rem
}

.g-2,
.gx-2 {
    --bs-gutter-x: 0.5rem
}

.g-2,
.gy-2 {
    --bs-gutter-y: 0.5rem
}

.g-3,
.gx-3 {
    --bs-gutter-x: 1rem
}

.g-3,
.gy-3 {
    --bs-gutter-y: 1rem
}

.g-4,
.gx-4 {
    --bs-gutter-x: 1.5rem
}

.g-4,
.gy-4 {
    --bs-gutter-y: 1.5rem
}

.g-5,
.gx-5 {
    --bs-gutter-x: 3rem
}

.g-5,
.gy-5 {
    --bs-gutter-y: 3rem
}


@media (max-width: 768px) {

    /* 1) Oculta siempre el toggle */
    #nav-toggle {
        display: none !important;
    }

    /* 2) Resetea el contenedor del menú en móvil */
    .d-flex.me-5 {
        background: transparent !important;
        /* quita el fondo azul */
        height: auto !important;
        overflow: visible !important;
    }

    /* 3) Fuerza que el <ul> del menú se muestre a su altura natural */
    #nav-menu {
        display: flex !important;
        flex-direction: column !important;
        position: static !important;
        top: auto !important;
        left: auto !important;
        width: auto !important;
        height: auto !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: transparent !important;
        /* quita fondo azul */
    }

    /* 4) Texto en color original (negro) */
    #nav-menu li a {
        color: var(--color-text) !important;
    }
}

/* Asegura que los hijos de .d-flex(menú y lupa) queden centrados */
/* Estilo por defecto (escritorio y pantallas grandes) */
.d-flex {
    align-items: center !important;
    margin-right: 1rem;
}

/* Para móviles (ancho ≤ 767px), sobreescribimos solo el margin */
@media (max-width: 767px) {
    .d-flex {
        margin-right: 0rem;
    }
}


/* — Escritorio (pantallas >= 768px) — */
@media (min-width: 768px) {

    /* 1) Nav como flex: logos a extremos */
    header#masthead nav.container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        padding-right: 1rem;
        /* sólo en escritorio */
        padding-left: 1rem;
        /* no permitir que bajen a otra línea */
    }
}

/* — Teléfono (pantallas < 768px) — */
@media (max-width: 767px) {

    /* 1) Nav como flex: logos a extremos */
    header#masthead nav.container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        /* sin padding-right extra */
    }
}



/* 2) Cada logo no crece ni encoge */
header#masthead figure#logo,
header#masthead figure#logo2 {
    flex: 0 0 auto;
    margin: 0;
    /* o ajusta el spacing que necesites */
    padding: 0.5rem 0;
}

/* 3) Logos que escalan automáticamente */
header#masthead figure#logo img,
header#masthead figure#logo2 img {
    width: auto;
    /* altura se adapta entre 40px y 70px según el ancho de viewport */
    height: clamp(40px, 10vw, 70px);
}

/* 4) En caso de que quieras más control en móviles: */
@media (max-width: 576px) {

    header#masthead figure#logo img,
    header#masthead figure#logo2 img {
        height: clamp(30px, 12vw, 50px);
    }
}


/* 1) Oculta social-links únicamente en el header */
#topBar .social-links {
    display: none !important;
}

/* 2) Empuja el menú a la derecha */
#topBar .d-flex {
    margin-left: auto !important;
}


#topBar .container.align-center {
    justify-content: space-between !important;
}


#modalBuscador .modal-body .row font {
    display: contents !important;
}








/* 1) Hacemos el wrapper relativo y sin recorte */
.gtranslate_wrapper {
    position: relative !important;
    overflow: visible !important;
}

/* 2) Forzamos que el switcher no oculte nada */
.gt_switcher {
    overflow: visible !important;
}

/* 3) Posicionamos el listado de opciones por ABSOLUTO, justo debajo del botón */
.gtranslate_wrapper .gt_switcher .gt_option {
    position: absolute !important;
    top: calc(100%) !important;
    /* un poquito separado del selector */
    left: 0 !important;
    display: block !important;
    /* aseguramos que siempre sea visible */
    min-width: 160px !important;
    /* ajusta si quieres otro ancho */
    max-height: 300px !important;
    /* scroll si hay muchas opciones */
    overflow-y: auto !important;
    background: var(--bg-light2) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
    z-index: 9999 !important;
}

/* 4) Permitimos overflow en el topBar para que no recorte el dropdown */
#topBar {
    overflow: visible !important;
}