/**
	Change geo block
 */
.change-geo {
    position: relative;
    color: var(--s-style-text);
}

.change-geo .change-geo-active {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    border-radius: 30px;
    background-color: var(--s-style-bg);
    cursor: pointer;
}

.change-geo .change-geo-active:hover {
    background-color: var(--s-style-bg-hover);
}

.change-geo .change-geo-active img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.change-geo .sub-menu {
    display: none;
}

.change-geo .fa-chevron-down {
    transition: all 0.3s ease;
}

.change-geo.active .fa-chevron-down {
    transform: rotate(180deg);
}

.change-geo.active ul {
    display: flex;
}

.change-geo ul {
    position: absolute;
    bottom: calc(100% + 8px);
    z-index: 100;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px;
    margin: 0 !important;
    width: -webkit-fill-available;
    min-width: 250px;
    border-radius: var(--s-rounded-blocks);
    background-color: var(--s-block-primary-bg);
    border: 1px solid var(--s-block-secondary-bg);
    box-shadow: 0px 8px 30px 0px #0000001A;
}

.header-mobile .change-geo ul {
    background-color: var(--s-style-bg);
}

.change-geo ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    margin: 0 !important;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: var(--s-text-color);
    text-decoration: none;
}

.change-geo ul li::before {
    content: none;
}

.change-geo ul li:hover {
    background-color: var(--s-block-secondary-bg);
}

.change-geo ul li img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}