body {
    font-family: "Sofia Sans", sans-serif;
    font-family: "Poppins", sans-serif !important;
}

    body::-webkit-scrollbar {
        width: 10px;
        /* width of the entire scrollbar */
    }

    body::-webkit-scrollbar-track {
        background: #f8f8f8;
        /* color of the tracking area */
    }

    body::-webkit-scrollbar-thumb {
        background-color: #0070FF;
        /* color of the scroll thumb */
        border-radius: 20px;
        /* roundness of the scroll thumb */
        border: 2px solid #f8f8f8;
        /* creates padding around scroll thumb */
    }

/*--------------------------------------------------------------
# LOGIN PAGE
--------------------------------------------------------------*/
.avatar-sm .border {
    border-width: 1px !important;
}

.rounded-circle i {
    font-size: 16px;
}

.rounded-circle {
    width: 30px;
    height: 30px;
}

.login-section {
    background-image: url("../images/login-bg.png");
    width: 100%;
    background-size: cover;
    height: 100vh;
}

.login-body-bg {
    background-image: url('/assets/images/login-bg.png');
    background-size: cover;
    height: 100vh;
    width: 100%;
}

.login-bg {
    background-color: rgba(60, 80, 224, 0.8);
    width: 100%;
    height: 100vh;
}

.login-txt {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
}

    .login-txt h4 {
        font-size: 38px;
        font-weight: bold;
        color: #fff;
    }

.login-box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    font-family: "Poppins", sans-serif;
    position: relative;
}

.login-form {
    background-color: #fff;
    padding: 50px;
    border-radius: 30px;
    width: 100%;
}

    .login-form h5 {
        color: #000;
        font-weight: 600;
        padding-bottom: 20px;
    }

    .login-form label {
        padding-bottom: 10px;
    }

    .login-form ::placeholder {
        color: #979797;
        font-size: 12px;
    }

    .login-form button {
        width: 100%;
    }

    .login-form .btn-primary {
        --bs-btn-color: #fff;
        --bs-btn-bg: #3C50E0;
        --bs-btn-border-color: #3C50E0;
        --bs-btn-hover-color: #fff;
        --bs-btn-hover-bg: #6f7cd4;
        --bs-btn-hover-border-color: #6f7cd4;
        --bs-btn-focus-shadow-rgb: 49, 132, 253;
        --bs-btn-active-color: #fff;
        --bs-btn-active-bg: #0a58ca;
        --bs-btn-active-border-color: #0a53be;
        --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
        --bs-btn-disabled-color: #fff;
        --bs-btn-disabled-bg: #0d6efd;
        --bs-btn-disabled-border-color: #0d6efd;
    }

    .login-form .btn {
        border-radius: 25px;
    }

/*--------------------------------------------------------------
# LOGIN PAGE
--------------------------------------------------------------*/





/*--------------------------------------------------------------
# RESPONSIVE DESIGN
--------------------------------------------------------------*/


@media (max-width: 575.98px) {

    /*# Logi  Page*/
    .login-txt {
        width: 100%;
        height: inherit;
        display: flex;
        align-items: center;
        padding-top: 25px;
        padding-bottom: 25px;
    }

        .login-txt h4 {
            font-size: 28px;
        }

    /*# Logi  Page*/
}





.area {
    width: 100%;
    height: 100vh;
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .circles li {
        position: absolute;
        display: block;
        list-style: none;
        width: 20px;
        height: 20px;
        background: rgba(255, 255, 255, 0.2);
        animation: animate 25s linear infinite;
        bottom: -150px;
    }

        .circles li:nth-child(1) {
            left: 25%;
            width: 80px;
            height: 80px;
            animation-delay: 0s;
        }


        .circles li:nth-child(2) {
            left: 10%;
            width: 20px;
            height: 20px;
            animation-delay: 2s;
            animation-duration: 12s;
        }

        .circles li:nth-child(3) {
            left: 70%;
            width: 20px;
            height: 20px;
            animation-delay: 4s;
        }

        .circles li:nth-child(4) {
            left: 40%;
            width: 60px;
            height: 60px;
            animation-delay: 0s;
            animation-duration: 18s;
        }

        .circles li:nth-child(5) {
            left: 65%;
            width: 20px;
            height: 20px;
            animation-delay: 0s;
        }

        .circles li:nth-child(6) {
            left: 75%;
            width: 110px;
            height: 110px;
            animation-delay: 3s;
        }

        .circles li:nth-child(7) {
            left: 35%;
            width: 150px;
            height: 150px;
            animation-delay: 7s;
        }

        .circles li:nth-child(8) {
            left: 50%;
            width: 25px;
            height: 25px;
            animation-delay: 15s;
            animation-duration: 45s;
        }

        .circles li:nth-child(9) {
            left: 20%;
            width: 15px;
            height: 15px;
            animation-delay: 2s;
            animation-duration: 35s;
        }

        .circles li:nth-child(10) {
            left: 85%;
            width: 150px;
            height: 150px;
            animation-delay: 0s;
            animation-duration: 11s;
        }



@keyframes animate {

    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

.sidebar[data-background-color="dark"] {
    background: rgba(29, 47, 133, 0.9) !important;
}

.logo-header[data-background-color="dark"] {
    background: none !important;
}

.main-header {
    background: none;
    min-height: 60px;
    width: calc(100% - 250px);
    position: fixed;
    z-index: 111;
    float: right;
    background-color: rgba(60, 80, 224, 0.8);
}

.inner-bg {
    background-color: rgba(60, 80, 224, 0.8);
}

.main-panel > .container {
    min-height: 100vh;
    margin-top: 71px;
    overflow: hidden;
    width: 100%;
    max-width: unset;
    padding: 0 !important;
}

.navbar .navbar-nav .nav-item .nav-link {
    display: inline-block;
    vertical-align: middle;
    color: #f90000;
    padding: 8px 14px;
    border-radius: 50%;
    position: relative;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    transition: all .3s;
    background-color: #fff;
}

.navbar .navbar-nav .topbar-icon .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: unset;
    height: 30px;
    width: 30px;
}

.navbar .navbar-nav .nav-item .nav-link:focus,
.navbar .navbar-nav .nav-item .nav-link:hover {
    background-color: #fff;
}

.navbar .navbar-nav .topbar-icon {
    padding-left: 5px;
    padding-right: 5px;
}

.navbar .navbar-nav .topbar-user .profile-pic {
    color: #fff;
}

.page-title {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    line-height: 30px;
    margin-bottom: 20px;
}

.main-section .border-bottom {
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    width: 50%;
    float: right;
}

/*--------------------------------------------------------------
# LOCATION PAGE
--------------------------------------------------------------*/
.t4-body-section {
    background-image: url('/assets/images/login-bg.png');
    background-size: cover
}

.logout-form {
    display: none;
}

.avatar-img {
    width: 50px;
    height: 50px;
    background-color: #f0f0f0;
}

.avatar-img-rounded-circle {
    width: 50px;
    height: 50px
}

.avatar-img-fa-user {
    font-size: 24px;
}

.add-location-container {
    position: relative;
}

    .add-location-container i {
        margin-right: 15px;
    }


    .add-location-container .accordion-button:after {
        background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
    }



    .add-location-container .accordion-button:not(.collapsed) {
        box-shadow: none;
    }

    .add-location-container .accordion-item:first-of-type .accordion-button {
        border-radius: 4px;
    }

    .add-location-container .accordion-item {
        color: var(--bs-accordion-color);
        background-color: var(--bs-accordion-bg);
        border: none;
        border-radius: 10px;
    }

    .add-location-container .accordion-button:not(.collapsed) {
        color: var(--bs-accordion-active-color);
        background-color: #fff !important;
        box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
        border-bottom-left-radius: 0px !important;
    }

    .add-location-container .accordion-button {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
        font-size: 1.48rem;
        color: #fff;
        font-weight: 500;
        text-align: left;
        background: rgba(29, 47, 133, 0.5);
        border: 0;
        border-top-color: currentcolor;
        border-right-color: currentcolor;
        border-bottom-color: currentcolor;
        border-left-color: currentcolor;
        border-radius: 0;
        overflow-anchor: none;
        transition: var(--bs-accordion-transition);
        padding-top: 25px;
        padding-bottom: 25px;
        padding-left: 35px;
    }

    .add-location-container label {
        color: #000 !important;
        font-size: 14px !important;
    }

.add-location-table h4 {
    margin-bottom: 0px;
}

.power-meter-container i {
    margin-right: 15px;
}

.power-meter-container h4 {
    margin-bottom: 0px;
}

.add-location-table i {
    margin-right: 15px;
}

.tenants-table i {
    margin-right: 15px;
}

.tenant-meter-container i {
    margin-right: 15px;
}

.tenants-table h4 {
    margin-bottom: 0px;
}

.loctn-btn {
    display: flex;
    margin-top: 20px;
}

    .loctn-btn .btn-sm {
        font-size: 12px;
        padding: 7px 40px;
        margin-left: 10px;
    }

    .loctn-btn .btn-primary {
        background: #374ACF !important;
        border-color: #374ACF !important;
    }

.padding-btm15 {
    padding-bottom: 15px;
}

.lctn-info {
    background: rgba(29, 47, 133, 0.9);
    width: fit-content;
    color: #fff;
    height: 100%;
    position: absolute;
    z-index: 11;
    right: 0px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    top: 0;
    padding-top: 5px;
}

    .lctn-info i {
        margin-right: 0px;
        padding-left: 5px;
        padding-right: 5px;
    }

    .lctn-info p {
        color: #fff;
        font-size: 10px;
        text-align: center;
    }

.location-table {
    margin-top: 30px;
}

/*.location-table .card-title {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
}
.location-table .card .card-header, .card-light .card-header {
  padding: 1rem 1.25rem;
  background: rgba(16, 26, 76, 0.9);
  border-bottom: 1px solid #ebecec !important;
}
.location-table .card .card-header:first-child, .card-light .card-header:first-child {
  border-top-left-radius: 10px; border-top-right-radius: 10px;
}
}*/

.table > tbody > tr > td,
.table > tbody > tr > th {
    padding: 10px 24px !important;
}

@media screen and (max-width: 991.5px) {
    .topbar_open .main-panel > .container {
        margin-top: 70px;
    }
}


/*--------------------------------------------------------------
# WATER METER REPORT
--------------------------------------------------------------*/
.water-meter-table .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 11 !important;
}

