/* Regular */
@font-face {
    font-family: 'Proxima Nova';
    src: url('../assets/fonts/ProximaNovaRegular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Bold */
@font-face {
    font-family: 'Proxima Nova';
    src: url('../assets/fonts/ProximaNovaBold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Black */
@font-face {
    font-family: 'Proxima Nova';
    src: url('../assets/fonts/ProximaNovaBlack.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --purple: #532f8c;
    --pink: #d8176d;
    --yellow: #ffc600;
    --cyan: #10cfc9;
    --green: #00ae42;
    --light: rgba(243, 246, 255, 0.9);
}

body {
    background: #F4F7FF;
    font-family: 'Proxima Nova';
}

/* HEADER */

.dashboard-header {
    background: #6d33b9;
    display: flex;
    align-items: center;
    margin-top: 25px;
    width: 100% !important;
}

.header-container {
    max-width: 1560px !important;
    margin-inline: auto;
    width: 100% !important;
    display: flex;
    align-items: center;
    position: relative;
}

.logo-box {
    width: 110px;
    margin-left: 25px;
    position: absolute;
    left: 0;
}

.logo-box img {
    width: 100%;
}

.title-bar {
    flex: 1;
    color: #fff;
    padding: 22px 40px;
    padding-left: 180px;
    font-weight: 500;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
}

/* CARD */

.dashboard-card {

    display: flex;

    align-items: center;

    padding: 28px;

    margin-bottom: 25px;

    color: #fff;

    border-radius: 2px;
}

.icon-box {

    width: 135px;

    height: 121px;

    background: rgba(255, 255, 255, .08);

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 6px;

    margin-right: 25px;
}

.icon-box.blue {
    background: #154587;
}

.icon-box.cyan {
    background: #16B8B3;
}

.icon-box.green {
    background: #07983E;
}

.icon-box.pink {
    background: #D01B6A;
}

.content {

    flex: 1;
}

.content h2 {

    font-size: 30px;

    font-weight: 700;

    margin-bottom: 10px;
}

.content p {

    font-size: 18px;

    line-height: 25px;
}


/* Arrow */

.arrow-btn {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 38px;
    transition: .3s;
}

.arrow-btn:hover {
    background: #fff;
    color: #000;
}


/* Colors */

.bg-blue {
    background: #183667;
}

.bg-cyan {
    background: #10CFC9;
}

.bg-green {
    background: #00AE42;
}

.bg-pink {

    background: #E81F76;
}


/* Button */

.return-btn {
    background: #532f8c;
    border: none;
    font-size: 18px;
    padding: 10px 30px;
    font-weight: 500;
    color: #fff;
}

.return-btn:hover {
    background: #3b1b6e;
    color: #fff;
}

/* TOP STRIP */
.top-strip {
    height: 6px;
    display: flex;
}

.top-strip::before,
.top-strip::after,
.top-strip span {
    content: "";
    display: block;
    height: 100%;
    width: 33.33%;
}

.top-strip::before {
    background: #d8176d;
    /* Pink */
}

.top-strip span {
    background: #ffc600;
    /* Yellow */
}

.top-strip::after {
    background: #10cfc9;
    /* Cyan */
}


/* Services cards css */

.cs-service-card {
    background: #fff;
    padding: 24px 22px;
    min-height: 190px;
    transition: .35s ease;
    border: 1px solid #edf0f5;
}

.cs-service-card-active {
    background: #213d74;
    color: #fff;
}

.cs-service-icon {
    margin-bottom: 18px;
    color: inherit;
}

.cs-service-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.cs-service-text {
    font-size: 16px;
    line-height: normal;
    margin: 0;
    color: rgba(134, 134, 134, 0.9) !important;
}

.cs-service-card-active .cs-service-text {
    color: #fff !important;
}

.cs-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, .08);
}

.cs-services-section .container {
    padding-left: 0;
    padding-right: 0;
}

.cs-services-section .row {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
    margin-left: 0;
    margin-right: 0;
}

.cs-services-section .row>div {
    padding-left: 12px;
    padding-right: 12px;
}

.cs-services-section .row>div:first-child {
    padding-left: 0;
}

.cs-services-section .row>div:last-child {
    padding-right: 0;
}

@media (max-width:991.98px) {
    .cs-service-card {
        min-height: auto;
    }
}

@media (max-width:575.98px) {
    .cs-service-card {
        padding: 20px;
    }

    .cs-service-title {
        font-size: 16px;
    }

    .cs-service-text {
        font-size 12px;
    }
}

/* End */

/* City of LV */

.lv-kpi-section {
    padding: 40px 20px;
    background: #ffffff;
    margin-bottom: 48px;
}

.lv-kpi-heading {
    font-size: 24px;
    font-weight: 700;
    color: #363636;
    text-transform: uppercase;
    margin: 0;
}

.lv-kpi-card {
    background: #fff;
    border: 1px solid #E3E0D4;
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    transition: .3s;
}

.lv-kpi-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.lv-kpi-year {
    font-size: 14px;
    color: #868686;
    font-weight: 700;
}

.lv-kpi-status {
    margin-right: -11px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 46, 109, 0.1);
    border-radius: 30px;
    padding: 4px 8px;
    font-size: 12px;
    color: #5E5E5E;
    font-weight: 400;
    margin-top: -10px;
}

.lv-kpi-dot {
    width: 12px;
    height: 2px;
    border-radius: 0;
    background: #5E5E5E;
}

.lv-kpi-number {
    font-size: 30px;
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: normal;
}

.lv-kpi-progress {
    font-size: 17px;
    font-weight: 600;
    color: #666;
    margin: 0 0 8px;
}

.lv-kpi-title {
    font-size: 16px;
    color: #868686;
    line-height: normal;
}

.lv-kpi-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 120px;
    background: #305689;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: .3s;
}

.lv-kpi-btn:hover {
    background: #1f3f70;
    color: #fff;
}

@media(max-width:991px) {

    .lv-kpi-heading {
        font-size: 20px;
    }

    .lv-kpi-number {
        font-size: 34px;
    }
}

@media(max-width:767px) {

    .lv-kpi-section {
        padding: 40px 20px;
    }

    .lv-kpi-heading {
        font-size: 18px;
        text-align: center;
    }

    .lv-kpi-btn {
        width: 100%;
        padding: 10px 40px;
    }
}

/* End */

/* Crash Statistics css */

.lv-chart-section {
    background: #ffffff;
    padding: 40px 20px;
}

.lv-chart-heading {
    font-size: 24px;
    font-weight: 700;
    color: #363636;
    margin-bottom: 18px;
    text-transform: uppercase;
}


/*====================================
    Sidebar
====================================*/

.lv-filter-box {
    background: #F4F7FF;
    border: 1px solid #E3E0D4;
    border-radius: 10px;
    overflow: hidden;
}

.lv-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: #edf2fb;
    border-bottom: 1px solid #dfe5ef;
    cursor: pointer;
}

