* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

:root {
    --undpblue: #0468B1;

    --sdg1: #F12542;
    --sdg2: #E4A849;
    --sdg3: #39A14D;
    --sdg4: #D12335;
    --sdg5: #FB4137;
    --sdg6: #00BFE3;
    --sdg7: #FFC53A;
    --sdg8: #AB1D45;
    --sdg9: #FD6B3B;
    --sdg10: #EC1582;
    --sdg11: #FF9E3F;
    --sdg12: #C48E3A;
    --sdg13: #337F4A;
    --sdg14: #0096D1;
    --sdg15: #44BA51;
    --sdg16: #004B7D;
    --sdg17: #122F5A;
}

h2 {
    margin-bottom: 10px;
}

h3,
h2 {
    font-weight: 500;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 0 4px 4px 0;
}

::-webkit-scrollbar-thumb {
    background: #dbdbdb;
    border-radius: 4px;
}

.downArrow {
    width: 12px;
    vertical-align: middle;
}

svg {
    transition: all 0.3s;
    pointer-events: visiblePainted;
}

.png {
    opacity: 0;
}

.nameOfState {
    transition: 0.3s;
    opacity: 0;
    z-index: 99999;
    background-color: rgba(0, 0, 0, 0.713);
    height: 60px;
    min-width: 80px;
    color: white;
    border-radius: 10px;
    padding: 4px;
    text-align: center;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    justify-content: space-between;
    align-items: flex-start;
    pointer-events: none;
}

.hoverable {
    transition: all 0.3s;
}

.hoverable:hover {
    /* opacity: 0.2; */
}

.lakshdweep {
    left: 20%;
    bottom: 0;
}

.lakshdweep:hover {
    background: #004b7d42;

}


.nameOfState p {
    width: 100%;
    font-size: 12px;
    text-align: left;
}

.nameOfState.active {
    opacity: 1;
}

.png:hover {
    opacity: 1;
}

input[type="checkbox"],
input[type="date"],
input[type="radio"] {
    font-family: 'proxima';
}

input[type="date"] {
    color: #9BC3E0;
}

.textBlue {
    color: #9BC3E0;
}

.subheading,
.heading {
    text-align: center;
    margin-bottom: 20px;
}

.heading {
    /* font-weight: 700; */
}

.lg {
    font-size: 27px;
}

.fontBold {
    font-weight: 500;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: black;
}

img {
    vertical-align: sub;
}

svg {
    vertical-align: sub;
}

button,
input {
    outline: none;
    border: none;
    font-family: 'proxima';

}

button,
a {
    cursor: pointer;
}

.section {
    padding: 40px 0;
}

.btn {
    background: white;
    color: var(--undpblue);
    padding: 5px 10px;
    margin: 10px 0;
    border-radius: 2px;
    border: 1px solid var(--undpblue);
}

.my-5 {
    margin: 5px 0;
}

.my-10 {
    margin: 10px 0;
}

.mx-5 {
    margin: 0 5px;
}

.py-10 {
    padding: 10px 0;
}

.my-20 {
    margin: 20px 0;
}

.container {
    width: 100%;
    max-width: 1840px;
    margin: 0 auto;
    align-items: flex-start;
}