.meter-form-section .col-sm-4 {
    padding: 0px;
}

.inner-header {
    background: rgba(29, 47, 133, 0.9) !important;
    padding: 20px 30px;
}

.inner-header-text h4 {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    line-height: 30px;
    margin-bottom: 0px;
}

.box-flex {
    display: flex;
    justify-content: end;
}

.select-period {
    position: relative;
    z-index: 11;
}

    .select-period .form-check,
    .form-group {
        margin-bottom: 0;
        padding: 0px;
    }

    .select-period .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
        margin-left: calc(var(--bs-border-width) * -1);
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
    }

    .select-period label {
        color: #fff !important;
        margin-bottom: 0rem;
        margin-right: 15px;
        margin-left: 30px;
    }

    .select-period .input-group {
        position: relative;
        display: flex;
        align-items: center;
    }

.download-btn .btn-primary {
    border-color: #fff !important;
    background: #1572e8 !important;
    color: #fff;
    font-weight: 500;
}

    .download-btn .btn-primary:hover {
        background-color: #fff !important;
        border-color: #ebedf2 !important;
        color: #1572e8 !important;
    }

.download-btn .btn:focus,
.btn:hover {
    opacity: inherit;
}

.download-btn .btn {
    padding: 8px 20px;
    font-size: 1rem;
    font-weight: 400;
    opacity: inherit;
    border-radius: 3px;
}

.select-period .form-control {
    font-size: 1rem;
    border-color: #ebedf2;
    padding: 6px 10px;
    height: inherit !important;
    border-width: 2px;
}

.inner-header-text {
    display: flex;
    align-items: center;
    height: 100%;
}

.active-log {
    background-color: #fff;
    width: 100%;
    border: 1px solid #DADADA;
    border-radius: 10px;
    padding: 15px;
    overflow-y: scroll;
    scrollbar-width: thin;
}

.sub-header h5 {
    color: #979797;
    font-size: 16px;
    font-weight: 500;
}

body {
    background-color: #f9f9fa
}

@media (min-width:992px) {
    .page-container {
        max-width: 1140px;
        margin: 0 auto
    }

    .page-sidenav {
        display: block !important
    }
}

.padding {
    padding: 2rem
}

.w-32 {
    width: 32px !important;
    height: 32px !important;
    font-size: .85em
}

.tl-item .avatar {
    z-index: 2
}

.circle {
    border-radius: 500px
}

.gd-warning {
    color: #fff;
    border: none;
    background: #f4c414 linear-gradient(45deg, #f4c414, #f45414)
}

.active-timeline .timeline {
    position: relative;
    border-color: rgba(160, 175, 185, .15);
    padding: 0;
    margin: 0
}

.p-4 {
    padding: 1.5rem !important
}

.block,
.card {
    background: #fff;
    border-width: 0;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
    margin-bottom: 1.5rem
}

.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important
}

.tl-item {
    border-radius: 3px;
    position: relative;
    display: -ms-flexbox;
    display: flex
}

    .tl-item > * {
        padding: 10px
    }

    .tl-item .avatar {
        z-index: 2
    }

    .tl-item:last-child .tl-dot:after {
        display: none
    }

    .tl-item.active .tl-dot:before {
        border-color: #448bff;
        box-shadow: 0 0 0 4px rgba(68, 139, 255, .2)
    }

    .tl-item:last-child .tl-dot:after {
        display: none
    }

    .tl-item.active .tl-dot:before {
        border-color: #448bff;
        box-shadow: 0 0 0 4px rgba(68, 139, 255, .2)
    }

.tl-dot {
    position: relative;
    border-color: rgba(160, 175, 185, .15)
}

    .tl-dot:after,
    .tl-dot:before {
        content: '';
        position: absolute;
        border-color: inherit;
        border-width: 2px;
        border-style: solid;
        border-radius: 50%;
        width: 10px;
        height: 10px;
        top: 15px;
        left: 50%;
        transform: translateX(-50%)
    }

    .tl-dot:after {
        width: 0;
        height: auto;
        top: 25px;
        bottom: -15px;
        border-right-width: 0;
        border-top-width: 0;
        border-bottom-width: 0;
        border-radius: 0
    }

tl-item.active .tl-dot:before {
    border-color: #448bff;
    box-shadow: 0 0 0 4px rgba(68, 139, 255, .2)
}

.tl-dot {
    position: relative;
    border-color: rgba(160, 175, 185, .15)
}

    .tl-dot:after,
    .tl-dot:before {
        content: '';
        position: absolute;
        border-color: inherit;
        border-width: 2px;
        border-style: solid;
        border-radius: 50%;
        width: 10px;
        height: 10px;
        top: 15px;
        left: 50%;
        transform: translateX(-50%)
    }

    .tl-dot:after {
        width: 0;
        height: auto;
        top: 25px;
        bottom: -15px;
        border-right-width: 0;
        border-top-width: 0;
        border-bottom-width: 0;
        border-radius: 0
    }

.tl-content p:last-child {
    margin-bottom: 0
}

.tl-date {
    font-size: 9px;
    font-style: italic;
}

