.switchBox {
    top: 30%;
    position: relative;
    display: inline-block;
    width: 65%;
    height: 65%;
}

.switchBox input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 95%;
    width: 41%;


    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(140%);
    -ms-transform: translateX(140%);
    transform: translateX(140%);
}

/* Rounded sliders */
.slider.round {
    border-radius: 20px;
}

.slider.round:before {
    border-radius: 50%;
}

textarea {
    resize: none !important;
}

/*-------------------------Loader------------------------*/
.overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.8) url("loader.gif") center no-repeat;
}

/* Turn off scrollbar when body element has the loading class */
body.loading {
    overflow: hidden;
}

/* Make spinner image visible when body element has the loading class */
body.loading .overlay {
    display: block;
}

.dropdownstyle {
    width: 50%;
}

.dropdownstyleSub {
    width: 70%;
}

.reallocate_table {
    overflow-y: scroll;
    overflow-x: hidden;
    max-height: 50vh;
}

.modal-table {
    text-align: center;
}

.dashboard-icon {
    margin-left: 10px;
}

.complaintOverlay {
    width: 90%;
    z-index: 9;
    position: absolute;
    top: 35px;
    background: #ffffff;
}

.surveyDetailsSearchList {
    width: 90%;
    z-index: 9;
    position: absolute;
    top: 60px;
    background: #ffffff;
}

.meterComplaintList {
    cursor: pointer;
    margin-left: -25px;
    height: 30px;
    padding-left: 0;

}

.meterComplaintList:hover {

    background: #eeeeee;

}

.groupfieldset {
    margin-top: 22px;
    margin-bottom: 20px;
    margin-left: 10px;
    margin-right: 10px;
    border: solid 1px #D8D8D8;
    position: relative;
    padding-top: 30px;
    padding-bottom: 5px;
    padding-left: 5px;
    padding-right: 5px;

}

.scroll_content {
    overflow-x: hidden;
    overflow-y: auto;
}

.grouptitletext {
    background-color: white;
    color: #2E2E2E;
    font-size: 15px;
    margin-top: 3px;
    padding-left: 7px;
    padding-right: 7px;
    position: absolute;
    top: -14px;
    left: 20px;
}

.labelTitle {
    font-size: 13px;
    color: #2E2E2E;
}

.email-status-message {

    margin-top: 15px;
}

.btn_space {
    margin-left: 4px;
}

.modal_bdy {
    margin-top: -15px;
}

.ui-state-highlight {
    background: white;

}

body {
    /*overflow-y: hidden !important; */
    /* Hide vertical scrollbar entire page */

}

.scrollauto {

    overflow-y: scroll !important;
    height: 83vh;

}

.scrollautoMeterHistory {

    overflow-y: auto;
    max-height: 400px;

}

/*.scrollautoMeterHistory::-webkit-scrollbar {
  display: none;
}
*/
.zonewardscroll {

    overflow-y: scroll !important;
    height: 40vh;

}

.sub-contractor-scroll {
    overflow-y: auto;
    height: 48vh;

}

.sub-contractor-scroll::-webkit-scrollbar {
    width: 0 !important
}

.body-scroll {
    overflow-y: auto;
}

.body-scroll::-webkit-scrollbar {
    width: 0 !important
}

.subdashboardsectionscroll {

    overflow-y: scroll !important;
    height: 45vh;

}

.indian-mob-input-box {
    display: flex;
    align-items: center;
    /*max-width: 200px;*/
    background: #fff;
    border: 1px solid #a0a0a0;
    /*border-radius: 4px;*/
    padding-left: 0.5rem;
    overflow: hidden;
    font-family: sans-serif;
}

.indian-mob-input-box {
    font-weight: 300;
    font-size: 14px;
    color: #999;
}

.indian-mob-input-box input {
    flex-grow: 1;
    font-size: 14px;
    background: #fff;
    border: none;
    outline: none;
    padding: 0.5rem;
}

.indian-mob-input-box:focus-within {
    border-color: #777;
}

