/*--Language switcher--*/

.language-switcher li{
    display:inline-flex;
}
.dropbtn, .dropbtn-footer{
    background-color: transparent;
}

.dropbtn,  .dropbtn-footer{
    background-color: transparent;
    color: white;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropbtn:hover, .dropbtn:focus, .dropbtn:visited, .dropbtn:active,
.dropbtn-footer:hover, .dropbtn-footer:focus, .dropbtn-footer:visited, .dropbtn-footer:active{
    color: #ededed;
    border:none;
    outline: none;
}

.dropdown-language-switcher {
    position: relative;
    margin-right: 30px;
}

.dropdown-content{
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 140px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    top: 27px;
    right: 0;
    border-radius: 4px;
}
.dropdown-content li, .dropup-content li{
    display:flex;
    margin:0;
    border-top: 1px solid #ededed;
}

.dropdown-content li:first-child, .dropup-content li:first-child{
    border-top: none;
}


.dropdown-content a, .dropup-content a {
    color: black;
    padding: 0px 16px;
    text-decoration: none;
    display: block;
}
.dropdown-content a:hover, .dropup-content a:hover{
    color: #424242;
}

.dropdown-content a:active, .dropup-content a:active{
    color: #424242;
}

.dropdown-content::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #ededed;
    position: absolute;
    right: 14px;
    top: -6px;
}

span.dropbtn, span.dropbtn-footer{
    padding-right:6px;
}

.show {display: block;}

.dropup {
    position: relative;
    display: inline-block;
}

.dropup-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 140px;
    bottom: 35px;
    z-index: 1;
    left:0;
    border-radius: 4px;
}

.dropup-content::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #f1f1f1;
    position: absolute;
    left: 15px;
    bottom: -6px;
}

.dropup-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

