/* CITY INFOGRAPHIC */
.img_hotspot_outer .flex_cell {
    padding-bottom: 30px;
}
.img_hotspot {
    position: relative;
}
.img_hotspot #img {
    width: 100%;
}
.img_hotspot #img img {
    width: 100%;
}
.img_hotspot .hotspot_container {
    position: absolute;
}
.img_hotspot .hotspot {
    position: absolute;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    transition: all .5s;
    /*z-index: 2;*/
    border-radius: 50%;
    animation: pulse 2s linear infinite;
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(104, 205, 241, 0.7), 0 0 0 0 rgba(104, 205, 241, 0.7);
    }
    40% {
        box-shadow: 0 0 0 25px rgba(104, 205, 241, 0), 0 0 0 0 rgba(104, 205, 241, 0.7);
    }
    80% {
        box-shadow: 0 0 0 25px rgba(104, 205, 241, 0), 0 0 0 15px rgba(104, 205, 241, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(104, 205, 241, 0), 0 0 0 15px rgba(104, 205, 241, 0);
    }
}
.img_hotspot .hotspot:hover {
    cursor: pointer;
}

.img_hotspot .callout_content {
    position: absolute;
    min-width: 428px;
    opacity: 0;
    transition: all .5s;
    visibility: hidden;
    z-index: 1;
    /*border: 1px solid red;*/
    /*opacity: 1;*/
    /*visibility: visible;*/
}
.img_hotspot .callout_content.show {
    opacity: 1;
    visibility: visible;
}
.img_hotspot .callout_content .line {
    position: absolute;
    background: #68CDF1;
}
.img_hotspot .callout_content.top .line,
.img_hotspot .callout_content.bottom .line {
    left: 50%;
    transform: translateX(-50%);
    height: 75px;
    width: 1.5px;
}
.img_hotspot .callout_content.top .line {
    top: 108px;
}
.img_hotspot .callout_content.bottom .line {
    top: -75px;
}
.img_hotspot .callout_content.left .line,
.img_hotspot .callout_content.right .line {
    top: 50%;
    transform: translateY(-50%);
    height: 1.5px;
    width: 75px;
}
.img_hotspot .callout_content.left .line {
    right: -38px;
}
.img_hotspot .callout_content.right .line {
    left: -60px;
    top: 56px;
}

.img_hotspot .callout_content.top.narrow .line {
    top: 0; /* SET THIS */
}
.img_hotspot .callout_content.bottom.narrow .line {
    top: 0; /* SET THIS */
}
.img_hotspot .callout_content.left.narrow .line {
    right: 0;
}
.img_hotspot .callout_content.right.narrow .line {
    left: 0; /* SET THIS */
}

.img_hotspot .callout_content.left.two_line .line,
.img_hotspot .callout_content.right.two_line .line {
    top: 47px; /* CHECK THIS FOR RIGHT */
}
.img_hotspot .callout_content.top.two_line .line,
.img_hotspot .callout_content.bottom.two_line .line {
    left: 0; /* SET THIS */
}

.img_hotspot .callout_content.top {
    top: -181px;
    left: -195px;
}
.img_hotspot .callout_content.bottom {
    top: 115px;
    left: -195px;
}
.img_hotspot .callout_content.left {
    top: -34px;
    left: -421px;
}
.img_hotspot .callout_content.right {
    top: -37px;
    left: 100px;
}

.img_hotspot .callout_content.narrow.top {
    left: -251px;
}
.img_hotspot .callout_content.narrow.bottom {
    left: -251px;
}
.img_hotspot .callout_content.narrow.left {
    left: -428px;
}
.img_hotspot .callout_content.narrow.right {
    left: 23px;
}

.img_hotspot .callout_content.narrow.top .callout_content_inner {
    position: relative;
    margin-left: 79px;
}
.img_hotspot .callout_content.narrow.bottom  .callout_content_inner {
    position: relative;
    margin-left: 79px;
}
.img_hotspot .callout_content.narrow.left .callout_content_inner {
    position: relative;
    margin-left: 79px;
}
.img_hotspot .callout_content.narrow.right .callout_content_inner {
    position: relative;
    margin-left: 79px;
}

.img_hotspot .callout_content.two_line.top {
    top: -160px; /* CHECK THIS */
}
.img_hotspot .callout_content.two_line.bottom {
    top: 115px; /* CHECK THIS */
}
.img_hotspot .callout_content.two_line.left {
    top: -27px; /* CHECK THIS */
}
.img_hotspot .callout_content.two_line.right {
    top: -27px; /* CHECK THIS */
}

