@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css);

/* @import url('https://fonts.cdnfonts.com/css/gotham-6'); */
:root {
    --c-primary: #445163;
    --c-secondary: #7F96A8;
    --c-bodycolr: #F5F8FA;
    --c-white: #fff;
    --c-light: #E4E4E4;
    --c-lgray: #EFEFEF;
    --c-gray: #9B9B9B;
    --c-dark: #000;

    /* graph color */
    --c-gold: #E39731;
    --c-green: #2E826B;
    --c-ornge: #EB6B34;
    --c-safron: #35A0A4;


    /* radius border */
    --b-radiussm: 4px;
    --b-radiusmd: 5px;
    --b-radiuslg: 16px;
    /* box shadow variables */
    --button-shadow: 3px 3px 3px #B8B8B8;
    --shadow: 0px 3px 12px #0000000F;
    --card-shadow: 6px 6px 21px hsl(0deg 0% 0% / 22%);
    --whitec-shadow: 6px 6px 21px hsl(0deg 0% 0% / 2%);
    --hding-shadow: 4px 8px 19px rgb(193 190 190 / 18%);
    --drop-shadow: drop-shadow(0px 3px 6px #00000029);

    /* margin variables */
    --m-top: 40px;

    /* font-weight */
    --f-regular: 400;
    --f-medium: 500;
    --f-semibold: 600;
    --f-bold: 700;

    /* transition */
    --transition: all 0.5s ease-in-out;

    /* font-sizes */
    --f-nvsize: 16px;
    --f-hdigsize: 20px;
    --padding: 40px 20px 0;
    --h-logo: 200px;

    /* active nav image */
    --nav-img: url(../images/nav-image.svg);

    /* cards padding */
    --card-pdding: 22px;

}

* {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    font-family: 'Gotham', sans-serif;
}

@font-face {
    font-family: 'Gotham';
    font-family: 'GothamBold';
    src: url('fonts/Gotham-Bold.eot');
    /* IE9 Compat Modes */
    src: url('fonts/Gotham-Bold.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('fonts/Gotham-Bold.woff') format('woff'),
        /* Modern Browsers */
        url('fonts/Gotham-Bold.otf') format('otf'),
        /* Modern Browsers */
        url('fonts/Gotham-Bold.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('fonts/Gotham-Bold.svg#svgFontName') format('svg');
    /* Legacy iOS */
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    font-family: 'GothamMedium';
    src: url('fonts/Gotham-Medium.eot');
    /* IE9 Compat Modes */
    src: url('fonts/Gotham-Medium.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('fonts/Gotham-Medium.woff') format('woff'),
        /* Modern Browsers */
        url('fonts/Gotham-Medium.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('fonts/Gotham-Medium.svg#svgFontName') format('svg');
    /* Legacy iOS */
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    font-family: 'GothamThin';
    src: url('fonts/Gotham-Thin.eot');
    /* IE9 Compat Modes */
    src: url('fonts/Gotham-Thin.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('fonts/Gotham-Thin.woff') format('woff'),
        /* Modern Browsers */
        url('fonts/Gotham-Thin.otf') format('otf'),
        /* Modern Browsers */
        url('fonts/Gotham-Thin.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('fonts/Gotham-Thin.svg#svgFontName') format('svg');
    /* Legacy iOS */
    font-weight: 300;
    font-style: normal;
}

body {
    font-family: 'Gotham', sans-serif;
    background-color: var(--c-bodycolr);
}

.normal {
    font-weight: 400;
}


.bold,
strong {
    font-weight: 700;
}


.light {
    font-weight: 300;
}

.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 100,
        'GRAD' 200,
        'opsz' 24;
    margin-right: 5px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

ol,
ul {
    margin: 0;
    list-style: none;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    background: #f5f8fa;
    border-radius: 20px 20px 0 0;
}

button {
    border: unset;
}

button:is(:hover, :focus) {
    outline: unset;
    border: unset;
}

.itext:focus,
.form-check-input:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

a,
a:hover {
    text-decoration: none;
    display: inline-block;
    color: #FF1C1C;

}

/* header section */
header {

    background: #fff;
}

/* stickey header fixed */
.right-sec.top-header {
    animation-duration: 0.5s;
    transition: 0.5s;
    width: calc(100% - 260px);
}

.is-fixed {
    position: fixed;
    z-index: 9;
    animation-name: stickySlideDown;
    padding: 0;
    transition: none;
}

.blackcolor {
    color: #000;
}

@keyframes stickySlideDown {
    0% {
        opacity: 0.7;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* stickey header fixed END*/

.right-sec {
    margin-left: 260px;
    width: calc(100% - 260px);
    transition: 0.5s;
}

.panel-dropbx {
    min-width: 330px;
    width: 100%;
}

.panel-section {
    align-items: baseline;
}

.panel-dropbx label {
    margin-bottom: .75rem;
}

.fropbx-logo {
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    padding: 7.5px 37px;
    align-items: center;
}

.resid-drop ul li {
    display: inline-block;
}

.resid-drop>ul>li>ul>li {
    width: 100%;
}

.resid-drop>ul>li,
header {
    position: relative;
    transition: var(--transition);
}

.resid-drop>ul>li>a {
    padding: 10px;
    color: #445163;
    font-size: 16px;
    font-weight: 400;
}

.dropdown .dropdown-toggle {
    color: #445163;
    font-size: 18px;
    font-weight: 400;
}

.dropdown-menu.show {
    padding: 0;
}

.colpse-arrow {
    position: fixed;
    top: 47px;
    background: white;
    padding: 2px 11px;
    border-radius: var(--b-radiussm);
    box-shadow: rgb(100 100 111 / 34%) 0px 7px 29px 0px;
    left: 240px;
    transition: 0.5s;
    z-index: 5;
    cursor: pointer;
}

.colpse-arrow2 {
    position: fixed;
    top: 47px;
    background: white;
    padding: 2px 11px;
    border-radius: var(--b-radiussm);
    box-shadow: rgb(100 100 111 / 34%) 0px 7px 29px 0px;
    left: 240px;
    transition: 0.5s;
    z-index: 4;
    display: none;
    cursor: pointer;
}

.resid-drop>ul>li>ul>li a:hover {
    padding-right: 15px;
    background: #7f96a8;
    color: #fff;
}

/* sidebar section ===================================*/
.sidebar-bg {
    background: var(--c-primary);
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 260px;
    /* overflow-y: 0; */
    transition: 0.5s;
    z-index: 99;
}

.btm-nv>li>a,
.top-nv>li>ul>li>a {
    color: #E6E6E6;
    padding: 15px 25px;
    display: block;
    position: relative;
    font-size: 18px;
    font-weight: 400;
}

.top-nv>li>ul>li>a {
    padding: 15px 15px 15px 57px;
    font-size: 15px;
    color: var(--c-lgray);
}

.sidebar-bg .sidbr-logo {
    padding-block: 30px 0px;
}

.sidebar-bg .close-btn {
    display: none;
    position: absolute;
    top: 21px;
    right: 22px;

}

.sidebar-bg .close-btn i {
    font-size: 24px;
    filter: invert(1);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-block: 50px 0px;
    height: calc(100vh - var(--h-logo));
}

.btm-nv-bx h5 {
    color: var(--c-gray);
    font-weight: var(--f-medium);
    font-size: var(--f-nvsize);
    padding-left: 20px;
    margin-bottom: 15px;
}

.nav-active {
    position: relative;
    background: var(--c-bodycolr);
    color: #415364 !important;
    border-left: 3px solid #E39731;

}

.nav-active:after {
    content: '';
    border-bottom-right-radius: 45px;
    position: absolute;
    right: 0px;
    bottom: 0;
    width: 61px;
    height: 61px;
    transition: var(--transition);
    top: -61px;
    box-shadow: 8px 20px #f5f8fa;
    background: transparent;
}

.nav-active::before {
    content: '';
    border-top-right-radius: 45px;
    position: absolute;
    right: 0px;
    width: 61px;
    height: 61px;
    bottom: -61px;
    box-shadow: 11px -16px #f5f8fa;
    background: transparent;
}

.drop_wrap>ul {
    display: none;
    opacity: 1;
    height: 0;

}

html {
    scroll-behavior: smooth;
}

.btm-nv .shownav a,
.btm-nv .shownav>ul>li>a {
    color: var(--c-white);
}

.top-nv>li>a>img {
    vertical-align: middle;
}

/* .top-nv>li> a >img:first-child{display: none;} */
.btm-nv>li>a>img:nth-child(2),
.btm-nv>li>.nav-active>img:first-child {
    display: none;
}

.btm-nv>li>.nav-active>img:nth-child(2) {
    display: inline-block;
}

.btm-nv .shownav>ul>.nav-active a {
    color: var(--c-primary);
}

.drop_wrap.show ul {
    display: block;
    opacity: unset;
    height: unset;
}

.btm-nv>li>a>i {
    transition: var(--transition);
    position: absolute;
    right: 40px;
    display: flex;
    align-items: center;
    top: 0;
    bottom: 0;
}

.btm-nv>.show>a {
    color: var(--c-light);
}

.show>a>i {
    transform: rotate(180deg);
}

.nav-active svg g path {
    stroke: var(--c-primary);
}

.sidbr-logo a img {
    width: min(140px, 198px);
    transition: 0.5s;
}

/* ===========================sidebar small section */
.rotate {
    transform: rotateZ(180deg);
}

.right-sec.top-header.right-sec-large {
    width: calc(100% - 80px);
}

.right-sec-large .colpse-arrow {
    left: 60px;
}

.sidebar-bg-min {
    width: 80px;
    z-index: 99;
}

.sidebar-bg-min .sidebar-nav {
    padding-block: 0px;
    transition: 0.7s;
}

.sidebar-bg-min .colpse-arrow {
    left: 60px;
}

.sidebar-bg-min .sidbr-logo {
    display: block;
    height: 120px;
    padding-block: 10px 0px;
}

.sidebar-bg-min .sidbr-logo a img {
    width: min(100px, 61px);
}

.sidebar-bg-min span.side-title {
    display: none;
}

.sidebar-bg-min .nav-active::after {
    display: none;
}

.sidebar-bg-min .nav-active::before {
    display: none;
}

.right-sec-large {
    margin-left: 80px;
    width: calc(100% - 80px);
}

.colapsede-bar .colpse-arrow {
    transform: rotate(-180deg);
}

/* ===========================right section */
.p-30 {
    padding: var(--padding);
}

.sidbr-logo {
    display: grid;
    place-content: center;
    text-align: center;
    height: var(--h-logo);
}

.grid-item .population-card-box h5 {
    font-size: 40px;
    color: #445163;
    font-weight: 600;
    margin: 0;
}

.grid-item .population-card-box h6 {
    font-size: 18px;
    font-weight: 400;
    color: #7A97AB;
    line-height: 22px;
    margin: 0;
}

.Housing-by-Density {
    margin-top: 20px;
}

.itext,
.itext-one {
    box-shadow: var(--shadow);
    border: none;
    padding-left: 15px;
    border-radius: var(--b-radiusmd);
    font-size: 14px;
    width: 100%;
    height: 50px;
    color: #7F96A8;
    font-weight: 400;
    cursor: pointer;
}

.AMDSB-button button {
    background-color: #415364;
    color: #ffff;
    padding-block: 13px;
    padding-inline: 46px;
    border-radius: 5px;
    box-shadow: var(--button-shadow);
    width: 100%;
}

button:hover,
a:hover {
    opacity: .8;
}

.nav-active:hover {
    opacity: 1;
}

.download-icon:hover {
    opacity: .8;
}

.right-sec .about-us-section,
.right-panel .about-us-section {
    border-radius: 10px;
    margin-top: 20px;
    background-color: #FFFFFF;
    padding-block: 30px;
    padding-inline: 30px;
    box-shadow: var(--whitec-shadow);
    display: flow-root;
}

.about-us-section img {
    float: left;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
    max-width: 250px;
    height: auto;
}

.about-us-section .about-us-left p {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 0;
    color: #445163;
    line-height: 1.49;
}

.about-us-section .about-us-left p span {
    color: #FF1C1C;
}

.map {
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    margin-top: 20px;
    min-height: 350px;
    overflow: hidden;
    z-index: 1;
}

.map>iframe {
    width: 100%;
    height: 100%;
}

/* .population-card */
.population-card {
    color: var(--c-white);
    background: var(--c-primary);
    border-radius: 50px;
    padding-block: 19px;
    padding-inline: 19px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    z-index: 0;
    margin-top: 20px;
}

.population-card::after,
.population-card::before {
    background: url("/static/images/population-topshpe.svg");
    content: '';
    position: absolute;
    right: -1px;
    top: -13px;
    width: 100%;
    height: 88px;
    background-position: right;
    background-repeat: no-repeat;
}

.population-card::before {
    background: url("/static/images/population-btmshpe.svg");
    background-position: left;
    left: 0px;
    bottom: -12px;
    top: inherit;
    background-repeat: no-repeat;

}

.vercal-line {
    height: 100px;
    background: var(--c-light);
    width: 1px;
}

.population-card h4 {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0px
}

.popultion-count-bx span {
    font-size: 30px;
    font-weight: 500;
}

.population-icon {
    padding: 15px 11.5px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.count-iconbx,
.population-bxes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 10px;
}

.popultion-count-bx {
    width: 45%;
}

.left-side-count {
    text-align: center;
}

.popultion-count-bx h5 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 21.5px;
}

.population-card>div:last-child h5 {
    margin-bottom: 0px;
}

/* circle progress bar css */

/* circle progress bar css close*/
.custome-progresbar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
}

.custome-progresbar h6 {
    font-size: 15px;
    font-weight: var(--f-regular);
    margin: 0;
}

.AMDSB-card {
    background: #E6E6E6;
    color: #445163;
}

.population-card.AMDSB-card .vercal-line {
    background: #445163;
}

/* Demographic AJAX legacy fragment bridge: keep old markup, render with new visual system. */
#school_data .exportrow {
    margin-bottom: 20px;
    padding: 14px 20px;
    border-radius: 14px;
    background: #445163;
}

#school_data .exportrow h4 {
    margin: 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
}

/* Export as CSV button sits at the right of the dark school/review banner */
#school_data .exportrow #export_csv {
    flex: 0 0 auto;
    background: #ffffff;
    color: #445163;
    border-radius: 6px;
    padding: 9px 16px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
    transition: opacity .15s ease;
}

#school_data .exportrow #export_csv:hover {
    opacity: .85;
}

#school_data .exportrow #export_csv i {
    padding-left: 6px;
}

#school_data .DemographicContainer {
    max-width: 100%;
    padding: 0;
}

#school_data .DemographicContainer>.row {
    row-gap: 20px;
}

