        html,
        body {
            padding: 0;
            margin: 0;
            height: 100%;
            width: 100%;
            font-family:'Times New Roman', Times, serif;
          overflow: hidden;
        }
        
        body,
        * {
            box-sizing: border-box;
            padding: 0px;
        }
        
        .body-box {
            position: relative;
            height: 100vh;
            width: 100vw;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }
        
        .header {
            display: flex;
            width: 100%;
            height: 55px;
            color: #f8f8f8;
            background: #356584;
            font-size: 20px;
            align-items: center !important;
            flex-direction: row;
            justify-content: space-between;
            font-family: 'lato', sans-serif;
            font-style: normal;
            font-weight: 100;
            z-index: 8;
        }

 
        .controlbar {
            display: flex;
            height: 40px;
            width: 100%;
            background: #356584;
            box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.6);
            align-items: center;
            font-family: 'lato', sans-serif;
            font-style: normal;
            font-weight: 100;
            z-index: 8;
        }
        
        .sidebar_gp-left {
            height: 70%;
            width: 9rem;
            display: flex;
            align-items: center;
        }
        
        .sidebar_gp-left ul {
            height: 100%;
            width: 100%;
            display: flex;
            align-items: center;
            color: #e9e9e9;
            border: 1px solid #356584;
        }
        
        .sidebar_gp-left ul li {
            height: 100%;
            width: 100%;
            padding: 3px 9px;
            display: flex;
            align-items: center;
            list-style: none;
            box-sizing: border-box;
            background-color: transparent;
            justify-content: flex-start;
            border-radius: 2px;
            -webkit-border-radius: 2px;
            -moz-border-radius: 2px;
            -ms-border-radius: 2px;
            -o-border-radius: 2px;
            cursor: pointer;
        }
        
        .sidebar_gp-li:hover:active {
            transform: translateY(2px);
            -webkit-transform: translateY(2px);
            -moz-transform: translateY(2px);
            -ms-transform: translateY(2px);
            -o-transform: translateY(2px);
            transition: all 0.5s;
            -webkit-transition: all 0.5s;
            -moz-transition: all 0.5s;
            -ms-transition: all 0.5s;
            -o-transition: all 0.5s;
            background-color: #6cacd1;
        }
        
        .sidebar_gp-li:hover {
            color: #e9e9e9;
            fill: #e9e9e9;
            transition: all 0.5s;
            background-color: #6cacd1;
            transform: translateY(-1px);
            -webkit-transform: translateY(-1px);
            -moz-transform: translateY(-1px);
            -ms-transform: translateY(-1px);
            -o-transform: translateY(-1px);
            -webkit-transition: all 0.5s;
            -moz-transition: all 0.5s;
            -ms-transition: all 0.5s;
            -o-transition: all 0.5s;
        }
        
        .btnactive {
            border-bottom: 2px solid #F05C5A;
        }
        
        .btnnotactive {
            border-bottom: 2px solid transparent;
        }
        
        .sidebar_gp-left ul li span {
            margin-right: 8px;
        }
        
        .sidebar_gp-left ul li div {
            padding-bottom: 5px;
        }
        
        .sidebar_gp-details {
            width: 1.2rem;
            height: 1.2rem;
            fill: rgb(221, 217, 217);
        }
        
        .sidebar_gp-li:hover .sidebar_gp-details {
            fill: rgb(250, 247, 247);
        }
        
        .title,
        .message {
            padding: 5px 0rem;
        }
        
        .message {
            align-self: flex-end;
            text-align: right;
        }
        
        .sidebar {
            position: absolute;
            top: 105px;
            z-index: 5;
            width: 23rem;
            transition: all 2s;
            -webkit-transition: all 2s;
            -moz-transition: all 2s;
            -ms-transition: all 2s;
            -o-transition: all 2s;
            background-color: transparent;
            font-style: normal;
            font-weight: 100;
        }
        
        .sidepannelshow {
            transform: translateX(0);
            -webkit-transform: translateX(0);
            -moz-transform: translateX(0);
            -ms-transform: translateX(0);
            -o-transform: translateX(0);
            visibility: visible;
            opacity: 1;
            left: 0;
        }
        
        .sidepannelhide {
            position: absolute;
            visibility: hidden;
            opacity: 0;
            left: -10px;
            transform: translateX(-40rem);
            -webkit-transform: translateX(-40rem);
            -moz-transform: translateX(-40rem);
            -ms-transform: translateX(-40rem);
            -o-transform: translateX(-40rem);
        }
        
        .sidebar_gp-close-box {
            position: absolute;
            top: 5px;
            right: 15px;
            fill: #e9e9e9;
            border-radius: 15px;
            -webkit-border-radius: 15px;
            -moz-border-radius: 15px;
            -ms-border-radius: 15px;
            -o-border-radius: 15px;
            cursor: pointer;
        }
        
        .sidebar_gp-close-box:active {
            fill: #6ca2c2;
        }
        
        .sidebar_gp-close {
            width: 0.8rem;
            height: 0.8rem;
        }
        
        .sidebar-active {
            width: 30%;
        }
        
        .sidebarcontainer-box {
            position: relative;
            margin-bottom: 10px;
            width: 100%;
            height: 100%;
            display: flex;
            background-color: transparent;
            flex-direction: column;
            justify-content: flex-end;
            background-color: transparent
        }
        
        .sidebarcontainer {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            background-color: #356584;
            border: 2px solid #356584;
        }
        
        .sidebar_content {
            margin-top: 2rem;
            background-color: rgb(221, 215, 215);
            border-top: 1px solid rgb(216, 210, 210);
            height: 90%;
            width: 100%;
            flex-grow: 1;
        }
        
        .sidebar_content_innercontent {
            flex-grow: 1;
            width: 100%;
            height: 100%;
            background-color: #fff;
        }
        .results_box{
            background-color: #fff;
            border-top: 1px solid #356584;
        }

        .result_container{
            height: 100%;
            background-color: #356584;
        }
        
        .ui-widget.ui-widget-content {
            border: none;
        }
        
        .close_btn {
            position: absolute;
            top: 40%;
            right: -2.5rem;
            height: 5rem;
            width: 2.5rem;
            z-index: 4;
            background-color: #f8f8f8;
            display: flex;
            align-items: center;
            justify-content: center;
            border-top-right-radius: 2.5rem;
            border-bottom-right-radius: 2.5rem;
            box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.4);
        }
        
        .map_container {
            position: relative;
            width: 100%;
            height: calc(100% - 95px);
            display: flex;
        }
        
        #viewDiv {
            width: 100%;
            height: 100%;
            display: flex;
            flex-grow: 1;
            border: none;
        }
        #tabs-1{
            height: 100%;
            width: 100%;
            padding: 1rem 0.5rem 0.0rem 0.5rem;  
        }
        

        #tabs-2 {
            height: 100%;
            width: 100%;
            padding: 1rem 0.5rem 0.0rem 0.5rem;
            max-height: 30rem;
            overflow-y: auto;
        }
        
        .staff_info_inner {
            height: 100%;
            width: 100%;
            margin-bottom: 0.5rem;
        }
        
        .staff_info,
        .staff_sections {
            height: 100%;
            width: 100%;
            font-size: 12px;
        }
        
        .ui-state-active,
        .ui-widget-content .ui-state-active,
        .ui-widget-header .ui-state-active,
        a.ui-button:active,
        .ui-button:active,
        .ui-button.ui-state-active:hover {
            background-color: #356584 !important;
        }
        /* CONTENT DETAILS */
        
        .selectsection {
            display: flex;
            position: relative;
            margin-bottom: 0.3rem;
            justify-content: space-between;
            width: 100%;
            font-size: 12px;
        }
   
        .labelbox {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            flex-grow: 1;
            width: 100%;
            border-radius: 5px;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            -ms-border-radius: 5px;
            -o-border-radius: 5px;
            margin: 0.2em;
        }
        
        .sec_dropdown {
            width: 18em;
            position: relative;
            border-bottom: 3px solid transparent;
        }
        
        .area_sec_dropdown {
            width: 18em;
            position: relative;
        }
        
        .area-search {
            flex-grow: 1;
            width: 100%;
            margin-right: 0.0em;
        }
        
        .sec_dropdown * {
            box-sizing: border-box;
        }
        
        .sec_select,
        .area_sec_select {
            background: #356584;
            color: #e9e9e9;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: 2px #356584 solid;
            border-radius: 0.5em;
            -webkit-border-radius: 0.5em;
            -moz-border-radius: 0.5em;
            -ms-border-radius: 0.5em;
            -o-border-radius: 0.5em;
            padding: .1em;
            cursor: pointer;
            transition: background 0.3s;
            -webkit-transition: background 0.3s;
            -moz-transition: background 0.3s;
            -ms-transition: background 0.3s;
            -o-transition: background 0.3s;
        }
        
        .area-search_select {
            border-top-right-radius: 0.0em;
            border-bottom-right-radius: 0.0em;
            height: 100%;
        }
        
        .divider {
            height: 1px;
            width: 100%;
            border: 1px solid rgb(168, 161, 161);
            margin-bottom: 0.4rem;
        }
        
        .search_container {
            /* height: 75px; */
            width: 100%;
            display: flex;
            flex-direction: column;
        }
        
        #gsearch,
        #staffsearch {
            padding: 1px 0px 1px 25px;
            height: 100%;
            flex-grow: 1;
            font-size: 10px;
            outline: none;
            z-index: 3;
            color: inherit;
            border-bottom: 2px solid transparent;
            border: 1px solid #356584;
        }
        
        #gsearch:focus,
        #staffsearch:focus {
            border: none;
            border-bottom: 3px solid #da5755;
        }
        
        .search_icon-box {
            width: 1.5rem;
            height: 100%;
            position: absolute;
            display: flex;
            justify-content: center;
            align-items: center;
            border-bottom: 1px solid transparent;
            z-index: 5;
           
        }
        .search_delete-box{
            width: 0.7rem;
            height: 100%;
            right: 4.2rem;
            position: absolute;
            display: inline-block;
            border-bottom: 1px solid transparent;
            z-index: 15; 
            cursor: pointer;
        }
        .deleteshow{
         visibility: visible; 
         opacity: 1; 
        }

        .deletehide{
            visibility: hidden; 
            opacity: 0; 
         }


        
        .search_icon {
            width: 1.0rem;
            height: 0.80rem;
            fill: #356584;
        }

        .search_delete{
            width: 0.7rem;
            height: 100%;
            fill: #356584; 
        }
        
        .input-grp,
        .staffname-grp {
            display: flex;
            position: relative;
            font-size: 12px;
            width: 100%;
        }
    
        
        #submitbtn-area {
            width: 4rem;
            background-color: #da5755;
            outline: none;
            border: none;
            color: #e9e9e9;
            padding: 0;
            border-top-right-radius: 5px;
            border-bottom-right-radius: 5px;
            cursor: pointer;
        }
        
        #submitbtn {
            width: 4rem;
            background-color: #da5755;
            outline: none;
            border: 3px solid transparent;
            color: #e9e9e9;
            border-top-right-radius: 5px;
            border-bottom-right-radius: 5px;
            cursor: pointer;
        }
        
        #submitbtn:hover,
        .submitbtn-area:hover {
            background-color: #7e1e1c;
        }
        
        form .fa-magnifying-glass {
            z-index: 2;
        }
        
        .sec_select-clicked {
            border: 2px #356584 solid;
            box-shadow: 0 0 0.1em #356584;
        }
        
        .sec_select:hover,
        .area_sec_select:hover {
            background: #01324b;
        }
        
        .caret {
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 6px solid #e9e9e9;
            transition: 0.3s;
            -webkit-transition: 0.3s;
            -moz-transition: 0.3s;
            -ms-transition: 0.3s;
            -o-transition: 0.3s;
        }
        
        .caret-rotate {
            transform: rotate(180deg);
            -webkit-transform: rotate(180deg);
            -moz-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
            -o-transform: rotate(180deg);
        }
        
        .menu,
        .area_menu {
            list-style: none;
            padding: 0.2em 0.5em;
            background: #356584;
            border: 1px #363a43 solid;
            box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.3);
            border-radius: 0.5em;
            -webkit-border-radius: 0.5em;
            -moz-border-radius: 0.5em;
            -ms-border-radius: 0.5em;
            -o-border-radius: 0.5em;
            color: #e9e9e9;
            position: absolute;
            top: 1em;
            left: 50%;
            width: 100%;
            max-height: 15rem;
            overflow-y: auto;
            transform: translateX(-50%);
            opacity: 0;
            display: none;
            transition: 0.2s;
            -webkit-transition: 0.2s;
            -moz-transition: 0.2s;
            -ms-transition: 0.2s;
            -o-transition: 0.2s;
            z-index: 16;
            -webkit-transform: translateX(-50%);
            -moz-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            -o-transform: translateX(-50%);
        }
        
        .menu li,
        .area_menu li {
            padding: 0.2em 0.2em;
            margin: 0.3em 0;
            border-radius: 0.5em;
            -webkit-border-radius: 0.5em;
            -moz-border-radius: 0.5em;
            -ms-border-radius: 0.5em;
            -o-border-radius: 0.5em;
            cursor: pointer;
        }
        
        .menu li:hover,
        .area_menu li:hover {
            background: #065c86;
        }
        
        .active {
            background: #014161;
        }
        
        .menu-open,
        .area_menu-open {
            display: block;
            opacity: 1;
        }
        
        .select_box {
            display: flex;
            font-size: 12px;
        }
        
        .form_group {
            display: flex;
            width: 100%;
            position: relative;
        }
        /* SPINNER */
        
        #loading-bar-spinner.spinner {
            left: 50%;
            margin-left: -20px;
            top: 40%;
            margin-top: -10px;
            position: absolute;
            z-index: 2 !important;
            animation: loading-bar-spinner 400ms linear infinite;
        }
        
        #loading-bar-spinner.spinner .spinner-icon {
            width: 30px;
            height: 30px;
            border: solid 4px transparent;
            border-top-color: #356584 !important;
            border-left-color: #356584 !important;
            border-radius: 50%;
        }
        
        @keyframes loading-bar-spinner {
            0% {
                transform: rotate(0deg);
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
                transform: rotate(360deg);
            }
        }
        
        .search-content {
            min-height: 15rem;
            width: 100%;
            padding: 2rem 1.2rem 0.5rem 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        
        .pages {
            height: 1.2rem;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #e9e9e9;
            margin-bottom: 0.5rem;
        }
        
        .arrows {
            width: 3rem;
            height: 100%;
            display: flex;
            align-items: center;
        }
        
        .l_arrow,
        .r_arrow {
            width: 1.2rem;
            height: 1.2rem;
            fill: #e9e9e9;
            cursor: pointer;
        }
        
        .l_arrow:active,
        .r_arrow:active {
            background-color: rgb(184, 172, 172);
        }
        
        .counts {
            font-size: 10px;
            width: 6rem;
            height: 100%;
            display: flex;
            align-items: center;
        }
        
        .staff_details {
            flex-grow: 1;
            padding: 0.5rem 0.2rem;
            font-style: normal;
            max-height: 50vh;
            overflow-y: auto;
        }
        
        .staff_details ul li {
            color: #e9e9e9;
            display: flex;
            text-decoration: none;
            list-style: none;
            font-size: 12px;
            margin-bottom: 0.1rem;
            align-items: center;
            overflow-wrap: break-word;
        }
        
        .htitle {
            display: flex;
            width: 4.5rem;
            background-color: #02486b;
            padding: 0.1rem 0.2rem 0.1rem 0.5rem;
        }
        
        .staff_details ul {
            overflow-y: auto;
        }
        
        .stf_inf-box {
            display: flex;
            flex-grow: 1;
            overflow-wrap: break-word;
            word-wrap: break-word;
            padding: 0.1rem;
            border-bottom: 1px solid #e9e9e9;
        }
        
        .more_btn {
            padding: 4px 0;
            font-size: 9px;
            width: 2.8rem;
            background-color: #02486b;
            /* background-color: #c1c3c9; */
            cursor: pointer;
            text-align: center;
            height: 1.0rem;
            margin: auto;
            display: inline-block;
        }
        
        .more_btn:active {
            background-color: #277aa3;
        }
        
        #staff_details_ul {
            margin-bottom: 0px;
            font-size: 12px;
            /* display: flex;
            flex-direction: column; */
        }
        
        .detailbar {
            width: 100%;
            height: 2rem;
            overflow-y: auto;
            border-top: 1px solid #e9e9e9;
            font-style: italic;
            font-size: 12px;
            display: none;
            color: #e9e9e9;
            /* color: #356584; */
        }
        
        .smallheight {
            max-height: 50vh;
        }
        
        .mediumheight {
            max-height: 55vh;
        }
        
        .largeheight {
            max-height: 70vh;
        }
        

        .search_input-box {
            position: relative;
            /* margin-top: 1px; */
            width: 100%;
            height: 1px;
            width: 100%;
            /* opacity: 0; */
        }
        
        .suggestion-box {
            position: absolute;
            top: 1px;
            left: 0px;
            width: 100%;
            font-size: 10px;
            padding: 0 1rem 0 0.4rem;
            background-color: #fff;
            color: #181717;
            border-top-right-radius: 10px;
            border-bottom-right-radius: 10px;
            z-index: 13;
            box-shadow: 0px 1px 5px 3px rgba(0, 0, 0, 0.15);
        }
        
        .suggestion-box ul {
            padding: 8px 5px;
            max-height: 12rem;
            overflow-y: auto;
        }
        
        .suggestion-box ul li {
            list-style: none;
            padding: 1px 10px;
            cursor: pointer;
            border-radius: 3px;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            -ms-border-radius: 3px;
            -o-border-radius: 3px;
        }
        
        .suggestion-box ul li:hover {
            background-color: #c2c2c7;
        }
        
        .esri-slider {
            position: absolute;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            top: 11.2rem;
            right: 0.8rem;
            width: 2.2rem;
            height: 220px;
            background-color: #356584;
            z-index: 3;
        }
        .separator-box{
            padding: 0.4rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #da5755;
            font-weight: bold;
        }
        .separator{
            height: 0.5rem;
            width: 100%;
        }
        #amount {
            width: 100%;
            height: 2rem;
            background-color: #356584;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
        }
        
        .sliderbar {
            width: 100%;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        #list2,
        #list2 li {
            padding-left: 20px;
        }
        
        #list2 li {
            margin-top: 10px;
        }
        
        .links a:active,
        .links a:link,
        .links a:visited {
            color: #356584;
            text-decoration: underline;
            text-underline-offset: 5px;
        }

        .ui-tabs .ui-tabs-nav{
         padding: 0 0 0 0 !important;
        }

        .ui-tabs .ui-tabs-nav .ui-tabs-anchor {
            float: left;
            padding: 0.1em .1em !important;
            font-size: 12px !important;
            /* text-decoration: none; */
        }

