@import url("../left-nav/left_nav.css");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ============ END IMPORTS =========================================================================
===================================================================================================*/


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat';
}

.forMobileOnly {}

@media (min-width: 768px) {
    .forMobileOnly {
        display: none;
    }
}

@media (max-width: 767px) {
    .forMobileOnly {
        display: block;
    }
}

.main-wrap {
    /* width: 100%; */
    height: 100%;
    display: flex;
}

@media (max-width: 767px) {
    .main-wrap {
        margin-top: 75px;
        flex-wrap: wrap;
    }
}

.outer-wrap {
    width: calc(100% - 0px);
    height: calc(100% - 0px);
    margin-top: 0px;
    margin-left: 0px;
    position: absolute;
    display: flex;
    background-color: #fff;
    left: 0px;
    top: 0px;
    z-index: 10;
    -webkit-box-pack: center;
}

@media (max-width: 767px) {
    .outer-wrap {
        position: relative;
        height: auto;

    }
}

.inner-wrap {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: flex-start;
    justify-content: center;
}

@media (max-width: 767px) {
    .inner-wrap {
        display: block;
        overflow: hidden;
    }
}

.inner-container {
    width: 100%;
    transform-origin: 0px 0px;
    position: relative;
    height: 100%;
    background-color: #0a1115;
    left: 0px;
    top: 0px;
    display: flex;
    transition: height 0.4s;
    align-items: flex-start;
}

@media (max-width: 767px) {
    .inner-container {
        width: 140%;
        left: -20%;
    }

    .home .inner-container {
        width: 150%;
        left: -30%;
    }
}

.map-figure {
    margin-bottom: 0px;
    pointer-events: none;
}

.img-map {
    position: relative;
    height: 100%;
    width: 100%;
    z-index: 2;
}

.img-map-overlay {
    position: absolute;
    width: 100%;
    z-index: 3;
    opacity: 0.6;
}

.svg-overlay {
    position: absolute;
    z-index: 10;
}

/* For the hover over precincts on home page */

.homePrecincts {
    transition: 0.2s ease;
}

.homePrecincts.orange:hover {
    fill: #ff6a45e1;
}

.homePrecincts.bright-green:hover {
    fill: rgba(85, 255, 69, 0.947);
}

.homePrecincts.red:hover {
    fill: #ff6a45b0;
}

.homePrecincts.pink:hover {
    fill: #ff069bee;
}

.homePrecincts.purple:hover {
    fill: #910585eb;
}

.homePrecincts.yellow:hover {
    fill: #ffeb3aed;
}

.homePrecincts.blue:hover {
    fill: #004cffef;
}

.homePrecincts.lightBlue:hover {
    fill: #01ffffef;
}

.homePrecincts.green:hover {
    fill: #55cd0aed;
}

/* ============ LENGEND =============================================================================
====================================================================================================*/

/* === defaults ==== */
.rightPopOut {
    position: fixed;
    width: 190px;
    bottom: 20px;
    padding: 18px 20px;
    z-index: 120;
    background-color: rgb(255 255 255);
    transition: all 0.4s;
    right: -190px;
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
}

.rightPopOut.active {
    right: 0px;
}

@media (max-width: 767px) {

    .rightPopOut.active,
    .rightPopOut {
        position: relative;
        top: -140px;
        right: auto;
        width: 100%;
        min-height: 150px;
        max-height: 100%;
        overflow: hidden;
        border-bottom-left-radius: 0px;
        border-top-left-radius: 0px;
        z-index: 20;
    }

    .home .rightPopOut.active,
    .rightPopOut {
        top: -160px;
        height: 320px;
        z-index: 20;
    }
}


.rightPopOut .minimizeBtn {
    position: absolute;
    left: -14px;
    top: 20px;
    width: 14px;
    padding: 0px;
    border: 0px;
    background-color: #fff;
}

.rightPopOut .minimizeBtn figure {
    position: relative;
    transform: rotate(180deg);
    transition: transform 0.4s;
    margin-bottom: 0px;
    left: 1px;
}

.rightPopOut.active .minimizeBtn figure {
    transform: rotate(0deg);
    left: -1px;
}

.rightPopOut .minimizeBtn figure img {
    position: relative;
    width: 16px;
}

.rightPopOut .rightPopOutInner {
    position: relative;
    opacity: 0;
    transition: all 0.4s;
    /* overflow-y: scroll; */
    height: 100%;
    /* overflow-x: hidden; */
}

@media (max-width: 767px) {
    .rightPopOut .rightPopOutInner {
        opacity: 1;
    }
}

.rightPopOut .rightPopOutInner .stepsContainer.active {
    position: relative;
    right: 0px;
    opacity: 1;
    z-index: 200;
}

.rightPopOut .rightPopOutInner .stepsContainer {
    position: absolute;
    top: 0px;
    right: -250px;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: right 0.4s, opacity 0.4s;
}

@media (max-width: 767px) {
    .rightPopOut .rightPopOutInner .stepsContainer {
        right: -101%;
    }
}


.rightPopOut .rightPopOutInner .stepsContainer.rightPopStep1 {
    padding: 0px 20px;
}

.rightPopOut .rightPopOutInner .stepsContainer .contentStepsInnerWrap {
    position: relative;
    overflow-y: scroll;
    height: calc(100% - 30px);
    overflow-x: hidden;
    margin-top: 18px;
    padding-right: 20px;
    padding-left: 20px;
}

@media (max-width: 767px) {
    .rightPopOut .rightPopOutInner .stepsContainer .contentStepsInnerWrap {
        overflow-y: auto;
        overflow-x: hidden;
        height: auto;
    }
}

@media (max-width: 767px) {
    .contentStepsInnerWrap .individualImg {
        display: block;
        width: 100%;
    }
}

/* width */
.rightPopOut .rightPopOutInner .stepsContainer .contentStepsInnerWrap::-webkit-scrollbar {
    width: 8px;
}

/* Track */
.rightPopOut .rightPopOutInner .stepsContainer .contentStepsInnerWrap::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

/* Handle */
.rightPopOut .rightPopOutInner .stepsContainer .contentStepsInnerWrap::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
.rightPopOut .rightPopOutInner .stepsContainer .contentStepsInnerWrap::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.rightPopOut.active .rightPopOutInner {
    opacity: 1;
}

.rightPopOut .rightPopOutInner h3 {
    position: relative;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 2px;
}

.rightPopOut .rightPopOutInner .step3SubSection-Li h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.rightPopOut .rightPopOutInner .step3SubSection-Li>h4,
.rightPopOut .rightPopOutInner .stepsContainer ul>h4,
.rightPopOut .rightPopOutInner .stepsContainer>h4 {
    position: relative;
    font-size: 11px;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
    font-style: italic;
}

@media (max-width: 767px) {
    .rightPopOut .rightPopOutInner h3 {
        font-size: 14px;
    }
}

.rightPopOut .rightPopOutInner ul {
    position: relative;
    padding-left: 0px;
    margin-bottom: 0px;
    margin-top: 15px;
}

.rightPopOut .rightPopOutInner .rightPopStep2 ul {
    padding-left: 0px;
}

.rightPopOut .rightPopOutInner .rightPopStep2 ul li.rightPopOutList .opportListBtn {
    padding-left: 2px;
    font-weight: 400;
    transition: all 0.4s;
}

.rightPopOut .rightPopOutInner .rightPopStep2 ul li.rightPopOutList .opportListBtn:hover {
    text-decoration: underline;
}

.rightPopOut .rightPopOutInner .rightPopStep2 ul li.rightPopOutList .opportListBtn::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #000;
    position: relative;
    margin-right: 10px;
}

.rightPopOut .rightPopOutInner .rightPopStep3 ul.sub-section-items {
    position: relative;
    padding-left: 3px;
    margin-bottom: 20px;
}

.rightPopOut .rightPopOutInner .rightPopStep3 ul.sub-section-items li {
    position: relative;
    margin-bottom: 4px;
    list-style-type: none;
}

.rightPopOut .rightPopOutInner .rightPopStep3 ul.sub-section-items li button {
    position: relative;
    background-color: transparent;
    border: 0px;
    text-transform: capitalize;
    display: flex;
    font-weight: 500;
    align-items: center;
    font-size: 13px;
    justify-content: flex-start;
    transition: all 0.4s;
}

.rightPopOut .rightPopOutInner .rightPopStep3 ul.sub-section-items li button:hover {
    text-decoration: underline;
}

.rightPopOut .rightPopOutInner .rightPopStep3 ul.sub-section-items li button::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #000;
    position: relative;
    display: block;
    margin-right: 10px;
}

.rightPopOut .rightPopOutInner h2 {
    position: relative;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 2px;
    margin-top: 15px;
}


.rightPopOut .rightPopOutInner #individualContentAlt,
.rightPopOut .rightPopOutInner #individualContent {
    position: relative;
    font-size: 13px;
    margin-top: 10px;
    margin-bottom: 15px;
}



.rightPopOut .rightPopOutInner .stepsContainer figure {
    margin: 0px;
    position: relative;
    height: 140px;
    /* z-index: 200; */
}


.rightPopOut .rightPopOutInner figure img {
    position: relative;
    width: calc(100% - 0px);
    height: 140%;
    border-radius: 4px;
    object-fit: cover;
    /* z-index: 10000; */
}
@media (max-width: 767px) {
    .rightPopOut .rightPopOutInner figure img {
            height: 100%;
        }
}

.rightPopOut .rightPopOutInner ul li.step3SubSection-Li p {
    font-size: 13px;
}


.rightPopOut .rightPopOutInner ul li.step3SubSection-Li,
.rightPopOut .rightPopOutInner ul.sub-sect-of-opport,
.rightPopOut .rightPopOutInner ul.subSect-Step2 {
    display: none;
}

.rightPopOut .rightPopOutInner ul li.step3SubSection-Li.active,
.rightPopOut .rightPopOutInner ul.sub-sect-of-opport.active,
.rightPopOut .rightPopOutInner ul.subSect-Step2.active {
    display: block;
}