.modal-busy {
    position: fixed;
    z-index: 999;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: black;
    filter: alpha(opacity=60);
    opacity: 0.6;
    -moz-opacity: 0.8;
}

.center-busy {
    z-index: 1000;
    margin: 300px auto;
    padding: 0px;
    width: 100px;
    filter: alpha(opacity=100);
    opacity: 1;
    -moz-opacity: 1;
}

.center-busy img {
    height: 100px;
    width: 100px;
}

.pvr_btn {
    margin-top: 10px;

}


/* Content placeholder start */

@-webkit-keyframes placeHolderShimmer {
    0% {
        background-position: -468px 0;
    }

    100% {
        background-position: 468px 0;
    }
}

@keyframes placeHolderShimmer {
    0% {
        background-position: -468px 0;
    }

    100% {
        background-position: 468px 0;
    }
}

.content-placeholder {
    display: inline-block;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: placeHolderShimmer;
    animation-name: placeHolderShimmer;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    background: #f6f7f8;
    background: -webkit-gradient(linear, left top, right top, color-stop(8%, #dedede), color-stop(18%, #c9c9c9), color-stop(33%, #dedede));
    background: -webkit-linear-gradient(left, #dedede 8%, #c9c9c9 18%, #dedede 33%);
    background: linear-gradient(to right, #dedede 8%, #c9c9c9 18%, #dedede 33%);
    -webkit-background-size: 800px 104px;
    background-size: 800px 104px;
    height: inherit;
    position: relative;
}

.post_data {
    padding: 24px;
    border: 1px solid #f9f9f9;
    border-radius: 5px;
    margin-bottom: 24px;
    box-shadow: 10px 10px 5px #eeeeee;
}

/* Content Placeholder End */

.image-in-modal {
    width: 570px;
    height: 300px;
}

@media only screen and (max-width: 600px) {
    .image-in-modal {
        width: 100%;
        height: 100%;
    }
}

#map-container {
    height: 76vh;
}

div.gmnoprint {
    box-shadow: 0 0.125rem 0.25rem 0 rgb(252 253 253 / 40%);
    background: transparent;
}

div.gmnoprint div button {
    top: 0.25rem !important;
    left: 0.25rem !important;
    cursor: pointer;
    height: calc(3rem + 2px);
    width: calc(3rem + 2px);
    justify-content: center;
    display: inline-flex;
    align-items: center;
    background-color: #fcfdfd;
    border-color: transparent;
    color: #435971;
}

div.gmnoprint div button img {
    display: none;
}

div.gmnoprint div:first-child button {
    border-top-left-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
}

div.gmnoprint div:last-child button {
    border-top-right-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
}

div.gmnoprint div button span {
    background-size: cover !important;
    background-position: center !important;
    height: 20px;
    width: 20px;
    margin-left: 2px !important;
}

div.gmnoprint div:nth-child(1) button span {
    background-image: url('../dist/img/elements/stop-drawing.svg') !important;
    height: 16px !important;
    width: 16px !important;
}

div.gmnoprint div:nth-child(2) button span {
    background-image: url('../dist/img/elements/shape-rectangle.svg') !important;
}

div.gmnoprint div:nth-child(3) button span {
    background-image: url('../dist/img/elements/shape-circle.svg') !important;
}

div.gmnoprint div:nth-child(4) button span {
    background-image: url('../dist/img/elements/shape-polygon.svg') !important;
}

.map-size-control {
    position: absolute;
    top: 1.75rem;
    right: calc(6rem + 2px);
    z-index: 1000;
}

.map-type {
    position: absolute;
    top: 1.75rem;
    right: calc(1.5rem + 2px);
    z-index: 1000;
}

.smaller-dot {
    font-size: 10px !important;
}

.content-right {
    text-align: right !important;
    float: right !important;
}

#g-map div[role="dialog"] button[title="Close"] {
    right: 0.3rem !important;
    top: 0.3rem !important;
    color: #8592a3 !important;
}

#g-map div[role="dialog"] button[title="Close"]:hover {
    color: #233446 !important;
}

.marker-card-image {
    height: 200px !important;
    border-radius: 0.5rem !important;
    width: 278px;
    background-color: #ecf0f5;
}

.map-dropdown-menu {
    top: 4rem;
    right: 0;
    left: -121px !important;
}

.map-type-position {
    position: absolute;
    right: 0.5rem
}

.map-type-icon {
    height: 24px;
    width: 24px;
}

.map-type-list {
    margin: 0 !important;
}

.map-type-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.map-type-list li {
    height: 32px;
    padding: 0 0 0 6px;
}

.map-option-inactive:before {
    color: #d2d6de;
    height: 6px;
    width: 6px;
    content: '⦿';
}

.map-option-active:before {
    color: #3c8dbc;
    height: 6px;
    width: 6px;
    content: '⦿';
}

.map-zoom-control {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
}

.no-bullet-ul {
    list-style: none;
    padding: 0 !important;
}

.mt-1 {
    margin-top: 1rem !important;
}

.mt-2 {
    margin-top: 2rem !important;
}

.firstHeading {
    font-weight: bold;
}

.mr-1 {
    margin-right: 1rem;
    text-align: left;
    vertical-align: middle;
}

.check-box {
    display: block;
    display: inline-block;
}

.check-box input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.check-box label {
    position: relative;
    cursor: pointer;
}

.check-box label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #0079bf;
    border-radius: 3px;
    padding: 6px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
}