.show-cover{
    height: 100%;
    width: 100%;
    z-index: 10; 
    position:absolute;
    top: 0;
    left: 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer; 
}
.section_cover-text{
    font-size: 14px;
    display: none;
}
.show-cover:hover{
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.show-cover:hover .section_cover-text{
    display: block;  
}


.section_cover-box{
    position: relative;
    width: 100%;
    height: 100%;
}
.show-cover:active{
    background-color: rgba(0, 0, 0, 0.0);
    backdrop-filter:blur(0px)
}
.show-cover:active .section_cover-text{
    display: none;
}

.popup {
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(90deg,  rgba(240, 92, 90, 0.5),  rgba(0, 98, 155, 0.6));
    z-index: 100;
    backdrop-filter: blur(10px);
}
@supports (-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px)) {
    .popup {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: linear-gradient(90deg,  rgba(240, 92, 90, 0.5),  rgba(0, 98, 155, 0.6));
}
}
/* .disclaimer{
    padding: 0.0rem;
} */
.popup__content {
    color: #fff;
    box-sizing: border-box;
    width: 40rem;
    height: 32rem;
    padding: 2rem;
    display: block;
    background-color: #356584;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,  -50%);
    border: 1px solid #F05C5A;
    overflow: hidden;
    border-radius: 3px;
    z-index: 299;
    font-size: 1.0rem;
}
@supports (display: flex) {
    .popup__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
}