.rightPopOut .rightPopOutInner ul li.rightPopOutList {
    position: relative;
    list-style-type: none;
    display: flex;
    align-items: center;
    margin-bottom: 3px;
}

.rightPopOut .rightPopOutInner .rightPopStep1 ul li.rightPopOutList {
    margin-bottom: 6px;
}

.rightPopOut .rightPopOutInner ul li.rightPopOutList span {
    position: relative;
    display: block;
    width: 12px;
    border: 1px solid #000;
    height: 12px;
    margin-right: 10px;
    border-radius: 50%;
}

@media (max-width: 767px) {
    .rightPopOut .rightPopOutInner ul li.rightPopOutList span {
        width: 8px;
        height: 8px;
        margin-right: 8px;
    }
}

.rightPopOut .rightPopOutInner .rtNavBtn {
    position: relative;
    background-color: #a6ce3a;
    padding: 2px 10px 2px 0px;
    border: 0px;
    color: #fff;
    font-weight: 500;
    font-style: italic;
    font-size: 12px;
    border-radius: 4px;
    width: calc(100% - 40px);
    margin: 0px 20px;
}

.rightPopOut .rightPopOutInner .rtNavBtn.dontShow {
    display: none;
}

.rightPopOut .rightPopOutInner .rtNavBtn.showNow {
    display: block;
}

/*=== end defaults === */

.OpportunitiesNav {
    top: 100px;
    width: 430px;
    padding: 18px 0px;
    right: -430px;
    height: calc(100% - 120px);
}

@media screen and (max-width: 1024px) {
    .OpportunitiesNav {
        width: 280px;
        right: -280px;
    }
}

.OpportunitiesNav .opportListBtn {
    position: relative;
    display: flex;
    align-items: center;
    border: 0px;
    background-color: transparent;
    width: 100%;
}

.OpportunitiesNav .opportListBtn span {
    position: relative;
}

.OpportunitiesNav .opportListBtn h4 {
    position: relative;
    margin-bottom: 0px;
    font-size: 14px;
    text-transform: capitalize;
}

.OpportunitiesNav .opportListBtn#opportunitiesTitle-special h4,
.OpportunitiesNav .opportListBtn#opportunitiesTitle-parks-open-space h4 {
    font-style: italic;
    font-weight: 400;
    font-size: 13px;
}



/* ======== for the legend ============*/
.legendWrap .rightPopOutInner ul li.rightPopOutList.northListLegend span {
    background-color: rgb(24 56 145 / 79%);
}

.legendWrap .rightPopOutInner ul li.rightPopOutList.westListLegend span {
    background-color: rgb(220 65 159 / 88%);
}

.legendWrap .rightPopOutInner ul li.rightPopOutList.eastListLegend span {
    background-color: rgb(99 187 59 / 71%);
}

.legendWrap .rightPopOutInner ul li.rightPopOutList.sixListLegend span {
    background-color: rgb(49 246 244 / 78%);
}

.legendWrap .rightPopOutInner ul li.rightPopOutList.centerListLegend span {
    background-color: rgb(245 255 33 / 85%);
}

.legendWrap .rightPopOutInner ul li.rightPopOutList.oneListLegend span {
    background-color: rgb(240 88 35 / 76%);
}

.legendWrap .rightPopOutInner ul li.rightPopOutList h4 {
    position: relative;
    margin: 0px;
    font-size: 12px;
    letter-spacing: 0.06em;
}

@media (max-width: 767px) {
    .legendWrap .rightPopOutInner ul li.rightPopOutList h4 {
        font-size: 11px;
    }
}

/* ============ ROAD SVGS ===========================================================================
====================================================================================================*/

/* === defaults =====================*/
.roadSvg .paths {
    fill: none;
    stroke: #fff;
    stroke-width: 7px;
    /* stroke-dasharray: 0, 20; */
    /* stroke-linecap: round; */
}

.roadSvg .mask {
    fill: none;
    stroke: white;
    stroke-width: 10px;
    pointer-events: none;
}

.roadSvg .svgPoints {
    pointer-events: none;
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

.roadSvg .maskGeneral {
    opacity: 0;
    stroke-dashoffset: 0;
}

.roadSvg .maskGeneral.onload {
    opacity: 1;
}

.roadSvg {
    fill: transparent;
    stroke: #000;
    stroke-width: 0px;
}

/* R21 Roads SVG's ===========================*/
#roadR21-mask .mask {
    stroke-dasharray: 2470;
    animation: roadR21-mask 0.85s linear forwards;
}

#roadR21-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 2470;
    stroke-width: 10px;
}

.roadSvg .paths.roadR21 {
    stroke-dasharray: 0, 22;
    stroke-linecap: round;
    stroke-width: 17px;
    stroke: yellow;
}

@keyframes roadR21-mask {
    to {
        stroke-dashoffset: 2470;
    }
}

/* Street paths default ===========================*/
.roadSvg.streetPath .paths {
    stroke-dasharray: 0, 11;
    stroke-linecap: round;
    stroke-width: 7px;
    stroke: white;
}

.streetPath .maskGeneral {
    animation: roadVeldSt-mask 0.85s linear forwards;
}

.streetPath .maskGeneral.active {
    stroke-width: 7px;
}

.roadSvg.highwayPath .paths {
    stroke-dasharray: 0, 11;
    stroke-linecap: round;
    stroke-width: 11px;
    stroke: yellow;
}

/* Specific blue styling for R21CP road */
.roadSvg.blueHighway .paths {
    stroke: rgb(19, 161, 255) !important;
}

.highwayPath .maskGeneral {
    animation: roadVeldSt-mask 0.85s linear forwards;
}

.highwayPath .maskGeneral.active {
    stroke-width: 11px;
}

/* Veld St Roads SVG's ===========================*/
#roadVeldSt-mask .mask {
    stroke-dasharray: 1360;
    animation: roadVeldSt-mask 0.85s linear forwards;
}

#roadVeldSt-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 1360;
}

@keyframes roadVeldSt-mask {
    to {
        stroke-dashoffset: 1360;
    }
}

/* Braambos st Roads SVG's ===========================*/
#roadBraambos-mask .mask {
    stroke-dasharray: 1360;
    animation: roadBraambos-mask 0.85s linear forwards;
}

#roadBraambos-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 1360;
}

@keyframes roadBraambos-mask {
    to {
        stroke-dashoffset: 1360;
    }
}

/* RivBoul Roads SVG's ===========================*/
#roadRivBoul-mask .mask {
    stroke-dasharray: 650;
    animation: roadRivBoul-mask 0.85s linear forwards;
}

#roadRivBoul-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 650;
}

@keyframes roadRivBoul-mask {
    to {
        stroke-dashoffset: 650;
    }
}

/* Boplaas Roads SVG's ===========================*/
#roadBoplaas-mask .mask {
    stroke-dasharray: 650;
    animation: roadBoplaas-mask 0.85s linear forwards;
}

#roadBoplaas-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 650;
}

@keyframes roadBoplaas-mask {
    to {
        stroke-dashoffset: 650;
    }
}

/* Morgenster Roads SVG's ===========================*/
#roadMorgenster-mask .mask {
    stroke-dasharray: 650;
    animation: roadMorgenster-mask 0.85s linear forwards;
}

#roadMorgenster-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 650;
}

@keyframes roadMorgenster-mask {
    to {
        stroke-dashoffset: 650;
    }
}

/* Chamonix Roads SVG's ===========================*/
#roadChamonix-mask .mask {
    stroke-dasharray: 650;
    animation: roadChamonix-mask 0.85s linear forwards;
}

#roadChamonix-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 650;
}

@keyframes roadChamonix-mask {
    to {
        stroke-dashoffset: 650;
    }
}

/* MuldarOne Roads SVG's ===========================*/
#roadMuldarOne-mask .mask {
    stroke-dasharray: 1953;
    animation: roadMuldarOne-mask 0.85s linear forwards;
}

#roadMuldarOne-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 1953;
}

@keyframes roadMuldarOne-mask {
    to {
        stroke-dashoffset: 1953;
    }
}

/* Blaauwklippen ave Roads SVG's ===========================*/
#roadBlaauwklippen-mask .mask {
    stroke-dasharray: 940;
    animation: roadBlaauwklippen-mask 0.85s linear forwards;
}

#roadBlaauwklippen-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 940;
}

@keyframes roadBlaauwklippen-mask {
    to {
        stroke-dashoffset: 940;
    }
}

/* de Bruin Dr ave Roads SVG's ===========================*/
#roaddeBruinDr-mask .mask {
    stroke-dasharray: 470;
    animation: roaddeBruinDr-mask 0.85s linear forwards;
}

#roaddeBruinDr-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 470;
}

@keyframes roaddeBruinDr-mask {
    to {
        stroke-dashoffset: 470;
    }
}

/* 1stCP ave Roads SVG's ===========================*/
#roadde1stCP-mask .mask {
    stroke-dasharray: 1470;
    animation: roadde1stCP-mask 0.85s linear forwards;
}

#roadde1stCP-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 1470;
}

@keyframes roadde1stCP-mask {
    to {
        stroke-dashoffset: 1470;
    }
}

/* 1stSP ave Roads SVG's ===========================*/
#roadde1stSP-mask .mask {
    stroke-dasharray: 1500;
    animation: roadde1stSP-mask 0.85s linear forwards;
}

#roadde1stSP-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 1500;
}

@keyframes roadde1stSP-mask {
    to {
        stroke-dashoffset: 1500;
    }
}


/* 1stP6 ave Roads SVG's ===========================*/
#roadde1stP6-mask .mask {
    stroke-dasharray: 1160;
    animation: roadde1stP6-mask 0.85s linear forwards;
}

#roadde1stP6-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 1160;
}

@keyframes roadde1stP6-mask {
    to {
        stroke-dashoffset: 1160;
    }
}

/* 1stAveP6 ave Roads SVG's ===========================*/
#roadde1stAveP6-mask .mask {
    stroke-dasharray: 1160;
    animation: roadde1stAveP6-mask 0.85s linear forwards;
}

#roadde1stAveP6-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 1160;
}

@keyframes roadde1stAveP6-mask {
    to {
        stroke-dashoffset: 1160;
    }
}

