.store_locator {
    width: 100%;
    background: var(--white);

    & .container {
        width: 100%;
        padding-top: 100px;

        @media (max-width: 991px) {
            padding-top: 50px;
        }

        & .section_inner {
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            & h2 {
                font-size: 5rem;
                font-weight: 400;

                @media (max-width: 991px) {
                    font-size: 3rem;
                    text-align: center;
                    margin: 0 0 3rem;
                }
            }

            & .store-search {
                width: 73rem;
                max-width: 100%;
                margin: 0 auto;
                position: relative;

                & #searchInput {
                    width:100%;
                    padding:18px 24px;
                    border-radius:40px;
                    border:2px solid #623A2D;
                    font-size:17px;
                    background:#F8D2B3;
                    position: relative;
                    z-index: 2;
                }

                & .suggestion-list {
                    display: none;
                    flex-direction:column;
                    position: absolute;
                    top: calc(100% + 6px);
                    width: 100%;
                    background: #fff;
                    border: 2px solid #623A2D;
                    border-radius: 2rem;
                    box-shadow: 0 8px 20px rgba(0,0,0,.12);
                    z-index: 10;
                    overflow: hidden;
                    
                    &.active {
                        display: flex;
                    }

                    & .suggestion-item {
                        display: flex;
                        flex-direction: row;
                        justify-content: space-between;
                        flex-wrap: wrap;
                        background: none;
                        border: none;
                        border-radius: 0;
                        padding: 2rem;
                        border-bottom: 1px solid #eee;
                        text-decoration: none;
                        transition: background .3s ease;

                        &:hover {
                            background: #F8D2B3;
                        }

                        &:last-child {
                            border-bottom: none;
                        }

                        & .title {
                            width: 100%;
                            font-weight: 700;
                            margin: 0 0 1rem;
                        }

                        & .address {
                            width: 75%;
                        }

                        & .suggestion-distance {
                            width: 25%;
                            text-align: right;
                        }
                    }
                }
            }

            & .popular-locations {
                width: 100%;
                text-align: center;

                @media (min-width: 992px) {
                    margin-top: 3rem;
                }

                & .popular-title {
                    font-size: 2rem;
                    font-weight: 700;
                    margin: 3rem 0;
                }

                & .popular-list {
                    width: 100%;

                    @media (min-width: 992px) {
                        display: flex;
                        flex-wrap: wrap;
                        gap: 2rem;
                        justify-content: center;
                    }

                    & .popular_location_outer {
                        display: flex;
                        flex-direction: column;
                        align-items: center;

                        &>a {
                            font-size: 1.8rem;
                            font-weight: 700;
                            padding: 1.1rem 1.8rem;
                            border-radius: 1rem;
                            background: var(--primary);
                            color: var(--white);
                            text-decoration: none;

                            @media (max-width: 991px) {
                                width: 95% !important;
                                font-size: 1.6rem;
                            }
                        }

                        & span.distance {
                            display: block;
                            margin: 1rem 0 0;
                            color: #F1722E;
                            text-align: center;
                            font-size: 1.4rem;
                            font-weight: 400;
                        }
                    }
                }
            }
        }
    }

    &.store_locator--permanently-closed .container {
        padding-bottom: 100px;
    }
}