#school_data .DemographicContainer .CircularCorner {
    background: #ffffff;
    border: 1px solid #dce4ee;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 8px 20px rgba(68, 81, 99, 0.08);
    height: 100%;
}

#school_data .DemographicContainer .CircularCorner p {
    color: #445163;
    margin-bottom: 10px;
}

#school_data .DemographicContainer .CircularCorner h5 {
    color: #111;
    font-weight: 600;
}

#school_data .DemographicContainer .Data2Col {
    display: flex;
    gap: 24px;
}

#school_data .DemographicContainer .Data2Col .left,
#school_data .DemographicContainer .Data2Col .right {
    flex: 1 1 0;
}

#school_data .DemographicContainer select {
    min-height: 38px;
    border: 1px solid #cbd6e2;
    border-radius: 20px;
    padding: 6px 14px;
    color: #445163;
    background: #ffffff;
    margin-bottom: 12px;
}

#school_data .DemographicContainer [id^="linechart_material"],
#school_data .DemographicContainer #chartNew1,
#school_data .DemographicContainer #chartNew2,
#school_data .DemographicContainer #piechartNew1,
#school_data .DemographicContainer #piechartNew2,
#school_data .DemographicContainer #piechartNew3,
#school_data .DemographicContainer #piechartNew4,
#school_data .DemographicContainer #piechartNew5,
#school_data .DemographicContainer #donutchart3 {
    min-height: 220px;
}

