
body.nb-ios-fixed {
    /* fix: mouse hover */
    cursor: pointer
}

#nb-language-selector {
    position: static;
    box-sizing: border-box;
    width: 100%;
    padding: 1px 25px;
    height: 30px;
    background-color: rgba(66,229,229,0.72);
    text-align: right;
}
#nb-ls-container {
}
#nb-ls-button:link, 
#nb-ls-button:visited,
#nb-ls-button:hover {
    box-sizing: border-box;
    display: block;
    color: #0050A0;
    font-size: 13px;
    height: 25px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    padding: 8px 5px 3px 17px;
    background-image: url("./icon-earth.png");
    background-position: 0% 8px;
    background-repeat: no-repeat;
}
#nb-ls-button:hover {
    opacity: 0.7;
}
#nb-ls-button:before {
    /*
    content: "\f1ab";
    content: "\f0ac";
    color: #0D5EAD;
    font-family: "FontAwesome";
    margin-right: 5px;
    */
}
.nb-ls-dropdown {
    position: relative;
    display: inline-block;
}
.nb-ls-content {
    float: none;
    overflow: hidden;
    height: 0;
    color: white;
    transition: .2s;
    border-style: none;
    display: none;

    position: absolute;
    left: -20px;
    background-color: rgba(66,229,229,0.95);
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0,30,60,0.2);
    z-index: 1002;
    list-style-type: none;
    padding: 8px 0;
    margin: 0;
    text-align: left;
    font-size: 13px;
}
.nb-ls-content a:link,
.nb-ls-content a:visited,
.nb-ls-content a:hover {
    color: #0c0c0c;
    padding: 8px 15px;
    text-decoration: none;
    display: block;
}
.nb-ls-content a:hover {
}
.nb-ls-dropdown:hover .nb-ls-content {
    display: block;
    height: auto;
    transition: all 1.1s ease;
    -webkit-transition: all 1.1s ease;
    -moz-transition: all 1.1s ease;
}

.mm-opening #nb-language-selector,
.mm-opened #nb-language-selector {
    display: none;
}