.avatar {
    position: relative;
    line-height: 1;
    border-radius: 500px;
    white-space: nowrap;
    font-weight: 700;
    border-radius: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 500px;
    box-shadow: 0 5px 10px 0 rgba(50, 50, 50, .15)
}

.b-warning {
    border-color: #f4c414 !important;
}

.b-primary {
    border-color: #DADADA !important;
}

.b-danger {
    border-color: #f54394 !important;
}

.bg-white {
    background-color: #fff;
}

.active-log .btn-primary {
    background: transparent !important;
    border-color: transparent !important;
    color: #666 !important;
}

.active-log .btn {
    padding: 0rem 0rem;
    font-size: 1rem;
    font-weight: normal;
    opacity: 1;
    border-radius: 3px;
}

.active-log .btn-primary {
    text-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.green-box {
    background-color: rgba(80, 227, 194, 0.2);
    border-radius: 5px;
    padding: 8px;
    padding-bottom: 15px;
    padding-top: 15px;
}

.tl-content {
    width: 100%;
}

    .tl-content p {
        font-size: 1.07rem;
        line-height: 1.82;
        margin-bottom: 10px;
        word-break: break-word;
    }

.green-box p {
    font-size: 10px;
    color: #666;
}

.tl-green.active .tl-dot::before {
    border-color: #50E3C2;
    box-shadow: 0 0 0 4px rgba(68, 139, 255, .2);
    background-color: #50E3C2;
}

.tl-yellow .tl-dot::before {
    border-color: #F9F471;
    box-shadow: 0 0 0 4px rgba(255, 252, 0, 0.2);
    background-color: #F9F471;
}

.yellow-box {
    background-color: rgba(249, 244, 113, 0.2);
    border-radius: 5px;
    padding: 8px;
    padding-bottom: 15px;
    padding-top: 15px;
}

    .yellow-box p {
        font-size: 10px;
        color: #666;
    }

.tl-blue .tl-dot::before {
    border-color: #0070FF;
    box-shadow: 0 0 0 4px rgba(107, 176, 210, 0.2);
    background-color: #0070FF;
}

.blue-box {
    background-color: rgba(0, 112, 255, 0.2);
    border-radius: 5px;
    padding: 8px;
    padding-bottom: 15px;
    padding-top: 15px;
}

    .blue-box p {
        font-size: 10px;
        color: #666;
    }

.tl-red .tl-dot::before {
    border-color: #F97171;
    box-shadow: 0 0 0 4px rgba(210, 107, 107, 0.2);
    background-color: #F97171;
}

.red-box {
    background-color: rgba(249, 113, 113, 0.2);
    border-radius: 5px;
    padding: 8px;
    padding-bottom: 15px;
    padding-top: 15px;
}

    .red-box p {
        font-size: 10px;
        color: #666;
    }

.tl-content span {
    color: #0070FF;
}

.tl-green .tl-dot::before {
    border-color: #0CE8E8;
    box-shadow: 0 0 0 4px rgba(0, 255, 195, 0.2);
    background-color: #0CE8E8;
}

.green-box {
    background-color: rgba(80, 227, 194, 0.2);
    border-radius: 5px;
    padding: 8px;
    padding-bottom: 15px;
    padding-top: 15px;
}

    .green-box p {
        font-size: 10px;
        color: #666;
    }

.water-meter-table {
    background-color: #fff;
    width: 100%;
    border: 1px solid #DADADA;
    border-radius: 10px;
    height: 100vh;
    padding-bottom: 5px;
}

.water-meter-table {
    background-color: #fff;
    width: 100%;
    border: 1px solid #DADADA;
    border-radius: 10px;
    height: 100vh;
    padding-bottom: 5px;
}


    .water-meter-table .form-control {
        font-size: 1rem;
        padding: .6rem 1rem;
        padding-right: 1rem;
        height: inherit !important;
        border-width: 2px;
        font-style: italic;
        border: inherit;
        border-bottom: 1px solid #DADADA;
        border-radius: 0px;
    }

.table-header {
    padding: 15px;
}

.water-meter-table .form-group {
    width: 60%;
}

.entries {
    float: right;
    display: flex;
    align-items: center;
}

    .entries label {
        display: flex;
        margin-left: 10px;
    }


    .entries .form-control {
        margin-left: 10px;
        margin-right: 10px;
        width: auto;
        border: 1px solid #DADADA;
        border-radius: 5px;
    }

.table-active {
    width: 100%;
}

.table-add i {
    color: #0070FF;
    font-size: 20px;
}

.water-meter-table .table > tbody > tr > td,
.table > tbody > tr > th {
    padding: 25px 24px !important;
}

.water-meter-table-btn {
    margin-top: 20px;
    margin-bottom: 20px;
}

    .water-meter-table-btn .btn-sm {
        font-size: 12px;
        padding: 7px 40px;
        margin-left: 10px;
    }

    .water-meter-table-btn .btn-primary {
        background: #0070FF !important;
        border-color: #0070FF !important;
    }

    .water-meter-table-btn .btn-primary {
        color: #fff !important;
    }

.table-down-ic .fa {
    font-size: 12px;
    cursor: pointer;
    user-select: none;
    color: #374acf;
}

    .table-down-ic .fa:hover {
        color: darkblue;
    }

.sidebar,
.sidebar[data-background-color=white] {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 265px;
    display: block;
    z-index: 999;
    color: #fff;
    font-weight: 200;
    background: #fff;
    -webkit-box-shadow: 4px 4px 10px rgba(69, 65, 78, .06);
    -moz-box-shadow: 4px 4px 10px rgba(69, 65, 78, .06);
    box-shadow: 4px 4px 10px rgba(69, 65, 78, .06);
    transition: all .3s;
}

    .sidebar .nav.nav-secondary > .nav-item .nav-collapse li.active > a,
    .sidebar[data-background-color="white"] .nav.nav-secondary > .nav-item .nav-collapse li.active > a {
        color: #fff !important;
        background-color: rgba(255, 255, 255, 0.5);
    }

    .sidebar .nav-collapse,
    .sidebar[data-background-color="white"] .nav-collapse {
        margin-top: 0;
        margin-bottom: 0px;
        padding-bottom: 0px;
        padding-top: 0px;
    }

.table-add .modal-header i {
    margin-right: 15px;
}

.table-add .modal {
    --bs-modal-header-border-color: none;
    --bs-modal-footer-border-color: none;
}

.table-add .form-control {
    font-size: 1rem;
    padding: .6rem 1rem;
    padding-right: 1rem;
    padding-right: 1rem;
    height: inherit !important;
    border-width: 2px;
    font-style: italic;
    border: 1px solid #DADADA;
    width: 100%;
    border-radius: 10px;
}

.table-add .form-group {
    width: 100%;
}

.table-add label {
    color: #000 !important;
    font-size: 16px !important;
}

.table-add .btn {
    padding: 0.55rem 1.4rem;
    font-size: 1rem;
    font-weight: 500;
    opacity: 1;
    border-radius: 8px;
    width: 140px;
}

.table-add .btn-primary {
    background: #6861ce !important;
    border-color: #6861ce !important;
}

    .table-add .btn-primary:hover {
        background: #857fe0 !important;
        border-color: #857fe0 !important;
    }

.modal-container .modal-title {
    margin-bottom: 0;
    line-height: var(--bs-modal-title-line-height);
    display: flex;
}

.current-reading {
    margin-top: 15px;
}

.reading-box {
    border: 1px solid #DADADA;
    border-radius: 10px;
    padding: 15px;
    height: 180px;
    overflow-y: scroll;
    scrollbar-width: thin;
}

.current-reading h5 {
    color: #000;
    font-size: 16px;
}

.reading-box p {
    color: #666666;
    font-size: 14px;
}

.water-container {
    width: 100%;
    position: relative;
    height: 100vh;
}

.sidebar-right {
    height: 100%;
    width: 0px;
    position: absolute;
    z-index: 0;
    right: 0px;
    overflow-x: hidden;
    overflow-y: hidden;
    transition: 0.5s;
    padding-top: 0px;
}

    .sidebar-right a {
        padding: 0px 8px 8px 32px;
        text-decoration: none;
        font-size: 25px;
        color: #818181;
        display: block;
        transition: 0.3s;
    }

        .sidebar-right a:hover {
            color: #f1f1f1;
        }

    .sidebar-right .closebtn {
        position: absolute;
        top: 0;
        right: 0px;
        font-size: 36px;
        margin-left: 50px;
    }

.openbtn {
    font-size: 20px;
    cursor: pointer;
    background-color: #111;
    color: white;
    padding: 10px 15px;
    border: none;
}

    .openbtn:hover {
        background-color: #444;
    }

#main-left {
    transition: margin-left .5s;
    padding: 0px;
    margin-right: 0px;
}