/* 1stWP  Roads SVG's ===========================*/
#roadde1stWP-mask .mask {
    stroke-dasharray: 1112;
    animation: roadde1stWP-mask 0.85s linear forwards;
}

#roadde1stWP-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 1112;
}

@keyframes roadde1stWP-mask {
    to {
        stroke-dashoffset: 1112;
    }
}

/* 1stEP  Roads SVG's ===========================*/
#roadde1stEP-mask .mask {
    stroke-dasharray: 920;
    animation: roadde1stEP-mask 0.85s linear forwards;
}

#roadde1stEP-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 920;
}

@keyframes roadde1stEP-mask {
    to {
        stroke-dashoffset: 920;
    }
}

/* 1stEP ave Roads SVG's ===========================*/
#roadde1stAveEP-mask .mask {
    stroke-dasharray: 320;
    animation: roadde1stAveEP-mask 0.85s linear forwards;
}

#roadde1stAveEP-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 320;
}

@keyframes roadde1stAveEP-mask {
    to {
        stroke-dashoffset: 320;
    }
}

/* 1stWP ave Roads SVG's ===========================*/
#roadde1stAveWP-mask .mask {
    stroke-dasharray: 298;
    animation: roadde1stAveWP-mask 0.85s linear forwards;
}

#roadde1stAveWP-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 298;
}

@keyframes roadde1stAveWP-mask {
    to {
        stroke-dashoffset: 298;
    }
}

/* R21 CP Roads SVG's ===========================*/
#roaddeR21CP-mask .mask {
    stroke-dasharray: 2380;
    animation: roaddeR21CP-mask 0.85s linear forwards;
}

#roaddeR21CP-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 2380;
}

@keyframes roaddeR21CP-mask {
    to {
        stroke-dashoffset: 2380;
    }
}

/* R21 SP Roads SVG's ===========================*/
#roaddeR21SP-mask .mask {
    stroke-dasharray: 2380;
    animation: roaddeR21SP-mask 0.85s linear forwards;
}

#roaddeR21SP-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 2380;
}

@keyframes roaddeR21SP-mask {
    to {
        stroke-dashoffset: 2380;
    }
}

/* R21 P6 Roads SVG's ===========================*/
#roaddeR21P6-mask .mask {
    stroke-dasharray: 1003;
    animation: roaddeR21P6-mask 0.85s linear forwards;
}

#roaddeR21P6-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 1003;
}

@keyframes roaddeR21P6-mask {
    to {
        stroke-dashoffset: 1003;
    }
}

/* R21 EP Roads SVG's ===========================*/
#roaddeR21EP-mask .mask {
    stroke-dasharray: 2550;
    animation: roaddeR21EP-mask 0.85s linear forwards;
}

#roaddeR21EP-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 2550;
}

@keyframes roaddeR21EP-mask {
    to {
        stroke-dashoffset: 2550;
    }
}

/* R21 WP Roads SVG's ===========================*/
#roaddeR21WP-mask .mask {
    stroke-dasharray: 2273;
    animation: roaddeR21WP-mask 0.85s linear forwards;
}

#roaddeR21WP-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 2273;
}

@keyframes roaddeR21WP-mask {
    to {
        stroke-dashoffset: 2273;
    }
}

/* R21 NP Roads SVG's ===========================*/
#roaddeR21NP-mask .mask {
    stroke-dasharray: 2307;
    animation: roaddeR21NP-mask 0.85s linear forwards;
}

#roaddeR21NP-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 2307;
}

@keyframes roaddeR21NP-mask {
    to {
        stroke-dashoffset: 2307;
    }
}

/* R23 NP Roads SVG's ===========================*/
#roaddeR25NP-mask .mask {
    stroke-dasharray: 2443;
    animation: roaddeR25NP-mask 0.85s linear forwards;
}

#roaddeR25NP-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 2443;
}

@keyframes roaddeR25NP-mask {
    to {
        stroke-dashoffset: 2443;
    }
}


/* M57 NP Roads SVG's ===========================*/
#roaddeM57NP-mask .mask {
    stroke-dasharray: 2291;
    animation: roaddeM57NP-mask 0.85s linear forwards;
}

#roaddeM57NP-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 2291;
}

@keyframes roaddeM57NP-mask {
    to {
        stroke-dashoffset: 2291;
    }
}

/* R23 SP Roads SVG's ===========================*/
#roaddeR23SP-mask .mask {
    stroke-dasharray: 2380;
    animation: roaddeR23SP-mask 0.85s linear forwards;
}

#roaddeR23SP-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 2380;
}

@keyframes roaddeR23SP-mask {
    to {
        stroke-dashoffset: 2380;
    }
}

/* R23 P6 Roads SVG's ===========================*/
#roaddeR23P6-mask .mask {
    stroke-dasharray: 1750;
    animation: roaddeR23P6-mask 0.85s linear forwards;
}

#roaddeR23P6-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 1750;
}

@keyframes roaddeR23P6-mask {
    to {
        stroke-dashoffset: 1750;
    }
}

/* R23 EP Roads SVG's ===========================*/
#roaddeR23EP-mask .mask {
    stroke-dasharray: 2380;
    animation: roaddeR23EP-mask 0.85s linear forwards;
}

#roaddeR23EP-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 2380;
}

@keyframes roaddeR23EP-mask {
    to {
        stroke-dashoffset: 2380;
    }
}

/* R23 WP Roads SVG's ===========================*/
#roaddeR23WP-mask .mask {
    stroke-dasharray: 2142;
    animation: roaddeR23WP-mask 0.85s linear forwards;
}

#roaddeR23WP-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 2142;
}

@keyframes roaddeR23WP-mask {
    to {
        stroke-dashoffset: 2142;
    }
}

/* SerengetiEP Roads SVG's ===========================*/
#roaddeSerengetiEP-mask .mask {
    stroke-dasharray: 250;
    animation: roaddeSerengetiEP-mask 0.85s linear forwards;
}

#roaddeSerengetiEP-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 250;
}

@keyframes roaddeSerengetiEP-mask {
    to {
        stroke-dashoffset: 250;
    }
}

/* SerengetiWP Roads SVG's ===========================*/
#roaddeSerengetiWP-mask .mask {
    stroke-dasharray: 940;
    animation: roaddeSerengetiWP-mask 0.85s linear forwards;
}

#roaddeSerengetiWP-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 940;
}

@keyframes roaddeSerengetiWP-mask {
    to {
        stroke-dashoffset: 940;
    }
}

/* R21PastureWP Roads SVG's ===========================*/
#roaddeR21PastureWP-mask .mask {
    stroke-dasharray: 500;
    animation: roaddeR21PastureWP-mask 0.85s linear forwards;
}

#roaddeR21PastureWP-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 500;
}

@keyframes roaddeR21PastureWP-mask {
    to {
        stroke-dashoffset: 500;
    }
}

/* R21MonumentWP Roads SVG's ===========================*/
#roaddeR21MonumentWP-mask .mask {
    stroke-dasharray: 1800;
    animation: roaddeR21MonumentWP-mask 0.85s linear forwards;
}

#roaddeR21MonumentWP-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 1800;
}

@keyframes roaddeR21MonumentWP-mask {
    to {
        stroke-dashoffset: 1800;
    }
}

/* R21BoulevardWP Roads SVG's ===========================*/
#roaddeR21BoulevardWP-mask .mask {
    stroke-dasharray: 625;
    animation: roaddeR21BoulevardWP-mask 0.85s linear forwards;
}

#roaddeR21BoulevardWP-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 625;
}

@keyframes roaddeR21BoulevardWP-mask {
    to {
        stroke-dashoffset: 625;
    }
}

/* Mulder CP Roads SVG's ===========================*/
#roaddeMulderCP-mask .mask {
    stroke-dasharray: 1120;
    animation: roaddeMulderCP-mask 0.85s linear forwards;
}

#roaddeMulderCP-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 1120;
}

@keyframes roaddeMulderCP-mask {
    to {
        stroke-dashoffset: 1120;
    }
}

/* Serengeti P6 Roads SVG's ===========================*/
#roaddeSerengetiP6-mask .mask {
    stroke-dasharray: 602;
    animation: roaddeSerengetiP6-mask 0.85s linear forwards;
}

#roaddeSerengetiP6-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 602;
}

@keyframes roaddeSerengetiP6-mask {
    to {
        stroke-dashoffset: 602;
    }
}

/* Riverfields SP Roads SVG's ===========================*/
#roaddeRiverfields-mask .mask {
    stroke-dasharray: 1120;
    animation: roaddeRiverfields-mask 0.85s linear forwards;
}

#roaddeRiverfields-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 1120;
}

@keyframes roaddeRiverfields-mask {
    to {
        stroke-dashoffset: 1120;
    }
}

/* Killarney SP Roads SVG's ===========================*/
#roaddeKillarney-mask .mask {
    stroke-dasharray: 880;
    animation: roaddeKillarney-mask 0.85s linear forwards;
}

#roaddeKillarney-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 880;
}

@keyframes roaddeKillarney-mask {
    to {
        stroke-dashoffset: 880;
    }
}

/* Mulder CP Roads SVG's ===========================*/
#roaddeMulderSP-mask .mask {
    stroke-dasharray: 1480;
    animation: roaddeMulderSP-mask 0.85s linear forwards;
}

#roaddeMulderSP-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 1480;
}

@keyframes roaddeMulderSP-mask {
    to {
        stroke-dashoffset: 1480;
    }
}

/* R21Expressway SP Roads SVG's ===========================*/
#roaddeR21Expressway-mask .mask {
    stroke-dasharray: 1110;
    animation: roaddeR21Expressway-mask 0.85s linear forwards;
}

#roaddeR21Expressway-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 1110;
}

@keyframes roaddeR21Expressway-mask {
    to {
        stroke-dashoffset: 1110;
    }
}

/* R21Expressway P6 Roads SVG's ===========================*/
#roaddeR21ExpresswayP6-mask .mask {
    stroke-dasharray: 1470;
    animation: roaddeR21ExpresswayP6-mask 0.85s linear forwards;
}