.lv-filter-header span {
    font-size: 16px;
    font-weight: 700;
    color: #363636;
}

.lv-filter-header svg {
    width: 12px;
    height: 12px;
    color: #4c566a;
}

.lv-filter-body {
    padding: 18px;
}


/*====================================
    Checkbox
====================================*/

.lv-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    margin-bottom: 14px;
    font-size: 16px;
    color: #002E6D;
    user-select: none;
}

.lv-checkbox:last-child {
    margin-bottom: 0;
}

.lv-checkbox input {
    display: none;
}

.lv-checkbox span {

    width: 16px;
    height: 16px;
    border: 1.5px solid #9ba8bc;
    border-radius: 2px;
    margin-right: 10px;
    position: relative;
    transition: .3s;
    flex-shrink: 0;
}

.lv-checkbox input:checked+span {
    border-color: #24497d;
    background: #24497d;
}

.lv-checkbox input:checked+span::after {

    content: "";
    position: absolute;
    left: 4px;
    top: 1px;

    width: 5px;
    height: 9px;

    border: solid #fff;
    border-width: 0 2px 2px 0;

    transform: rotate(45deg);

}


/*====================================
    Chart Card
====================================*/

.lv-chart-card {

    background: #fff;

    border: 1px solid #E3E0D4;

    border-radius: 8px;

    padding: 28px;

    height: 100%;
}

.lv-chart-title {
    text-align: center;
    font-size: 24px;
    color: #002E6D;
    font-weight: 700;
    margin-bottom: 20px;
}

.lv-chart-wrapper {

    position: relative;

    width: 100%;

    height: 420px;
}


/*====================================
    Hover
====================================*/

.lv-filter-box,
.lv-chart-card {

    transition: .35s ease;
}

.lv-filter-box:hover,
.lv-chart-card:hover {

    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
}


/*====================================
    Tablet
====================================*/

@media (max-width:991px) {

    .lv-chart-section {

        padding: 50px 0;
    }

    .lv-chart-heading {

        font-size: 22px;
    }

    .lv-chart-card {

        padding: 22px;
    }

    .lv-chart-wrapper {

        height: 360px;
    }

}


/*====================================
    Mobile
====================================*/

