@-webkit-keyframes loading {
    0% {
        left: 50%;
        width: 0;
        z-index: 100
    }
    33.3333% {
        left: 0;
        width: 100%;
        z-index: 10
    }
    to {
        left: 0;
        width: 100%
    }
}

@keyframes loading {
    0% {
        left: 50%;
        width: 0;
        z-index: 100
    }
    33.3333% {
        left: 0;
        width: 100%;
        z-index: 10
    }
    to {
        left: 0;
        width: 100%
    }
}

.storelocator-loader {
    transition: opacity .15s ease-in, -webkit-transform .15s ease-in-out;
    transition: transform .15s ease-in-out, opacity .15s ease-in;
    transition: transform .15s ease-in-out, opacity .15s ease-in, -webkit-transform .15s ease-in-out;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 10;
    opacity: 0
}

.storelocator-loader.active {
    opacity: 1
}

.storelocator-loader .storelocator-loaderBar {
    content: "";
    display: inline-block;
    position: absolute;
    width: 0;
    height: 100%;
    left: 50%;
    text-align: center
}

.storelocator-loader .storelocator-loaderBar:first-child {
    background-color: #f60;
    -webkit-animation: loading 3s linear infinite;
    animation: loading 3s linear infinite
}

.storelocator-loader .storelocator-loaderBar:nth-child(2) {
    background-color: #fc3;
    -webkit-animation: loading 3s linear 1s infinite;
    animation: loading 3s linear 1s infinite
}

.storelocator-loader .storelocator-loaderBar:nth-child(3) {
    background-color: #ea4c89;
    -webkit-animation: loading 3s linear 2s infinite;
    animation: loading 3s linear 2s infinite
}

.storelocator-detailStore {
    position: relative;
    font-size: 13px;
    color: #000
}

.storelocator-detailStoreTitle {
    margin-bottom: 10px;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 16px;
    display: block
}

.storelocator-detailStoreTitle a {
    text-decoration: none;
    color: #000
}

.storelocator-detailStoreTitle span {
    display: inline
}

.storelocator-detailStoreDistance {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #9a9a9a;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none
}

.storelocator-detailStoreIconRoute {
    fill: #9a9a9a;
    width: 20px;
    margin-left: 10px
}

.storelocator-detailStoreCity {
    display: inline-block;
    vertical-align: top;
    padding-bottom: 12px
}

.storelocator-detailStoreAddress {
    display: block;
    padding-bottom: 12px;
    padding-right: 90px
}

.storelocator-detailStoreZipcode {
    padding-bottom: 12px
}

.storelocator-detailStorePhone {
    display: block
}

.storelocator-detailStorePhone a {
    text-decoration: none;
    color: #000
}

.storelocator-formSearch {
    position: relative;
    width: 100%;
    height: auto;
    padding: 20px;
    background-color: #fff
}

.storelocator-inputSearch {
    width: 100%;
    height: 40px;
    padding-left: 10px;
    font-size: 15px;
    border: none;
    outline: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .2), 0 -1px 0 rgba(0, 0, 0, .02)
}

.storelocator-formFilters {
    margin-top: 20px
}

.storelocator-formFilters label {
    position: relative;
    padding: 5px 5px 6px 37px;
    font-size: 14px;
    cursor: pointer
}

.storelocator-formFilters label:before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
    border: 2px solid rgba(0, 0, 0, .3)
}

.storelocator-formFilters label:after {
    content: "";
    display: block;
    opacity: 0;
    position: absolute;
    width: 14px;
    height: 14px;
    top: 5px;
    left: 5px;
    border-radius: 3px;
    transition: opacity .2s ease-out;
    background-color: rgba(0, 0, 0, .3)
}

.storelocator-formFilters input[type=checkbox] {
    position: absolute;
    opacity: 0;
    top: 4px;
    left: 4px
}

.storelocator-formFilters input[type=checkbox]:checked+label:after {
    opacity: 1
}

.storelocator-formFiltersRow {
    display: flex;
    align-items: center;
    margin-top: 15px
}

.storelocator-formFiltersRow:first-child {
    margin-top: 0
}

.storelocator-formCheckbox {
    font-size: 13px;
    position: relative;
    display: block;
    width: 50%;
    padding: 4px 0
}

@media only screen and (min-width:750px) {
    .storelocator-formSearch {
        height: auto;
        z-index: 5;
        border-radius: 5px 5px 0 0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, .2), 0 -1px 0 rgba(0, 0, 0, .02)
    }
}