#roaddeR21ExpresswayP6-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 1470;
}

@keyframes roaddeR21ExpresswayP6-mask {
    to {
        stroke-dashoffset: 1470;
    }
}

/* Pasture P6 Roads SVG's ===========================*/
#roadsLayedePasture-mask .mask {
    stroke-dasharray: 800;
    animation: roadsLayedePasture-mask 0.85s linear forwards;
}

#roadsLayedePasture-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 800;
}

@keyframes roadsLayedePasture-mask {
    to {
        stroke-dashoffset: 800;
    }
}

/* Pasture SP Roads SVG's ===========================*/
#roaddePasture-SP-mask .mask {
    stroke-dasharray: 520;
    animation: roaddePasture-SP-mask 0.85s linear forwards;
}

#roaddePasture-SP-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 520;
}

@keyframes roaddePasture-SP-mask {
    to {
        stroke-dashoffset: 520;
    }
}

/* First Ave SP Roads SVG's ===========================*/
#roaddeFirstAve-SP-mask .mask {
    stroke-dasharray: 590;
    animation: roaddeFirstAve-SP-mask 0.85s linear forwards;
}

#roaddeFirstAve-SP-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 590;
}

@keyframes roaddeFirstAve-SP-mask {
    to {
        stroke-dashoffset: 590;
    }
}

/* Boulevard CP Roads SVG's ===========================*/
#roaddeBoulevard-mask .mask {
    stroke-dasharray: 650;
    animation: roaddeBoulevard-mask 0.85s linear forwards;
}

#roaddeBoulevard-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 650;
}

@keyframes roaddeBoulevard-mask {
    to {
        stroke-dashoffset: 650;
    }
}

/* R21 new CP Roads SVG's ===========================*/
#roadsLayedeR21-mask .mask {
    stroke-dasharray: 990px;
    animation: roadsLayedeR21-mask 0.85s linear forwards;
}

#roadsLayedeR21-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 990px;
}

@keyframes roadsLayedeR21-mask {
    to {
        stroke-dashoffset: 990px;
    }
}

/* R23 new CP Roads SVG's ===========================*/
#roadsLayedeR23-mask .mask {
    stroke-dasharray: 1440px;
    animation: roadsLayedeR23-mask 0.85s linear forwards;
}

#roadsLayedeR23-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 1440px;
}

@keyframes roadsLayedeR23-mask {
    to {
        stroke-dashoffset: 1440px;
    }
}

/* First Ave CP Roads SVG's ===========================*/
#roadsLayedeFirstAve-mask .mask {
    stroke-dasharray: 610px;
    animation: roadsLayedeFirstAve-mask 0.85s linear forwards;
}

#roadsLayedeFirstAve-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 610px;
}

@keyframes roadsLayedeFirstAve-mask {
    to {
        stroke-dashoffset: 610px;
    }
}


/* R21Expressway EP Roads SVG's ===========================*/
#roaddeR21ExpresswayEP-mask .mask {
    stroke-dasharray: 1450;
    animation: roaddeR21ExpresswayEP-mask 0.85s linear forwards;
}

#roaddeR21ExpresswayEP-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 1450;
}

@keyframes roaddeR21ExpresswayEP-mask {
    to {
        stroke-dashoffset: 1450;
    }
}

/* PastureEP Roads SVG's ===========================*/
#roaddePastureEP-mask .mask {
    stroke-dasharray: 1400;
    animation: roaddePastureEP-mask 0.85s linear forwards;
}

#roaddePastureEP-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 1400;
}

@keyframes roaddePastureEP-mask {
    to {
        stroke-dashoffset: 1400;
    }
}

/* R21Expressway WP Roads SVG's ===========================*/
#roaddeR21ExpresswayWP-mask .mask {
    stroke-dasharray: 1933;
    animation: roaddeR21ExpresswayWP-mask 0.85s linear forwards;
}

#roaddeR21ExpresswayWP-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 1933;
}

@keyframes roaddeR21ExpresswayWP-mask {
    to {
        stroke-dashoffset: 1933;
    }
}

/* R21Expressway NP Roads SVG's ===========================*/
#roaddeR21ExpresswayNP-mask .mask {
    stroke-dasharray: 1920;
    animation: roaddeR21ExpresswayNP-mask 0.85s linear forwards;
}

#roaddeR21ExpresswayNP-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 1920;
}

@keyframes roaddeR21ExpresswayNP-mask {
    to {
        stroke-dashoffset: 1920;
    }
}


/* Doddington st Roads SVG's ===========================*/
#roaddeDoddington-mask .mask {
    stroke-dasharray: 325;
    animation: roaddeDoddington-mask 0.85s linear forwards;
}

#roaddeDoddington-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 325;
}

@keyframes roaddeDoddington-mask {
    to {
        stroke-dashoffset: 325;
    }
}

/* Blaauwklippen Cp ave Roads SVG's ===========================*/
#roadBlaauwklippenCp-mask .mask {
    stroke-dasharray: 690;
    animation: roadBlaauwklippenCp-mask 0.85s linear forwards;
}

#roadBlaauwklippenCp-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 690;
}

@keyframes roadBlaauwklippenCp-mask {
    to {
        stroke-dashoffset: 690;
    }
}

/* Monument rd Roads SVG's ===========================*/
#roadMonumentRd-mask .mask {
    stroke-dasharray: 2370;
    animation: roadMonumentRd-mask 0.85s linear forwards;
}

#roadMonumentRd-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 2370;
}

@keyframes roadMonumentRd-mask {
    to {
        stroke-dashoffset: 2370;
    }
}

/* Monument CP rd Roads SVG's ===========================*/
#roadMonumentRdCp-mask .mask {
    stroke-dasharray: 1581;
    animation: roadMonumentRdCp-mask 0.85s linear forwards;
}

#roadMonumentRdCp-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 1581;
}

@keyframes roadMonumentRdCp-mask {
    to {
        stroke-dashoffset: 1581;
    }
}

/* R23 Roads SVG's ===========================*/
#roadR23-mask .mask {
    stroke-dasharray: 1620;
    animation: roadR23-mask 0.85s linear forwards;
}

#roadR23-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 1620;
    stroke-width: 5px;
}

.roadSvg .paths.roadR23 {
    stroke-dasharray: 0, 16;
    stroke-linecap: round;
    stroke-width: 12px;
    stroke: yellow;
}

@keyframes roadR23-mask {
    to {
        stroke-dashoffset: 1620;
    }
}

/* R25 Roads SVG's ===========================*/
#roadR25-mask .mask {
    stroke-dasharray: 3070;
    animation: roadR25-mask 0.85s linear forwards;
}

#roadR25-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 3070;
    stroke-width: 5px;
}

.roadSvg .paths.roadR25 {
    stroke-dasharray: 0, 16;
    stroke-linecap: round;
    stroke-width: 12px;
    stroke: yellow;
}

@keyframes roadR25-mask {
    to {
        stroke-dashoffset: 3070;
    }
}

/* M43 Roads SVG's ===========================*/
#roadM43-mask .mask {
    stroke-dasharray: 610;
    animation: roadM43-mask 0.85s linear forwards;
}

#roadM43-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 610;
    stroke-width: 5px;
}

.roadSvg .paths.roadM43 {
    stroke-dasharray: 0, 16;
    stroke-linecap: round;
    stroke-width: 12px;
    stroke: yellow;
}

@keyframes roadM43-mask {
    to {
        stroke-dashoffset: 610;
    }
}

/* M57 Roads SVG's ===========================*/
#roadM57-mask .mask {
    stroke-dasharray: 2080;
    animation: roadM57-mask 0.85s linear forwards;
}

#roadM57-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 2080;
    stroke-width: 5px;
}

.roadSvg .paths.roadM57 {
    stroke-dasharray: 0, 16;
    stroke-linecap: round;
    stroke-width: 12px;
    stroke: yellow;
}

@keyframes roadM57-mask {
    to {
        stroke-dashoffset: 2080;
    }
}

/* M32 Roads SVG's ===========================*/
#roadM32-mask .mask {
    stroke-dasharray: 2430;
    animation: roadM32-mask 0.85s linear forwards;
}

#roadM32-mask .mask.active {
    animation: dash 1.1s linear forwards;
    stroke-dashoffset: 2430;
    stroke-width: 5px;
}

.roadSvg .paths.roadM32 {
    stroke-dasharray: 0, 16;
    stroke-linecap: round;
    stroke-width: 12px;
    stroke: yellow;
}

@keyframes roadM32-mask {
    to {
        stroke-dashoffset: 2430;
    }
}

/* ================================================================================================
================= IFRAMES ================================================================
==================================================================================================*/



.iframeWrap.active {
    opacity: 1;
    z-index: 500;
}

.iframeWrap {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    height: 100%;
    z-index: -10;
    opacity: 0;
    transition: opacity 0.7s;
    transition-delay: 0.1s;
}

.iframeWrap .loadingIframe {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    z-index: 5;
    transform: translateX(-50%)translateY(-50%);
}

.iframeWrap .loadingIframe img {
    width: 100%;
    height: 100%;
}

.iframeWrap .iframeViews {
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 10;
    height: 100%;
}

.iframeWrap .iframeViews.active {
    display: block;
    /* pointer-events: none; */
}

.iframeWrap .iframeBackBtn {
    position: absolute;
    top: 9px;
    cursor: pointer;
    right: 4px;
    background-color: #fff;
    z-index: 9999999;
    color: #000;
    height: 28px;
    line-height: 31px;
    font-size: 16px;
    padding: 0px 10px 3px;
}


/* ================================================================================================
================= HOME PAGE LABELS ================================================================
==================================================================================================*/

/* === defaults ====*/
.boxWrapDefault {
    position: absolute;
    padding-top: calc(764 / 895* 100%);
    top: 0%;
    overflow: hidden;
    left: 0px;
    width: 100%;
    z-index: 200;
    pointer-events: none;
}

@media (max-width: 767px) {
    .boxWrapDefault {
        padding-top: calc(731 / 821* 100%);
    }
}

.threeSixtyViews {
    position: absolute;
}

