.localstore_wrap {
    --white: #fff;
    --black: #000;
    --gray: #f8f8f8;
    --bg: #eaeaea;
}

.localstore_wrap {
    position: relative;
    overflow: hidden;
    color: var(--black);
}

.localstore_wrap,
.localstore_wrap * {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.localstore_search_wrap {
    width: 40%;
    position: absolute;
    height: 100%;
    background: var(--gray);
    z-index: 10;
    transition: all .5s linear;
    -moz-transition: all .5s linear;
    -webkit-transition: all .5s linear;
}

.localstore_searchbox {
    background: var(--primary-color);
    padding: 10px 10px 0 10px;
}

form#localstore_search_form {
    margin: 0;
}

.dvls_flex {
    -js-display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin: 0 -5px;
}

.dvls_flex_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    position: relative;
    padding: 0 5px;
    margin-bottom: 10px;
}

.dvls_col_full {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
}

.localstore_wrap input[type="text"] {
    width: 100%;
    outline: none;
    padding: 0 15px;
    height: 40px;
    border: 1px solid var(--white);
    border-radius: 0;
    background: var(--gray);
    font-size: 14px;
    outline: none;
    margin: 0;
    box-shadow: none;
}

.localstore_wrap button.button_submit {
    position: absolute;
    right: 0;
    height: 100%;
    border: 0;
    background: transparent;
    overflow: hidden;
    width: 50px;
    cursor: pointer;
    min-height: auto;
    outline: none;
    margin: 0;
    box-shadow: none;
    padding: 0;
}

.localstore_wrap select {
    width: 100%;
    border: 1px solid var(--white);
    border-radius: 0;
    background-color: var(--gray);
    height: 40px;
    padding: 0 10px;
    font-size: 14px;
    outline: none;
    margin: 0;
    box-shadow: none;
}

#localstore_search_form button.find_store_near {
    padding: 0;
    min-height: auto;
    font-weight: 400;
    text-transform: none;
    font-size: 14px;
    margin: 0;
    border: 0;
    color: var(--white);
    height: auto;
    line-height: 20px;
    text-align: left;
    display: inline-block;
}

.localstore_search_results {
    overflow: auto;
    position: relative;
    max-height: calc(100% - 140px);
}

.localstore_box {
    overflow: hidden;
    padding: 21px 10px;
    font-size: 14px;
    border-top: 1px solid var(--bg);
    line-height: 1.3;
    cursor: pointer;
    position: relative;
}

.localstore_box:hover {
    background-color: var(--bg);
}

.localstore_img {
    width: 29%;
    float: left;
    margin: 0 15px 0 0;
}

.localstore_img img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.localstore_info {
    overflow: hidden;
}

.localstore_info_name>strong {
    font-size: 17px;
    text-transform: capitalize;
    font-weight: 700;
    display: block;
    margin: 0 0 10px 0;
}

.localstore_info>ul {
    margin: 0 0 15px 0;
    padding: 0;
    list-style: none;
}

.localstore_info>ul li {
    margin: 0 0 8px 0 !important;
    position: relative;
    padding: 0;
}

.localstore_info>ul li i {
    position: absolute;
    top: 2px;
    left: 0;
    color: var(--primary-color);
}

.localstore_action a {
    text-decoration: none;
    margin-right: 10px;
    outline: none !important;
}

.localstore_action a.localstore_btn {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 12px;
    padding: 5px 10px;
    display: inline-block;
}

span.close_search {
    position: absolute;
    top: 82px;
    right: -42px;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    text-align: center;
    color: var(--white);
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    cursor: pointer;
    transition: all .3s linear;
    -moz-transition: all .3s linear;
    -webkit-transition: all .3s linear;
    line-height: 30px;
}

.localstore_maps {
    z-index: 2;
    position: relative;
    padding-left: 40%;
    transition: all .5s linear;
    -moz-transition: all .5s linear;
    -webkit-transition: all .5s linear;
}

div#localstore_maps {
    width: 100%;
    min-height: 700px;
    max-height: 1200px;
}

.localstore_search_results>p {
    text-align: center;
    margin: 0;
    padding: 10px;
}

@media (min-width: 1001px) {
    .hidden_search .close_search .fas.fa-angle-left:before {
        content: "\f105"
    }

    .hidden_search .localstore_maps {
        padding-left: 0
    }

    .hidden_search .localstore_search_wrap {
        transform: translate3d(-100%, 0, 0);
        -moz-transform: translate3d(-100%, 0, 0);
        -webkit-transform: translate3d(-100%, 0, 0)
    }
}

@media (max-width: 700px) {
    .localstore_search_wrap {
        width: 100%;
        position: unset;
    }

    .localstore_maps {
        padding: 0
    }

    .localstore_search_results {
        max-height: 350px;
    }

    div#localstore_maps {
        height: 500px
    }
}