.language-switcher {
    position: fixed;
    bottom: 30px;
    right: 20px;
    border: 2px solid #403F41;
    border-radius: 18px;
    overflow: hidden;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding: 2px;
    z-index: 1001;
}

.language-switcher .language {
    height: 32px;
    width: 32px;
    border-radius: 50%;
    display: inline-block;
    filter: grayscale(100%);
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    margin: 0 1px;
}

.language-switcher .language.active {
    filter: none;
    border: 2px solid #63BA4A;
}
