#language-pane {
    height: auto;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    width: auto;
    top: 80px;
    right: 10px;
    transition: right var(--transition-duration) ease;
    background-color: rgba(255,255,255,.8);
    z-index:100;
}

#language-pane.nascosto {
    right: -500;
}

.language-wrp {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 10px;
}


.language-wrp img {
    width: 20px;
    height: auto;
}

.language-wrp span {
    font-size: 1rem;
    font-weight: 400;
    margin-left: 15px;
    color: var(--verde-scuro)
}
