[id^="member-directory-block"] {
    min-width: 100%;
    padding: 30px 15px;

    /* SVG Map View Styles */

    .map-view {
        position: relative;


        .map-view__text-box {
            max-width: 55%;
            position: absolute;
            top: 0%;
            left: 0%;

            h2 {
                margin-bottom: 20px;
            }
        }

        @media (max-width: 1024px) {
            .map-view__text-box {
                max-width: none;
                position: relative;
                margin-bottom: 30px;
            }
        }


        #map-svg {
            width:100%;
            height: auto;
        }
    
        #virginia-svg {
            #virginia-svg__state {
                fill: #399;
            }
    
            #virginia-svg__label {
                opacity: 0;
            }
    
            &:hover {
                cursor: pointer;
    
                #virginia-svg__state {
                    fill: #00b2b1;
                }
    
                #virginia-svg__label {
                    opacity: 100;
                }
            }
        }
        #north-carolina-svg {
            #north-carolina-svg__state {
                fill: #399;
            }
    
            #north-carolina-svg__label {
                opacity: 0;
            }
    
            &:hover {
                cursor: pointer;
    
                #north-carolina-svg__state {
                    fill: #00b2b1;
                }
    
                #north-carolina-svg__label {
                    opacity: 100;
                }
            }
        }
        #tennessee-svg {
            #tennessee-svg__state {
                fill: #399;
            }
    
            #tennessee-svg__label {
                opacity: 0;
            }
    
            &:hover {
                cursor: pointer;
    
                #tennessee-svg__state {
                    fill: #00b2b1;
                }
    
                #tennessee-svg__label {
                    opacity: 100;
                }
            }
        }
        #south-carolina-svg {
            #south-carolina-svg__state {
                fill: #399;
            }
    
            #south-carolina-svg__label {
                opacity: 0;
            }
    
            &:hover {
                cursor: pointer;
    
                #south-carolina-svg__state {
                    fill: #00b2b1;
                }
    
                #south-carolina-svg__label {
                    opacity: 100;
                }
            }
        }
        #georgia-svg {
            #georgia-svg__state {
                fill: #399;
            }
    
            #georgia-svg__label {
                opacity: 0;
            }
    
            &:hover {
                cursor: pointer;
    
                #georgia-svg__state {
                    fill: #00b2b1;
                }
    
                #georgia-svg__label {
                    opacity: 100;
                }
            }
        }
    
        @media (max-width: 768px) {
            #virginia-svg__label, #north-carolina-svg__label, #tennessee-svg__label, #south-carolina-svg__label, #georgia-svg__label {
                display: none;
            }
        }
    
        .uncategorized-locations-button {
            position: absolute;
            border: none;
            bottom: 0;
            right: 0;
            display: flex;
            padding: 10px;
            justify-content: center;
            align-items: center;
            flex-wrap: nowrap;
            gap: 10px;
            background: #399;
    
            &:hover {
                cursor: pointer;
                background: #00B2B1;
            }
    
            p {
                margin: 0;
                color: white !important;
                font-weight: bold !important;
            }
        }
    
        @media (max-width: 768px) {
            .uncategorized-locations-button {
                position: relative;
                width: 100%;
                justify-content: center;
                margin: 30px 0;
            }
        }
    }





    /* Single State View Styles */
.single-state-view {

    .back-button {
        display: flex;
        width: 96px;
        padding: 10px;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        gap: 10px;
        background: #399;
        margin-bottom: 30px;
        border: none !important;

        &:hover {
            cursor: pointer;
            background: #00B2B1;
        }

        p {
            margin: 0;
            color: white !important;
            font-weight: bold !important;
        }
    }

    h2 {
        margin-bottom: 30px;
    }

    .location-grid {
        display: grid;
        grid-template-columns: 1fr;
        column-gap: 40px;
        row-gap: 40px;
        width: 100%;
    }

    @media (min-width: 768px) {
        .location-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 1024px) {
        .location-grid {
            column-gap: 80px;
        }
    }

    .location-grid__column {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    h3 {
        font-family: "Raleway", sans-serif;
        font-size: 24px;
        font-weight: bold;
        margin: 0;
        color: #232E4A;
    }

    .company__wrapper {
        border: 1px solid #399;
    }

    .company-name__wrapper {
        background: #399;
        padding: 10px;
    }

    .company-name {
        color: #fff !important;
        font-weight: bold !important;
        margin: 0;
    }

    .locations-list {
        display: flex;
        flex-direction: column;
        padding: 10px;
        gap: 10px;
    }

    .location-link {
        &:hover .location-name {
            color: #399 !important;
        }
    }

    .location-name {
        font-weight: bold !important;
        color: #000 !important;
        margin: 0;
        line-height: normal;
    }

    .location-address {
        font-style: normal;
        font-family: "Raleway", sans-serif;
        margin: 0;
        color: #58595B;
        line-height: normal;

        .location-address__link {
            font-weight: 400 !important;
            color: #58595B !important;
            line-height: normal;

            &:hover {
                color: #399 !important;
            }
        }
    }
    
    .location-phone {
        margin: 0;
        line-height: normal;

        .location-phone__link {
            font-weight: 400 !important;
            color: #58595B !important;
            line-height: normal;

            &:hover {
                color: #399 !important;
            }
        }
    }


    .location-fax {
        margin: 0;
        line-height: normal;
        
        .location-fax__link {
            font-weight: 400 !important;
            color: #58595B !important;
            line-height: normal;

            &:hover {
                color: #399 !important;
            }
        }
    }
}

}
