#language-select {
    margin-top: 1px;
    margin-right: 10px;
    height: 21px;
    line-height: 21px;
}

#current-lang {
    cursor: pointer;
}

#current-lang::after {
    content: "\F107";
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font: normal normal normal 1rem/1 FontAwesome;
    font-size: 1.8rem;
}

.link_white_lang {
    text-decoration: none;
    color: #fff;
}

#languages {
    position: relative;
    right: 0;
    flex-direction: column;
    background-color: white;
    justify-content: center;
    align-items: center;
    padding: 10px;
    line-height: 3rem;
    min-width: 8rem;
    border: 1px solid #e6e6e6;
    border-radius: 3px;
    z-index: 999;
}

@media screen and ( max-width: 900px) {
    #languages {
        position: sticky;
    }

    .link_white_lang {
        color: black;
    }

    #current-lang::after {
        color: grey;
    }

    #language-select {
        margin-bottom: -1rem;
    }
}
