.map-text {
    position: relative;
}

.map-text-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
}

.map-text__map {
    max-width: 330px;
    margin: 50px auto 0;
}

.map-zip-code-search {
    position: relative;
    width: 330px;
    height: 51px;
    border-radius: 6px;
    border: 2px solid #0071CE;
    margin: 35px auto 0;
}

.map-zip-code-search input {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    padding: 5px 50px 5px 20px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5em;
    color: var(--dark-blue);
    border: none;
    background: transparent;
}

.map-zip-code-search input::placeholder {
    color: var(--dark-blue);
    opacity: 1;
}

.map-zip-code-search button {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0, -50%);
    width: auto;
    height: auto;
    border-radius: 0;
    padding: 0;
    font-size: 19px;
    font-weight: normal;
    line-height: 1em;
    color: var(--dark-blue);
    border: none;
    background: transparent;
}


@media (min-width: 768px) {
    .map-text__map {
        max-width: 664px;
        margin: 45px auto 0;
    }
}

@media (min-width: 1200px) {
    .map-text__wrapper {
        max-width: 1025px;
        margin: 0 auto;
    }

    .map-text__map {
        max-width: 100%;
        margin: 40px 0 0;
    }

    .map-text__top-content .btn-group {
        margin-top: 30px;
    }
}




.map-text__map {
    #wpcm_zip {
        display: none;
    }

    #map {
        svg path,
        svg rect {
            fill: url(#linear-gradient-fill);
            transition: fill 0.3s ease-in-out;
        }

        svg path:hover,
        svg rect:hover {
            fill: url(#linear-gradient-active);
        }

        svg path[fill="#cccccc"] {
            fill-opacity: 0.7 !important;
            pointer-events: none !important;
        }
    }

    #map_access {
        display: none !important;
    }

    [class*="sm_label_"] tspan {
        pointer-events: none;
    }
}