.display_flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.display_flex_col {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

@font-face {
    font-family: 'proxima';
    src: url('../public/proximaNovaRegular.otf');
}

@font-face {
    font-family: 'proximaBold';
    src: url('../public/proximaNovaBold.otf');
}

html {
    font-size: 18px;
    font-family: 'proxima';
    font-weight: normal;
}

body {
    width: 100vw;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
    width: 100%;
    top: 0;
}

html::before {
    content: none;

}

.wrapper {
    flex: 4;
}

.header {
    background: white;
    height: 70px;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;


}

.header2 {
    box-shadow: 0px 3.3333332538604736px 16.66666603088379px 0px #004F8826;

}

nav {
    width: 100%;
    position: relative;
}

.desktop-menu {
    display: none;
    width: 100%;
}

.desktop-menu ul li {
    font-size: 13px;
    padding: 4px 0;
    border-radius: 2px;
}

.desktop-menu ul li:hover a {
    color: white;
}

.desktop-menu ul li svg {
    fill: var(--undpblue) !important;
}

.desktop-menu ul li:hover svg {
    fill: white !important;
}

.desktop-menu ul li:nth-child(1):hover {
    background: var(--sdg1);
}

.desktop-menu ul li:nth-child(2):hover {
    background: var(--sdg2);
}

.desktop-menu ul li:nth-child(3):hover {
    background: var(--sdg8);
}

.desktop-menu ul li:nth-child(4):hover {
    background: var(--sdg3);
}

.desktop-menu ul li:nth-child(5):hover {
    background: var(--sdg9);
}

.desktop-menu ul li:nth-child(6):hover {
    background: var(--sdg10);
}

.desktop-menu ul li img {
    margin-right: 6px;

}

.mobile-menu {
    width: 100%;
    position: relative;
    padding: 5px;
}

.mobile-menu .display_flex:nth-child(2) {
    max-width: 160px;
    width: 54%;
}

.logo {
    width: 80px;
}

.logo2 {
    width: 80px;
    position: absolute;
    top: -30px;
    left: 0px;
}

.footerlogo {
    width: 70px;
}

.mob-display {
    position: absolute;
    /* left: -100%; */
    width: 100%;
    /* max-width: 285px; */
    height: 100vh;
    background: white;
    display: none;
    top: 0px;
    z-index: 902;
    box-shadow: -4px 4px 20px 0px #0000001A;
    justify-content: space-between;
    transition: all 0.5s;

}

.mob-display ul {
    justify-content: space-evenly;
    width: 100%;
    height: 53%;
    padding: 0 5px;
    top: 22%;
    position: relative;
}

.mob-display li {
    text-align: center;
    width: 100%;
    margin: 10px 0;
    font-size: 20px;
}

.mob-display li img {

    margin-right: 20px;
}

.mob-display.active {
    display: flex;
}

#burger {
    z-index: 9999;
}

.burger-bar {
    width: 25px;
    height: 3px;
    background-color: var(--undpblue);
    margin: 5px 0;
    border-radius: 5px;
    display: block;
}

#burger.active .burger-bar:first-child {
    transform: translateY(4px) rotate(-45deg);
}

#burger.active .burger-bar:nth-child(2) {
    display: none;
}

#burger.active .burger-bar:nth-child(3) {
    transform: translateY(-4px) rotate(45deg);
}

.your-class {
    height: calc(100vh - 108px);
}

.banner {
    background-image: url('../public/images/banner.webp');
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    height: calc(100vh - 70px);
    width: 100%;
    position: relative;
}

.banner2,
.banner3,
.banner4,
.banner5,
.banner6 {
    background-image: url('../public/images/bgblue.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 246px;
    width: 100%;
    position: relative;
}

.centerElement {
    position: absolute;
    top: 40%;
    left: 5%;

}

.centerElement h1 {
    color: white !important;
    font-size: 30px;
    font-weight: 500;

}

.centerElement h1 p {
    font-size: 18px;
}

#callBtn {
    display: none;
}

#callBtn,
.callBtn {
    padding: 10px 20px;
    margin-top: 40px;
    background-color: var(--sdg1);
    color: white !important;
    width: 100%;
    max-width: 186px;
    border-radius: 4px;

}

.callBtn img,
#callBtn img {
    width: 18px;
}

.callBtn .display_flex,
#callBtn .display_flex {
    width: 100%;
    margin-top: 5px;
}



.copyright {
    background-color: var(--undpblue);
    color: white;
}

.copyright p {
    text-align: center;
}

/* login page */
.form {
    width: 100%;
    max-width: 550px;
    margin: 25px auto;
    padding: 5px;
}

.form>.display_flex_col {
    width: 100%;
    margin: 20px 0;
    align-items: flex-start;
}

.form input {
    width: 100%;
    padding: 5px 0;
    width: 90%;
    font-size: 20px;

}

.form>.display_flex_col .display_flex {
    padding: 5px 17px;
    border-radius: 8px;
    border: 1px solid hsla(205, 96%, 35%, 0.409);
    background: none;
}

.form img {
    width: 20px;
}

.form input::placeholder {
    color: hsla(205, 96%, 35%, 0.409);
}

.loginBtn {
    padding: 10px;
    color: white;
    background: var(--undpblue);
    width: 100%;
    border-radius: 8px;
    font-size: 20px;
}

