.site-footer .language-selector img {
    height: 52px;
    margin-bottom: 24px;
    width: 199px;
}

.site-footer .language-selector p {
    color: var(--color-dark-grey);
    /* font-family: 'IBMPlex'; */
    font-size: 13px;
    line-height: 19px;
    margin-bottom: 24px;
}

/* Language selector based on UL */
#g-selectLanguages {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    width: 100%;
}

#g-selectLanguages li {
    display: none;
}

#g-selectLanguages li.selected {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: var(--color-white);
    border: 2px solid var(--color-dark-grey);
    border-radius: 28px;
    color: var(--color-dark-grey);
    cursor: pointer;
    font-size: 16px;
    line-height: 24px;
    padding: 10px 18px;
    padding-right: 40px;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 11;
}

#g-selectLanguages li.selected:hover {
    border-color: var(--color-primary);
}

/* Arrow icon using CSS */
#g-selectLanguages li.selected i,
#g-selectLanguages li.selected .pandasecurity-icon-down {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--color-dark-grey);
    transition: transform 0.3s ease;
    font-style: normal;
}

#g-selectLanguages.active li.selected i,
#g-selectLanguages.active li.selected .pandasecurity-icon-down {
    transform: translateY(-50%) rotate(180deg);
}

#g-selectLanguages.active li {
    display: block;
}

/* Contenedor flotante para las opciones del dropdown */
#g-selectLanguages li:not(.selected) {
    background-color: var(--color-white);
    border-left: 2px solid var(--color-dark-grey);
    border-right: 2px solid var(--color-dark-grey);
    position: absolute;
    width: 100%;
    z-index: 10;
    box-sizing: border-box;
}

/* Posicionar cada opción secuencialmente desde el elemento seleccionado */
#g-selectLanguages.active li:not(.selected):nth-of-type(2) {
    top: 100%;
    border-top: 2px solid var(--color-dark-grey);
}

#g-selectLanguages.active li:not(.selected):nth-of-type(3) {
    top: calc(100% + 50px);
}

#g-selectLanguages.active li:not(.selected):nth-of-type(4) {
    top: calc(100% + 98px);
}

#g-selectLanguages.active li:not(.selected):nth-of-type(5) {
    top: calc(100% + 146px);
}

#g-selectLanguages li:not(.selected):last-child {
    border-bottom: 2px solid var(--color-dark-grey);
}

#g-selectLanguages li a {
    display: block;
    padding: 12px 18px;
    color: var(--color-dark-grey);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

#g-selectLanguages li a:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .site-footer .language-selector {
        text-align: center;
    }
    
    #g-selectLanguages {
        margin-bottom: 30px;
    }
}