@media (max-width:767px) {

    .lv-chart-section {

        padding: 40px 0;
    }

    .lv-chart-heading {

        font-size: 22px;

        margin-bottom: 25px;
    }

    .lv-filter-box {

        margin-bottom: 20px;
    }

    .lv-chart-card {

        padding: 18px;
    }

    .lv-chart-title {

        font-size: 18px;
    }

    .lv-chart-wrapper {

        height: 300px;
    }

    .lv-filter-header {

        padding: 12px 16px;
    }

    .lv-filter-body {

        padding: 16px;
    }

    .lv-checkbox {

        font-size: 13px;
    }

}


/*====================================
    Small Mobile
====================================*/

@media (max-width:575px) {

    .lv-chart-heading {

        font-size: 20px;
    }

    .lv-chart-wrapper {

        height: 260px;
    }

}

/* End */

/* cite of LV 2 css */

/* Card */

.kpi-card {
    border: 1px solid #dedede;
    border-radius: 8px;
    padding: 18px 20px;
    background: #fff;
    height: 100%;
}

.kpi-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.kpi-year {
    font-size: 12px;
    color: #8d8d8d;
    font-weight: 600;
}

/* Status */

.kpi-status {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f2f4f7;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    color: #888;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #c7c7c7;
    border-radius: 50%;
}

/* Number */

.kpi-number {
    font-size: 46px;
    font-weight: 700;
    color: #1f1f1f;
    line-height: 1;
    margin-bottom: 6px;
}

/* Progress */

.kpi-progress {
    font-size: 20px;
    font-weight: 600;
    color: #666;
    margin-bottom: 6px;
}

/* Common Text */

.kpi-text {
    font-size: 14px;
    color: #8d8d8d;
    margin: 0;
}

/* Button */

.kpi-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 300px;
    height: 44px;
    background: #315487;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    transition: .3s;
}

.kpi-btn:hover {
    background: #27456f;
    color: #fff;
}

/* Responsive */

@media(max-width:991px) {

    .kpi-number {
        font-size: 38px;
    }

    .lv-kpi-heading {
        font-size: 24px;
    }

}

@media(max-width:767px) {

    .lv-kpi-heading {
        font-size: 20px;
        text-align: center;
    }

    .kpi-btn {
        width: 100%;
    }

    .cs-services-section .row>div {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

}

/* End */

/* tabs css */

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.cs-service-card {
    cursor: pointer;
}

.cs-service-card-active .cs-service-icon img {
    filter: invert(1);
}

/* End Public safety css */

/* Health care page css */

.cs-service-card-health-active {
    background: #10CFC9;
    color: #fff;
}

.cs-service-card-health-active .cs-service-text {
    color: #fff !important;
}

.cs-service-card-health-active .cs-service-icon img {
    filter: brightness(0) invert(1);
}

span.lv-kpi-status.lv-kpi-status-success {
    background: rgba(7, 152, 62, 0.1);
    color: #07983E !important;
}

span.lv-kpi-dot.lv-kpi-dot-success {
    background-color: #07983E !important;
}

.lv-kpi-btn-cyan {
    background: #10CFC9;
}

.lv-kpi-btn-cyan:hover {
    background: #0DBDB8;
    color: #fff;
}

.lv-kpi-card-cyan {
    background: #10CFC9;
    border: none;
    border-radius: 0px !important;
    padding: 22px 20px;
}

.lv-kpi-card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 100%;
}

.lv-kpi-location {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.lv-kpi-value {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
}

.lv-kpi-image img {
    /* max-width:95px; */
    width: 100%;
    height: auto;
}

.hc-employment-section {
    background: #fff;
    padding: 40px 20px;
    margin-bottom: 48px;
}

.hc-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #363636;
    text-transform: uppercase;
    margin: 0;
}

/* Select */

.hc-select {
    height: 46px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    box-shadow: none;
    font-size: 14px;
}

.hc-select:focus {
    box-shadow: none;
}

/* Grid */

.hc-job-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
}

/* Card */