.centerSection {
    position: absolute;
    color: white;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
}

.centerSection h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.centerSection p {
    font-size: 20px;
}

.centerSection img {
    width: 180px;
}

/* footer */
.footer {
    background: var(--undpblue);
    padding: 20px 10px 0 10px;
    bottom: 0;
    position: relative;
    width: 100%;
}

.footer .container>.display_flex {
    width: 60%;
    max-width: 330px;
}

.copyright2 {
    display: flex;
    background: none;
}

#accordion {

    margin: 0 auto;
}

.accordionOuter {
    width: 100%;
    align-items: center;
    margin-top: 40px;
}

.accordionDiv {
    padding: 20px;
    border-bottom: 3px solid rgba(0, 0, 0, 0.108);
    justify-content: flex-start;
    align-items: center;
}

.accordionDiv .display_flex_col {

    margin-right: 30px;
}

.accordionDiv .display_flex_col span:nth-child(1) {

    font-size: 15px;
    position: relative;
    top: 5px;
}

.accordionDiv p {

    margin-top: 20px;
    font-family: 'proxima';
}

.round {
    height: 40px;
    width: 40px;
    background: white;
    display: block;
    border-radius: 50%;
    text-align: center;
    padding-top: 10px;
    color: rgb(0, 0, 0);
    font-family: 'proxima';


}

.round.active {
    background: var(--sdg10);
    color: rgb(255, 255, 255);

}

.ui-accordion-header {
    position: relative;
    background: none !important;
    color: black !important;
    font-size: 15px;
}

.ui-accordion .ui-accordion-header {
    border: none !important;
    font-family: 'proxima';
}

.ui-icon-triangle-1-e,
.ui-icon,
.ui-widget-content .ui-icon {
    position: absolute !important;
    left: 140px !important;
    top: 50% !important;
    background-position: -69px -6px !important;
}

.ui-accordion-content {
    font-family: 'proxima';
    min-height: 330px;
    padding: 0 !important;
}

.ui-widget-content {
    border: none !important;
}

.ui-state-active .ui-icon {
    background-image: url('images/ui-icons_555555_256x240.png') !important;
}

/* /resoueces */
.resources .cards {
    padding: 20px;
    background: #0468B10D;
    box-shadow: 0px 4px 20px 0px #0000001A;
    width: 330px;
    height: 330px;
    align-items: stretch;
    border-radius: 5px;
    margin: 10px;

}

.resources .cards a {
    height: 75%;
    width: 100%;
}

.resources .cards img {
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

.resources .cards p {
    height: 20%;
    margin: 20px 0 0 10%;
}

.resources {
    padding: 20px 0;
}

.pageBtns {
    padding: 12px 16px;
    background: none;
    border-radius: 5px;
}

.pageBtns.active {
    background: var(--undpblue);
    color: white;
}

.togglebuttonsDiv {
    max-width: 250px;
}

.togglebuttons {
    border-radius: 5px;
    border: 1px solid #9BC3E0;
    color: #9BC3E0;
    background-color: white;
    padding: 10px 20px;
}

.togglebuttons.active {
    color: white;
    background-color: var(--undpblue);
}

.centerSection {
    width: 90%;

}

.centerSection input {
    width: 90%;
    background: none;
    color: white;
    padding: 5px 0;
}

.centerSection input::placeholder {
    color: white;
    font-size: 20px;
}

#searchbtn {
    background-color: white;
    color: var(--undpblue);
    padding: 15px 10px;
    width: 18%;
}

.contentDivParent {
    max-width: 1440px;
    padding: 20px;
    margin: 0 auto;
}

.contentDiv {
    display: none;
    width: 100%;
    justify-content: center;
}

.contentDiv.active {
    display: flex;
}

.centerSection .inputDiv {
    max-width: 631px;

}

.centerSection .inputDiv .display_flex {
    padding: 10px;
    align-items: flex-start;
    background-color: #FFFFFF4D;
    width: 80%;

}

.pagination {
    width: 150px;
}

.section5 .container div:first-child {
    width: 100%;
    height: 100%;
    margin: 0 auto
}

.section5 .container div:first-child img:not(:nth-child(2)):hover {
    opacity: 1
}

