.location__tooltip {
    display: none;
}

.tippy-box .location__tooltip {
    display: flex;
    gap: 15px;
    width: 300px;
}

.location__city {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.location__city span {
    font-size: 14px;
    line-height: 16px;
}

.location__selected-city {
    font-weight: 500;
    text-transform: uppercase;
}

.location__buttons {
    display: flex;
    gap: 10px;
}

.location__buttons button {
    text-transform: uppercase;
}

.location__buttons .location__right {
    color: #fff;
    background-color: #212529;
}

input.ds-popup-city-input::-webkit-calendar-picker-indicator {
    display: none !important;
}

@media only screen and (max-width: 1024px) {
    .location__tooltip {
        position: fixed;
        justify-content: space-around;
        width: 100%;
        height: 68px;
        padding: 15px 0;
        left: 0;
        top: 0;
        background-color: #fff;
        z-index: 1000;
    }

    .location__tooltip.show {
        display: flex;
    }

    .location__tooltip.bottom {
        bottom: 0;
        top: unset;
    }

    #location-check-open {
        display: none;
    }

    .a-reset-styles .popup-location-cities__field .select__list {
        max-height: 356px;
    }
}