.hc-job-card {
    position: relative;
    background: #10CFC9;
    color: #fff;
    padding: 18px;
    min-height: 120px;
    transition: .3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hc-job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.hc-rank {
    position: absolute;
    right: 6px;
    top: 6px;
    font-size: 50px;
    font-weight: 700;
    color: rgba(255, 255, 255, .35);
    line-height: 1;
}

.hc-job-title {
    font-size: 14px;
    line-height: normal;
    text-transform: uppercase;
    font-weight: 700;
    max-width: 80%;
}

.hc-job-count {
    margin: 0;
    font-size: 40px;
    line-height: 1;
    font-weight: 700;
}

/* Laptop */

@media (max-width:1199px) {

    .hc-job-grid {
        grid-template-columns: repeat(4, 1fr);
    }

}

/* Tablet */

@media (max-width:991px) {

    .hc-job-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* Mobile */

@media (max-width:767px) {

    .hc-job-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hc-section-title {
        font-size: 20px;
    }

    .hc-job-count {
        font-size: 32px;
    }

}

/* Small Mobile */

@media (max-width:575px) {

    .hc-job-grid {
        grid-template-columns: 1fr;
    }

    .hc-job-card {
        min-height: auto;
    }

    .hc-job-count {
        font-size: 28px;
    }

    .hc-rank {
        font-size: 30px;
    }

}

@media (max-width:767px) {

    .lv-kpi-card-content {
        flex-direction: column;
        text-align: center;
    }

    .lv-kpi-image img {
        /* max-width:80px; */
    }

    .lv-kpi-value {
        font-size: 30px;
    }

}

/*==============================
    Workforce Shortage Section
==============================*/

.wf-shortage-section {
    padding: 40px 20px;
    background: #fff;
}

.wf-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #363636;
    text-transform: uppercase;
    margin: 0;
}

/*==============================
        Chart Card
==============================*/

.wf-chart-card {
    background: #fff;
    border: 1px solid #d8dee8;
    border-radius: 6px;
    padding: 22px;
    height: 100%;
    transition: .3s;
}

.wf-chart-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

/*==============================
        Chart Title
==============================*/

.wf-chart-title {
    text-align: center;
    color: #0B0B0B;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 25px;
    max-width: 470px;
    margin-left: auto;
    margin-right: auto;
}

/*==============================
      Chart Wrapper
==============================*/

.wf-chart-wrapper {
    position: relative;
    width: 100%;
    height: 420px;
}

/* Canvas */

.wf-chart-wrapper canvas {
    width: 100% !important;
    height: 100% !important;
}

/*==============================
      Responsive
==============================*/

@media(max-width:1199px) {

    .wf-chart-wrapper {
        height: 390px;
    }

}

@media(max-width:991px) {

    .wf-shortage-section {
        padding: 40px 20px;
    }

    .wf-section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .wf-chart-title {
        font-size: 15px;
    }

    .wf-chart-wrapper {
        height: 360px;
    }

    .cs-services-section .row>div:first-child {
        padding-left: 0;
        padding-right: 0px !important;
    }

    .cs-services-section .row>div:last-child {
        padding-right: 0;
        padding-left: 0px !important;
    }

}

@media(max-width:767px) {

    .wf-shortage-section {
        padding: 30px 20px;
    }

    .wf-section-title {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .wf-chart-card {
        padding: 18px;
    }

    .wf-chart-title {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .wf-chart-wrapper {
        height: 320px;
    }

    .cs-services-section .row>div:first-child {
        padding-left: 0;
        padding-right: 0px !important;
    }

    .cs-services-section .row>div:last-child {
        padding-right: 0;
        padding-left: 0px !important;
    }

}

@media(max-width:575px) {

    .wf-section-title {
        font-size: 18px;
    }

    .wf-chart-card {
        padding: 15px;
        border-radius: 4px;
    }

    .wf-chart-title {
        font-size: 13px;
        line-height: 1.5;
    }

    .wf-chart-wrapper {
        height: 280px;
    }

}


/*==================================
        Crime Statistics Section
==================================*/

.crime-stats-section {
    padding: 40px 20px;
    background: #fff;
    margin-bottom: 48px;
}

.crime-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 35px;
}

/*==================================
        Filter Card
==================================*/

.crime-filter-card {
    background: #F5F7FC;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    overflow: hidden;
    /* height: 100%; */
}

.crime-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: #F3F6FB;
    border-bottom: 1px solid #DCE4EF;
    font-size: 16px;
    font-weight: 700;
    color: #363636;
    text-transform: uppercase;
    cursor: pointer;
}

.crime-filter-body {
    padding: 16px;
}

/*==================================
        Checkbox
==================================*/

.crime-check {
    display: flex;
    align-items: self-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #363636;
    cursor: pointer;
}

.crime-check input {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/*==================================
        Chart Card
==================================*/

.crime-chart-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    padding: 22px;
    height: 100%;
}

.crime-chart-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #002E6D;
    margin-bottom: 20px;
}

.crime-chart-wrapper {
    position: relative;
    width: 100%;
    height: 480px;
}

.crime-chart-wrapper canvas {
    width: 100% !important;
    height: 100% !important;
}

/*==================================
        Responsive
==================================*/

@media(max-width:991px) {

    .crime-section-title {
        font-size: 24px;
    }

    .crime-filter-card {
        margin-bottom: 25px;
    }

    .crime-chart-wrapper {
        height: 420px;
    }

}