.diclaimer-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
}
.disclaimer{
    padding: 0 !important;
}
.disclaimer_link{
    text-decoration: none;
    color:#F05C5A;
}

.disclaimer span {
    color: #F05C5A;
    padding-bottom: 0.1rem;
    margin-top: 1rem;
    margin-bottom: 0.1rem;
    font-size: 1.4rem;
    font-weight: bold;
    border-bottom: 1px solid #fff;
}
.disclaimermsg{
display: flex;
flex-direction: column;
margin-top: 0.2rem;
}
.disclaimermsg div{
    margin-top: 0.2rem;
    text-align: justify;
    text-transform: inherit;
    }
.message {
    text-justify: inter-word;
    margin-bottom: 0.1rem;
    text-align: justify;
    text-transform: inherit;
}
@supports (display: flex) {
    .disclaimermsg, .message {
    display: flex;
    text-transform: initial;
}
}

#popUp-Close {
    display: block;
    margin: 1rem auto;
    padding: 0.5rem 2rem;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border: none;
    background-color: #F05C5A;
    color: #fff;
    font-size: 1.4rem;
}
@supports (display: flex) {
    #popUp-Close {
    margin-top: 0.5rem;
}
}


#popUp-Close:hover {
    box-shadow: 5px 8px 10px rgba(0, 0, 0, 0.3);
}
#popUp-Close:focus {
    box-shadow: 3px 2px 5px rgba(0, 0, 0, 0.5);
    outline: none;
    transform: translateY(2px);
    -webkit-transform: translateY(2px);
    -moz-transform: translateY(2px);
    -ms-transform: translateY(2px);
    -o-transform: translateY(2px);
}
.popupLogoImg {
    width: 13rem;
    margin-bottom: 1rem;
}
.popupLogo {
    display: flex;
    justify-content: center;
    width: 100%;
    border-bottom: 1px solid #fff;
    /* margin-bottom: 1rem; */
}


