/* 
    Created on : 30/11/2020, 18:58:54
    Author     : Fabio Gomes
*/
body, html{
    font-family: Roboto, "Helvetica Neue", sans-serif;
    margin: 0px;
    padding: 0px;
    font-weight: 300;
    font-size: 1rem;
    overflow-y: hidden;
    overflow-x: hidden;
    line-height: 1rem;
    transition: all 100ms ease;
    height: 100%;
    min-height: 600px;
    min-width: 350px;
    box-sizing: border-box;
    position: relative;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}
body.load * {
    cursor: wait;
}
body.dark{
    background: #26304a;
    background: linear-gradient(319deg, rgb(2 3 11) -20%, rgb(16 27 50) 100%);
    color: #FFF;
}
body.light{
    background: #eef1fa;
    color: rgb(60,60,60);
}
.light.sigin{
    background: url(../img/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
* {
    box-sizing: border-box;
}
a {
    text-decoration: none;
    font-weight: 400;
}
.light a {
    color: rgb(65,65,65);
}
.dark a {
    color: rgb(225,225,225);
}
.light a:hover,.light a:active {
    color: rgb(50,50,50);
}
.dark a:hover,.dark a:active {
    color: rgb(235,235,235);
}
.form-switch {
    zoom: 1.2;
}
.bg-video{
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}
.bg-sigin{
    /*backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.14);*/
    border-radius: 8px;
    background: linear-gradient(0deg, #000, #272727);
}



.bg-sigin {
    position: relative;
    margin: 0px auto 0;
    width: 40%;
    min-width: 300px;
    background: linear-gradient(0deg, #000, #272727);
}

.bg-sigin:before, .bg-sigin:after {
    content: '';
    position: absolute;
    left: -2px;
    border-radius: 8px;
    top: -2px;
    background: linear-gradient(45deg, #0068ff, #00ff00, #0068ff, #00ff00);
    background-size: 400%;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    z-index: -1;
    animation: steam 20s linear infinite;
}

@keyframes steam {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 400% 0;
    }
    100% {
        background-position: 0 0;
    }
}



/*.radar{
    animation: rotateThis 1s linear infinite;
    box-shadow: 0 1px 0 0 rgb(255 192 0 / 25%), 0 -1px 0 0 rgb(255 64 0 / 25%), 1px 0 0 0 rgb(255 192 0 / 25%), -1px 0 0 0 rgb(255 64 0 / 25%), 1px -1px 0 0 rgb(255 128 0 / 50%), -1px 1px 0 0 rgb(255 128 0 / 50%), 1px 1px 0 0 rgb(255 255 0 / 75%), -1px -1px 0 0 rgb(255 0 0 / 75%);
}

@keyframes rotateThis {
  from {
    transform: rotate(0deg) scale(1);
  }
  
  to {
    transform: rotate(360deg) scale(1);
  }
}*/

.fa-sigin{
    color:#FFF;
}
.fa-sigin a{
    color:#FFF;
}
.bg-video video{
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}
.table.config td{
    line-height: 35px;
    vertical-align: top;
}
.form-switch .form-check-input{
    cursor: pointer;
}
i.big{
    font-size: 1.6rem;
    line-height: 100%;
    vertical-align: text-bottom;
}
i{
    font-size: 1.3rem;
    line-height: 100%;
    vertical-align: text-top;
}
/*li i{
    margin-right: 5px;
}*/
ul{
    list-style:none;
    padding-left: 0;
    margin-bottom: 0;
}
select.form-control,select.form-control:disabled{
    border: 0;
    border-radius: 0;
    background: transparent;
}
.light .modal-content{
    background: #FFF;
}
.dark .modal-content{
    background: #13192c;
}
.modal-dialog {
    max-height: 750px;
    min-height: 80%;
}
.modal-header{
    border-width: 0;
}
.modal-footer{
    border-width: 0;
}
.modal .badge{
    font-size: .8rem;
}
.modal {
    background-color: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px);
}
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
}
/*Forms height min fix*/
.form-floating>.form-select {
    height: calc(3.1rem);
    padding-top: 1.425rem;
    padding-bottom: .325rem;
}
.form-floating>.form-control{
    height: calc(3.1rem);
    padding: 1rem .75rem;
}

/* ------- LOADING ------- */
.loading {
    width: 100%;
    height: 4px;
    display: block;
    position: fixed;
    top: 0px;
    opacity: 0;
    left: 0;
    z-index: 9;
    transition: width 800ms ease;
    transition: opacity 800ms ease;
}
.dark .loading{
    background: rgb(121,173,221);
}
.light .loading{
    background: rgb(69,119,156);
}
.dark .map-view{
    display: none;
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 10%;
    height: 10%;
    background: #36384238;
    border: 2px dashed #ffffff21;
}

.dark .map-view .mark{
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 30%;
    background: rgba(255,255,255,0.15);
    cursor: pointer;
}

.loading.loading0 {
    width: 0%;
    transition: none;
    opacity: 1;
}

.ui-draggable-handle{
    -ms-touch-action:none;
    touch-action:none
}

.dark .loading0{
    background: rgb(121,173,221);
}
.light .loading0{
    background: rgb(69,119,156);
}

.loading.loading1 {
    width: 50%;
    opacity: 1;
    transition: width 500ms ease;
}
.dark .loading1{
    background: rgb(121,173,221);
}
.light .loading1{
    background: rgb(69,119,156);
}

.loading.loading2 {
    display: block;
    width: 80%;
    opacity: 1;
    transition: width 5s ease;
}
.dark .loading2{
    background: rgb(121,173,221);
}
.light .loading2{
    background: rgb(69,119,156);
}

.loading.loading-error {
    width: 100%;
    opacity: 0;
    transition: width 150ms ease;
    transition: opacity 150ms ease;
}
.dark .loading-error{
    background: rgb(200,35,51);
}
.light .loading-error{
    background: rgb(200,0,0);
}
/* ------- LOADING ------- */
.navbar{
    height: 60px;
    position: relative;
    font-size: 18px;
    top: 0;
    width: 100%;
    z-index: 8;
    padding-top: .3rem;
    padding-bottom: .3rem;
    transition: box-shadow 500ms ease;
}
.dark .navbar{
    /*background-color: #1c273e;*/
}
.light .navbar{
    /*background-color: #FFF;*/
}
.navbar-collapse{
    width: auto;
}
.navbar-expand-md {
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
}
.navbar-toggler i{
    font-size: 1.5rem;
}
.navbar .sigin{
    width: 15%;
    text-align: right;
    min-width: 80px;
}
.page.sigin{
    justify-content: flex-start;
}
.page.sigin input{
    height: calc(3rem + 2px);
}

.navbar-light .navbar-nav .nav-link{
    color:rgba(0,0,0,.45);
}
.dark .btn-alert.active{

}
.dark .btn-alert{
    color: #fff;
    display: flex;
    justify-content: center;
    flex-direction: column-reverse;
    width: 120px;
    align-items: center;
    border:1px solid;
    border-width: 1px!important;
    font-size: .9rem;
}
.dark .btn-alert.bg-danger{
    background: #462629 !important;
    border-color: #a11321;
}
.dark .btn-alert.bg-danger:hover{
    background: #a11321a1 !important;
    border-color: #a11321;
}
.dark .btn-alert.bg-danger.active{
    background: #a11321 !important;
    border-color: #a11321;
}
.dark .btn-alert.bg-warning{
    background: #352d17 !important;
    border-color: #866817;
}
.dark .btn-alert.bg-warning:hover{
    background: #866817a1 !important;
    border-color: #866817;
}
.dark .btn-alert.bg-warning.active{
    background: #866817 !important;
    border-color: #866817;
}
.dark .btn-alert.bg-success{
    background: #182e15 !important;
    border-color: #055a1c;
}
.dark .btn-alert.bg-success:hover{
    background: #055a1ca1 !important;
    border-color: #055a1c;
}
.dark .btn-alert.bg-success.active{
    background: #055a1c !important;
    border-color: #055a1c;
}
.dark .btn-alert.bg-primary{
    background: #222a41 !important;
    border-color: #303d5e;
}
.dark .btn-alert.bg-primary:hover{
    background: #313e5da1 !important;
    border-color: #303d5e;
}
.dark .btn-alert.bg-primary.active{
    background: #313e5d !important;
    border-color: #303d5e;
}
.num-alert{
    font-size: 1.5rem;
    line-height: 1.6rem;
    color: #fff!important;
}
.navbar .nav-item .btn{
    padding: .375rem 0.5rem;
}
.left-side.active, body.menu-fixed .left-side{
    width: 200px;
}
.top-side .empresa-sel{
    width: 200px;
}
.top-side{
    top: 8px;
    left: 200px;
    height: 40px;
    z-index: 8;
}
.left-side{
    position: absolute;
    top: 60px;
    left: 0px;
    bottom: 0;
    width: 60px;
    z-index: 9;
    transition: width .4s ease, box-shadow .5s ease;
}
/*.light .left-side{
    background-color: #f5f5f5;
}
.dark .left-side{
    background-color: #182747;
}*/
.left-side.shadw{
    box-shadow: none;
}
.right-side{
    position: absolute;
    top: 60px;
    right: -260px;
    padding: 1rem;
    bottom: 0;
    width: 260px;
    max-width: 90%;
    background-color: #ffffff;
    z-index: 7;
    transition: all 400ms ease;
    border-left: 1px solid #e8e8e8;
}
.right-side.active{
    right: 0;
}
.inline{
    display: inline;
}
.fullpage {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 1.5rem 1rem;
}
.widget.topologia{
    overflow: auto;
}
.modal .profile{

}
.modal .expressao-obs{
    width: 766px;
    max-width: 100%;
    margin-top: -5px;
    height: 350px;
    display: flex;
    position: fixed;
    color: #2b3650;
    border-color: rgba(255, 255, 255, 0.25);
    background-color: #111a2e;
    z-index: 50000;
    border: 1px solid;
}
.modal .expressao-obs ul{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 152px);
    grid-template-rows: repeat(17, 20px);
    grid-auto-flow: column;
    overflow-y: auto;
    overflow-x: auto;
}
.modal .expressao-obs ul li{
    padding: .125rem 0 .125rem .45rem;
    color: white;
    font-size: 0.75rem;
    width: 100%;
    cursor: pointer;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.modal .expressao-obs ul li.active{
    background-color: #314469;
}

.modal .profile .users{
    width: 250px;
}
.modal .profile .user-sel{
    left: 260px;
    right: 0;
    margin: 0 0 0 40px;
}
.modal .profile .user-sel .col1{
    width: 465px;
}
.modal .profile .user-sel .col1 .row{
    height: 60px;
}
.modal .modal-header{
    background: #13192c;
}
.modal .modal-header .title{
    font-size: 1.25rem;
}
.table-striped>tbody>tr:nth-of-type(odd)>*{
    color: #f5f5f5;
}
.modal .profile .users .nav-item{
    margin: 2px 0;
}
.modal .profile .users .nav-item:hover{
    transform: scale(1.06);
    transition: all 100ms ease;
}
.modal .profile .users .nav-item .nav-link{
    width: 240px;
}
.modal .profile .users .nav-item .nav-link:not(.active){
    background: #242f47;
}
.modal .profile .modal-footer .row{
    width: 465px;
}
.modal .profile .modal-body{
    max-height: 330px;
}
.modal .profile{
    height: 418px;
    top: 20px;
}
.modal .profile .ion-md-close{
    padding: 0px 17px;
}

.modal-content{
    max-height: 85%!important;
}
.widget.medidores{
}
.widget.dados{
}

body.menu-fixed .content{
    left: 230px;
}
.content{
    position: absolute;
    left: 50px;
    overflow-x: hidden;
    overflow-y: auto;
    bottom: 0;
    top: 60px;
    right: 0;
    z-index: 5;

}
/*.light .content{
    background-color:#eef1fa;
}
.dark .content{
    background: linear-gradient(319deg, rgb(5 10 66) -20%, rgb(17 31 61) 100%);
}*/

.content-head > .title{
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin-bottom: 0;
    font-size: 1.2rem;
    line-height: 20px;
    height: 35px;
    font-weight: 400;
    color:#555;
}
.filters{
    justify-content: flex-start;
}
.msg-empty{
    text-align: center;
    padding: 30px;
}
.filters .nav-pills .nav-link{
    display: flex;
    justify-content: space-between;
    vertical-align: middle;
    line-height: 35px;
    margin-bottom: 3px;
    padding: 1px 6px 1px 12px;
}
.filters .nav-pills .nav-link:not(.active):hover{
    background: rgba(107, 167, 255, 0.14);
}
.filters .nav-pills .nav-item.title{
    padding: 10px 0px;

    cursor: default;
}
.light .filters .nav-pills .nav-item.title{
    color: #0199da;
}
.dark .filters .nav-pills .nav-item.title{
    color: #0199da;
}


.filters .nav-link .opts{
    display: none;
}
.filters .nav-link.active .opts{
    display: block;
}
.filters .nav-link .opts .btn.active{
    color: #FFF;
    background: rgba(0, 0, 0, 0.23);
}
.filters .nav-link .opts .btn{
    color: #aabcce;
    padding: 0px 4px;
    font-weight: 100;
    margin: 0 1px 2px 2px;
    height: 22px;
    font-size: 0.75rem;
    background: rgba(0, 0, 0, 0.1);
}
.bt-back{
    padding: 0 10px;
}
.padd{
    padding: 0px 20px 20px 20px;
}
.padd-x{
    padding-left: 20px;
    padding-right: 20px;
}
.padd-x.esq{
    width: 260px;
}
/*.padd{
    padding-left: 20px;
    padding-right: 20px;
}*/
.analise .dir{
    width: 100%;
    /*margin-right: 20px;
    margin-bottom: 20px;*/
}
.modal .list-group-item{
    font-size: 0.9rem;
}
.dark .list-group-item{
    background: #1c2741;
    color: #f5f5f5;
}
.dark .list-group-item:hover{
    background: #29334d;
}
.dark .list-group-item:focus{
    background: #29334d;
    color: #FFF;
}
.form-check {
    /*margin-right: 0.3rem;*/
    margin-bottom: 0;
}
.form-check-inline {
    margin-right: 0.3rem;
}
.padd-y{
    padding-top: 25px;
    padding-bottom: 25px;
}
.legend{
    margin-top: 15px;
}
.modal .form-floating .badge{
    position: absolute;
    right: 16px;
    top: 14px;
    width: 23px;
    padding: 5px;
    cursor: pointer;
}
.modal .list-group-item .badge{
    width: 22px;
    padding: 4px 4px;
    cursor: pointer;
}
.dir .nav-tabs{
    overflow-y: hidden;
    position: fixed;
    width: calc(100% - 410px);
    z-index: 2;
    margin-top: 25px;
    height: 34px;
    background: #eef1fa;
    overflow-x: auto;
    flex-wrap: nowrap;
    border: none;
    white-space: nowrap;
    padding-right: 30px;
}
.filters .data{
    margin-top: 15px;
    background: #ececec;
    font-size: 14px;
    font-weight: 500;
    line-height: 25px;
    border-radius: 5px;
    text-align: center;
    color: #6a6c6a;
}
.legend-spacer{
    width: 90px;
    font-size: 14px;
    margin-top: 2px;
    margin-left: 0px;
}
.legend-spacer label{
    font-weight: 500;
    color: #6b6b6b;
}
.legend .tit.active{
    color: #6b6b6b;
    font-weight: 500;
}
.legend .tit{
    cursor:pointer;
    margin: 0px 0 0px 8px;
    color: #bbb;
    padding: 7px 3px;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    text-transform: lowercase;
    width: 45px;
}
.qualidade .grp{
    margin: 10px 15px;
    width: 250px;
    background: #ffffff14;
    border-radius: 6px;
    padding: 10px 15px;
}
.qualidade .dets{
    display: flex;
    flex-direction: row;
}
.qualidade .nm{
    font-weight: 500;
    color:#ccc;
}
.widget.qualidade .upd-qldd{
    display:flex;
}
.widget.qualidade .upd-qldd span{
    color: rgba(255,255,255,0.4);
    font-size: 1rem;
    margin-right: 10px;
}
.filterparam .val{
    margin: 2px 0 0 8px;
    background: #ececec;
    font-weight: 400;
    color: #ececec;
    padding: 3px 2px;
    font-size: 12px;
    text-align: center;
    width: 45px;
    border-radius: 3px;
    height: 21px;
    cursor: pointer;
    opacity: 0.3;
}
.filterparam.active .val.med{
    font-weight: 500;
}
.filterparam.active .val.active{
    opacity: 1;
    color: #666;
}
.filterparam.active .val.active:hover{
    background: #e0e0e0;
}
.legend .filterparam{
    margin-bottom: 0px;
}
.legend .unidtit{
    margin: 4px 0 2px 8px;
    color: #bbb;
    padding: 3px 3px;
    color: #6b6b6b;
    font-weight: 600;
    font-size: 12px;
    text-align: center;
    width: 30px;
    cursor: default;
}
.filterparam .unidade{
    opacity: 0.3;
    width: 30px;
    color: #6b6b6b;
    font-weight: 600;
    height: 21px;
    font-size: 13px;
    padding: 3px 2px;
    text-align: left;
    /*background: #f5f5f5;*/
    margin: 2px 0 0 8px;
    border-radius: 3px;
}
.filterparam.active .unidade{
    opacity: 1;
}
.filterparam .legend-bt{
    cursor: pointer;
    width: 18px;
    height: 18px;
    margin: 3px 8px 0 5px;
    border-radius: 10px;
}
.filterparam:not(.active) .legend-bt{
    background: #ccc!important;
}
.widget.filtro{
    position: fixed;
    width: 260px;
    margin-right: 20px;
    min-height: 350px;
    bottom: 20px;
    top: 60px;
}
.widget.analise{
    width: calc(100% - 280px);
    left: 140px;
    /*min-height: 350px;*/
}
.nav-tabs .nav-link{
    background-color: #FFF;
    color: #5f5f5f;
    font-weight: 400;
}
.nav-tabs .nav-link.active{
    background-color: #eef1fa!important;
    color: rgb(65,65,65);
    font-weight: 500;
}
.widget{
    /*display: table;*/
    table-layout: fixed;
    /*max-width: 1400px;*/
    margin: auto;
    width: 100%;
    min-height: 100%;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 2px 20px -5px rgba(0, 0, 0, 0.11), 0 1px 1px 0 rgba(0, 0, 0,0.07), 0 1px 3px 0 rgba(0, 0, 0,0);
}

.widget.responsive{
    max-width: none;
}
.light .widget:not(.no-bg){
    background-color: #fff;
    /*backdrop-filter: blur(20px);*/
}
.dark .widget:not(.no-bg){
    background-color: rgba(195, 193, 255,0.05);
    /*backdrop-filter: blur(20px);*/
}

.widget .wid-head{
    display: flex;
    justify-content: space-between;
    padding: 20px 20px 10px;
    margin-bottom: 0;
    font-size: 1.2rem;
    /*height: 65px;*/
    font-weight: 300;
    position: relative;
    z-index: 2;
    margin: 0 20px;
}

.topologia .wid-head{
    height: 65px;
}
.widget .wid-head .infos{
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
}
.widget .wid-head .infos>*{
    margin-left: 20px;
}
.wid-head.graf{
    border-bottom: 1px solid #d9d9d9;
    height: 65px;
}
.nav-tabs .nav-link.active {
    background-color: #f3f3f3;
}
#consumochart{
    height: 475px;
}
#potenciachart{
    height: 235px;
}
.analisechart{
    margin-top: -1px;
    /*border: 1px solid #e6e9ec;*/
}
.resumo .cards{
    display: flex;
    flex-wrap: wrap;
    ustify-content: space-between;
    margin: 30px;
}

