#wpsl-wrap {

    /* Disable map */
    #wpsl-gmap {
        display: none;
    }

    /* Search Bar */

    .wpsl-search {
        background-color: white;
        border-radius: 12px;
        margin: 0;
        margin-bottom: 48px;
        padding: 20px;
    }

    #wpsl-search-wrap form {
        display: flex;
        gap: 16px;
    }

    @media (max-width: 1024px) {
        #wpsl-search-wrap form {
            flex-direction: column;
        }
    }

    
    .wpsl-input {
        margin: 0;
        width: 100%;
        display: flex;
        align-items: center;
        #wpsl-search-input {
            width: 100%;
            background: transparent;
        }
    }

    .wpsl-select-wrap  {
        margin: 0;
        #wpsl-radius {
            margin: 0;
            display: flex;
            align-items: center;
        }
    }  

    @media (max-width: 640px) {
        .wpsl-input > div:first-child {
            width: 50% !important;
        }
    }

    @media (max-width: 640px) {
        #wpsl-radius {
            width: 100% !important;
        }
    }

    @media (max-width: 640px) {
        #wpsl-radius label {
            width: 50% !important;
        }
    }


    .wpsl-search-btn-wrap {
        margin: 0;
    }

    #wpsl-search-btn {
        justify-items: left;
        border: 2px solid #650C6F;
        color: #650C6F;
        background: transparent;
        padding: 0.5rem 1.25rem;
        font-weight: bold;
        border-radius: 9999px;
        text-align: center;
        transition: all 0.3s ease;
        width: fit-content;
        margin-top: auto;
    }

    #wpsl-search-btn:hover {
        background: #650C6F;
        color: #ffffff;
    }

    #wpsl-search-wrap form {
        wpsl-select-wrap {
            margin-left: auto !important;
        }
    }

    /* Results */

    #wpsl-result-list {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    #wpsl-stores {
        height: 100% !important;
    }

    #wpsl-stores ul {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    #wpsl-stores li {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        border-radius: 12px;
        background-color: white;
        padding: 32px !important;
    }


    .wpsl-store-location {
        font-family: 'Opensans', sans-serif;
        font-size: 16px;
        line-height: 24px;
        strong {
            display: block;
            font-weight: 700;
            font-size: 30px;
            line-height: 36px;
            font-family: 'Fredoka', sans-serif;
            padding-bottom: 32px;
            color: #650C6F;
        }
        .wpsl-contact-details {
            span {
                display: flex !important;
                font-weight: 700;
                font-family: 'Opensans', sans-serif;
                font-size: 16px;
                line-height: 24px;
                padding-bottom: 0;
                transition: all 0.3s ease;
                color: black;
                strong {
                    color: black;
                    display: block;
                    font-weight: 700;
                    font-family: 'Opensans', sans-serif;
                    font-size: 16px;
                    line-height: 24px;
                    padding-bottom: 0;
                }
                a {
                    margin-left: 4px;
                    color: black;
                    display: block;
                    font-weight: 700;
                    font-family: 'Opensans', sans-serif;
                    font-size: 16px;
                    line-height: 24px;
                    padding-bottom: 0;
                }
            }
            span:hover {
                
                text-decoration: underline;
            }
        }
    }
}