@media only screen and (max-width: 1200px) {
    .popup__content {
    padding: 1rem;
    /* background-color: red !important; */
    color: #fff;
    box-sizing: border-box;
    width: 35rem;
    height: 27rem;
    background-color: #356584;
    font-size: 0.9rem;
 
}
.popupLogoImg {
    width: 8rem;
    margin-bottom: 0.7rem;
}
#popUp-Close {
    display: block;
    margin: 0.5rem auto;
    padding: 0.5rem 2rem;
    font-size: 1rem;
}

}

@media only screen and (max-width: 800px) {
    .popup__content {
        padding: 1rem;
        /* background-color: red !important; */
        color: #fff;
        box-sizing: border-box;
        width: 32rem;
        height: 28rem;
        background-color: #356584;
        font-size: 0.9rem;
     
    }
    .popupLogoImg {
        width: 8rem;
        margin-bottom: 0.7rem;
    }
    #popUp-Close {
        display: block;
        margin: 0.5rem auto;
        padding: 0.5rem 2rem;
        font-size: 1rem;
    }

    .body-box {
        position: relative;
        height: 100vh;
    }
    .map_container {
        position: absolute;
        top: 95px;
        width: 100%;
        height: calc(100vh - 95px);
    }
    .controlbar {
        background-color: #F05C5A;
    }
    .sidebar_gp-left ul {
        border: 1px solid #da5755
    }
    .sidebar_gp-li:hover:active {
        background-color: #356584;
    }
    .sidebar_gp-li:hover {
        background-color: #356584;
    }
    .sidebar {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
     
        left: 0px;
        width: 70%;
      
        background-color: rgba(0, 0, 0, 0)
    }
    .suggestion-box {
        font-size: 8px;
    }
    
}