.check-box input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid #0079bf;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.w-33 {
    width: calc(33% - 0.15rem);
    float: left;
}

.w-50 {
    width: calc(50% - 0.5rem);
    float: left;
}

.session-title {
    display: flex;
    flex-direction: row;
}

.session-down-title {
    color: red;
}

.session-up-title {
    color: green;
}

.data-states {
    border-left-width: 1px;
    border-left-color: lightgray;
    border-left-style: solid;
    padding-left: 4px;
}

.map-loader {
    background-color: rgba(0, 0, 0, 0.75);
    border: 0;
    vertical-align: middle;
    text-align: center;
    color: white;
    height: 97%;
    width: 98.85%;
    position: absolute;
    z-index: 1089;
    padding-top: 18%;
    border-radius: 6px;
}

.map-loader i {
    font-size: 32px;
    -webkit-animation: rotating 1s linear infinite;
}

.map-loader p {
    margin-top: 6px;
    font-size: 14px;
}

@-webkit-keyframes rotating {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

.error {
  border:1px solid #fa2f28;
}


/*.rotate {
    -moz-transition: all .5s linear;
    -webkit-transition: all .5s linear;
    transition: all .5s linear;
}
.rotate.down {
    -moz-transform:rotate(90deg);
    -webkit-transform:rotate(90deg);
    transform:rotate(90deg);
}
*/

/*Custom css for side bar arrow key  start*/

.sidebar-menu li > a > .fa-angle-right, .sidebar-menu li > a > .pull-right-container > .fa-angle-right {
    width: auto;
    height: auto;
    padding: 0;
    margin-right: 10px;
    -webkit-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
}

.sidebar-menu li > a > .fa-angle-right {
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -8px;
}

.sidebar-menu .menu-open > a > .fa-angle-right, .sidebar-menu .menu-open > a > .pull-right-container > .fa-angle-right {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(90deg);
}


.treeview-menu > li > a > .pull-right-container > .fa-angle-right,
.treeview-menu > li > a > .pull-right-container > .fa-angle-down,
.treeview-menu > li > a > .fa-angle-right,
.treeview-menu > li > a > .fa-angle-down {
    width: auto;
}

.hold-transition .menu-open .fa-angle-right {
    /* Fix for IE */
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}


/*end*/

/* User track record path tooltip */

.tooltipp {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltipp .tooltiptextt {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltipp .tooltiptextt::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltipp:hover .tooltiptextt {
  visibility: visible;
  opacity: 1;
}

/* end */