.threeSixtyViews .droneViewItem {
    position: absolute;
    z-index: 40;
    height: 1px;
    width: 1px;
    pointer-events: none;
    background-color: transparent;

}

.threeSixtyViews .droneViewItem .droneView {
    position: absolute;
    top: 0px;
    left: 0px;
    pointer-events: all;
    background-color: transparent;
    opacity: 1;
    margin-bottom: 8px;
    transition: all 0.4s;
    border: 0px;
}

.threeSixtyViews .droneView.active {
    opacity: 0;
    margin-bottom: 0px;
    pointer-events: none;
}

.threeSixtyViews .droneView figure {
    margin-bottom: 0px;
}

.threeSixtyViews .droneView figure img {
    position: relative;
    height: 30px;
    padding: 5px;
    background-color: #a6ce3a;
    border-radius: 50%;
}

@media (max-width: 767px) {
    .threeSixtyViews .droneView figure img {
        height: 20px;
        background-color: #ff6f00;
    }
}

.threeSixtyViews .droneView:hover figure img {
    background-color: red;
}

/* === Home co-ordinates ===*/
.threeSixtyViews #iframeViewsHome-01 {
    top: 50%;
    left: 55.7%;
}

.threeSixtyViews #iframeViewsHome-02 {
    top: 48.9%;
    left: 61.2%;
}

.threeSixtyViews #iframeViewsHome-03 {
    top: 47%;
    left: 46%;
}

.threeSixtyViews #iframeViewsHome-04 {
    top: 40%;
    left: 54.7%;
}

.threeSixtyViews #iframeViewsHome-05 {
    top: 41.4%;
    left: 61%;
}

.threeSixtyViews #iframeViewsHome-06 {
    top: 52%;
    left: 49.7%;
}

.threeSixtyViews #iframeViewsHome-07 {
    top: 47.4%;
    left: 67%;
}

.threeSixtyViews #iframeViewsHome-08 {
    top: 33%;
    left: 57%;
}

/* === Precinct One co-ordinates ===*/
.threeSixtyViews #iframeViews-P1-01 {
    top: 14.4%;
    left: 62%;
}

.threeSixtyViews #iframeViews-P1-02 {
        top: 23.4%;
    left: 53.7%;
}

.threeSixtyViews #iframeViews-P1-03 {
        top: 20.4%;
    left: 45.7%;
}

.threeSixtyViews #iframeViews-P1-04 {
        top: 29%;
    left: 41%;
}

.threeSixtyViews #iframeViews-P1-05 {
        top: 46.4%;
    left: 50.7%;
}

.threeSixtyViews #iframeViews-P1-06 {
        top: 49.4%;
    left: 46.7%;
}

.threeSixtyViews #iframeViews-P1-07 {
    top: 45.4%;
    left: 46%;
}

.threeSixtyViews #iframeViews-P1-08 {
    top: 34%;
    left: 60%;
}

/* === Central Precinct co-ordinates ===*/
.threeSixtyViews #iframeViews-CP-01 {
    top: 27.4%;
    left: 34.7%;
}

.threeSixtyViews #iframeViews-CP-02 {
    top: 23.2%;
    left: 55.8%;
}

.threeSixtyViews #iframeViews-CP-03 {
    top: 28%;
    left: 52.2%;
}

.threeSixtyViews #iframeViews-CP-04 {
        top: 33%;
    left: 50%;
}

.threeSixtyViews #iframeViews-CP-05 {
        top: 31.4%;
    left: 53.7%;
}

.threeSixtyViews #iframeViews-CP-06 {
    top: 17.4%;
    left: 43.2%;
}

/* === Southern Precinct co-ordinates ===*/
.threeSixtyViews #iframeViews-SP-01 {
    top: 30.4%;
    left: 37.7%;
}

.threeSixtyViews #iframeViews-SP-02 {
        top: 29.4%;
    left: 53.7%;
}

.threeSixtyViews #iframeViews-SP-03 {
    top: 29%;
    left: 59.4%;
}

.threeSixtyViews #iframeViews-SP-04 {
        top: 40.4%;
    left: 60.7%;
}

.threeSixtyViews #iframeViews-SP-05 {
    top: 34.2%;
    left: 63.7%;
}

/* === Northern Precinct co-ordinates ===*/
.threeSixtyViews #iframeViews-NP-01 {
    top: 4.4%;
    left: 58.7%;
}

.threeSixtyViews #iframeViews-NP-02 {
    top: 66.4%;
    left: 55.7%;
}

.threeSixtyViews #iframeViews-NP-03 {
    top: 56.4%;
    left: 43.7%;
}

.threeSixtyViews #iframeViews-NP-04 {
    top: 31.4%;
    left: 49.7%;
}

.threeSixtyViews #iframeViews-NP-05 {
    top: 41.4%;
    left: 70.7%;
}

/* === Eastern Precinct co-ordinates ===*/
.threeSixtyViews #iframeViews-EP-01 {
        top: 11.4%;
    left: 45%;
}

.threeSixtyViews #iframeViews-EP-02 {
        top: 15.4%;
    left: 48%;
}

.threeSixtyViews #iframeViews-EP-03 {
        top: 19.4%;
    left: 51.4%;
}

.threeSixtyViews #iframeViews-EP-04 {
        top: 30.4%;
    left: 54.7%;
}

.threeSixtyViews #iframeViews-EP-05 {
        top: 27.4%;
    left: 57.5%;
}

.threeSixtyViews #iframeViews-EP-06 {
    top: 32.8%;
    left: 57.5%;
}

.threeSixtyViews #iframeViews-EP-07 {
        top: 34%;
    left: 53%;
}

.threeSixtyViews #iframeViews-EP-08 {
        top: 34.7%;
    left: 49.5%;
}

.threeSixtyViews #iframeViews-EP-09 {
    top: 46%;
    left: 45.5%;
}

.threeSixtyViews #iframeViews-EP-10 {
    top: 51%;
    left: 45.5%;
}

.threeSixtyViews #iframeViews-EP-11 {
        top: 50.4%;
    left: 53.5%;
}

.threeSixtyViews #iframeViews-EP-12 {
    top: 42.3%;
    left: 54.5%;
}

/* === Precinct 6 co-ordinates ===*/
.threeSixtyViews #iframeViews-P6-01 {
        top: 31.4%;
    left: 32.7%;
}

.threeSixtyViews #iframeViews-P6-02 {
        top: 35.4%;
    left: 36.7%;
}

.threeSixtyViews #iframeViews-P6-03 {
    top: 46%;
    left: 37.7%;
}

.threeSixtyViews #iframeViews-P6-04 {
    top: 38.4%;
    left: 50.7%;
}

.threeSixtyViews #iframeViews-P6-05 {
    top: 37.4%;
    left: 37.7%;
}

/* === Western Precinct co-ordinates ===*/
.threeSixtyViews #iframeViews-WP-01 {
    top: 4.4%;
    left: 58.7%;
}

.threeSixtyViews #iframeViews-WP-02 {
    top: 37%;
    left: 42%;
}

.threeSixtyViews #iframeViews-WP-03 {
    top: 46.4%;
    left: 45%;
}

.threeSixtyViews #iframeViews-WP-04 {
    top: 31.4%;
    left: 49.7%;
}

.threeSixtyViews #iframeViews-WP-05 {
    top: 41.4%;
    left: 70.7%;
}

.labelsWrap {
    position: absolute;
}

.labelsWrap .labelItemWrap {
    position: absolute;
    z-index: 40;
    height: 1px;
    width: 1px;
    pointer-events: auto;
}

.labelsWrap .labelItemWrap.roadLabels {
    pointer-events: none;
}

.labelsWrap .labelItemWrap .labelItemInner {
    position: absolute;
    white-space: nowrap;
    left: 50%;
    top: 50%;
    transform: translateX(-50%)translateY(-50%);
    justify-content: center;
    align-content: center;
}

.labelsWrap .labelItemWrap .labelItemInner span {
    position: absolute;
    font-size: 16px;
    background-color: rgb(17 17 17 / 82%);
    color: #fff;
    padding: 3px 15px 1px;
    margin-bottom: 25px;
    border-radius: 5px;
    left: 50%;
    bottom: 90px;
    transform: translateX(-50%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0, 0.32, 0, 2.81);
    transition-delay: 0.6s;
}

.labelsWrap .labelItemWrap.roadLabels.street .labelItemInner span {
    position: absolute;
    color: #000;
    background-color: #fff;
    border-radius: 3px;
    padding: 1px 6px;
}

.labelsWrap .labelItemWrap.roadLabels.street .labelItemInner span::after {
    display: none;
}

.labelsWrap .labelItemWrap.roadLabels .labelItemInner span {
    padding: 4px 4px 3px;
    font-size: 9px;
    transition: all 0.9s cubic-bezier(0, 1.08, 0.46, 1.55);
    border-radius: 30px;
    position: relative;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    display: block;
    font-weight: 600;
    bottom: auto;
    box-shadow: 0px 0px 10px 4px rgb(0 0 0 / 41%);
    left: auto;
}

@media (max-width: 767px) {
    .labelsWrap .labelItemWrap.roadLabels .labelItemInner span {
        padding: 0px 7px;
        font-size: 7px;
    }
}

.labelsWrap .labelItemWrap.active .labelItemInner span {
    opacity: 1;
    margin-bottom: 0px;
}

.labelsWrap .labelItemWrap.roadLabels .labelItemInner span::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -9px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 10px solid red;
}

.labelsWrap .labelItemWrap.roadLabels.green .labelItemInner span {
    background-color: #0f9600;
    color: #ffb617;
}

.labelsWrap .labelItemWrap.roadLabels.blue .labelItemInner span {
    background-color: #5385e0;
    color: #fff;
}

.labelsWrap .labelItemWrap.green.roadLabels .labelItemInner span::after {
    border-top: 10px solid #0f9600;
}

.labelsWrap .labelItemWrap.blue.roadLabels .labelItemInner span::after {
    border-top: 10px solid #5385e0;
}

/* street defaults */
#roadLabelVeld {
    top: 26.9%;
    left: 30.3%;
    transform: rotate(-25deg);
}