.panBtn {
    font-size: 20px;
    min-width: 200px;
    max-width: 250px;
}

.scrollDiv {
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.scrollDiv>.display_flex_col,
.scrollDiv>.display_flex {
    width: 100%;
    margin: 20px 0;
    /* padding: 20px 0px; */
}

.scrollDiv>.display_flex:nth-child(2)>.display_flex_col:nth-child(1) {
    width: 100%;
    padding: 20px 10px;
    height: 100%;
    box-shadow: 0px 4px 20px 0px #00000026;
    align-items: flex-start;
    border-radius: 5px;
    margin: 15px 0;
}

.scrollDiv>.display_flex:nth-child(2)>.display_flex_col:nth-child(2) {
    width: 109%;
    padding: 20px 10px;
    height: 100%;
    box-shadow: 0px 4px 20px 0px #00000026;
    justify-content: space-between;
    border-radius: 5px;
}

.scrollDiv>.display_flex:nth-child(2)>.display_flex_col:nth-child(2) .display_flex {
    justify-content: center;
}

.tableDiv {
    overflow-y: scroll;
    transition: all 0.3s;
    height: 580px;
    padding-top: 10px;
    align-items: flex-start;
}

.tableDiv p {
    text-align: center;
}

.tableDiv>p {
    padding-top: 705px;
}

.tableDiv>.display_flex_col {
    width: 100%;
    padding-top: 1795px;
    height: 100%;
}

.tableDiv .display_flex_col>.display_flex:not(:nth-child(1)):hover {
    color: white;
    background: rgba(4, 105, 177, 0.769);
    ;
}

.dashboardPage>.display_flex {
    flex-direction: column-reverse;
    align-items: flex-start;

}

.dashboardPage>.display_flex>.display_flex>.display_flex_col:nth-child(2)>div:nth-child(3) {
    align-items: flex-start;
    padding: 5px;
}

.dashboardPage>.display_flex>.display_flex>.display_flex_col:nth-child(2)>div:nth-child(4) {
    align-items: flex-start;
    padding: 5px;
}

.map_parent {
    width: 100%;
}

.mapsection {
    width: 100%;
    position: relative;
    margin: 20px auto;
}

.mapsection .display_flex_col {
    bottom: 69%;
    max-width: 140px;
}

.mapsection .display_flex_col .display_flex {
    justify-content: space-evenly;
}

.mapsection .display_flex_col p {
    width: 70%;
    font-size: 12px;
    text-align: left;
}

.mapsection .container {
    height: 100%;
    width: 100%;
}

.tableDiv .display_flex_col .display_flex {

    border-bottom: 1px solid #9d9d9d;
    padding: 20px 10px;
}

.tableDiv .display_flex_col .display_flex p {
    text-align: center;
    width: 30%;
}

.tableDiv .display_flex_col .display_flex p:nth-child(1) {
    text-align: left;

}

.tableDiv .display_flex_col .display_flex p:nth-child(3) {
    text-align: right;

}

.yellow,
.red,
.green {
    height: 110px;
    width: 32.5%;
    color: white;
    max-width: 310px;
    text-align: center;
    border-radius: 2px;
}

.yellow {
    background: var(--sdg8);
    box-shadow: 0px 4px 20px 0px #AB1D4566;

}

.red {
    background: var(--sdg16);
    box-shadow: 0px 4px 20px 0px #004B7D66;

}

.green {
    background: var(--sdg5);
    box-shadow: 0px 4px 20px 0px #FB413766;
}

.scolldiv {
    overflow-y: scroll
}

.tabsDiv {
    width: 100%;
    margin: 20px auto;
    max-width: 420px;
    /* box-shadow: 0px 4px 10px 0px #0000001A; */

}

.width {
    width: 100%;
}

.pxform {}

.toggleBtn {
    background-color: white;
    padding: 10px;
    width: 50%;
    max-width: 200px;
    font-size: 13px;
    border-radius: 10px;
    font-family: 'proxima';
    box-shadow: 0px 4px 10px 0px #0000001A;

}

.toggleBtn.active {
    background-color: #0084B8;
    color: white;
}

.registration {
    z-index: 9999;
    display: none;
    margin: 0 auto !important;

}

.registration.active {
    display: flex;
}

.form2 {
    max-width: 800px;
    margin: 0 auto;
}

.form2 .display_flex_col {
    align-items: flex-start;
}

.form2 .display_flex_col .display_flex {
    border: none;
    padding: 0;
}

.border {
    border: 1px solid #9BC3E0 !important;
    padding: 5px 10px !important;

}

.form2 input {
    padding: 5px 10px !important;
    font-family: 'proxima';
    font-size: 16px;
}

.form2 input::placeholder {
    font-family: 'proxima' !important;
}

.w100 {
    width: 100%;
}

.w50 {
    width: 50%;
}

.w30 {
    width: 30%;
}

.custom-checkbox-container {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 18px !important;
    font-family: 'proxima';
}

.custom-checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.custom-checkbox-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: none;
    border-radius: 3px;
    border: 1px solid #9BC3E0;
}

