/* #block-customlanguageswitcher {
    position: absolute;
    left: 25px;
} */

.lang-switcher-select {
    display: flex;
    position: relative;
}

.lang-switcher-select .selected-lang {
    display: inline-block;
    position: relative;
    font-family: 'GothamHTF-Book', sans-serif;
    font-size: 11px;
    cursor: pointer;
    color: #ffff;
}

.lang-switcher-select .selected-lang::after {
    content: '';
    background-image: url(../images/down-arrow.png);
    display: inline-block;
    width: 14px;
    height: 11px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    top: 2px;
    right: -3px;
}

.lang-switcher-select.active .selected-lang::after {
    top: 1px;
    transform: rotate(-180deg);
}

.lang-switcher-select ul {
    position: absolute;
    right: -8px;
    top: calc(100% + 7px);
    background: #ffff;
    z-index: 2;
    border-radius: 5px;
    box-shadow: 0px 9px 20px rgb(0 0 0 / 10%);
    display: none;
    overflow: hidden;
    width: 60px;
}

.lang-switcher-select.active ul {
    display: block;
}

.lang-switcher-select ul li a {
    font-family: 'GothamHTF-Book', sans-serif;
    font-size: 11px;
    color: #333;
    transition: all 0.3s;
}

.lang-switcher-select ul li.active a {
    color: #333;
    background: #e3e3e3;
}
html[lang="ar"] .lang-switcher-select .selected-lang::after{
    left: -3px;
    right: auto;
}