.shipping-to-city{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
}
.shipping-to-city img{
    max-width: 32px;
    max-height: 32px;
}
.shipping-to-city img, .shipping-to-city i, .shipping-to-city svg{
    margin-left: 7px;
}
.select-location {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 10004;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
    transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
    will-change: opacity;
}
.select-location.active {
    opacity: 1;
    visibility: visible;
}
.select-location .select-location-wrapper {
    position: relative;
    padding: 1.875rem;
    background-color: #fff;
    border-radius: var(--size-border-radius);
    width: 26.25rem;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-transition: all 0.2s cubic-bezier(0.17, 0.62, 0.44, 0.99);
    transition: all 0.2s cubic-bezier(0.17, 0.62, 0.44, 0.99);
    will-change: transform;
    border-radius: 7px;
}
.select-location.active .select-location-wrapper {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.select-location.active .select-location-wrapper {
    z-index: 99;
}
.select-location .close-popup {
    position: absolute;
    font-size: 1.25rem;
    top: 0.9375rem;
    right: 0.9375rem;
    cursor: pointer;
}
.select-location .search-location {
    /* position: relative; */
    margin-top: 1.25rem;
}
.select-location.active .location-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
ul.site-area{
    padding: 0;
    margin: 0;
    list-style: none;
    max-height: 300px;
    overflow: auto;
    min-height: 300px;
}
ul.site-area li{
    list-style: None;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    padding: 15px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 5px;
}
ul.site-area li:last-child{
    border-bottom: 0px;
}
ul.site-area li:hover{
    background-color: #f9f9f9;
}
ul.site-area li.selected{
    background-color: #f9f9f9;
}
ul.site-area li span{
    font-size: .625rem;
    font-weight: 500;
    margin-left: 0.625rem;
    border: 1px solid #e2e2ec;
    color: #9b9bb4;
    padding: 0.1875rem 0.625rem;
    border-radius: 1.875rem;
}
input.filter-cities:focus{
    outline: 0;
}
input.filter-cities{
    background-color: #f3f4f7;
    border: 0;
    padding: 0 45px 0 0;
    margin: 0 0px 15px 0;
    height: 50px;
    border-radius: 5px;
    line-height: 1.5em;
    background-image: url('../img/search.svg');
    background-repeat: no-repeat;
    background-position: right center;
}

.sub-terms-locations{
    position: absolute;
    top: 30px;
    right: 0px;
    height: 90%;
    width: 95%;
    padding: 0;
    padding: 1.875rem;
    background-color: #fff;
    border-radius: 7px;
    display: none;
    box-sizing: border-box;
    padding-top: 70px;
    overflow: auto;
}
.sub-terms-locations li {
    list-style: None;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    padding: 15px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 5px;
}
.sub-terms-locations li:last-child{
    border-bottom: 0px;
}
.sub-terms-locations li:hover{
    background-color: #f9f9f9;
}
.sub-terms-locations li.selected{
    background-color: #f9f9f9;
}

.close-sub-terms{display: none;position: relative;z-index: 3;height: 40px;cursor: pointer;align-items: center;background: #fff;margin-left: 10px;}