#roadLabelMonument {
    top: 53.7%;
    left: 44.3%;
    transform: rotate(-32deg);
}

#roadLabelBlaauwklippen {
    top: 41.3%;
    left: 71.3%;
    transform: rotate(18deg);
}

#roadLabelBlaauwklippenCP {
    top: 15.3%;
    left: 43.1%;
    transform: rotate(53.8deg);
}

#roadLabelSerengetiEP {
    top: 29.3%;
    left: 57.5%;
    transform: rotate(-34.2deg);
}

#roadLabelSerengetiWP {
    top: 44.6%;
    left: 68.5%;
    transform: rotate(-34.2deg);
}

#roadLabelMonumentRdCp {
    top: 33.7%;
    left: 31.3%;
    transform: rotate(-32.6deg);
}

#roadLabelBraambos {
        top: 36.3%;
    left: 39%;
    transform: rotate(244deg);
}

#roadLabelRivBoul {
        top: 26.1%;
    left: 92.8%;
    transform: rotate(32deg);
}

#roadLabelBoplaas {
        top: 26.9%;
    left: 40.9%;
    transform: rotate(300deg);
}

#roadLabelMorgenster {
        top: 34.7%;
    left: 49.6%;
    transform: rotate(57deg);
}

#roadLabelChamonix {
        top: 32.5%;
    left: 54.1%;
    transform: rotate(311deg);
}

#roadLabelMulderOne {
        top: 34.3%;
    left: 82.2%;
    transform: rotate(303deg);
}

#roadLabelDeBruinDr {
    top: 43.3%;
    left: 42.7%;
    transform: rotate(64.5deg);
}

#roadLabelRiverfields {
    top: 31.3%;
    left: 58.4%;
    transform: rotate(54.5deg);
}

#roadLabelKillarney {
    top: 33.3%;
    left: 72.2%;
    transform: rotate(-23.5deg);
}

#roadLabel1stCP {
    top: 43%;
    left: 60.7%;
    transform: rotate(-24.5deg);
}

#roadLabel1stSP {
    top: 34.1%;
    left: 73.7%;
    transform: rotate(-24.5deg);
}

#roadLabel1stP6 {
    top: 46.6%;
    left: 32.7%;
    transform: rotate(-24.5deg);
}

#roadLabel1stAveP6 {
    top: 33%;
    left: 31.7%;
    transform: rotate(44.9deg);
}

#roadLabel1stEP {
    top: 50.8%;
    left: 53.7%;
    transform: rotate(-22.8deg);
}

#roadLabel1stWP {
    top: 70.6%;
    left: 63.7%;
    transform: rotate(-23.2deg);
}

#roadLabel1stAveEP {
    top: 44.2%;
    left: 56.1%;
    transform: rotate(48.4deg);
}

#roadLabel1stAveWP {
    top: 62.2%;
    left: 66.5%;
    transform: rotate(48.4deg);
}

#roadLabelR21CP {
    top: 21%;
    left: 68.5%;
}

@media (max-width: 767px) {
    #roadLabelR21CP {
        top: 19%;
        left: 70%;
    }
}

#roadLabelR21SP {
    top: 15.6%;
    left: 55.5%;
}

@media (max-width: 767px) {
    #roadLabelR21SP {
        top: 15.6%;
        left: 56.5%;
    }
}

#roadLabelR21P6 {
    top: 1.6%;
    left: 15.7%;
}

#roadLabelR21EP {
    top: 15.6%;
    left: 46%;
}

@media (max-width: 767px) {
    #roadLabelR21EP {
        top: 21.6%;
        left: 49.3%;
    }
}

#roadLabelR21WP {
    top: 13.8%;
    left: 46%;
}

@media (max-width: 767px) {
    #roadLabelR21WP {
        top: 27.8%;
        left: 34.1%;
    }
}

#roadLabelR21NP {
    top: 36.9%;
    left: 39.1%;
}

@media (max-width: 767px) {
    #roadLabelR21NP {
        top: 34.4%;
        left: 71.1%;
    }
}

#roadLabelR25NP {
    top: 38.9%;
    left: 66%;
}

@media (max-width: 767px) {
    #roadLabelR25NP {
        top: 38.9%;
        left: 40%;
    }
}

#roadLabelM57NP {
    top: 34.8%;
    left: 33%;
}

@media (max-width: 767px) {
    #roadLabelM57NP {
        top: 26.8%;
        left: 33%;
    }
}

#roadLabelR23SP {
    top: 33.6%;
    left: 69.5%;
}

@media (max-width: 767px) {
    #roadLabelR23SP {
        top: 30.1%;
        left: 71%;
    }
}

#roadLabelR23P6 {
        top: 47.6%;
    left: 21.5%;
}

@media (max-width: 767px) {
    #roadLabelR23P6 {
        top: 45.6%;
        left: 23.5%;
    }
}

#roadLabelR23EP {
    top: 19.8%;
    left: 31.5%;
}

@media (max-width: 767px) {
    #roadLabelR23EP {
        top: 17%;
        left: 33.5%;
    }
}

#roadLabelR23WP {
    top: 33.1%;
    left: 37.5%;
}

@media (max-width: 767px) {
    #roadLabelR23WP {
        top: 32.1%;
        left: 58.5%;
    }
}

#roadLabelMulderCP {
    top: 19.9%;
    left: 60.2%;
    transform: rotate(306deg);
}

/* New Central Precinct Road Labels */
#roadLabelBoulevardCP {
    top: 20%;
    left: 74%;
    transform: rotate(54deg);
}

#roadLabelR21NewCP {
        top: 31%;
    left: 76.1%;
    transform: rotate(-0deg);
}

#roadLabelR23NewCP {
        top: 40%;
    left: 91%;
    transform: rotate(0deg);
}

#roadLabelFirstAveCP {
    top: 14%;
    left: 94%;
    transform: rotate(38deg);
}

#roadLabelSerengetiP6 {
    top: 7.1%;
    left: 36.2%;
    transform: rotate(-32.5deg);
}

#roadLabelMulderSP {
    top: 39.9%;
    left: 32.4%;
    transform: rotate(-64.5deg);
}

#roadLabelR21Expressway {
    top: 23.9%;
    left: 64.2%;
    transform: rotate(-42.5deg);
}

#roadLabelR21ExpresswayEP {
    top: 9.7%;
    left: 45.2%;
    transform: rotate(41.5deg);
}

#roadLabelPastureEP {
        top: 37.2%;
    left: 55.8%;
    transform: rotate(77deg);
}

#roadLabelR21ExpresswayWP {
    top: 22.1%;
    left: 54.2%;
    transform: rotate(41.5deg);
}

#roadLabelR21PastureWP {
        top: 56.2%;
    left: 70.8%;
    transform: rotate(73deg);
}

#roadLabelR21MonumentWP {
        top: 54.4%;
    left: 36.1%;
    transform: rotate(305deg);
}

#roadLabelR21BoulevardWP {
        top: 58.6%;
    left: 42.5%;
    transform: rotate(66deg);
}

#roadLabelR21ExpresswayNP {
    top: 39.1%;
    left: 49.5%;
    transform: rotate(56.5deg);
}

#roadLabelDoddington {
    top: 22.1%;
    left: 39.1%;
    transform: rotate(53.6deg);
}

#roadLabelR21ExpresswayP6 {
    top: 16.7%;
    left: 25.5%;
    transform: rotate(-80deg);
}

#roadsLabelPasture {
        top: 21.1%;
    left: 38.5%;
    transform: rotate(72deg);
}

#roadLabelPasture-SP {
        top: 9.2%;
    left: 84.8%;
    transform: rotate(63deg);
}

#roadLabelFirstAve-SP {
        top: 16.2%;
    left: 77%;
    transform: rotate(39deg);
}

/* Road Labels for Precinct One */
#homeRoadLabelR21 {
    top: 29%;
    left: 56.1%;
}

@media (max-width: 767px) {
    #homeRoadLabelR21 {
        top: 24%;
        left: 56.1%;
    }
}

#homeRoadLabelR21-2 {
    top: 88%;
    left: 33.9%;
}

#homeRoadLabelR23 {
    top: 66.4%;
    left: 68.7%;
}

@media (max-width: 767px) {
    #homeRoadLabelR23 {
        top: 63.4%;
        left: 70%;
    }
}

#homeRoadLabelR23-2 {
    top: 33.9%;
    left: 50.2%;
}

@media (max-width: 767px) {
    #homeRoadLabelR23-2 {
        top: 31.9%;
        left: 52.2%;
    }
}

#homeRoadLabelM43 {
    top: 48.8%;
    left: 41.2%;
}

@media (max-width: 767px) {
    #homeRoadLabelM43 {
        top: 48.8%;
        left: 44.2%;
    }
}

#homeRoadLabelR25 {
    top: 48.8%;
    left: 22.9%;
}

@media (max-width: 767px) {
    #homeRoadLabelR25 {
        top: 44%;
        left: 26.9%;
    }
}

#homeRoadLabelR25-2 {
    top: 13.7%;
    left: 72.8%;
}

@media (max-width: 767px) {
    #homeRoadLabelR25-2 {
        top: 15.5%;
        left: 64.8%;
    }
}

#homeRoadLabelM57 {
    top: 53.9%;
    left: 32.1%;
}

@media (max-width: 767px) {
    #homeRoadLabelM57 {
        top: 52.9%;
        left: 32.1%;
    }
}

#homeRoadLabelM32 {
    top: 69.8%;
    left: 79.2%;
}

@media (max-width: 767px) {
    #homeRoadLabelM32 {
        top: 64.8%;
        left: 79.2%;
    }
}

#homeRoadLabelM32-2 {
    top: 67.5%;
    left: 47.5%;
}

@media (max-width: 767px) {
    #homeRoadLabelM32-2 {
        top: 64.5%;
        left: 47.5%;
    }
}

/* ================================================================================================
================= INTERACTIVE BTN WRAP ================================================================
==================================================================================================*/

.interactiveBtnWrap {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 130;
    display: flex;
    gap: 6px;
}

@media (max-width: 767px) {
    .interactiveBtnWrap {
        top: 90px;
    }
}