/*.dark .resumo .cards .item.custo{
    border-bottom: 2px solid rgba(192, 142, 0, 1);
    background: rgba(192, 142, 0, 0.70);
    
}
.dark .resumo .cards .item.demanda{
    border-bottom: 2px solid rgba(78, 215, 176, 0.53);
    background: rgba(78, 215, 176, 0.47);
}
.dark .resumo .cards .item.consumo{
    border-bottom: 2px solid rgba(59, 133, 217, 1);
    background: rgba(58, 143, 232, 0.5);
}
.dark .resumo .cards .item.valorp{
    border-bottom: 2px solid rgba(30, 112, 197, 0.75);
    background: rgba(21, 94, 210, 0.70);
}
.dark .resumo .cards .item.valorfp{
    border-bottom: 2px solid rgba(58, 143, 232, 1);
    background: rgba(58, 143, 232, 0.74);
}*/

.dark .resumo .cards .item{
    background: #232e45;
    border-bottom: 2px solid #334164;
}

.light .resumo .cards .item{
    background: #eaeaea;
    border-bottom: 2px solid #d5d8df;
}



.resumo .cards .item{
    line-height: 20px;
    display: flex;
    justify-content: center;
    /* text-align: center; */
    padding: 2px 6px 2px 6px;
    border-radius: 4px;
    flex-basis: 18%;
    min-width: 100px;
}

