/* Community Level Styles */
:root {
    --specials-banner-bg: var(--secondary-base);
    --specials-banner-bg-alt: var(--secondary-base-alt);
}

/* Ducks banner */
@media only screen and (max-width: 767px) {
    #emergency-services div {
        max-width: 200px !important;
    }
}

#intro_text_section .hpt-impact-text {
    margin-bottom: 0;
}

/* specials banner */
#specials_banner {
    background: var(--specials-banner-bg);
    color: var(--specials-banner-bg-alt);
    padding: 1rem;
    text-align: center;
    width: 100%;
}
#specials_banner a {
    position: relative;
    transition: all 0.4s ease-in-out;
}
#specials_banner a:before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    height: 1px;
    background: var(--specials-banner-bg-alt);
    transform: scaleX(0);
    transform-origin: top left;
    transition: transform 0.4s ease-in-out;
    width: 100%;
}
#specials_banner a:hover {
    opacity: 0.7;
}
#specials_banner a:hover:before {
    transform: scaleX(1);
}

/* global */
strong {
    font-weight: 700;
}

/* neighborhood highlights reorder */
#neighborhood_featured_section .featured-pois .featured-pois-list-container .featured-pois-list {
    display: flex;
    flex-direction: column;
}

#neighborhood_featured_section .featured-pois .featured-pois-list-container .featured-pois-list li:nth-of-type(1) {
    order: 4;
}

#neighborhood_featured_section .featured-pois .featured-pois-list-container .featured-pois-list li:nth-of-type(2) {
    order: 1;
}


#neighborhood_featured_section .featured-pois .featured-pois-list-container .featured-pois-list li:nth-of-type(3) {
    order: 2;
}

#neighborhood_featured_section .featured-pois .featured-pois-list-container .featured-pois-list li:nth-of-type(4) {
    order: 3;
}

#neighborhood_featured_section .featured-pois .featured-pois-list-container .featured-pois-list li:nth-of-type(5) {
    order: 5;
}

/* floorplan */
#fp_app .fp-list {
    justify-content: center;
}