.tl-flex {
    display: flex;
    align-items: center;
}

    .tl-flex .btn {
        margin-left: 15px;
    }

.activity-log-icon {
    margin-left: 10px;
    width: 35px;
    height: 35px;
    background-color: #0070FF;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.entries .btn-secondary {
    background: #0070FF !important;
    border-color: #0070FF !important;
}

.activity-log-icon a {
    color: #fff;
    text-decoration: none !important;
    font-size: 25px;
}

.tooltip-inner {
    background-color: rgba(83, 185, 234, 0.16);
    /* box-shadow: 0px 0px 4px black;*/
    opacity: 1 !important;
    color: #0070FF !important;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.bs-tooltip-top .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
    border-top-color: #E3F4FB;
}

.bs-tooltip-end .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
    border-right-color: #E3F4FB;
}

.bs-tooltip-bottom .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
    border-bottom-color: #E3F4FB;
}

.bs-tooltip-start .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
    border-left-color: #E3F4FB;
}

.blue-box-table {
    background-color: #F2F8FF;
    border-radius: 5px;
    padding: 15px;
    padding-bottom: 15px;
    padding-top: 0px;
}

    .blue-box-table:hover {
        background-color: #F2F8FF;
    }

    .blue-box-table p {
        font-size: 10px;
        color: #666;
    }

    .blue-box-table .btn-primary {
        background: #0070FF !important;
        border-color: #0070FF !important;
    }

.water-meter-table .table td,
.table th {
    font-size: 12px;
    border-top-width: 0;
    border-bottom: 1px solid;
    border-bottom-color: currentcolor;
    border-color: #ebedf2 !important;
    vertical-align: middle !important;
}

.water-meter-table .btn-round {
    border-radius: 10px !important;
}

.water-meter-table .table thead th {
    font-size: .95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 24px !important;
    border-bottom-width: 1px;
    font-weight: 600;
    color: #666;
}


.water-meter-table .active-timeline {
    height: 200px !important;
    overflow: auto;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    scrollbar-width: thin;
}

/* .water-meter-table th:last-child, td:last-child {
    position: sticky;
    right: 0px;
} */
.entries .dropdown-menu {
    border: 0;
    border-radius: 15px;
    box-shadow: 0 1px 11px rgba(0, 0, 0, .15) !important;
    padding-bottom: 5px;
    margin-top: 3px;
}

.entries button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    margin-right: 10px;
}

.tableFixHead {
    overflow: auto;
    /* height: 100%;*/
}

    .tableFixHead thead th {
        position: sticky;
        top: 0;
        z-index: 1;
    }

/* Just common table stuff. Really. */
table {
    border-collapse: collapse;
    width: 100%;
}


th,
td {
    padding: 8px 16px;
}

th {
    background: #eee;
}

/*--------------------------------------------------------------
# Full Variance Report
--------------------------------------------------------------*/
.variance-container {
    width: 100%;
    position: relative;
    height: 100vh;
}

.table-responsive {
    width: 100% !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    scrollbar-width: thin;
}

.container {
    position: relative;
}

.add-power-container {
    position: relative;
    width: 100%;
}

    .add-power-container .accordion-button:after {
        background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
    }

    .add-power-container i {
        margin-right: 25px;
    }

    .add-power-container .accordion-item:first-of-type .accordion-button {
        border-radius: 4px;
    }

    .add-power-container .accordion-item {
        color: var(--bs-accordion-color);
        background-color: var(--bs-accordion-bg);
        border: none;
        border-radius: 10px;
    }

    .add-power-container .accordion-button:not(.collapsed) {
        color: var(--bs-accordion-active-color);
        background-color: #fff !important;
        box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
        border-radius: 10px !important;
    }

    .add-power-container .accordion-button {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
        font-size: 16px;
        color: #fff;
        font-weight: 500;
        text-align: left;
        background-color: rgba(29, 47, 133, 0.9) !important;
        border: 0;
        border-radius: 0;
        transition: var(--bs-accordion-transition);
    }

    .add-power-container label {
        color: #000 !important;
        font-size: 14px !important;
    }

.power-info i {
    margin-right: 0px;
    padding-left: 5px;
    padding-right: 5px;
}

.power-info {
    background-color: rgba(29, 47, 133, 0.9) !important;
    width: fit-content;
    color: #fff;
    height: 100%;
    position: absolute;
    right: 0px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    top: 0;
    display: inline-block;
    z-index: 11;
}

    .power-info i {
        margin-right: 0px;
        padding-left: 5px;
        padding-right: 5px;
    }

    .power-info p {
        color: #fff;
        font-size: 10px;
        text-align: center;
    }

#monthYearPicker {
    position: relative;
}

.datepicker,
.datepicker-dropdown {
    position: absolute !important;
    z-index: 111111 !important;
}

/*--------------------------------------------------------------
# no-data-container
--------------------------------------------------------------*/

