.store-locator {
    --sl-color: inherit;
    --sl-background: #fff;
    --sl-background-selected: #f5f5f5;
    --sl-border-color: #e6e6e6;
    --sl-button-color: #4285f4;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    height: 100%
}

.store-locator * {
    box-sizing: border-box
}

.store-locator_store {
    display: flex;
    align-items: stretch
}

.store-locator_list .store-locator_store {
    position: relative;
    transition: all .2s ease
}

.store-locator_list .store-locator_item.is-hidden {
    display: none
}

.store-locator_list .store-locator_store.is-selected {
    background-color: var(--sl-background-selected)
}

.store-locator_store_text {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: 1rem
}

.store-locator_list .store-locator_store_text {
    margin-left: 1.5rem
}

.store-locator_store_thumbnail {
    flex: 0 0 auto;
    margin: 1rem;
    text-align: center
}

.store-locator_store_thumbnail img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    object-position: center
}

.store-locator_list .store-locator_store_thumbnail {
    width: 80px;
    height: 92px
}

.store-locator_map .store-locator_store_thumbnail {
    margin: .5rem 0 .5rem .5rem
}

.store-locator_store_name {
    margin: 0;
    font-size: 1em;
    font-weight: 700
}

.store-locator_store_summary {
    margin: .5rem 0 0;
    font-size: .875em
}

.store-locator_list .store-locator_store_summary {
    margin-top: .25rem;
    opacity: .7
}

.store-locator_map .store-locator_store_summary {
    display: none
}

.store-locator_store_address {
    margin: .5rem 0 0;
    font-size: .9375em;
    font-style: normal
}

.store-locator_map .store-locator_store_address {
    display: none
}

.store-locator_store_description {
    margin: .5rem 0 0;
    font-size: .875em
}

.store-locator_list .store-locator_store_description {
    display: none
}

.store-locator_store_distance {
    display: block;
    height: 1em;
    margin: .35rem 0 0;
    font-size: .875em;
    line-height: 1em;
    opacity: .75
}

.store-locator.distance-is-hidden .store-locator_store_distance {
    display: none
}

.store-locator_store_actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: .875em;
    margin-top: 1rem;
    pointer-events: none
}

.store-locator_list .store-locator_store_actions {
    display: none;
    margin-left: -.25rem
}

.store-locator_map .store-locator_store_actions {
    flex-direction: column;
    align-items: flex-start
}

.store-locator_store_actions a {
    display: inline-flex;
    position: relative;
    align-items: center;
    padding: .25rem;
    text-decoration: none;
    color: inherit;
    transition: all .2s ease;
    pointer-events: auto
}

.store-locator_store_actions a:hover {
    z-index: 2
}

.store-locator_list .store-locator_store_actions a {
    white-space: nowrap
}

.store-locator_list .store-locator_store_actions a:after {
    content: attr(title);
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    margin: 0 .25em;
    padding: .25em .5em;
    white-space: nowrap;
    background-color: #4285f4;
    background-color: var(--sl-button-color);
    color: #fff;
    color: var(--sl-background);
    border-radius: 4px;
    opacity: 0;
    transition: all .1s linear;
    pointer-events: none
}

.store-locator_list .store-locator_store_actions a:hover:after {
    opacity: 1
}

.store-locator_map .store-locator_store_actions a {
    padding-left: 0
}

.store-locator_store_actions svg {
    width: 1.5em;
    height: 1.5em;
    color: #4285f4;
    color: var(--sl-button-color);
    transition: all .15s ease
}

.store-locator_store_actions span {
    margin-left: .25em
}

.store-locator_list .store-locator_store_actions span {
    display: none
}

.store-locator_map {
    flex: 1;
    position: relative;
    z-index: 1;
    height: 100%;
    min-height: 300px
}

.store-locator_map .store-locator_store {
    flex-direction: column;
    max-width: 300px
}

.store-locator_map .store-locator_store .store-locator_store_text {
    margin: .5rem 0 .5rem .5rem
}

.store-locator_nav {
    z-index: 2;
    width: 100%;
    min-height: 300px;
    background: #fff;
    background: var(--sl-background);
    color: inherit;
    color: var(--sl-color);
    box-shadow: 0 0 8px rgba(0, 0, 0, .3)
}

.store-locator_nav_container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden
}

.store-locator_nav_header {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 1rem .75rem;
    border-bottom: 1px solid var(--sl-border-color)
}

.store-locator_nav_search {
    display: flex;
    position: relative;
    z-index: 2;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .2), 0 -1px 0 rgba(0, 0, 0, .02)
}

.store-locator_search {
    flex-grow: 1;
    position: relative
}

.store-locator_search input {
    width: 100%;
    height: 3em;
    padding: 0 2.25rem 0 .75rem;
    font-size: 1em;
    line-height: 3em;
    background: transparent;
    border: 0;
    outline: none
}

.store-locator_search svg {
    position: absolute;
    right: .5em;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 1.5em;
    height: 1.5em;
    opacity: .38;
    pointer-events: none
}

.store-locator_search_hint {
    width: 100%;
    margin: 1rem 0 0;
    font-size: .875em;
    opacity: .75
}

.store-locator_nav_button {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 1em;
    width: 3em;
    height: 3em;
    background: transparent;
    border: 0;
    color: inherit;
    appearance: none;
    cursor: pointer
}

.store-locator.no-geolocation .store-locator_nav_button {
    display: none
}

.store-locator_nav_button svg {
    width: 1.5em;
    height: 1.5em;
    opacity: .38;
    transition: all .15s ease
}

.store-locator_nav_button:hover svg {
    color: #4285f4;
    color: var(--sl-button-color);
    opacity: 1
}

.store-locator_nav_button:before {
    content: "";
    position: absolute;
    top: .75em;
    bottom: .75em;
    left: 0;
    width: 1px;
    background-color: #e6e6e6;
    background-color: var(--sl-border-color)
}

.store-locator_nav_empty {
    font-size: 1.25em;
    opacity: .5;
    padding: 1.5rem
}

.store-locator_filters {
    background-color: var(--sl-background);
    border-bottom: 1px solid var(--sl-border-color)
}

.store-locator_filters_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .75rem 1rem;
    background: var(--sl-background-selected);
    font-weight: 700;
    cursor: pointer
}

.store-locator_filters_header svg {
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    stroke-width: 2px
}

.store-locator_filters_toggle {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px
}

.store-locator_filters_toggle:checked~.store-locator_filters_header svg {
    transform: rotate(180deg)
}

.store-locator_filters_toggle:not(:checked)~.store-locator_filters_list {
    display: none
}

.store-locator_filters_list {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: .75rem;
    list-style: none
}

.store-locator_filters_item {
    padding: .25rem
}

.store-locator_list {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow-y: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    -webkit-overflow-scrolling: touch
}

.store-locator_list::-webkit-scrollbar {
    width: 6px
}

.store-locator_list::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .42)
}

.store-locator_list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, .12)
}

.store-locator_list li {
    border-bottom: 1px solid var(--sl-border-color)
}

@media (min-width:750px) {
    .store-locator {
        flex-direction: row
    }

    .store-locator_nav {
        order: -1;
        max-width: 400px
    }

    .store-locator.is-fullwidth .store-locator_nav {
        position: absolute;
        top: 2rem;
        left: 2rem;
        bottom: 2rem;
        right: 2rem
    }
}