.AMDSB-card::before {
    background: url("/static/images/amdsb-btm-shape.svg")no-repeat;
    bottom: -23px;
    top: inherit;
}

.AMDSB-card::after {
    background: url("/static/images/amdsb-top-shape.svg")no-repeat;
    background-position: right;
}

.Secondary-card {
    background: #7A97AB;
}

.population-icon i {
    color: #445163;
}

.Secondary-card::before {
    background: url("/static/images/secondary-btmshape.svg")no-repeat;
    bottom: -22px;
    top: inherit;
}

.Secondary-card::after {
    background: url("/static/images/secondary-top-shape.svg")no-repeat;
    background-position: right;
}

/* header background================ */
.heding {
    margin-top: var(--m-top);
    background: #7A97AB;
    box-shadow: var(--hding-shadow);
    align-items: center;
    display: flex;
    padding: 13px 17px;
    justify-content: space-between;
    border-radius: 10px;
}

.dropdown-toggle .dropdown-toggle img {
    max-height: 69px;
    height: 100%;
}

.client-logo .dropdown-toggle::after {
    display: none;
}

.client-logo .dropdown-menu.show {
    box-shadow: 0px 3px 6px rgb(0 0 0 / 20%);
    min-width: 185px;
    border-radius: 5px;
    border: none;
    padding: 0;
}

.client-logo .dropdown-menu.show::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 13px solid #ffffff;
    position: absolute;
    z-index: -1;
    filter: var(--drop-shadow);
    --drop-shadow: drop-shadow(00px -6px 3px #00000012);
    right: 8px;
    top: -9px;
}

.client-logo .dropdown-item {
    padding: 10px 10px;
    border-bottom: 1px solid rgb(197 194 194 / 20%);
    color: var(--c-primary);
    font-size: 16px;
    font-weight: var(--f-regular);
    display: flex;
}

.client-logo .dropdown-item .material-symbols-outlined {
    display: inline-block;
    width: 24px;
    font-size: 20px;
    line-height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
    flex-shrink: 0;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #f9f9f9;
    color: #445163;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: #7f96a8;
    color: #fff;
}

.dropdown-menu li:last-child .dropdown-item {
    border-bottom: none;
}

.resid-drop .dropdown-menu .dropdown-item {
    border-bottom: 1px solid rgb(197 194 194 / 20%);
    padding: 10px;
}

.heding>h2 {
    font-weight: var(--f-medium);
    font-size: var(--f-hdigsize);
    color: var(--c-white);
    margin: 0;
}

.hding-dropdowns,
.cutome-radiobuton {
    display: flex;
}

.hding-dropdowns {
    position: relative;
}

.cutome-radiobuton {
    background: var(--c-primary);
    border-radius: var(--b-radiussm);
    padding: 11px 11px;
}

.cutome-radiobuton .form-check-input {
    width: 15px;
    height: 15px;
    border: 2px solid #fff;
    background: none;
}

.cutome-radiobuton .form-check,
.hding-dropdowns .itext {
    margin-right: 20px;
    margin-bottom: 0;
}

.cutome-radiobuton .form-check:last-child {
    margin: 0;
}

.cutome-radiobuton .form-check-input:checked {
    background: #0d6efd;
}

.cutome-radiobuton .form-check-input:checked[type=radio] {
    background-image: none;
}

.cutome-radiobuton label {
    color: white;
    font-size: 14px;
    font-weight: 300;
}

.hding-dropdowns .form-select {
    background-repeat: no-repeat;
    /* background-position: calc(100% - 12px); */
    background-color: var(--c-primary);
    color: var(--c-white);
    min-width: 110px;
    height: inherit;
    padding: 11px 35px 11px 11px;
    border-radius: var(--b-radiusmd);
    /* background: url("/static/images/year-down.svg") 90% / 13px no-repeat #445163; */
}

.hding-dropdowns .profile-yeare-dropdown {
    background: url("/static/images/year-down.svg") 90% / 13px no-repeat #445163;
}

/* dropdown for year select */
.hding-dropdowns .fa-sort-desc {
    position: absolute;
    text-align: center;
    top: 7px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    z-index: 1;
    color: #ffffff !important;
}

/* dropdown for year select */

/* data table css */
.graph-card {
    box-shadow: var(--whitec-shadow);
    background: var(--c-white);
    border-radius: 10px;
    padding: 28px;
    height: auto;
    border: 1px solid rgb(0 0 0 / 17%);
}

.about-geight {
    flex: 1 1 auto;
}

.equal-height-row>[class*="col-"] {
    display: flex;
    flex-direction: column;
}

.equal-height-row .about-us-section,
.equal-height-row .map,
.equal-height-row .graph-card {
    flex: 1 1 auto;
}