@media all and (max-width: 700px) {
    #tabs-1{
        padding: 0.3rem 0.5rem 0.0rem 0.5rem;  
    }
    .more_btn{
        font-size:7px;   
        padding: 1px 0;
        width: 2.0rem;
        height: 0.6rem;
    }

    .staff_info,
    .staff_sections {
        font-size: 10px;
    }

    .menu,.sec_select-clicked,
    .area_menu {
        font-size: 10px;
    }
    .sec_select,
    .area_sec_select{
        font-size: 10px; 
    }
    .ui-accordion-content{
        padding: 0px 0px !important;
    }
    .selectsection {
        flex-direction: column;
        width: 100%;
        margin-bottom: 0.0px;
        font-size: 10px;
    }
    .staff_details {
        padding: 0rem 0.1rem 1rem 0.1rem;
    }
    .sec_dropdown {
        width: 100%;
    }
    .labelbox {
        width: 100%;
    }
    #submitbtn {
        padding: 0px 5px;
    }
    .select_box {
        flex-direction: column;
    }
    .htitle,.stf_inf-box{
        font-size: 8px;
    }
    .separator-box{
        font-size: 10px; 
    }
    #submitbtn-area {
        background-color: #da5755;
        outline: none;
        border: none;
        padding: 3px 0;
        color: #e9e9e9;
        border-radius: 0.5em;
        margin-top: 0.7rem;
        cursor: pointer;
        width: 100%;
        -webkit-border-radius: 0.5em;
        -moz-border-radius: 0.5em;
        -ms-border-radius: 0.5em;
        -o-border-radius: 0.5em;
    }
    .area-search_select {
        border-top-right-radius: 0.5em;
        border-bottom-right-radius: 0.5em;
        height: 100%
    }
    .staff_info_inner {
        padding: 0.0rem 0.2rem;
        /* max-height: 25rem; */
    }
    .staff_info {
        height: 100%;
    }
    .search-content {
        width: 100%;
        padding: 2rem 0rem;
    }
    .search_result-card-box {
        height: 25rem;
        width: 22rem;
    }
    .search_result-card {
        /* height: 23rem;
        width: 18rem; */
        height: 100%;
        width: 20rem;
    }
    .search_result-card_red {
        height: 100%;
        width: 20rem;
    }
    #gsearch,
    #staffsearch {
        width: 80%;
    }

    .popup__content {
        padding: 1rem;
        /* background-color: red !important; */
        color: #fff;
        box-sizing: border-box;
        width: 30rem;
        height: 32rem;
        background-color: #356584;
        font-size: 0.9rem;
     
    }
    .popupLogoImg {
        width: 6rem;
        height: 3rem;
        margin-bottom: 0.5rem;
    }
    #popUp-Close {
        display: block;
        margin: 0.5rem auto;
        padding: 0.5rem 2rem;
        font-size: 0.8rem;
    }
    .disclaimer span {
        padding-bottom: 0.1rem;
        margin-top: 1rem;
        margin-bottom: 0.1rem;
        font-size: 1rem;
    }
}



