.a-head {
    position: relative;
}
.a-head-box {
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    position: absolute;
    top: 100%;
    background-color: #fff;
    width: max-content;
    z-index: 999;
}
.a-head-box::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 10%;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid #f0f0f0;
}
.a-head-box__top {
    background-color: #f0f0f0;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    padding: 0.5rem 1rem;
    font-weight: 500;
    border-radius: 0.3rem 0.3rem 0 0;
}
.a-head-box__bottom {
    padding: 1rem 1rem;
    display: flex;
    justify-content: space-between;
    gap: 5px;
}
.city-search-text {
    font-size: 24px;
    font-weight: 600;
    width: fit-content;
}
.city-search-clear {
    color: red;
}
.city-search-clear:hover {
    text-decoration: underline;
}
.city-search-wrapper {
    width: -webkit-fill-available;
}
button#js--our-city {
    background-color: unset;
}
button#js--our-city:hover {
    color: red;
}
.btn-clear {
    background-color: transparent;
    border: 0;
    margin: 0;
    padding: 0;
    font-size: 100%;
    font-family: inherit;
    appearance: none;
}
.city-btn {
    padding: 10px;
    border-radius: 5px;
	background-color: #e8e8e89c;
    transition: all 0.2s ease-out;
}
.city-btn--left {
    padding: 10px;
    background: linear-gradient(180.00deg, rgb(65, 202, 0), rgb(46, 143, 0) 100%);
    color: #fff;
}
.city-btn--left:hover {
    background: linear-gradient(0deg, rgb(46, 143, 0), rgb(43 135 0) 100%)
}
.city-btn-right:hover {
    background: rgba(0, 0, 0, 0.15);
}
.bg-add-class .fancybox__backdrop {
    background-color: rgba(0, 0, 0, 0.3);
}
/*.geo-popup--css {
    width: min(100%, 600px);
}*/
.all-city-title {
    font-size: 14px;
    color: rgb(108, 108, 108);
    padding: 10px;
}
.all-header-title-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
    padding: 10px;
}
.all-stycky {
    position: sticky;
    top: 0;
}
.all-city-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: flex-start;
    max-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
}
.all-city-box a {
    display: inline-flex;
    padding: 7px 10px;
}
#js--geo-box {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.2s ease-out;
}
#js--geo-box.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.city-search-input {
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    padding: 10px;
	width: 100%;
}
.hidden-box {
    display: none;
}