.equal-height-row #mapid {
    height: auto;
    min-height: 350px;
}

.left-section-amdsb-comparision {
    padding: 65px 55px;
}

.Comparison-card {
    box-shadow: var(--whitec-shadow);
    background: #7A97AB;
    border-radius: 10px;
    padding: 28px;
}

.Comparison-content h4 {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    line-height: 33px;
    margin: 0;
}

.Comparison-content h4 .Year {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
}

.Comparison-content h5 {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    margin: 0;
}

.comparison-icon {
    min-width: 70px;
    min-height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 70px;
}

.Household-income {
    margin-block: 40px;
}

.family-census-average {
    font-size: 24px;
    font-weight: 500;
    font-family: 'gotham', sans-serif;
    margin-bottom: 28px;
}

.right-border {
    border-right: 1px solid #fff;
}

.census-points {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
}

.census-points-year {
    font-size: 16px;
    font-weight: 300;
    margin-left: 23px;
}

.census-sub-heading {
    top: -13%;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    right: -8%;
    position: absolute;
    text-transform: uppercase;
}

.about-table-inner table tr th {
    border-radius: 10px 10px 0 0;
}

.about-table-inner table tr td {
    color: var(--c-primary);
    font-size: 14px;
    text-align: center;
    border-right: 1px solid #ffffff;
}

.graph-card table.dataTable thead>tr>th,
table.dataTable thead>tr>th.sorting_asc,
.about-table-inner table tr th {
    text-align: center;
    vertical-align: middle;
    font-size: 14px;
    background: var(--c-primary);
    color: var(--c-white);
    font-weight: var(--f-regular);
    border-right: 1px solid #E2E2E2;
    width: 160px !important;
    padding: 15px;
}

.graph-card table.dataTable thead>tr>th.sorting_asc:before,
.graph-card table.dataTable thead>tr>th.sorting_desc:after {
    opacity: 1;
}

.Regnl-ppln-trc .dataTables_wrapper .row:first-child,
.Regnl-ppln-trc .dataTables_wrapper .row:last-child,
/* 
Unhide the search box and pagination for the table 
.graph-card .dataTables_wrapper .row:first-child,
.graph-card div.dataTables_info, 
*/
.upload-dta-tble .dataTables_wrapper .row:first-child,
.upload-dta-tble .dataTables_wrapper .row:last-child {
    display: none !important;
}

.graph-card table.dataTable.nowrap td {
    color: var(--c-primary);
    font-size: 14px;
    text-align: center;
    border-right: 1px solid #ffffff;
}

.graph-card table.dataTable thead>tr>th:first-child {
    border-top-left-radius: 20px;
    text-align: left;
}

.graph-card table.dataTable thead>tr>th:last-child {
    border-top-right-radius: 20px;
}

.graph-card div.dataTables_wrapper div.dataTables_paginate {
    margin: 10px 0 0px 0;
    padding-right: 30px;
}

.graph-card .disabled>.page-link,
.page-link.disabled {
    background: none;
    color: var(--c-gray);
    border: none;
}

.graph-card .active>.page-link,
.graph-card .page-link.active {
    background: var(--c-primary);
    border-color: var(--c-primary);
    color: var(--c-white);
}

.graph-card .active>.page-link,
.graph-card .page-link {
    box-shadow: none;
    margin-right: 10px;
    padding: 3px 14px;
    border-radius: var(--b-radiussm);
}

.graph-card .page-link {
    border: 1px solid var(--c-gray);
    color: var(--c-gray);
}

.graph-card .page-item:last-child .page-link,
.graph-card .page-item:first-child .page-link {
    border: none;
    background: none;
    margin-right: 0;
}

.graph-card .page-item:last-child .page-link:hover,
.graph-card .page-item:first-child .page-link:hover {
    color: var(--c-primary);
}

.graph-card .page-link:hover {
    background: var(--c-primary);
    color: var(--c-white);
    border-color: var(--c-primary);
}

.graph-card div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    align-items: center;
}

/* Regional Population Growth by Municipal Since 2018 section */
.onlyhding {
    padding: 23px 20px;
}

.graph-card table.dataTable thead>tr>th {
    background-color: var(--c-primary);
    border-radius: 5px 5px 0 0;
}

.br-0 {
    border-radius: 0 !important;
}

/* Regional Housing Tracking */

/* Regional bulding permit section */
.density-cardbxes {
    margin-top: 20px;
}

.graph-card table.dataTable {
    width: 100% !important;
}

iframe {
    border: 0;
    height: 500px;
    width: 100%;
}

.density-cardbxes .count-iconbx {
    margin-bottom: 35px !important;
    justify-content: inherit;
    align-items: self-end;
}

.count-iconbx h6 {
    font-size: 20px;
    font-weight: var(--f-regular);
}

.reginlb-permit .count-iconbx h6,
.reginlb-permit .count-iconbx span {
    margin-left: 15px;
}

.reginlb-permit .count-iconbx span {
    font-size: 23px;
    font-weight: var(--f-bold);
}

.househ-comrsion h5 {
    font-size: 20px;
    font-weight: 500;
    color: #445163;
    margin-bottom: 13px;
}

.Years,
.Years-one,
.senter-data-content {
    position: relative;
}

.Years>span,
.Years-one>span,
.senter-data-content>span {
    position: absolute;
    font-size: 31px;
    font-weight: 300;
    color: #415364;
}

.Years>span {
    top: calc(50% - 36px);
    left: calc(50% - 40px);
}

.Years-one>span {
    top: calc(50% - 16px);
    left: calc(50% - 40px);
}

.househ-comrsion h4 {
    font-size: 30px;
    font-weight: 600;
    color: #445163;
    margin-bottom: 30px;
}

#Household-Dwelling {
    height: 282px;
}

#bpermit-mcpl,
#Regional-T-Growth,
#reginlb-p-grph,
#bpermit-donut,
#RHse-Tracchart,
#chartdiv {
    height: 424px;
}

#reginlb-p-grph {
    height: 298px;
}

#population-age-cohort,
#Official-languages,
#mobility-status,
#generation-status {
    height: 387px;
}

#Housing-by-Density-type {
    height: 387px;
}

/* Keep the Population & Households 2x2 chart grid visually aligned. */
.Population-Households-section .row>[class*="col-"] {
    display: flex;
}

.Population-Households-section .graph-card {
    width: 100%;
}

.Population-Households-section #Regional-T-Growth,
.Population-Households-section #RHse-Tracchart,
.Population-Households-section #population-age-cohort,
.Population-Households-section #Housing-by-Density-type {
    height: 387px;
}

#mother-tongue {
    height: 387px;
}

#chartdiv {
    height: 437px;
}

.housing-chart2 {
    height: 437px;
    width: 100%;
}

.cencusunder {
    color: var(--c-dark);
    font-weight: var(--f-medium);
}

/* help page css*/

.data-priview-pop .modal-dialog {
    max-width: 90%;
}

.graph-card table.dataTable.nowrap td:first-child,
.about-table-inner table tr td:first-child {
    border-left: 1px solid #E2E2E2;
    text-align: left;
}

