section.nearest-shakeshack-block {
    margin-top: 50px;
    margin-bottom: 50px;

    &.loading {
        a.nearest-shakeshack-block-location:before {
            content: "Loading...";
            background: white;
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            border-radius: inherit;
            display: flex;
            justify-content: center;
            align-items: center;
            color: black;
        }

        .nearest-shakeshack-input-group:before {
            font-size: 14px;
        }
    }

    &.with-background-image {
        min-height: 450px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .row {
        background: #FAFAFA;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    h3 {
        font-family: 'futurabold';
        font-size: 25px;
        font-weight: 700;
        line-height: 33.23px;
        text-align: left;
    }

    .nearest-shakeshack-input-group-wrapper {
        display: flex;
        width: 100%;
        align-items: flex-end;
        gap: 20px;
        margin-top: 10px;

        input {
            width: 100%;
            display: block;
            flex: 1;
            max-width: 100%;
        }
    }

    .nearest-shakeshack-input-group {
        width: 100%;
        position: relative;
    }

    .nearest-shakeshack-block-location {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
        margin-bottom: 10px;
        padding: 10px;
        background: white;
        border-radius: 22px;
        position: relative;
        padding-left: 20px;
        padding-right: 20px;
        height: 60px;

        img {
            max-width: 20px;
        }

        svg {
            margin-left: auto;
            margin-right: 10px;
            width: 15px;
            height: 20px;
            transition: all .4s ease;
        }

        &:hover svg {
            margin-right: 0;
        }

    }

    h4.nearest-shakeshack-location-title {
        font-family: 'futurabold';
        font-size: 21px;
        font-weight: 700;
        line-height: 27.91px;
        text-align: center;
        display: inline-flex;
        gap: 10px;
    }

    .nearest-shakeshack-location-title span {
        font-size: 0.6em;
        color: #707070;
    }

    input#nearest-shack-input {
        /* font-family: Futura; */
        font-size: 20px;
        font-weight: 500;
        line-height: 26.56px;
        text-align: left;
        color: #707070;
    }

    button#nearest-shack-button {
        /* font-family: Futura; */
        font-size: 18px;
        font-weight: 700;
        line-height: 18px;
        text-align: center;
    }


}




@media screen and (max-width:767px) {
    section.nearest-shakeshack-block {
        padding-left: 15px;
        padding-right: 15px;

        h3 {
            /* font-family: Futura; */
            font-size: 18px;
            font-weight: 700;
            line-height: 23.92px;
            text-align: left;
        }


        h4.nearest-shakeshack-location-title {
            /* font-family: Futura; */
            font-size: 18px;
            font-weight: 700;
            line-height: 23.92px;
            text-align: center;
            font-size: 1rem;
            display: flex;
            line-height: 1.2;
            flex-direction: column;
            gap: 0;
            span {
                font-size: 10px;
            }

        }


        a.nearest-shakeshack-block-location {
            margin-bottom: 30px;
            margin-top: 20px;
        }

        .nearest-shakeshack-input-group-wrapper {
            margin-top: 0;
        }
    }
}


.pulse-animation {
    animation: pulse-animation 2s;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}