.no-data-container {
    background-color: #fff;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}

.no-data-box {
    background-color: #fff;
    width: 100%;
    padding: 20px;
    border: 1px solid #DADADA;
    border-radius: 10px;
    padding-top: 80px;
    padding-bottom: 80px;
}

    .no-data-box h4 {
        text-transform: uppercase;
        color: #374ACF;
        font-size: 20px;
        text-align: center;
    }

    .no-data-box p {
        color: #979797;
        font-size: 14px;
        text-align: center;
    }

.form-group small {
    font-size: 12px;
}

.power-btn {
    display: flex;
    margin-top: 20px;
    margin-top: 2rem;
}

    .power-btn .btn-sm {
        font-size: 12px;
        padding: 7px 40px;
    }

    .power-btn .btn-primary {
        background: #374ACF !important;
        border-color: #374ACF !important;
    }

.power-meter-mnth .form-check label,
.form-group label {
    margin-bottom: 0px;
    color: #495057;
    font-size: 1rem;
    white-space: nowrap;
}

.custom-file-input {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 4px;
    padding: 0 12px;
    height: 40px !important;
    width: 100%;
}

    .custom-file-input input[type="file"] {
        display: none;
    }

    .custom-file-input .placeholder-text {
        color: #999;
        font-size: 14px;
        flex-grow: 1;
        pointer-events: none;
    }

    .custom-file-input .file-icon,
    .custom-file-input .file-delete-icon {
        background: transparent;
        border: none;
        cursor: pointer;
        font-size: 16px;
        color: #888;
    }


        .custom-file-input .file-icon i {
            transform: rotate(320deg) !important;
        }

        .custom-file-input .file-icon:hover,
        .custom-file-input .file-delete-icon:hover {
            color: #555;
        }


.add-icon {
    color: #374ACF !important;
    font-size: 20px !important;
}

.form-group select {
    max-height: 150px;
    overflow-y: auto;
}

/*--------------------------------------------------------------
# Under Construction
--------------------------------------------------------------*/

.under-section {
    background-color: rgba(60, 80, 224, 0.8);
    width: 100%;
    height: 100vh;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.underconstruction {
    text-align: center;
}

.under-section h3 {
    font-size: 34px;
}

.under-section p {
    font-size: 12px;
}

.under-section h6 {
    font-size: 16px;
}

.Checklistcolumn {
    display: none;
    z-index: 9999;
    position: absolute;
    top: 100px;
    right: 0;
    background: white;
    padding: 10px;
    width: 250px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}


@media screen and (max-width: 768px) {
    .login-txt h4 {
        font-size: 25px;
        font-weight: bold;
        color: #fff;
    }
}

@media screen and (max-width: 575px) {
    .tenant-form .form-control {
        display: block;
        width: 100%;
    }

    .main-section .border-bottom {
        border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
        width: 100%;
        float: right;
        border-radius: 10px;
    }

    .main-header .navbar-header {
        min-height: 40px;
    }

    .avatar-sm {
        width: 2.75rem;
        height: 2.75rem;
        display: flex;
        align-items: center;
    }

    .dropdown-search {
        width: 100%;
        padding: 0px;
        border: none;
        border-bottom: 1px solid #ccc;
    }
}

@media screen and (max-width: 991px) {

    .main-section .border-bottom {
        border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
        width: 100%;
        float: right;
        border-radius: 0px;
    }

    .main-header .navbar-header {
        min-height: 40px;
    }

    .avatar-sm {
        width: 2.75rem;
        height: 2.75rem;
        display: flex;
        align-items: center;
    }

    .dropdown-search {
        width: 100%;
        padding: 0px;
        border: none;
        border-bottom: 1px solid #ccc;
    }
}

@media screen and (max-width: 575px) {
    .meter-form .form-control {
        display: block;
        width: 90%;
    }

    .meter-button {
        margin-left: 15px;
    }

    .meter-verify-row .form-control {
        display: block;
        width: 93%;
    }
}

.billing-tabs .account-settings .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #fff;
    background-color: rgba(29, 47, 133, 0.9) !important;
    border-color: rgba(29, 47, 133, 0.9) !important;
}

.billing-tabs .account-settings .nav-link {
    color: #fff;
}

.billing-tabs .account-settings .nav-tabs .nav-link {
    margin-bottom: inherit;
    border: none;
}

.accout-edit .dropdown-toggle::after {
    display: none;
}

.accout-edit i:hover {
    color: #000;
}

.accout-edit .dropdown-toggle {
    border: none;
    background-color: inherit;
}


.form-tenent {
    padding-bottom: 10px;
}

    .form-tenent .add-location-container .accordion-button:not(.collapsed) {
        color: #fff;
        background-color: #6373e6 !important;
    }



    .form-tenent .add-location-container .accordion-item {
        color: #2462a0;
        background-color: #f8f8f8;
        border: none;
        border-radius: 10px;
    }

    .form-tenent .add-location-container .accordion-body {
        padding: 0px !important;
    }

.contarct-location-info {
    padding: 20px;
}

.pad-20 {
    padding: 20px;
}

.pad-rt-20 {
    padding-right: 20px;
}

.add-btn-box {
    width: 100%;
    display: flex;
    justify-content: end;
    padding: 20px;
    padding-top: 0px;
}

    .add-btn-box .btn {
        display: flex;
    }

.removeclass2 {
    display: flex !important;
}

.removeclass3 {
    display: flex !important;
}

.removeclass4 {
    display: flex !important;
}

.removeclass5 {
    display: flex !important;
}

.removeclass6 {
    display: flex !important;
}

.removeclass7 {
    display: flex !important;
}

.removeclass8 {
    display: flex !important;
}

.removeclass9 {
    display: flex !important;
}

.removeclass10 {
    display: flex !important;
}

.removeclass11 {
    display: flex !important;
}

.total-form {
    display: flex;
}

.pad-l-r {
    padding-left: 5px;
    padding-right: 5px;
}

.add-btn-ht {
    height: 100%;
}

.add-btn-ht {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .add-btn-ht i {
        margin-right: 0px;
    }

    .add-btn-ht .btn {
        padding: 5px 5px;
        font-size: 1rem;
        font-weight: 500;
        opacity: 1;
        border-radius: 3px;
    }

.meter-start-end {
    padding: 20px;
}




.meter-info {
    margin-bottom: 10px;
}

    .meter-info .accordion-body {
        background-color: #f2f8ff;
        height: 450px;
        overflow-y: scroll;
        overflow-x: hidden;
        scrollbar-width: thin;
    }

.form-tenent .meter-info .accordion-button:not(.collapsed) {
    color: #000;
    background-color: #fff !important;
}

.add-botton {
    background-color: #374acf;
    color: #fff;
    width: fit-content;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    padding-top: 5px;
    padding-bottom: 5px;
    align-items: center;
}

.remove-botton {
    background-color: #e5e5e5;
    color: #000;
    width: fit-content;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 5px;
    margin-left: 20px;
    display: flex;
    padding-top: 5px;
    padding-bottom: 5px;
}

.add-remove-btns {
    margin-left: 20px;
    justify-content: end;
    align-items: end;
    height: 100%;
    display: flex;
}

.contract-detials {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
}


.form-tenent .accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 15px;
    font-size: 1.28rem;
    color: #000;
    font-weight: 500;
    text-align: left;
    background: #c2ddff !important;
    border: 0;
    border-top-color: currentcolor;
    border-right-color: currentcolor;
    border-bottom-color: currentcolor;
    border-left-color: currentcolor;
    border-radius: 0;
    overflow-anchor: none;
    transition: var(--bs-accordion-transition);
}

    .form-tenent .accordion-button:not(.collapsed) {
        color: #000;
        background-color: #fff !important;
        border-bottom: 1px solid #324290;
        border-radius: 0px !important;
    }

.form-tenent .accordion-item {
    color: var(--bs-accordion-color);
    background-color: var(--bs-accordion-bg);
    border: 2px solid #dce2e8;
    border-radius: 12px;
    overflow: hidden;
}

.form-tenent .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='blue' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E") !important;
}

.contract-text p {
    margin-bottom: 0px;
}

.delete-box {
    background-color: #c2ddff;
    border-radius: 50%;
    color: #000;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .delete-box i {
        margin: 0px;
        font-size: 13px;
    }

.delete-container {
    width: 200px;
    display: flex;
    justify-content: end;
    position: absolute;
    right: 75px;
}

.form-tenent .accordion-button .delete-container {
    display: none;
}

.form-tenent .accordion-button:not(.collapsed) .delete-container {
    display: inherit;
}

.form-tenent .meter-info .accordion-item {
    color: var(--bs-accordion-color);
    background-color: var(--bs-accordion-bg);
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.contract-detials-location {
    margin-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
}

.round-dot-section {
    height: 50px;
    position: absolute;
    left: 15px;
    display: flex;
    align-items: center;
}

.round-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #0070ff;
}

.contarct-location-info .round-dot-section {
    height: 50px;
    position: absolute;
    left: 55px !important;
    display: flex;
    align-items: center;
}

.contarct-location-info .round-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #0070ff;
}

@media (max-width: 768px) {
    .Add-location-btn {
        padding-bottom: 10px;
    }

    .add-remove-btns {
        justify-content: end;
        align-items: start;
        margin-left: 0px;
    }
}

/*--------------------------------------------------------------
# UNITY DASHBOARD
--------------------------------------------------------------*/
.card-placeholder {
    background-color: #f1f3f5;
    border-radius: 0.5rem;
}

.active-utility .active-log {
    background-color: #fff;
    width: 100%;
    max-height: 1167px;
}

.water-meter-piechart {
    border-radius: 10px;
    background-color: #fff;
    width: 100%;
}

.water-meter-piechart {
    margin-top: 0px;
}

.piechart-legent {
    margin-top: 15px;
}