/* gide css */
.grid-container {
    background-color: #415364;
    width: 100%;
    padding: 30px 30px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: var(--whitec-shadow);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 26px;
}

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

.grid-item {
    background: #fff;
    text-align: center;
    padding-block: 51px;
    padding-inline: 12px;
    border-radius: 10px;
}

/* facilities page css start ================================= */

.graph-card .RomeoPS {
    padding: 0 5em 0 0;
}

.about-img img {
    width: 100%;
    height: 300px;
}

.AMDSB-about .AMDSB-heading,
.RomeoPS .RomeoPS-heading {
    font-size: 24px;
    text-transform: uppercase;
    color: #445163;
}

.AMDSB-about .about-contant p {
    font-size: 20px;
    line-height: 1.4;
    color: #445163;
}

.RomeoPS .about-contant p {
    font-size: 18px;
    color: #445163;
}

.RomeoPS .about-contant p a,
.AMDSB-about .about-contant p a {
    color: #015bff;
}

/* Enrolment START table*/
.table-header-search {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin: 10px;
}

.hide_me {
    display: none;
}

li[data-dtr-index="4"] {
    display: none;
}

li[data-dtr-index="5"] {
    display: none;
}

.dataTables {
    width: 100%;
    overflow: auto;
}

.dataTables_wrapper {
    margin-bottom: 1em;
}

.dataTables table {
    background: #f5f8fa;
    border-radius: 20px 20px 0 0;
}

.dataTables_filter input {
    margin-bottom: 1em;
}

/* Fix: DataTables length select arrow overlapping the number */
.dataTables_length select {
    min-width: 70px;
    padding-right: 2rem;
}

/* Fix: Bootstrap .row negative gutters inside DataTables wrapper cause tiny permanent horizontal scroll */
.dataTables_wrapper>.row {
    margin-left: 0;
    margin-right: 0;
}

table.dataTable tbody tr td {
    padding: 10px 10px;
    border: 1px solid #e8eaed;
}

/* Enrolment END*/

/* facilities page css End ================================= */

/* profile page css START ============================================*/
.download button {
    background-color: #445163;
    padding: 12.5px;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    border-radius: 5px;
}

.download i {
    padding-left: 5px;
}

.select-export-download .form-select {
    padding-block: 11px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 5px;
}

.download-icon {
    background: #fff;
    padding: 11px;
    border-radius: 5px;
    font-size: 14px;
    border: none;
    margin-left: 0.5em;
    font-weight: 400;
    cursor: pointer;
}

.brn-none {
    border-radius: 0;
}

/* Public profile chart controls cleanup */
.Profile-amdsb .download-section .form-select,
.Profile-amdsb .download-section .submit-button,
.Profile-amdsb .download-section a,
.Profile-amdsb .download-section button {
    display: none !important;
}

.Profile-amdsb .download-section {
    margin-bottom: 12px;
}

.Profile-amdsb .bgwhite {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 10px;
}

.Profile-amdsb .chartbox {
    margin-bottom: 20px;
}

.Profile-amdsb .barcharttitle h3 {
    border-bottom: 1px solid #6d6d6d;
    padding-bottom: 4px;
    font-weight: 500;
}

.Profile-amdsb .text-abslute {
    position: absolute;
    top: 58%;
    left: 50%;
    width: 120px;
    font-size: 11px;
    transform: translate(-50%, -50%);
    text-align: center;
}

.Profile-amdsb .daterange {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.Profile-amdsb #range.submit-button.buttoncustm {
    background-color: #445163;
    color: #ffffff;
    border: 0;
    border-radius: 5px;
    padding: 10px 18px !important;
    line-height: 1.2;
}

.Profile-amdsb .chartpanel>.row>[class*="col-md-6"] {
    display: flex;
}

.Profile-amdsb .chartpanel>.row>[class*="col-md-6"]>.bgwhite {
    width: 100%;
}

.Profile-amdsb .d-flex.justify-content-around {
    gap: 12px;
}

.Profile-amdsb .d-flex.justify-content-around>.position-relative {
    flex: 1 1 0;
    min-width: 0;
}

.Profile-amdsb .barcharttitle h3,
.Profile-amdsb .bgwhite>.text-center>h3,
.Profile-amdsb #historical_enrol_share h3 {
    font-size: 18px;
    line-height: 1.3;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.Profile-amdsb #historical-elementary-enrolment,
.Profile-amdsb #current-OTG,
.Profile-amdsb #historical-secondary-enrolment,
.Profile-amdsb #Secondary-current-OTG,
.Profile-amdsb #histroical-enrolement,
.Profile-amdsb #historical-enrolment-OTG,
.Profile-amdsb #pre-junior-student,
.Profile-amdsb #historical-enrolment-shares,
.Profile-amdsb #barChart1,
.Profile-amdsb #barChart2,
.Profile-amdsb #barChart3,
.Profile-amdsb #barChart4,
.Profile-amdsb #chart5,
.Profile-amdsb #chart6,
.Profile-amdsb #enrol_by_school,
.Profile-amdsb #enrol_by_grade,
.Profile-amdsb #proj_enrol_by_school,
.Profile-amdsb #projection_enrol_by_grade,
.Profile-amdsb #proj_enrol_by_grade {
    height: 300px;
    width: 100%;
}

.Profile-amdsb #Elementary-elem,
.Profile-amdsb #program-emement,
.Profile-amdsb #Secondary-review,
.Profile-amdsb #Secondary-program,
.Profile-amdsb #residing-student,
.Profile-amdsb #residing-student-Program,
.Profile-amdsb #residing-student1,
.Profile-amdsb #residing-student2,
.Profile-amdsb #donutchart,
.Profile-amdsb #donutchart2,
.Profile-amdsb #donutchart4,
.Profile-amdsb #donutchart5,
.Profile-amdsb #birth_compared,
.Profile-amdsb #share_elem_data,
.Profile-amdsb #birth_compared_secondary,
.Profile-amdsb #share_sec_data,
.Profile-amdsb #panel_enrol_by_school,
.Profile-amdsb #enrol_program_by_panel,
.Profile-amdsb #birth_compared_by_panel,
.Profile-amdsb #share_residing_by_panel,
.Profile-amdsb #enrol_by_grade_school,
.Profile-amdsb #enrol_by_program_school,
.Profile-amdsb #birth_compared_school,
.Profile-amdsb #share_school_data,
.Profile-amdsb #enrol_by_school_review_area,
.Profile-amdsb #enrol_by_program_review_area,
.Profile-amdsb #enrol_by_grade_review_area,
.Profile-amdsb #share_review_area_data {
    height: 300px;
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 0 auto;
}

.Profile-amdsb #chart_div1,
.Profile-amdsb #chart_div7 {
    height: 300px;
    width: 100%;
}

.Profile-amdsb #chart_div1:empty,
.Profile-amdsb #chart_div7:empty {
    height: 0 !important;
    min-height: 0 !important;
}