.storelocator-infoWindow {
    padding: 10px 0 10px 10px
}

.storelocator-infoWindow .storelocator-pictureStore {
    margin-bottom: 20px;
    display: block;
    max-width: 250px
}

.storelocator-infoWindow .storelocator-pictureStore img {
    display: block;
    width: 100%;
    height: auto
}

.storelocator-infoWindow .storelocator-detailStore {
    max-width: 250px
}

.storelocator-infoWindow .storelocator-detailStoreAddress {
    padding-right: 0
}

.storelocator-infoWindow .storelocator-detailStoreTitle {
    padding-right: 90px
}

.storelocator-infoWindow .storelocator-detailStoreDistance {
    top: 0;
    -webkit-transform: none;
    transform: none
}

.storelocator-infoWindow .storelocator-detailStoreUrl {
    color: #000
}

.storelocator-nav {
    height: 40px;
    position: relative;
    z-index: 10
}

.storelocator-navList {
    display: flex;
    align-items: center;
    text-align: center;
    height: 100%;
    margin: 0;
    padding: 0
}

.storelocator-navButton {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    color: #b9b8b8;
    border: 0;
    -webkit-appearance: none;
    font-size: 16px;
    font-family: inherit;
    cursor: pointer;
    background: none;
    outline: none
}

.storelocator-navListItem {
    width: 50%;
    height: 100%;
    list-style-type: none;
    border-bottom: 1px solid #b9b8b8
}

.storelocator-navListItem.active {
    border-bottom: 2px solid #000
}

.storelocator-navListItem.active .storelocator-navButton {
    color: #000
}

@media only screen and (min-width:750px) {
    .storelocator .storelocator-nav {
        display: none
    }
}

.storelocator-sidebarResults {
    display: none;
    overflow: auto;
    height: 100%;
    border-top: 1px solid #e7e7e7
}

.storelocator-sidebar {
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 1;
    background: #fff
}

.storelocator-sidebar.active .storelocator-sidebarResults {
    display: block
}

.storelocator-sidebarResultsListItem {
    display: block;
    padding: 20px;
    border-top: 1px solid #e7e7e7;
    border-left: 5px solid #f60;
}

.storelocator-sidebarResultsListItem:first-child {
    border-top: none
}

.storelocator-sidebarResultsList {
    padding: 0;
    margin: 0
}

.storelocator-sidebarNoResults {
    padding: 20px
}

.storelocator-sidebarIntro, .storelocator-sidebarNoResults {
    margin: 0;
    font-size: 13px;
    line-height: 20px;
    color: #b9b8b8;
    font-style: italic
}

.storelocator-sidebarIntro {
    padding: 10px 20px
}

@media only screen and (min-width:750px) {
    .storelocator-sidebar {
        position: absolute;
        top: 10px;
        left: 20px;
        width: 350px;
        height: auto;
        max-height: calc(100% - 135px);
        z-index: 5;
        border-radius: 0 0 5px 5px;
        background-color: #fff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, .2), 0 -1px 0 rgba(0, 0, 0, .02)
    }
    .storelocator-sidebarResults {
        display: block
    }
}

.storelocator-googleMaps {
    position: relative;
    height: 0;
    /* padding-top: 100%; */
    display: none;
    overflow: hidden;
    width: 100%
}

.storelocator-googleMaps.active {
    display: block
}

.storelocator-googleMaps #storelocator-googleMapsCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

.storelocator-geolocButton {
    position: absolute;
    right: 10px;
    bottom: 105px;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: none;
    cursor: pointer
}

.storelocator-geolocButton:before {
    content: "";
    background-image: url(//maps.gstatic.com/tactile/mylocation/mylocation-sprite-2x.png);
    background-size: 180px 18px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px
}

.pac-container .pac-item {
    padding: 4px 5px 3px
}

.pac-container .pac-icon {
    margin-right: 9px;
    margin-left: 5px
}

@media only screen and (min-width:750px) {
    .storelocator-googleMaps {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* padding-top:0 */
    }
}

body, html {
    height: auto;
    margin: 0
}

.storelocator {
    position: relative;
    height: 100vh !important
}

.storelocator, .storelocator * {
    box-sizing: border-box
}

@media only screen and (min-width:750px) {
    .storelocator, body, html {
        height: 100%
    }
}