.water-meter-piechart .apexcharts-legend {
    display: none !important;
}

.light-blue-l {
    width: 100px;
    height: 4px;
    border-radius: 5px;
    background-color: #17E9ED;
}

.dark-blue-l {
    width: 100px;
    height: 4px;
    border-radius: 5px;
    background-color: #0070FF;
}

.light-green-l {
    width: 100px;
    height: 4px;
    border-radius: 5px;
    background-color: #61CBFE;
}

.piechart-legent h5 {
    margin-top: 0px;
    font-size: 18px;
    font-weight: 400;
}

.light-orange-l {
    width: 100px;
    height: 4px;
    border-radius: 5px;
    background-color: #F68501;
}

.dark-yellow-l {
    width: 100px;
    height: 4px;
    border-radius: 5px;
    background-color: #EDC617;
}

.light-red-l {
    width: 100px;
    height: 4px;
    border-radius: 5px;
    background-color: #FF4901;
}

.user-piechart-section {
    padding: 15px;
    border-radius: 10px;
    background-color: #fff;
    width: 100%;
}

    .user-piechart-section h4 {
        font-size: 18px;
        font-weight: normal;
    }

.reset-section {
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.63) 100%);
    padding: 15px;
    border-radius: 10px;
    height: 100%;
}

    .reset-section img {
        width: 25px;
        margin-right: 15px;
        height: 25px;
    }

.reset-heading {
    display: flex;
}

    .reset-heading h5 {
        margin-bottom: 0px;
        margin-top: 0px;
        align-items: center;
    }

.reset-p p {
    font-size: 10px;
    padding-left: 40px;
}

.approval-p p {
    font-size: 10px;
}

.table-head {
    background-color: #85BBFF;
}

.reset-table {
    margin-top: 15px;
    height: 400px;
    overflow: scroll;
    scrollbar-width: thin;
    scrollbar-color: #0070FF #85BBFF;
}

    .reset-table .table thead th {
        font-size: 10px;
        text-transform: inherit;
        letter-spacing: 0px;
        padding: 5px 5px !important;
        border-bottom-width: 0px;
        font-weight: normal;
    }

    .reset-table .table > tbody > tr > td,
    .table > tbody > tr > th {
        padding: 5px 5px !important;
        font-weight: normal;
        font-size: 10px !important;
    }

    .reset-table .table {
        --bs-table-color-type: initial;
        --bs-table-bg-type: initial;
        --bs-table-color-state: initial;
        --bs-table-bg-state: initial;
        --bs-table-color: var(--bs-emphasis-color);
        --bs-table-bg: transparent !important;
    }

        .reset-table .table td,
        .table th {
            font-size: 10px;
            border-top-width: 0;
            border: none !important;
        }

.tableFixHead {
    overflow: auto;
    height: 90vh;
}

    .tableFixHead thead {
        position: sticky;
        top: 0;
        z-index: 1;
    }

.date-bg {
    background-color: #fff;
    display: flex;
    border-radius: 8px;
    align-items: center;
}

.date-box i {
    color: #fff;
}

.date-box .form-control[readonly] {
    background: none !important;
    border-color: none !important;
    color: #fff !important;
    border-width: 0px;
}

.date-background {
    background-color: rgba(225, 225, 225, .4);
    padding: 15px;
    border-radius: 10px;
}

.icon-preview {
    align-items: center;
    display: flex;
    margin-right: 10px;
}

.previous-box {
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
}

    .previous-box h5 {
        margin-bottom: 0px;
        font-size: 18px;
    }

    .previous-box p {
        font-size: 8px;
        color: #000;
    }

    .previous-box h6 {
        font-size: 14px;
        font-weight: 300;
        color: #000;
    }

    .previous-box span {
        font-size: 14px;
    }

    .previous-box img {
        width: 20px;
        margin-top: -7px;
        margin-left: 5px;
    }

    .previous-box h4 {
        font-size: 18px;
        margin-top: 0px;
        margin-bottom: 6px;
    }

.utility-water-graph {
    margin-top: 15px;
}

.ui.selection.visible.dropdown > .text:not(.default) {
    font-weight: 400;
    color: rgba(0, 0, 0, .8);
    font-size: 10px !important;
}



.marginleft {
    padding-left: 0px;
    padding-right: 10px;
}

.marginright {
    padding-left: 10px;
    padding-right: 0px;
}

.input-daterange .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control,
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select,
.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top-left-radius: 5px !important;
    border-bottom-left-radius: 5px !important;
}

.input-daterange .input2 {
    margin-left: calc(var(--bs-border-width) * -1);
    border-top-left-radius: 5px !important;
    border-bottom-left-radius: 5px !important;
    border-top-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
    text-align: left;
}

.pad-left {
    padding-right: 10px;
}

.pad-right {
    padding-left: 10px;
}

.pad-rgt-0 {
    padding-right: 0px;
}

.block,
.card {
    background: #fff;
    border-width: 0;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
    margin-bottom: 15px;
}