.Profile-amdsb #birth_compared,
.Profile-amdsb #share_elem_data,
.Profile-amdsb #birth_compared_secondary,
.Profile-amdsb #share_sec_data {
    height: 300px;
}

.Profile-amdsb #donutchart:empty,
.Profile-amdsb #donutchart2:empty,
.Profile-amdsb #donutchart4:empty,
.Profile-amdsb #donutchart5:empty,
.Profile-amdsb #birth_compared:empty,
.Profile-amdsb #share_elem_data:empty,
.Profile-amdsb #birth_compared_secondary:empty,
.Profile-amdsb #share_sec_data:empty,
.Profile-amdsb #panel_enrol_by_school:empty,
.Profile-amdsb #enrol_program_by_panel:empty,
.Profile-amdsb #birth_compared_by_panel:empty,
.Profile-amdsb #share_residing_by_panel:empty,
.Profile-amdsb #enrol_by_grade_school:empty,
.Profile-amdsb #enrol_by_program_school:empty,
.Profile-amdsb #birth_compared_school:empty,
.Profile-amdsb #share_school_data:empty,
.Profile-amdsb #enrol_by_school_review_area:empty,
.Profile-amdsb #enrol_by_program_review_area:empty,
.Profile-amdsb #enrol_by_grade_review_area:empty,
.Profile-amdsb #share_review_area_data:empty {
    height: 0 !important;
    min-height: 0 !important;
}

.school-profile-layout .school-profile-bar-grid {
    row-gap: 12px;
}

.school-profile-layout .school-profile-stack {
    display: grid;
    gap: 12px;
    width: 100%;
}

.school-profile-layout .school-profile-bar-card {
    margin-bottom: 0;
    padding: 10px;
}

.school-profile-layout .school-profile-bar-card .barcharttitle h3 {
    border-bottom: 0;
    padding-bottom: 0;
}

.school-profile-layout .school-profile-pie-grid {
    row-gap: 12px;
}

.school-profile-layout .school-profile-pie-card {
    position: relative;
    padding: 12px;
}

.school-profile-layout .school-profile-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #7a97ab;
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 12px;
}

.school-profile-layout .school-profile-card-header h5 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.school-profile-layout .school-profile-year-select {
    max-width: 170px;
    border: 0;
    min-height: 36px;
    font-size: 14px;
    color: #445163;
}

.school-profile-layout .school-profile-year-select:focus {
    box-shadow: none;
}

.school-profile-layout .school-profile-top-heading {
    position: static;
    left: auto;
    top: auto;
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.school-profile-layout .school-profile-top-heading h5 {
    color: #445163;
    font-size: 24px;
    font-weight: 600;
}

.school-profile-layout .school-profile-pie-body {
    margin-top: 0;
}

.school-profile-layout .school-profile-pie-row {
    gap: 10px;
    flex-wrap: wrap;
}

.school-profile-layout .school-profile-pie-wrap {
    position: relative;
    flex: 1 1 45%;
    min-width: 220px;
}

.school-profile-layout .school-profile-pie-wrap .resize {
    position: relative;
}

.school-profile-layout .school-profile-pie-wrap .school-profile-empty-state {
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #415364;
    font-size: 22px;
    font-weight: 500;
    pointer-events: none;
    white-space: nowrap;
}

.school-profile-layout .school-profile-pie-wrap .resize:empty::before {
    content: "No data";
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #415364;
    font-size: 22px;
    font-weight: 500;
    pointer-events: none;
}

.school-profile-layout .school-profile-pie-wrap .resize:empty~.school-profile-pie-year {
    display: none;
}

.school-profile-layout .school-profile-pie-wrap.school-profile-pie-no-data .school-profile-pie-year {
    display: none;
}

.school-profile-layout #elementary_data .school-profile-pie-row,
.school-profile-layout #secondary_data .school-profile-pie-row,
.school-profile-layout #review_area_data .school-profile-pie-row,
.school-profile-layout #panel_data .school-profile-pie-row,
.school-profile-layout #school_data2 .school-profile-pie-row,
.school-profile-layout #review_data .school-profile-pie-row,
.school-profile-layout #elementary_data .d-flex.justify-content-around,
.school-profile-layout #secondary_data .d-flex.justify-content-around,
.school-profile-layout #review_area_data .d-flex.justify-content-around,
.school-profile-layout #panel_data .d-flex.justify-content-around,
.school-profile-layout #school_data2 .d-flex.justify-content-around,
.school-profile-layout #review_data .d-flex.justify-content-around {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
}

.school-profile-layout #elementary_data .school-profile-pie-wrap,
.school-profile-layout #secondary_data .school-profile-pie-wrap,
.school-profile-layout #review_area_data .school-profile-pie-wrap,
.school-profile-layout #panel_data .school-profile-pie-wrap,
.school-profile-layout #school_data2 .school-profile-pie-wrap,
.school-profile-layout #review_data .school-profile-pie-wrap,
.school-profile-layout #elementary_data .d-flex.justify-content-around>.position-relative,
.school-profile-layout #secondary_data .d-flex.justify-content-around>.position-relative,
.school-profile-layout #review_area_data .d-flex.justify-content-around>.position-relative,
.school-profile-layout #panel_data .d-flex.justify-content-around>.position-relative,
.school-profile-layout #school_data2 .d-flex.justify-content-around>.position-relative,
.school-profile-layout #review_data .d-flex.justify-content-around>.position-relative {
    flex: 1 1 100%;
    min-width: 0;
}

.school-profile-layout #elementary_data .school-profile-pie-year,
.school-profile-layout #secondary_data .school-profile-pie-year,
.school-profile-layout #review_area_data .school-profile-pie-year,
.school-profile-layout #panel_data .school-profile-pie-year,
.school-profile-layout #school_data2 .school-profile-pie-year,
.school-profile-layout #review_data .school-profile-pie-year {
    font-size: 36px;
}

.school-profile-layout #elementary_data .school-profile-pie-wrap+.school-profile-pie-wrap,
.school-profile-layout #secondary_data .school-profile-pie-wrap+.school-profile-pie-wrap,
.school-profile-layout #review_area_data .school-profile-pie-wrap+.school-profile-pie-wrap,
.school-profile-layout #panel_data .school-profile-pie-wrap+.school-profile-pie-wrap,
.school-profile-layout #school_data2 .school-profile-pie-wrap+.school-profile-pie-wrap,
.school-profile-layout #review_data .school-profile-pie-wrap+.school-profile-pie-wrap,
.school-profile-layout #elementary_data .d-flex.justify-content-around>.position-relative+.position-relative,
.school-profile-layout #secondary_data .d-flex.justify-content-around>.position-relative+.position-relative,
.school-profile-layout #review_area_data .d-flex.justify-content-around>.position-relative+.position-relative,
.school-profile-layout #panel_data .d-flex.justify-content-around>.position-relative+.position-relative,
.school-profile-layout #school_data2 .d-flex.justify-content-around>.position-relative+.position-relative,
.school-profile-layout #review_data .d-flex.justify-content-around>.position-relative+.position-relative {
    border-top: 0;
    margin-top: 12px;
    padding-top: 0;
}