.custom-checkbox-container input:checked+.custom-checkbox-checkmark:after {
    content: '\2713';
    display: block;
    color: #0468B1;
    font-size: 14px;
    text-align: center;
    line-height: 20px;
}

.custom-radio-container {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 18px;
}

.custom-radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.custom-radio-checkmark {
    position: absolute;
    top: -6%;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: none;
    border-radius: 50%;
    border: 1px solid #9BC3E0;
    font-size: 18px;
}

.custom-radio-container {
    font-size: 18px !important;
}

.custom-radio-container span {
    vertical-align: middle;
}

.custom-radio-container input:checked+.custom-radio-checkmark:after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background-color: #0468B1;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form2 label,
.form2 p {
    margin-bottom: 5px;
    font-size: 14px;
    font-family: 'proxima' !important;
}

.form2 h3 {
    margin: 10px 0;
}

.form2 input::placeholder {
    font-size: 16px;
}

.form2 .border input {
    font-size: 18px;
    font-family: 'proxima' !important;
}

.form2 .border input::placeholder {
    font-family: 'proxima' !important;
    font-size: 18px;
    font-weight: 500;
}

.custom-dropdown,
.custom-dropdown2,
.custom-dropdown3 {
    background: none;
    position: relative;
    display: inline-block;
    font-size: 18px;
}

.custom-dropdown2 {
    max-width: 300px;
    /* height: 100px; */
}

.dropdown-button,
.dropdown-button2,
.dropdown-button3 {
    padding: 10px 10px !important;
    padding: 10px;
    color: #9BC3E0;
    cursor: pointer;
    font-family: 'proxima' !important;
    font-size: 18px;
    background: none;
    border-radius: 8px;
}

.dropdown-button2 {
    border: 2px solid rgba(0, 0, 0, 0.309);
    color: black;
    border-radius: 8px;
}

#dateinput {
    width: 100%;
}

.dropdown-content,
.dropdown-content2,
.dropdown-content3 {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    width: 100%;
    border-radius: 8px;
}

.dropdown-content3 {
    max-height: 400px;
    overflow-y: scroll;

}

.dropdown-option,
.dropdown-option2,
.dropdown-option3 {
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 8px;
    text-transform: capitalize;

}

.dropdown-option2,
.dropdown-option3 {
    width: 100%;
}

.dropdown-option:hover,
.dropdown-option2:hover,
.dropdown-option3:hover {
    background: rgb(155, 195, 224);
    color: white;
}

#talkify-audio {
    display: none;
}

.VIpgJd-ZVi9od-l4eHX-hSRGPd {
    display: none;
}

.skiptranslate {
    display: none !important;
}

.skiptranslate.goog-te-gadget {
    display: flex !important;
    width: 91px;
    font-family: 'proxima';
}

#google_translate_element.skipTranslate {
    text-indent: 9000px;
    vertical-align: middle;
    z-index: 2001;
}

.goog-te-gadget .goog-te-combo {
    margin: 4px 0;
    right: 25px;
    position: relative;
}

.goog-te-combo {
    width: 125px;
    font-family: 'proxima';
    margin: 0px;
    background: none;
}

#google_translate_element {}