.img_hotspot .callout_content .callout_img {
    position: relative;
    float: left;
    width: 120px;
    top: -10px;
    z-index: 2;
}
.img_hotspot .callout_content .callout_img img {
    width: 100%;
}
.img_hotspot .callout_content .copy {
    position: absolute;
    float: left;
    width: auto;
    min-width: 283px;
    max-width: 330px;
    left: 63px;
    padding: 7px 15px 12px 55px;
    color: #737474;
    box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.12);
    background-color: #FFF;
    border-radius: 15px;
    font-size: 15px;
    z-index: 1;
}
.img_hotspot .callout_content.narrow .copy {
    min-width: 211px;
    max-width: 211px;
}
.img_hotspot .callout_content .copy .inner {
    line-height: 21px;
}
.img_hotspot .callout_content .copy .heading {
    color: #68CDF1;
    font-size: 14px;
    font-weight: bold;
    line-height: 16px;
    margin: 5px 0;
}

.img_hotspot_mobile .cell {
    padding: 15px 0 0 0 !important;
    border-bottom: 1px solid var(--gray2);
}
.img_hotspot_mobile .cell:last-of-type {
    margin-bottom: -60px;
    border-bottom: none;
}
.img_hotspot_mobile .callout_content {
}
.img_hotspot_mobile .callout_content .callout_img {
    position: relative;
    float: left;
    top: -8px;
    width: 80px;
    margin-right: 15px;
}
.img_hotspot_mobile .callout_content .callout_img img {
    width: 100%;
    vertical-align: top;
}
.img_hotspot_mobile .callout_content .copy {
    display: inline-block;
    width: calc(100% - 100px);
}
.img_hotspot_mobile .callout_content .copy .inner {
    line-height: 21px;
    min-height: 48px;
}
.img_hotspot_mobile .callout_content .copy .heading {
    color: #68CDF1;
    font-size: 16px;
    font-weight: bold;
    line-height: 16px;
    margin-bottom: 5px;
}

/* PARTNERSHIP */
.partnership img {
    width: 220px;
    display: block;
    margin: 0 auto;
}
.partnership .heading {
    color: var(--blue-md);
    font-size: 19px;
    font-weight: 400;
    margin-bottom: 5px;
}
.partnership .text {
    margin-bottom: 20px;
}
.partnership .link {
    color: var(--blue-lt);
}
.partnership .link a {
    padding-bottom: 3px;
    margin-right: 7px;
}

/* PROJECT BENEFITS */
.project_benefits {
    width: 75%;
    margin: 0 auto;
}
.project_benefits p {
    margin-top: 0 !important;
}
.project_benefits img {
    display: block;
    margin: 0 auto;
    margin-bottom: 15px;
    width: 40px;
}
.project_benefits .text {
    text-align: center;
    padding: 0 30px;
}
.project_benefits .highlight {
    font-size: 17px;
    font-weight: 400;
    color: var(--blue-md);
}
.project_benefits_heading .flex_cell {
    padding-bottom: 10px;
}
.project_benefits .flex_cell {
    padding-top: 30px;
}