.resumo .cards .dados{
    justify-content: center;
    display: flex;
    white-space: nowrap;
    flex-direction: column;
    margin-right: 10px;
}
.resumo .cards .item .icon{
    min-width: 20px;
    padding-right: 5%;
    margin: 0 5px;
    text-align: center;
}
.resumo .cards .item .icon i{
    font-size: 2.5rem;
    line-height: 60px;
}
.resumo .cards .item .title{
    font-size: 0.9rem;
    font-weight: 400;
}
.resumo .cards .item .title-min{
    font-size: 0.8rem;
    font-weight: 500;
}
.resumo .cards .item .value{
    font-size: 1.2rem;
    font-weight: 400;
}
.widget .line{
    display: flex;
    justify-content: space-evenly;
    margin: 20px;
}



.leg-tree ul {
    margin: 0;
    padding-left: 20px;
    line-height: 1.6em;
    list-style: none;
}
.leg-tree ul li {
    position: relative;
}
.leg-tree ul li:before {
    position: absolute;
    top: -2px;
    left: -11px;
    display: block;
    width: 12px;
    height: 15px;
    content: "";
    border-bottom: 1px dotted #666;
    border-left: 1px dotted #666;
}
/* hide the vertical line on the first item */
.leg-tree ul.consumo-tree > li:first-child:before {
    border-left: none;
}
.leg-tree ul > li .line-tree:hover, .leg-tree ul > li .line-tree.hover {
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.15);
}
.leg-tree ul > li > div {
    height: 26px;
    line-height: 26px;
    margin-bottom: 2px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    border-radius: 5px;
    justify-content: space-between;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 200;
}
.leg-tree ul > li > div > * {
    z-index: 2;
}
.leg-tree ul > li > div > .progress {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 5px;
    height: 25px;
    background: rgba(103, 113, 220, 0.53);
    width: 0%;
    animation: progress-animation 1.5s ease-in forwards;
}
@keyframes progress-animation {
    to {
        width: 100%;
    }
}
.leg-tree ul > li > div .perc {
    position: absolute;
    right: 110px;
    text-align: center;
    font-weight: 100;
    color: #97b3dd;
    font-size: 0.75rem;
}
.leg-tree ul > li > div > span {
    padding-left: 5px;
    padding-right: 5px;
}



.leg-tree ul li:after {
    position: absolute;
    top: 12px;
    bottom: 1px;
    left: -11px;
    display: block;
    content: "";
    border-left: 1px dotted #666;
}

/* hide the lines on the last item */
.leg-tree ul li:last-child:after {
    display: none;
}

/* inserted via JS  */
.leg-tree .js-toggle-icon {
    position: absolute;
    z-index: 1;
    display: inline-block;
    height: 16px;
    width: 17px;
    top: 13px;
    font-size: 16px;
    vertical-align: middle;
    margin-left: -20px;
    margin-top: -8px;
    line-height: 16px;
    text-align: center;
    cursor: pointer;
    border: 1px solid #666;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.75);
}

.widget.consumo .table .n2,.widget.consumo .table .n3, .widget.consumo .table .n4{
    /*display: none;*/
}
.widget.consumo .table .n1 td:first-child{
    padding-left: 20px;
}
.widget.consumo .table .n2 td:first-child{
    padding-left: 40px;
}
.widget.consumo .table .n3 td:first-child{
    padding-left: 60px;
}
.widget.consumo .table .n4 td:first-child{
    padding-left: 80px;
}

.dark .widget .det .item{
    border: 1px solid #1e3046;
    background: #13192c;
}

.light .widget .det .item{
    border: 1px solid #d5d8df;
}

.widget .det .item{
    border-radius: 4px;
    flex-basis: 100%;
    min-width: 280px;
    margin: 0 20px;
}
.energia .det .item{
    height: 344px;
}
.consumo .det .item{
    height: 500px;
}
.qualidade .det .item{
    height: 250px;
}
.energia .chart.subs{
    overflow-y: auto;
}
.energia .chart.subs .table{
    line-height: 20px;
}
.energia .chart.subs .table td{
    white-space: nowrap;
}
.widget .det .item .title{
    padding: 13px 20px;
}

.energia .wid-content{
    overflow: hidden;
}
.alarmes .wid-content{
    display: flex;
    justify-content: space-between;
}
.alarmes .wid-content .wid-filter{
    width: 180px;
    padding: 20px 0px 20px 40px;
}
.alarmes .wid-content .wid-graf{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 50%;
    min-width: 300px;
    padding: 20px 0px 30px 20px;
}
.alarmes .wid-content .lat-chart{
    height: 65%;
    display: flex;
    flex-direction: row;
    justify-content:space-between;
}
.alarmes .wid-content .wid-events{
    width: 50%;
    margin: 20px 30px 30px 20px;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 8px;
    padding-right: 5px;
}
.alarmes .wid-content .wid-table table th{
    position: sticky!important;
    background: #232e45;
}
.alarmes .wid-content .wid-graf div .title{
    background: #232e45;
    padding: 10px;
}
.alarmes .wid-content .wid-graf .chart{
    height: 100%;
    width: 100%;
    padding: 0px 0 0 0;
}
.alarmes .wid-content .wid-graf .wid-chart{
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    border: 1px solid #1e3046;
    background: #13192c;
    border-radius: 8px;
}
.alarmes .wid-content .wid-graf .time-chart{
    height: 35%;
    margin: 0 0 10px 0;
}
.alarmes .wid-content .wid-graf .esq-chart{
    width: 50%;
    margin: 0 10px 10px 0;
}
.alarmes .wid-content .wid-graf .dir-chart{
    width: 50%;
    margin: 0 0 10px 0;
}
.alarmes .wid-content .wid-graf .unid-chart{
    height: 100%;
    margin: 0 0 10px 0;
}

.alarmes .wid-content .wid-graf .tipo-chart{
    height: 50%;
}
.alarmes .wid-content .wid-graf .crit-chart{
    height: 48%;
    margin: 0 0 10px 0;
}


/*.dark .energia .det .item .title{
    background: #232e45;
}
.light .energia .det .item .title{
    background: #eaeaea;
}*/

.dark table.widget-table{
    border-left: 1px solid #282e42;
}
.light table.widget-table{
    border-left: 1px solid #ddd;
}
table.widget-table th {
    position:sticky;
    top:0;
    z-index:1;
    border-top:0;
}

.dark .energia .det .item{
    /*background: rgba(220, 215, 255, 0.04);*/
}
.light .energia .det .item{
    background: rgba(183, 183, 183, 0.04);
}

.widget .line .item.tipo1{
    display: flex;
    justify-content: space-evenly;
}
.widget .line .item .area{
    position: relative;
    width: calc(50% - 150px);
    height: 100%;
}
.qualidade .line{
    margin: 20px 20px 40px 20px;
}
.widget .line1 .item .area.chart{
    /*background: #131829;*/
    border-radius: 50%;
    width: 282px;
    height: 272px;
    margin-top: -10px;
    border: 1px solid #334164;
    box-shadow: 0px 0px 20px 6px rgba(0, 0, 0, 0.1);
    /*background: #131829 url(../img/fasores.png) no-repeat center;*/
}
.widget .line1 .item .area.chart .img{
    position: absolute;
    top: 3px;
    bottom: 3px;
    right: 3px;
    left: 3px;
    border-radius: 50%;
    background: #131829 url(../img/fasores.png) no-repeat center;
}
.widget .line2 .item .area.chart{
    background: #131829;
    width: 250px;
    height: 270px;
    margin-top: -10px;
    border: 1px solid #334164;
    box-shadow: 0px 0px 20px 6px rgba(0, 0, 0, 0.1);
    background: #131829  url(../img/triangulo2.png) no-repeat center;
}
.qualidade .line1 .item .cont{
    display: flex;
    justify-content: space-evenly;
    width: 50%;
}
.qualidade .line2 .item .cont{
    padding: 7px 0;
    /*border: 1px solid #334164;*/
}

.qualidade .area.fp .cont-vert{
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    margin: 0px 0 0px 0;
    text-align: center;
    width: 44%;

}
#chart-harmonica-tensao, #chart-harmonica-corrente{
    height: 210px;
}

.qualidade .area.fp .leg1{
    font-size: 0.75rem;
    font-weight: 300;
    color: #fd5959;
    cursor: default;
}
.qualidade .area.fp .red-mark{
    border-left: 1px dashed #a13b3d;
    height: 90%;
    z-index: 2;
}
.qualidade .area.fp .green-mark{
    border-right: 1px dashed #5cc37b;
    height: 90%;
    z-index: 2;
}

.qualidade .area.fp .leg2{
    font-size: 0.75rem;
    font-weight: 300;
    color: #5cc37b;
    cursor: default;
}
.qualidade .line1 .item .conts{
    display: flex;
    margin: 0 30px;
    justify-content: space-evenly;
}

.qualidade .line2 .area.p .conts{
    /*display: flex;*/
    margin: 0 10px;
    /*justify-content: space-between;*/
}
.qualidade .line2 .area.fp .conts{
    display: flex;
    margin: 0 0px;
    justify-content: space-evenly;
}