@media(max-width:767px) {

    .crime-stats-section {
        padding: 40px 20px;
    }

    .crime-section-title {
        font-size: 20px;
        line-height: 1.5;
    }

    .crime-chart-card {
        padding: 18px;
    }

    .crime-chart-title {
        font-size: 18px;
    }

    .crime-chart-wrapper {
        height: 340px;
    }

}

@media(max-width:575px) {

    .crime-chart-wrapper {
        height: 300px;
    }

    .crime-filter-body {
        padding: 14px;
    }

    .crime-check {
        font-size: 14px;
    }

}

/* overview css */
.acute-care-card {
    background: #10CFC9;
    border: none;
    border-radius: 0;
    min-height: 100px;
}

.acute-care-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.acute-care-value {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    line-height: normal;
}

.acute-care-icon {
    text-align: center;
}

.acute-care-icon img {
    width: 100%;
    height: auto;
    background-blend-mode: screen;
    object-fit: contain;
    mix-blend-mode: screen;
}

@media(max-width:767px) {

    .acute-care-value {
        font-size: 30px;
    }
}

/* city of lv css */

.mental-kpi-year {
    font-size: 14px;
    color: #868686;
    font-weight: 700;
}

.mental-kpi-number {
    font-size: 30px;
    font-weight: 700;
    color: #070707;
    margin: 0;
    line-height: normal;
}

.mental-kpi-title {
    font-size: 16px;
    color: #868686;
    line-height: normal;
}

.mental-kpi-progress {
    font-size: 17px;
    font-weight: 700;
    color: #868686;
    margin-bottom: 6px;
}

@media(max-width:991px) {

    .mental-kpi-number {
        font-size: 26px;
    }

}

@media(max-width:767px) {

    .mental-kpi-number {
        font-size: 26px;
    }

    .mental-kpi-title {
        font-size: 13px;
    }

    .mental-kpi-progress {
        font-size: 16px;
    }

}

/*==================================
    Community Health Profile
==================================*/

.community-health-section {
    padding: 40px 20px;
    background: #fff;
}

.community-health-heading {
    font-size: 24px;
    font-weight: 700;
    color: #363636;
    text-transform: uppercase;
    margin: 0;
}

/*==============================
        Filter Card
==============================*/

.community-filter-card {
    background: #F5F7FC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    overflow: hidden;
}

.community-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: #F3F6FB;
    border-bottom: 1px solid #DCE4EF;
    font-size: 16px;
    font-weight: 700;
    color: #363636;
    text-transform: uppercase;
    cursor: pointer;
}

.community-filter-body {
    padding: 14px 16px;
}

/*==============================
        Default Checkbox
==============================*/

.community-check {
    display: flex;
    align-items: self-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #363636;
    cursor: pointer;
}

.community-check:last-child {
    margin-bottom: 0;
}

.community-check input {
    width: 15px;
    height: 15px;
    cursor: pointer;
    margin-top: 5px;
}

/*==============================
        Chart Card
==============================*/

.community-chart-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 24px;
    height: 100%;
}

.community-chart-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #002E6D;
    margin-bottom: 25px;
}

.community-chart-wrapper {
    position: relative;
    width: 100%;
    height: 520px;
}

.community-chart-wrapper canvas {
    width: 100% !important;
    height: 100% !important;
}

/*==============================
        Responsive
==============================*/

@media (max-width:991px) {

    .community-filter-card {
        margin-bottom: 20px;
    }

    .community-chart-wrapper {
        height: 450px;
    }

}

@media (max-width:767px) {

    .community-health-section {
        padding: 40px 20px;
    }

    .community-health-heading {
        font-size: 22px;
        margin-bottom: 25px;
        line-height: 1.5;
    }

    .community-chart-card {
        padding: 10px;
    }

    .community-chart-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .community-chart-wrapper {
        height: 360px;
    }

}

@media (max-width:575px) {

    .community-health-heading {
        font-size: 18px;
    }

    .community-filter-header {
        padding: 12px 14px;
        font-size: 14px;
    }

    .community-filter-body {
        padding: 12px 14px;
    }

    .community-check {
        font-size: 14px;
    }

    .community-chart-title {
        font-size: 20px;
    }

    .community-chart-wrapper {
        height: 300px;
    }
    .lv-kpi-btn {
        padding: 10px 30px !important;
    }

}

/* End health care css */

/* Hide inactive tabs */
.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Animate direct sections */
.tab-pane>section {
    opacity: 0;
    transform: translateY(24px);
}

.tab-pane.active>section {
    animation: fadeUp .7s ease forwards;
}

