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

.lang-switcher-select {
    display: flex;
    position: relative;
    height: 48px;
    align-items: center;
    margin-left: 25px;
    margin-right: 4px;
}

.lang-switcher-select .selected-lang {
    display: flex;
    align-items: center;
    position: relative;
    font-family: 'GothamHTF-Book', sans-serif;
    font-size: 16px;
    cursor: pointer;
    color: #000;
}

.lang-switcher-select .selected-lang::after {
    content: '';
    background-image: url('../../../../themes/custom/clientela/assets/arrow-down.svg');
    display: inline-block;
    width: 14px;
    height: 11px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    top: 0;
    right: -5px;
}

.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;
}

.lang-switcher-select.active ul {
    display: block;
    margin: 0 !important;
    width: 50px;
    left: 0;
    top: 50px;
    text-align: center;
    border: 1px solid #000;
    border-radius: 4px;
}

.lang-switcher-select.active ul li{
    padding: 5px 9px;
}

.lang-switcher-select ul li a {
    font-family: 'GothamHTF-Book', sans-serif;
    font-size: 14px;
    color: #333;
}
.lang-switcher-select ul li.active{
    background: #C50070;
}
.lang-switcher-select ul li.active a {
    color: #fff;
}