.langChange {
    border: 1px solid;
    border-radius: 20px;
    padding: 3px;
    max-width: 170px;
    position: absolute;
    top: 35px;
    right: 10px;
    background: white;
    font-size: 14px;
    border: 1px solid var(--sdg1);
    color: black;
    border-radius: 5px;
    padding: 5px 10px;
    overflow: hidden;
    z-index: 2001;
}

#google_translate_element img {
    width: 26px;
}

option {
    border: none;
    font-family: 'proxima';
}

select {
    border: none;
    width: 100%;
    outline: none;
    font-family: 'proxima' !important;
    background: none;
}

.submitForm {
    background: #0468B1;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    width: 100%;
    margin: 10px auto;
    max-width: 160px;
}

.registrationPopUp {
    /* display: none; */
    /* position: absolute; */
    /* top: 10vh; */
    /* box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.117); */
    /* left: 50%; */
    /* transform: translateX(-50%); */
    /* height: 80vh; */
    /* width: 80%; */
    /* max-width: 1000px; */
    /* max-width: 1000px; */
    /* background-color: white; */
    /* overflow: scroll; */
}

.registrationPopUp.active {
    display: block;
}

.overlay {
    position: absolute;
    display: none;
    z-index: 99990;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.187);
    backdrop-filter: blur(4px);
}

.overlay.active {
    display: block;
}

/* charts */
.doughnut>.display_flex:nth-child(2) {
    width: 100%;
}

.doughnut>.display_flex:nth-child(2) p:nth-child(2) {
    /* width: 20%; */
}

.bar {
    align-items: flex-start;
}

.bar>.display_flex:nth-child(2)>div:nth-child(1) {
    width: 50%;
}

.bar>.display_flex:nth-child(2)>div:nth-child(2) {
    width: 30%;
}

.bar>.display_flex:nth-child(2)>div:nth-child(2) p {
    width: 20%;
}

/* .bar>div:nth-child(1) {
    width: 70%;
} */

.bar>div:nth-child(1) canvas {
    /* height: 400px !important; */
}

.bar>.display_flex:nth-child(2) {
    width: 30%;
}

.bar>.display_flex:nth-child(2)>div:nth-child(1) {
    width: 100%;
}

.bar>.display_flex:nth-child(2)>div:nth-child(1) p {
    margin: 15px 0;
}

.bar>.display_flex:nth-child(2)>div:nth-child(2) {
    width: 30%;
    display: none;
}

.bar div {
    width: 50%;
}

.map {
    width: 100%;
    width: 320px;
    height: 360px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 99991;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    border-radius: 4px;
    width: 95%;
    max-width: 800px;
    max-height: 1000px;
    overflow-y: scroll;
    height: 80vh;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

/* The Close Button */
.close {
    color: rgb(255, 255, 255);
    font-size: 36px;
    font-weight: bold;
    z-index: 99992;
    position: absolute;
    right: 10%;
    top: 50px;

}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 2px 16px;
    /* background-color: #5cb85c; */
}

.modal-body {
    padding: 2px 16px;
}

.modal-footer {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}

.bar>.display_flex:nth-child(2) {
    width: 45% !important;
    height: 100%;
}

#myChart3 {
    /* width: 100% !important;
height: 100% !important; */
    /* transform: rotate(90deg) translateY(200px); */
    /* transform-origin: bottom; */
    /* height: 400px !important;
    width: 210px !important; */

}

.bar>div {
    /* width: 210px;
    height: 400px; */
}

#myChart4 {
    max-width: 230px;
}

#myChart4+p {
    font-size: 23px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.legend {
    width: 20px;
    height: 10px;
}

#myBtn,
#myBtn2 {
    /* position: absolute;
    top: 10px;
    right: 20px; */
}

#myBtn,
#myBtn2 {
    background: var(--undpblue);
    color: white;
    padding: 5px 10px;
    border-radius: 2px;
}

#myBtn:hover,
#myBtn2:hover {
    background: rgba(4, 105, 177, 0.769);

}

.disclaimer h3 {
    padding: 10px;
    font-size: 24px;
}

.disclaimer div:nth-child(2) {
    padding: 10px;
    overflow-y: scroll;
}

.disclaimer .btnStrip {
    background: #0468B11A;
    padding: 10px;
    width: 120%;
    justify-content: space-around;
}

.disclaimer p {
    margin: 5px 0;
    text-align: justify;
    line-height: 22px;
}