.qualidade .area.p .horz-bar {
    background: linear-gradient(90deg, rgb(30,46,66) 20%, rgb(35,63,102) 100%);
}
.qualidade .area.fp .horz-bar {
    background: linear-gradient(90deg, rgba(255,84,45,0.3) 0%, #1d2939 75%, rgba(16,142,43,0.7) 100%);
}
.qualidade .area.fp .marks {
    display: flex;
    justify-content: space-evenly;
    position: absolute;
    width: 100%;
    margin-top: 20px;
}
.qualidade .area.fp .marks41 {
    display: flex;
    justify-content: space-between;
    width: 44%;
}
.qualidade .area.fp .marks42 {
    display: flex;
    justify-content: space-between;
    width: 44%;
}
.qualidade .area.fp .mark-vert {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 170px;
    align-items: center;
    width: 4px;
}
.qualidade .area.fp .horz-bar {
    width: 100%;
    height: 27px;
    margin: 5px 0 7px 0;
    cursor: pointer;
    position:relative;
    display: flex;
    font-size: 0.8rem;
    line-height: 20px;
    text-shadow: 1px 1px 2px #000;
}

.qualidade .area.p .horz-bar {
    width: 100%;
    height: 27px;
    cursor: pointer;
    position:relative;
    display: flex;
    font-size: 0.8rem;
    line-height: 20px;
    text-shadow: 1px 1px 2px #000;
}

.qualidade .area.p .horz-bar .vert0 .pfase{
    font-size: .7rem;
    font-weight: bold;
}
.qualidade .area.p .horz-bar .vert0 .pval{
    font-size: .7rem;
    font-weight: 600;
}
.qualidade .area .conts .cont{
    font-weight: 600;
}
.qualidade .item .horz-bar .vert0 {
    left: 0px;
    width: 0px;
    bottom: 0px;
    line-height: 27px;
    top: 0px;
    /*background: #1e6dcf;*/
    white-space: nowrap;
    text-align: center;
    padding: 0 3px;
    z-index: 3;
    transition: all 500ms ease;
}
.qualidade select{
    display: inline-flex;
    width: auto;
    border: 1px solid rgba(255, 255, 255, 0.15)!important;
    padding: 0px 5px;
    text-align: center;
    margin: 0 5px;
}
.qualidade .line2 .cont-horz{
    display: flex;
    justify-content: space-between;
}
.qualidade .ptotal{
    border-radius: 5px;
    border: 2px solid;
    width: 165px;
    font-size: 0.9rem;
    margin-left: 10px;
    text-align: center;
    margin-top: -1px;
    padding: 4px 5px;
    display: flex;
    justify-content: space-between;
}
.qualidade .line2 .name-title{
    display: flex;
    justify-content: space-between;
}
.qualidade .line2 .name-title .name-total{
    width: 160px;
    text-align: center;
    font-size: 0.85rem;
}

.small{
    font-size: 0.7rem;
    font-weight: 600;
}

.qualidade .area.p .name{
    margin: 0px 0 1px 0;
    width: 100%;
    height: 20px;
    cursor: pointer;
    font-size: 0.85rem;
}

.qualidade .area.fp .cont-vert .name{
    padding: 0px 0 1px 10px;
    width: 100%;
    text-align: center;
    line-height: 20px;
    cursor: pointer;
    font-size: 0.9rem;
}

.qualidade .area.fp .horz-bar .name{
    padding: 0px 0 1px 10px;
    width: 100%;
    text-align: left;
    line-height: 27px;
    cursor: pointer;
    font-size: 0.85rem;
}


.qualidade .line1 .item .cont .vert-bar.limit2{
    background: linear-gradient(359deg, rgba(255,84,45,0.5) 0%, rgba(37,54,76,1) 20%, rgba(37,54,76,1) 50%, rgba(37,54,76,1) 80%, rgba(255,84,45,0.5) 100%);
}
.qualidade .line1 .item .cont .vert-bar.limit1{
    background: linear-gradient(359deg, rgba(37,54,76,1) 15%, rgb(37,54,76) 50%, rgba(37,54,76,1) 80%, rgba(255,84,45,0.5) 100%);

}
.qualidade .line1 .item .cont .vert-bar{
    width: 12%;
    background: #25364c;
    max-width: 25px;
    height: 150px;
    position: relative;
    cursor:pointer;
}
.qualidade .line1 .item .cont .vert-bar .leg{
    margin-top: 160px;
    text-align: center;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    cursor: default;
}
.qualidade .line1 .item .cont .vert-bar .mark0{
    margin-top: 150px;
    width: 100%;
    margin-left: 0;
    height: 3px;
    position: absolute;
    background: #FFF;
    z-index: 3;
    transition: all 500ms ease;
}
.qualidade .line2 .mark1{
    margin-left: 0;
    height: 100%;
    width: 3px;
    position: absolute;
    background: #FFF;
    z-index: 3;
    transition: all 500ms ease;
}
.qualidade .line1 .item .cont .vert-bar .ret0{
    top: 147px;
    width: 100%;
    bottom: 0px;
    position: absolute;
    background: #FFF;
    z-index: 3;
    transition: all 500ms ease;
}
.qualidade .line1 .item .cont .vert-bar .mark0>div, .qualidade .line1 .item .cont .vert-bar .ret0>div{
    font-size: 0.75rem;
    line-height: 25px;
    margin-top: -25px;
    justify-content: center;
    text-shadow: 1px 1px 2px #000;
    display: flex;
}
.qualidade .line2 .mark1>div{
    font-size: 0.75rem;
    line-height: 25px;
    font-weight: 600;
    margin-left: -28px;
    justify-content: left;
    text-shadow: 1px 1px 2px #000;
    display: flex;
}
.qualidade .line1 .item .marks1{
    position: absolute;
    width: 100%;
    display: flex;
    height: 20px;
    justify-content: space-between;
    margin-top: 10px;
}
.qualidade .line1 .item .marks21{
    position: absolute;
    width: 100%;
    display: flex;
    height: 20px;
    justify-content: flex-start;
    margin-top: 10px;
}
.qualidade .line1 .item .red-mark{
    background: url(../img/red_mark.png);
    width: 32%;
    z-index: 2;
}
.qualidade .line1 .item .spc-mark{
    width: 10%;
}
.qualidade .line1 .item .blue-mark{
    background: url(../img/blue_mark.png);
    width: 32%;
    z-index: 2;
}
.qualidade .line1 .item .marks2{
    margin-top: 65px;
    position: absolute;
    width: 100%;
    display: flex;
    height: 20px;
    justify-content: space-between;
}
.qualidade .line1 .item .marks22{
    margin-top: 140px;
    position: absolute;
    width: 100%;
    display: flex;
    height: 20px;
    justify-content: flex-start;
}
.qualidade .line1 .item .marks3{
    margin-top: 120px;
    position: absolute;
    width: 100%;
    display: flex;
    height: 20px;
    justify-content: space-between;


}
.qualidade .line1 .item .leg1{
    width: 11%;
    height: 20px;
    text-align: right;
    font-size: 0.7rem;
    font-weight: 600;
}
.qualidade .line1 .item .leg2{
    width: 11%;
    height: 20px;
    text-align: left;
    font-size: 0.7rem;
    font-weight: 600;
}
.qualidade .line1 .item .marks3>div, .qualidade .line1 .item .marks1>div{
    color: #fd5959;
    cursor: default;
}
.qualidade .line1 .item .marks2>div{
    color: #6986d5;
}

.qualidade .det .item .title{
    text-align: center;
    position: relative;
    color: #d9d9d9;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    padding: 15px 0px 13px 0;
    z-index:4;
}

.widget .det .item .chart .title{
    margin-top: 16px;
}

.dark .inner-table table thead th{
    background: #232e45;
}
.light .inner-table table thead th{
    background: #efefef;
}
.widget.energia .line .item .inner-table{
    margin: 12px 10px;
    height: 316px;
    overflow: auto;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.widget.consumo .inner-table{
    /*margin: 13px 10px;*/
    /*height: 228px;*/
    border-radius: 0px;
    overflow: auto;
    padding: 10px 12px;
    width: 100%;
    border: 1px solid #282e42;
}
.widget .line .item .title-card{
    padding: 10px 20px 0 20px;
    display: flex;
    justify-content: space-between;
}
.widget .line .item .title-card>div:first-child{
    font-size: 1.5rem;
    vertical-align: middle;
    line-height: 2;
    font-weight: 300;
}
.widget .line .item .title-card>div:not(:first-child){
    width: 22%;
    height: 50px;
    border-radius: 6px;
    padding: 6px 6px 2px 8px;
    line-height: 20px;
}

.dark .widget .line .item .title-card>div:not(:first-child){
    background: #232e45;
    border-bottom: 2px solid #334164;
}

.light .widget .line .item .title-card>div:not(:first-child){
    background: #efefef;
    border-bottom: 2px solid #ced2da;
}

.modal-title .min{
    color:#778;
}
.widget .line .item .title-card>div:last-child{
    margin-right: 1px;
}
.widget .line .item .title-card>div:first-child i{
    font-size: 1.5rem;
}
.ellipsis{
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.mini-card .value{
    font-size: 1.2rem;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    text-align: center;
}
.mini-card .title-min{
    font-size: 0.8rem;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    text-align: center;
}
.widget.energia .line .item>.left{
    width: 59%;
}
.widget.energia .line .item.no-table>.left{
    width: 98%;
}
.widget.energia .line .item>.right{
    width: 39%;
}
.widget.energia .line .item.no-table>.right{
    width: 0%;
}

.widget.consumo .item.tipo1{
    border: none;
    background: none;
    justify-content: space-between;
}
.widget.consumo .left{
    position: absolute;
    width: 320px;
    bottom: 20px;
    top: 19px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.widget.consumo .right1{
    position: absolute;
    left: 369px;
    top: 19px;
    right: 28px;
    height: 56vh;
    border: 1px solid #282e42;
}
.widget.consumo .right1.expand{
    bottom: 20px;
    height: auto;
}
.widget.consumo .right2{
    position: absolute;
    left: 369px;
    right: 28px;
    top: 58vh;
    bottom: 20px;
    display: flex;
    justify-content: space-between;
}
@media (min-width: 1280px) {
    .widget.consumo .right1{
        left: 369px;
        top: 19px;
        height: auto;
        right: 396px;
        bottom: 20px;
    }
    .widget.consumo .right1.expand{
        right: 20px;
    }
    .widget.consumo .right2{
        width: 360px;
        right: 28px;
        bottom: 20px;
        top: 19px;
        left: auto;
    }
}
.consumo .det .left .total{
    min-width: 320px;
    height: 7vh;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #232e45;
    color: #7d7d7d;
    border: 1px solid #282e42;
}
.consumo .det .left .chart{
    min-width: 320px;
    min-height: 180px;
    height: 25vh;
    margin: 1px 0 0 0;
    text-align: center;
    line-height: 160px;
    margin-top: -1px;
    flex: auto;
    color: #7d7d7d;
    border: 1px solid #282e42;
}
.consumo .det .left .top{
    background: #232e45;
    color:#fff;
    text-align: center;
    height: 38px;
    line-height: 38px;
    width: 100%;
}
.consumo .det .left .val{
    color: #fff;
    font-size: 1.6rem;
    justify-content: center;
    align-items: center;
    display: flex;
}

.consumo .det .right1 .chart{
    height: 100%;
    width: 100%
}


.energia .det .chart{
    min-width: 280px;
    height: 288px;
    margin: 1px 0 0 0;
    text-align: center;
    line-height: 160px;
    color: #7d7d7d;
}


a.am5exporting-icon {
    margin-top: 16px;
    margin-right: 18px;
}
.dark a.am5exporting-icon, .dark a.am5exporting-icon:hover {
    background: transparent!important;
}
.light a.am5exporting-icon, .light a.am5exporting-icon:hover {
    background: transparent!important;
}
.dark .am5exporting-menu path {
    fill: #CCC!important;
}
.light .am5exporting-menu path {
    fill: #333!important;
}
.am5exporting-list{
    border-width: 0!important;
}
.dark .am5exporting-list{
    background: rgb(63, 70, 89)!important;
    color:#DDD!important;
}
.light .am5exporting-list{
    background: rgb(217, 217, 217)!important;
    color:#333!important;
}
.dark .am5exporting-item a:hover, .dark .am5exporting-item a.am5exporting-item-active{
    background: rgb(86, 97, 113)!important;
}
.light .am5exporting-item a:hover, .light .am5exporting-item a.am5exporting-item-active{
    background: rgb(163, 163, 163)!important;
}
.am5exporting-list.am5exporting-align-right {
    margin-right: 0px;
    margin-top: 44px;
}
.amcharts-amexport-top {
    top: -30px!important;
    right: -1px!important;
}
.btn-outline-secondary {
    color: #6c757d;
    border-color: #ced4da;
}
.btn-check:active+.btn-outline-secondary, .btn-check:checked+.btn-outline-secondary, .btn-outline-secondary.active, .btn-outline-secondary:active{
    color: #000;
    background-color: #e9ecef;
    border-color: #ced4da;
}
.btn:focus,.btn:active {
    outline: none !important;
    box-shadow: none !important;
}
.not-select{
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: 0;
}
.wid-content-scroll{
    /*overflow: auto;*/
    height: calc(100% - 34px);
    /*padding: 5px 0 20px 0;*/
    /*margin-top: 25px;*/
}

.widget.responsive-y{
    overflow: unset;
    position: absolute;
    top: 60px;
    bottom: 20px;
}

.widget.responsive-y .wid-content{
    /*overflow: unset;*/
    position: absolute;
    top: 60px;
    bottom: 0px;
}
.wid-content{
    overflow: auto;
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.wid-flex{
    display: flex;
    justify-content: space-between;
}

.widget.consumo{

}

.widget.responsive-x{
    position: absolute;
    height: auto;
    min-height: auto;
    max-width: unset;
    top: 0px;
    left: 20px;
    right: 20px;
    width: auto;
}

.widget.responsive{
    position: absolute;
    height: auto;
    min-height: auto;
    top: 0px;
    left: 20px;
    right: 20px;
    width: auto;
    bottom: 20px;
}

.widget.tensao, .widget.corrente{
    height: 215px;
}
.widget.potencia{
    height: 300px;
}
.widget.eventos .wid-content{
    height: 206px;
}
.widget.fases{
    height: 206px;
}
.wid-number{
    font-size: 2rem;
}
.wid-bb{
    border-bottom-width: 3px;
    border-bottom-style: solid;
}
.navbar .navbar-brand{
    font-size: 1.7rem;
    margin: 0 0 0 10px;
    width: 200px;
    text-align: center;
}
.login-brand{
    text-align: center;
}
.login-brand img{
    max-width: 260px;
}
#login #user, #login #pass{
    border: 1px solid #323232;
}

.navbar .navbar-brand img{
    width: 170px;
}
ion-icon {
    font-size: 2rem;
}
.header-icon{
    padding: 0 10px;
    line-height: 40px;
    font-size: 1.6rem;

}
.header-icon:hover i{
    color: #e1e1e1;
}
.header-icon.active i{
    color: #e1e1e1;
}
.header-icon i{
    color: #5e6779;
    font-size: 1.6rem;
}
.rotate-90 {
    display: inline-block;
    transform: rotate(90deg);
}
.rotate-180 {
    display: inline-block;
    transform: rotate(180deg);
}
.bt-topologia{
    height: 24px;
    width: 23px;
    padding-top: 0px;
    display: flex;
    margin-bottom: -10px;
    flex-direction: column-reverse;
    position: relative;
    overflow: hidden;
}
.form-check-label{
    cursor: pointer;
    line-height: 26px;
    vertical-align: top;
    font-weight: 400;

}
.filterparam .form-check-label{
    width: 60px;
    color: #bbb;
    font-size: 0.9rem;
}
.filterparam.active .form-check-label{
    font-weight: 500;
    color:#6b6b6b;

}
button:focus,button:active,input:focus,input:active,a:focus,a:active,select:focus,select:active,label:focus,label:active {
    outline: none !important;
    box-shadow: none!important;
}
.btn:focus, .btn:active:focus, .btn.active:focus{
    outline:none!important;
    box-shadow:none!important;
}
.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
    outline:none!important;
    box-shadow:0!important;
}
.navbar-light .navbar-toggler{
    border: 0;
}
.navbar.shadw{
    /*box-shadow: 0 15px 50px 0px rgba(0, 0, 0, 0.1);*/
}
.page{
    padding: 100px 0 50px 0;
    text-align: center;
    vertical-align: middle;
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-size: 17px;
}
.wid-responsive{
    display: table;
}
.empresa-sel .select2-container{
    width: 200px!important;
}
.dark .select2-container--default .select2-selection--single{
    background-color: #18233b;
    color: #f5faff;
}
.dark .select2.select2-container .select2-selection--multiple .select2-selection__choice{
    font-size: 0.9rem;
    padding: 4px 8px;
    background: #314469;
    margin-right: 3px;
}
.dark .select2-container--default .select2-selection--multiple .select2-search__field{
    font-size: .9rem;
    padding: 4px;
}
.dark .select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
    display: block;
}
.dark .select2-container--default .select2-selection--multiple{
    background-color: #1c2741;
    padding: 6px 0 0 0;
    color: #f5faff;
    border:none;
}
.dark .select2-container--default .select2-selection--multiple .select2-search__field{
    width: 100%!important
}

.light .select2-container--default .select2-selection--single{
    background-color: #f5f5f5;
    color: #212529;
}
.dark .select2-container--default .select2-results__option[aria-selected=true]{
    background: rgba(54,61,74, 0.7);
}
.dark .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #314469;
    color: white;
}
.dark .select2-dropdown{
    border-color: rgba(255, 255, 255, 0.25);
    background-color: #111a2e;
    z-index: 50000;
}
.light .select2-dropdown{
    border-color: #ced4da;
    background-color: white;
}
.select2-results__option[aria-selected] {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.right-bts{
    margin: 0;
    width: 80px;
    text-align: right;
    right: 0;
    display: flex;
    justify-content: flex-end;
    display: flex;
    margin-right: 16px;
    flex-direction: row;
}
.dark bg-secondary{
    background-color: #4f504f;
}
.dark bg-success{
    background-color: #1e9b0c;
}
.bg-warning{
    color: #000000;
}
.dark bg-warning{
    background-color: #9b870c;
}
.dark bg-danger{
    background-color: #af2c2c;
}
.dark .color-secondary{
    color: #959595;
}
.dark .color-success{
    color: #28d90f;
}
.dark .color-warning{
    color: #ff8007;
}
.dark .color-danger{
    color: #dd3232;
}
.bt-dark{
    padding: 0 10px;
    display: flex;
    line-height: 40px;
    font-size: 1rem;
}
.badge{
    font-weight: initial;
}
.alarmes table .badge{
    font-size: 0.9rem;
}
.right-bts li{
    padding: 0 5px 0 0;
}
.flex{
    display: flex;
}

.not-poper{
    inset: -5px auto auto -5px!important;
}
.popover{
    position: absolute;
    top:-200px;
}
.popover-header{
    text-align: center;
}
.popover-body{
    padding: 0px;
}
.user-poper{
    inset: -5px auto auto -5px!important;
}
.dropdown-menu i{
    font-size: 1.3rem;
}
.navbar .dropdown-menu-end{
    position: absolute;
    right: 12px!important;
    top: 35px;
    z-index: 10;
}
.img-responsive{
    width: 100%;
}
.flex-column{
    display: flex;
    flex-direction: column;
}
.flex-center{
    justify-content: center;
    display: flex;
}
.flex-around{
    justify-content: space-around;
}
.flex-between{
    justify-content: space-between;
}
.btn.net{
    font-size: 1.5rem;
    line-height: 30px;
    padding: 5px 0 5px 15px;
    display: none;
}
.popover-arrow{
    left:6px!important;
}
.btn.net i{
    padding: 0 5px 0 0;
    font-size: 1.6rem;
}
.head-side{
    display: flex;
    justify-content: flex-start;
}
.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                          supported by Chrome, Edge, Opera and Firefox */
}
.analise .graf{
    height: 100%;
}
.configs.icon-list{
    display: grid;
    gap: 15px 15px;
    grid-template-columns: repeat(4, 1fr);
    padding: 2px;
    margin: 30px 30px;
}
.configs.icon-list .item{
    background-color: rgba(195, 193, 255, 0.05);
    box-shadow: 0 2px 20px -5px rgba(0, 0, 0, 0.11), 0 1px 1px 0 rgba(0, 0, 0, 0.07), 0 1px 3px 0 rgba(0, 0, 0, 0);
    padding: 10px 20px;
    height: 121px;
    font-size: 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    border-radius: 7px;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.2rem;
    width: 155px;
}
.configs.icon-list .item:hover{
    transform: scale(1.06);
    transition: all 100ms ease;
}
.configs.icon-list .item i{
    padding: 0 0 6px 0;
    font-size: 46px;
}
.modal .back{
    padding: 6px 22px 6px 16px;
    font-size: 20px;
    cursor: pointer;
}
.modal .back:hover, .modal .add:hover, .modal .close:hover, .modal .refresh:hover{
    transform: scale(1.2);
    transition: all 100ms ease;
}
.modal .add{
    position: absolute;
    top: 20px;
    right: 45px;
}
.modal .refresh{
    position: absolute;
    top: 20px;
    right: 75px;
    cursor: pointer;
}

.modal .close{
    position: absolute;
    top: 20px;
    right: 20px;
}
.navbar-client{
    margin-left: 0px;
    margin-top: 2px;
    margin-right: 5px;
    background: #18233b;
    border-radius: 3px;
}
.navbar-unidades{
    margin-left: 0px;
    margin-top: 2px;
}
.block{
    display: block;
    width: 100%;
}

.title{
    font-weight: 400;
}
.page.sigin #user {
    margin-bottom: -1px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.page.sigin #pass {
    margin-bottom: -1px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}
