.gs-store-wrapper {
    display: flex;
    height: 60vh;
}

.gs-store-sidebar {
    flex: 0 0 300px;
    background: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

#gs-store-locations {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
    height: 100%;
}

.store {
    background-color: #FFF;
    border: 1px #f3f3f3 solid;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.06);
    padding: 15px;
}

@media screen and (max-width: 480px) {
    .store {
        padding: 15px;
    }
}

.store-avatar {
    width: 48px;
    height: 48px;
    background: black;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    margin: 0 auto 35px;
}

.store-name {
    font-size: 1.5rem;
    color: var(--e-global-color-accent);
    margin: .25rem 0 .75rem;
}

.store-address {
    font-size: .9rem;
    color: #333;
    margin-top: 1rem;
}

.gs-store-input input {
    padding: 4px 12px;
    border-radius: 10px;
    box-shadow: none;
    border: 1px black solid;
    margin-top: 5px;
}

.directions-link {
    font-weight: 600;
    font-size: .9rem;
    margin-top: 10px;
    display: block;
}

/* Search error */
#gs-store-locations.error {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    text-align: center;
}

#gs-store-locations.error .search-error {
    display: block;
}

#gs-store-locations:not(.error) .search-error {
    display: none !important;
}

/* Map */
#gs-store-map {
    height: 100%;
    flex: 1;
}

@media screen and (max-width: 767px) {
    #gs-store-map {
        height: 300px;
        flex: auto;
    }
    .gs-store-wrapper {
        flex-direction: column-reverse;
        height: auto;
    }
}

.gs-store-marker {
    background: url(./custom-marker.png);
    width: 41px !important;
    height: 58px !important;
    color: white;
    font-weight: bold;
    text-align: center;
    padding-top: 5px;
}

.store-address.map-zoomin,
.store-name.map-zoomin {
    cursor: pointer;
}