.interactiveBtnWrap #filterContainer {
    top: 2px;
    position: relative;
    width: 170px;
    height: 25px;
    margin-right: 10px;
}

.interactiveBtnWrap #filterContainer::before {
    content: "";
    background-size: contain;
    margin-right: 10px;
    width: 10px;
    height: 11px;
    background-repeat: no-repeat;
    position: absolute;
    right: -4px;
    top: 7px;
    z-index: 100;
    background-image: url('../my-assets/icons/arrow-thin-right.svg');
    transition: all 0.4s;
    transform: rotate(0deg);
}

.interactiveBtnWrap #filterContainer.active::before {
    transform: rotate(90deg);
}

.interactiveBtnWrap #filterContainer .closeDrop {
    position: absolute;
    top: 3px;
    right: 2px;
    z-index: 120;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 0px;
    background-color: #e86e6e;
    color: #ffffff;
    display: flex;
    font-weight: 500;
    padding: 0px;
    opacity: 0;
    transition: all 0.4s;
    align-items: center;
    justify-content: center;
}

.interactiveBtnWrap #filterContainer .closeDrop.active {
    opacity: 1;

}

.interactiveBtnWrap #filterContainer .triggerSubNav {
    position: relative;
    background-color: #fff;
    padding: 2px 10px;
    font-size: 13px;
    /* border-radius: 4px; */
    pointer-events: auto;
    width: 100%;
    cursor: pointer;
    height: 100%;
}

.interactiveBtnWrap #filterContainer ul#dropdownList {
    position: absolute;
    background-color: #efefef;
    opacity: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-bottom: 0px;
    max-height: 0px;
    overflow: hidden;
    top: 25px;
    padding: 0px 0px 0px;
    transition: all 0.4s;
    width: 100%;
}

.interactiveBtnWrap #filterContainer ul#dropdownList.active {
    opacity: 1;
    top: 28px;
    max-height: 800px;
    padding: 10px 0px 10px;
}

.interactiveBtnWrap #filterContainer ul#dropdownList li.dropdown-item {
    position: relative;
    padding: 2px 10px !important;
    font-size: 14px;
}

.interactiveBtnWrap .interactiveBtn.interactiveBtn {
    background-color: #19afe6;
    border: 1px solid #fff;
    box-shadow: 0px 4px 5px 0px #00000070;
    padding: 3px;
    font-family: AvenirLTStd-Heavy;
    color: #000000;
    border-radius: 50%;
    display: flex;
    font-size: 14px;
    transition: all 0.4s;
    cursor: pointer;
    position: relative;
    height: 30px;
    width: 30px;
    align-items: center;
    justify-content: center;
}

.interactiveBtnWrap .interactiveBtn figure {
    margin-bottom: 0px;
    width: 30px;
}

.interactiveBtnWrap .interactiveBtn img {
    height: 17px;
    width: 17px;
}

.interactiveBtnWrap .interactiveBtn:hover {
    background-color: #a6ce3a;
}

.interactiveBtnWrap .interactiveBtn.active {
    background-color: #a6ce3a;
    animation: ativePulse 1s infinite ease-in-out;
    /* Pulsating effect when active */
}

@keyframes ativePulse {
    0% {
        transform: scale(1.05);
    }

    50% {
        transform: scale(1.12);
    }

    100% {
        transform: scale(1.05);
    }
}

.interactiveBtnWrap button .toolTip {
    position: absolute;
    top: 37px;
    pointer-events: none;
    border-radius: 6px;
    background-color: #fff;
    color: #000;
    font-size: 10px;
    padding: 1px 5px;
    text-align: center;
    z-index: 20;
    opacity: 0;
    white-space: nowrap;
    width: auto;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s;
}

.interactiveBtnWrap button:hover .toolTip {
    opacity: 1;
}

.interactiveBtnWrap button .toolTip::before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -7px;
    content: "";
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid white;
}

@media (max-width: 767px) {
    .interactiveBtnWrap button .toolTip::before {
        display: none;
    }
}


/* INDIVIDUAL SVG's ================================================================== */

.pre-hover-image {
    position: absolute;
    z-index: 5;
}

.svg-default {
    stroke-width: 1.5px;
    stroke: rgb(0, 0, 0);
    fill: transparent;
}

.svg-default-2 {
    stroke-width: 2px;
    stroke: rgb(0, 0, 0);
    fill: transparent;
}

.subSectionHover {
    transition: 0.3s ease;
}

.subSectionHover:hover {
    fill: rgba(255, 0, 0, 0.694);
}

.precinct-splitted {
    pointer-events: none;
}

.precinct-splitted.splitHidden {
    fill: transparent;
}


.svg-default-2.active.inTheSub.stepThree.navClickSvg.subClickActive,
.svg-default-2.active.inTheSub.stepThree,
.svg-default-2.active {
    fill: rgb(255 255 255 / 75%);
}

.special.inTheSub.stepThree.active.navClickSvg,
.special.active.stepThree,
.special {
    fill: #bbf8016f;
}

.rightPopOutList .special {
    background-color: #bbf8016f;
}

.red.inTheSub.stepThree.active.navClickSvg,
.red.active.stepThree,
.red {
    fill: #e900006f;
}

.rightPopOutList .red {
    background-color: #e80000d4;
}

.orange.inTheSub.stepThree.active.navClickSvg,
.orange.active.stepThree,
.orange {
    fill: #ff6a456f;
}

.rightPopOutList .orange {
    background-color: #ff6a45d4;
}

.dark-green.inTheSub.stepThree.active.navClickSvg,
.dark-green.active.stepThree,
.dark-green {
    fill: #146d08d3;
}

.rightPopOutList .dark-green {
    background-color: #146d08d3;
}

.bright-green.inTheSub.stepThree.active.navClickSvg,
.bright-green.active.stepThree,
.bright-green {
    fill: #00ff0897;
}

.rightPopOutList .bright-green {
    background-color: #00ff0897;
}

.purple.inTheSub.stepThree.active.navClickSvg,
.purple.active.stepThree,
.purple {
    fill: #9105866f;
}

.rightPopOutList .purple {
    background-color: #9105866f;
}

.yellow.inTheSub.stepThree.active.navClickSvg,
.yellow.active.stepThree,
.yellow {
    fill: #fff3456f;
}

.rightPopOutList .yellow {
    background-color: #fff345d4;
}

.pink.inTheSub.stepThree.active.navClickSvg,
.pink.active.stepThree,
.pink {
    fill: #ff069b6f;
}

.rightPopOutList .pink {
    background-color: #ff069b6f;
}

.green.inTheSub.stepThree.active.navClickSvg,
.green.active.stepThree,
.green {
    fill: #62ff008f;
}

.rightPopOutList .green {
    background-color: #62ff008f;
}

.lightBlue.inTheSub.stepThree.active.navClickSvg,
.lightBlue.active.stepThree,
.lightBlue {
    fill: #01ffff6f;
}

.rightPopOutList .lightBlue {
    background-color: #01ffff6f;
}

.blue.inTheSub.stepThree.active.navClickSvg,
.blue.active.stepThree,
.blue {
    fill: #004cff6f;
}

.rightPopOutList .blue {
    background-color: #004cffb5;
}

.tooltip-header {
    font-size: 18px;
    margin-bottom: 10px;
}

.sub-tooltip-header {
    font-size: 14px;
    margin: 0px;
}

#poiLayerInnerContainer {
    padding-top: calc(764 / 895* 100%);
    top: 0%;
    overflow: hidden;
    left: 0px;
    width: 100%;
    z-index: 35;
    pointer-events: none;
    position: absolute;
    opacity: 1;
    transition: 0.3s ease;
}

.poiLayerInnerContainer.active {
    opacity: 1;
}

.iconContainer {
    position: absolute;
    background: transparent;
    width: 10px;
    height: 10px;
    display: block;
    z-index: 100;
    pointer-events: all;
}

.iconSvgContainer {
    /* position: absolute; */
}

.iconButtonContainer {
    position: absolute;
    background: transparent;
    display: block;
    z-index: 100;
    top: -26px;
    left: -15px;
    border: none;
}

@media (max-width: 767px) {
    .iconButtonContainer {
        top: -16px;
        left: -5px;
    }
}



.iconButtonContainer.stepTwo.iconInStepThree.stepThree.navClickIcon.active.iconClickActive.iconInTheSub.notInSub svg,
.iconButtonContainer.navClickIcon.iconInTheSub.stepTwo.iconInStepThree.stepThree svg,
.iconButtonContainer.navClickIcon.iconInTheSub.stepTwo.stepThree.active svg,
.iconButtonContainer.iconInTheSub.stepTwo.stepThree.iconInStepThree.notInSub svg,
.iconButtonContainer.iconInTheSub.stepTwo.stepThree svg,
.iconButtonContainer.active.notInSub svg,
.iconButtonContainer svg {
    fill: #fff;
    transform: scale(1);
    transition: all 0.4s;
}

@media (max-width: 767px) {

    .iconButtonContainer.stepTwo.iconInStepThree.stepThree.navClickIcon.active.iconClickActive.iconInTheSub.notInSub svg,
    .iconButtonContainer.navClickIcon.iconInTheSub.stepTwo.iconInStepThree.stepThree svg,
    .iconButtonContainer.navClickIcon.iconInTheSub.stepTwo.stepThree.active svg,
    .iconButtonContainer.iconInTheSub.stepTwo.stepThree.iconInStepThree.notInSub svg,
    .iconButtonContainer.iconInTheSub.stepTwo.stepThree svg,
    .iconButtonContainer.active.notInSub svg,
    .iconButtonContainer svg {
        height: 7px;
    }
}






.iconButtonContainer.navClickIcon.iconInTheSub.stepTwo.iconInStepThree.stepThree.iconClickActive svg,
.iconButtonContainer.iconInTheSub.stepTwo.stepThree.iconInStepThree svg,
.iconButtonContainer.iconInTheSub svg,
.iconButtonContainer.stepThreeActive.activateNow svg,
.iconButtonContainer.active svg {
    fill: #a6ce3a;
    transform: scale(1.5);
}