.progress{
    height: 4px;
    background-color: #51575d;
}

.progress-bar {
    background-color: #e1e1e1;
}
.alert-notify{
    display: flex;
    flex-direction: column;
    padding: 0.6rem 0.6rem;
    max-width: 300px;
    min-width: 150px;
}
.alert-notify.alert-info {
    color: #ffffff;
    background-color: #202f4b;
    border-color: #172e4b;
}
.alert-notify .title{
    font-weight: 400;
    line-height: 28px;
    font-size: 14px;
    margin-right: 17px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.alert-notify .close{
    float: right;
    position: absolute;
    right: 10px;
    top: 18px;
    font-size: 20px;
    height: 30px;
}
.hide{
    display: none!important;
}
.invisible{

    visibility: hidden;
}
.dark #register .form-control{
    border: 1px solid #323232;
    -webkit-box-shadow: 0 0 0 30px #141414 inset;
    background: #141414;
}
.light .form-control{
    background-color: #ededed;
    color: #212529;
    border-width: 0;
}
.dark .modal .form-control{
    background-color: #1c2741;
}
.dark .form-control{
    background-color: #111a2e;
    color: #FFF;
    border-width: 0;
}
.form-control{
    font-size: 0.85rem;
}
.form-select{
    font-size: 0.85rem;
}
.form-control>label{
    font-size: 0.85rem;
}
.form-floating>label{
    font-size: 0.85rem;
}
.light .form-select{
    background-color: #ededed;
    color:#212529;
    border-style: none;
}
.dark .form-select{
    background-color: #1c2741;
    color: #eee;
    border-style: none;
}