/* Smooth stagger */
.tab-pane.active>section:nth-child(1) {
    animation-delay: .05s;
}

.tab-pane.active>section:nth-child(2) {
    animation-delay: .15s;
}

.tab-pane.active>section:nth-child(3) {
    animation-delay: .25s;
}

.tab-pane.active>section:nth-child(4) {
    animation-delay: .35s;
}

.tab-pane.active>section:nth-child(5) {
    animation-delay: .45s;
}

.tab-pane.active>section:nth-child(6) {
    animation-delay: .55s;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.community-filter-body {
    max-height: 500px;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
}

.community-filter-card.collapsed .community-filter-body {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.community-filter-arrow {
    transition: transform .35s ease;
}

.community-filter-card.collapsed .community-filter-arrow {
    transform: rotate(-90deg);
}

/* ECONOMIC DEVELOPMENT page css */
.economic-development-cards-active {
    background: #00AE42;
    color: #fff;
}

.economic-development-cards-active .cs-service-text {
    color: #fff !important;
}

.economic-development-cards-active .cs-service-icon img {
    filter: brightness(0) invert(1);
}

@media (min-width: 992px) {

    .economic-development-row>[class*="col-"] {
        flex: 0 0 20%;
        max-width: 20%;
    }

}

@media (min-width: 768px) and (max-width: 991.98px) {

    .economic-development-row>[class*="col-"] {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

}

.economic-tab-pane {
    display: none;
}

.economic-tab-pane.active {
    display: block;
}

.economic-btn {
    background: #00AE42;
}

.economic-btn:hover {
    background: #00953A;
}

/*==============================
 Capital Projects Section
==============================*/

.capital-project-section {
    padding: 60px 0;
}

.capital-project-heading {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 35px;
}

/* Left Filter */

.capital-filter-card {
    background: #F5F7FC;
    border: 1px solid #E4EAF3;
    border-radius: 8px;
    overflow: hidden;
}

.capital-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    cursor: pointer;
    border-bottom: 1px solid #DCE4EF;
    font-weight: 700;
    font-size: 14px;
    color: #333;
}

.capital-filter-header svg {
    transition: .35s;
}

.capital-filter-body {
    padding: 8px 18px 14px;
    transition: .35s;
}

.capital-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #555;
    padding: 8px 0;
    cursor: pointer;
}

.capital-check input {
    width: 16px;
    height: 16px;
}

/* Collapse */

.community-filter-card.collapsed .community-filter-body {
    display: none;
}

.community-filter-card.collapsed .community-filter-header svg {
    transform: rotate(-90deg);
}

.community-filter-header svg {
    transition: .35s;
}

/* Chart */

.capital-chart-card {
    background: #fff;
    border: 1px solid #E4EAF3;
    border-radius: 10px;
    padding: 22px;
    height: 100%;
}

.capital-chart-title {
    text-align: center;
    color: #153C7A;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.capital-chart-wrapper {
    position: relative;
    height: 520px;
}

/* Responsive */

@media (max-width:991px) {

    .capital-chart-wrapper {
        height: 420px;
    }

}

@media (max-width:767px) {

    .capital-project-section {
        padding: 40px 0;
    }

    .capital-chart-card {
        padding: 18px;
    }

    .capital-chart-title {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .capital-chart-wrapper {
        height: 340px;
    }

}

@media (max-width:575px) {

    .capital-chart-wrapper {
        height: 280px;
    }

    .capital-filter-header {
        padding: 12px 15px;
    }

    .capital-filter-body {
        padding: 10px 15px;
    }

}

/* ===============================
Employment Diversity
=============================== */

.employment-diversity-heading {
    font-size: 24px;
    font-weight: 700;
    color: rgb(54, 54, 54);
    text-transform: uppercase;
    margin: 0px;
}

.employment-filter-card {

    background: #F5F7FC;
    border: 1px solid #E5EAF3;
    border-radius: 8px;
    overflow: hidden;

}

.employment-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: #F3F6FB;
    border-bottom: 1px solid #DCE4EF;
    font-size: 16px;
    font-weight: 700;
    color: #363636;
    text-transform: uppercase;
    cursor: pointer;

}

.employment-filter-arrow {

    transition: .35s;

}

.employment-filter-body {

    padding: 10px 18px;

}

.employment-check {
    display: flex;
    align-items: self-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #363636;
    cursor: pointer;
}

.employment-check input {

    width: 15px;
    height: 15px;
    margin-top: 5px;
}

.employment-filter-card.collapsed .employment-filter-body {

    display: none;

}

.employment-filter-card.collapsed .employment-filter-arrow {

    transform: rotate(-90deg);

}

.employment-chart-card {

    background: #fff;
    border: 1px solid #E5EAF3;
    border-radius: 8px;
    padding: 22px;

}

.employment-chart-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #002E6D;
    margin-bottom: 25px;
}