.iconButtonContainer.poi-opp-housing.stepTwo.iconInStepThree.stepThree.navClickIcon.active.iconClickActive.iconInTheSub.finalActive svg,
.iconButtonContainer.finalActive svg {
    fill: #a6ce3a !important;
    transform: scale(1.5) !important;
}




/* Description Pop up ======================================================= */

.zone-info-wrapper {
    z-index: 31;
    display: flex;
    position: fixed;
    min-width: 20%;
    min-height: 80%;
    background-color: rgba(255, 255, 255, 0.805);
    top: 10%;
    border-radius: 0 10px 10px 0;
    translate: -500px;
    transition: 0.4s ease-in-out;
    -webkit-backdrop-filter: blur(50%);
}

.zone-info-wrapper.active {
    translate: 0px;
}

/* Precinct Title Label ===================================================== */

/* Precinct Sections */

#svg-container {
    display: block;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

#precinct-one-outline {
    stroke: #000000;
    stroke-width: 2px;
    fill: none;
}

#GEX19 {
    fill: #ff800082;
}

#GEX18 {
    fill: #fff20082;
}

#GEX38 {
    fill: #fff20082;
}

#GEX37 {
    fill: #fff20082;
}

#GEX36 {
    fill: #fff20082;
}

#GEX45 {
    fill: #0040ff82;
}

#GEX44 {
    fill: #0040ff82;
}

#GEX43 {
    fill: #0040ff82;
}

#GEX42 {
    fill: #0040ff82;
}

#GEX34 {
    fill: #ff620082;
}

#GEX35 {
    fill: #ff620082;
}

#GEX39 {
    fill: #fff20082;
}

#GEX40 {
    fill: #00d9ff82;
}

#GEX41 {
    fill: #00d9ff82;
}

#dynamicDiv {
    background-color: white;
    position: absolute;
    display: block;
    z-index: 55;
}

/* Labels ========================================================= */

.precinct-labels-box-wrap {
    position: absolute;
    padding-top: calc(497 / 855* 100%);
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
    left: 0px;
    width: 100%;
    z-index: 35;
    pointer-events: none;
}

.label-wrap {
    position: absolute;
    z-index: 110;
    height: 1px;
    width: 1px;
    pointer-events: auto;
}

.label-inner-wrap {
    position: absolute;
    white-space: nowrap;
    left: 50%;
    top: 50%;
    transform: translateX(-50%)translateY(-50%);
    justify-content: center;
    align-content: center;
    background-color: rgba(255, 255, 255, 0.736);
    color: black;
    padding: 2px 5px;
    border-radius: 5px;
}

.label-text {
    font-size: 11px;
}

#precinct-one-label {
    top: 79%;
    left: 48%;
}

#eastern-precinct-label {
    top: 68%;
    left: 65%;
}

#western-precinct-label {
    top: 60%;
    left: 52%;
}

#southern-precinct-label {
    top: 82%;
    left: 58%;
}

#northern-precinct-label {
    top: 32%;
    left: 55%;
}

#precinct-six-label {
    top: 76%;
    left: 70%;
}

#central-precinct-label {
    top: 88%;
    left: 50%;
}

/* ===== Modal Defaults ===================================================== */

.modalDefault {
    z-index: 1055 !important;
}

.modalDefault .modal-content {
    text-align: center;
}

.modalDefault .modal-header h2.modaleTitle {
    position: relative;
    color: #fff;
    font-size: 25px;
    width: 100%;
    text-align: left;
}

@media (max-width: 767px) {
    .modalDefault .modal-header h2.modaleTitle {
        font-size: 21px;
    }
}

.modalDefault .modal-header h3.modaleSubTitle {
    position: relative;
    color: #fff;
    font-size: 16px;
    text-align: left;
}

.modalDefault .modal-header {
    background-color: #96bb34;
}

@media (max-width: 767px) {
    .modalDefault .modal-header h3.modaleSubTitle {
        font-size: 14px;
    }
}

.modalDefault .modal-header {
    position: relative;
}

.modalDefault .modal-header .btn-close {
    position: absolute;
    background-color: #1ca1d2;
    opacity: 1;
    box-shadow: 1px 2px 2px 0px rgb(0 0 0 / 37%);
    right: 15px;
    border-radius: 50%;
    color: #fff;
    background-image: url('../my-assets/icons/close.svg');
    top: 15px;
    border: 1px solid #fff;
}

.modalDefault .carousel-indicators {
    position: absolute;
    bottom: -22px;
    margin-bottom: 0px;
}

.modalDefault .carousel-indicators button {
    position: relative;
    width: 10px;
    background-color: #96bb34;
    height: 10px;
    border-radius: 50%;
    opacity: 0.4;
}

.modalDefault .carousel-indicators button.active {
    background-color: #96bb34;
    opacity: 1;
}

.modalDefault .carousel-inner {
    position: relative;
}

.modalDefault .carousel-inner .carousel-item h2.modalBodyTitle {
    position: relative;
    font-size: 17px;
    text-align: left;
}

.modalDefault .carousel-inner .carousel-item p {
    font-size: 12px;
    position: relative;
    text-align: left;
    height: 35px;
}

@media (max-width: 767px) {
    .modalDefault .carousel-inner .carousel-item p {
        height: 70px;
        margin-bottom: 20px;
    }
}

.modalDefault .carousel-inner .carousel-item figure {
    position: relative;
    width: 100%;
    border: 1px solid #000;
    border-radius: 8px;
    overflow: hidden;
}

.modalDefault .carousel-inner .carousel-item figure img {
    position: relative;
    width: 100%;
}



/* == Tutorial modal ===*/

#tutorialModal .modal-header {
    background-color: #96bb34;
    padding: 14px 50px 14px 20px;
    flex-wrap: wrap;
}

#tutorialModal .modal-body {
    height: auto;
    padding: 30px;
}

#tutorialModal .modal-footer {
    background-color: #19afe6;
}

#tutorialModal .carousel-control-prev {
    left: -105px;
}

#tutorialModal .carousel-control-next {
    right: -105px;
}

#tutorialModal .carousel {
    height: calc(100% - 20px);
}

#tutorialModal .carousel-inner {
    display: flex;
    align-items: center;
}

/* == GF modal ===*/

#modalEnquiryForm .modal-header {
    background-color: #96bb34;
    padding: 14px 50px 14px 20px;
    flex-wrap: wrap;
}

#modalEnquiryForm .modal-body {
    height: auto;
    padding-left: 16px;
}

#modalEnquiryForm .modal-footer {
    background-color: #19afe6;
}

#modalEnquiryForm #gform_submit_button_1 {
    border: none;
    background-color: #96bb34;
    color: white;
    padding: 5px 12px;
    border-radius: 6px;
}

#modalEnquiryForm .gform_legacy_markup_wrapper {
    margin-top: -15px;
    margin-bottom: 0px;
}

#modalEnquiryForm {
    font-size: 11px;
    padding-left: 10px;
}

#modalEnquiryForm #input_1_8 {
    height: 100px;
}

#modalEnquiryForm #gfield {
    margin-top: 0px;
}

#modalEnquiryForm .gfield-choice-input {
    margin: 0;
}

#modalEnquiryForm ul li.gfield {
    margin-top: 0 !important;
    padding-right: 16px;
}

.tcBtn {
    text-decoration: none;
}

/* == Tutorial modal ===*/

#tandcModal .modal-header {
    background-color: #96bb34;
    padding: 14px 50px 14px 20px;
    flex-wrap: wrap;
}

#tandcModal .modal-body {
    height: auto;
    padding: 40px;
    text-align: left;
}

#tandcModal .modal-footer {
    background-color: #19afe6;
}

#tandcModal .carousel-control-prev {
    left: -105px;
}

#tandcModal .carousel-control-next {
    right: -105px;
}

#tandcModal .carousel {
    height: calc(100% - 20px);
}

#tandcModal .carousel-inner {
    display: flex;
    align-items: center;
}

#tandcModal .modal-body h1 {
    font-size: 1rem;
}

#tandcModal .modal-body li {
    font-size: 12px;
    text-decoration: none;
}

#tandcModal .modal-body p {
    font-size: 12px;
}

#tandcModal .modal-body strong {
    font-size: 12px;
    text-decoration: none;
}

#tandcModal .modal-body ol {
    font-size: 12px;
    text-decoration: none;
}

/* PP Modal */

#privacyPolicyModal .modal-header {
    background-color: #96bb34;
    padding: 14px 50px 14px 20px;
    flex-wrap: wrap;
}

#privacyPolicyModal .modal-body {
    height: auto;
    padding: 40px;
    text-align: left;
}

#privacyPolicyModal .modal-footer {
    background-color: #19afe6;
}

#privacyPolicyModal .carousel-control-prev {
    left: -105px;
}

#privacyPolicyModal .carousel-control-next {
    right: -105px;
}

#privacyPolicyModal .carousel {
    height: calc(100% - 20px);
}

#privacyPolicyModal .carousel-inner {
    display: flex;
    align-items: center;
}

#privacyPolicyModal .modal-body h1 {
    font-size: 1.4rem;
}

#privacyPolicyModal .modal-body h2 {
    font-size: 1.2rem;
}

#privacyPolicyModal .modal-body h3 {
    font-size: 1rem;
}

#privacyPolicyModal .modal-body p {
    font-size: 12px;
}

#privacyPolicyModal .modal-body li {
    font-size: 12px;
}

#viewImageSrc {
    width: 100%;
    object-fit: cover;
}

#viewModal .btn-close {
    position: absolute;
    padding: 7px;
    color: white;
    right: 1px;
    top: 1px;
    font-size: 12px;
}

#viewModal .btn-close:focus {
    border: none !important;
    border-width: 0 !important;
    border-style: none !important;
    border-color: transparent !important;
    border-image: none !important;
    outline: none !important;
    box-shadow: none;
}

#viewModal .btn-close:focus-visible {
    border: none !important;
        border-width: 0 !important;
        border-style: none !important;
        border-color: transparent !important;
        border-image: none !important;
        outline: none !important;
        box-shadow: none;
}

#viewModal iframe {
    height: 75vh !important;
}