.light input{
    background-color: #ededed;
    caret-color: #333;
}
.dark input{
    background-color: #111a2e;
    caret-color: #f5f5f5;
    color:#FFF;
    border-style: none;
}
.card{
    padding: 1.5rem;
    border-radius: 8px;
    border: 0;
}
.modal .modal-body{
    overflow-x: hidden;
}
/*TABLES*/
.dark .table{
    color: #f5f5f5;
    font-size: 0.9rem;
}
.dark .table-hover>tbody>tr:hover>* {
    color: #f5f5f5;
}
.light .table{
    color: #212529;
}
.light .table thead{
    background: rgba(0, 0, 0, 0.05);
}
.dark .table thead{
    background: rgba(255, 255, 255, 0.05);
}
.dark .modal .table thead{
    background: #13192c;
}
.dark .modal .table thead tr th{
    background: #13192c;
}
.table th{
    font-weight: 500;
}
.table.table-sm>thead>tr>th{
    padding: 0.5rem 0.75rem!important;
}
.table-bordered>:not(caption)>*{
    border-width: 0;
    border-bottom-width:1px;
}

.table>:not(:last-child)>:last-child>*{
    border-bottom-color:inherit;
}
.dataTables_wrapper{
    /*background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 1rem 0;*/
}
.table>thead>*:not([role])>*{
    /*padding: 1rem 1rem!important;*/
    padding: 10px!important;
    cursor: default;
}
.table.nowrap>*>*>*{
    white-space: nowrap;
}
.light .table>*>*{
    border-color: #dee2e6;
}
.dark .table>*>*{
    border-color: #282e42;
}
.modal .table>:not(caption)>*>th{
    padding: .6rem .3rem;
    font-weight: 600;
    font-size: .9rem;
}
.modal .modal-body {
    padding: 0;
}
.modal .modal-body .item-selected{
    padding: 10px;
}
.modal .table>:not(caption)>*>td.nopad{
    padding: 0 0;
}
.form-switch .form-check-input{
    background-color: rgba(244,247,255,0.25);
    border-radius: 4px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.95%29'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
    background-color: #0d6efd;
}
.form-switch .form-check-input:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.95%29'/%3e%3c/svg%3e");
}

.form-switch .form-check-label {
    font-size: .8rem;
}

.table>:not(caption)>*>*{
    padding: 1rem 1rem;
    border-bottom-width:0px;
    box-shadow:none;
}
.table>:not(caption)>*>th{
    padding: .5rem .5rem;
}
.table>:not(caption)>*:last-child>*{
    border-bottom-width:1px;
}
.table-sm>:not(caption)>tr>td{
    padding: .5rem .5rem;
    vertical-align: middle;
}
.table-xs>:not(caption)>tr>td{
    padding: .25rem .5rem;
    font-size: 0.9rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
    overflow: hidden;
}
.table>:not(caption)>tr>td i{
    font-size: 1.3rem;
}
.table .no-cel{
    background: #FFF;
}
.table .cel-bordered{
    border-width:1px 0 1px 1px;
    border-color: #dee2e6;
    border-style: solid;
}
.medidores .icon-unid i{
    font-size: 2rem;
}
.widget .cal-sel{
    margin-left: 20px;
}
.text-center{
    text-align: center;
}
.text-right{
    text-align: right;
}
.text-left{
    text-align: left;
}
.no-overflow-x{
    overflow-x: hidden;
}

.dataTables_wrapper .row:first-of-type, .dataTables_wrapper .row:last-of-type{
    /*padding: 0 1rem;*/
}
.table.table-hover tbody tr{
    cursor: pointer;
}
.dataTables_wrapper .row .title{
    line-height: 2rem;
}
.table {
    --bs-table-striped-bg: #ededed;
    --bs-table-active-bg: rgba(0, 0, 0, 0.5);
    --bs-table-hover-bg: #e9ecef;
    margin-bottom: 0;
}
.light .table.table-hover thead tr th:not(.no-cel):hover,.light .table.table-hover tbody tr:hover{
    /*background: var(--bs-table-hover-bg)!important;*/
    background: rgba(0,0,0,0.06)!important;
}
.light .table-striped>tbody>tr{
    color: rgb(60,60,60);
}
.light .table-striped:not(.no-bg)>tbody>tr:nth-of-type(odd){
    --bs-table-accent-bg: none;
    background: rgba(0,0,0,0.02);
}
.light .table-striped:not(.no-bg)>tbody>tr:nth-of-type(even){
    --bs-table-accent-bg: none;
    background: rgba(0,0,0,0.04);
}
.dark .table.table-hover thead tr th:not(.no-cel):hover,.dark .table.table-hover tbody tr:hover{
    /*background: var(--bs-table-hover-bg)!important;*/
    background: rgba(255,255,255,0.05)!important;
    color: #FFF;
}
.dark .table-striped>tbody>tr{
    color: #f5f5f5;
}
.dark .table.table-hover>tbody>tr:hover>*{
    background: rgba(255,255,255,0.065);
    color: #FFF;
}
.dark .table-striped:not(.no-bg)>tbody>tr:nth-of-type(odd){
    --bs-table-accent-bg: none;
    background: rgba(255,255,255,0.02);
}
.dark .table-striped:not(.no-bg)>tbody>tr:nth-of-type(even){
    --bs-table-accent-bg: none;
    background: rgba(255,255,255,0.05);
}

.medidores .table{
    font-size: 0.95rem;
    line-height: 1.1rem;
}

/*.widget.fixed{
    bottom: 30px;
    top: 25px;
    width: calc(100% - 40px);
    position: absolute;
    overflow: hidden;
}*/
.autocomplete {
    /*the container must be positioned relative:*/
    position: relative;
    display: inline-block;
}
.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
    overflow: auto;
    max-height: 230px;
}
.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    text-align: left;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
}
.autocomplete-items div:hover {
    /*when hovering an item:*/
    background-color: #e9e9e9;
}
.autocomplete-active {
    /*when navigating through the items using the arrow keys:*/
    background-color: DodgerBlue !important;
    color: #ffffff;
}
.errors{
    font-size: 14px;
    color: red;
}
.errors li.error{
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: left;
}
.more{
    display: flex;
    justify-content: space-around;
    align-items: end;
    margin-right: 50px;
}
.tools{
    display: flex;
    justify-content: center;
    flex-direction: column;
    right: 25px;
    top: 25px;
    position: absolute;
}
.wid-head .title{
    line-height: 28px;
    vertical-align: middle;
    display: flex;
}
.wid-head .title .nav-link.active{
    border-bottom: 1px solid #bbb;
    color: #eee;
}
.wid-head .title .nav-link{
    cursor: pointer;
    /*height: 28px;*/
    border-bottom:none;
    margin-right: 15px;
    color: #777;
}
.wid-head .val{
    line-height: 28px;
    vertical-align: middle;
}
.wid-head .price{
    line-height: 28px;
    vertical-align: middle;
}
.btn-sm-like{
    border-radius: 4px;
    height: 31px;
}
.btn-group-sm>.btn, .btn-sm {
    padding: .20rem .5rem;
    font-size: .875rem;
    height: 1.8rem;
    border-radius: .2rem;
}
.tools a{
    padding: 6px 6px;
    margin-bottom: 5px;
    border-radius: 50%;
    z-index: 2;
}
.tree .unid.drop-hover{
    background: rgba(255, 255, 4, 0.3)!important;
}

.tools a.outline{
    background: #2a3758;
    box-shadow: 0px 0 2px 0px rgba(0, 0, 0, 0.5);
}
.ion-fw{
    display: inline-block;
    width: .8em;
    text-align: center;
}
/*MENU*/
.btmenu{
    margin-left: 10px;
}
.menu i{
    font-size: 2rem;
}
.menu .divider {
    padding: 10px 16px 8px;
    line-height: 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: .7rem;
}
.menu>li>a {
    display: block;
    padding: 0 20px;
    height: 52px;
    font-size: .9rem;
    font-weight: 400;
    line-height: 38px;
    /*text-overflow: ellipsis;
    overflow: hidden;*/
    white-space: nowrap;
    opacity: 0.3;
}
.menu>li.active>a {
    padding-left: 20px;
    font-weight: 400;
    opacity: 1;
}
.menu>li>a i{
    margin-right: 10px;
}
.menu>li:not(.active)>a:hover{
    opacity: 1;
}
.menu>li ul {
    visibility: hidden;
    opacity: 0;
    background-color: #f9f9f9;
    list-style: none;
    line-height: 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 400ms ease;
}
.menu li.open>ul {
    opacity: 1;
    visibility: visible;
    /*display: block;*/
    max-height: 550px;
}
.menu-itens{
    position: absolute;
    top: 0;
    bottom: 60px;
    width: 100%;
    overflow: auto;
}
.menu-cred{
    position: absolute;
    margin: 0 6px;
    bottom: 22px;
    padding: 0px 4px 4px 4px;
    width: 53px;
    overflow: hidden;
    text-align: center;
}