/* PROJECT TIMELINE */
.project_timeline_heading .flex_cell {
    padding-bottom: 20px;
}
.project_timeline .flex_cell {
    display: block;
    padding-top: 10px !important;
    padding-bottom: 20px !important;
}
.project_timeline #table {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.project_timeline #table.bars .row .cell {
    height: 24px
}
.project_timeline .row .cell {
    margin: 5px 0;
}
.project_timeline .row#years .cell {
    float: left;
}
.project_timeline .blue_lt,
.project_timeline_legends .blue_lt {
    background-color: var(--blue-lt);
}
.project_timeline .purple,
.project_timeline_legends .purple {
    background-color: #8A9AF6;
}
.project_timeline .blue_md,
.project_timeline_legends .blue_md {
    background-color: var(--blue-md);
}
.project_timeline .blue_dk,
.project_timeline_legends .blue_dk {
    background-color: var(--blue-dk);
}
.project_timeline .yellow,
.project_timeline_legends .yellow {
    background-color: #FEE24E;
}
.project_timeline .green,
.project_timeline_legends .green {
    background-color: var(--green-bright);
}
.project_timeline .orange,
.project_timeline_legends .orange {
    background-color: #FFBD76;
}
.project_timeline .bar.blue_lt {
    width: 23%;
}
.project_timeline .bar.purple {
    width: 43%;
}
.project_timeline .bar.blue_md {
    width: 65%;
    margin-left: 3%
}
.project_timeline .bar.blue_dk {
    width: 15%;
    margin-left: 3%
}
.project_timeline .bar.yellow {
    width: 35%;
    margin-left: 8%
}
.project_timeline .bar.green {
    width: 71%;
    margin-left: 23%
}
.project_timeline .bar.orange {
    background-color: #FFBD76;
    width: 40%;
    margin-left: 47%
}
.project_timeline .cell.year {
    width: 33.3%;
    text-align: center;
    border-top: 1px solid var(--gray3);
    color: var(--gray4);
    margin-top: 15px;
}
.project_timeline #years .year:first-of-type {
    text-align: left;
}
.project_timeline #years .year:last-of-type {
    text-align: right;
}
.project_timeline_legends .flex_cell {
    padding-top: 0;
}
.project_timeline_legends .legend {
    font-size: 13px;
    font-weight: 400;
    line-height: 17px;
    margin: 20px 0;
    padding: 0 30px 0 0;
    clear: both;
}
.project_timeline_legends .blank .legend {
    margin: 0;
    height: 0;
}
.project_timeline_legends #legends {
    margin-top: 30px;
}
.project_timeline_legends .legend .color_cube {
    display: inline-block;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    vertical-align: top;
    margin-top: 2px;
}
.project_timeline_legends .legend .text {
    display: inline-block;
    width: calc(100% - 35px);
}
.project_timeline_legends .legend .title {
    color: var(--blue-dk);
    font-weight: 500;
}
.project_timeline_legends .legend .dates {
    color: var(--blue-lt);
}

/* TESTIMONIAL */
.testimonial img {
    width: 130px;
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
}
.testimonial .name {
    text-align: center;
    font-weight: 400;
    color: var(--blue-md);
}
.testimonial .title {
    text-align: center;
    font-weight: 400;
    color: var(--gray3);
}
.testimonial .right #inner {
    font-size: 19px;
    line-height: 30px;
}
.testimonial .right #inner p {
    display: inline-block;
    vertical-align: top;
}
.testimonial .right #inner img {
    display: inline-block;
    width: 23px;
    margin-right: 15px;
    vertical-align: top;
}
.testimonial .right #inner #text {
    display: inline-block;
    width: calc(100% - 55px);
}

/* CITY RESOURCES */
.city_resources {
    font-size: 18px;
    font-weight: 400;
    color: var(--gray3);
}

/* LATEST UPDATES */
.latest_updates {
    font-size: 18px;
    color: var(--gray3);
}
.latest_updates ul {
    padding: 0;
    margin-left: -20px;
}
.latest_updates ul li {
    margin-bottom: 35px;
    padding: 0px 0px 0px 45px;
    list-style: none;
    font-size: 18px;
    background: url('/wp-content/uploads/icon-latest-news.svg');
    background-repeat: no-repeat;
    background-size: 30px;
    min-height: 30px;
}

/* SIGN UP FOR NEWSLETTER */
.newsletter {
    font-weight: 400;
    color: var(--gray3);
}
.newsletter .right p {
    height: 0;
}

/* CONSTANT CONTACT FORM */
div.ctct-form-embed form.ctct-form-custom div.ctct-form-field {
    width: 100%;
    margin: 0 !important;
}
div.ctct-form-embed form.ctct-form-custom input.ctct-form-element {
    padding: 10px 15px !important;
    border: 1px solid #b0b6bb !important;
    box-shadow: inset 0 1px 2px rgb(0 0 0 / 10%) !important;
    border-radius: 3px !important;
}