.school-profile-layout #donutchart:empty,
.school-profile-layout #donutchart2:empty,
.school-profile-layout #donutchart4:empty,
.school-profile-layout #donutchart5:empty,
.school-profile-layout #birth_compared:empty,
.school-profile-layout #share_elem_data:empty,
.school-profile-layout #birth_compared_secondary:empty,
.school-profile-layout #share_sec_data:empty,
.school-profile-layout #panel_enrol_by_school:empty,
.school-profile-layout #enrol_program_by_panel:empty,
.school-profile-layout #birth_compared_by_panel:empty,
.school-profile-layout #share_residing_by_panel:empty,
.school-profile-layout #enrol_by_grade_school:empty,
.school-profile-layout #enrol_by_program_school:empty,
.school-profile-layout #birth_compared_school:empty,
.school-profile-layout #share_school_data:empty,
.school-profile-layout #enrol_by_school_review_area:empty,
.school-profile-layout #enrol_by_program_review_area:empty,
.school-profile-layout #enrol_by_grade_review_area:empty,
.school-profile-layout #share_review_area_data:empty {
    height: 300px !important;
    min-height: 300px !important;
}

.school-profile-layout .school-profile-pie-year {
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #415364;
    font-size: 24px;
    font-weight: 300;
    pointer-events: none;
}

.school-profile-layout .school-profile-pie-label {
    position: static;
    transform: none;
    width: auto;
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
}

.school-profile-layout #birth_compared+.school-profile-pie-year+.school-profile-pie-label:empty::before,
.school-profile-layout #birth_compared_secondary+.school-profile-pie-year+.school-profile-pie-label:empty::before,
.school-profile-layout #birth_compared_by_panel+.school-profile-pie-year+.school-profile-pie-label:empty::before,
.school-profile-layout #birth_compared_school+.school-profile-pie-year+.school-profile-pie-label:empty::before {
    content: "Birth Count";
}

.school-profile-layout .school-profile-public-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