.employment-chart-wrapper {

    position: relative;
    height: 420px;

}

h2.employment-industry-heading {
    font-size: 24px;
    font-weight: 700;
    color: rgb(54, 54, 54);
    text-transform: uppercase;
    margin: 0px;
}

.employment-industry-card {
    background: #fff;
    border: 1px solid #E5EAF3;
    border-radius: 8px;
    padding: 22px;
    text-align: center;
}

h3.employment-industry-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #002E6D;
    margin-bottom: 25px;
}

@media(max-width:991px) {

    .employment-chart-wrapper {

        height: 360px;

    }

}

@media(max-width:767px) {

    .employment-chart-wrapper {

        height: 300px;

    }

}

.business-license-heading {
    font-size: 24px;
    font-weight: 700;
    color: rgb(54, 54, 54);
    text-transform: uppercase;
    margin: 0px;
}

.business-license-filter-card {

    background: #F5F7FC;
    border: 1px solid #E5EAF3;
    border-radius: 8px;
    overflow: hidden;

}

.business-license-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: #F3F6FB;
    border-bottom: 1px solid #DCE4EF;
    font-size: 16px;
    font-weight: 700;
    color: #363636;
    text-transform: uppercase;
    cursor: pointer;
}

.business-license-arrow {

    transition: .35s;

}

.business-license-filter-body {

    padding: 10px 18px;

}

.business-license-check {
    display: flex;
    align-items: self-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #363636;
    cursor: pointer;
}

.business-license-check input {
    width: 15px;
    height: 15px;
    margin-top: 5px;
}

.business-license-filter-card.collapsed .business-license-filter-body {

    display: none;

}

.business-license-filter-card.collapsed .business-license-arrow {

    transform: rotate(-90deg);

}

.business-license-chart-card {

    background: #fff;
    border: 1px solid #E5EAF3;
    border-radius: 8px;
    padding: 22px;

}

.business-license-chart-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #002E6D;
    margin-bottom: 25px;
}

.business-license-chart-wrapper {

    position: relative;
    height: 330px;

}

@media(max-width:991px) {

    .business-license-chart-wrapper {

        height: 280px;

    }

}

@media(max-width:767px) {

    .business-license-heading {

        font-size: 22px;

    }

    .business-license-chart-card {

        padding: 18px;

    }

    .business-license-chart-wrapper {

        height: 240px;
        margin-bottom: 20px;

    }

}

section.employment-diversity-section {
    background: #fff;
    padding: 40px 20px;
    margin-bottom: 48px;
}

section.employment-industry-section {
    background: #fff;
    padding: 40px 20px;
    margin-bottom: 48px;
}

section.employment-wages-section {
    background: #fff;
    padding: 40px 20px;
    margin-bottom: 48px;
}

section.business-license-section {
    background: #fff;
    padding: 40px 20px;
}

.commercial-market {
    background: #00AE42;
    border: none;
    border-radius: 0;
    min-height: 100px;
}

/* End ECONOMIC DEVELOPMENT page css */

/* housing page css */

.housing-cards-active {
    background: #E81F76;
    color: #fff;
}

.housing-cards-active .cs-service-text {
    color: #fff !important;
}

.housing-cards-active .cs-service-icon img {
    filter: brightness(0) invert(1);
}

.housing-btn {
    background: #E81F76;
    color: #fff;
}

.housing-btn:hover {
    background: #cf0f65;
    color: #fff;
}

/*=============================
  Median Home Sales Section
=============================*/

.median-home-section {
    background: #fff;
    padding: 40px 20px;
    margin-bottom: 48px;
}

.median-home-title {
    font-size: 24px;
    font-weight: 700;
    color: #363636;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.median-filter-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #3D3B3B;
    font-weight: 400;
}

.median-select {
    height: 46px;
    border: 1px solid #DCE3EE;
    border-radius: 8px;
    font-size: 14px;
    color: #444;
    box-shadow: none;
}

.median-select:focus {
    border-color: #E81F76;
    box-shadow: 0 0 0 .15rem rgba(232, 31, 118, .15);
}

.median-chart-card {
    background: #fff;
    border: 1px solid #E9EDF5;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(20, 30, 55, .05);
}

.median-chart-wrapper {
    position: relative;
    height: 420px;
}

/*=============================
  Responsive
=============================*/

@media (max-width:991px) {

    .median-home-title {
        font-size: 21px;
    }

    .median-chart-wrapper {
        height: 360px;
    }

}