@media screen and (max-width: 992px) {
    .margin-up {
        margin-top: 15px;
    }

    .page-inner {
        padding: 30px;
    }

    .pad-right {
        padding-left: 10px;
    }

    .pad-left {
        padding-right: 10px;
        padding-left: 15px;
    }

    .pad-rgt-0 {
        padding-right: 0px;
        padding-left: 0px;
        padding-bottom: 10px;
    }

    .active-utility {
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media screen and (max-width: 575px) {
    .Add-location-btn {
        float: left !important;
    }

    .tenent-form-width .form-control {
        display: block;
        width: 95% !important;
    }

    .add-remove-btns {
        justify-content: left !important;
    }
}

@media screen and (max-width: 499px) {
    .custom-dropdown-toggle {
        border-radius: 1rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 8px 16px;
        background: white;
        color: #000;
        font-weight: 400;
        border: none;
        font-size: 10px;
    }

    .Add-location-btn {
        float: left !important;
    }

    .water-meter-charts {
        display: inherit;
    }

    .page-inner {
        padding: 30px;
    }
}

@media screen and (max-width: 499px) {
    .page-inner {
        padding: 30px;
    }

    .marginleft {
        padding-left: 0px;
        padding-right: 5px;
    }

    .marginright {
        padding-left: 5px;
        padding-right: 0px;
    }

    .pad-left {
        padding-right: 7px;
        padding-left: 15px;
    }

    .pad-right {
        padding-left: 7px;
    }

    .pad-rgt-0 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .active-utility {
        padding-right: 0px;
        padding-left: 0px;
    }
}


.meter-btn {
    margin-left: 35px;
}


@media screen and (max-width: 991.5px) {
    .logo-header .more {
        display: none !important
    }
}

.responsive-toggle {
    right: 10px;
    position: absolute;
    z-index: 11111111;
    height: 100%;
    display: flex;
    align-items: center;
}

.meter-box .card {
    background: #fff;
    border-width: 0;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
    margin-bottom: 0px;
}

.user-meter-legent {
    padding-bottom: 15px;
}

.bg-fff {
    background-color: #fff;
    border-radius: 8px;
}

.pad-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.first-section {
    height: 100%;
    border-radius: 8px;
    overflow: clip;
}

.second-power-meter {
    height: 100%;
}



.add-location-container .accordion {
    --bs-accordion-color: var(--bs-body-color);
    --bs-accordion-bg: transparent;
}

.add-location-container .accordion-item:first-of-type .accordion-button {
    border-radius: 15px;
    border-bottom-right-radius: 0px;
}

.accordion-item:last-of-type .accordion-collapse .accordion-body {
    border-bottom-right-radius: var(--bs-accordion-border-radius);
    border-bottom-left-radius: var(--bs-accordion-border-radius);
    background-color: #fff;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.table-container-card .card-body {
    background-color: #fff;
}

.location-margin {
    margin-top: 25px;
}

.aprv-btn .btn-primary {
    background: #0070FF !important;
    border-color: #fff !important;
}

.approval-border .table td,
.table th {
    font-size: 10px;
    border-top-width: 0;
    border-bottom: 1px solid #ebedf2 !important;
}

.approve-checkbox .form-check,
.form-group {
    margin-bottom: 0;
    padding: 0px;
}

.approval-border .table > tbody > tr > td,
.table > tbody > tr > th {
    padding: 5px 20px !important;
    font-weight: normal;
    font-size: 10px !important;
}

.approval-border .form-check-input:checked {
    background-color: #374acf;
    border-color: #374acf;
}

.approval-border .form-check .form-check-input {
    margin-left: 0;
    margin-right: 0px;
}

.approval-border .form-check-input {
    --bs-form-check-bg: var(--bs-body-bg);
    flex-shrink: 0;
    width: 1em;
    height: 1em;
    margin-top: .25em;
    vertical-align: top;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-form-check-bg);
    background-image: var(--bs-form-check-bg-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: var(--bs-border-width) solid #666;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    print-color-adjust: exact;
}

.approve-checkbox .form-check-input {
    --bs-form-check-bg: var(--bs-body-bg);
    flex-shrink: 0;
    width: 1em;
    height: 1em;
    margin-top: .25em;
    vertical-align: top;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-form-check-bg);
    background-image: var(--bs-form-check-bg-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: var(--bs-border-width) solid #666;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    print-color-adjust: exact;
}

/* Indicator Line and Dots Styling */
.nested-spacer {
    position: relative;
    padding-left: 30px !important;
    /* Add space for the line/dots */
}

.meter-btn {
    margin-left: 35px;
}



@media screen and (max-width: 991.5px) {
    .logo-header .more {
        display: none !important
    }
}

.responsive-toggle {
    right: 10px;
    position: absolute;
    z-index: 11111111;
    height: 100%;
    display: flex;
    align-items: center;
}

.meter-box .card {
    background: #fff;
    border-width: 0;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
    margin-bottom: 0px;
    /*height: 465px;*/
}

.second-power-meter .card {
    height: 100%;
}

.user-meter-legent {
    padding-bottom: 15px;
}

.bg-fff {
    background-color: #fff;
    border-radius: 8px;
}

.pad-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.first-section {
    height: 100%;
    border-radius: 8px;
    overflow: clip;
}

.second-power-meter {
    height: 100%;
}


/* Indicator Line and Dots Styling */
.nested-spacer {
    position: relative;
    padding-left: 30px !important;
    /* Add space for the line/dots */
}

.indicator-dot {
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.indicator-line {
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #ccc;
    /* Default line color */
    z-index: 0;
    height: 100% !important;
}

/* Specific colors for Power and Water meters */
.indicator-dot.power {
    background-color: orange;
}

.indicator-dot.water {
    background-color: blue;
}

.power-meter .indicator-line {
    /* Line only goes *down* from the power meter if it's the start */
    top: 50%;
}

.water-meter .indicator-line {
    /* Line only goes *up* to the water meter if it's the end of a group */
    bottom: 50%;
}

.indicator-section {
    margin-right: 10px;
}

.subtable-row .table {
    --bs-table-color-type: initial;
    --bs-table-bg-type: initial;
    --bs-table-color-state: initial;
    --bs-table-bg-state: initial;
    --bs-table-color: var(--bs-emphasis-color);
    --bs-table-bg: #eaf1fa;
}

.subtable-row {
    background-color: #eaf1fa;
}

.contract-text {
    margin-bottom: 5px;
}

.tenant-btn {
    margin-left: 20px;
}


.Add-location-btn {
    float: right;
}


.card-radias {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.time-manager i {
    margin-right: 5px;
    margin-left: 10px;
    font-size: 6px;
}

.notification-margin {
    border-bottom: 1px solid #e6f0fd;
}

.avatar-sm .border {
    border: var(--bs-border-width) var(--bs-border-style) #ffffff !important;
}

.avatar-sm .text-info,
.text-info a {
    color: #fff !important;
}







/* Expand Button (Triangle) */
.expand-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: transform 0.3s;
    color: #6c757d;
}

.expand-btns {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: transform 0.3s;
    color: #6c757d;
}

.expand-btn.expanded {
    transform: rotate(90deg);
}

/* Detail Row Styling (Timeline) */
.detail-row td {
    padding: 0;
    /* Light background for details */
}

.detail-rows td {
    padding: 0;
    /* Light background for details */
}

.expand-btn i {
    margin-right: 0px;
    color: #666;
}

.expand-btns i {
    margin-right: 0px;
    color: #666;
}

.notification-secton {
    position: fixed;
    z-index: 1111;
    right: 180px !important;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.offcanvas-header {
    background-color: #E6F0FD;
    border-top-left-radius: 20px !important;
}

.offcanvas.offcanvas-end {
    top: 70px;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
    border-top-left-radius: 20px !important;
}

.offcanvas-title {
    color: #666;
    font-weight: 600;
}

.offcanvas-body .list-group .list-group-item {
    display: grid !important;
    align-items: stretch;
    border-width: 1px 0;
    border-color: #ebecec;
}

.offcanvas-body {
    flex-grow: 1;
    padding: 0px;
    overflow-y: auto;
}

    .offcanvas-body .list-group-item {
        position: relative;
        display: block;
        padding: 10px 20px;
    }

    .offcanvas-body .border-bottom,
    .border-left,
    .border-right,
    .border-top {
        border-color: #dedede !important;
    }

.offcanvas-backdrop.show {
    opacity: 0;
}

.notification-secton .rounded-circle i {
    color: #FE5C73;
}

.notification-secton .rounded-circle {
    width: 30px;
    height: 30px;
    background-color: #fff;
    border: 1px solid #fff;
}

.model-head h5 {
    display: flex;
}

.model-head i {
    margin-right: 10px;
    color: #374ACF;
}

.reject-btn {
    margin-top: 15px;
}

    .reject-btn .btn-primary {
        background: #374acf !important;
        border-color: #374acf !important;
    }

.model-head {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 5px 15px;
    border-bottom: inherit;
}


.chart-legent {
    display: flex;
}

#chart-donut {
    position: relative !important;
    width: 60%;
}

#chart-donut-two {
    position: relative !important;
    width: 60%;
}

@media screen and (max-width: 1220px) {
    #chart-donut {
        position: relative !important;
        width: 100%;
    }

    #chart-donut-two {
        position: relative !important;
        width: 100%;
    }

    .chart-legent {
        display: inherit;
    }
}

@media screen and (max-width: 991px) {
    #chart-donut {
        position: relative !important;
        width: 60%;
    }

    #chart-donut-two {
        position: relative !important;
        width: 60%;
    }
}

@media screen and (max-width: 992px) {
    .water-meter-charts {
        display: flex;
        gap: 15px;
    }

    .chart-legent {
        display: inherit;
    }

    .previous-expected {
        margin-top: 15px;
    }

    .notification-secton {
        position: fixed;
        z-index: 1111;
        right: 70px !important;
        height: 70px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .custom-dropdown-toggle {
        border-radius: 1rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 8px 16px;
        background: white;
        color: #000;
        font-weight: 400;
        border: none;
        font-size: 14px;
    }
}

@media screen and (max-width: 599px) {
    .water-meter-charts {
        display: inherit;
        gap: 0px;
    }

    #chart-donut {
        position: relative !important;
        width: 100%;
    }

    #chart-donut-two {
        position: relative !important;
        width: 100%;
    }
}

@media screen and (max-width: 499px) {
    #chart-donut {
        position: relative !important;
        width: 60%;
    }

    #chart-donut-two {
        position: relative !important;
        width: 60%;
    }

    .chart-legent {
        display: flex;
    }
}

