.header-location__store.hidden {
    display: none;
}

.header-location__popup {
    position: absolute;
    z-index: 1001;
    top: 0;
    background-color: #fff;
    padding: 40px;
    min-width: 480px;
    border-radius: 10px;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.07);
    font-size: 18px;
}

.header-location__popup-close {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 56px;
    height: 72px;
    font-size: 0;
    cursor: pointer;
    transition: .2s;
}

.header-location__popup-close:before {
    content: "\78";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'gear';
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: end;
    justify-content: left;
    height: 100%;
    color: var(--black-color);
    font-size: 28px;
}

.location-popup__content > h3 {
    color: var(--black-color);
    line-height: 1;
    font-family: "Days_one", Helvetica, Arial, sans-serif;
    font-weight: normal;
    font-size: 20px;
    margin: 0 40px 0 0;
}

.location-popup__content > p {
    margin: 32px 0 0;
}

.location-popup__action > span {
    display: inline-block;
    color: var(--black-color);
    padding: 15px 30px;
    background-color: var(--bg-gray-color);
    border-radius: 8px;
    margin: 32px 0 0 20px;
    cursor: pointer;
}

.location-popup__action > span:first-child {
    margin-left: 0;
}

.location-popup__action .region__close {
    color: #fff;
    background-color: var(--orange-color);
}

.gr-region {
    position: relative;
    width: 440px;
}

.gr-region.blocked:before {
    content: "";
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgb(255 255 255/75%);
    cursor: not-allowed;
}

.gr-region.blocked:after {
    content: "";
    z-index: 1000;
    border: 10px solid #ddd;
    border-radius: 50%;
    border-top: 10px solid #777;
    width: 40px;
    height: 40px;
    -webkit-animation: cir 1s linear infinite;
    animation: cir 1s linear infinite;
    position: absolute;
    left: 50%;
    margin-left: -20px;
    margin-top: -40px;
    top: 100px;
}

.gr-region__serch-wrap {
    position: fixed;
    z-index: 1;
    width: calc(100% - 80px);
    background-color: #fff;
    padding-bottom: 15px;
}

.gr-region__serch {
    position: relative;
    display: flex;
    align-items: center;
}

.gr-region__serch input {
    border: 1px solid #d1d1d1;
    border-radius: 4px;
    width: 100%;
    padding: 8px 40px 8px 10px;
    font-size: 16px;
    line-height: 1.4;
}

.gr-region__serch input:focus {
    border-color: #aaa;
}

.gr-region__serch .action {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
}

.gr-region__serch .action:before {
    content: "\73";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'gear';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    font-size: 16px;
    text-align: center;
    line-height: 40px;
    color: #777;
}

.gr-region__serch .action:hover:before {
    color: #333;
}

.gr-region__auto {
    display: inline-block;
    font-size: 13px;
    cursor: pointer;
    color: #83b043;
    border-bottom: 1px dashed #83b043;
    margin: 10px 0 0;
}

.gr-region__wrap {
    height: 350px;
    padding-top: 60px;
    overflow: hidden;
}

.gr-region__wrap::-webkit-scrollbar {
    width: 4px;
}

.gr-region__wrap::-webkit-scrollbar-thumb {
    background-color: rgb(196, 196, 196);
    border-radius: 4px;
}

.gr-region__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    height: 300px;
}

.gr-region__search-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gr-region__list-item {
    position: relative;
    display: block;
    cursor: pointer;
    line-height: 1.3;
    padding: 8px 26px;
    order: 2;
}

.gr-region__list-item.selected,
.gr-region__list-item.selected:hover {
    order: 1;
    font-weight: bold;
    cursor: default;
    color: #333;
}

.gr-region__list-item.selected:after {
    content: "\43";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'gear';
    display: inline-block;
    width: 16px;
    height: 16px;
    font-size: 12px;
    text-align: right;
    line-height: 12px;
    color: var(--orange-color);
    margin-left: 6px;
    vertical-align: middle;
    font-weight: normal;
}

.gr-region__list-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'gear';
    display: flex;
    align-items: center;
    width: 24px;
    height: 100%;
    font-size: 16px;
    text-align: right;
    line-height: 16px;
    margin-right: 6px;
    vertical-align: middle;
    font-weight: normal;
}

.gr-region__list-item.our:before {
    content: "\63";
}

.gr-region__list-item:hover {
    color: var(--orange-color);
}

.gr-region__list-item > span {
    color: #39f;
}

.find .gr-region__serch .action:before {
    content: "\78";
    cursor: pointer;
}

.find .gr-region__list {
    display: none;
}

.gr-region__search-list > li {
    display: none;
}

.gr-region__empty {
    display: none;
    padding: 10px 20px;
    background-color: #cd212826;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.3;
}

.not_found .gr-region__empty {
    display: block;
}

.gr-region__empty p {
    margin: 0;
}

.gr-region__empty .gr-region__list-item {
    display: inline-block;
    color: #cd2128;
    border-bottom: 1px dashed;
    padding: 0;
    margin: 0 0 0 5px;
}

.gr-region__note {
    font-size: 12px;
    color: #777;
    text-align: right;
    width: 240px;
    margin: 5px 0 0 auto;
}

.gr-region__note .icon {
    display: inline-block;
    align-items: center;
    width: 14px;
    height: 14px;
    font-size: 13px;
    font-style: normal;
    text-align: center;
    line-height: 14px;
    vertical-align: middle;
}

.gr-region__note .icon:before {
    content: "";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'topdetal';
}

.gr-region__note .icon.geo:before {
    content: "\4c";
    color: #333;
}

@media only screen and (max-width: 580px) {
    .gr-region {
        width: auto;
    }

    .gr-region__list {
        height: auto;
    }

    .header-location__popup {
        width: 100%;
        min-width: auto;
        position: fixed;
        z-index: 1001;
        top: 0;
        left: 0;
    }

    .location-popup__action > span {
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media only screen and (max-width: 480px) {
    .gr-region__list {
        width: 100%;
    }

    .gr-region__wrap {
        height: auto;
        min-height: 300px;
        overflow: initial;
    }

    .gr-region__list-item {
        font-size: 16px;
        padding: 12px 20px;
    }
}