.disclaimer {
    position: absolute;
    border-radius: 2px;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    justify-content: space-between;
    background: white;
    width: 98%;
    height: 450px;
    max-width: 700px;
    overflow: hidden;
    box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.212);
    /* z-index: 2; */

}

.btn1 {}

.btn1 {
    cursor: pointer;
    color: white;
    background-color: #0468B1;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin: 0 auto;
    font-size: 13px;
}

#backWall {
    position: absolute;
    left: 0;
    /* display: none; */
    top: 0;
    height: 100vh;
    z-index: 99999;
    width: 100%;
    overflow: hidden;
}

#submittingMessage {
    top: 50%;
    left: 50%;
    position: absolute;
    background-color: white;
    transform: translateX(-50%) translateY(-50%);
    padding: 80px 40px;
    border-radius: 2px;
    width: 80%;
    max-width: 600px;
    z-index: 999999;
    margin: 0 auto;
    text-align: center;
    font-size: 24px;
    color: var(--undpblue);
    border-radius: 4px;
    box-shadow: 0 0 10px 2px rgba(128, 128, 128, 0.264);
}

#checkAdharLocal {
    display: none;
}

#checkAdharLocal.active {
    display: block;
}

.mapsvg {
    width: 100%;
    max-width: 500px;
}

.spinner {
    margin: 100px auto;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
}

.dot1,
.dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: var(--undpblue);
    border-radius: 100%;
    -webkit-animation: bounce 2s infinite ease-in-out;
    animation: bounce 2s infinite ease-in-out;
}

.dot2 {
    top: auto;
    bottom: 0;
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes bounce {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes bounce {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.errorMessage {
    text-align: right;
    color: red;
    margin-top: .3rem;
    font-size: .9rem;
    font-weight: 600;
    display: none;
}

.error input {
    border-color: #f2070e
}

.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99999;
}

.popup {
    position: absolute;
    top: 50%;
    max-width: 600px;
    width: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    min-height: 300px;
    padding: 20px;
    justify-content: space-evenly;
}

.buttons {
    margin-top: 10px;
    color: white;
}

.buttons button:nth-child(1) {
    padding: 15px 40px;
    font-size: large;
    color: white;
    background: var(--undpblue);
    border-radius: 2px;
}

.buttons button:nth-child(2) {
    padding: 15px 40px;
    font-size: large;
    background: #dfdfdf;
    color: rgb(0, 0, 0);
    border-radius: 2px;
}

/* Dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown button */
.dropbtn {
    background: none;
    color: #000000;
    font-size: 13px;
    border: none;
    cursor: pointer;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 160px;
    z-index: 1;
    top: 40px;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: #000000;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: none;
    color: white;
}


/* slider */
.slick-slider {
    display: flex !important;
    justify-content: center !important;
    /* width:100%; */
    /* height:100% !important; */
}

.hide,
.slick-dots,
.viewMoreDiv.show {
    display: flex
}

.slick-list {
    display: flex;
    justify-content: center;
    /* max-height: 600px !important; */
    height: 100% !important;
    /* height: 100%; */

    width: 100% !important;
    background: black;
}

.slick-track {
    height: 100% !important;
    display: flex;
    /* transform: none; */
    /* max-height: 600px !important; */

}

.slick-arrow {
    position: absolute;
    top: 48%;
    height: 22px;
    width: 22px;
    z-index: 96;
    cursor: pointer;
    display: none !important;
}

.slick-prev {
    left: 10px !important
}

.slick-next {
    right: 10px !important
}

.slick-dots {
    /* align-self: center */

}

.slick-dots li button {
    background-color: #b3b3b3;
    border-radius: 50%;
    margin: 5px;
    height: 6px;
    width: 6px;
    text-indent: -9000px;
    vertical-align: middle;
    transform-origin: center center
}

.slick-dots li {
    height: 20px
}

.slick-dots .slick-active button {
    background: #000;
    width: 15px;
    height: 6px;
    border-radius: 10px
}

.slick-slide {
    height: 100%;
    width: 100%;
    /* display: flex; */
    /* max-height: 600px !important; */
    /* width: 100% !important; */
    object-fit: cover;
}

.slick-slide img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}