/* LANGUAGE */
.region-search{
    z-index: 4;
    position: relative;
    width: auto;
}
.block-language{
    display: flex;
    justify-content: end;
    font-size: 14px;
    height: 0px;
    background-color: green;
    /*border-bottom: 1px solid lightgray;*/
}
.block-language a{
    text-decoration: none;
    color: inherit;
}
.block-language ul.links{
    list-style: none;
    position: absolute;
    /*padding-top: 1rem;*/
    background-color: white;

    left: calc(var(--padding) * 3);
    top: calc(var(--padding) + 5px);
    z-index: 10;
}
@media only screen and (min-width : 1280px) {
    .block-language{
        height: 103px;
        /*padding: var(--padding) 0;*/
        justify-content: flex-end;
        position: relative;
    }
    .block-language ul.links{
        /*position: relative;*/
        left: unset;
        top: unset;
        right: 2rem;
    }
}
.block-language ul.links li{
    padding: 0.2rem;
}
.block-language ul.links li:not(.is-active){
    display: none;
}
.block-language ul.links li:not(.is-active):hover{
    color: var(--red);
}
.block-language ul.links li.is-active{
    background: url(../../images/icons/arrow-down.svg) no-repeat;
    background-position: top 6px right;
    padding-right: 2rem;
    cursor: pointer;
    font-weight: bold;
}
.block-language ul.expanded li:not(.is-active){
    display: block;
}