.power-time-line {
    color: #666;
    font-size: 1rem;
}

    .power-time-line i {
        color: #FF9D00 !important;
        font-size: 10px !important;
        margin-right: 10px !important;
    }

.water-time-line {
    color: #666;
    font-size: 1rem;
}

    .water-time-line i {
        color: #0070FF !important;
        font-size: 10px !important;
        margin-right: 10px !important;
    }

.power-water-table {
    background-color: #F2F8FF;
}

    .power-water-table .table td,
    .table th {
        font-size: 12px;
        border-top-width: 0;
        border-bottom: 1px solid;
        border-color: #F2F8FF !important;
        vertical-align: middle !important;
    }

    .power-water-table .table > thead {
        vertical-align: bottom;
        font-style: italic;
    }

    .power-water-table .table {
        --bs-table-color-type: initial;
        --bs-table-bg-type: initial;
        --bs-table-color-state: initial;
        --bs-table-bg-state: initial;
        --bs-table-color: var(--bs-emphasis-color);
        --bs-table-bg: none;
        --bs-table-border-color: none;
    }

        .power-water-table .table thead th {
            font-size: 12px;
        }

.expand-btnz {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: transform 0.3s;
    color: #6c757d;
}

.water-electricity {
    display: flex;
    gap: 15px;
}

.background-wt {
    background: #fff;
    border-width: 0;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
    margin-bottom: 15px;
    width: 100%;
}

.firstdate-box .input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    gap: 15px;
}

.previous-expected {
    display: flex;
    gap: 15px;
}

    .previous-expected p {
        margin-bottom: 0px;
    }

.activity-log-responsive {
    position: sticky;
    z-index: 1111;
    right: 20px;
    top: 80px;
    display: none;
}

    .activity-log-responsive .active-log {
        background-color: #fff;
        width: 100%;
        border: 1px solid #DADADA;
        border-radius: 10px;
        padding: 15px;
        overflow-y: inherit !important;
        scrollbar-width: inherit !important;
    }

    .activity-log-responsive .active-utility .active-log {
        background-color: #fff;
        width: 100%;
        max-height: 100% !important;
    }

    .activity-log-responsive .modal-header {
        display: flex;
        flex-shrink: 0;
        align-items: center;
        justify-content: end;
        padding: 0px;
        border-bottom: none;
        padding-right: 5px;
        padding-top: 5px;
    }

        .activity-log-responsive .modal-header .btn-close {
            padding: 5px;
            margin: inherit;
        }

    .activity-log-responsive .btn {
        padding: 5px 7px;
        font-size: 1rem;
        font-weight: 500;
        opacity: 1;
        border-radius: 3px;
    }

    .activity-log-responsive .btn-light {
        --bs-btn-color: #6272e5;
        --bs-btn-bg: #ffffff;
        --bs-btn-border-color: #f8f9fa;
        --bs-btn-hover-color: #6272e5;
        --bs-btn-hover-bg: #ffffff;
        --bs-btn-hover-border-color: #ffffff;
        --bs-btn-focus-shadow-rgb: 211, 212, 213;
        --bs-btn-active-color: #000;
        --bs-btn-active-bg: #ffffff;
        --bs-btn-active-border-color: #ffffff;
    }

    .activity-log-responsive .rounded {
        border-radius: 50px !important;
    }

    .activity-log-responsive .btn-light {
        background: #fff !important;
        border-color: #6373e6;
        border: 1px solid;
        border-radius: 50px;
    }

    .activity-log-responsive .modal-dialog-scrollable .modal-body {
        overflow-y: auto;
        scrollbar-width: thin;
    }

@media screen and (max-width: 991px) {
    .active-utility .active-log {
        display: none;
    }

    .activity-log-responsive {
        display: inherit;
        position: fixed;
        z-index: 1111;
        right: 20px;
        top: 80px;
        float: right;
    }

        .activity-log-responsive .active-utility .active-log {
            display: inherit;
        }

    .first-section {
        padding-top: 20px;
    }

    .water-meter-charts {
        display: flex;
        gap: 15px;
    }
}


.contract-header {
    padding-top: 15px;
    padding-left: 25px;
}


.icon-box img {
    width: 40px;
}

.icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.icon-boxw img {
    width: 22px;
}

.metertimeline {
    max-height: 250px;
    overflow-y: scroll;
}

.icon-boxw {
    display: flex;
    justify-content: left;
    align-items: center;
    height: 100%;
}

.date-container {
    display: flex;
    gap: 15px;
}

.water-electricity-img {
    float: left;
}

    .water-electricity-img img {
        width: 25px;
    }





@media screen and (max-width: 599px) {
    .water-meter-charts {
        display: inherit;
        gap: 0px;
    }

    .chart-legent {
        display: flex;
    }
}





.mobile-login {
    background: linear-gradient(0deg,rgba(109, 61, 231, 1) 0%, rgba(68, 79, 231, 1) 100%);
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.container-login {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.mobile-login .col-lg-3 {
    margin: auto;
}

.mobile-logo-icon {
    background-color: #6573ed;
    border-radius: 15px;
    width: fit-content;
    padding: 15px 17px;
    margin: auto;
    margin-bottom: 20px;
}

    .mobile-logo-icon img {
        width: 30px;
    }

.login-container {
    width: 90%;
}

    .login-container h4 {
        color: #fff;
        font-size: 20px;
        font-weight: 600;
        text-align: center
    }

    .login-container p {
        color: #fff;
        font-size: 12px;
        font-weight: 500;
        text-align: center;
        margin-bottom: 0px;
    }

    .login-container h6 {
        color: #fff;
        font-size: 10px;
        text-align: center;
        font-weight: 200;
    }

.mobile-login-bg {
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
}

    .mobile-login-bg h5 {
        color: #000;
        font-weight: 500;
        text-align: left;
    }

    .mobile-login-bg .form-label {
        margin-bottom: .2rem;
        font-size: 12px;
    }


.password-input-group {
    border-radius: 10px;
    overflow: hidden; /* Clips the inner elements to the rounded edge */
    border: 1px solid #ced4da; /* Match default Bootstrap border */
}

    .password-input-group .form-control {
        border-radius: 0; /* Remove individual rounding */
        border: none; /* Remove border from the input itself */
    }
    /* Style the icon button */
    .password-input-group .password-toggle {
        background-color: #fff;
        border: none; /* Remove border from the button */
        color: #6c757d; /* Gray color for the eye icon */
    }

    /* Remove the default focus blue glow around the entire group */
    .password-input-group:focus-within {
        border-color: #86b7fe;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    }

.login-btn .btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #2f5ce9;
    --bs-btn-border-color: #2f5ce9;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0b5ed7;
    --bs-btn-hover-border-color: #0a58ca;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0a58ca;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0d6efd;
    --bs-btn-disabled-border-color: #0d6efd;
}

.login-btn .btn {
    width: 100%;
}

.forgot-paasword {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

    .forgot-paasword .btn-link {
        text-decoration: none;
    }

    .forgot-paasword .btn {
        font-size: 12px;
    }

.mobile-login-bg .form-control {
    padding: 10px 7px;
    border-radius: 10px;
    font-size: 14px;
}

.login-btn .btn {
    --bs-btn-padding-x: 10px;
    --bs-btn-padding-y: 7px;
}

.login-body-bg {
    display: inherit;
}

.mobile-login {
    display: none;
}

@media screen and (max-width: 599px) {
    .login-body-bg {
        display: none;
    }

    .mobile-login {
        display: inherit;
    }
}

.loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.8);
    z-index: 9999;
    text-align: center;
    padding-top: 20%;
    animation: none;
    border-radius:unset;
}

.notify-count {
    font-size: 0.65rem;
}
.response-log-container {
    max-height: 600px;
    overflow-y: auto;
}