.ctct-form-embed.form_3 .ctct-form-defaults {
    background-color: transparent !important;
    padding: 0;
}
.ctct-form-embed.form_3 .ctct-form-defaults #ctct_recaptcha_3 {
    display: none;
}
.ctct-form-embed.form_3 .ctct-form-custom .ctct-form-button {
    margin-top: 30px !important;
}
.ctct-form-embed.form_3 .ctct-form-defaults .ctct-form-header {
    font-weight: 400;
    font-size: 20px !important;
}
.ctct-form-embed.form_3 .ctct-form-defaults .ctct-form-text {
    font-size: 15px !important;
}
/*div.ctct-form-embed form.ctct-form-custom {*/
/*    display: box;*/
/*    box-orient: vertical;*/
/*}*/
div.ctct-form-embed form.ctct-form-custom div.ctct-form-field#first_name_field_3 {
    position: relative;
    display: inline-block;
    width: calc(50% - 10px);
    margin-right: 5px;
}
div.ctct-form-embed form.ctct-form-custom div.ctct-form-field#last_name_field_3 {
    position: relative;
    display: inline-block;
    width: calc(50% - 5px);
    margin-left: 5px;
}
div.ctct-form-embed form.ctct-form-custom div.ctct-form-field#email_address_field_3 {
    position: relative;
    top: -10px;
    width: 100%;
}
div.ctct-form-embed form.ctct-form-custom div.ctct-form-field#email_address_field_3 label {
    left: 10px;
}
div.ctct-form-embed form.ctct-form-custom {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: stretch;
    align-items: stretch;
}
div.ctct-form-embed form.ctct-form-custom div.ctct-form-field#first_name_field_3 {
    order: 1;
}
div.ctct-form-embed form.ctct-form-custom div.ctct-form-field#last_name_field_3 {
    order: 2;
}
div.ctct-form-embed form.ctct-form-custom div.ctct-form-field#email_address_field_3 {
    order: 3;
}
div.ctct-form-embed form.ctct-form-custom div#gdpr_text {
    order: 4;
}
div.ctct-form-embed form.ctct-form-custom button.ctct-form-button {
    order: 5;
}
div.ctct-form-embed form.ctct-form-custom div#gdpr_text {
    position: relative;
    margin-top: -40px;
}
div.ctct-form-embed form.ctct-form-custom button.ctct-form-button {
    position: relative;
    margin-top: 40px;
}
div.ctct-form-embed div.ctct-form-defaults p.ctct-form-footer {
    padding: 0 !important;
    margin: 0 !important;
}

/* WHAT CAN RESIDENTS DO */
.what_can_residents_do_copy .flex_cell  {
    padding-bottom: 40px;
}
.what_can_residents_do .flex_cell {
    display: inline-block;
    padding-top: 0;
    padding-right: 0;
    padding-left: 20px;
}
.what_can_residents_do .flex_cell:first-of-type {
    padding-left: 0;
}
.what_can_residents_do .container {
    background-color: var(--white);
    padding: 20px 20px;
    max-width: none;
    border-radius: 15px;
    border: 1px solid transparent;
}
.what_can_residents_do .container:hover {
    border: 1px solid var(--blue-md);
}
.what_can_residents_do.blank .container {
    background-color: transparent;
    padding: 0;
}
.what_can_residents_do img {
    width: 25px;
    margin-bottom: 15px;
    margin-top: -25px;
}
.what_can_residents_do a {
    font-weight: 400;
    text-decoration: none !important;
    width: 100%;
    height: 100%;
    display: block;
}
.what_can_residents_do a:hover {
    text-decoration: none;
}

/* CONSERVATION MEASURES */
.conservation_measures p {
    margin-top: 0 !important;
}
.conservation_measures .flex_cell {
    padding-top: 0;
    display: inline-block;
}
.conservation_measures.top .flex_cell {
    padding-bottom: 30px;
}
.conservation_measures img {
    width: 30px;
    margin-bottom: 15px;
}

/* PHOTO SLIDER */
.photo_slider_outer .flex_cell {
    display: block;
    padding-top: 0px;
}

/* PRIVACY, COOKIE NOTICE, CA PRIVACY */
#cookie-notice .indented,
#privacy .indented,
#privacy-ca .indented {
    padding-left: 30px !important;
}
#cookie-notice .av_textblock_section ul,
#privacy .av_textblock_section ul,
#privacy-ca .av_textblock_section ul {
    margin: 15px 0 30px 0 !important;
}

#cookie-notice .av_textblock_section ol,
#privacy .av_textblock_section ol,
#privacy-ca .av_textblock_section ol {
    margin: 15px 0 -15px 15px !important;
}
#cookie-notice .av_textblock_section ul,
#privacy .av_textblock_section ul,
#privacy-ca .av_textblock_section tr ul {
    list-style: disc;
    list-style-image: none !important;
}
#cookie-notice .main_color tr:nth-child(even),
#privacy .main_color tr:nth-child(even),
#privacy-ca .main_color tr:nth-child(even) {
    color: var(--black);
}
#cookie-notice .main_color table,
#privacy .main_color table,
#privacy-ca .main_color table {
    margin-top: 20px;
}

