/** Shopify CDN: Minification failed

Line 77:4 Unexpected "}"

**/
   #city-filter, #country-filter {
        width: 45%;
        border-radius: var(--inputs-radius);
        outline: 1px solid;
        border: 0;
        border-right: 16px solid transparent;
        padding: 15px;
        text-align: center;
        margin-bottom: 20px;
        height: 50px;
        column-count: 2;
        grid-column: 2 span;
        font-family: var(--font-body-family);
        font-style: var(--font-body-style);
        font-weight: var(--font-body-weight);
        font-size: 1.6rem;
        color: rgba(var(--color-foreground), .75);
        margin: auto;
    }

    #location-filter {
        justify-content: center;
        display: flex;
        width: 50%;
        height: 70px;
        margin: auto;
    }

   .storeCard {
        border-width: thin;
        border-style: solid;
        background-color: #efefef;
        border-radius: 10px;
        box-shadow: 10px 5px 10px #efefef;
        display: flex;
        flex-flow: column;

        div {
            display: flex;
            flex-flow: row;
        }
    }

    div.storeAdress {
        z-index: 2;
        margin: 0 10px;
        display: block;
    }

    .storeImage {
        justify-content: center;
        margin: auto;
        max-width: 10vh;

        img {
            max-width: 9vh;
            max-height: 75px;
        }
    }

    .countryCards {
        display: grid;
        gap:5px 5px;
    }

    .nocountry {
        grid-area: nocountry;
        text-align: center;
        text-decoration: underline;
    }

    }
