.header .main-header .hamburger {
    margin-right: -10px;
    z-index: 3;
}
.location-picker {
    position: relative;
    width: 165px;
    z-index: 2;
}
.location-items {
    position: absolute;
    top: -6px;
    left: 0;
    width: 100%;
    height: auto;
    background: var(--white);
    padding: 0 24px;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
}
.location-items.show {
    padding-bottom: 24px;
}
.location-items.show > span {
    display: flex;
}
.location-items > span {
    display: none;
    align-items: center;
    margin-top: 22px;
    margin-right: 0;
    order: 2;
}
.location-items > span[data-is_current="Y"] {
    display: flex;
    order: 1;
    margin-top: 0;
}
.location-items > span i {
    display: inline-block;
    margin-left: 10px;
}
.location-items.show > span i {
    transform: rotate(180deg);
}
.location-items.show > span a {
    text-decoration: none;
}