@media (min-width: 768px) {
    .school-profile-layout .school-profile-bar-grid>[class*="col-md-6"] {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .school-profile-layout .school-profile-card-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .school-profile-layout .school-profile-year-select {
        max-width: 100%;
        width: 100%;
    }

    .school-profile-layout .school-profile-pie-wrap {
        min-width: 0;
        flex: 1 1 100%;
    }

    .school-profile-layout .school-profile-top-heading h5 {
        font-size: 20px;
    }
}

.senter-data-content>span {
    top: calc(50% - 16px);
    left: calc(50% - 40px);
}

.divider {
    border: 1px dashed #7f96a8;
    margin: 1.5em;
}

/* Profile page END */

/* Find my school page css */
.find-school-map {
    box-shadow: var(--card-shadow);
}

.geocoder-control.leaflet-control {
    position: relative !important;
    display: flex;
    justify-content: end;
}

.Search-bar {
    position: absolute;
    top: 3em;
    right: 18px;
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
}

.schoollist i {
    color: #7f96a8;
    background-color: #fff0;
    padding: 12px 10px;
    border-radius: 5px;
    margin-right: 5px;
    box-shadow: 1px 1px 2px #00000054
}

.schoollist table tbody td a:first-child {
    text-align: left;
    color: #445163;
    text-transform: uppercase;
}

.schoollist table tbody tr:nth-child(even) td a i {
    background-color: #fff;
}

.schoollist table tbody tr:nth-child(odd) td a i {
    background-color: #f2f2f2;
}

.schoollist table tbody tr td:hover a i {
    background-color: #f2f2f2;
    box-shadow: 0px 0px 5px #00000054;
    color: #445163;
}

.schoollist table tbody td:hover a {
    color: #445163;
    font-weight: 500;
}

/* Find my school page css */

/* School list Popuop modal  */
button.close {
    padding-inline: 10px;
    font-size: 20px;
    background-color: #FFF;
    color: #000000;
    border-radius: 100%;
    /* position: absolute;
    right: -12px;
    top: -12px; */
    box-shadow: 0 1px 6px #00000059;
}

button.close:hover {
    color: #cd4834;
}

.modal-footer a {
    color: #015bff;
    font-size: 16px;
    font-weight: 500;
}

.modal-header h5 {
    color: #415364;
    font-size: 20px;
}

.shool-deatils h5 span {
    font-size: 16px;
    font-weight: 300;
    color: #ffffff;
    margin-left: 10px;
}

.infographic {
    background: #f1f3f4;
    height: 80%;
    border-radius: 10px 0 0 10px;
    box-shadow: 0px 0px 6px #0003;
    padding: 15px;
}

.infographic i {
    font-size: 30px;
    align-self: center;
}

.shool-deatils h5,
.shool-deatils p {
    margin: 0;
    padding: 0;
}

.shool-deatils h5 {
    font-size: 35px;
    font-weight: 600;
    color: #fff;
}

.shool-deatils p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.gold,
.green,
.orange,
.gren-light,
.green-dark,
.blue-light,
.red {
    padding: 0;
    border-radius: 7px;
}

.gold {
    background-color: var(--c-gold);
}

.orange {
    background-color: #EB6B34;
}

.red {
    background-color: #CD4834;
}

.gren-light {
    background-color: #83A354;
}

.green-dark {
    background-color: #2E826B;
}

.blue-light {
    background-color: #35A0A4;
}

.C-gold {
    color: #e39731;
}

.C-ornage {
    color: #EB6B34
}

.C-red {
    color: #CD4834;
}

.C-green-light {
    color: #83A354;
}

.C-green-dark {
    color: #2E826B;
}

.C-blue-light {
    color: #35A0A4;
}

/* School list Popuop modal  */
.review-area-top-heading {
    left: 42%;
    position: absolute;
    top: 1.5%;
}

.review-area-top-heading h5 {
    color: #fff;
}

/* sidbar hover tooltip css start */

.sidebar-bg .sidebar-nav .tooltipp {
    display: none;
}

.sidebar-bg-min .side-menu-btn-open2 .side-menu-btn-open li.drop_wrap:hover .tooltipp {
    display: none;
}

.sidebar-bg-min li.drop_wrap {
    position: relative;
}

.sidebar-bg-min li.drop_wrap:hover span.tooltipp {
    position: absolute;
    color: #415364;
    top: 25%;
    font-weight: 400;
    --bs-tooltip-font-size: 0.875rem;
    font-size: var(--bs-tooltip-font-size);
    left: 100%;
    background: #fff;
    padding: 5px 20px;
    border-radius: 5px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display: flex;
    justify-content: left;
    align-items: end;
    min-width: max-content;
    /* transition:all 0.5s ease; */
}

.sidebar-bg-min li.drop_wrap span.tooltipp::before {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #fff;
    position: absolute;
    left: -8px;
    top: 5px;
}

/* sidbar hover tooltip css END */


/* Login page css Start  */
.relative {
    position: relative;
}

.login-bg {
    background: url("/static/images/login-background.jpg")no-repeat;
    background-position: 100%;
    background-size: cover;
    height: 100vh;
    overflow: auto;
}

.logi-nv ul {
    display: flex;
    justify-content: end;
    column-gap: 40px;
}

.container-cuntome {
    max-width: 1600px;
    margin: auto;
    padding: 0 15px;
}

.logi-nv ul li a {
    display: inline-block;
    color: var(--c-gray);
    font-size: 20px;
    font-weight: var(--f-medium);
    transition: var(--transition);
}

.logi-nv ul li a:hover {
    color: #cce4f2;
}

.nav-login-form {
    height: 100vh;
    padding: var(--padding);
}

.nav-login-form>.row {

    justify-content: space-between;

    height: calc(100% - 30px);
}

.hding h1 {
    position: relative;
    font-size: 60px;
    color: #cce4f2;
    padding-bottom: 10px;
    margin-bottom: 50px;
    text-shadow: 0 3px 6px rgb(0 0 0 / 24%);
}

.hding h1:after,
.login-hding h2::after {
    content: '';
    position: absolute;
    background: var(--c-white);
    width: 72px;
    bottom: 0;
    left: 0;
    height: 2px;
}

.login-para {
    font-size: var(--f-para);
    font-weight: var(--f-regular);
    color: var(--c-white);
    line-height: 35px;
    max-width: 100%;
}

.login-fom-bg {
    box-shadow: var(--card-shadow);
    text-align: center;
    border-radius: 65px 65px 0 0;
    padding: 20px 30px;
    max-width: 590px;
    margin-left: auto;
    background: rgb(255 255 255 / 2%);
}

.login-log {
    margin-top: -90px;
}

.login-log a img {
    filter: drop-shadow(0px 3px 6px #00000029);
}

.login-log a {
    display: inline-block;
    max-width: 220px;
    margin: auto;
}

.login-hding h2 {
    font-size: 22px;
    margin: 35px 0;
    color: var(--c-white);
    position: relative;
    padding-bottom: 20px;
}

.login-hding h2::after {
    right: 0;
    width: 50px;
    margin: auto;
    background: var(--c-hover);
}

.login-hding h2 span {
    color: #cce4f2;
}

.login-input .itext:is( :focus, :active) {
    --bs-form-select-bg-img: url(../images/chevron_white.svg);
    background-color: #626C7A;
    box-shadow: 0px 3px 8px rgb(0 0 0 / 30%);
    color: var(--c-white);
}

.login-input .itext {
    --bs-form-select-bg-img: url(../images/chevron.svg);
    height: 55px;
    width: 90%;
    margin: auto;
    margin-bottom: 42px;
    border-radius: var(--b-radiusmd);
    border: 1px solid rgb(68 81 98);
    font-size: 16px;
    color: #B5B5B5;
    font-weight: var(--f-semibold);
    background: #626C7A;
    background-image: var(--bs-form-select-bg-img);
    background-size: 16px 12px;
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
}

.login-btn {
    margin-bottom: -40px;
    margin-top: 70px;
}

.login-btn a {
    transition: var(--transition);
    background: #445163;
    padding: 11px 47px;
    align-items: center;
    color: white;
    font-size: var(--f-nvsize);
    font-weight: var(--f-medium);
    border-radius: 8px;
    box-shadow: 3px 0px 8px rgb(0 0 0 / 30%);
}

.login-btn a:hover {
    box-shadow: 0 3px 12px #A9C6D8;
}

/* login-screen-css */

.login-scren .login-input .itext:is( :focus, :active)::placeholder {
    color: white;
    opacity: 0.7;
}

.login-scren .login-input .itext::placeholder {
    opacity: 1;
    color: var(--c-gray);
}

.login-scren .login-input .itext {
    color: var(--c-white);
    font-weight: var(--f-medium);
    background-image: none !important;
}



/* circle progress bar css */

.circular-progress,
.circular-progress2,
.circular-progress3 {
    position: relative;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    background: conic-gradient(#ffffff 3.6deg, #9b9b9b 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.circular-progress::before,
.circular-progress2::before,
.circular-progress3::before {
    content: "";
    position: absolute;
    height: 52px;
    width: 52px;
    border-radius: 50%;
}

.circular-progress::before {
    background-color: rgb(68 81 99);
}

.circular-progress2::before {
    background-color: rgb(122 151 171);
}

.circular-progress3::before {
    background-color: rgb(230 230 230);
}

.progress-value,
.progress-value2,
.progress-value3 {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.progress-value3 {
    color: #445163;
}

.text {
    font-size: 30px;
    font-weight: 500;
    color: #9b9b9b;
}

/* circle progress bar css */


/* Website loader CSS start */
#spinner1 {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 999;
    background: #425164b5;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    margin: 0 auto;
}

#spinner1 .justify-content-center {
    margin: 0 auto;
}

#spinner1 .text-success1 {
    color: #fff;
}

#spinner1 .spinner-border {
    width: 5rem;
    height: 5rem;
}

.no-display {
    display: none !important;
}

/* Website loader CSS end */



/* Right side scrollbar */

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 0px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #405262;
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #7398aa;
}

/* Right side scrollbar END */


.itext-one::before {
    content: 'abc';
}

/* AMCharts 5 export menu (profile charts) - pin to top-right corner & style */
.am5exporting-menu.am5exporting-valign-top {
    top: 6px !important;
}

.am5exporting-menu.am5exporting-align-right {
    right: 6px !important;
}

/* "..." button: square, centered glyph, site-style */
.am5exporting-icon {
    width: 30px !important;
    height: 30px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #ffffff !important;
    border: 1px solid #e3e7eb !important;
    border-radius: 6px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12) !important;
    transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

.am5exporting-icon:focus,
.am5exporting-icon:hover,
.am5exporting-menu-open .am5exporting-icon {
    background-color: #f5f7f8 !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18) !important;
}

.am5exporting-icon svg {
    display: block;
    width: 20px;
    height: 20px;
}

.am5exporting-icon svg path {
    fill: #415364 !important;
}

/* dropdown list */
.am5exporting-list {
    border: 1px solid #e3e7eb !important;
    border-radius: 8px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
    background-color: #ffffff !important;
    padding: 4px 0 !important;
    min-width: 140px;
    overflow: hidden;
}

/* menu rows are <a> elements - override the site's global link colours so they
   don't inherit the blue/red link + :active styling */
.am5exporting-list .am5exporting-item a,
.am5exporting-list .am5exporting-item a:link,
.am5exporting-list .am5exporting-item a:visited {
    display: block;
    font-size: 13px !important;
    padding: 7px 18px !important;
    color: #415364 !important;
    text-decoration: none !important;
    background: transparent !important;
}

.am5exporting-list .am5exporting-item a:hover,
.am5exporting-list .am5exporting-item a:focus,
.am5exporting-list .am5exporting-item a:active,
.am5exporting-list .am5exporting-item a.am5exporting-item-active {
    color: #eb6b34 !important;
    background-color: #f1f3f4 !important;
}