@media only screen and (max-width: 500px) {
    .popup__content {
        padding: 0.5rem;
        color: #fff;
        box-sizing: border-box;
        width: 17rem !important;
        height: 28rem;
        background-color: #356584;
        font-size: 0.7rem !important;
     
    }
    .popupLogoImg {
        width: 6rem;
        height: 3rem;
        margin-bottom: 0.5rem;
    }
    #popUp-Close {
        display: block;
        margin: 0.5rem auto;
        padding: 0.2rem 2rem !important;
        font-size: 0.8rem;
    }
    .disclaimer span {
        padding-bottom: 0.1rem;
        margin-top: 1rem;
        margin-bottom: 0.1rem;
        font-size: 0.9rem !important;
    }

}


@media only screen and (max-width: 250px) {
    .popup__content {
        padding: 0.5rem;
        /* background-color: red !important; */
        color: #fff;
        box-sizing: border-box;
        width: 13rem !important;
        height: 26rem;
        background-color: #356584;
        font-size: 0.5rem !important;
     
    }
    .popupLogoImg {
        width: 5rem;
        height: 2.5rem;
        margin-bottom: 0.5rem;
    }
    #popUp-Close {
        display: block;
        margin: 0.5rem auto;
        padding: 0.2rem 2rem !important;
        font-size: 0.8rem;
    }
    .disclaimer span {
        padding-bottom: 0.1rem;
        margin-top: 1rem;
        margin-bottom: 0.1rem;
        font-size: 0.9rem !important;
    }

}

.footer_logo{
    position: absolute;
    left: 1rem;
    width: 5rem;
    height: 2rem;
    z-index: 15;
    bottom: 5rem;
}

.footer_logo img{
    width: 5rem;
    /* height: 2rem; */
}