.menu>li>ul {
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}
.menu>li ul li.active>a {
    color: #4285f4;
}
.menu>li {
    /*overflow: auto;*/
}
.menu>li ul li>a {
    padding: 8px 15px 8px 49px;
    color: #696969;
    font-size: 13px;
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.menu>li ul li.active{
    background: #FFF;
}
.menu>li ul li:not(.active)>a:hover{
    background: #eee;
}
.menu>li ul li>a .badge {
    border-radius: 2px;
    font-weight: 500;
    line-height: 9px;
    font-size: .7rem;
    padding: 4px 7px;
    margin-left: 4px;
    margin-top: 1px;
}
.menu .badge-primary {
    color: #fff;
    background-color: #4285f4;
    border: transparent;
}
.float-right {
    float: right!important;
}
.float-left {
    float: left!important;
}
.flex-left {
    margin-right: auto;
}
.flex-right {
    margin-left: auto;
}
.map-tree{
    justify-content: center;
    position: absolute;
    bottom: 0;
    top: 65px;
    right: 0;
    left: 0;
    overflow: auto;
    touch-action: manipulation;
}
.inputper{
    max-width: 200px;
    width: 200px;
    text-align: center;
}
.inputper0{
    display: flex;
}
.inputper0 input{
    width: 135px;
}
.bold{
    font-weight: 400;
}
.dark .btn-form-control{
    background-color: #111a2e;
    color: #FFF;
}

.dark .btn-info{
    background-color: #28324b;
    color: #FFF;
}
.dark .btn-info.active{
    background-color: #3c4b71;
    color: #FFF;
}
.dark .btn-info:active{
    background-color: #3c4b71;
    color: #FFF;
}

.light .btn-form-control{
    background-color: #ededed;
    color: #212529;
}

.dark .btn-form-control.active{
    background-color: #252f45;
    color: #FFF;
}
.light .btn-form-control.active{
    background-color: #dbdbdb;
    color: #212529;
}

.light ::-webkit-calendar-picker-indicator {
    filter: invert(0);
}
.dark ::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

.light ::-webkit-scrollbar{
    width: 8px;
    height: 8px;
    background:  rgba(175,175,175,0.1);
}

.light ::-webkit-scrollbar-thumb {
    background:  rgba(175,175,175,0.2);
}

.light ::-webkit-scrollbar-corner {
    background:  rgba(175,175,175,0.1);
}

.dark ::-webkit-scrollbar{
    width: 8px;
    height: 8px;
    background:  rgba(175,175,175,0.05);
}

.dark ::-webkit-scrollbar-thumb {
    background:  rgba(175,175,175,0.1);
}

.dark ::-webkit-scrollbar-corner {
    background:  rgba(175,175,175,0.05);
}

/*Tree*/
.tree, .tree ul, .tree li {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.tree {
    margin: 0;
    text-align: center;
    width: 100%;
    height: 100%;
    transform-origin: 0 0;
}
.tree, .tree ul {
    display: table;
}
.tree ul {
    width: 100%;
}
.tree li {
    display: table-cell;
    padding: 10px 0;
    vertical-align: top;
}
/* _________ */
.tree li:not(.ui-draggable-dragging):before {
    outline: solid 1px #3f5779;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.tree li:first-child:before {
    left: 50%;
}
.tree li:last-child:before {
    right: 50%;
}
.dark .tree .unid{
    background: linear-gradient(325deg, #4c587e 0%, #2b3146 100%);
    box-shadow:0px 0px 9px 1px rgba(0, 0, 0, 0.55);
}
.light .tree .unid{
    background: linear-gradient(325deg, #ccd3eb 0%, #f0f4fa 100%);
    box-shadow:0px 0px 9px 1px rgba(255, 255, 255, 0.55);
}
.tree .unid {
    border-style: solid;
    border-width: 0;
    border-color: #bbb;
    border-radius: 5px;
    display: inline-block;
    margin: 10px 14px;
    padding: 0;
    border-radius: 50%;
    position: relative;
    min-width: 80px;
    min-height: 80px;
    max-width: 130px;
    max-height: 100px;
    box-sizing: border-box;
    transition: all .1s ease;
    cursor: pointer;
    font-size: 0.9rem;
    color: #FFF;
    transition: all .2s ease;
}
.dark .unid a{
    color: #FFF;
}
.light .unid a{
    color: #000;
}
.unid-alert{
    position: absolute;
    right: -10px;
    top: 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.unid-alert i{
    font-size: 36px;
}
.dark .unid.danger .unid-alert{
    opacity: 1;
    visibility: visible;
    color: #ff5446;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.5);
}
.dark .unid.warning .unid-alert{
    opacity: 1;
    visibility: visible;
    color: #ffdb4f;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.5);
}
.dark .exp-tipo0{
    color:#95ffa8!important;
}
.dark .exp-tipo1, .dark .exp-tipo2, .dark .exp-tipo3, .dark .exp-tipo4, .dark .exp-tipo5, .dark .exp-tipo6{
    color:#f6ff95!important;
}
.dark .exp-tipo7{
    color:#78dbf8!important;
}
.dark .exp-tipo10{
    color:#ffa751!important;
}

.light .unid.danger .unid-alert{
    opacity: 1;
    visibility: visible;
    color: #ff3f30;
}
.light .unid.warning .unid-alert{
    opacity: 1;
    visibility: visible;
    color: #ffdb4f;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}
.tree .unid .ct{
    top: 0;
    bottom: 0;
    padding: 0 6px;
    width: 100%;
    text-align: center;
    position: absolute;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.tree .unid .name {
    text-overflow: clip;
    white-space: nowrap;
    width: 80%;
    margin: 0 7px;
    overflow: hidden;
    font-weight: 500;
    font-size: 0.8rem;
}
.tree .unid .icon i{
    font-size: 2rem;
    line-height: 1.8rem;
}
.tree .unid .t,.tree .unid .c{
    font-size: .75rem;
    /*text-transform: uppercase;*/
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
}


.dark .popover {
    width: 240px;
    max-height: 248px;
    box-shadow: 3px 3px 11px 6px rgba(0, 0, 0, 0.25);
    background-color: #293350;
    --bs-popover-bg: #293350;
    --bs-popover-body-color:#eee;
}
.popover-arrow{
    margin-left: -16px;
    transform: scale(1.3);
}
.pop-carga-perc{

}
.pop-content{
}
.pop-content table{
    font-size: 0.8rem;
}
.pop-content table tr td:nth-child(2){
    font-weight: 500;
}
.pop-header{
    display: flex;
    justify-content: center;
    font-weight: 500;
    padding: 10px 10px 8px 10px;
}
.pop-header .foat-right{
    position: absolute;
    right: 10px;
}
.popover .pop-table tr td{
    padding: .1rem .6rem;
}
.pop-header i{
    cursor: pointer;
}
.pop-footer{
    display: flex;
    margin: 8px 10px 10px 10px;
    justify-content: center;
}
.pop-status{
    display: flex;
    justify-content: space-between;
}
.pop-footer .btn{
    width: 100%;
    max-width: 35px;
}
.bg-warning2{
    background: #ff7400;
}
.pop-table{
    width: 100%;
}
.pop-footer .btn:not(:last-child){
    margin-right: 8px;
}
.donut {
    position: absolute;
    top: -10px;
    left: -10px;
}

.donut svg {
    transform: rotate(-200deg);
    width:100px;
    height:100px;
}

.donut svg .circle {
    stroke-dasharray: 360;
    stroke-dashoffset: 360;
}

.donut.back svg .circle {
    animation: full 0.4s 1 forwards;
}
.dark .donut svg .circle {
    stroke: rgba(48, 55, 81, 0.6);
}
.light .donut svg .circle {
    stroke: rgba(174, 180, 195, 0.5);
}

.donut.top svg .circle {
    transition: all 1s;
}


@keyframes full {
    to {
        stroke-dashoffset: 187;
    }
}

@keyframes init {
    to {
        stroke-dashoffset: 300;
    }
}






/*.btn-primary{
    background: linear-gradient(325deg, #0b83df 0%, #6fb2fe 100%);
}
.btn-danger{
    background: linear-gradient(325deg, #e72222 0%, #ff7373 100%);
}
.btn-warning{
    background: linear-gradient(325deg, #c07e10 0%, #e8bb03 100%);
    color:#FFF!important;
}
.btn-info{
    background: linear-gradient(325deg, #0c9534 0%, #30d65f 100%);
}
.btn-primary:hover{
    background: linear-gradient(325deg, #0068b8 0%, #65a6ef 100%);
}
.btn-danger:hover{
    background: linear-gradient(325deg, #cf2222 0%, #f96868 100%);
}
.btn-warning:hover{
    background: linear-gradient(325deg, #bb7604 0%, #e7b006 100%);
}
.btn-info:hover{
    background: linear-gradient(325deg, #087b2a 0%, #2acc58 100%);
}*/
.btn:not(.btn-outline-secondary){
    border-width: 0;
    white-space: nowrap;
}
.no-cursor{
    cursor: default!important;
}
/* | */

.AxisRendererY{
    background: #bbb;
}


.tree ul:before,
.tree .unid:before{
    outline: solid 2px #3f5779;
    content: "";
    height: 8px;
    left: 50%;
    position: absolute;
}
.tree li.ui-draggable-dragging>.unid:before{
    outline: none;
}
.tree ul:before {
    top: -10px;
}
.tree .unid:before,
.tree .unid:before {
    top: -18px;
}

/* The root node doesn't connect upwards */
.tree > li {
    margin-top: 0;
    padding: 0 20px;
}
.tree > li:before,
.tree > li:after,
.tree > li > .unid:before,
.tree > li > .unid:before {
    outline: none!important;
}

/*Multiple SelectList*/
.hidden-search {
    display: none !important;
}

.vsb-menu{
    cursor:pointer;
    z-index:1000;
    display:block;
    visibility: hidden;
    position:absolute;/*Don't change*/
    border:1px solid #B2B2B2;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
    /*border-radius:4px;*/
    font-size : 11px;
}

.vsb-js-search-zone{
    position: absolute;
    z-index: 1001;
    width: 90%;
    box-sizing: border-box;
}

.vsb-js-search-zone input{
    border: 0;
    margin-left: 10px;
    width: 100%;
    font-size: 1rem;
    height: 30px !important;
}

.vsb-main{
    position: relative;/*Don't change*/
    display: inline-block;
    vertical-align: middle;
    text-align:left;
}

.vsb-menu li{
    display: list-item;
    font-size: 12px;
    background-color: #fff;
    min-height:1.4em;
    padding: 0.2em;
}

.vsb-menu li:hover {
    background: #3b7de5;
    color: white;
}

.vsb-menu ul{
    user-select:none;
    list-style:none;
    white-space: nowrap;
    margin:0px;
    color: #333;
    cursor:pointer;
    overflow-y:auto;
}

.filter input[type="datetime-local"]{
    padding: .375rem .5rem;
}

li.disabled{
    cursor:not-allowed;
    opacity:0.3;
    background-color: #999;
}

.vsb-main button{
    min-width: 205px;
    width: 221px;
    text-align: left;
    z-index: 1;
    margin-left: -1px;
    height: 38px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    /*line-height:20px;
    font-size:14px;
    padding:6px 12px;*/
}

.vsb-main button.disabled{
    cursor:not-allowed;
    opacity:0.65;
}

.vsb-main .title {
    margin-right: 6px;
    user-select:none;
}

.vsb-main li:hover {
    background: #3b7de5;
    color: white;
}

.vsb-main ul{
    white-space: nowrap;
}

.vsb-menu li {
    font-size: 16px;
    background-color: #fff;
    min-height:28px;
    padding: 7px 10px 5px 28px;
}

.vsb-menu li.grouped-option {
    font-weight: bold;
    font-size: 15px;
    padding-left: 5px;
}

.vsb-menu :not(.multi) li.active::before {
    content: "";
    display: inline-block;
    font-size: inherit;
    float:left;
    margin-left:-16px;
    transform: rotate(45deg);
    height: 10px;
    width:  5px;
    border-bottom:  3px solid black;
    border-right:  3px solid black;
    border-radius:2px;
}

.vsb-menu .multi li {
    font-size: 14px;
    /*background-color: #fff;*/
    min-height:1.4em;
    /*padding: .375rem .75rem .375rem 2rem;*/
    padding: 0.2rem .75rem 0.2rem 2rem;
    /*padding: 0.2em 2em 0.2em 26px;*/
}

.vsb-menu .multi li.grouped-option {
    font-weight: bold;
    font-size: 15px;
    padding-left: 5px;
}

.vsb-menu .multi li:not(.grouped-option)::before{
    content: "";
    display: inline-block;
    font-size: inherit;
    float:left;
    font-weight:bold;
    margin-left:-22px;
    margin-right:2px;
    border : 1px solid;
    border-radius : 3px;
    padding : 7px;
    margin-top:0px;
    color:black;
}
.vsb-menu .multi li:not(.grouped-option)::before:hover{
    color:white;
}

.vsb-menu .multi li.active::after {
    content: "";
    display: inline-block;
    font-size: inherit;
    color: #333;
    float:left;
    margin-left:-18px;
    display: inline-block;
    transform: rotate(45deg);
    margin-top:1px;
    height: 8px;
    width:  5px;
    border-bottom: 3px solid black;
    border-right:  3px solid black;
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}


/* Cor de fundo do autocomplete */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #141414 inset;
    transition: background-color 5000s ease-in-out 0s;
}

/* Cor do texto do autocomplete */
input:-webkit-autofill {
    -webkit-text-fill-color: #FFF !important;
    transition: background-color 5000s ease-in-out 0s;
}


/*--------------------*/

/*fraco
.tree:not(.edit) .unid.success{
    background: linear-gradient(325deg, #0090ff 0%, #85caff 100%);
}
.tree:not(.edit) .unid.info{
    background: linear-gradient(325deg, #00a931 0%, #56db7b 100%);
}
.tree:not(.edit) .unid.warning{
    background: linear-gradient(325deg, #e79919 0%, #f9ce1d 100%);
}
.tree:not(.edit) .unid.danger{
    background: linear-gradient(325deg, #ff3030 0%, #ff9f9f 100%);
}
*/

/*.tree:not(.edit) .unid.success{
    background: linear-gradient(325deg, #0b83df 0%, #6fb2fe 100%);
}
.tree:not(.edit) .unid.info{
    background: linear-gradient(325deg, #0c9534 0%, #30d65f 100%);
}
.tree:not(.edit) .unid.warning{
    background: linear-gradient(325deg, #ca820a 0%, #ffce06 100%);
}
.tree:not(.edit) .unid.danger{
    background: linear-gradient(325deg, #e72222 0%, #ff7373 100%);
}*/



/*.tree:not(.edit) .unid.success.update, .tree:not(.edit) .unid.success:hover{
    background: linear-gradient(325deg, #0068b8 0%, #65a6ef 100%);
}
.tree:not(.edit) .unid.info.update, .tree:not(.edit) .unid.info:hover{
    background: linear-gradient(325deg, #087b2a 0%, #2acc58 100%);
}
.tree:not(.edit) .unid.warning.update, .tree:not(.edit) .unid.warning:hover{
    background: linear-gradient(325deg, #bb7604 0%, #e7b006 100%);
}
.tree:not(.edit) .unid.danger.update, .tree:not(.edit) .unid.danger:hover{
    background: linear-gradient(325deg, #cf2222 0%, #f96868 100%);
}*/

.tree .unid.blink{
    animation: bg-blink 1s infinite!important;
}


.light .tree .unid:hover  {
    background: linear-gradient(325deg, #b1b9d6 0%, #d9e2ef 100%);
}
.light .tree.edit .unid{
    background: linear-gradient(325deg, #b1b9d6 0%, #d9e2ef 100%);
}
.light .tree:not(.edit) .unid.update{
    background: linear-gradient(325deg, #70a6eb 0%, #d9e2ef 100%);
}

.dark .tree .unid:hover {
    background: linear-gradient(325deg, #6170a1 0%, #424c70 100%);
}
.dark .tree.edit .unid{
    background: linear-gradient(325deg, #6170a1 0%, #424c70 100%);
}
.dark .tree:not(.edit) .unid.update{
    background: linear-gradient(325deg, #54668b 0%, #424c70 100%);
}


.ui-draggable-handle{
    -ms-touch-action:none;
    touch-action:none
}

.bg-sigin:after {
    filter: blur(50px);
}

.radar {
    --angle: 0turn;
    /*width: 60vmin;
    height: 50vmin;*/
    background-image: conic-gradient(from var(--angle),  #131829, #131829 50%, #294469), conic-gradient(from var(--angle), transparent 20%, #08f, #f03);
    background-position: center center;
    background-repeat: no-repeat;
    animation: bg-spin 5s linear infinite;
}

@media print {
    body, html{
        /*zoom: 0.7;*/
        background: #FFF!important;
        color: rgb(60,60,60)!important;
        overflow-y: auto!important;
        position: inherit!important;
        height: auto!important;
    }
    .side.left-side{
        display:none;
    }
    a:hover,.light a:active {
        color: rgb(50,50,50)!important;
    }

    .navbar{
        background-color: #FFF!important;
    }
    .form-control{
        background-color: #ededed!important;
        color: #212529!important;
        border-width: 0!important;
    }
    .form-select{
        background-color: #ededed!important;
        color:#212529!important;
        border-style: none!important;
    }
    input{
        background-color: #ededed!important;
        caret-color: #333!important;
    }
    .table{
        color: #212529!important;
    }
    .table thead{
        background: rgba(0, 0, 0, 0.05)!important;
    }
    .table.table-hover thead tr th:not(.no-cel):hover,.light .table.table-hover tbody tr:hover{
        /*background: var(--bs-table-hover-bg)!important;*/
        background: rgba(0,0,0,0.06)!important;
    }
    .table>*>* {
        border-color: #eee!important;
    }
    .table-striped>tbody>tr{
        color: rgb(60,60,60)!important;
    }
    .table-striped:not(.no-bg)>tbody>tr:nth-of-type(odd){
        --bs-table-accent-bg: none!important;
        background: rgba(0,0,0,0.02)!important;
    }
    .btn-form-control{
        background-color: #ededed!important;
        color: #212529!important;
    }
    .btn-form-control.active{
        background-color: #dbdbdb!important;
        color: #212529!important;
    }
    .tree .unid{
        background: linear-gradient(325deg, #ccd3eb 0%, #f0f4fa 100%)!important;
        box-shadow:0px 0px 9px 1px rgba(255, 255, 255, 0.55)!important;
    }
    .unid a{
        color: #000!important;
    }

    .select2-container--default .select2-selection--single{
        background-color: #f5f5f5!important;
        color: #212529!important;
    }

    .select2-dropdown{
        border-color: #ced4da!important;
        background-color: white!important;
    }
    .widget.filtro{
        display: none;
    }
    .widget.analise{
        left:0;
        width: 100%;
    }
    .widget{
        box-shadow: none!important;
    }
    .widget .line .item .title-card>div:not(:first-child){
        background: #efefef!important;
        border-bottom: 2px solid #ced2da!important;
    }
    .widget .line{
        /*page-break-after: always;*/
    }
    .inner-table table thead th{
        background: #efefef!important;
    }
    .energia .det .item {
        border: 1px solid #cacaca!important;
    }
    .widget:not(.no-bg){
        background-color: #fff!important;
    }
    .content{
        overflow: hidden!important;
        position: initial!important;
        margin-top: 0px;
    }
    .table.widget-table{
        border-left: 1px solid #ddd!important;
    }
    .widget .line .item.tipo1{
        flex-direction: column!important;
    }
    .energia .det .item:not(.no-table){
        height: auto!important;
    }
    .widget .line .item:not(.no-table) .inner-table{
        height: auto!important;
    }
    .widget .line .item:not(.no-table)>.right{
        width: auto!important;
    }
    .widget .line .item>.left{
        width: 100%!important;
    }
    .energia .line{
        margin: 0!important;
        margin-top: 20px!important;
    }
    .widget .wid-head{
        margin: 0!important;
        background: #ededed!important;
        border-radius: 6px!important;
        padding: 10px 10px!important;
    }
    .energia .det .item{
        margin: 0!important;
    }
    .energia .det .chart{
        width: 100%!important;
    }
    .energia .det .chart div{
        width: 100%!important;
    }
    .energia .det .chart canvas{
        width: 100%!important;
    }
    .widget .line .item .title-card{
        width: 100%!important;
    }
    .table.widget-table th{
        position: initial!important;
    }
    thead {
        display: table-row-group!important;
    }
    tfoot {
        display: table-row-group!important;
    }
    tr {
        page-break-inside: avoid!important;
    }
    .top-side{
        left: 20px!important;
        top: 3px!important;
        position:relative!important;
    }
}

@property --angle {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0turn;
}

@keyframes bg-spin {
    to {
        --angle: 1turn;
    }
}

@keyframes bg-blink{
    0%		{
        background: #aaa;
    }
    50%		{
        background: #666;
    }
    100%	{
        background: #aaa;
    }
}

@media (max-width: 767px){
    .card{
        width: calc(100% - 60px);
    }
    .alert-notify{
        width: calc(100% - 60px);
        max-width: none;
    }
    .btn.net{
        display: inline-block;
    }
    .top-side{
        top: 50px;
        position: absolute;
        width: 100%;
        height: 40px;
        padding: 0;
        left: 0;

    }
    .dark .top-side{
        /*background: #1c273e;*/
    }
    .light .top-side{
        /*background: #f5f5f5;*/
    }
    .right-side{
        top: 50px;
    }
    .padd{
        padding: 12px 10px;
    }
    .content{
        left: 0;
        top: 90px;
    }
    body.menu-fixed .content{
        left: 0;
    }
    body, html{
        font-size: 14px;
    }
    .navbar-toggler i {
        font-size: 1.7rem;
    }
    .navbar {
        height: 50px;
        z-index: 9;
    }
    .left-side{
        top: 90px;
        display: none;
    }
    .btn-sm-like{
        border-radius: 3px;
        height: 27px;
    }
    .navbar .navbar-brand{
        margin: 0 1rem 0 0;
        width: auto;
        text-align: left;

    }
    .navbar.shadw{
        box-shadow: none;
    }
    .menu-cred{
        display: none;
    }
    .widget{
        margin-bottom: 15px;
    }
    .fullpage {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        padding: 1rem .6rem;
    }
    .map-tree{
        justify-content: flex-start;
    }

    body.menu-fixed .left-side{
        left:-200px;
    }
    ::-webkit-scrollbar{
        width: 2px;
        height: 2px;
    }
}

@page {
    size: A4 portrait;
}



