ul.selezione_lingue {

    width: auto;

    display: flex;
    flex-direction: row;
    align-items: center;  /* vertical */
    justify-content: space-evenly; /* horizontal */

    margin-top: 15px;

}

ul.selezione_lingue li {
    display: flex;
    flex-direction: column;
    align-items: center;  /* vertical */
    justify-content: space-between; /* horizontal */
}

ul.selezione_lingue li img {
    display: inline-block;
    height: 25px;
    width: 25px;
}

ul.selezione_lingue li label {
    
    font-size: 12px;
    color: white;
    font-weight: normal;

}

ul.selezione_lingue li.selected img {
    display: inline-block;
    height: 30px;
    width: 30px;
}

ul.selezione_lingue li.selected label {
    
    font-size: 14px;
    color: white;
    font-weight: bold;

}


ul.selezione_lingue li label.dark {
    
    font-size: 14px;
    color: black;
    font-weight: bold;

}