@media (max-width:767px) {

    .median-home-section {
        padding: 40px 20px;
    }

    .median-home-title {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .median-chart-card {
        padding: 10px;
    }

    .median-chart-wrapper {
        height: 300px;
    }

}

@media (max-width:575px) {

    .median-chart-wrapper {
        height: 260px;
    }

    .median-select {
        height: 44px;
        font-size: 13px;
    }

}

.home-sales-section {

    background: #fff;
    padding: 40px 20px;
    margin-bottom: 48px;

}

.home-sales-title {

    font-size: 24px;

    font-weight: 700;

    text-transform: uppercase;

    text-align: center;

    margin-bottom: 10px;

}

@media(max-width:768px) {

    .home-sales-title {

        font-size: 19px;

    }

}

.homeownership-rate {
    background: #cf0f65;
    border: none;
    border-radius: 0;
    min-height: 100px;
}

/*=============================
Median Household Income
==============================*/

.median-income-section {

    background: #fff;
    padding: 40px 20px;

}

.median-income-title {

    text-align: center;

    font-size: 24px;

    font-weight: 700;

    text-transform: uppercase;

    color: #2C2C2C;

}

.median-income-card {

    background: #fff;

    border: 1px solid #ECEFF5;

    border-radius: 12px;

    padding: 25px;

}

.median-income-chart {

    position: relative;

    height: 430px;

}

@media(max-width:991px) {

    .median-income-chart {

        height: 360px;

    }

}

@media(max-width:767px) {

    .median-income-title {

        font-size: 18px;

        line-height: 1.5;

    }

    .median-income-card {

        padding: 10px;

    }

    .median-income-chart {

        height: 300px;

    }

}

/* End housing page css */

/* FOOTER */
.footer {
    padding: 50px 0px 0px 0px;
}

.footer .purpleWrapper {
    margin-top: 20px;
    background: var(--purple);
    color: #fff;
    text-align: center;
    padding: 30px;
}

.footer .purpleWrapper h4 {
    font-size: 16px;
    font-weight: 400;
}

.footer .purpleWrapper p {
    font-size: 14px;
    margin-bottom: 0px;
}

p.copyRight {
    font-size: 14px;
    margin: 0px;
    padding: 15px 10px;
}

/* footer */
/* Responsive */

@media(max-width:991px) {

    .dashboard-card {
        flex-direction: column;
        text-align: center;
    }

    .icon-box {
        margin: 0 0 20px;
    }

    .arrow-btn {
        margin-top: 20px;
    }

    .content h2 {
        font-size: 26px;
    }

    .content p {

        font-size: 16px !important;
        line-height: normal !important;
    }

    .title-bar {
        font-size: 20px;
    }

}

@media screen and (max-width: 768px) {
    .return-btn {
        font-size: 15px !important;
    }

    .icon-box {
        width: 85px !important;
        height: 85px !important;
    }

    .icon-box img {
        width: 50px !important;
    }
}

@media(max-width:576px) {

    .dashboard-header {
        flex-direction: column;
    }

    .logo-box {
        margin: 0;
        width: 85px;
    }

    .content h2 {
        font-size: 24px !important;
    }

    .title-bar {
        width: 100%;
        text-align: center;
        padding: 10px;
        padding-left: 100px !important;
        font-size: 16px !important;
        text-align: left !important;
    }

    .icon-box {
        width: 65px !important;
        height: 65px !important;
    }

    .icon-box img {
        width: 33px !important;
    }

    .arrow-btn {
        width: 60px !important;
        height: 60px !important;
        font-size: 26px !important;
        margin-top: 10px !important;
    }

    .dashboard-card {
        padding: 20px;
    }

    .lv-kpi-number {
        font-size: 26px !important;
    }

    .return-btn {
        font-size: 15px !important;
        padding: 10px 14px !important;
    }

    .acute-care-icon img {
        width: 75%;
    }
}

@media screen and (min-width: 992px) and (max-width: 1400px) {
    .arrow-btn {
        margin-left: 20px;
    }
}


/* Filter Collapse */

.lv-filter-body {
    max-height: 500px;
    overflow-y: auto;
    transition: max-height .35s ease, padding .35s ease;
    scrollbar-width: thin;
}

.lv-filter-box.collapsed .lv-filter-body {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.lv-filter-header svg {
    transition: transform .35s ease;
}

.lv-filter-box.collapsed .lv-filter-header svg {
    transform: rotate(-90deg);
}

@media screen and (min-width: 768px) and (min-width: 1024px) {
    .acute-care-value {
        font-size: 34px !important;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {

    .economic-development-row > [class*="col-"] {
        flex: auto !important;
        max-width: 25% !important;
    }

}