@media only screen and (max-width: 1360px) {
    /* CONSTANT CONTACT FORM */
    div.ctct-form-embed form.ctct-form-custom button.ctct-form-button {
        margin-top: 60px;
    }
}
@media only screen and (max-width: 1300px) {
    /* PROJECT BENEFITS */
    .project_benefits .flex_cell {
        width: 85%;
    }
}
@media only screen and (max-width: 900px) {
    /* CONSTANT CONTACT FORM */
    div.ctct-form-embed form.ctct-form-custom div#gdpr_text {
        min-height: 73px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 989px) {
    .what_can_residents_do .flex_cell:nth-child(1),
    .what_can_residents_do .flex_cell:nth-child(2) {
        padding-bottom: 20px;
    }
    .what_can_residents_do .flex_cell.av_one_fourth:nth-child(3) {
        padding-left: 0;
    }
    .what_can_residents_do .flex_cell:nth-child(even) {
        padding-right: 0;
    }
}
@media only screen and (max-width: 767px) {
    /* PARTNERSHIP */
    .partnership_copy .flex_cell {
        padding-top: 60px !important;
    }
    .partnership {
        padding-top: 0 !important;
        padding-bottom: 30px !important;
    }
    .partnership:last-of-type {
        padding-bottom: 60px !important;
    }
    .partnership img {
        width: 300px;
    }
    .partnership .flex_cell {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    /* PROJECT BENEFITS */
    .project_benefits_heading .flex_cell {
        padding-bottom: 30px;
    }
    .project_benefits .flex_cell {
        margin: 0 auto !important;
        width: 60% !important;
        padding-top: 0;
    }

    /* PROJECT TIMELINE */
    .project_timeline .flex_cell {
        padding-top: 0;
    }
    .project_timeline_legends .flex_cell {
        padding-bottom: 0;
    }
    .project_timeline_legends .legend {
        margin: 0 0 20px 0;
    }
    .project_timeline_legends .flex_cell:last-of-type .legend:nth-child(1) {
        margin: 0 0 60px 0;
    }
    .project_timeline_legends .flex_cell:last-of-type .legend:nth-child(2),
    .project_timeline_legends .flex_cell:last-of-type .legend:nth-child(3) {
        display: none;
    }

    /* TESTIMONIAL */
    .testimonial .flex_cell {
        padding-bottom: 30px !important;
    }
    .testimonial .flex_cell:last-of-type {
        padding-top: 30px !important;
        padding-bottom: 60px !important;
    }

    /* LATEST UPDATES */
    .latest_updates {
        padding-top: 0;
        padding-bottom: 30px;
    }

    /* SIGN UP FOR NEWSLETTER */
    .newsletter .flex_cell.form_right {
        padding-top: 30px;
    }
    .newsletter .flex_cell {
        padding-bottom: 0;
    }
    .newsletter .flex_cell:last-of-type {
        padding-top: 30px !important;
        padding-bottom: 60px !important;
    }
    #newsletter_left {
        position: relative;
        top: auto;
        transform: none;
        margin-bottom: 20px;
    }

    /* CONSERVATION MEASURES */
    .conservation_measures.top {
        padding-bottom: 0 !important;
    }
    .conservation_measures {
        padding-top: 0px !important;
        padding-bottom: 30px !important;
    }
    .conservation_measures .flex_cell {
        padding-bottom: 30px !important;
    }
    .conservation_measures .flex_cell.empty {
        display: none !important;
    }

    /* WHAT CAN RESIDENTS DO */
    .what_can_residents_do_top {
        padding-bottom: 30px !important;
    }
    .what_can_residents_do {
        padding-top: 0px !important;
        padding-bottom: 30px !important;
    }
    .what_can_residents_do:last-of-type {
        padding-bottom: 60px !important;
    }
    .what_can_residents_do .flex_cell {
        padding-bottom: 20px;
    }

    /* CONSTANT CONTACT FORM */
    div.ctct-form-embed form.ctct-form-custom button.ctct-form-button {
        margin-top: 40px;
    }
}
@media only screen and (max-width: 768px) {
    .responsive #top #wrap_all .av-flex-cells.what_can_residents_do .no_margin {
        padding-right: 20px !important;
    }
    .responsive #top #wrap_all .av-flex-cells.what_can_residents_do .no_margin.av_one_fourth:nth-child(even) {
        padding-right: 0 !important;
    }
}
@media only screen and (max-width: 767.9px) {
    .responsive #top #wrap_all .av-flex-cells.what_can_residents_do .no_margin {
        display: block !important;
        width: 100% !important;
    }
    .responsive #top #wrap_all .av-flex-cells.what_can_residents_do .no_margin.av_one_fourth:nth-child(odd) {
        padding-right: 0 !important;
    }
}

@media only screen and (max-width: 550px) {
    /* PROJECT BENEFITS */
    .project_benefits .flex_cell {
        width: 100% !important;
    }
}