@import url('../fonts_new/stylesheet.css');

body {
  margin: 0;
  padding: 0;
  background: var(--bg-light-blue);
  color: var(--color-dark-gray);
  font-family: 'Myriad Pro';
  font-weight: 400;
}

:root {
  --bg-dark-gray: #e5e5e5;
  --bg-light-blue: #F1F3F9;
  --bg-white-background: #ffffff;
  --bg-black-background: #000000;
  --color-black: #000000;
  --color-black-op-80: #000000cc;
  --color-black-op-60: #00000099;
  --color-black-op-30: #0000004d;
  --color-white: #ffffff;
  --color-dark-gray: #515151;
  --color-dark-gray-op80: #515151cc;
  --color-dark-gray-op60: #51515199;
  --color-dark-gray-op30: #5151514d;
  --color-light-gray: #89919C;
  --color-table-lightgray: #515151;
  --primary-button-bg: #0097E0;
  --primary-button-bg-op-80: #0097e0cc;
  --primary-button-bg-op-60: #0097e099;
  --primary-button-bg-op-30: #0097e099;
  --secondary-button-bg: #54c3f1;
  --secondary-button-bg-80: #54c3f1cc;
  --secondary-button-bg-60: #54c3f199;
  --secondary-button-bg-30: #54c3f14d;
  --color-link-text: #0097E0;
  --border-table-gray: #E3E3E3;
  --border-color: #C6C6C6;
  --theme-color-orange: #e46b08;
  --theme-color-orange-op80: #e46b08cc;
  --theme-color-orange-op60: #e46b0899;
  --theme-color-orange-op30: #e46b084d;
  --theme-input-disabled-bg: #F5F5F5;
  --theme-input-disabled-border: #ff00004d;
  --theme-danger-color: #a8252e;
  --theme-danger-color-op80: #a8252ecc;
  --theme-danger-color-op60: #a8252e99;
  --theme-danger-color-op30: #a8252e4d;
  --theme-warning-color: #fbba00;
  --theme-warning-color-op80: #fbba00cc;
  --thme-warning-color-op60: #fbba0099;
  --theme-warning-color-op30: #fbba004d;
  --theme-success-color: #008634;
  --theme-success-color-op80: #008634cc;
  --theme-success-color-op60: #00863499;
  --theme-sussess-color-op30: #0086344d;
  --theme-lime-green-color: #c8d200;
  --theme-lime-green-color-op80: #c8d200cc;
  --theme-lime-green-color-op60: #c8d20099;
  --theme-lime-green-color-op30: #c8d2004d;
  --theme-light-green: #68b022;
  --theme-light-green-op80: #68b022cc;
  --theme-light-green-op60: #68b02299;
  --theme-light-green-op30: #68b0224d;
  --theme-purple-color: #8c1d76;
  --theme-purple-color-op80: #8c1d76cc;
  --theme-purple-color-op60: #8c1d7699;
  --theme-purple-color-op30: #8c1d764d;
  --theme-violet-color: #512078;
  --theme-violet-color-op80: #512078cc;
  --theme-violet-color-op60: #51207899;
  --theme-violet-color-op30: #5120784d;
  --theme-cooling-color: #40C8F4;
  --theme-heating-color: #A8262D;
  --theme-indoor-power: #FDD579;
  --theme-outdoor-temp: #EA893C;
  --theme-standby-power-color: #0097E0;
  --theme-target-color: #059B54;
  --font-az-42: 42px;
  --font-az-38: 38px;
  --font-az-28: 28px;
  --font-az-25: 25px;
  --font-az-24: 24px;
  --font-az-20: 20px;
  --font-az-18: 18px;
  --font-az-17: 17px;
  --font-az-16: 16px;
  --font-az-15: 15px;
  --font-az-14: 14px;
}

.theme-primary-btn-color {
  border-color: var(--primary-button-bg);
  background-color: var(--primary-button-bg);
  color: var(--color-white);
  width: auto;
  min-width: 100px;
  border-radius: 50px;
  line-height: normal;
  font-size: var(--font-az-14);
  text-transform: capitalize;
  font-weight: 500;
}

.theme-primary-btn-color:hover,
.theme-primary-btn-color:focus,
.theme-primary-btn-color:active,
.theme-primary-btn-color.active,
.theme-primary-btn-color:active {
  background: var(--primary-button-bg) !important;
  color: var(--color-white) !important;
}

.theme-secondary-btn-color {
  border-color: var(--color-dark-gray);
  background-color: var(--color-dark-gray);
  color: var(--color-white);
  width: auto;
  min-width: 100px;
  border-radius: 50px;
  line-height: normal;
  font-size: var(--font-az-14);
  text-transform: capitalize;
  font-weight: 500;
}

.theme-secondary-btn-color:hover,
.theme-secondary-btn-color:focus,
.theme-secondary-btn-color:active,
.theme-secondary-btn-color.active,
.theme-secondary-btn-color:active {
  background: var(--color-dark-gray) !important;
  color: var(--color-white) !important;
}

.theme-secondary-alt-btn-color {
  border-color: var(--primary-button-bg);
  background-color: var(--bg-white-background);
  color: var(--primary-button-bg);
  width: auto;
  min-width: 100px;
  border-radius: 50px;
  line-height: normal;
  font-size: var(--font-az-14);
  text-transform: capitalize;
  font-weight: 500;
}

.theme-secondary-alt-btn-color i,
.theme-secondary-btn-color i {
  display: none;
}

.theme-secondary-alt-btn-color:hover,
.theme-secondary-alt-btn-color:focus,
.theme-secondary-alt-btn-color:active,
.theme-secondary-alt-btn-color.active,
.theme-secondary-alt-btn-color:active {
  border-color: var(--primary-button-bg) !important;
  background-color: var(--bg-white-background) !important;
  color: var(--primary-button-bg) !important;
}

.theme-link-btn-color {
  border: none;
  background-color: var(--bg-white-background);
  color: var(--primary-button-bg);
  line-height: normal;
  font-size: var(--font-az-14);
  text-transform: capitalize;
  text-decoration: underline !important;
  font-weight: 400;
}

.theme-danger-btn-color {
  border-color: var(--theme-color-orange);
  background-color: var(--theme-color-orange);
  color: var(--color-white);
  width: auto;
  min-width: 100px;
  border-radius: 50px;
  line-height: normal;
  font-size: var(--font-az-14);
  text-transform: capitalize;
  font-weight: 500;
}

.theme-danger-btn-color:hover , .theme-danger-btn-color:focus, .theme-danger-btn-color:active, .theme-danger-btn-color.active , .theme-danger-btn-color:active{
  border-color: var(--theme-color-orange) !important;
  background-color: var(--theme-color-orange) !important;
  color: var(--color-white) !important;
}

.form-control {
  color: var(--color-dark-gray-op80);
}

* {
  box-sizing: border-box;
}

.help-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 200ms;
  display: none;
}

.btn {
  padding: 9px 15px 9px;
  font-size: 14px;
}

.help-popup {
  border-radius: 6px;
  margin: 10px auto;
  /* padding: 10px; */
  background: var(--bg-white-background);
  border: 1px solid #666;
  width: 99%;
  /* box-shadow: 0 0 50px rgb(0 0 0 / 50%); */
  position: relative;
}

.help-popup-close {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 10px;
  right: 10px;
  opacity: 0.8;
  transition: all 200ms;
  font-size: 24px;
  color: #666;
}

.help-popup-head {
  height: 35px;
}

.help-popup-content {
  height: 94vh;
  overflow-y: scroll;
  padding: 10px;
  overflow-x: hidden;
}

.help-popup-content .btn {
  color: var(--color-white) !important;
}

.help-popup-content a {
  color: var(--primary-button-bg);
  /* text-decoration: underline; */
  border-color: transparent;
}

.daterangepicker {
  z-index: 9999;
}

.top-header {
  background: #918f90;
  padding: 5px 20px;
}

.icon h1 {
  color: var(--color-white);
  margin: 0;
  font-size: 24px;
  line-height: 30px;
}

.icon img {
  vertical-align: middle;
  margin-right: 10px;
}

.section-one {
  padding: 20px 10px 0 20px;
}

.img-content-wrap {
  display: flex;
  flex-flow: row;
}

.section-one .img-box {
  position: relative;
  border: 5px solid #ddd;
}

.icon-box {
  position: absolute;
  top: 3%;
  width: 100%;
}

.icon-box .icon1 {
  position: absolute;
  top: 0;
  padding: 5px 0 0 10px;
  z-index: 9;
}

.icon1-red {
  color: var(--theme-color-orange) !important;
}

.icon-box .icon1 .fa {
  font-size: 14px;
}

.icon-box .icon2 {
  position: absolute;
  right: 10px;
  top: 0;
  text-align: right;
}

.icon-box .icon2 p {
  margin-bottom: 5px;
}

.icon-box .icon2 .fa {
  font-size: 30px;
  /*color: green;*/
}

.rating.gold {
  color: #da5c19;
}

.rating.platinum {
  color: #e5e4e2;
}

.content-box {
  position: absolute;
  width: 100%;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  background-color: rgba(233, 236, 242, 0.2);
  bottom: 0;
  left: 0;
  color: var(--color-white);
  /* margin-left: 10px; */
  padding: 0 10px;
}

.content-box .title {
  text-align: left;
}

.content-box .text {
  text-align: left;
}

.content-box .text p {
  margin-bottom: 0;
  word-break: break-all;
}

.buiding-profile .right-side {
  padding-left: 10px;
  margin-left: 0px !important;
}

.buiding-profile .right-side .content-list {
  padding: 0 0 10px 0;
}

.title h1 {
  margin-bottom: 0;
  color: var(--color-white);
  font-size: 16px;
  margin-top: 0px;
  line-height: 23px;
}

.content-list .text {
  padding-left: 10px;
  /*  font-size: 14px;*/
}

.content-list .text1 {
  padding-left: 80px;
  /*  font-size: 14px;*/
}

.content-list .text-style {
  color: var(--theme-danger-color);
}

.section-two .tab {
  margin-top: 30px;
  padding: 0 20px;
}

.section-two ul {
  display: flex;
  border-top: 2px solid var(--border-color);
  padding: 15px 0;
}

.section-two ul li {
  display: inline-block;
  color: var(--color-white);
  padding: 6px 12px;
  margin-bottom: 15px;
  cursor: pointer;
  line-height: 42px;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid var(--border-color);
  width: 100%;
}

.section-two ul li a {
  text-decoration: none;
  color: var(--color-black);
  text-align: center;
  display: block;
  font-weight: bold;
}

.section-two ul li.active {
  border: 2px solid var(--border-color);
  border-bottom: none;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.section-two .content-box div {
  display: none;
}

.section-two .content-box div:first-child {
  display: inline-block;
}

.section-two .tab-content {
  display: none;
  margin-left: 40px;
}

.navbar {
  display: block;
  flex-wrap: nowrap;
}

.pagination {
  justify-content: end;
  align-items: center;
}

.pagination li a {
  color: #606060;
  font-size: var(--font-az-14);
  padding: 0.4em .8em;
}

.pagination .active a {
  border: none;
  color: var(--primary-button-bg);
  background-color: transparent;
}

.pagination li a:hover {
  color: var(--color-white);
  border: 1px solid var(--primary-button-bg);
  background-color: var(--primary-button-bg) !important;
}

.nav-tabs-custom {
  padding: 20px 10px 0 20px;
}

.buiding-profile .nav-tabs-custom {
  margin-bottom: 0px;
  background: var(--bg-white-background);
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  box-shadow: none;
  border-radius: 0 0 20px 20px;
  margin-top: 2%;
  /* border-top: 1px solid var(--border-table-gray); */
}

/* .buiding-profile .nav-tabs-custom>.nav-tabs>li:first-of-type>a.active {
  border-left-color: #f4f4f4;
} */

.buiding-profile .nav-tabs-custom>.manage_project_nav>li>a,
.buiding-profile .nav-tabs-custom>.result_nav>li>a {
  /*    padding: 11px 40px;*/
  border-top: none !important;
}

.buiding-profile .manage_project_nav {
  border-bottom: none;
}

.buiding-profile .manage_project_nav li a.active {
  position: relative;
  border-top: none !important;
}

.buiding-profile .manage_project_nav li a.active:after {
  /* content: "";
  position: absolute;
  border-left: 10px solid transparent !important;
  border-top: 10px solid white;
  bottom: -6px;
  left: 52%;
  transform: rotate(315deg) translate(-50%, -50%);
  -webkit-transform: rotate(315deg) translate(-50%, -50%); */
}

#customer_result .result_nav li a.active {
  border-top: 1px solid #f4f4f4 !important;
  border-left: 1px solid #f4f4f4 !important;
  border-right: 1px solid #f4f4f4 !important;
  border-bottom: none !important;
}

#customer_result .result_nav li a.active:hover {
  border-top: 1px solid #f4f4f4 !important;
  border-left: 1px solid #f4f4f4 !important;
  border-right: 1px solid #f4f4f4 !important;
  border-bottom: none !important;
}

#customer_result .result_nav li a:hover {
  border: 1px solid transparent !important;
  border-top: none !important;
}

.buiding-profile img {
  max-width: none;
  width: 100%;
}

.buiding-profile .img-content-wrap .col-lg-3 {
  padding-left: 0px;
}

.buiding-profile .fa-cog,
.fa-camera {
  color: var(--color-white);
}

.buiding-profile .fa-pagelines {
  font: 30px/1 FontAwesome;
}

.user-panel>.image>img {
  max-width: none;
}

#spinnerLoader {
  background: rgba(255, 255, 255, 0.5) none repeat scroll 0 0;
  cursor: pointer;
  display: block;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999999;
  text-align: center;
  vertical-align: center;
}

.toploader {
  margin: 23% 0;
}

/********* Start Building List**************/

.buiding-list .filter-div {
  border-bottom: 1px solid #f4f4f4;
}

.buiding-list .tab-div h3 {
  border-bottom: 1px solid #455a64;
  margin: 0;
}

.buiding-list .tab-div .tab-list-view.active {
  color: var(--secondary-button-bg);
}

.buiding-list .box-header {
  border-bottom: 0;
}

.buiding-list .filter-div .col-form-label {
  text-align: right;
}

/********* End Building List**************/

/************ Energy Dashboard Chart ****************/

.energy_management .chart,
.energy_management #vrv_cop_chart,
.energy_management .amcharts-chart-div,
.energy_management svg:not(:root) {
  overflow: inherit !important;
}

/********* Start Building Card List**************/

* {
  margin: 0;
  /* padding: 0; */
  box-sizing: border-box;
}

#card-list .card {
  position: relative;
  margin-bottom: 0;
}

.card-opecity {
  position: absolute;
  width: 100%;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background-color: rgba(233, 236, 242, 0.2);
  bottom: 0;
  left: 0;
  color: var(--color-white);
  /* margin-left: 10px; */
  padding: 0 10px;
}

h5.title {
  color: var(--color-white);
  margin-bottom: 0;
  /*padding-left: 13px;*/
}

p.text {
  color: var(--color-white);
  margin-bottom: 0;
}

.icon-box {
  position: absolute;
  top: 0;
  width: 100%;
}

.icon1 {
  position: absolute;
  top: 0;
  padding: 0 0 0 10px;
  color: var(--primary-button-bg);
}

.icon2 {
  position: absolute;
  top: 0;
  padding: 0 0px 0 315px;
  color: var(--primary-button-bg);
  text-align: center;
}

.icon-box .fa {
  font-size: 32px;
}

.card-body h5 a {
  color: var(--color-link-text);
}

h5.card-title {
  font-size: 14px;
}

h5.card-sub-title1 {
  font-size: 14px;
  color: #926dde;
  margin-bottom: 6px;
}

h5.card-title2 {
  font-size: 14px;
  margin-bottom: 6px;
}

h5.card-sub-title2 {
  font-size: 14px;
  margin-bottom: 6px;
  color: #926dde;
}

h5.card-sub-title3 {
  font-size: 14px;
  color: var(--theme-color-orange-op80);
  margin-bottom: 6px;
}

h5.card-sub-title4 {
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--primary-button-bg);
}

h5.card-sub-title5 {
  font-size: 14px;
  color: #f96197;
  margin-bottom: 6px;
}

i.fa.fa-television {
  padding-right: 12px;
  font-size: 20px;
}

i.fa.fa-television.tv-icon {
  color: var(--primary-button-bg);
}

.card-body {
  padding: 15px 16px 5px 12px;
}

.row.second-row {
  margin-top: 30px;
}

.card {
  border: none;
  display: block;
}

.grid-3 {
  border: 1px solid var(--border-color);
}

#card-list .fa-pagelines {
  font: 30px/1 FontAwesome;
}

#card-list .card-title {
  line-height: 2;
  padding: 0;
  border-bottom: 0;
  color: var(--primary-button-bg);
}

#card-list .card-title:nth-child(2) {
  color: var(--color-light-gray);
}

#card-list .card-img-top {
  height: 275px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

#card-list .card-box {
  margin-bottom: 15px;
}

.icon2-white {
  color: var(--color-white);
}

/********* End Building Card List**************/

/********* home page sec ***********************/

.content .col-xl-2.col-md-2.col-2 {
  display: flex;
  padding-bottom: 25px;
  min-height: 187px;
}

.small-box>.small-box-footer {
  position: absolute;
  text-align: right;
  bottom: 0;
  padding: 3px 20px 10px;
  color: var(--color-white);
  color: rgba(255, 255, 255, 0.8);
  display: block;
  z-index: 10;
  background: rgba(0, 0, 0, 0.1);
  text-decoration: none;
  width: 100%;
}

.box.box-inverse.box-info {
  background: #c0e7c3;
}

h1.font-light {
  color: var(--color-black);
}

.text-white.mb-10 {
  color: var(--primary-button-bg) !important;
}

.box.box-inverse.box-info.bg-pink {
  background: #f3c0c0;
}

.box.box-inverse.box-info.bg-light-orange {
  background: #efe4c0;
}

.small-box.bg-purple .inner {
  /* padding: 10px 19px 10px 10px; */
}

.small-box.bg-blue .inner {
  /* padding: 10px 19px 10px 10px; */
}

.content-wrapper {
  background-color: var(--bg-light-blue);
}

.skin-blue .content {
  background: var(--bg-light-blue);
}

.skin-blue .dashboard-content {
  display: inline-block;
  width: 100%;
}

/*.box.box-inverse.box-info .box-body {
padding: 10px 10px 10px 5px;
}*/

.box.box-inverse.box-info.bg-pink .box-body {
  padding: 10px 10px 10px 5px;
}

.box.box-inverse.box-info.bg-light-orange .box-body.text-center {
  padding: 10px 10px 10px 5px;
}

.box.box-inverse.box-info .box-body.text-center span {
  font-size: 15px;
  color: var(--color-black);
  float: right;
}

li.box-label.circle-icon::before {
  content: "\f111";
  font-family: FontAwesome;
  font-size: 20px;
  padding-right: 5px;
  color: var(--theme-color-orange);
}

li.calender-icon a::before {
  content: "\f073";
  font-family: FontAwesome;
  font-size: 15px;
  color: var(--color-black);
  margin-right: 5px;
}

li.calender-icon a {
  color: var(--primary-button-bg) !important;
}

ul.list-style-none li a {
  display: initial;
  padding: 10px 0px;
}

.list-style-none li.box-label a.see-all {
  padding-bottom: 25px;
  text-decoration: underline;
  color: var(--primary-button-bg) !important;
  float: right;
}

ul.list-style-none li {
  list-style: none;
  padding-bottom: 2px;
}

li.calender-icon+li {
  clear: both;
}

h1.font-light i.fa.fa-bell {
  padding-left: 3px;
}

.main-footer {
  border-top: none;
}

ul.list-style-none.list-style {
  margin-top: 5px;
}

li.box-label.blue-circle-icon::before {
  content: "\f111";
  font-family: FontAwesome;
  font-size: 20px;
  padding-right: 5px;
  color: var(--primary-button-bg-op-30);
}

.box.box-inverse.box-info .fa-building:before {
  /* content: "\f1ad"; */
  content: "\f073";
}

.box.box-inverse.box-info i.fa.fa-city::before {
  content: "\f24d";
}

.icon.weather-icon {
  position: absolute;
  top: 2px;
  left: 23%;
  width: 75%;
  opacity: 0.8;
}

.icon.weather-icon img {
  width: 100%;
}

.list-style-none li.box-label a.see-all::after {
  content: "\f105";
  font-family: FontAwesome;
  font-size: 17px;
  color: var(--primary-button-bg-op-30);
  padding-left: 0px;
}

.unsetdesign fieldset,
.unsetdesign legend {
  all: unset;
}

.unsetdesign fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
  width: 96%;
  position: relative;
}

.unsetdesign legend {
  position: relative;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  z-index: 1;
}

.col-md-1.removeCriteria.pull-right {
  position: absolute;
  top: 0;
  right: 2px;
}

span.big-cross {
  top: 2.5px;
}

.dbs-twodiv .form-group {
  margin-bottom: 0;
}

.col-sm-3.celsius-group {
  padding-right: 0;
}

label.col-sm-1.col-form-label {
  padding-left: 3px;
}

.unsetdesign .OR-group {
  margin-left: 29%;
  padding: 7px;
  font-weight: 600;
}

.unsetdesign i.fa.fa-plus-circle {
  position: absolute;
  top: -8px;
  right: 0;
  z-index: 2;
  color: var(--primary-button-bg);
  font-size: 17px;
  background: var(--bg-white-background);
}

.unsetdesign legend button.btn.btn-primary {
  border: 1px solid var(--border-color);
  background: var(--bg-white-background);
  color: var(--color-black);
  padding: 3px 30px;
}

.unsetdesign .row.temperture-row {
  margin-bottom: 20px;
}

.temperture-row .switch {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 34px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.temperture-row .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.temperture-row .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-white-background);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 1px solid #d2d6de;
  border-radius: 3px;
  overflow: hidden;
  margin: 4px;
}

.temperture-row .switch .slider:before {
  position: absolute;
  content: "OFF";
  height: 24px;
  width: 40px;
  left: 0px;
  bottom: 0px;
  top: 0px;
  background-color: var(--primary-button-bg);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
}

.temperture-row .switch input:checked+.slider {
  background-color: var(--bg-white-background);
}

.temperture-row .switch input:focus+.slider {
  box-shadow: 0 0 1px #2196f3;
}

.temperture-row .switch input:checked+.slider:before {
  content: "ON";
  -webkit-transform: translateX(43px);
  -ms-transform: translateX(43px);
  transform: translateX(43px);
}

.temperture-row .notify-col {
  border: 1px solid #d2d6de;
  padding: 5px 30px 0 10px;
}

.temperture-row label.notify-box {
  font-size: 15px;
  font-weight: 400;
  word-spacing: 5px;
}

.unsetdesign .btn-box {
  float: right;
}

.unsetdesign .btn-box button.btn.save-button {
  border: none;
  line-height: 34px;
  /* height: 34px; */
  padding: 0 30px;
  background: var(--primary-button-bg);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 400;
}

.row.top-content-list {
  margin-bottom: 20px;
  margin-top: 10px;
}

.row.top-content-list label {
  font-weight: 500;
  font-size: 16px;
}

.row.top-content-list input[type="text"] {
  padding: 4px 6px 4px 6px;
  height: 33px;
  width: 100%;
}

.row.top-content-list input[type="text"]::placeholder {
  font-size: 15px;
  font-weight: 400;
}

.row.top-content-list .row.top-row-list {
  margin-bottom: 20px;
}

.row.top-content-list select.form-control {
  font-weight: 400;
  padding-right: 30px;
  background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAFCAYAAABB9hwOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA4RpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpiNWZkMzNlMC0zNTcxLTI4NDgtYjA3NC01ZTRhN2RjMWVmNjEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RTUxRUI3MDdEQjk4MTFFNUI1NDA5QTcyNTlFQzRERTYiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RTUxRUI3MDZEQjk4MTFFNUI1NDA5QTcyNTlFQzRERTYiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKFdpbmRvd3MpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6ZWNiNjQzMjYtNDc1Yi01OTQxLWIxYjItNDVkZjU5YjZlODA2IiBzdFJlZjpkb2N1bWVudElEPSJhZG9iZTpkb2NpZDpwaG90b3Nob3A6N2RlYzI2YWMtZGI5OC0xMWU1LWIwMjgtY2ZhNDhhOGNjNWY1Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+AXTIGgAAAFRJREFUeNpidI1KSWFgYDBlwASngXjOrqWzGcgBTEC8DIjfo4m/h4qTDUAGfwPi+UD8Hyr2H8r/RqnBIHATiPdC2XuhfIoACxJ7PRDzQmmKAUCAAQDxOxHyb4DjOAAAAABJRU5ErkJggg==) no-repeat center right;
}

select.custom-select.form-control.fa option {
  font-family: FontAwesome;
}

select.custom-select.form-control.fa {
  font-family: FontAwesome;
}

.col-md-3.sidebar {
  /* border-left: 1px solid var(--border-color); */
}

.dashboard .small-box {
  width: 100%;
  height: 100%;
  min-height: 129px !important;
}

.dashboard .col-xl-2.col-md-2.col-4 {
  padding-bottom: 20px;
}

.unsetdesign span.select-title {
  font-size: 11px;
  font-weight: 500;
}

.col-lg-1.removeCriteria.pull-right.removebtn {
  padding: 0;
  margin-top: 10px;
}

.col-lg-1.removeCriteria.pull-right.removebtn .form-group {
  margin-bottom: 0;
}

.sensortype label.col-sm-1.select-form-label {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sensortype label.col-sm-1.select-form-label span.select-label {
  font-size: 11px;
  font-weight: 500;
  line-height: 26px;
}

select.custom-select.form-control.icon-select {
  font-family: FontAwesome;
}

select.custom-select.form-control.icon-select option.fa.fa-twitter {
  font-family: FontAwesome;
}

select.custom-select.form-control.icon-select option.fa.fa-arrows {
  font-family: FontAwesome;
}

/*ul.building_profile_scen_nav.nav.nav-tabs {
border-bottom-color: none;
border-radius: 0;
border: 2px solid var(--primary-button-bg);
width: max-content;
}
.nav-tabs-custom>ul.building_profile_scen_nav.nav.nav-tabs>li>a.active {
border:none;
background: var(--primary-button-bg);
color: var(--color-white);
}
/*.nav-tabs-custom>ul.building_profile_scen_nav.nav.nav-tabs>li {
margin-bottom: -1px;
margin-right: 0px;
}
.nav-tabs-custom>ul.building_profile_scen_nav.nav.nav-tabs>li>a{
border-top: none;
}

ul.building_profile_scen_nav.nav.nav-tabs > li > a:hover {
border-color: none !important;
}*/

/* building_profile section */

.appendFormElement h3 {
  font-size: 15px;
  line-height: 10px;
}

.appendFormElementThen h3 {
  font-size: 15px;
  line-height: 10px;
}

.appendFormElementWhen h3 {
  font-size: 15px;
  line-height: 10px;
}

.nav-tabs-custom>ul.building_profile_scen_nav.nav.nav-tabs>li {
  margin-bottom: -2px;
  margin-right: 2px;
  /* background: #65bdf8; */
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.scene_form .nav-tabs-custom .tab-content {
  background: #f8f8f8;
  padding: 10px 0 10px 10px;
  border-radius: 0;
}

.nav-tabs-custom>ul.building_profile_scen_nav.nav.nav-tabs>li a.active {
  /* border-top-color: unset;
  background: #f8f8f8; */
  color: var(--color-black);
}

.nav-tabs-custom>ul.building_profile_scen_nav.nav.nav-tabs>li>a {
  border-top: none;
  color: var(--color-black);
}

.building-form .nav-tabs-custom {
  padding: 10px 0;
}

.building-form .tab-content>.active {
  padding-bottom: 13px;
}

.building-form div#basic.active {
  padding-top: 20px;
}

.building-form .btn-primary {
  color: var(--color-white);
  background-color: #65bdf8;
  border-color: #65bdf8;
}

.building-form .btn-primary:hover {
  color: var(--color-white);
  background-color: #65bdf8;
  border-color: #65bdf8;
}

.building-form .btn-primary:focus,
.building-form .btn-primary.focus {
  background-color: none !important;
  border-color: none !important;
}

select#home_country {
  margin-bottom: 10px;
}

select#role_slug,
select#home_country {
  height: 2.573rem;
}

.multiselect_div label {
  width: 12%;
}

.multiselect_div input.search-input {
  margin-bottom: 10px;
}

.multiselect_div a {
  margin-top: 5px;
  display: inline-block;
  text-transform: capitalize;
}

.multiselect_div .ms-container .ms-selectable,
.multiselect_div .ms-container .ms-selection {
  width: 39.33%;
}

.table-content-link a {
  color: var(--color-link-text);
}

@media (min-width: 576px) {
  .multiselect_div .col-sm-10 {
    flex: 0 0 88%;
    max-width: 88%;
  }
}

.operator_drop {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  display: block;
  left: -31px;
  top: 0;
  width: 70px;
  z-index: 1;
}

.operator_drop>ul {
  /* border: 1px solid #337ab7; */
  background-color: var(--bg-white-background);
  /* border-radius: 0 0 5px 5px; */
  box-sizing: border-box;
  overflow: hidden;
  padding: 0;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25) 0s,
    opacity 0.15s ease-out 0s;
  width: 100%;
}

.operator_drop>ul>li {
  border-bottom: 1px solid #ddd;
  color: #333333;
  cursor: pointer;
  font-weight: 400;
  line-height: 35px;
  list-style: outside none none;
  min-height: 35px;
  outline: medium none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  font-size: 13px;
  transition: all 0.2s ease 0s;
}

.addMoreCriteria .operator_drop>ul {
  margin-bottom: 0 !important;
}

.addMoreCriteria .operator_drop {
  left: -23px !important;
  position: absolute;
  width: 60px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: var(--primary-button-bg);
  border-color: #367fa9;
  padding: 1px 10px;
  color: var(--color-white);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  margin-right: 5px;
  color: rgba(255, 255, 255, 0.7);
}

.user-panel>.image>img {
  border: 0;
}

.appendFormElement .OR-group {
  font-weight: 600;
  display: flex;
  padding: 0;
  margin-bottom: 15px;
  margin-left: 15px;
  align-items: center;
}

.right-sidebar.right-sidebar-opened .rightsidebar-container {
  background: var(--bg-white-background);
  border-radius: 20px;
  padding: 15px;
}

.rightsidebar-container .accordion-item {
  background-color: var(--bg-light-blue);
  color: var(--color-black);
  margin: 1rem 0;
  padding-left: 5px;
  padding-right: 5px;
  border-radius: 0.5rem;
  /* box-shadow: 0 2px 5px 0 rgba(0,0,0,0.25); */
}

.rightsidebar-container .accordion-item-header {
  min-height: 3.5rem;
  line-height: 1.25rem;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  color: #67757c;
  font-weight: 300;
  font-size: 13px;
}

.rightsidebar-container .accordion-item-header::after {
  /*content: "\002B";
font-size: 22px; 
position: absolute;
right: 1rem;*/
  content: "";
  position: absolute;
  right: 0px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8.5px 0 8.5px;
  border-color: #67757c transparent transparent transparent;
  top: 50%;
  transform: translateY(-50%);
}

/*.accordion-item-header.active::after {
content: "\2212";
}*/

.rightsidebar-container .accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.rightsidebar-container .accordion-item-body-content {
  padding: 0.2rem;
  line-height: 1.5rem;
  border-top: 2px solid #ebebeb;
  color: #67757c;
  font-weight: 300;
  font-size: 13px;
}

.rightsidebar-container .accordion-item-header::before {
  content: "\f111";
  font-family: FontAwesome;
  font-size: 20px;
  padding-right: 5px;
  color: #cf2a27;
}

.rightsidebar-container .accordion-item-header.blue-circle-icon::before {
  color: var(--primary-button-bg);
}

.rightsidebar-container .accordion-item-header.pink-circle-icon::before {
  color: #fb9678;
}

.rightsidebar-container .accordion-item-header.green-circle-icon::before {
  color: #009b74;
}

.addExpressionCriteria {
  position: relative;
  padding-left: 5px;
}

.addExpressionCriteria .operator_drop_expresssion {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  display: block;
  left: -31px;
  top: 0;
  width: 87px;
  z-index: 1;
}

.addExpressionCriteria .operator_drop_expresssion {
  left: -73px !important;
  position: absolute;
  width: 82px;
}

.addExpressionCriteria .operator_drop_expresssion>ul {
  margin-bottom: 0 !important;
}

.removeExpressionCriteria {
  position: relative;
  padding-left: 5px;
}

.operator_drop_expresssion>ul {
  background-color: var(--bg-white-background);
  box-sizing: border-box;
  overflow: hidden;
  padding: 0;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25) 0s,
    opacity 0.15s ease-out 0s;
  width: 100%;
}

.operator_drop_expresssion>ul>li {
  border-bottom: 1px solid #ddd;
  color: #333333;
  cursor: pointer;
  font-weight: 400;
  line-height: 35px;
  list-style: outside none none;
  min-height: 35px;
  outline: medium none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  font-size: 13px;
  transition: all 0.2s ease 0s;
}

.col-md-1.addMoreLeftCriteria {
  position: relative;
  padding-left: 5px;
}

.addMoreLeftCriteria .operator_drop_expresssion_left {
  left: -30px !important;
  position: absolute;
  width: 82px;
}

.addMoreLeftCriteria .operator_drop_expresssion_left {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  display: block;
  left: -31px;
  top: 0;
  width: 43px;
}

.addMoreLeftCriteria .operator_drop_expresssion_left>ul {
  margin-bottom: 0 !important;
}

.addMoreLeftCriteria .operator_drop_expresssion_left>ul {
  background-color: var(--bg-white-background);
  box-sizing: border-box;
  overflow: hidden;
  padding: 0;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25) 0s,
    opacity 0.15s ease-out 0s;
  width: 100%;
}

.operator_drop_expresssion_left>ul>li {
  border-bottom: 1px solid #ddd;
  color: #333333;
  cursor: pointer;
  font-weight: 400;
  line-height: 35px;
  list-style: outside none none;
  min-height: 35px;
  outline: medium none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  font-size: 13px;
  transition: all 0.2s ease 0s;
}

.col-md-1.addMoreRightCriteria {
  position: relative;
  padding-left: 5px;
}

.addMoreRightCriteria .operator_drop_expresssion_right {
  left: -30px !important;
  position: absolute;
  width: 82px;
}

.addMoreRightCriteria .operator_drop_expresssion_right {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  display: block;
  left: -31px;
  top: 0;
  width: 43px;
}

.addMoreRightCriteria .operator_drop_expresssion_right>ul {
  margin-bottom: 0 !important;
}

.addMoreRightCriteria .operator_drop_expresssion_right>ul {
  background-color: var(--bg-white-background);
  box-sizing: border-box;
  overflow: hidden;
  padding: 0;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25) 0s,
    opacity 0.15s ease-out 0s;
  width: 100%;
}

.operator_drop_expresssion_right>ul>li {
  border-bottom: 1px solid #ddd;
  color: #333333;
  cursor: pointer;
  font-weight: 400;
  line-height: 35px;
  list-style: outside none none;
  min-height: 35px;
  outline: medium none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  font-size: 13px;
  transition: all 0.2s ease 0s;
}

.dbs-twodiv.iftab-div .col-sm-3.celsius-group.celsius-box,
.dbs-twodiv.iftab-div .col-sm-2.celsius-group.celsius-box {
  margin-top: 16px;
}

.dbs-twodiv.iftab-div .dbs-twodiv label.col-sm-2.col-form-label {
  padding-left: 4px;
}

.dbs-twodiv.iftab-div .control-label {
  margin-top: 20px;
}

.dbs-twodiv.iftab-div label.col-sm-1.col-form-label {
  padding-left: 3px;
  /*position: absolute;*/
}

.dbs-twodiv.iftab-div label.col-sm-1.col-form-label label.control-label {
  margin-top: 20px;
}

.dbs-twodiv.iftab-div .col-sm-3.celsius-group {
  position: relative;
  padding-left: 0px;
}

.dbs-twodiv.iftab-div .col-sm-3.celsius-group.celsius-box {
  /*padding-left: 31px;*/
  padding-left: 8px;
}

.critearea_1 .col-md-1.addMoreCriteria.pull-right {
  /*padding: 0 6px 0 0;*/
}

.repeated_content .col-md-1.addMoreCriteria.pull-right {
  /*padding: 0 6px 0 0;*/
}

button.btn.btn-danger.collapsed {
  margin-top: 22.5px;
}

.repeated_content button.glyphicon-minus-sign,
.repeated_content .glyphicon-plus-sign {
  padding: 0.1rem 0.35rem;
}

.repeated_content .glyphicon-plus-sign {
  margin-top: 5px;
}

.OR-group::before {
  border-top: 1px solid #8a94a9f0;
  content: "";
  display: table-cell;
  position: relative;
  /* top: 0.5em; */
  width: 46%;
  margin-right: 5px;
}

.OR-group::after {
  border-top: 1px solid #8a94a9f0;
  content: "";
  display: table-cell;
  position: relative;
  /* top: 0.5em; */
  width: 49%;
  margin-left: 5px;
}

.condition_selelction {
  margin-top: 18px;
}

.condition_selelction lable {
  font-weight: 500;
}

.addMoreLeftCriteria {
  margin-top: 18px;
  padding-left: 0 !important;
}

.addMoreRightCriteria {
  margin-top: 18px;
  padding-left: 0 !important;
}

.appendFormElement .addoremove .addMoreLeftCriteria .btn.btn-success {
  /*    line-height: 32px;
padding: 0 26px;*/
}

.appendFormElement .addoremove .addMoreRightCriteria .btn.btn-success {
  /*    line-height: 32px;
padding: 0 26px;*/
}

.OR-inner {
  padding-left: 41% !important;
}

/* For Prediction message */

.nested-list-wrap ul,
row video-section #nested-list-wrap {
  list-style-type: none;
  padding: 0;
}

.nested-list-wrap #nested-list-wrap {
  margin: 0;
  padding: 0;
}

.nested-list-wrap .nested {
  display: none;
}

.nested-list-wrap .active {
  display: block;
}

.nested-list-wrap {
  margin: 3px;
  background-color: #fafafa;
  padding: 10px 20px;
  border: 1px solid #d2d6de;
  border-radius: 10px;
  margin-bottom: 20px;
}

.nested-list-wrap h4 {
  margin-bottom: 0;
  line-height: normal;
  font-size: var(--font-az-16);
  color: var(--color-black);
  font-weight: 400;
}

.nested-list-wrap ul.nested li:not(:last-child) {
  margin-bottom: 5px;
}

.nested-list-wrap ul.nested {
  margin-top: 5px;
  padding-left: 5px;
}

.nested-list-wrap li strong {
  display: inline-block;
}

.nested-list-wrap li strong:nth-last-of-type(-n + 3) {
  width: 25%;
}

.nested-list-wrap ul.nested.level1 li span:nth-last-of-type(-n + 3) {
  width: 25%;
  display: inline-block;
  word-break: break-all;
  vertical-align: top;
}

.nested-list-wrap .level2 li strong:nth-last-of-type(3),
.nested-list-wrap .level3 li span:nth-last-of-type(3) {
  width: auto !important;
}

.nested-list-wrap .level2 li strong:nth-last-of-type(-n + 2) {
  width: 35%;
}

.nested-list-wrap ul.nested.level3 li span:nth-last-of-type(-n + 3) {
  width: 36%;
}

.nested-list-wrap .level2 li span:nth-last-of-type(-n + 2) {
  width: 30%;
}

ul.nested.level3.two-item {
  margin-left: 13px;
}

.nested-list-wrap .fa-minus:before {
  content: "\f068" !important;
}

.nested-list-wrap .icon-sp {
  cursor: pointer;
}

.nested-list-wrap [type="checkbox"]:checked,
.nested-list-wrap [type="checkbox"]:not(:checked) {
  position: inherit;
  opacity: unset;
  width: 15px;
  height: 15px;
  vertical-align: sub;
  cursor: pointer;
}

.nested-list-wrap .no-child {
  padding-left: 17px;
}

/* For Prediction message */

.appendFormElementThen .dyanamic-content {
  border: 1px solid #ccc;
  border-radius: 0;
  height: 34px;
  position: relative;
}

.appendFormElementThen .dyanamic-content ul {
  display: none;
  width: 100%;
  position: absolute;
  border: 1px solid #ccc;
  left: 0;
  border-radius: 0px;
  background-color: var(--bg-white-background);
  padding: 0px 0;
  z-index: 9;
  padding-bottom: 0;
}

.appendFormElementThen .dyanamic-content span {
  line-height: 29px;
  display: block;
  height: 30px;
  font-size: 12px;
  padding-right: 30px;
  background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAFCAYAAABB9hwOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA4RpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpiNWZkMzNlMC0zNTcxLTI4NDgtYjA3NC01ZTRhN2RjMWVmNjEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RTUxRUI3MDdEQjk4MTFFNUI1NDA5QTcyNTlFQzRERTYiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RTUxRUI3MDZEQjk4MTFFNUI1NDA5QTcyNTlFQzRERTYiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKFdpbmRvd3MpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6ZWNiNjQzMjYtNDc1Yi01OTQxLWIxYjItNDVkZjU5YjZlODA2IiBzdFJlZjpkb2N1bWVudElEPSJhZG9iZTpkb2NpZDpwaG90b3Nob3A6N2RlYzI2YWMtZGI5OC0xMWU1LWIwMjgtY2ZhNDhhOGNjNWY1Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+AXTIGgAAAFRJREFUeNpidI1KSWFgYDBlwASngXjOrqWzGcgBTEC8DIjfo4m/h4qTDUAGfwPi+UD8Hyr2H8r/RqnBIHATiPdC2XuhfIoACxJ7PRDzQmmKAUCAAQDxOxHyb4DjOAAAAABJRU5ErkJggg==) no-repeat center right;
  padding-left: 10px;
}

.appendFormElementThen .dyanamic-content ul.open {
  display: block;
}

.appendFormElementThen .dyanamic-content ul li {
  border-bottom: 1px solid #ccc;
  padding-bottom: 2px;
  padding-top: 2px;
}

.appendFormElementThen .dyanamic-content ul li:last-child {
  border-bottom: none;
}

.appendFormElementThen .dyanamic-content ul li:hover {
  background-color: #1e90ff;
  outline: 2px solid var(--border-color);
  border-color: transparent;
}

.appendFormElementThen .dyanamic-content ul li {
  cursor: pointer;
  list-style: none;
}

.appendFormElementThen .dyanamic-content img {
  max-width: 25px;
  margin-left: 5px;
}

.appendFormElementThen .dyanamic-content ul img {
  margin-left: 15px;
}

.target_cop_populate {
    border: 1px solid #c0c0c0;
    margin-bottom: 15px;
    padding: 1.35em 1.625em 1.75em;
}

/* ######################## media query ########################## */

@media (max-width: 1024px) {
  .col-md-9.dashboard {
    padding-right: 30px;
  }

  .dashboard .col-xl-2.col-md-2.col-4 {
    padding-right: 0;
  }

  .small-box p {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .col-md-9.dashboard {
    width: 100%;
    padding: 0;
    max-width: 96%;
  }

  .small-box>.inner {
    padding: 10px 0 0 5px;
  }

  .small-box h4 {
    font-size: 13px;
  }

  .small-box p {
    font-size: 12px;
  }

  .small-box>.small-box-footer {
    padding: 3px 5px 3px 5px;
  }

  .small-box-footer i.fa.fa-arrow-right {
    margin-right: 3px;
  }
}

@media (max-width: 414px) {
  .col-md-9.dashboard {
    max-width: 100%;
  }

  .dashboard .small-box {
    width: 100%;
    height: 90%;
  }

  .small-box.bg-green {
    padding-bottom: 12px;
  }
}

@media (max-width: 375px) {
  .col-md-9.dashboard {
    padding-right: 14px;
  }

  .dashboard .col-xl-2.col-md-2.col-4 {
    padding-bottom: 10px;
    padding-right: 0px;
  }

  .small-box p {
    margin-bottom: 26px;
  }
}

.blue-bg {
  background-color: var(--theme-success-color-op80);
}

.orange-bg {
  background-color: #fb9678;
}

.green-bg {
  background-color: var(--theme-success-color);
}

.box-col span,
.box-col strong {
  color: var(--color-white);
  display: block;
  text-align: center;
}

.three-col-layout .box-col:nth-child(2n + 1) {
  background-color: #465161;
}

.three-col-layout .box-col:nth-child(2n) {
  background-color: #fcc525;
}

.flex-layout {
  display: flex;
  flex-direction: column;
  flex-flow: row wrap;
}

.three-col-layout .flex-layout .box-col {
  flex: 1;
  margin: 1%;
}

.info-col {
  flex: 1;
}

.three-col-layout .box-col .box-inner {
  padding: 25px 10px;
}

.three-col-layout .box-col:nth-child(2n) .box-inner span,
.three-col-layout .box-col:nth-child(2n) .box-inner strong {
  color: var(--color-black);
}

.three-col-layout .box-col:nth-child(2n) .box-inner span.text-lable {
  color: var(--color-white);
}

.bottom-info {
  border-top: 2px solid #5f6975;
  padding-top: 20px;
  margin-top: 20px;
}

.top {
  margin-bottom: 20px;
}

.info-col:not(:last-child) {
  border-right: 2px solid #5f6975;
}

span.text-lable {
  font-size: 12px;
  border-radius: 2px;
  padding: 5px 6px;
}

.info-col span {
  font-size: 16px;
  line-height: 22px;
}

strong.label-heading {
  font-size: 21px;
  line-height: 26px;
  font-weight: 700;
}

.info-col .text-lable {
  display: table;
  margin: 15px auto 0;
}

.three-col-layout {
  margin-bottom: 15px;
}

.four-col-layout .row {
  display: flex;
  flex-flow: row wrap;
}

.four-col-layout .box-col-inner {
  padding: 15px 10px;
  overflow: hidden;
  min-height: 200px;
}

.four-col-layout .box-col-inner span{
  color: var(--color-black);
  text-align: left;
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
}

.four-col-layout .box-col-inner strong {
  font-size: var(--font-az-14);
  line-height: 18px;
  margin-bottom: 4px;
  text-align: left;
}
.four-col-layout .box-col-inner strong.theme-danger-color{
  color: var(--theme-danger-color);
  text-align: left;
}

.bottom {
  display: flex;
  justify-content: space-between;
}

.temp-status span {
  display: inline-block;
}

.temp-status span.temp1 {
  color: var(--theme-color-orange-op80);
}

.four-col-layout .top {
  padding: 0 20px;
  margin-bottom: 35px;
}

.right-text {
  display: inline-block;
  float: right;
}

.four-col-layout .box-col {
  margin-bottom: 15px;
  flex-basis: 23%;
  max-width: 23%;
  background-color: var(--color-dark-gray-op15);
  padding: 0;
  margin: 1%;
}

.four-col-layout .box-col:nth-last-of-type(-n + 4) {
  margin-bottom: 0;
}

.right-breadcrumb {
  margin-left: auto;
}

.dashboard-header {
  align-items: center;
  padding: 15px 0;
}

.logo strong {
  font-size: 21px;
  padding-right: 10px;
  line-height: 24px;
}

.float-control-btn {
  position: fixed;
  right: -23px;
  background-color: var(--bg-white-background);
  border: 1px solid var(--border-color);
  border-radius: 3px;
  padding: 3px 10px;
  transform: rotate(90deg);
  top: 185px;
  z-index: 9;
}

.float-control-btn a {
  font-size: 16px;
  line-height: 20px;
  color: var(--color-black);
  text-decoration: none;
}

.right-breadcrumb a {
  text-decoration: none;
  color: var(--color-black);
}

.right-breadcrumb a .fa {
  padding: 0 5px;
}

.inner-setting label {
  display: block;
  font-size: 12px;
  font-weight: 400;
}

.control-setting {
  background-color: var(--bg-white-background);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  padding: 15px 20px;
  z-index: 9;
  width: 100%;
  transition: 0.3s ease-in;
  right: 0;
}

.inner-setting {
  justify-content: space-between;
}

.control-setting.show-control-panel {
  right: 0;
  transition: 0.3s ease-in;
}

.remote-controll .rc-opt {
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}

.start.rc-opt .form-group {
  margin-bottom: 0;
}

.start.rc-opt label {
  flex: 1;
  margin-right: 5px;
  text-align: right;
}

.set-point-range .form-group label {
  margin-bottom: 0;
  margin-right: 5px;
}

.set-point-range {
  clear: both;
}

.set-point-range .form-group .line {
  top: 8px;
}

.cool_heat {
  /* border: 1px solid #000; */
  border-radius: 8px;
  padding: 10px 15px;
  background-color: #eaeaea;
}

.set-point-range .form-group {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.remote-controll label {
  display: inline-block;
  margin: 0;
}

.remote-controll .rc-opt:not(:last-child) {
  margin-bottom: 10px;
}

.remote-controll .rc-opt .line {
  top: 6px;
  right: 23px;
}

.control-setup-popup #control-setting select,
.control-setup-popup .dyanamic-content,
.cool-points {
  -webkit-appearance: none;
  background-image: url("../images/control-setting-down-arrow.svg");
  background-repeat: no-repeat;
  background-position: center right 7px;
  padding: 0 30px 0 5px;
  background-size: 10px;
  margin-left: auto;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  min-width: 100px;
  height: 35px;
  color: var(--color-black);
}

.remote-controll>label {
  margin-bottom: 5px;
}

select {
  height: 30px;
  border-color: #ccc;
  border-radius: 4px;
}

.col-sm-3 .remote-controll {
  flex-basis: 175px;
  max-width: 181px;
  margin-bottom: 30px;
  float: right;
  width: 100%;
}

.remote-controll {
  flex-basis: 175px;
  margin-bottom: 30px;
  float: right;
  width: 100%;
}

.remote-controll label {
  display: inline-block;
}

.mode {
  position: relative;
}

.line {
  height: 18px;
  width: 1px;
  background-color: #ccc;
  position: absolute;
  top: 31px;
  right: 25px;
}

.mode.air-flow .line {
  right: 35px;
}

.airdir.dyanamic-content {
  max-width: 75px;
  float: none;
  margin: auto;
}

.temp-span,
.ser-loc,
.text-black {
  white-space: inherit;
  word-break: break-all;
}

.detail_section .ser-loc strong {
  color: var(--color-white);
}

.control-setup-popup .dyanamic-content,
.control-setup-popup .cool-points {
  border: 1px solid #ccc;
  border-radius: 4px;
  height: 35px;
}

.mode.air-flow ul {
  max-width: 85px;
  margin: auto;
  left: 0;
  right: 0;
}

.control-setup-popup .dyanamic-content ul,
.control-setup-popup .cool-points ul {
  display: none;
  width: 100%;
  position: absolute;
  border: 1px solid #ccc;
  left: 0;
  border-radius: 4px;
  background-color: var(--bg-white-background);
  padding: 5px;
  z-index: 9;
  margin-top: 2px;
  list-style: none;
}

.control-setup-popup .dyanamic-content span,
.control-setup-popup .cool-points span {
  line-height: 33px;
  display: block;
  height: 33px;
  font-size: 14px;
  color: var(--color-black);
}

.second-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
}

.first-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.control-setup-popup .dyanamic-content ul.open,
.control-setup-popup .cool-points ul.open {
  display: block;
}

.dyanamic-content ul li:not(:last-child),
.cool-points ul li:not(:last-child) {
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  margin-bottom: 5px;
}

.dyanamic-content ul li {
  cursor: pointer;
}

.dyanamic-content img {
  max-width: 25px;
}

.disabled {
  background-color: #e9ecef;
  cursor: not-allowed;
  pointer-events: none;
}

/* Toggle Switch */

.toggle-button-cover {
  position: relative;
  box-sizing: border-box;
}

.button-cover {
  border: 1px solid var(--border-color);
  border-radius: 100px;
}

.button {
  position: relative;
  height: 33px;
  overflow: hidden;
  width: 83px;
}

.button.r,
.button.r .layer {
  border-radius: 100px;
}

.button.b2 {
  border-radius: 2px;
}

#button-switch .checkbox {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
  left: 0;
}

.knobs {
  z-index: 2;
}

.layer {
  width: 100%;
  background-color: #ebf7fc;
  transition: 0.3s ease all;
  z-index: 1;
}

#button-switch .knobs:before {
  content: "Off";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 35px;
  height: 100%;
  color: var(--color-white);
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  line-height: 20px;
  padding: 6px 4px;
  background-color: var(--theme-color-orange);
  border-radius: 2px;
  transition: 0.3s ease all, left 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15);
}

#button-switch .checkbox:active+.knobs:before {
  width: 46px;
}

#button-switch .checkbox:checked:active+.knobs:before {
  margin-left: -26px;
}

#button-switch .checkbox:checked+.knobs:before {
  content: "On";
  right: 0;
  left: auto;
  background-color: var(--primary-button-bg);
}

#button-switch .checkbox:checked~.layer {
  background-color: #fcebeb;
}

.bg-pale-success td.text-white16 {
  color: var(--border-color) !important;
}

.cool_control_setting,
.heat_control_setting {
  display: flex;
  align-items: center;
}

.cool_control_setting label,
.heat_control_setting label {
  text-align: center;
}

.cool_control_setting>label,
.heat_control_setting>label {
  margin-right: 15px;
  margin-bottom: 0;
  margin-top: 15px;
}

.min_cool,
.min_heat {
  margin-right: 10px;
}

@media (max-width: 1100px) {
  .info-col .text-lable {
    max-width: 80px;
  }
}

@media (max-width: 991px) {

  .box-col,
  .four-col-layout .box-col:nth-last-of-type(-n + 4) {
    margin-bottom: 1%;
  }

  .three-col-layout .flex-layout .box-col {
    flex: 0 0 48%;
  }

  .four-col-layout .box-col {
    flex-basis: 31%;
    max-width: 31%;
  }
}

@media (max-width: 767px) {
  .dashboard-header {
    justify-content: center;
  }

  .right-breadcrumb {
    margin-left: 0;
    margin-top: 10px;
  }

  .three-col-layout>.flex-layout {
    flex-flow: column;
  }

  .mode {
    margin-bottom: 15px;
  }

  .float-control-btn {
    right: -7px;
    transform: rotate(90deg) translateY(-50%);
    top: 50%;
  }

  .four-col-layout .box-col {
    flex-basis: 48%;
    max-width: 48%;
  }
}

@media (max-width: 500px) {
  .four-col-layout .box-col {
    flex-basis: 100%;
    max-width: 100%;
    margin: 0 0 15px 0;
  }

  .three-col-layout .flex-layout .box-col,
  .box-col,
  .four-col-layout .box-col:nth-last-of-type(-n + 4) {
    margin: 0 0 15px 0;
  }

  .four-col-layout .row {
    flex-direction: column;
    margin: 0;
  }
}

.iaq_content .label {
  font-weight: normal;
}

.iaq_content .bg-info {
  background-color: rgb(227, 252, 242, 0.2);
}

.iaq_content .label-warning-light {
  background-color: #ffd74e;
}

.iaq_content .text-yellow-light {
  color: #ffd74e;
}

.iaq_content .label-danger-light {
  background-color: var(--theme-danger-color);
}

.iaq_content .text-red-light {
  color: var(var(--theme-danger-color));
}

.iaq_content .label-hazardous {
  background-color: #a0522d;
}

.iaq_content .text-hazardous {
  color: #a0522d;
}

@media (min-width: 768px) {
  .three-col-layout>.flex-layout {
    margin: -1%;
  }
}

/*.right_control_setting{
display: -webkit-flex;
display: flex;
flex: 34%;
max-width: 34%;
flex-wrap: nowrap;
-webkit-flex-wrap: nowrap;
justify-content: flex-end;
}
.left_control_section{
display: -webkit-flex;
display: flex;
flex-flow: nowrap;
-webkit-flex-wrap: nowrap;
flex: 66%;
max-width: 66%;
}*/

.fix_145 {
  width: 146px;
}

.pr_0 {
  padding-right: 0px !important;
}

.normal_font {
  font-weight: normal !important;
}

.row_icon .btn {
  padding: 0;
  height: 25px;
  width: 25px;
  line-height: 25px;
}

.repeated_content:nth-of-type(1) {
  margin-top: 0;
}

.repeated_content {
  margin-top: 30px;
}

.duration_div {
  margin-top: -3px;
}

.mlm_5 {
  margin-left: -5px;
}

.right-sidebar {
  display: none;
  -webkit-transition: -webkit-transform 0.3s ease-in-out, width 0.3s ease-in-out;
  -moz-transition: -moz-transform 0.3s ease-in-out, width 0.3s ease-in-out;
  -o-transition: -o-transform 0.3s ease-in-out, width 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, width 0.3s ease-in-out;
}

.help-sidebar {
  display: none;
  -webkit-transition: -webkit-transform 0.3s ease-in-out, width 0.3s ease-in-out;
  -moz-transition: -moz-transform 0.3s ease-in-out, width 0.3s ease-in-out;
  -o-transition: -o-transform 0.3s ease-in-out, width 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, width 0.3s ease-in-out;
}

.right-sidebar.right-sidebar-opened {
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease-in-out, width 0.3s ease-in-out;
  -moz-transition: -moz-transform 0.3s ease-in-out, width 0.3s ease-in-out;
  -o-transition: -o-transform 0.3s ease-in-out, width 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, width 0.3s ease-in-out;
}

.help-sidebar.help-sidebar-opened {
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease-in-out, width 0.3s ease-in-out;
  -moz-transition: -moz-transform 0.3s ease-in-out, width 0.3s ease-in-out;
  -o-transition: -o-transform 0.3s ease-in-out, width 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, width 0.3s ease-in-out;
}

a.sidebar-trigger {
  position: absolute;
  right: -85px;
  z-index: 9;
  background: var(--color-dark-gray);
  color: var(--color-white);
  display: block;
  padding: 5px 20px;
  transform: rotate(90deg);
  top: 445px;
  height: 30px;
  width: 200px;
  text-align: center;
  font-weight: 500;
  font-size: var(--font-az-14);
}

a.help-content-trigger {
  position: absolute;
  right: -85px;
  z-index: 9;
  background: var(--primary-button-bg);
  color: var(--color-white);
  display: block;
  padding: 5px 10px;
  transform: rotate(90deg);
  top: 237px;
  height: 30px;
  width: 200px;
  text-align: center;
  font-weight: 500;
  font-size: var(--font-az-14);
}

.notification-dashboard #get-help-info {
  right: -85px;
}

/*
.hide-sidebar-help-content {
  right: -74px !important;
}
*/
/*Scrollbar on overflow*/

.grid-view {
  overflow-x: auto;
  width: 100%;
  padding: 0 15px;
}

.box-header.with-border {
  cursor: pointer;
}

.navbar-nav>.user-menu>.dropdown-menu>li.user-header>img {
  width: 90px;
}

.navbar-nav>.user-menu>.dropdown-menu>.user-body a i {
  width: 12px;
}

.navbar-nav>.user-menu>.dropdown-menu {
  width: 210px;
}

.navbar-nav>.user-menu>.dropdown-menu {
  width: 210px;
}

.manage-project-profile .nav-tabs-custom {
  margin-bottom: 0px;
  background: var(--bg-white-background);
  -webkit-box-shadow: 0 3px 5px rgb(0 0 0 / 20%);
  -moz-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  box-shadow: none;
  border-radius: 0;
  margin-top: 2%;
  border-top: 1px solid #f4f4f4;
}

.form-group.has-error .select2-selection {
  border-color: var(--theme-color-orange);
  box-shadow: none;
}

.form-group.has-success .select2-selection {
  border-color: var(--primary-button-bg);
  box-shadow: none;
}

.info-circle {
  top: 5px;
  position: absolute;
  right: 8px;
  font-size: 20px;
}

/* added system cu fcu css */

.system {
  max-width: 50px;
  width: 100%;
  display: inline-block;
}

.cu {
  max-width: 40px;
  width: 100%;
  display: inline-block;
}

.fcu {
  max-width: 40px;
  width: 100%;
  display: inline-block;
}

/*---------------New design style ---------------*/

/*---------------Mobile Responsive css ----------------*/

@media (min-width: 768px) {}

@media (min-width: 1024px) {}

/*---------Help Desk css------------*/

@media (min-width: 1200px) {
  .manage-project-list .col-xxl-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 1440px) {
  .manage-project-list .col-xxl-4 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}

@media (min-width: 1920px) {
  .manage-project-list .col-xxl-4 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .manage-project-list .col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/*---------------End Mobile Responsive css ----------------*/

/*---------------Web css ----------------*/

.field-projectresult-is_same_as_cooling_pc label {
  padding-left: 0;
}

.field-projectresult-is_same_as_cooling_pc label #projectresult-is_same_as_cooling_pc {
  margin: 0 !important;
}

.manage-project-list .card-content .text-align {
  text-align: right;
}

#customer_result .todo-section .nav-tabs-custom {
  padding-top: 15px;
  margin-top: 0;
  padding-left: 0;
  padding-right: 0;
}

#customer_result .todo-section .nav-tabs-custom .modal-body {
  padding: 20px 0;
}

.manage-project-list .card-body {
  padding: 20px 15px;
}

.manage-project-list .card-box .card-body i {
  font-size: 18px;
  margin-right: 5px;
}

.manage-project-list .card-box .card-body span i {
  font-size: 18px;
  margin-right: 5px;
  color: #f8be45;
}

.manage-project-list .card-content .row .col-12:first-child .row .col-9:first-child {
  padding: 0px 15px 10px;
  margin: 0 auto;
}

.manage-project-list .card-content .row .col-12:first-child .row {
  margin: 0;
  border-bottom: none;
}

.modal-more-projects .manage-project-form .card-box .card-body hr {
  margin: 20px 0 30px !important;
  border-color: #ddd !important;
}

.modal-more-projects .manage-project-form .card-box .card-body .text-end a {
  font-size: 14px;
  font-weight: 500;
  color: #377ae8;
  margin-right: 0px;
}

.modal-more-projects .manage-project-form .card-box .card-body .text-end a i {
  color: rgb(55 122 232 / 90%);
  font-size: 14px;
}

.modal-more-projects .manage-project-form .card-content .text-align {
  text-align: right;
}

.modal-more-projects .manage-project-form .card-body {
  padding: 30px 15px;
}

.modal-more-projects .manage-project-form .card-box .card-body i {
  font-size: 14px;
  margin-right: 0px;
  color: lightgrey;
}

.modal-more-projects .manage-project-form .card-box .card-body span i {
  font-size: 18px;
  margin-right: 5px;
  color: #f8be45;
}

.manage-cu-table {
  overflow-x: auto;
}

#manage_project_cu .manage-cu-table {
  overflow: auto;
}

.modal-more-projects .manage-project-form #update_project_form .modal-body .manage-update-table {
  overflow: auto;
}

.modal-more-projects .manage-project-form .card-content .row .col-12:first-child .row .col-9:first-child {
  padding-bottom: 10px;
}

.modal-more-projects .manage-project-form .card-content .row .col-12:first-child {
  padding-bottom: 0;
}

.modal-more-projects .manage-project-form .card-content .row .col-12:first-child .row {
  margin: 0;
}

.modal-more-projects .manage-project-form .card-box .card-body hr {
  margin: 15px 0 30px !important;
  border-color: #ddd !important;
}

.modal-more-projects .manage-project-form #update_project_form .modal-body table .manage_project_cu tr td:last-child .form-check {
  margin: auto;
  width: 100%;
  text-align: center;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.modal-more-projects .manage-project-form #update_project_form .modal-body table .manage_project_cu tr td:last-child .form-check input {
  position: relative;
}

.modal-more-projects .manage-project-form #update_project_form .modal-body table .manage_project_cu tr td:last-child {
  padding: 7px !important;
}

.modal-more-projects .manage-project-form #update_project_form .modal-body table thead th {
  vertical-align: middle;
}

.table-w {
  width: 95%;
  margin: auto;
}

#manage_project_analysis #ManageProject_analysis .table-s {
  width: 100%;
  margin: auto;
}

.modal-more-projects .manage-project-form .modal-header {
  padding: 0 0 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #c0c0c0;
}

.modal-more-projects .manage-project-form .modal-body {
  overflow: hidden;
  padding: 0;
}

.modal-more-projects .manage-project-form .modal-header h5 {
  padding-left: 0px;
  margin-top: 0px;
}

.modal-more-projects .manage-project-form .modal-header h5 b {
  color: var(--color-black);
  font-weight: bold;
  font-size: 16px;
}

.modal-more-projects .manage-project-form h5.firstid {
  padding-left: 0px;
  margin-top: 0px;
}

.modal-more-projects .manage-project-form h5 {
  color: var(--color-black);
  padding-left: 25px;
  margin-top: 0px;
  font-size: 14px;
}

.modal-more-projects .manage-project-form h5 b {
  font-weight: bold;
}

.modal-more-projects .manage-project-form h6 {
  margin-bottom: 0px !important;
  margin-left: 10px;
  font-weight: 300;
  font-size: 13px;
  color: #67757c;
}

.modal-more-projects .manage-project-form .switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 18px;
}

.modal-more-projects .manage-project-form .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.modal-more-projects .manage-project-form .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.modal-more-projects .manage-project-form .slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.modal-more-projects .manage-project-form input:checked+.slider {
  background-color: #64c265;
}

.modal-more-projects .manage-project-form input:focus+.slider {
  box-shadow: 0 0 1px #64c265;
}

.modal-more-projects .manage-project-form input:checked+.slider:before {
  -webkit-transform: translateX(22px);
  -ms-transform: translateX(22px);
  transform: translateX(22px);
}

/* Rounded sliders */

.modal-more-projects .manage-project-form .slider.round {
  border-radius: 34px;
}

.modal-more-projects .manage-project-form .slider.round:before {
  border-radius: 50%;
}

#progressbar .last_active h6 {
  margin-left: -15px;
  width: 80px;
  font-size: 10px;
}

#progressbar li:first-child .last_active h6 {
  margin-left: -17px;
  max-width: 110px;
  text-align: center;
}

#progressbar li:last-child .last_active h6 {
  margin-left: -17px;
  max-width: 110px;
  text-align: center;
}

.modal-more-projects .manage-project-form .modal-header .modal-left {
  order: 0;
  width: 65%;
}

.modal-more-projects .manage-project-form .modal-header .modal-right {
  order: 0;
  width: 35%;
}

.modal-more-projects .manage-project-form .modal-header .modal-right h6 {
  text-align: right;
  margin-bottom: 0px !important;
  font-size: 14px;
}

.modal-more-projects .manage-project-form .modal-header .close {
  position: absolute;
  right: 12px;
  top: 8px;
}

.modal-more-projects .manage-project-form .modal-header .close:focus {
  outline: none;
  border: none;
}

.manage-project-list .card-body .text-end a {
  font-size: var(--font-az-14);
  font-weight: 500;
  color: var(--primary-button-bg);
  margin-right: 0px;
}

.manage-project-list .card-box .card-body .text-end i {
  font-size: var(--font-az-14);
  color: var(--primary-button-bg);
  margin-right: 0px;
}

.manage-project-list .card .card-opecity {
  padding: 10px;
}

.manage-project-list .card-box .card-body .ct_color_green {
  padding-left: 12px;
}

.manage-project-list .card-box .card-body .ct_color_gray {
  font-size: 12px;
  margin-bottom: 0px;
}

.manage-project-list .card-box .card-body h5.firstid b {
  font-weight: bold;
  color: var(--color-black);
}

.manage-project-list .switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 18px;
}

.manage-project-list .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.manage-project-list .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.manage-project-list .slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 2px;
  bottom: 2px;
  background-color: var(--bg-white-background);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.manage-project-list input:checked+.slider {
  background-color: #64c265;
}

.manage-project-list input:focus+.slider {
  box-shadow: 0 0 1px #64c265;
}

.manage-project-list input:checked+.slider:before {
  -webkit-transform: translateX(22px);
  -ms-transform: translateX(22px);
  transform: translateX(22px);
}

/* Rounded sliders */

.manage-project-list .slider.round {
  border-radius: 34px;
}

.manage-project-list .slider.round:before {
  border-radius: 50%;
}

.manage-project-list h5 {
  color: var(--color-black);
  padding-left: 25px;
  margin-top: 0px;
  font-size: 14px;
}

.manage-project-list h6 {
  margin-bottom: 0px !important;
  margin-left: 10px;
  font-size: 13px;
  color: var(--color-dark-gray);
  font-weight: 300;
}

.manage-project-list .card-box .card-body i {
  font-size: 14px;
  margin-right: 0px;
  color: var(--color-light-gray);
}

.manage-project-list .card-box .card-body h5.firstid {
  padding-left: 0;
}

.manage-project-list .card .card-opecity h5.title {
  color: var(--color-white);
  padding-left: 0;
  font-size: 16px;
}

.manage-project-list h5.ct_color_green {
  color: var(--primary-button-bg) !important;
}

.manage-project-list .more-projects .three_more a {
  font-size: 14px;
}

.manage-project-list .more-projects .three_more img {
  width: 10px;
}

.modal-more-projects .modal-more-projects-content {
  border-radius: 6px;
  padding: 30px 30px 15px;
}

/* .modal-more-projects .modal-dialog {
  top: -40%;
} */

.pre-check-accodion .card {
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 0;
}

.pre-check-accodion .card .card-header {
  border-bottom: 0;
  padding: 20px;
  transition: none;
}

.pre-check-accodion .card .card-header:hover {
  border-bottom: 0;
  padding: 20px;
  transition: none;
}

.pre-check-accodion .card .card-header .title-head-a:hover h4 {
  color: #242a33;
  transition: none !important;
}

.pre-check-accodion .card .card-header:hover .title-head-a {
  background: var(--bg-white-background) !important;
  transition: none !important;
  cursor: pointer;
}

.pre-check-accodion .card .card-header .title-head-a h4 {
  font-size: 24px;
  margin-bottom: 0;
  transition: none;
  color: #242a33;
}

.pre-check-accodion .card .card-header .title-head-a h4:hover {
  color: #242a33;
}

.pre-check-accodion .card .card-header .title-head-a p {
  font-weight: 300;
  font-size: 13px;
  color: #333;
  margin-top: 3px;
}

.pre-check-accodion .card .card-header .title-head-a:not(.collapsed) {
  background: #f0f0f0 !important;
  transition: none !important;
  cursor: pointer;
}

.pre-check-accodion .card .card-header .collapsed {
  background: #f0f0f0 !important;
  transition: none !important;
  cursor: pointer;
  position: relative;
}

.pre-check-accodion .card .card-header .collapsed b {
  width: 55px;
  text-align: center;
  margin-left: -15px;
  margin-right: 15px;
  align-items: center;
  margin-top: -15px;
  background: #747983;
  font-size: 25px;
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
}

.pre-check-accodion .card .card-header .title-head-a:not(.collapsed) b {
  width: 55px;
  text-align: center;
  margin-left: -15px;
  margin-right: 15px;
  align-items: center;
  margin-top: -15px;
  background: #747983;
  font-size: 25px;
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
}

.pre-check-accodion .card .card-header .collapsed:hover {
  background: #f0f0f0 !important;
  transition: none !important;
  cursor: pointer;
}

.pre-check-accodion .card .card-header .title-head-a h4 span {
  margin: 0;
  color: var(--color-white);
  background: #0066cc;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 5px;
}

.pre-check-accodion .card .card-header .title-head-a h4 span span {
  padding: 0px;
}

.pre-check-accodion .card .card-header .title-head-a h4 span span:last-child {
  padding: 2px 1px 2px 1px;
}

.pre-check-accodion .card .card-header .title-head-a h4 span span:first-child {
  padding: 2px 1px 2px 2px;
}

.pre-check-accodion .card .card-header .title-head-a:not(.collapsed):after {
  background-image: url("../images/right-arrow-big-dwn.png");
  transform: rotate(-180deg);
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  right: 15px;
  transition: transform 0.2s ease-in-out;
  top: 25px;
  background-size: 100%;
}

.pre-check-accodion .card .card-header .collapsed::after {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: auto;
  content: "";
  background-image: url("../images/right-arrow-big-dwn.png");
  background-repeat: no-repeat;
  background-size: 100%;
  transition: transform 0.2s ease-in-out;
  position: absolute;
  right: 15px;
  top: 30px;
}

.manage-project-list #progressbar strong {
  font-size: 14px;
}

.modal-more-projects #progressbar strong {
  font-size: 12px;
  display: block;
  text-align: center;
  width: 100px;
  left: -16%;
}

.modal-more-projects #progressbar li:last-child {
  width: 6% !important;
}

.modal-more-projects #progressbar li:last-child strong {
  left: -75%;
}

.modal-more-projects .manage-project-form h5 span.more {
  color: var(--primary-button-bg);
}

.skin-blue .main-footer {
  text-align: center;
}

.pre-check-accodion .card table tbody td.rows-multi {
  position: relative;
}

.pre-check-accodion .card table tbody td.rows-multi div {
  position: absolute;
  width: auto;
  top: 50%;
  transform: translate(0, -50%);
}

.manage-project-form .ManageProjectCheckbox-last {
  margin: 3px 0 0;
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
}

.manage-project-form .ManageProjectCheckbox-last .form-check {
  padding-left: 0;
}

.manage-project-form .ManageProjectCheckbox-last .form-check input {
  position: relative;
}

.ManageProjectCheckbox-last {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.manage-project-form .update-summary {
  overflow: auto;
}

.manage-project-form .summary-last-th {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
}

.todo-section .two .text-blue b {
  color: var(--color-light-gray);
  font-size: 12px;
}

.todo-section .two .checkbox-completed ul li .form-check input.ManageProjectCheckbox {
  left: 7px !important;
}

.addprojectform .modal-body h2 {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-dark-gray);
  position: relative;
}

.project_chat_todo .modal-body {
  max-height: 320px;
}

.addprojectform .modal-body h2:after {
  position: absolute;
  left: 75%;
  content: "";
  height: 60px;
  border-right: 1px solid var(--border-color);
  width: 2px;
  top: -12px;
  transform: translate(-75%, 0);
}

.manage-project-form .addprojectform .summary {
  color: var(--color-light-gray);
  font-size: 12px;
  padding-bottom: 5px;
}

#ManageProject_formupdate h2 {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-dark-gray);
  position: relative;
}

#ManageProject_formupdate h2:after {
  position: absolute;
  left: 90%;
  content: "";
  height: 60px;
  border-right: 1px solid var(--border-color);
  width: 2px;
  top: -12px;
  transform: translate(-75%, 0);
}

#ManageProject_cu_result .modal-body h2 {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-dark-gray);
  position: relative;
}

#ManageProject_cu_result .modal-body h2:after {
  position: absolute;
  left: 90%;
  content: "";
  height: 60px;
  border-right: 1px solid var(--border-color);
  width: 2px;
  top: -12px;
  transform: translate(-75%, 0);
}

.field-projectresult-is_same_as_cooling_rms_fee label {
  margin-left: -15px !important;
}

.field-projectresult-is_same_as_cooling_remarks label {
  margin-left: -20px !important;
}

#ManageProject_formupdate .summary {
  color: var(--color-light-gray);
  font-size: 12px;
  padding-bottom: 5px;
}

.todo-section .two .checkbox-completed ul li label span del {
  color: rgba(101, 189, 248, 0.6);
}

#update_project_form h2 {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-dark-gray);
  position: relative;
}

#update_project_form h2:after {
  position: absolute;
  left: 80%;
  content: "";
  height: 60px;
  border-right: 1px solid var(--border-color);
  width: 2px;
  top: -12px;
  transform: translate(-75%, 0);
}

#update_project_form .summary {
  color: var(--color-light-gray);
  font-size: 12px;
  padding-bottom: 5px;
}

#ManageProject_analysis .one.tooltip {
  margin-top: 5px;
}

#ManageProject_analysis .two.tooltip {
  margin-top: 0px;
  margin-left: -10px;
}

#progressbar {
  padding-left: 0px;
}

.add_progress-recom {
  margin-left: 20px;
}

#progressbar {
  padding-left: 0px;
}

.manage-project-list #progressbar li:last-child {
  width: 10%;
}

.manage-project-list #progressbar li:first-child strong {
  left: inherit;
  width: 70px;
  display: block;
  margin-left: -15px;
}

.manage-project-list #progressbar li {
  width: 28%;
  text-align: center;
}

.manage-project-list #progressbar .last_active h6 {
  font-size: 10px;
  margin-left: -15px;
  width: 70px;
}

.manage-project-list #progressbar strong {
  font-size: 14px;
  left: -30%;
}

.manage-project-list #progressbar li:last-child strong {
  left: -5%;
}

.modal-more-projects .modal-lg {
  max-width: 700px !important;
}

.modal-more-projects #progressbar li:first-child strong {
  left: inherit;
  width: 70px;
  display: block;
  margin-left: -13px;
  text-align: center;
}

.modal-more-projects li:first-child .last_active h6 {
  margin-left: -20px;
  max-width: 110px;
}

.pl-36 {
  padding-left: 36px !important;
}

.rms_fee_table td.rms_fee_td {
  padding: 5px !important;
  border-bottom: none !important;
}

.rms_fee_table thead th {
  border-top: 1px solid #f4f4f4 !important;
}

.esti_table thead th {
  border-top: 1px solid #f4f4f4 !important;
}

#ManageProject_analysis_result .one.tooltip,
#sms-log-list .one.tooltip {
  margin-top: 5px;
  opacity: 1;
  z-index: 1;
}

#ManageProject_analysis_result .table-w table td,
#ManageProject_analysis_result .table-w table th {
  text-align: center;
  color: var(--color-black);
  border: 1px solid var(--border-color) !important;
}

@media (max-width: 1920px) {
  .info-col .text-lable {
    max-width: 70px;
  }

  #progressbar {
    padding-left: 0px;
  }

  .manage-project-list #progressbar li:last-child {
    width: 12%;
  }

  .manage-project-list #progressbar li:first-child strong {
    left: inherit;
    width: 70px;
    display: block;
    margin-left: -15px;
  }

  .manage-project-list #progressbar li {
    width: 27%;
    text-align: center;
  }

  .manage-project-list #progressbar .last_active h6 {
    font-size: 10px;
    margin-left: -15px;
    width: 70px;
  }

  .manage-project-list #progressbar strong {
    font-size: 12px;
    left: -30%;
  }

  .manage-project-list #progressbar li:last-child strong {
    left: -3%;
  }
}

@media (max-width: 1820px) {
  .manage-project-list #progressbar strong {
    font-size: 12px;
    left: -32%;
  }

  .manage-project-list #progressbar li:last-child {
    width: 40px;
  }
}

@media (max-width: 1440px) {
  .manage-project-list #progressbar strong {
    font-size: 12px;
    left: -17%;
    width: 85px;
    display: block;
  }

  .manage-project-list #progressbar li:last-child {
    width: 8%;
  }

  .manage-project-list #progressbar li:last-child strong {
    left: -65%;
  }
}

@media (max-width: 1366px) {
  .manage-project-list #progressbar strong {
    font-size: 12px;
    left: -19%;
  }
}

@media (max-width: 1199px) {
  .info-col .text-lable {
    max-width: 70px;
  }

  #progressbar {
    padding-left: 25px;
  }

  .manage-project-list #progressbar li:first-child strong {
    left: inherit;
    width: 70px;
    display: block;
    margin-left: -12px;
  }

  .manage-project-list #progressbar li {
    width: 27%;
    text-align: center;
  }

  .manage-project-list #progressbar .last_active h6 {
    font-size: 10px;
    margin-left: -15px;
    width: 70px;
  }

  .manage-project-list #progressbar strong {
    font-size: 12px;
    left: -31%;
  }

  .manage-project-list #progressbar li:last-child strong {
    left: 0px;
  }

  .manage-project-list #progressbar li:last-child strong {
    left: -23px;
  }

  #card-list .card-box {
    display: block;
  }

  #card-list .card-box .grid-3 {
    display: block;
  }
}

@media (max-width: 1024px) {
  .manage-project-list #progressbar strong {
    font-size: 12px;
    left: -25%;
  }
}

@media (max-width: 991px) {
  .manage-project-list #progressbar li:first-child strong {
    left: inherit;
    width: 70px;
    display: block;
    margin-left: -17px;
  }

  .manage-project-list #progressbar li {
    width: 27%;
    text-align: center;
  }

  .manage-project-list #progressbar .last_active h6 {
    font-size: 10px;
    margin-left: -15px;
    width: 70px;
  }

  .manage-project-list #progressbar strong {
    font-size: 12px;
    left: -20%;
  }

  .manage-project-list #progressbar li:last-child strong {
    left: 0px;
  }

  .manage-project-list #progressbar li:last-child strong {
    left: -23px;
  }
}

@media (max-width: 767px) {
  .info-col .text-lable {
    max-width: 80px;
  }

  .modal-more-projects .manage-project-form .modal-header .modal-left {
    width: 100%;
  }

  .modal-more-projects .manage-project-form .modal-header .modal-right {
    width: 100%;
  }

  .modal-more-projects .manage-project-form .modal-header .modal-right h6 {
    margin-left: 0;
    text-align: left;
  }

  .modal-more-projects .modal-more-projects-content {
    padding: 30px 15px 15px;
  }

  .manage-project-list #progressbar strong {
    font-size: 12px;
    left: -18px;
  }

  .manage-project-list #progressbar li {
    width: 27%;
    text-align: center;
  }

  .manage-project-list #progressbar li:first-child strong {
    left: inherit;
    width: 70px;
    display: block;
    margin-left: -15px;
  }

  .manage-project-list #progressbar li:last-child strong {
    left: -23px;
  }

  .manage-project-list #progressbar li:last-child {
    width: 12%;
  }

  .modal-more-projects #progressbar strong {
    font-size: 12px;
    left: -25%;
    width: 85px;
    display: block;
  }

  .modal-more-projects #progressbar .last_active h6 {
    margin-left: -15px;
    width: 70px;
    font-size: 10px;
  }

  .modal-more-projects #progressbar li:last-child strong {
    left: -23px;
  }

  .modal-more-projects #progressbar li {
    width: 26%;
  }

  .modal-more-projects #progressbar li:last-child {
    width: 12% !important;
  }

  .modal-more-projects .manage-project-form .card-content .row .col-12:first-child .row .col-9:first-child {
    padding-bottom: 10px;
  }

  .modal-more-projects .manage-project-form .card-content .row .col-12:first-child {
    padding-bottom: 0;
  }

  .manage-project-list #progressbar .last_active h6 {
    font-size: 10px;
    margin-left: -15px;
    width: 70px;
  }

  .skin-blue header.main-header a.logo {
    display: none;
  }

  .skin-blue .main-footer {
    text-align: center;
  }

  #progressbar {
    margin-left: 0;
    padding-left: 0;
  }

  .modal-more-projects #progressbar li:first-child strong {
    margin-left: -15px;
  }

  #card-list .card-box {
    display: block;
  }

  #card-list .card-box .grid-3 {
    display: block;
  }
}

@media (max-width: 414px) {
  .manage-project-list #progressbar strong {
    font-size: 12px;
    left: -25%;
  }
}

@media (max-width: 320px) {
  .manage-project-list .card-body .text-end a {
    font-size: 12px;
  }

  .manage-project-list .card-box .card-body .text-end i {
    font-size: 12px;
  }

  .modal-more-projects .manage-project-form .card-box .card-body .text-end a {
    font-size: 12px;
  }

  .modal-more-projects .manage-project-form .card-box .card-body .text-end a i {
    font-size: 12px;
  }

  .manage-project-list #progressbar li:first-child strong {
    left: inherit;
    width: 70px;
    display: block;
    margin-left: -15px;
  }

  .manage-project-list #progressbar .last_active h6 {
    margin-left: -15px;
  }
}

@media (min-width: 2160px) {
  #progressbar {
    padding-left: 0px;
  }

  .manage-project-list #progressbar li:last-child {
    width: 34px;
  }

  .manage-project-list #progressbar li:first-child strong {
    left: inherit;
    width: 70px;
    display: block;
    margin-left: -15px;
  }

  .manage-project-list #progressbar li {
    width: 28%;
    text-align: center;
  }

  .manage-project-list #progressbar .last_active h6 {
    font-size: 10px;
    margin-left: -15px;
    width: 70px;
  }

  .manage-project-list #progressbar strong {
    font-size: 14px;
    left: -37%;
  }

  .manage-project-list #progressbar li:last-child strong {
    left: 5%;
  }
}

@media (min-width: 3000px) {
  .manage-project-list #progressbar strong {
    left: -13%;
    width: 100px;
    display: block;
  }

  .manage-project-list #progressbar li:last-child strong {
    left: -55%;
  }
}

@media (min-width: 4320px) {
  #progressbar {
    padding-left: 0px;
  }

  .manage-project-list #progressbar li:last-child {
    width: 5%;
  }

  .manage-project-list #progressbar li:first-child strong {
    left: inherit;
    width: 70px;
    display: block;
    margin-left: -15px;
  }

  .manage-project-list #progressbar li {
    width: 28%;
    text-align: center;
  }

  .manage-project-list #progressbar .last_active h6 {
    font-size: 10px;
    margin-left: -15px;
    width: 70px;
  }

  .manage-project-list #progressbar strong {
    font-size: 14px;
    left: -10%;
    width: 100px;
  }

  .manage-project-list #progressbar li:last-child strong {
    left: -44%;
  }
}

/*---------------End Web css ----------------*/

/*---------------End New design style ---------------*/

.fcu {
  max-width: 40px;
  width: 100%;
  display: inline-block;
}

.analysis_price_checkbox {
  opacity: 1 !important;
  left: 0 !important;
  position: unset !important;
  width: 20px;
  height: 20px;
  vertical-align: bottom;
}

.field-manageproject-is_same_as_cooling_price label {
  padding-left: 3.9vw;
}

.recommendation_remarks_checkbox,
.is_same_as_cooling_rms_fee {
  opacity: 1 !important;
  left: 0 !important;
  position: unset !important;
  width: 20px;
  height: 20px;
  vertical-align: bottom;
}

.field-manageproject-is_same_as_cooling_remarks .checkbox {
  margin-top: 0px;
}

.vertical-align-inherit {
  vertical-align: inherit !important;
}

.manage_project_nav>li>a {
  /* border-radius: 5px !important; */
}

#customer_result .result_nav li a {
  border-radius: 5px !important;
}

#customer_result .result_nav li a.active {
  position: relative;
  border-top: none !important;
}

#customer_result .result_nav {
  padding-bottom: 10px;
}

#customer_result .result_nav li a.active:after {
  content: "";
  position: absolute;
  border-left: 10px solid transparent !important;
  border-top: 10px solid var(--border-color);
  bottom: -6px;
  left: 52%;
  transform: rotate(315deg) translate(-50%, -50%);
  -webkit-transform: rotate(315deg) translate(-50%, -50%);
}

#report_approval .overflow-auto h5 {
  display: flex;
}

#report_approval .overflow-auto h5 a {
  width: 370px;
}

._analysis_result .form-group {
  margin-bottom: unset;
}

._analysis_result .table>tbody>tr>td,
._analysis_result .table>tbody>tr>th,
._analysis_result .table>tfoot>tr>td,
._analysis_result .table>tfoot>tr>th,
._analysis_result .table>thead>tr>td,
._analysis_result .table>thead>tr>th {
  padding: 5px;
}

._analysis_result .w-100 {
  min-width: 100px;
}

._analysis_result .cop_result,
._recommendation_result .cop_result {
  color: green;
}

._analysis_result .cop_result_green,
._recommendation_result .cop_result_green {
  color: green;
}

._analysis_result .namedate {
  list-style: none;
  margin: 0;
  padding: 0;
}

._analysis_result .namedate li {
  display: inline-block;
}

._analysis_result .namedate li:first-child {
  max-width: 170px;
  min-width: 170px;
}

._analysis_result .namedate li:first-child h5 {
  line-height: 18px;
  font-size: 16px;
  font-weight: 400;
  color: #67757c;
}

._analysis_result .namedate li h5 {
  font-size: 16px;
  font-weight: 400;
  color: #67757c;
}

._analysis_result .analysis_price_checkbox_result {
  opacity: 1 !important;
  left: 0 !important;
  position: unset !important;
  width: 20px;
  height: 20px;
  vertical-align: bottom;
}

._analysis_result .tooltip {
  opacity: 1;
}

._cu_result .form-group {
  margin-bottom: unset;
}

._recommendation_result .form-group {
  margin-bottom: unset;
}

.ck-editor__editable {
  min-height: 200px !important;
  max-height: 400px !important;
}
.note-toolbar {
display: flex !important;
flex-wrap: wrap !important;
}
.note-btn-group {
  margin-right: 5px;
}
.note-editor {
  border: 1px solid var(--border-color);
  padding: 10px;
}

._recommendation_result .ck-editor__editable {
  height: 300px !important;
}

.rms_fee_td {
  display: inline-flex !important;
  align-items: baseline !important;
  padding: unset !important;
}

._recommendation_result .rms_fee_td {
  display: inline-flex !important;
  align-items: baseline !important;
  padding: unset !important;
}

._recommendation_result .recommendation_remarks_checkbox {
  margin: 0 !important;
}

._recommendation_result .field-manageproject-is_same_as_cooling_remarks label {
  padding-left: 0;
}

._analysis_result .cu_top_text,
._recommendation_result .cu_top_text {
  left: -30px !important;
}

.manage_project_analysis .form-group {
  margin-bottom: unset;
}

.manage_project_analysis .table>tbody>tr>td,
.manage_project_analysis .table>tbody>tr>th,
.manage_project_analysis .table>tfoot>tr>td,
.manage_project_analysis .table>tfoot>tr>th,
.manage_project_analysis .table>thead>tr>td,
.manage_project_analysis .table>thead>tr>th {
  padding: 5px;
}

.fcu {
  max-width: 40px;
  width: 100%;
  display: inline-block;
}

.analysis_price_checkbox {
  opacity: 1 !important;
  left: 0 !important;
  position: unset !important;
  width: 20px;
  height: 20px;
  vertical-align: bottom;
}

.field-manageproject-is_same_as_cooling_price label {
  padding-left: 3.9vw;
}

.recommendation_remarks_checkbox,
.is_same_as_cooling_rms_fee {
  opacity: 1 !important;
  left: 0 !important;
  position: unset !important;
  width: 20px;
  height: 20px;
  vertical-align: bottom;
}

.field-manageproject-is_same_as_cooling_remarks .checkbox {
  margin-top: 0px;
}

.vertical-align-inherit {
  vertical-align: inherit !important;
}

.manage_project_nav>li>a {
  /* border-radius: 5px !important; */
}

#customer_result .result_nav li a {
  border-radius: 5px !important;
}

#customer_result .result_nav li a.active {
  position: relative;
  border-top: none !important;
}

#customer_result .result_nav {
  padding-bottom: 10px;
}

#customer_result .result_nav li a.active:after {
  content: "";
  position: absolute;
  border-left: 10px solid transparent !important;
  border-top: 10px solid var(--border-color);
  bottom: -6px;
  left: 52%;
  transform: rotate(315deg) translate(-50%, -50%);
  -webkit-transform: rotate(315deg) translate(-50%, -50%);
}

#report_approval .overflow-auto h5 {
  display: flex;
}

#report_approval .overflow-auto h5 a {
  width: 370px;
}

._analysis_result .form-group {
  margin-bottom: unset;
}

._analysis_result .table>tbody>tr>td,
._analysis_result .table>tbody>tr>th,
._analysis_result .table>tfoot>tr>td,
._analysis_result .table>tfoot>tr>th,
._analysis_result .table>thead>tr>td,
._analysis_result .table>thead>tr>th {
  padding: 5px;
}

._analysis_result .w-100 {
  min-width: 100px;
}

._analysis_result .cop_result,
._recommendation_result .cop_result {
  color: green;
}

._analysis_result .cop_result_green,
._recommendation_result .cop_result_green {
  color: green;
}

._analysis_result .namedate {
  list-style: none;
  margin: 0;
  padding: 0;
}

._analysis_result .namedate li {
  display: inline-block;
}

._analysis_result .namedate li:first-child {
  max-width: 170px;
  min-width: 170px;
}

._analysis_result .namedate li:first-child h5 {
  line-height: 18px;
  font-size: 16px;
  font-weight: 400;
  color: #67757c;
}

._analysis_result .namedate li h5 {
  font-size: 16px;
  font-weight: 400;
  color: #67757c;
}

._analysis_result .analysis_price_checkbox_result {
  opacity: 1 !important;
  left: 0 !important;
  position: unset !important;
  width: 20px;
  height: 20px;
  vertical-align: bottom;
}

._analysis_result .tooltip {
  opacity: 1;
}

._cu_result .form-group {
  margin-bottom: unset;
}

._recommendation_result .form-group {
  margin-bottom: unset;
}

._recommendation_result .ck-editor__editable {
  height: 300px !important;
}

._analysis_result .cu_top_text,
._recommendation_result .cu_top_text {
  left: -30px !important;
}

.manage_project_analysis .form-group {
  margin-bottom: unset;
}

/*---------Help Desk css------------*/

.chatbox-section .help-desk {
  cursor: pointer;
  height: 50px;
  width: 50px;
  background: var(--bg-black-background);
  color: var(--color-white);
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  font-size: 24px;
  position: fixed;
  bottom: 20px;
  right: 1.5em;
  /* right: 8em; */
  z-index: 99999999;
}

.chatbox-section .help-modal {
  background: none;
  bottom: 0;
  right: 0;
  position: absolute;
}

.chatbox-section .instructions {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chatbox-section .instructions h1 {
  text-align: center;
  font-size: calc(100vw / 7);
}

/* .chatbox-section .chat-window {
position: fixed;
bottom: 0;
right: 4em;
width: 350px;
height: 570px;
transition: all ease-out 250ms;
opacity: 1;
background: #242a33;
z-index: 99;
} */

.chatbox-section .chat-window {
  position: relative;
  bottom: 0;
  right: 0px;
  width: 22%;
  height: 100vh;
  transition: all ease-out 250ms;
  /* opacity: 1; */
  visibility: visible;
  background: #242a33;
  z-index: 999999;
  min-height: 100%;
}

/* .notification-dashboard .chatbox-section .chat-window {
  width: 410px !important;
  -webkit-width: 410px !important;
  -moz-width: 410px !important;
} */

.chatbox-section .chat-window.docked {
  transform: translateY(375px);
  /* opacity: 0; */
  visibility: hidden;
}

.chatbox-section .chat-window.docked .chat-header span {
  opacity: 0;
}

.chatbox-section .chat-window p {
  margin: 0;
}

.chatbox-section .chat-window .chat-header {
  height: 45px;
  border-radius: 6px 6px 0 0;
  background: #111;
  position: relative;
  cursor: pointer;
}

.chatbox-section .chat-window .chat-header p {
  display: block;
  padding: 0 15px;
  color: var(--color-white);
  font-weight: 500;
  line-height: 45px;
}

.chatbox-section .chat-window .chat-header span {
  opacity: 1;
  position: absolute;
  display: block;
  top: calc(50% - (1em / 2));
  right: calc(1.5em - (1em / 2));
  width: 1em;
  height: 1em;
  transition-delay: 250ms;
  transition: all ease 350ms;
}

.chatbox-section .chat-window .chat-header span:before,
.chatbox-section .chat-window .chat-header span:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - (5px / 2));
  left: 50%;
  width: 70%;
  height: 2px;
  background: var(--bg-white-background);
  transform-origin: 50% 50%;
  border-radius: 20px;
}

.chatbox-section .chat-window .chat-header span:before {
  transform: rotate(45deg);
}

.chatbox-section .chat-window .chat-header span:after {
  transform: rotate(-45deg);
}

/* .chat-window .chat-header:before {
content: "";
position: absolute;
display: block;
top: calc(50% - (0.7em / 2));
left: calc(1em - (0.7em / 2));
width: 0.7em;
height: 0.7em;
border-radius: 100%;
background: var(--bg-white-background);
} */

/* .chat-window .chat-header.online:before {
background: #43a047;
}
.chat-window .chat-header.offline:before {
background: #c62828;
} */

.chatbox-section .chat-window .chat-body {
  height: calc(640px - (45px + 70px));
  border: 1px solid #242a33;
  background: #242a33;
  border-top: 0;
  border-bottom: 0;
  position: relative;
}

.chatbox-section .chat-window .chat-body .message-container {
  position: relative;
  top: 0px;
  left: 0;
  width: 100%;
  height: 77vh;
  overflow-y: auto;
  overflow-x: hidden;
  margin-top: 0px;
  padding-right: 0px;
}

.chatbox-section .chat-window .chat-body .message {
  position: relative;
  padding: 10px 10px 10px 10px;
  margin-bottom: 0;
  border-bottom: 1px dotted #cfd8dc;
  background: var(--bg-white-background);
}

.chatbox-section .chat-window .chat-body .message.first {
  border-radius: 10px !important;
}

.chatbox-section .chat-window .chat-body .message:hover {
  background: #edecec;
}

.chatbox-section .chat-window .chat-body .message:first-child {
  border-radius: 10px 10px 0 0;
}

.chatbox-section .chat-window .chat-body .message:last-child {
  border-radius: 0 0 10px 10px;
}

.chatbox-section .chat-window .chat-body .message .profile {
  position: absolute;
  top: 1em;
  left: 0.7em;
}

.chatbox-section .chat-window .chat-body .message .profile img {
  width: 40px;
  height: auto;
  border-radius: 100%;
}

.chatbox-section .chat-window .chat-body .message .message-meta {
  width: 100%;
  height: 25px;
  float: right;
  overflow: hidden;
}

.chatbox-section .chat-window .chat-body .message .message-meta p {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  margin-top: 5px;
}

.chatbox-section .chat-window .chat-body .message .message-meta p:last-child {
  font-size: 0.7em;
  vertical-align: bottom;
  margin-top: 7px;
  float: right;
}

.chatbox-section .chat-window .chat-body .message .message-content {
  width: 100%;
  /* height: 40px; */
  float: right;
}

.chatbox-section .chat-window .chat-body .message .message-content p {
  text-align: left;
  line-height: 1.2;
  font-size: 0.9em;
  color: #263238;
  font-weight: 500;
}

.chatbox-section .chat-window .chat-body .message .message-content p+p {
  margin-top: 0.5em;
}

.chatbox-section .chat-window .chat-body .message:after {
  content: "";
  display: block;
  width: 100%;
  clear: both;
}

.chatbox-section .chat-window .chat-body .message.user .profile {
  left: auto;
  right: 0.7em;
}

.chatbox-section .chat-window .chat-body .message.user .message-meta,
.chatbox-section .chat-window .chat-body .message.user .message-content {
  float: left;
}

.chatbox-section .chat-window .chat-body .message.user .message-meta p {
  float: right;
}

.chatbox-section .chat-window .chat-body .message.user .message-meta p:last-child {
  float: left;
}

.chatbox-section .chat-window .chat-body .message.user .message-content p {
  text-align: right;
}

.chatbox-section .chat-window .chat-footer {
  height: 70px;
  border: 1px solid #263238;
  border-top: 0;
  border-bottom: 0;
  margin-top: 0;
  padding: 15px 15px;
  display: none;
}

.chatbox-section .chat-window .chat-footer a {
  text-align: left;
  line-height: 1.2;
  font-size: 12px;
  color: var(--color-white);
  font-weight: 400;
}

.chatbox-section .chat-window .chat-footer a i {
  font-size: 12px;
  color: var(--color-white);
  margin-right: 5px;
}

.chatbox-section .hide {
  opacity: 0 !important;
}

/*the container must be positioned relative:*/

.searcbox .autocomplete {
  position: relative;
  display: block;
  position: relative;
  float: right;
}

.searcbox .autocomplete i {
  content: "";
  position: absolute;
  left: 14px;
  top: 13px;
  color: #242a33;
}

.searcbox input {
  border: 1px solid var(--border-color);
  background-color: var(--bg-white-background);
  padding: 5px 15px 5px 30px;
  font-size: 14px;
  border-radius: 50px;
  width: 235px;
  height: 40px;
}

.searcbox input:focus {
  outline: none;
}

.video-iframe iframe {
  width: 100%;
  height: 250px;
  border: 1px solid #eee;
  padding: 5px;
}

.grid-3 .post-content {
  height: 100px !important;
}

.chatbox-section .searcbox .autocomplete {
  position: relative;
  display: block;
  width: 100% !important;
  margin: auto;
  position: relative;
  padding: 0 15px;
}

.chatbox-section .searcbox .autocomplete i {
  content: "";
  position: absolute;
  left: 25px;
  top: 10px;
  color: #242a33;
}

.chatbox-section .searcbox input {
  border: 1px solid transparent;
  background-color: #f1f1f1;
  padding: 5px 15px 5px 30px;
  font-size: 14px;
  border-radius: 50px;
}

.chatbox-section .searcbox input:focus {
  outline: none;
}

.chatbox-section .chat-window .chat-body .searcbox {
  padding: 15px 0;
}

.chatbox-section .search-video {
  padding: 0 15px 15px;
  overflow: hidden;
}

.chatbox-section .search-video span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.chatbox-section .search-video span h5 {
  color: var(--color-white);
  margin-bottom: 0;
  font-size: 13px;
}

.chatbox-section .search-video span a {
  color: var(--color-white);
  text-decoration: underline;
  font-size: 13px;
  font-weight: 400;
}

.chatbox-section .search-video span a:hover {
  text-decoration: underline;
}

.chatbox-section .search-video iframe {
  width: 100%;
  height: 90px;
}

.chatbox-section .search-video p {
  display: inline-block;
  font-size: 12px;
  font-weight: 300;
  color: var(--color-white);
  margin-top: 2px;
}

.chatbox-section .search-video .media-list .col-6:first-child {
  padding: 0 0.25rem 0 15px !important;
}

.chatbox-section .search-video .media-list .col-6:last-child {
  padding: 0 15px 0 0.25rem;
}

.chatbox-section .popular-msg {
  padding: 0 12px 15px 15px;
}

.chatbox-section .popular-msg span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.chatbox-section .popular-msg span h5 {
  color: var(--color-white);
  margin-bottom: 0;
  font-size: 13px;
}

.chatbox-section .popular-msg span a {
  color: var(--color-white);
  text-decoration: underline;
  font-size: 13px;
  font-weight: 400;
}

.chatbox-section .popular-msg span a:hover {
  text-decoration: underline;
}

.chatbox-section .searcbox input[type="text"] {
  background-color: #f1f1f1;
  width: 100%;
}

.chatbox-section .searcbox input[type="submit"] {
  background-color: DodgerBlue;
  color: var(--color-white);
  cursor: pointer;
}

.chatbox-section .searcbox .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;
}

.chatbox-section .searcbox .autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: var(--bg-white-background);
  border-bottom: 1px solid #d4d4d4;
}

/*when hovering an item:*/

.chatbox-section .searcbox .autocomplete-items div:hover {
  background-color: #e9e9e9;
}

/*when navigating through the items using the arrow keys:*/

.chatbox-section .searcbox .autocomplete-active {
  background-color: DodgerBlue !important;
  color: var(--color-white);
}

/* ===== Scrollbar CSS ===== */

.chatbox-section .chat-window .chat-body .message-container {
  scrollbar-width: 3px;
  scrollbar-color: #465161 #e9e9e9;
  -webkit-scrollbar-width: 3px;
  -moz-scrollbar-width: 3px;
}

.chatbox-section .chat-window .chat-body .message-container::-webkit-scrollbar,
.help-popup-content::-webkit-scrollbar {
  width: 3px;
  height: 5px;
}

.chatbox-section .chat-window .chat-body .message-container::-webkit-scrollbar-track,
.help-popup-content::-webkit-scrollbar-track {
  background-clip: content-box;
  border: 0px solid transparent;
  width: 3px;
  background-color: #e9e9e9;
}

.chatbox-section .chat-window .chat-body .message-container::-webkit-scrollbar-thumb,
.help-popup-content::-webkit-scrollbar-thumb {
  background-color: #465161;
}

.chatbox-section .chat-window .chat-body .message-container::-webkit-scrollbar-thumb:hover .help-popup-content::-webkit-scrollbar-thumb:hover {
  background-color: #465161;
}

.chatbox-section .chat-window .chat-body .message-container::-webkit-scrollbar-corner,
.chatbox-section .chat-window .chat-body .message-container::-webkit-scrollbar-track,
.help-popup-content::-webkit-scrollbar-corner,
.help-popup-content::-webkit-scrollbar-corner {
  background-color: #e9e9e9;
  width: 3px;
}

[class^="message-container"] {
  /* height: 200px; */
  overflow-y: scroll;
  width: 3px;
}

[class^="message-container"] div {
  /* height: 400px;
width: 200%;
padding: 4rem;
background-image: linear-gradient(130deg, #c8c8c8 0%, #fefefe 100%); */
}

[class^="help-popup-content"] {
  /* height: 200px; */
  /* overflow-y: scroll; */
  width: 100%;
}

[class^="help-popup-content"] div {
  /* height: 400px;
width: 200%;
padding: 4rem;
background-image: linear-gradient(130deg, #c8c8c8 0%, #fefefe 100%); */
}

/* .main-footer { position: relative;} */

/* chatbox spinner */

.chatbox-section .chat-window .loader-section {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 99;
}

.chatbox-section .chat-window .spinload {
  height: 40px;
  width: 40px;
  border: 4px solid rgba(0, 174, 239, 0.2);
  border-top-color: rgba(0, 174, 239, 0.8);
  border-radius: 100%;
  animation: spin 0.9s infinite linear 0.25s;
  /* the opacity is used to lazyload the spinner, see animation delay */
  /* this avoid the spinner to be displayed when visible for a very short period of time */
  opacity: 1;
  top: 50%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  from {
    opacity: 1;
    transform: rotate(0deg);
  }

  to {
    opacity: 1;
    transform: rotate(359deg);
  }
}

/* chatbox spinner */

.chosen-choices {
  max-height: 100px;
  overflow-y: auto !important;
}

#help-article-form select {
  padding: 3px 10px;
}

#help-article-form .chosen-choices {
  border: 1px solid var(--border-color) !important;
  box-shadow: none !important;
  background-image: none;
  padding: 3px 10px;
  font-size: 1rem;
}

#help-article-form .chosen-container.chosen-with-drop .chosen-drop {
  box-shadow: none !important;
  border: none !important;
}

/*---------------End Web css ----------------*/

/*---------------End New design style ---------------*/

.video-section .card,
.content-section .card {
  border: 1px solid var(--border-color);
  transition-duration: 0.3s;
  border-radius: 8px;
  height: 100%;
}

.video-section .card iframe {
  border: none;
  padding-bottom: 0;
}

.video-section .card:hover,
.content-section .card:hover {
  box-shadow: 0px 0px 13px 5px #ddd;
  -webkit-box-shadow: 0px 0px 13px 5px #ddd;
  transition-duration: 0.3s;
  transform: scale(1.03);
  -webkit-transform: scale(1.03);
}

.content-section .card {
  padding-bottom: 15px;
}

@media (min-width: 414px) {
  .video-section .card-box {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  @media (min-width: 768px) {
    .video-section .card-box {
      flex: 0 0 50% !important;
      max-width: 50% !important;
    }

    .content-section .card-box {
      flex: 0 0 50% !important;
      max-width: 50% !important;
    }
  }

  @media (min-width: 1024px) {

    .video-section .card-box,
    .content-section .card-box {
      flex: 0 0 50% !important;
      max-width: 50% !important;
    }
  }

  @media (min-width: 1200px) {

    .video-section .card-box,
    .content-section .card-box {
      flex: 0 0 33.33%;
      max-width: 33.33%;
    }
  }

  @media (min-width: 1440px) {

    .video-section .card-box,
    .content-section .card-box {
      flex: 0 0 25% !important;
      max-width: 25% !important;
    }
  }

  @media (min-width: 1920px) {

    .video-section .card-box,
    .content-section .card-box {
      flex: 0 0 25% !important;
      max-width: 25% !important;
    }
  }

  .dashboard .col-xl-4.col-md-4.col-4 {
    padding-bottom: 20px;
    padding-right: 13px;
  }

  .icon.weather-icon img {
    width: 30%;
    margin-left: 65%;
    margin-top: 4%;
  }
}

@media screen and (max-width: 1600px) {
  .chatbox-section .chat-window {
    width: 21.9%;
  }
}

@media screen and (max-width: 1400px) {
  .chatbox-section .chat-window {
    width: 21.5%;
  }
}

@media screen and (max-width: 1300px) {
  .chatbox-section .chat-window {
    width: 21.2%;
  }
}

@media screen and (max-width: 1280px) {
  .chatbox-section .chat-window {
    width: 22.2%;
  }

  #vrv_cop_chart .amcharts-legend-div {
    margin-top: 25px;
  }
}

@media screen and (max-width: 1024px) {
  .chatbox-section .chat-window {
    width: 21.4%;
  }
}

@media screen and (max-width: 912px) {
  .chatbox-section .chat-window {
    width: 21%;
  }
}

@media screen and (max-width: 912px) {
  .chatbox-section .chat-window {
    width: 20.5%;
  }
}

/* -----Sidebar menu text break css---- */

.main-sidebar .sidebar-menu li a i {
  min-width: 40px;
  max-width: 40px;
  min-height: 40px;
  max-height: 40px;
  width: inherit !important;
  height: inherit !important;
  line-height: normal;
  margin-top: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-sidebar .sidebar-menu li a span {
  padding-right: 27px;
  padding-top: 3px;
}

.main-sidebar .sidebar-menu li a span.pull-right-container {
  padding-right: 0px;
}

.main-sidebar .sidebar-menu li a span.pull-right-container i {
  min-width: inherit;
  max-width: inherit;
  min-height: inherit;
  max-height: inherit;
}

.main-sidebar .sidebar-menu .treeview-menu li a i {
  min-width: inherit;
  max-width: inherit;
  min-height: inherit;
  max-height: inherit;
  width: 20px !important;
  height: initial !important;
  margin-top: 3px;
  margin-right: 3px;
}

/* .rightsidebardrawer { display: block;
  transform: translate(0 , 0);
  position: absolute;
  left: 100%;
  top: 60px;} */

/* .rightsidebardrawer .chatbox-section { width: 100%;} */

.rightsidebardrawer .chatbox-section .chat-window.docked {
  transform: inherit !important;
  /* opacity: inherit;
  visibility: inherit; */
  position: inherit;
  right: inherit;
  width: 100%;
}

/* .rightsidebardrawer.help-sidebar-opened {

  transform: inherit !important;
} */

.rightsidebardrawer.help-sidebar-opened .chatbox-section a.help-content-trigger {
  right: 556px !important;
  left: auto !important;
  position: relative !important;
  top: 237px;
}

.rightsidebardrawer .chatbox-section a.help-content-trigger {
  right: 391px !important;
  left: auto;
  position: absolute;
  top: 236px;
}

@media screen and (max-width: 1600px) {
  .chatbox-section .chat-window {
    /* width: 410px !important;
    -webkit-width: 410px !important;
    -moz-width: 410px !important; */
  }

  .rightsidebardrawer.help-sidebar-opened .chatbox-section a.help-content-trigger {
    right: 414px !important;
  }

  .rightsidebardrawer .chatbox-section a.help-content-trigger {
    right: 285px !important;
  }
}

@media screen and (max-width: 1400px) {
  .chatbox-section .chat-window {
    width: 280px !important;
    -webkit-width: 280px !important;
    -moz-width: 280px !important;
  }

  .rightsidebardrawer.help-sidebar-opened .chatbox-section a.help-content-trigger {
    right: 450px !important;
  }

  .rightsidebardrawer .chatbox-section a.help-content-trigger {
    right: 248px !important;
  }
}

@media screen and (max-width: 1280px) {
  .rightsidebardrawer .chatbox-section a.help-content-trigger {
    right: 410px !important;
  }

  .rightsidebardrawer.help-sidebar-opened .chatbox-section a.help-content-trigger {
    right: 414px !important;
  }

  .chatbox-section .chat-window {
    width: 332px !important;
    -webkit-width: 332px !important;
    -moz-width: 332px !important;
  }
}

/* ---New style 26-05-2022-- */

.notification-dashboard.col-md-9 {
  /* max-width: calc(100% - 407px) !important;
  -webkit-max-width:  calc(100% - 407px) !important;
  -moz-max-width:  calc(100% - 407px) !important; */
  flex: inherit;
  padding-right: 0 !important;
}

.innerpages.col-md-9 {
  /* max-width: calc(100% - 407px) !important;
  -webkit-max-width:  calc(100% - 407px) !important;
  -moz-max-width:  calc(100% - 407px) !important; */
  flex: inherit;
  padding-right: 0px;
}

.dashboard {
  padding-right: 17px;
}

.notification-dashboard.col-md-9 a.sidebar-trigger {
  right: -85px !important;
}

@media screen and (max-width: 1280px) {
  .notification-dashboard.col-md-9 {
    max-width: calc(100% - 347px) !important;
    -webkit-max-width: calc(100% - 347px) !important;
    -moz-max-width: calc(100% - 347px) !important;
  }

  .innerpages.col-md-9 {
    max-width: calc(100% - 347px) !important;
    -webkit-max-width: calc(100% - 347px) !important;
    -moz-max-width: calc(100% - 347px) !important;
    flex: inherit;
  }
}

.buiding-list {
  margin-right: 0px;
}

.help-sidebar.help-sidebar-opened {
  position: relative;
  height: calc(100vh - 100px);
  padding-left: 0;
  top: 0px;
}

.help-sidebar.help-sidebar-opened .chatbox-section {
  height: 100vh;
  flex: 0 0 100%;
  max-width: 100%;
  position: fixed;
  top: 0;
  z-index: 99999;
  width: 100%;
}

.equpiment_container .box-col {
  flex-basis: 100%;
  max-width: 100%;
  margin-top: 1%;
}

/* -----Sidebar menu text break css---- */

.noti-info::before {
  position: absolute;
  content: "!";
  color: var(--color-white);
  background: #ef5350;
  padding: 1px 8px;
  z-index: 99;
  border-radius: 50%;
  right: -5px;
  top: -5px;
  font-weight: bold;
}

.sms-sync-log-view table tbody tr:nth-child(6) td {
  word-break: break-all;
}



.info_uuper {
  position: absolute;
  top: -3%;
  right: 50%;
  z-index: 9;
  padding: 1px 1px 0px 3px;
  background: var(--bg-white-background);
  border-radius: 50%;
}

.info_uuper .fas {
  color: var(--color-white);
}

.info_uuper_sec {
  position: absolute;
  top: -3%;
  right: 50%;
  z-index: 9;
  padding: 1px 1px 0px 3px;
  background: var(--bg-white-background);
  border-radius: 50%;
}

.info_uuper_sec .fas {
  color: var(--color-black);
}

#Final .info_uuper_sec {
  right: -5px;
}


.fa-fa-grey {
  color: var(--color-light-gray) !important;
}

.fa-fa-green {
  color: var(--theme-success-color) !important;
}

.info_uuper_latest {
  left: 15% !important;
  right: inherit;
}

.model_scrollabel {
  max-height: 80vh;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  padding-right: 5px !important;
}

.model_scrollabel::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.model_scrollabel::-webkit-scrollbar-track {
  background: var(--border-table-gray);
}

/* Handle */
.model_scrollabel::-webkit-scrollbar-thumb {
  background: var(--color-light-gray);
}

/* Handle on hover */
.model_scrollabel::-webkit-scrollbar-thumb:hover {
  background: var(--color-light-gray);
}

.bootstrap-timepicker-widget table td input {
  width: 30px;
}

.relative_box {
  position: relative !important;
}



/* updated add new style */

/* modalbox  */
.modal.fade.show {
  opacity: 1;
}

.modal {
  left: 0;
  top: 0;
}

.modal-header {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-box-direction: normal;
  border-bottom: 1px solid var(--border-color);
}

.close {
  opacity: 0.5;
}

.modal-header .close {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-footer {
  /* border-bottom: 1px solid #e9ecef; */
}

.table_indoor {
  height: 575px;
}

.table_indoor .dataTables_wrapper {
  height: 43.5vh;
  overflow: hidden;
}

#location_view_button {
  position: absolute;
  right: 0;
  bottom: 7px;
}

.table_indoor #location_view_button {
  bottom: 10px;
  border: none;
}

.table_indoor #location_view_button:active,
.table_indoor #location_view_button:focus {
  box-shadow: none;
  outline: none;
  border: none;
}

@media (min-width: 1199px) {
  .building-form .field-usr-role_id #usr-role_id {
    margin-bottom: 10px;
  }
}

@media (min-width: 1023px) {
  .building-form .field-usr-role_id #usr-role_id {
    margin-bottom: 10px;
  }
}

.user-form .tab-content {
  max-height: 440px;
  overflow-x: auto;

}

.user-form .tab-content .card-header a::after,
.user-form .tab-content .card-header .collapsed::after {
  position: absolute;
  right: 10px;
}

@media (min-width: 992px) {
  .modal-lg {
    max-width: 1199px !important;
  }
  .offset-lg-2 {
    margin-left: 17.666667%;
  }
}

@media screen and (max-width: 992px) {
  .table_indoor {
      height: auto;
  }
}

/* end  modalbox  */

/* all links */

a {
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:hover {
  text-decoration: none;
}

/* .user-form .nav-tabs-custom>.nav-tabs>li>a:hover {
  border-top: 3px solid var(--primary-button-bg) !important;
  border-left: 1px solid #f4f4f4 !important;
  border-right: 1px solid #f4f4f4 !important;
} */


/* End all links */

/* right top menu */

.user-form .nav-tabs-custom {
  margin-bottom: 0px;
  box-shadow: none;
  border-radius: 0;
}

.user-form .nav-tabs {
  margin-bottom: 10px;
}

.dropdown-menu.scale-up.show {
  transform: scale(1);
  -webkit-transform: scale(1);
  transform-origin: left 0;
  -webkit-transform-origin: left 0;
}

.float-left {
  float: left !important;
}

/* End right top menu */

.nested-list-wrap #nested-list-wrap strong:first-child {
  margin-left: 3px;
}

.country-building-section .col-form-label {
  text-align: right;
}

/* button.export_data {
  width: auto;
} */

button:focus,
button:active {
  outline: none !important;
  /* border: none !important; */
  box-shadow: none !important;
}

.field-usr-role_permissions label.checkbox_label {
  word-wrap: break-word;
  min-width: auto;
}

.checkbox-div {
  padding: 8px 0 15px 0;
}

.user-permissin-tab .checkbox-div .checkbox_row {
  padding-bottom: 15px;
}

.manage-project-list .manage-project-index .box-header button {
  width: auto;
}

.cust-h {
  height: 100%;
}

.box-solid .box-body {
  z-index: 0;
}

#code-list table tbody tr td:nth-child(6) {
  max-width: 200px;
  min-width: 200px;
  width: 200px;
  white-space: break-spaces !important;
}

#code-list table tbody tr td:nth-child(7) {
  max-width: 200px;
  min-width: 200px;
  width: 200px;
  white-space: break-spaces !important;
}

#code-list table tbody tr td:nth-child(8) {
  max-width: 200px;
  min-width: 200px;
  width: 200px;
  white-space: break-spaces !important;
}

#code-list table tbody tr td:nth-child(9) {
  max-width: 200px;
  min-width: 200px;
  width: 200px;
  white-space: break-spaces !important;
}

.cust-pr-3 {
  padding-right: 3px;
}


/* End upgrade style */
.project_modal_height {
  max-height: 70vh;
  overflow: auto;
}

.cust_not_scroll .tab-content {
  overflow-x: hidden !important;
}

.mg-b-15 {
  margin-bottom: 15px;
}

.malfun_mdl_tbl {
  max-height: 70vh;
  overflow-x: auto;
}



#SubscriptionReport .coo {
  margin-right: 2px;
}

@media (min-width: 992px) {
  #SubscriptionReport .modal-lg {
    max-width: 1024px;
  }
}

/* .modal.fade.center-modal .modal-dialog {
   top: -40%;
}*/
.user-form .user-form-tab-content{
  max-height: unset;
  overflow-x: unset;
}

#SubscriptionReport .form-group {
  margin-bottom: unset;
}

#SubscriptionReport .user-form .nav-tabs-custom {
  margin-bottom: 0px;
  box-shadow: none;
  border-radius: 0;
  padding: 15px;
}

.mb-0>a:after {
  content: "\f078";
  font-family: 'FontAwesome';
  position: fixed;
  right: 6%;
}

.child-card {
  margin-bottom: 1.143rem;
}

.child-card .mb-0>a:after {
  right: 7.5%;
}

.checkbox_label {
  vertical-align: sub;
  min-width: max-content;
}

.mb-0>a[aria-expanded="true"]:after {
  content: "\f077";
}

/********* Building Form User ************/
[type=checkbox]+label {
  line-height: unset;
  padding-left: 26px;
}
.checkbox_row {
  border-bottom: 1px solid rgba(97, 106, 120, 0.07);
  margin-top: 1%;
}
.user-form .user-form-tab-content{
  max-height: unset;
  overflow-x: unset;
}
/********* Building Form User ************/


#SubscriptionReport .user-form .nav-tabs {
  /* border-bottom: 1px solid #dee2e6; */
}

#SubscriptionReport .mb-0>a {
  /* display: block; */
  margin-top: 5px;
}

#SubscriptionReport .mb-0>a:after {
  content: "\f078";
  /* fa-chevron-down */
  font-family: 'FontAwesome';
  position: fixed;
  right: 6%;
  top: 18px;
}

#SubscriptionReport .child-card .mb-0>a:after {
  right: 7.5%;
}

#SubscriptionReport .mb-0>a[aria-expanded="true"]:after {
  content: "\f077";
  /* fa-chevron-up */
}

#SubscriptionReport .card {
  margin-bottom: 1.143rem;
  display: flex;
}

#SubscriptionReport .user-form .card-header {
  background: var(--bg-dark-gray);
}

#SubscriptionReport .card-header {
  padding: 10px 10px;
}

#SubscriptionReport .checkbox-div {
  padding: 8px 0 15px 0;
}

#SubscriptionReport .child-card {
  margin-bottom: 1.143rem;
}

#SubscriptionReport .checkbox_label {
  vertical-align: sub;
  min-width: max-content;
}

#SubscriptionReport [type=checkbox]+label {
  line-height: unset;
  padding-left: 30px;
  /* display: none !important; */
}

#SubscriptionReport .error_label {
  color: var(--theme-danger-color);
}


#SubscriptionReport .mb-0>a:after {
  position: absolute;
  right: 10px;
}

#SubscriptionReport .child-card .mb-0>a:after {
  right: 10px;
  top: 12px;
}

.cust_mg_t_37 {
  margin-top: 25px;
}

.subscription_heading h4 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 10px 0;
}

.info-subscribed {
  background-color: var(--primary-button-bg);
  color: var(--color-black);
  margin-left: 5px;
  padding: 4px 5px;
  /* margin-top: -6px; */
  display: inline-block;
  line-height: initial;
  font-size: 14px;
  border-radius: 5px;
}

.weekly-msg {
  color: #333;
  margin-left: 10px;
  padding: 4px;
  font-size: 14px;
  border-radius: 5px;
}

#SubscriptionReport .user-form {
  margin-top: 25px;
}

#SubscriptionReport .weekly-msg {
  margin: 0;
  color: #455a64;
}

.info-subscribed {
  font-size: 10px;
}

#SubscriptionReport .mb-0>a {
  display: flex;
  place-items: center;
  margin-top: 0;
}

#SubscriptionReport .mb-0>a:after {
  top: 12px;
}

#SubscriptionReport .child-card .mb-0>a:after {
  top: 14px;
}

#SubscriptionReport .weekly-msg .fa-info-circle {
  color: #455a64;
  padding-right: 5px;
}

#SubscriptionReport .col-sm-12.col-form-label {
  padding: 0 15px;
}

#SubscriptionReport .col-md-12.subscription_heading {
  padding: 0 15px 20px;
  margin-top: -8px;
}

#SubscriptionReport .col-md-12.subscription_heading h4 {
  margin: 0;
}

#SubscriptionReport .padd-cust {
  padding: 0 15px !important;
}

.filed_50_cust .form-group:first-child {
  width: 50%;
}

.checkbox-div .col-md-4 {
  margin-bottom: 20px;
}

.checkbox-div .col-md-4 [type="radio"]:checked+label,
[type="radio"]:not(:checked)+label {
  width: 40%;
}

.checkbox_new_cust .parent-div {
  width: 30%;
}

.checkbox-div .col-md-4 .select2-container--default .select2-selection--multiple .select2-selection__rendered {
  height: 2.1rem;
}

.sidebar-menu li>a>.pull-right-container {
  top: -7px;
}

.skin-blue .main-sidebar {
  background-color: var(--bg-dark-gray);
}

.user-panel>.info>p {
  font-weight: 400;
  font-size: var(--font-az-15);
}

.main-footer {
  background: var(--bg-light-blue);
  color: var(--color-table-lightgray);
}

.btn-info {
  background-color: var(--primary-button-bg);
  border-color: var(--primary-button-bg);
  width: auto;
  min-width: 100px;
  border-radius: 50px;
  line-height: normal;
  font-size: var(--font-az-14);
  text-transform: capitalize;
  font-weight: 500;
}

.btn-primary {
  font-size: var(--font-az-14);
}

.cus-btn-info {
  min-width: 100px;
  width: auto;
  font-size: var(--font-az-14);
}

.btn-arrow-slider {
  background-color: var(--primary-button-bg);
  border-color: var(--primary-button-bg);
  width: auto;
  min-width: 100px;
  border-radius: 50px;
}

.btn_reset,
.back_button,
.btn_delete,
#bulk_selection,
.delete_record,
.btn-arrow-slider,
.custom-primary-btn {
  border-radius: 50px;
}

.btn_delete {
  width: auto;
  min-width: 100px;
}

.btn-default {
  width: auto;
  min-width: 100px;
  line-height: normal;
}

.box.box-solid.box-default>.box-header {
  background: var(--bg-dark-gray);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: var(--secondary-button-bg);
  color: var(--color-white);
}

.select2-container--default .select2-results__option[aria-selected="true"]:hover {
  color: var(--color-white);
}

.table-bordered>thead>tr>th a:hover {
  color: var(--color-link-text);
}

.table-bordered>tbody>tr>td a {
  color: var(--color-link-text) !important;
}

.table-bordered>tbody>tr>td code a {
  color: var(--color-white);
}

[type="radio"]:checked+label:after {
  background-color: var(--primary-button-bg);
}

.summary {
  padding-left: 7px;
  padding-right: 7px;
}

.table-striped>tbody>tr:nth-of-type(odd) {
  background-color: unset;
}

.progress-bar.bg-blue {
  background-color: var(--secondary-button-bg);
}

.progress-showcase .glyphicon-exclamation-sign {
  color: var(--secondary-button-bg);
}

.glyphicon-trash {
  color: var(--color-black);
  opacity: .7;
}

.progress-bar {
  background-color: var(--secondary-button-bg) !important;
}

.grid-3 {
  border-color: var(--secondary-button-bg);
}

#progressbar li:after {
  background: var(--border-table-gray);
}

.sidebar-menu li.nav-devider {
  background: var(--border-color)
}

.ms-container .ms-selection li.ms-hover {
  background-color: var(--secondary-button-bg);
}

#SubscriptionReport .user-form .card-header {
  background-color: var(--bg-dark-gray);
}

.info-subscribed {
  background-color: var(--secondary-button-bg);
}

.btn-default {
  background-color: var(--color-dark-gray);
  color: var(--color-white);
}

.form-control:focus,
.select2-container--default.select2-container--open,
.select2-dropdown {
  border-color: var(--secondary-button-bg);
}

.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: var(--border-color) !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: var(--primary-button-bg);
  border-color: var(--primary-button-bg);
}

.dashboard .small-box.bg-blue {
  background-color: var(--primary-button-bg);
}

.nav-tabs {
  border-bottom: none;
}

.nav-tabs-custom>.nav-tabs>li a {
  border: none;
  padding: 5px 0;
  margin: 0 15px;
  border-bottom: 2px solid transparent;
  font-weight: 500;
  font-size: var(--font-az-14);
  color: var(--color-black) !important;
}

.nav-tabs-custom>.nav-tabs>li:first-child a,
.nav-tabs-custom>.nav-tabs>li:first-child>a:hover {
  margin-left: 0;
}

.nav-tabs-custom>.nav-tabs>li>a,
.nav-tabs-custom>.nav-tabs>li>a:hover {
  margin: 0 15px;
}

.nav-tabs-custom>.nav-tabs>li a.active {
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom-color: var(--primary-button-bg);
  color: var(--color-black);
}

/* .user-form .nav-tabs-custom>.nav-tabs>li>a:hover{
  border-top: 3px solid var(--primary-button-bg) !important;
} */
.user-form .card-header {
  background: var(--bg-dark-gray);
}

[type="checkbox"].filled-in:checked+label:after {
  border-color: var(--primary-button-bg);
  background-color: var(--primary-button-bg);
}

.btn-default a {
  color: var(--color-white);
}

.building-form .btn-primary {
  background-color: var(--primary-button-bg);
  border-color: var(--primary-button-bg);
}

.sidebar-menu li>a {
  font-size: var(--font-az-17);
}

.treeview-menu>li>a {
  font-size: var(--font-az-15);
  align-items: baseline;
  padding: 9px 5px 9px 60px;
}

.skin-blue .sidebar-menu .treeview-menu>li>a {
  color: var(--color-dark-gray);
}

.content-header>h1,
.content-header>.container>h1 {
  font-size: var(--font-az-24);
  color: var(--color-black);
  font-weight: 500;
  line-height: normal;
}

.navbar-nav>.user-menu>.dropdown-menu>li.user-header>p {
  font-size: var(--font-az-16);
}

.dashboard .small-box,
.small-box>.small-box-footer,
.dashboard .small-box.bg-blue {
  background: var(--bg-white-background);
  border-radius: 20px;
  overflow: hidden;
}

.dashboard .small-box .inner {
  color: var(--color-black);
}

.small-box.bg-dark,
.small-box.bg-success,
.small-box.bg-danger {
  background-color: var(--bg-white-background) !important;
}

.small-box>.small-box-footer {
  color: var(--primary-button-bg);
  font-size: var(--font-az-14);
  font-weight: 400;
  text-decoration: underline;
}

.small-box>.small-box-footer:hover {
  background: var(--bg-white-background);
  color: var(--secondary-button-bg);
}

.skin-blue .main-footer a:hover {
  color: var(--secondary-button-bg);
}

.dashboard .box.box-solid.box-default.collapsed-box>.box-header {
  border-radius: 20px;
  transition: all 0.3s ease;
}

.dashboard .box.box-solid.box-default>.box-body {
  border-radius: 0 0px 20px 20px;
}

.fa-angle-double-right:before {
  content: '' !important;
  background-image: url("../images/right-double-arrow.svg");
  width: 10px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
}

.skin-blue .sidebar-menu .treeview-menu>li>a:hover .fa-angle-double-right:before,
.skin-blue .sidebar-menu .treeview-menu>li.active>a .fa-angle-double-right:before {
  background-image: url("../images/right-double-arrow-white.svg");
}

.main-sidebar .fa-home:before {
  content: '' !important;
  background-image: url("../images/home-menu-icon.svg");
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
}

.main-sidebar .fa-comment:before {
  content: '' !important;
  background-image: url("../images/notification-menu-icon.svg");
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
}

.main-sidebar .fa-list:before {
  content: '' !important;
  background-image: url("../images/reports-menu-icon.svg");
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
}

.main-sidebar .fa-cog:before {
  content: '' !important;
  background-image: url("../images/control-menu-icon.svg");
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
}

.main-sidebar .fa-building:before {
  content: '' !important;
  background-image: url("../images/data-setup-menu-icon.svg");
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
}

.main-sidebar .fa-wrench:before {
  content: '' !important;
  background-image: url("../images/platform-menu-icon.svg");
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
}

.main-sidebar .fa-line-chart:before {
  content: '' !important;
  background-image: url("../images/cop-menu-icon.svg");
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
}

.main-sidebar .fa-question-circle:before {
  content: '' !important;
  background-image: url("../images/help-menu-icon.svg");
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
}

.table> :not(caption)>*>* {
  box-shadow: none;
}

.table,
.table-striped>tbody>tr:nth-of-type(odd) {
  color: var(--color-table-lightgray);
}

.table thead th,
.table tfoot th,
.table th a,
.table thead th a {
  color: var(--color-black);
}

.btn-info i,
.back_button i {
  display: none !important;
}

.badge {
  padding: 4px 10px 5px;
    /* line-height: normal; */
  font-size: 12px !important;
  font-weight: 100 !important;
}

#card-list .card-box.bg-expired .grid-3 {
  border-color: var(--border-table-gray);
}

.small-box>.small-box-footer i {
  display: inline-block !important;
  margin-left: 3px;
  font-size: 10px;
}

.info-circle i {
  color: var(--color-light-gray);
}

.info-box.bg-success,
.info-box.bg-yellow,
.info-box.bg-red {
  background-color: var(--bg-white-background) !important;
}

.info-box-text,
.progress-description,
.info-box-number {
  color: var(--color-black) !important;
}

.info-box-number {
  font-size: var(--font-az-14)
}

.skin-blue .user-panel>.info {
  display: none;
}

.skin-blue .content-header .breadcrumb {
  display: none;
}

.content-header {
  display: inline-block;
  box-shadow: none !important;
  position: absolute;
  top: -59px;
  z-index: 9999;
  left: 65px;
  padding-top: 0;
  padding-bottom: 0;
}

.content-header.dashboard-golbal-filter {
  top: -56px;
}

.navbar-custom-menu .navbar-nav {
  width: 215px;
}

.navbar-custom-menu .navbar-nav .user-menu {
  width: 100%;
  height: auto;
  margin-right: 37px;
}

.navbar-custom-menu .navbar-nav .user-menu span {
  display: block;
  font-size: var(--font-az-16);
  color: var(--color-dark-gray);
  font-weight: 500;
  line-height: normal;
}

.navbar-custom-menu .navbar-nav .user-menu span.lname {
  font-size: var(--font-az-14);
  color: var(--color-light-gray);
  font-weight: 400;
}

.navbar-custom-menu .navbar-nav .user-menu .user-menu-innerBox {
  display: flex;
  align-items: center;
  padding: 20px 0;
}

.navbar-custom-menu .navbar-nav .user-menu .user-menu-innerBox.show {
  display: flex !important;
}

.navbar-custom-menu .navbar-nav .user-menu .user-menu-innerBox .user-name-iconBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar-custom-menu .navbar-nav .user-menu .user-menu-innerBox .user-name-iconBox .drop-icon {
  width: 30px;
  height: 30px;
  line-height: 31px;
  background: var(--bg-white-background);
  box-shadow: 0px 4px 24px 0px rgba(191, 202, 224, 0.10);
  border-radius: 50%;
  text-align: center;
}

.navbar-custom-menu .navbar-nav .user-menu .user-menu-innerBox .user-name-iconBox .üser-admin-desc {
  margin-left: 9px;
  line-height: normal;
}

.navbar-custom-menu .navbar-nav .user-menu .user-menu-innerBox .user-name-iconBox .üser-admin-desc .fname {
  color: #4E4E4E;
  font-size: var(--font-az-16);
}

.navbar-custom-menu .navbar-nav .user-menu .user-menu-innerBox .user-name-iconBox .üser-admin-desc .lname {
  color: var(--color-light-gray);
  font-size: var(--font-az-14);
}

.main-header .sidebar-toggle {
  padding-left: 37px;
}

.dashboard-golbal-filter .location-select-box {
  display: flex;
  align-items: flex-start;
}

.dashboard-golbal-filter .location-select-box .loaction-input-box {
  margin-left: 10px;
}

.dashboard-golbal-filter .location-select-box .loaction-input-box .dashboard_form_group {
  display: flex;
  max-width: 325px;
}

.dashboard-golbal-filter .location-select-box .loaction-input-box .dashboard_form_group label {
  max-width: 200px;
  margin-right: 6px;
}

.dashboard-golbal-filter .location-select-box .loaction-input-box .dashboard_form_group .select2 {
  min-width: 200px;
  top: -9px;
}

.dashboard-golbal-filter .location-select-box .loaction-input-box .dashboard_form_group .select2 .selection,
.dashboard-golbal-filter .location-select-box .loaction-input-box .dashboard_form_group .select2 .selection .select2-selection {
  width: 100%;
}

.dashboard-golbal-filter .location-select-box img {
  margin-right: 8px;
}

.dashboard-golbal-filter .location-select-box .building-name span,
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--color-black);
  font-weight: 400;
}

.dashboard-golbal-filter .location-select-box .select2-container--focus .select2-selection,
.dashboard-golbal-filter .location-select-box .select2-container--default .select2-selection--single {
  border-radius: 0px;
}

.select2-container.main-dashborad-custom-select2 {
  z-index: 9999;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  margin-top: -2px;
}

.select2-container--open .select2-dropdown--below {
  padding-top: 15px;
  overflow: hidden;
  margin-top: -12px;
  border-radius: 0 0 15px 15px;
}

.select2-container--open.main-dashborad-custom-select2 .select2-dropdown--below {
  margin-top: -15px;
}

.dashboard-golbal-filter .location-select-box .loaction-input-box .select2-container--default .select2-selection--single,
.dashboard-golbal-filter .location-select-box .loaction-input-box .select2-selection .select2-selection--single {
  box-shadow: 0px 4px 24px 0px rgba(191, 202, 224, 0.10);
}

.select2-container--default .select2-selection--single,
.select2-selection .select2-selection--single {
  border-color: var(--border-color);
  padding: 8px 12px 6px;
  height: 40px;
}

.form-control:focus,
.select2-container--default.select2-container--open,
.select2-dropdown {
  border-color: var(--border-color);
}

.select2-container {
  z-index: 99;
}

/* For WebKit-based browsers (Chrome, Safari) */
.select2-results__options::-webkit-scrollbar {
  width: 10px;
  /* Width of the scrollbar */
}

.select2-results__options::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* Background of the scrollbar track */
}

.select2-results__options::-webkit-scrollbar-thumb {
  background-color: #888;
  /* Color of the scrollbar thumb */
  border-radius: 10px;
  /* Rounded corners for the thumb */
  border: 2px solid #f1f1f1;
  /* Padding around the thumb */
}

.select2-results__options::-webkit-scrollbar-thumb:hover {
  background-color: #555;
  /* Thumb color when hovered */
}

/* For Firefox */
.select2-results__options {
  scrollbar-width: thin;
  /* Scrollbar width */
  scrollbar-color: #888 #f1f1f1;
  /* Thumb color and track color */
}

/* For IE and Edge */
.select2-results__options {
  -ms-overflow-style: -ms-autohiding-scrollbar;
  /* Auto-hide scrollbar when not in use */
}

/* Custom styles for other browsers */
.select2-results__options {
  scrollbar-color: #888 #f1f1f1;
  scrollbar-width: thin;
}

.select2-results__option {
  color: var(--color-table-lightgray);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border: none;
  border-top: 2px var(--color-light-gray) solid;
  border-left: 2px var(--color-light-gray) solid;
  width: 8px;
  height: 8px;
  transform: rotate(225deg);
  transition: all 0.3s ease;
  margin-left: -8px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border: none;
  border-top: 2px var(--color-light-gray) solid;
  border-left: 2px var(--color-light-gray) solid;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  transition: all 0.3s ease;
  margin-left: -8px;
  margin-top: 3px;
}

/*--------------Common Filter CSS ---------*/
.module-wize-global-filter {
  margin-bottom: 20px;
}

.module-wize-global-filter button {
  margin-left: auto;
  display: block;
  padding: 9px 15px 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  color: var(--color-white);
  background-color: var(--primary-button-bg);
  border-color: var(--primary-button-bg);
  cursor: pointer;
}

.btn-info:active,
.btn-info.active {
  color: var(--color-white) !important;
}

.btn-info:focus,
.btn-info.focus {
  border-color: var(--secondary-button-bg);
}

.common-filter-box.filter-div {
  background: var(--bg-white-background);
  margin-bottom: 20px;
  border-radius: 20px;
}

.common-filter-box.filter-div .filter-content-btnBox {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.common-filter-box.filter-div .filter-content-btnBox .filter-content-box {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
}

.custom-input-box,
.custom-defaultselect {
  margin-right: 15px;
  width: 165px;
}

.custom-input-box .form-group label,
.custom-defaultselect .form-group label,
.custom-select-box .form-group label {
  font-weight: 400;
  color: var(--color-table-lightgray);
}

.custom-input-box input,
.custom-input-box select {
  height: 40px;
  padding-top: 7px;
}

.custom-select-box {
  width: 165px;
  margin-right: 15px;
}

.building_select_box {
  width: 270px;
}

/* .filter-btnbox {
  margin-left: 15px;
} */
.building-dashboard-box {
  padding: 15px;
}

.margin-right,
.custom-serach-box {
  margin-right: 15px;
}

.custom-defaultselect select {
  height: 40px;
  color: var(--color-table-lightgray);
}

.custom-defaultselect select option {
  color: var(--color-table-lightgray);
}

.predication-equipment-box {
  max-width: 100%;
}

.table-th-cus-checkbox {
  position: relative;
  width: 50px;
}

/* .table-th-cus-checkbox input[type=checkbox] ,.table-th-cus-checkbox input[type=checkbox]:checked{
  position: absolute;
  left: 12px;
  bottom: 12px;
} */
a.view_record {
  color: var(--color-link-text);
}

.table>tbody>tr>td,
.table>tfoot>tr>td {
  font-size: var(--font-az-15);
}

.table>thead>tr>th {
  font-size: var(--font-az-15);
}

.temprature-select-box {
  position: relative;
}

.temprature-select-box .temprature-text {
  position: absolute;
  right: 35px;
  top: 36px;
  z-index: 9999;
  padding-left: 10px;
}

.custom-check-box .form-group {
  margin-bottom: 0;
  padding-top: 6px;
}

.custom-radio-box .form-group {
  height: 60px;
}

.custom-check-box .form-group label,
.custom-radio-box .form-group label,
.power-consumption-from-group label label {
  font-weight: 400;
  color: var(--color-table-lightgray);
}

.custom-check-box.efficiency_filter_checkBox {
  width: auto;
}

.custom-check-box.efficiency_filter_checkBox .form-group label {
  height: 40px;
}

.power-consumption-from-group {
  display: flex;
  flex-direction: column;
}

.power-consumption-from-group .power-consum-checkbox {
  display: flex;
  font-weight: 400;
  color: var(--color-table-lightgray);
}

.power-consumption-from-group .power-consum-checkbox .form-group {
  margin-bottom: 0;
}

.buiding-list .filter-div .power-consumption-from-group .col-form-label {
  padding: 0;
  text-align: left;
}

.power-consumption-from-group .power-consum-checkbox .power-inner-checkbox {
  margin-right: 15px;
  line-height: 32px;
}

.power-consumption-from-group .power-consum-checkbox .power-inner-checkbox label {
  font-weight: 400;
  color: var(--color-table-lightgray);
}

.custom-input-box .date-input-box .input-group-addon span {
  right: 5px;
  top: 5px;
}

.top-header-title h1 {
  /* display: flex; */
  /* align-items: center; */
}

.select2-container .select2-selection--multiple {
  min-height: 40px;
}

.custom-select-box.custom-selectAll-box {
  width: 335px;
}

.custom-select-box.custom-selectAll-box .form-group {
  display: flex;
}

.custom-select-box.country-selectall-box .form-group {
  align-items: end;
}

.custom-select-box.custom-selectAll-box .selectall-selectBox {
  width: 100%;
  margin-right: 15px;
}

.custom-select-box.custom-selectAll-box .selectAll-Check {
  width: 135px;
}

.custom-select-box.custom-selectAll-box .selectAll-Check .checkBox {
  padding-top: 8px;
  margin-bottom: 0;
}

.custom-table-box {
  margin-bottom: 21px;
}

.control-box {
  border: 1px solid var(--border-table-gray);
}

.custom-list-dataBox {
  padding: 0 1.25rem 1.25rem;
}

/*--------------Common Table Filter CSS ---------*/
.common-filter-box.table-common-filter-box {
  border-radius: 20px 20px 0 0;
  border-bottom: none;
  margin-bottom: 0;
}

.common-filter-box.table-common-filter-box .box-body {
  padding: 20px 20px 0;
}

.box-body {
  padding: 18px 20px 10px;
}

.table-content-link a {
  color: var(--color-link-text);
  text-decoration: underline;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-style: unset;
  font-weight: 300;
}

/*********Common Modale CSS *****/
.custom-modal-form {
  padding: 20px;
}

.custom-modal-form .modal-header {
  padding: 0 0 20px 0;
}

.custom-modal-form .modal-header .modal-title,
.custom-modal-form .modal-header h5,
.modal-header h5 {
  font-weight: 600;
  font-size: var(--font-az-18);
  color: var(--color-black);
}

.custom-modal-form .modal-footer {
  padding: 20px 0 0;
  border: none;
}

.custom-modal-form .modal-body {
  padding: 20px 0 0 0;
}

.custom-modal-form .project_modal_height {
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 12px;
}

.custom-modal-form .form-group label {
  color: var(--color-table-lightgray);
  font-weight: 300;
  font-size: var(--font-az-14);
  padding-bottom: 0;
  margin-bottom: 2px;
}

.chatbox-todo-section {
  margin: 0;
  padding: 0 15px;
}

.chatbox-todo-section .chatbox-todo-row figure {
  margin: 0;
  min-height: 30px;
  max-height: 30px;
  min-width: 30px;
  max-width: 30px;
  border-radius: 50%;
  overflow: hidden;
}

.chatbox-todo-section .chatbox-todo-row figure img {
  min-height: 30px;
  max-height: 30px;
  min-width: 30px;
  max-width: 30px;
}

.chatbox-todo-section .chatbox-todo-row .chatbox-content h6 {
  margin-bottom: 0;
}

.chatbox-todo-section .chatbox-todo-row .chatbox-content h6 i {
  margin-left: 10px;
  color: #949494;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
}

.chatbox-todo-section .chatbox-post-section {
  width: 100%;
  display: flex;
  align-items: baseline;
}

.chatbox-todo-section .chatbox-post-section .form-group {
  width: 98%;
}

.chatbox-todo-section textarea {
  resize: none;
}

.chatbox-todo-section .chatbox-post-section .form-group input {
  width: 100%;
}

.chatbox-todo-section .chatbox-post-section button.btn {
  width: 111px;
}

.custom-modal-form .chatbox-todo-section {
  padding: 0;
}

.custom-modal-form .chatbox-todo-section .table-w {
  width: 100%;
}

.link-selected-modle-list {
  padding: 0;
  margin-bottom: 15px;
}

.link-selected-modle-list ul {
  max-height: 125px;
  overflow-y: auto;
  padding-left: 20px;
  margin-bottom: 0;
}

.platform-param-box {
  background: var(--bg-white-background);
  border-radius: 20px;
}

.add-contract-date-popup {
  display: flex;
  gap: 10px;
}

.add-contract-date-popup .contract-duration,
.add-contract-date-popup .contract-to {
  flex: 1;
}

.prj_box a.view_record {
  color: var(--color-white);
}

/************modal-dialog Css*********/
/* .modal.fade.center-modal .modal-dialog{
  position: relative;
  transform: none;
  left: auto;
  bottom: auto;
  margin: 1.75rem auto;
} */

.modal-padding-right {
  padding-right: 30px;
}

.modal-padding-left {
  padding-left: 30px;
}

/* file upload section */
.upload-container {
  width: 100%;
}

.upload-area {
  border: 1px dashed #979797;
  border-radius: 1px;
  padding: 50px;
  text-align: center;
  background-color: var(--bg-white-background);
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
}

.upload-area p {
  font-size: 12px;
  color: var(--theme-danger-color);
}

.upload-area input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-container label.image-cut-label {
  color: var(--color-table-lightgray);
  font-weight: 300;
  font-size: var(--font-az-14);
  margin-bottom: 2px;
  padding-bottom: 0;
}

.btn-group,
.btn-group-vertical {
  flex-wrap: wrap;
}

.custom-modal-form .building-import-eqipment-modal label {
  padding-left: 0;
}

.table-bordered,
.table-bordered>tbody>tr>td,
.table-bordered>tbody>tr>th,
.table-bordered>tfoot>tr>td,
.table-bordered>tfoot>tr>th,
.table-bordered>thead>tr>td,
.table-bordered>thead>tr>th {
  border: none;
  border-bottom: 1px solid var(--border-table-gray);
}

.table> :not(:last-child)> :last-child>* {
  border-bottom-color: var(--border-table-gray);
}

.table-bordered>thead>tr>td,
.table-bordered>thead>tr>th {
  border-bottom-width: 1px;
  border-color: var(--border-table-gray);
}

.user-permi-cont-hideModal #usr-assigned_lng_code {
  display: flex;
  flex-wrap: wrap;
}

#display_data .box {
  border-radius: 20px;
}

#display_data .box i.ion-ios-arrow-up{
  display: none;
}

#equipment_list {
  margin-top: 10px;
  max-height: 400px;
  overflow-y: auto;
}

.marginTop-20 {
  margin-top: 20px;
}

.multiple-input-list.table-renderer .list-cell__button .js-input-plus.btn-default,
.multiple-input-list.table-renderer .list-cell__button .js-input-remove.btn-danger {
  min-width: auto;
  width: auto;
  padding: 10px 0;
  background: transparent;
  border: none;
  color: var(--theme-color-orange);
  /* opacity: .7; */
}

.multiple-input-list.table-renderer .list-cell__button .js-input-remove.btn-danger {
  padding: 9px 0;
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
  border-color: unset;
}

.custom-primary-btn {
  width: auto;
  min-width: 100px;
}

.box-header {
  padding: 25px 20px;
}

.box-header .predicition-export-btn,
.box-header .predicition-pdf-btn {
  margin-right: 10px;
}

.small-box.system-fcu-cuBox {
  z-index: 1;
}

.small-box.system-fcu-cuBox .icon {
  z-index: -1;
}

.title-subtitle-top {
  /* display: flex;
  align-items: center; */
  position: relative;
}

.building-dashboard-box .buiding-list-section .grid-3,
.manage-project-index .custom-list-dataBox .grid-3,
.buiding-list-box .buiding-list-section .grid-3 {
  border-radius: 20px;
  overflow: auto;
}

.building-dashboard-box .buiding-list-section .grid-3 .card-img-top,
.buiding-list-box .buiding-list-section .grid-3 .card-img-top {
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
}

.note-editor .btn-default {
  width: auto;
  min-width: unset;
}

.list-cell__expression_name #custom_expression-1 {
  margin-top: 10px;
}

/***********************custom-main-dashboard******************/
.custom-main-dashboard .custom-chartBox {
  display: flex;
  gap: 40px;
  margin-top: 20px;
}

.custom-main-dashboard .custom-chartBox .semi-circle-chart,
.custom-main-dashboard .custom-chartBox .graph-cutom-chart {
  width: 50%;
  position: relative;
  border-radius: 20px;
  margin-bottom: 40px;
  background: var(--bg-white-background);
  padding: 20px 20px 0;
}

svg g.my-custom-legend-class {
  position: absolute;
  right: 0;
}

.custom-main-dashboard .custom-chartBox .common-chartDiv,
.custom-main-dashboard .healthy-chart-box .common-chartDiv {
  width: 100%;
  height: 305px;
}

.custom-main-dashboard .data-countBox {
  display: flex;
  gap: 40px;
}

.custom-main-dashboard .data-countBox .dash-Box {
  background-color: var(--bg-white-background);
  border-radius: 20px;
  width: 25%;
  padding: 20px;
  text-align: center;
  min-height: 335px;
}

.custom-main-dashboard .data-countBox .dash-Box h5,
.tv_dashboard_section .custom-main-dashboard .dash-Box h5 {
  text-align: left;
}

.custom-main-dashboard .custom-chartBox h5,
.tv_dashboard_section .custom-main-dashboard .custom-chartBox h5 {
  margin-bottom: 35px;
}

.custom-main-dashboard .data-countBox .dash-Box h5,
.custom-main-dashboard .data-countBox span,
.custom-main-dashboard .custom-chartBox h5,
.custom-main-dashboard .healthy-chart-box h5,
.tv_dashboard_section .custom-main-dashboard .dash-Box h5,
.tv_dashboard_section .custom-main-dashboard span,
.tv_dashboard_section .custom-main-dashboard .custom-chartBox h5,
.tv_dashboard_section .custom-main-dashboard .healthy-chart-box h5 {
  font-size: var(--font-az-18);
  color: var(--color-black);
  font-weight: 500;
}

.custom-main-dashboard .data-countBox .dash-Box.cloudy-box h2,
.tv_dashboard_section .custom-main-dashboard .data-countBox .dash-Box.cloudy-box h2 {
  font-size: 70px;
  font-weight: 400;
  color: var(--color-black);
  line-height: normal;
}

.custom-main-dashboard .data-countBox .dash-Box.cloudy-box h5,
.tv_dashboard_section .custom-main-dashboard .data-countBox .dash-Box.cloudy-box h5 {
  margin-bottom: 48px;
  text-align: center;
}

.custom-main-dashboard .data-countBox .dash-Box.cloudy-box h2,
.tv_dashboard_section .custom-main-dashboard .data-countBox .dash-Box.cloudy-box h2 {
  margin: 26px 0 20px;
}

.custom-main-dashboard .data-countBox .dash-Box.cloudy-box span,
.tv_dashboard_section .custom-main-dashboard .data-countBox .dash-Box.cloudy-box span {
  font-size: var(--font-az-14);
  color: #313131;
  font-weight: 600;
}

.custom-main-dashboard .data-countBox .dash-Box.cloudy-box span.time,
.tv_dashboard_section .custom-main-dashboard .data-countBox .dash-Box.cloudy-box span.time {
  color: #A4A4A4;
}

.custom-main-dashboard .data-countBox .dash-Box.amount-saved-box,
.tv_dashboard_section .custom-main-dashboard .dash-Box.amount-saved-box {
  position: relative;
}

.custom-main-dashboard .data-countBox .dash-Box.amount-saved-box img,
.tv_dashboard_section .custom-main-dashboard .dash-Box.amount-saved-box img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 135px;
  height: 154px;
  object-fit: contain;
}

.custom-main-dashboard .data-countBox .dash-Box.amount-saved-box p,
.tv_dashboard_section .custom-main-dashboard .dash-Box.amount-saved-box p {
  color: var(--color-black);
  font-size: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.custom-main-dashboard .data-countBox .dash-Box.energy-system-box,
.tv_dashboard_section .custom-main-dashboard .dash-Box.energy-system-box {
  position: relative;
}

.custom-main-dashboard .data-countBox .dash-Box.cooling-saved-box,
.custom-main-dashboard .data-countBox .dash-Box.heating-system-box,
.tv_dashboard_section .custom-main-dashboard .dash-Box.cooling-saved-box,
.tv_dashboard_section .custom-main-dashboard .dash-Box.heating-system-box {
  position: relative;
}

.custom-main-dashboard .data-countBox .dash-Box.cooling-saved-box img,
.custom-main-dashboard .data-countBox .dash-Box.heating-system-box img,
.tv_dashboard_section .custom-main-dashboard .dash-Box.cooling-saved-box img,
.custom-main-dashboard .dash-Box.heating-system-box img {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  width: 100%;
  height: 106px;
}

.custom-main-dashboard .data-countBox .dash-Box.cooling-saved-box span,
.custom-main-dashboard .data-countBox .dash-Box.heating-system-box span,
.tv_dashboard_section .custom-main-dashboard .dash-Box.cooling-saved-box span,
.tv_dashboard_section .custom-main-dashboard .dash-Box.heating-system-box span {
  text-align: left;
  display: block;
}

.custom-main-dashboard .data-countBox .dash-Box.cooling-saved-box p,
.custom-main-dashboard .data-countBox .dash-Box.heating-system-box p,
.tv_dashboard_section .custom-main-dashboard .dash-Box.cooling-saved-box p,
.tv_dashboard_section .custom-main-dashboard .dash-Box.heating-system-box p {
  font-size: 60px;
  text-align: left;
  color: var(--color-black);
  margin-bottom: 0;
  line-height: normal;
}

.custom-main-dashboard .countBox-section,
.tv_dashboard_section .custom-main-dashboard .countBox-section {
  margin-top: 40px;
}

.custom-main-dashboard .data-countBox .count-box {
  display: flex;
  align-items: center;
  background: var(--bg-white-background);
  border-radius: 15px;
  padding: 25px;
  width: 20%;
  color: var(--color-black);
}

.custom-main-dashboard .data-countBox .count-box .ImgBox,
.tv_dashboard_section .custom-main-dashboard .count-box .ImgBox {
  background: #F0FBFF;
  border-radius: 12px;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-main-dashboard .data-countBox .count-box .count-content,
.tv_dashboard_section .custom-main-dashboard .count-box .count-content {
  margin-left: 15px;
}

.custom-main-dashboard .data-countBox .count-box .count-content h5,
.tv_dashboard_section .custom-main-dashboard .count-box .count-content h5 {
  margin-bottom: 4px;
  font-size: var(--font-az-25);
  font-weight: 600;
}

.custom-main-dashboard .data-countBox .count-box .count-content .more-info-btn,
.custom-main-dashboard .data-countBox .count-box.healthy-box .healthy-chart-box .health-chart-more-info .more-info-btn,
.tv_dashboard_section .custom-main-dashboard .count-box .count-content .more-info-btn,
.tv_dashboard_section .custom-main-dashboard .count-box.healthy-box .healthy-chart-box .health-chart-more-info .more-info-btn {
  color: var(--primary-button-bg);
  font-size: var(--font-az-14);
  font-weight: 400;
  display: block;
  line-height: normal;
  text-decoration: underline;
  text-transform: capitalize;
}

.custom-main-dashboard .data-countBox .count-box .count-content span,
.tv_dashboard_section .custom-main-dashboard .count-box .count-content span {
  font-size: var(--font-az-16);
  font-weight: 600;
}

.custom-main-dashboard .data-countBox.system-nsc-section,
.tv_dashboard_section .custom-main-dashboard .system-nsc-section {
  margin-top: 40px;
}

.custom-main-dashboard .data-countBox.system-nsc-section .nsc-pre-box,
.tv_dashboard_section .custom-main-dashboard .system-nsc-section .nsc-pre-box {
  display: block;
  text-align: center;
  width: 19%;
  padding: 25px;
}

.custom-main-dashboard .data-countBox.system-nsc-section .nsc-pre-box .ImgBox {
  margin: auto auto 15px;
}

.custom-main-dashboard .data-countBox .count-box.system-au-box,
.custom-main-dashboard .data-countBox .count-box.healthy-box {
  width: 41%;
  padding: 25px;
}

.custom-main-dashboard .data-countBox .count-box.healthy-box .healthy-chart-box .healthy-cutom-chart .common-chartDiv {
  height: 185px;
}

.custom-main-dashboard .data-countBox .count-box.healthy-box .healthy-chart-box .healthy-cutom-chart {
  display: flex;
}

.custom-main-dashboard .data-countBox .count-box.healthy-box .healthy-chart-box .healthy-cutom-chart h5 {
  min-width: 125px;
}

.custom-main-dashboard .data-countBox .count-box.system-au-box .count-content {
  margin-left: 0;
  width: 100%;
}

.custom-main-dashboard .data-countBox .count-box.system-au-box .count-content .au-content-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 8px;
}

.custom-main-dashboard .data-countBox .count-box.system-au-box .count-content .au-content-box:last-child {
  margin-bottom: 0;
}

.custom-main-dashboard .data-countBox .count-box.system-au-box .count-content .au-content-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: linear-gradient(270deg, #00A1E4 0%, #CCF0FF 100%);
}

.custom-main-dashboard .data-countBox .count-box.system-au-box .count-content .au-content-box h5 {
  font-size: var(--font-az-16);
}

.custom-main-dashboard .data-countBox .count-box.system-au-box .count-content .au-content-box span {
  font-size: 20px;
}

.circular-progress {
  width: 165px;
  height: 165px;
  border-radius: 50%;
  padding: 10px;
  /* Space for the border */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0 0px 20px rgb(232, 248, 255, 0.8);
  z-index: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 50px;
}

.custom-main-dashboard .dashboard.col-md-9 .data-countBox.countBox-section,
.notification-dashboard.col-md-9 .custom-main-dashboard .dashboard.col-md-12 .data-countBox.countBox-section {
  flex-wrap: wrap;
}

.custom-main-dashboard .dashboard.col-md-9 .custom-chartBox .graph-cutom-chart div,
.custom-main-dashboard .dashboard.col-md-9 .custom-chartBox .graph-cutom-chart #pckwh_chart svg,
.notification-dashboard.col-md-9 .custom-main-dashboard .dashboard.col-md-12 .custom-chartBox .graph-cutom-chart div,
.notification-dashboard.col-md-9 .custom-main-dashboard .dashboard.col-md-12 .custom-chartBox .graph-cutom-chart #pckwh_chart svg {
  width: 100% !important;
}

/* Border gradient effect */
.circular-progress::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(180deg, #00A1E4 0%, #CCF0FF 100%);
  border-radius: 50%;
  z-index: -1;
}

/* Inner white circle to make it look hollow */
.inner-circle,
.energy-box {
  width: 100%;
  height: 100%;
  background-color: var(--bg-white-background);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* The number in the center */
.circular-progress .number {
  font-size: 40px;
  color: var(--color-black);
  font-weight: 600;
}

/* Optional: smaller unit text */
.circular-progress .number span {
  display: block;
  font-size: var(--font-az-18);
  font-weight: 600;
  color: var(--color-black);
}

.border-radius-20 {
  border-radius: 20px;
}

.border-radius-50 {
  border-radius: 50px;
}

.select2-search__field {
  cursor: pointer;
}

.modal-lg.custom-modal-w-500 {
  max-width: 500px !important;
}

.modal-dialog.forgot-modal-w-435 {
  max-width: 435px !important;
}

[type="checkbox"]+label {
  line-height: 20px;
}

#sms-log-list .tooltip .right {
  width: 250px;
}

.view_info_box .view_innerBox .dash_box_new {
  margin-right: 12px;
}

.modal .modal-body .summary {
  margin-top: 10px;
}

.text-blue {
  color: var(--color-link-text) !important;
}

.iaq_content .label {
  font-weight: 200;
}

#sensorTable td .label {
  font-size: 100%;
}

.select2-container.custom-select2-container {
  z-index: 99999;
}

.col-form-label {
  padding: 0;
}

.col-form-label label,
.col-form-label .control-label,
label,
.control-label {
  color: var(--color-table-lightgray);
  font-weight: 400;
  font-size: var(--font-az-14);
  line-height: normal;
  margin-bottom: 7px;
}

#grid-list h4 center,
#equipmet_list h4 center {
  padding: 25px 0;
  color: var(--color-black);
  font-size: 16px;
  font-weight: 400;
}

.small-box h3 {
  font-size: var(--font-az-25);
  color: var(--color-black);
  font-weight: 600;
}

.small-box p {
  font-size: var(--font-az-16);
  color: var(--color-black);
  font-weight: 600;
}

/* .small-box>.small-box-footer{
  font-size: 12px;
 } */
.small-box>.small-box-footer i {
  display: none !important;
}

.box-header .box-title,
.box-header>.fa,
.box-header>.glyphicon,
.box-header>.ion {
  font-size: var(--font-az-18);
  color: var(--color-black);
  font-weight: 600;
}

#chart_3.system_health_chart {
  height: 370px;
}

#ct-chart-12-new.breakdown_pre_chart {
  height: 370px !important;
  object-fit: contain;
}

#energy-mange-rBox {
  background: var(--bg-white-background);
  padding: 15px 0;
  border-radius: 20px;
}

#export_data_btn_pdf {
  background: var(--bg-white-background);
  border-radius: 20px;
  padding: 15px;
}

#energy-mange-rBox .chart.main_chart {
  padding: 0 !important;
}

#energy-mange-rBox .chart.main_chart #vrv_cop_chart {
  height: 358px !important;
}

.energy-bg-success {
  min-height: 75px;
  color: var(--color-white);
}

.mal-alert-th {
  min-width: 225px;
}

.no_data_available_text p,
table tr td .empty,
.no-data p,
.no_date_avil_text {
  font-size: var(--font-az-16);
  color: var(--color-black);
  text-align: center;
  font-weight: 400 !important;
}

.mal-alt-statud-td {
  display: flex;
}

.mal-alt-statud-td input {
  width: 135px;
}

.mal-alt-statud-td input:last-child {
  margin-left: 10px;
}

.line-h {
  line-height: normal;
}

code a:hover {
  color: var(--color-white);
}

.malfun-report .modal-title span {
  font-size: var(--font-az-16);
}

.help-list-section {
  padding: 0 20px;
}

.help-list-section h3,
.help_post_box h3 {
  font-size: var(--font-az-18);
  color: var(--color-black);
  font-weight: 600;
}

.help-list-section center h5,
.help_post_box center h5 {
  font-weight: 500;
  color: var(--color-black);
  font-size: 16px;
}

.help-list-section .card h4 {
  font-size: var(--font-az-16);
  font-weight: 600;
  color: var(--color-black);
}

.help_post_box {
  background: var(--bg-white-background);
  border-radius: 20px;
  padding: 20px;
}

.post_content_header {
  position: relative;
  left: unset;
  top: unset;
  box-shadow: none;
  display: block;
}

.modal-title .graph_interval label {
  font-size: var(--font-az-16);
}

.power-consum-section {
  padding: 0 20px;
}

.power-consum-section .nested-list-wrap {
  margin-bottom: 0;
}

.power_consumption-permission {
  padding: 25px 20px;
}

.power_consumption-permission button {
  margin-right: 10px;
}

.power-consum-section .modal-content.power-comp-chart,
.power-consum-section .modal-content.power-contribution-per-chart,
.power-consum-section .modal-content.indoor-fcu-chart,
.power-consum-section .modal-content.system-loading-per-chart,
.power-consum-section .modal-content.total-power-cons-chart {
  box-shadow: none !important;
  border-radius: 20px;
  border: 1px solid var(--border-table-gray);
}

.power-consum-section .exportReport .btn-info {
  min-width: unset;
  margin-left: 0;
  margin-right: 15px;
}

.custom-bg-primary {
  background-color: var(--primary-button-bg);
}

.dash-control-mangeBox{
  padding: 20px 20px 0;
}

.dash-control-mangeBox .box{
  height: 100%;
}

.dash-control-mangeBox .border-gray {
  border-color: var(--border-color) !important;
}

.dash-control-mangeBox span.seperator {
  border-color: var(--border-color);
}

.control-setup-popup {
  padding: 15px;
}

.cache_clear_button {
  border-radius: 50px;
  background: var(--primary-button-bg);
  width: auto;
  min-width: 100px;
  line-height: normal;
  margin-left: 10px;
}

.cache_clear_button:hover , .cache_clear_button:active,.cache_clear_button.active,.cache_clear_button:focus-visible{
  background: var(--primary-button-bg) !important;
}

.label-success {
  background: var(--theme-success-color);
  border-radius: 50px;
  font-size: 13px !important;
}

center h4 {
  font-size: var(--font-az-16);
  color: var(--color-black);
  font-weight: 400;
}

.glyphicon-exclamation-sign {
  display: none;
}

.cus-label-light {
  color: var(--color-white);
}

.build-profile-list-sec .grid-3 {
  border: 1px solid var(--secondary-button-bg);
}

.build-profile-list-sec .bg-expired .grid-3 {
  border-color: var(--border-color);
}

.build-profile-list-sec .grid-3 {
  border-radius: 20px;
}

.build-profile-list-sec .grid-3 .card {
  border-radius: 18px 18px 0 0;
}

.building-contract.custom-modal-form {
  padding: 20px 0;
}

.nav-tabs-custom .tab-content.building-profile-tab-content {
  padding-left: 0;
  padding-right: 0;
}

.nav-tabs-custom .tab-content.building-profile-tab-content .grid-view {
  padding: 0;
}

.building-contract.custom-modal-form.inner_box_form {
  padding: 20px;
}

.select2-container--open.modal-report-sub-select2 .select2-dropdown--below {
  margin-top: -6px;
}

.scene_form.building-form .nav-tabs-custom .tab-content {
  background: var(--bg-white-background);
  padding: 0;
}

#add_new_record_excel {
  margin-right: 8px;
}

.tab-content#Control.active {
  margin-top: 20px;
}

.build-card-dash-text {
  display: flex;
  margin-top: 12px;
}

.build-card-dash-text span {
  display: flex;
  flex-direction: column;
  color: var(--color-table-lightgray);
  margin-bottom: 5px;
  margin-right: 12px;
  text-align: center;
}

.build-card-dash-text span i {
  margin-bottom: 2px;
}

.build-card-dash-text span i.fa.fa-television {
  padding-right: 0;
}

.delete_pred_btn {
  line-height: normal;
  border-radius: 50px;
  width: auto;
  min-width: 100px;
  font-weight: 500;
}

.iaq_manage_table td .cus-text-black {
  color: var(--color-black) !important;
}

.iaq_manage_table td [id^="health_status_"] {
  color: var(--color-black) !important;
}

.iaq_manage_table td [id^="sensor_"] {
  color: var(--color-table-lightgray) !important;
}

.iaq_manage_table td [id^="health_status_"].label-success {
  color: var(--color-white) !important;
}

.iaq_manage_table td [id^="health_status_"].label-warning-light {
  background: var(--secondary-button-bg);
  color: var(--color-white) !important;
  padding: 9px 15px;
  border-radius: 50px;
}

.my_Modal_system.iaq_modal_system .modal-header .close {
  margin: 0;
}

.modal.note-modal .modal-header {
  padding: 20px;
}

.modal.note-modal .modal-dialog {
  border-radius: 20px;
}

.modal.note-modal .modal-dialog .modal-body {
  padding: 20px 20px 0;
}

.modal.note-modal .modal-dialog .modal-footer {
  padding: 6px 20px 20px;
}

.modal.note-modal .modal-dialog .modal-footer .note-link-btn,
.modal.note-modal .modal-dialog .modal-footer .note-image-btn {
  background-color: var(--primary-button-bg);
  border-color: var(--primary-button-bg);
  border-radius: 50px;
  line-height: normal;
}

#export_data_btn_pdf.energy_export_performance {
  padding: 15px;
  display: block;
}

#energy-mange-rBox.energy_manage_per_rBox {
  padding: 15px;
  margin-bottom: 20px;
}

.pd-r-13 {
  padding-right: 13px;
}

.any_btn_save_next {
  margin-right: 10px;
}

.pd-b-10 {
  padding-bottom: 10px;
}

.energy-info-divs .info-box {
  min-height: unset;
}
.energy-info-divs .energy-info-date{
  font-weight: 400;
  font-size: var(--font-az-14);
  font-style: italic;
  text-transform: none;
}

.sidebar-menu>li.building-nav-link>a {
  padding: 2px 5px 2px 10px;
}

.main-sidebar .sidebar-menu li.building-nav-link a i {
  font-size: 16px;
  color: var(--primary-button-bg);
  opacity: 0.6;
}

.main-sidebar .sidebar-menu li.building-nav-link.active a i {
  color: var(--color-white);
}


/************Mater Server Change according to version Bootstrap 5************/
.table {
  --bs-table-bg: transparent !important;
  width: 100%;
}

.table>tbody>tr>td {
  color: var(--color-table-lightgray);
}

.table>thead>tr>th,
.table>th {
  color: var(--color-black);
  font-weight: 500;
}

.table>tbody>tr>th {
  color: var(--color-table-lightgray);
}

.chatbox-section .chat-window .chat-body .message-container center h5 {
  color: var(--color-white);
}

.mr-10 {
  margin-right: 10px;
}

.header-bg-remove-table .kv-table-header {
  background: transparent;
}

.chatbox-section .chat-window .media-list center h5 {
  color: var(--color-white);
}

hr {
  border: 0;
  background-color: #57585a;
  height: 1px;
}

.add_contract_modal {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
}

.add_contract_modal .form-group {
  width: 50%;
}

.add_contract_modal .first_label {
  font-size: var(--font-az-14);
  width: 100%;
  margin-bottom: -10px;
}

.modal-backdrop.show {
  z-index: 9999;
}

.modal.fade.show {
  z-index: 99999;
}

.modal.fade.show .btn {
  text-transform: capitalize;
}

.custom_defa_checkbox {
  appearance: none;
  width: 20px;
  height: 20px;
  background-color: var(--bg-white-background);
  border-radius: 2px;
  border: 2px solid var(--border-color);
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.custom_defa_checkbox:checked {
  background-color: var(--primary-button-bg);
  border-color: var(--primary-button-bg);
}

.custom_defa_checkbox:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 12px;
  top: 0px;
  left: 5px;
  transform: rotateZ(37deg);
  border-right: 2px solid var(--bg-white-background) !important;
  border-bottom: 2px solid var(--bg-white-background) !important;
}

.custom_defa_checkbox[type="checkbox"]:focus {
  outline: none;
  outline-offset: unset;
}

.field-manageproject-is_same_as_cooling_price label {
  padding-left: 17px;
}

.analysis_price_checkbox.custom_defa_checkbox:checked::after {
  top: 6px;
  left: 4px;
}

.Is_Total_Building_Power.analysis_price_checkbox.custom_defa_checkbox:checked::after {
  left: 7px;
}

.Is_RMS_Fee_same_cooling.custom_defa_checkbox:checked::after {
  top: 5px;
  left: 7px;
}

.is_same_as_remarks.custom_defa_checkbox:checked::after {
  top: 2px;
}

.carbon_di_col,
.air_temp_col {
  margin-left: auto;
  width: auto;
}

.carbon_di_input_date {
  width: 175px;
}

.control-cmd-input .input-group .input-group-addon {
  display: none;
}

.table.country_build_pop_table tbody tr th {
  color: var(--color-black);
}

.time-options .start_custom_div.interval_custom_box .hour_btn {
  border-radius: 60px;
  min-width: 85px;
  margin-left: 6px;
}

.time-options .start_custom_div.interval_custom_box .day_btn {
  border-radius: 60px;
  min-width: 85px;
  margin-left: 6px;
}

.time-options .start_custom_div.interval_custom_box .minute_btn {
  border-radius: 60px;
  min-width: 85px;

}

.report-email-modal-div {
  padding: 15px;
  color: var(--color-black);
  font-size: 15px;
}

input.form-control {
  min-height: 40px;
}

select.form-control {
  min-height: 40px;
}

.nested-list-wrap .level0 input[type=checkbox] {
  appearance: none;
  width: 17px;
  height: 17px;
  background-color: var(--bg-white-background);
  border-radius: 2px;
  border: 2px solid var(--border-color);
  display: inline-block;
  position: relative;
  cursor: pointer;
  left: 0;
}

.nested-list-wrap .level0 input[type=checkbox]:checked {
  background-color: var(--primary-button-bg);
  border-color: var(--primary-button-bg);
}

.nested-list-wrap .level0 input[type=checkbox]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 11px;
  top: 0px;
  left: 4px;
  transform: rotateZ(37deg);
  border-right: 2px solid var(--bg-white-background) !important;
  border-bottom: 2px solid var(--bg-white-background) !important;
}

.nested-list-wrap .level0 input[type=checkbox]:focus {
  outline: none;
  outline-offset: unset;
}

input[type=checkbox].select-on-check-all,
tr[data-key=""] td input[type=checkbox] {
  appearance: none;
  width: 20px;
  height: 20px;
  background-color: var(--bg-white-background);
  border-radius: 2px;
  border: 2px solid var(--border-color);
  display: inline-block;
  position: relative;
  cursor: pointer;
  left: 0;
  top: 5px;
}

input[type=checkbox].select-on-check-all:checked,
tr[data-key=""] td input[type=checkbox]:checked {
  background-color: var(--primary-button-bg);
  border-color: var(--primary-button-bg);
}

input[type=checkbox].select-on-check-all:checked::after,
tr[data-key=""] td input[type=checkbox]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 12px;
  top: 0px;
  left: 5px;
  transform: rotateZ(37deg);
  border-right: 2px solid var(--bg-white-background) !important;
  border-bottom: 2px solid var(--bg-white-background) !important;
}

input[type=checkbox].select-on-check-all:focus,
tr[data-key=""] td input[type=checkbox]:focus {
  outline: none;
  outline-offset: unset;
}

.swal-overlay {
  z-index: 100000;
}

.swal-title,
.swal-text {
  color: var(--color-black);
}

.swal-button {
  min-width: 85px;
  width: auto;
  border-radius: 50px;
  background-color: var(--primary-button-bg);
}

.bg-orange-color {
  background-color: var(--theme-color-orange);
  color: var(--color-white);
}

.bg-secondary-color {
  background-color: var(--secondary-button-bg);
  color: var(--color-white);
}

.btn-info.cop-degradation {
  color: var(--color-white) !important;
}

.modal-content.bubble_grp_chart {
  box-shadow: none !important;
}

.kv-table-header {
  background: transparent !important;
}

.fcu-list .kv-expand-icon-cell:hover,
.fcu-list .kv-expand-icon-cell:focus {
  color: var(--color-white) !important;
  background-color: var(--primary-button-bg-op-60) !important;
}

.modal #export_data_btn_pdf.energy_export_performance {
  padding: 0 15px;
  margin: 0;
  text-align: end;
}

.temp-status span span {
  color: var(--theme-color-orange);
}

.temp-status span[class^="eqp-state-dta"],
.equpiment_container .enabled .temp-status .text-on-status {
  color: var(--theme-danger-color);
}

.text-on-status{
  color: var(--theme-success-color) !important;
}

.modal .popup-user-permissions .field-usr-role_permissions #usr-role_permissions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.modal .popup-user-permissions .field-usr-role_permissions #usr-role_permissions label {
  min-width: 32%;
  height: auto;
}

.input-copy-settings.btn.form-control {
  min-height: unset;
}

.input-copy-settings.btn.form-control:focus,
.input-copy-settings.btn.form-control:active {
  outline: none;
}

.bulk-class.btn,
#bulk_selection.btn {
  background-color: var(--primary-button-bg);
}

.bulk-class.btn i,
#bulk_selection.btn i {
  display: none;
}

.bulk-class.btn:hover,
.bulk-class.btn:focus,
#bulk_selection.btn:focus,
#bulk_selection.btn:hover {
  background-color: var(--secondary-button-bg);
  border-color: var(--secondary-button-bg);
  color: var(--color-white);
}

.slect-unselect-control-btn {
  margin-bottom: 10px;
}

.slect-unselect-control-btn .control-sett-btn {
  margin: 0 10px;
}

.accept-master-admin-text {
  color: var(--primary-button-bg) !important;
}

.add-proj-heading-h4 {
  font-size: var(--font-az-15);
}

.edit_template_detail.me-1 {
  font-size: 13px;
}

.back_btn {
  border-radius: 60px;
  margin-bottom: 15px;
}

.back_btn:hover,
.back_btn.active,
.back_btn:focus,
.back_btn:active {
  background-color: var(--color-dark-gray-op60) !important;
  border-color: transparent !important;
}

#chartdiv,
#chartdiv1,
#vva_chartbox {
  width: 100%;
  height: 500px;
}

.total_visits_box {
  margin-top: 15px;
}

.platform_building_box {
  display: flex;
  align-items: baseline;
}

.exclude_staff {
  margin-top: 7px;
}

.platform_building_box.country_box .platfom_box {
  margin-right: 0;
}

.platfom_box,
.building_rbox {
  width: 100%;
}

.platform_label {
  padding-left: 26px
}

.filter_icon_button a {
  font-size: 24px;
}

.title_filter_Outbox {
  background: var(--bg-white-background);
  padding: 20px;
  border-radius: 20px;
}

.title_filter_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title_filter_box h3,
.title_value_header h3 {
  font-size: var(--font-az-18);
  color: var(--color-black);
  font-weight: 600;
  margin-top: 0;
}

.title_value_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: var(--color-table-lightgray);
}

.total_visits_box p {
  font-weight: 500;
  color: var(--color-black);
  font-size: 16px;
}

.per_increment {
  font-size: 12px;
}

.per_increment a {
  color: var(--theme-success-color);
  font-weight: 600;
}

.view_info_box {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.view_info_box .view_innerBox .dash_box_new i {
  font-size: 42px;
  padding: 10px;
  border-radius: 5px;
  color: var(--color-white);
}

.view_info_box .view_innerBox .dash_cnt_des {
  /* width: 70%; */
  font-size: 12px;
  margin-bottom: 0;
  font-weight: 400;
  color: var(--color-table-lightgray);
}

.view_info_box .view_innerBox .dash_cnt_des h3 {
  line-height: normal;
}

.view_info_box .view_innerBox:nth-child(1) .dash_box_new i {
  background: var(--primary-button-bg);
}

.view_info_box .view_innerBox:nth-child(2) .dash_box_new i {
  background: var(--primary-button-bg-op-80);
}

.view_info_box .view_innerBox:nth-child(3) .dash_box_new i {
  background: var(--theme-color-orange);
}

.view_info_box .view_innerBox:nth-child(4) .dash_box_new i {
  background: var(--theme-color-orange-op60);
}

.view_info_box .view_innerBox:nth-child(5) .dash_box_new i {
  background: var(--secondary-button-bg);
}

.view_info_box .view_innerBox:last-child {
  margin-right: 0;
}

.view_innerBox {
  padding: 15px 10px;
  background: var(--bg-white-background);
}

.view_info_box .view_innerBox {
  padding: 25px;
  flex: 1;
  margin-right: 40px;
  display: flex;
  align-items: center;
  border-radius: 20px;
}

.view_innerBox h3 {
  margin-top: 0;
  font-size: var(--font-az-16);
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--color-black);
}

.vva_count_box {
  margin-top: 40px;
}

.vva_count_box .view_innerBox {
  display: flex;
  padding-bottom: 15px;
}

.vva_lBox {
  width: 40%;
  background: var(--bg-white-background);
  padding: 15px;
  margin-right: 40px;
  border-radius: 20px;
}

.vva_malfunction_box {
  display: flex;
}

.vva_malfunction_box h3 {
  margin-top: 0;
}

.malfun_outerBox {
  margin-top: 0;
  width: 60%;
  background: var(--bg-white-background);
  padding: 15px;
  border-radius: 20px;
}

.vva_statusBox {
  width: 38%;
  display: flex;
  color: var(--color-black);
  align-items: center;
  font-weight: 500;
}

.skin-blue .content.analytics_section {
  background: var(--bg-light-blue);
  height: 100%;
}

.analytics_section .vva_statusBox span {
  color: var(--color-black);
  display: block;
}

.vva_statusBox .cbox {
  background-color: var(--theme-success-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0 15px;
  height: 185px;
  flex-direction: column;
  text-align: center;
  cursor: pointer;
}

.vva_statusBox .cbox.active {
  color: var(--color-white);
}

.analytics_section .vva_statusBox .cbox.active span {
  color: var(--color-white);
}

.vva_statusBox .cbox:hover {
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.vva_statusBox .box1 {
  width: 115px;
}

.vva_statusBox .box2 {
  background-color: var(--theme-light-green-op60);
  height: 170px;
  width: 75px;
}

.vva_statusBox .box3 {
  height: 150px;
  background-color: var(--theme-lime-green-color-op60);
  width: 125px;
}

.vva_statusBox .box4 {
  background-color: var(--theme-color-orange);
  height: 115px;
  width: 165px;
  margin-left: -5px;
}

.analytics_section span {
  font-size: 14px;
  color: var(--color-black);
  font-weight: 500;
}

.cop_top_visit_sec {
  display: flex;
  margin-top: 40px;
}

.vva_count_box .cop_report_box {
  width: 25%;
  background: var(--bg-white-background);
  padding: 10px 15px;
  margin-right: 40px;
  border-radius: 20px;
}

.vva_count_box .cop_report_box .cop_report_lBox h3 {
  margin-top: 0;
}

.top_visited_box h3 {
  position: relative;
  padding-bottom: 10px;
  font-size: var(--font-az-18);
  color: var(--color-black);
  font-weight: 600;
  margin-top: 0;
}

.top_visited_box .top_visit_cont {
  padding-top: 20px;
  position: relative;
  min-height: 190px;
}

/* .top_visited_box .top_visit_cont::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  min-height: 235px;
  background: var(--border-color);
  display: none;
} */

.top_visit_outerSec {
  width: 100%;
  background: var(--bg-white-background);
  padding: 10px 15px;
  border-radius: 20px;
}

.top_visit_outerSec .row .col-lg-3 {
  width: 20%;
}

.top_visit_outerSec .row .col-12.border-cus-right::after{
  content: '';
  position: absolute;
  top: 42px;
  right: 10px;
  width: 1px;
  height: 85%;
  background: var(--border-color);
}
.top_visit_outerSec .row .col-12.border-cus-right:last-child:after{
  display: none;
}

/* .top_visit_outerSec .row .col-12:last-child .top_visited_box .top_visit_cont::after {
  display: none;
} */

.top_visited_box .top_visit_cont span {
  display: inline-block;
  margin-bottom: 10px;
}

/***********Least 5 Visited Pages */
.top_visited_box .top_visit_cont h6 {
  margin-bottom: 2px;
  word-break: break-word;
  color: var(--color-table-lightgray);
}

.top_visited_box h3::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 2px;
  background-color: var(--border-color);
  left: 0;
  bottom: 0;
}

.analytics_section .progress-info {
  font-size: 12px;
  color: var(--color-black);
  font-weight: 500;
  margin-bottom: 10px;
}

.status-item span {
  color: var(--color-dark-gray);
  font-weight: 400;
}

.no_date_avil_text {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cop_report_btns.cop-no-data {
  min-height: 255px;
  /* display: flex; */
  align-items: center;
  justify-content: center;
}

.top_visit_cont.no-data {
  padding-top: 20px;
  margin-top: 0;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top_visit_cont.no-data {
  padding-top: 20px;
  margin-top: 0;
  min-height: 235px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-info .fa.information,
.fa.information_page {
  margin-left: 0 !important;
  color: var(--primary-button-bg) !important;
}

.information_all_page {
  display: block;
  color: var(--primary-button-bg);
  background: transparent;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 10px;
  border: none;
}

.information_all_page i {
  color: var(--color-black);
  font-size: 12px;
}

.user-history .grid-view {
  padding: 0;
}

.dashboard_fault_section .small-box .inner {
  min-height: 132px;
}

.dashboard_fault_section li.box-label.circle-icon.red::before {
  color: var(--theme-danger-color);
}

.dashboard_fault_section li.box-label.blue-circle-icon::before {
  color: var(--theme-color-orange);
}

.dashboard_fault_section li.box-label.circle-icon::before {
  color: var(--theme-success-color);
}

.dashboard_fault_section #ct-chart-12 .ct-label.ct-horizontal.ct-end {
  position: relative;
  justify-content: flex-end;
  text-align: right;
  transform-origin: 100% -150%;
  transform: translate(-100%) rotate(-27deg);
  white-space: nowrap;
}

.btn-dafault.btn_reset {
  border-color: var(--primary-button-bg);
  background-color: var(--bg-white-background);
  color: var(--primary-button-bg);
  width: auto;
  min-width: 100px;
  border-radius: 50px;
  line-height: normal;
  font-size: var(--font-az-14);
  text-transform: capitalize;
  font-weight: 500;
}

.btn-dafault.btn_reset i {
  display: none;
}

code {
  border: 0px;
  margin-right: 2%;
  background-color: var(--bg-dark-gray);
  line-height: 15px;
  display: inline-block;
  margin-bottom: 2%;
}

code a {
  color: var(--color-white);
}

.malfunc-alert-list-sec code {
  border: 0px;
  margin-right: 2%;
  background-color: var(--theme-purple-color-op30);
  line-height: 15px;
  display: inline-block;
  margin-bottom: 2%;
  color: var(--color-white);
}

.export_data_btn i {
  display: none;
}

svg g text {
  font-family: 'Myriad Pro' !important;
}

.not-set,
.na_text_color {
  color: var(--theme-danger-color);
}

.not-set-danger-text {
  color: var(--theme-danger-color);
  text-decoration: underline;
}

.cusrsor-pointer {
  cursor: pointer;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive .summary {
  position: absolute;
  bottom: 8px;
  left: 12px;
  font-size: var(--font-az-14);
  padding: 0;
}

.common-table-grid-view {
  width: 100%;
  margin-top: 15px;
  padding-bottom: 40px;
  position: relative;
}

ul.pagination {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-top: 16px;
  margin-bottom: 0;
  position: absolute;
  right: 5px;
  bottom: 0;
}

.btn-info.form-control {
  color: var(--color-white);
}

.glyphicon-remove:before {
  content: "\e020";
}

.building-conf-section th.list-cell__slug {
  display: none;
}

.building-conf-section th.list-cell__prediction_categ_id {
  display: none;
}

.building-conf-section th.list-cell__consecutive_times_value {
  display: none;
}

.building-conf-section td.list-cell__slug {
  display: none;
}

.building-conf-section td.list-cell__prediction_categ_id {
  display: none;
}

.building-conf-section td.list-cell__consecutive_times_value {
  display: none;
}

.building-conf-section .list-cell__button_copy .btn-info:focus,
.building-conf-section .list-cell__button_copy .btn-info.focus {
  background-color: var(--primary-button-bg);
}

.building-conf-section .list-cell__button_copy .input-copy-settings {
  height: 100%;
}

.building-conf-section fieldset,
.building-conf-section legend {
  all: unset;
}

.building-conf-section fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
  width: 98%;
}

.building-conf-section legend {
  padding: 0 6px;
  font-size: var(--font-az-15);
  margin-bottom: .5rem;
}

.building-conf-section .error_label, .error_label {
  color: var(--theme-danger-color);
}

.building-conf-section .date-error {
  width: 73%;
  float: right;
  margin-bottom: 10px;
  padding-right: 5px;
}

.building-conf-section .checkbox-div .col-md-4 [type="radio"]:checked+label,
[type="radio"]:not(:checked)+label {
  width: auto;
}

.building-conf-section .email_sepr_text {
  color: var(--theme-danger-color);
  font-size: 12px;
}

.building-conf-section #prediction-config-form {
  padding-top: 15px;
}

/*******************Contract page css********************/

td.list-cell__prediction_categ_id {
  display: none;
}

.building-contract-page .buiding-profile img {
  max-width: 100%;
  width: auto;
}

.building-contract-page .card-opecity {
  position: unset;
  background: var(--secondary-button-bg);
  margin: 0;
  border: 0;
  border-radius: 0;
  padding: 10px 0;
  vertical-align: middle;
}

.info_uuper {
  right: unset !important;
  left: 25px;
  top: -10px;
  padding: 4px 5px;
}

.info_uuper_sec {
  right: unset !important;
  left: 25px;
  top: -10px;
  padding: 4px 5px;
}

.card-opecity p.text {
  font-size: 16px;
  padding-top: 5px;
}

#progressbar .c_color_green:before {
  background: #009e0f;
}

.btn-success {
  background-color: #009e0f !important;
  border-color: #009e0f !important;
}

.manage-project-list h6.w-100 {
  width: 100% !important;
}

.btn-link_plus {
  background: transparent;
  border: 0;
  color: var(--color-link-text);
  padding: 0;
  font-weight: 500;
  text-transform: uppercase;
  margin: 5px 0;
  border-color: transparent;
}

.btn-link_plus:focus {
  color: var(--color-link-text);
  border-color: transparent;
}

.btn-link_plus:focus-visible {
  color: var(--color-link-text);
  border: 0;
  border-color: transparent;
}

.btn-link_plus:hover {
  color: var(--color-link-text);
}

.theme_clr_text {
  color: var(--color-link-text) !important;
}

.pl-8 {
  padding-left: 8px;
}

.ml-20 {
  margin-left: 20px !important;
}

.progress {
  margin-left: 10px;
  height: 15px;
  border-radius: 10px !important;
  margin-top: 10px;
  background: rgba(0, 0, 0, 0.2);
}

.progress-bar {
  /* position: absolute;
height: 10px;
margin-top: -4px; */
  border-radius: 10px !important;
  /* background-color: var(--primary-button-bg); */
}

.manage-project-list h5 {
  padding-left: 10px;
}

.text-success {
  color: var(--primary-button-bg) !important;
}

.badge-success {
  background-color: var(--primary-button-bg) !important;
}

.badge-danger {
  background-color: var(--theme-color-orange) !important;
}

.float-right {
  float: right;
}

.content-list .text-style {
  color: var(--secondary-button-bg) !important;
}

.bg-expired .card.row.card-opecity {
  background-color: var(--color-table-lightgray) !important;
}

.bg-expired #progressbar li::before {
  background-color: var(--color-table-lightgray) !important;
}

.bg-expired #progressbar li .info_uuper a i.fa-check {
  color: lightgray !important;
}

.bg-expired .progress {
  background-color: var(--color-table-lightgray) !important;
}

.bg-expired .progress-bar {
  background-color: var(--color-table-lightgray) !important;
}

.skin-blue .content {
  background: var(--bg-light-blue);
  ;
  /* padding: 0; */
}

.box {
  /* background: var(--bg-light-blue); */
  margin: 0;
}

.img-content-wrap {
  /* background: var(--bg-white-background);
border-radius: 20px;
padding: 30px;
margin: 0 auto; */
}

.section-one {
  /* padding: 20px; */
}

.buiding-profile .nav-tabs-custom {
  /* margin: 0; */
}

.content-list .text1 {
  float: right;
}

.inner_box_form fieldset {
  width: 100%;
  padding: 0;
  margin: 0;
  display: contents;
}

.inner_box_form fieldset legend {
  display: none;
}

.inner_box_form fieldset button[type="submit"] {
  float: inline-end;
}

.prediction-div.inner_box_form .modal-header {
  margin-bottom: 20px;
}

.prediction-div.inner_box_form .col-lg-12.col-sm-12.col-12 {
  padding: 0 20px;
}

.prediction-div.inner_box_form .row {
  padding: 0 20px;
}

.prediction-list.inner_box_form .modal-header {
  margin-bottom: 20px;
}

.prediction-list.inner_box_form .form-group.field-building-prediction_template {
  padding: 0 20px;
}

.prediction-list.inner_box_form .row {
  padding: 0 30px;
}

.contract-permission.contract-permission-report {
  max-height: 54vh;
  overflow: auto;
  padding: 20px;
}

.contract-permission.contract-permission-report .user-form {
  margin-top: 0 !important;
}

.prediction-list.inner_box_form form button[type="submit"] {
  margin-bottom: 20px;
}

.contract-permission.contract-permission-report button[type="submit"] {
  margin-bottom: 20px;
}

.contract-permission.contract-permission-report h5 {
  font-size: var(--font-size-14);
}

.prediction-div.inner_box_form form button[type="submit"] {
  margin-bottom: 0px;
}

form {
  padding: 0px;
}

/* #bilding-form{
padding: 20px;
} */
.inner_box_form .row .col-lg-12.col-sm-12.col-12 {
  margin: 0 !important;
}

.btn_last_row .row .col-lg-12.col-sm-12.col-12 {
  padding: 0 10px !important;
  margin-top: 15px !important;
}

.bnt_holder_cmd {
  /* position: absolute; */
  width: 100%;
  display: flex;
  place-content: space-between;
  bottom: 26px;
  width: auto;
  /* right: 20px; */
}

.btn-arrow-slider {
  color: var(--color-white);
  border: 0;
  padding: 10px 15px;
  margin-left: 30px;
  font-size: var(--font-az-14);
  background-color: var(--primary-button-bg);
  border-color: var(--primary-button-bg);
  width: auto;
  min-width: 100px;
  border-radius: 50px;
  text-transform: capitalize;
}

.sliders {
  border-color: var(--primary-button-bg);
  background-color: var(--primary-button-bg);
  color: var(--color-white);
  width: auto;
  min-width: 100px;
  border-radius: 50px;
  line-height: normal;
  font-size: var(--font-az-14);
  text-transform: capitalize;
  font-weight: 500;
  margin: 20px 24px;
}

.prediction-list-div.inner_box_form #prediction-form {
  padding: 20px !important;
  padding-bottom: 0 !important;
}

.modal-footer.modal-footer-uniform.col-sm-12.mt-10 {
  /* padding: 20px; */
}

.modal.fade.show {
  /* overflow: hidden; */
}

.tooltip-cust {
  position: relative;
  display: inline-block;
}

.tooltip-cust .tooltiptext-cust {
  visibility: hidden;
  width: auto;
  background-color: var(--bg-black-background);
  color: var(--color-white);
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: 135%;
  left: 0;
  margin-left: 0;
  padding: 6px 12px;
  font-size: 12px;
}

.tooltip-cust .tooltiptext-cust::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 15%;
  margin-left: 0;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent black transparent;
}

.tooltip-cust:hover .tooltiptext-cust {
  visibility: visible;
}

.modal-footer {
  border: none;
}

.project_modal_height {
  height: 47vh !important;
}

.prediction-list-div.inner_box_form .col-lg-12.col-sm-12.col-12 {
  margin: 20px 0 0 0 !important;
}

.select2-container--open .select2-dropdown--below {
  z-index: 99999;
}

.select2-container--default.select2-container--open {
  z-index: 99999;
}

.rel-tv {
  position: relative;
  width: 97%
}

.modal-footer.modal-footer-uniform {
  margin: 0 !important;
  /* padding: 0 17px 0 0 !important; */
}

#success-modal-content #bilding-form {
  padding-bottom: 0 !important;
}

.fst_popup {
  margin-right: -22px !important;
}

.building-zone .col-lg-12.col-sm-12.col-12 {
  /* width: 50%; */
}

.building-zone .col-lg-12.col-sm-12.col-12 .col-sm-3.col-form-label {
  /* width: 40%; */
}

.building-zone .col-lg-12.col-sm-12.col-12 .col-sm-6 {
  /* width: 60%; */
}

.building-zone .col-lg-12.col-sm-12.col-12:last-child {
  width: 100%;
}

.building-zone .project_modal_height {
  height: auto;
}

.building-zone #buildingZone,
.building-user #buildingUsers {
  padding: 20px;
  max-height: 26vh;
  overflow: auto;
}

.building-zone .modal-footer.modal-footer-uniform.col-sm-12.mt-10 {
  margin-bottom: 20px;
}

.modal.fade.center-modal .modal-dialog {
  width: auto !important;
}

#building-contract-profile-page #progressbar li {
  width: 12.13%;
}

#building-contract-profile-page #progressbar li:first-child strong {
  left: inherit;
  width: 70px;
  display: block;
  margin-left: -14px;
}

#building-contract-profile-page #progressbar li:last-child {
  width: 12%;
}

.building-zone .building-form .col-sm-1 {
  display: none;
}

.building-zone .building-form .col-sm-10 {
  width: 100%;
}

.building-zone .building-form .col-sm-10 .ms-container .ms-selectable {
  margin-left: 12px;
}

#building-contract-profile-page #progressbar li:last-child strong {
  left: -28%;
}

.check-data {
  position: absolute;
  z-index: 999;
  width: 39px;
  height: 39px;
}

.card.row.card-opecity {
  flex-direction: row;
}

.building-zone fieldset {
  border: none;
}

.multiple-input {
  max-height: 52vh;
  overflow: auto;
}

.grid-view.bulk-new-class {
  max-height: 60vh;
  overflow-y: auto;
}

td.list-cell__slug {
  display: none;
}

.inner_box_form.bulk_selection_table th.list-cell__slug,
.inner_box_form.bulk_selection_table th.list-cell__prediction_categ_id {
  display: none;
}

.inner_box_form.bulk_selection_table .table>tbody>tr>td,
.inner_box_form.bulk_selection_table .table>tbody>tr>th,
.inner_box_form.bulk_selection_table .table>tfoot>tr>td,
.inner_box_form.bulk_selection_table .table>tbody>tr>th,
.inner_box_form.bulk_selection_table .table>thead>tr>td,
.inner_box_form.bulk_selection_table .table>thead>tr>th {
  padding: 5px;
}

#progressbar .new-data-success:before {
  background: #009e0f;
}

.checkbox-div .col-md-4 .select2-container--default .select2-selection--multiple .select2-selection__rendered {
  height: auto;
}

/*********************************IAQ and IOT Content ************************************/
.iaq_content .dynamic-ui {
  padding: 20px 10px;
  border: 1px solid var(--border-color);
  background: var(--bg-light-blue);
  margin-top: 10px;
}

.iaq_content .tabs {
  display: flex;
  margin-bottom: 10px;
}

.iaq_content .tab-button {
  padding: 10px 20px;
  cursor: pointer;
  border: 1px solid var(--border-color);
  background: var(--bg-white-background);
  color: var(--color-black);
}

.iaq_content .tab-button.active {
  background: var(--primary-button-bg);
  color: var(--color-white);
  border-radius: 5px;
}

.iaq_content .tab-content {
  display: none;
}

.iaq_content .tab-content#relative {
  display: block;
}

.iaq_content .time-options .row {
  display: flex;
  margin-bottom: 10px;
}

.iaq_content .time-options .start_custom_div label {
  width: 80px;
  padding: 0;
}

.iaq_content .time-options .start_custom_div.interval_custom_box {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.iaq_content .pointer-hover {
  cursor: default;
}

.iaq_content .pointer-hover:hover {
  cursor: pointer;
}

.iaq_content .time-options .btn-default.active {
  background-color: var(--primary-button-bg);
  color: var(--color-white);
  border-color: var(--primary-button-bg);
}

.iaq_content .close {
  position: absolute;
  top: 4px;
  right: 4px;
  background: transparent;
}

.iaq_content .close .cross_icon {
  font-size: var(--font-az-18);
}

.iaq_content .time-options .start_custom_div.interval_custom_box input {
  width: 50px;
  height: 32px;
  border-color: var(--border-color);
  margin-right: 10px;
  padding: 0.375rem 0.75rem;
}

.iaq_content .static_graph_labels_box #customDiv .tab-content.relative_box_date .input-options label {
  width: 35%;
}

.iaq_content .static_graph_labels_box #customDiv .tab-content.relative_box_date .input-options input {
  width: 65%;
}

.iaq_content .static_graph_labels .interval_selection_box {
  display: flex;
}

.iaq_content .static_graph_labels .interval_selection_box .label_text {
  display: block;
  text-align: center;
}

.iaq_content .static_graph_labels .interval_selection_box .interval_box {
  margin-left: 15px;
}

.iaq_content .time-options .row button {
  margin-right: 5px;
}

.iaq_content .duration {
  margin-top: 10px;
}

.iaq_content #startDate,
.iaq_content #endDate {
  margin-bottom: 10px;
  padding: 0.375rem 0.75rem;
  border: 1px solid var(--border-color);
}

select {
  color: var(--color-black);
}

.iaq_content .static_graph_labels_box .showing_text {
  width: 50%;
  max-width: 50%;
}

.iaq_content .static_graph_labels_box {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
}

.iaq_content .static_graph_labels_box .dash_iaq_title {
  flex: 1;
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 80px;
}

.iaq_content .static_graph_labels_box #customDiv {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 40px;
  border: 1px solid var(--border-color);
  background: var(--bg-white-background);
  color: var(--color-black);
  padding: 5px 3px;
  /* box-shadow: 1px 0 5px rgba(0, 0, 0, 0.1); */
}

.iaq_content .static_graph_labels_box #customDiv .tab-button {
  padding: 5px 15px;
}

.iaq_content .static_graph_labels_box #customDiv .tabs .tab-button:last-child {
  margin-left: 5px;
}

.iaq_content .static_graph_labels_box #customDiv .tab-content.relative_box_date .time-options button {
  padding: 2px 6px;
}

.iaq_content .static_graph_labels_box #customDiv .tab-content.relative_box_date .btn-default.hover,
.iaq_content .static_graph_labels_box #customDiv .tab-content.relative_box_date .btn-default:active,
.iaq_content .static_graph_labels_box #customDiv .tab-content.relative_box_date .btn-default:hover {
  background-color: var(--primary-button-bg);
}

.iaq_content .static_graph_labels_box #customDiv .tab-content.relative_box_date .time-options,
.iaq_content .static_graph_labels_box #customDiv .tab-content.relative_box_date .input-options input,
.iaq_content .static_graph_labels_box #customDiv .tab-content.relative_box_date .time-options {
  margin-bottom: 10px;
}

.iaq_content .static_graph_labels_box #customDiv .tab-button.active {
  background-color: var(--primary-button-bg);
  border-color: var(--primary-button-bg);
}

.iaq_content .static_graph_labels_box #customDiv .submitCustombtn {
  background-color: var(--primary-button-bg);
  border-color: var(--primary-button-bg);
  color: var(--color-white);
  padding: 9px 15px 9px;
  line-height: normal;
  border-radius: 60px;
}

.iaq_content .static_graph_labels_box .static_graph_labels ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  border: 1px solid var(--border-color);
  padding: 8px 0;
}

.iaq_content .static_graph_labels_box .static_graph_labels ul li {
  color: var(--color-black);
  padding: 0 10px;
  font-weight: 400;
  cursor: pointer;
  font-size: var(--font-az-14);
}

.iaq_content .static_graph_labels ul li.active {
  font-weight: bold;
  color: var(--primary-button-bg);
}

.iaq_content .amcharts-amexport-menu-level-0.amcharts-amexport-top {
  top: -15px;
}

.iaq_content .amcharts-amexport-item.amcharts-amexport-item-level-0 {
  opacity: 1.3;
  background-color: var(--primary-button-bg);
  border-color: var(--primary-button-bg);
  color: var(--color-white);
  min-width: 100px;
  width: auto;
  border-radius: 50px;
  line-height: normal;
  font-size: var(--font-az-14);
  text-transform: capitalize;
  font-weight: 500;
  transition: all 100ms ease-in-out 0s;
}

.iaq_content .amcharts-amexport-item.amcharts-amexport-item-level-0>a {
  color: var(--color-white);
  min-width: 100px;
  text-align: center;
  padding: 9px 15px 9px;
  margin-top: -8px;
}

.iaq_content .modal.my_Modal_system .modal-dialog {
  max-width: 1199px !important;
  width: 1199px;
}

.iaq_content .iaq_dash_table .table tbody tr td {
  vertical-align: baseline;
}

.iaq_content .iaq_dash_table .table-hover>tbody>tr:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.iaq_content .highlight {
  background-color: var(--theme-warning-color);
  transition: background-color 1s ease-out;
}

.mobile-view-sensor-sec {
  position: relative;
}

.mobile-view-sensor-sec .modal.my_Modal_system .modal-dialog {
  max-width: unset !important;
  width: 100%;
}

.mobile-view-sensor-sec #spinnerLoader {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  width: 100%;
  height: 100%;
}

.mobile-view-sensor-sec #spinnerLoader .toploader {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.iaq_data_period_text {
  font-size: var(--font-az-15);
}

.iaq_data_error_text {
  color: var(--theme-danger-color);
  padding: 0 20px;
}

.error_text_color {
  color: var(--theme-danger-color);
}

.help-block-error {
  color: var(--theme-danger-color);
}

.note_cnt {
  color: var(--primary-button-bg);
  line-height: normal;
  font-size: 12px;
  display: block;
  font-weight: 400;
}

.cls-2rem {
  padding-left: 1rem !important;
}

.model_scrollabel {
  height: 80vh;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  padding-right: 5px !important;
}

.model_scrollabel::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.model_scrollabel::-webkit-scrollbar-track {
  background: var(--bg-dark-gray);
}

/* Handle */
.model_scrollabel::-webkit-scrollbar-thumb {
  background: var(--color-light-gray);
}

/* Handle on hover */
.model_scrollabel::-webkit-scrollbar-thumb:hover {
  background: var(--color-dark-gray);
}

.pdf_box {
  display: flex;
  justify-content: space-between;
}

.field-malfunc-code-detail_description textarea::-webkit-scrollbar {
  width: 5px;
}

.label-hide-custs label {
  display: none;
}

.title_popup h5 {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
  margin: 20px 0 40px;
  font-size: 16px;
}

.pre_code {
  display: flex;
  justify-content: center;
  place-items: center;
  margin-bottom: 15px;
}

.pre_code h4 {
  font-size: var(--font-size-15);
  padding: 8px 14px 9px;
  margin: 0 10px;
  background: var(--color-dark-gray);
  color: var(--color-white);
  border-radius: 50px;
  line-height: normal;
}

.pre_code .fa {
  font-size: 30px;
  color: var(--color-dark-gray);
  cursor: pointer;
}

.bdr-btm {
  border-bottom: 0;
  padding: 12px 0 0;
}

.cust-padd-30 {
  padding: 0 5px 0 22px;
}

.side_drop_off .form-group {
  margin: 0;
}

.btn-link.edit-total:hover {
  color: var(--primary-button-bg);
}

.no-underline {
  text-decoration: none;
}

.version_lable .control-label {
  display: none;
}

.search_code_sec {
  border: 1px dashed var(--primary-button-bg);
  padding-top: 25px;
  position: relative;
  margin-top: 20px;
  padding-bottom: 18px;
}

.search_code_lable {
  position: absolute;
  top: -19px;
  border: 1px dashed var(--primary-button-bg);
  padding: 7px 10px;
  background: var(--color-white);
  font-weight: 500;
  color: var(--primary-button-bg);
}

.font-12 {
  font-size: var(--font-size-14);
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-right: 10px;
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-dark-gray);
}

.manage-project-index-page .ml-20 {
  margin-left: 20px !important;
}

.manage-project-index-page .mb-0>a:after{
  display: none;
}

.manage-project-index-page .pl-8 {
  padding-left: 8px;
}

.manage-project-index-page .theme_clr_text {
  color: var(--primary-button-bg) !important;
}

.manage-project-index-page .btn-link_plus {
  color: var(--primary-button-bg);
}

.cooling_text_color {
  color: var(--theme-success-color);
}

.heating_text_color {
  color: var(--theme-danger-color);
}

.add_progress .progress {
  padding: 10px 0;
}

.p-relative-manage-project {
  z-index: 1;
}

.swal-button--cancel {
  border: 1px solid var(--primary-button-bg);
  background-color: var(--bg-white-background);
  color: var(--primary-button-bg);
  width: auto;
  border-radius: 50px;
  line-height: normal;
  font-size: var(--font-az-14);
  text-transform: capitalize;
  font-weight: 500;
  padding: 9px 15px 9px;
}

.swal-button--cancel:hover,
.swal-button--cancel:focus,
.swal-button--cancel:active,
.swal-button--cancel.active {
  border-color: var(--primary-button-bg);
  background-color: var(--bg-white-background) !important;
  color: var(--primary-button-bg);
}

.swal-button--confirm {
  border: 1px solid var(--primary-button-bg);
  background-color: var(--primary-button-bg);
  color: var(--color-white);
  width: auto;
  border-radius: 50px;
  line-height: normal;
  font-size: var(--font-az-14);
  text-transform: capitalize;
  font-weight: 500;
  padding: 9px 15px 9px;
}

.swal-button--confirm:hover,
.swal-button--confirm:focus,
.swal-button--confirm:active,
.swal-button--confirm.active {
  border-color: var(--primary-button-bg);
  background-color: var(--primary-button-bg) !important;
  color: var(--color-white);
}

.min-wdth-auto {
  min-width: unset;
}

.modal-content.box-sha-none,
.full_w_cutom.power-cons-grid-compare .modal-content {
  box-shadow: none;
  border: 1px solid var(--border-table-gray);
  border-radius: 20px;
}

.full_w_cutom.power-cons-grid-compare .modal-content{
  height: 490px;
}

.modal-content.box-sha-none .new_plus {
  float: right;
  border: 0;
  background: transparent;
  padding: 0;
}

.modal-content.box-sha-none .new_plus:hover {
  color: var(--secondary-button-bg);
}

.new_minus {
  float: left;
  border: 0;
  background: transparent;
  padding: 0;
}

.new_minus:hover {
  color: var(--secondary-button-bg);
}

.new_plus_compare {
  float: right;
  border: 0;
  background: transparent;
  padding: 0;
}

.new_plus_compare:hover {
  color: var(--secondary-button-bg);
}

.new_minus_compare {
  float: left;
  border: 0;
  background: transparent;
  padding: 0;
}

.new_minus_compare:hover {
  color: var(--secondary-button-bg);
}

.modal-content.box-sha-none .btn-clr {
  color: var(--color-dark-gray-op80);
  display: none
}

.modal-content.box-sha-none .btn-clr:hover {
  color: var(--color-black-op-60) !important;
}

.month_foramte {
  display: block;
  width: 100%;
  text-align: center;
}

.month_foramte1 {
  display: block;
  width: 100%;
  text-align: center;
}

.modal-content.box-sha-none .month_foramte {
  display: block;
  width: 100%;
  text-align: center;
}

.modal-content.box-sha-none .month_foramte1 {
  display: block;
  width: 100%;
  text-align: center;
}


.day_formate {
  display: flex;
  margin-top: 15px !important;
}


.new_minus:focus {
  outline: 0px auto -webkit-focus-ring-color !important;
}

.new_plus:focus {
  outline: 0px auto -webkit-focus-ring-color !important;
}

.modal-content.box-sha-none #columnchart_material {
  position: relative;
  padding-top: 130px;
  margin-bottom: 0px;
}

.modal-content.box-sha-none .btn-link:hover,
.modal-content.box-sha-none .btn-link:focus {
  color: var(--primary-button-bg);
}

.cnt_left h4 {
  font-weight: 500;
  font-size: var(--font-az-18);
  color: var(--color-black);
  font-weight: 600;
}

.cnt_left {
  justify-content: start;
  font-weight: 500;
  align-items: baseline;
}

.modal-content.box-sha-none .cnt_left {
  justify-content: start;
}

.modal-content.box-sha-none .cnt_left h4 {
  font-weight: 500;
}

.modal-content.box-sha-none .modal-dialog {
  margin: 15px auto !important;
}

.chart_table .table_design th{
  padding: 7px 10px;
  vertical-align: baseline;
}

.chart_table .table_design th,.chart_table .table_design td{
  padding: 7px 10px;
  vertical-align: baseline;
}

.power-cons-grid-compare .chart_table .table_design th {
  padding: 7px 10px;
  vertical-align: baseline;
}

.power-cons-grid-compare .chart_table .table_design th,
td {
  padding: 7px 10px;
  vertical-align: baseline;
}

.new_box {
  /* -webkit-box-shadow: 0 0px 3px rgb(0 0 0 / 13%);
  box-shadow: 0 0px 5px rgb(0 0 0 / 13%); */
  border-radius: 6px;
  border-radius: 20px;
  border: 1px solid var(--border-table-gray);
}

.new_box_header {
  border-bottom: 1px solid var(--border-color) !important;
}

.new_box_header h3 {
  font-weight: 500;
}

.power-cons-new-box .new_box {
  /* -webkit-box-shadow: 0 0px 3px rgb(0 0 0 / 13%);
    box-shadow: 0 0px 5px rgb(0 0 0 / 13%); */
  border-radius: 6px;
}

.power-cons-new-box .new_box_header {
  border-bottom: 1px solid var(--border-color) !important;
}

.power-cons-new-box .new_box_header h3 {
  font-weight: 500;
}

.power-cons-new-box .box-header {
  padding: 20px 15px;
}

.power-cons-new-box .box-header .box-tools{
  top: 17px;
}

.p-0-cust{
  padding: 0;
}

.power-cons-grid-compare .p-0-cust {
  padding: 0;
}

.exportReport {
  display: flex;
  justify-content: right;
  margin-top: 10px;
}

.exportReport button {
  margin-left: 3px;
}

.bdr-shwd {
  overflow: hidden;
  margin-bottom: 15px;
  margin-left: 15px;
  width: auto;
}

.info-box.bg-success .progress,
.info-box.bg-yellow .progress,
.info-box.bg-red .progress {
  display: flex;
  height: 6px;
}

.info-box.bg-success .progress .progress-bar,
.info-box.bg-yellow .progress .progress-bar,
.info-box.bg-red .progress .progress-bar {
  position: static;
  margin-top: 0;
  height: auto;
}

.grey {
  border: 2px solid var(--border-color);
  border-radius: 6px;
  background: var(--bg-dark-gray);
  cursor: pointer;

}

.yellow {
  border: 2px solid var(--theme-warning-color);
  border-radius: 6px;
  background: var(--theme-warning-color) !important;
  cursor: pointer;
}

.check-list-tab-sec .yellow {
  border: 1px solid var(--theme-warning-color);
  border-radius: 6px;
  background: var(--theme-warning-color) !important;
  cursor: pointer;
}

.check-list-tab-sec .grey {
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: var(--bg-dark-gray);
  cursor: pointer;
}

.check-list-tab-sec .form-group {
  margin-bottom: unset;
}

.factor .factorgroup {
  opacity: 1;
  position: relative;
  left: initial;
  right: 0px;
}

.factor td .inputfactor {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.factor td .inputfactor .factorgroup {
  margin-right: 10px;
}

.check-list-tab-sec .factor .factorgroup {
  opacity: 1;
  position: relative;
  left: initial;
  right: 0px;
}

.check-list-tab-sec .factor td .inputfactor {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.check-list-tab-sec .factor td .inputfactor .factorgroup {
  margin-right: 10px;
}

/* .top_visit_details.top_visit_outerSec .top_visited_box .top_visit_cont {
  min-height: 175px;
} */

/* .top_visit_details.top_visit_outerSec .top_visited_box .top_visit_cont::after {
  min-height: 175px;
} */

body.modal-open .daterangepicker {
  z-index: 99999;
}

.main-footer a {
  color: var(--primary-button-bg);
  font-size: var(--font-az-14);
  text-transform: capitalize;
  text-decoration: underline !important;
  font-weight: 400;
}

#carbon_dioxide_chart {
  width: 100%;
  height: 500px;
}

#carbon_dioxide_chart_container {
  min-height: 558px
}

#one_phase_sensor_chart_container {
  min-height: 578px;
}

#eight_point_sensor_chart_container {
  min-height: 555px;
}

.tv-header-logo{
  width: 235px;
}

.tv_dashboard_section {
  font-family: 'Myriad Pro';
  display: flex;
  align-items: center;
  min-height: calc(100vh - 145px);
  padding: 0 20px;
}

.tv_dashboard_section .custom-main-dashboard {
  padding: 15px 0px;
}

.tv_dashboard_section .custom-main-dashboard .dash-Box {
  background-color: var(--bg-white-background);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  height: 300px;
  max-height: 300px;
}

.tv_dashboard_section .custom-main-dashboard .count-box {
  display: flex;
  align-items: center;
  background: var(--bg-white-background);
  border-radius: 15px;
  padding: 15px;
  color: var(--color-black);
  margin-bottom: 10px;
}

.tv_dashboard_section .custom-main-dashboard .dash-Box.amount-saved-box {
  position: relative;
}

.tv_dashboard_section .custom-main-dashboard .custom-chartBox {
  display: block;
  margin-top: 0;
}

.tv_dashboard_section .custom-main-dashboard .custom-chartBox .semi-circle-chart,
.tv_dashboard_section .custom-main-dashboard .custom-chartBox .graph-cutom-chart {
  margin-bottom: 10px;
}

.tv_dashboard_section .custom-main-dashboard .custom-chartBox .common-chartDiv#aircondition-chart{
  height: 248px;
}

.tv_dashboard_section .custom-main-dashboard .healthy-chart-box .common-chartDiv {
  height: 300px;
}

.tv_dashboard_section .custom-main-dashboard .custom-chartBox h5 {
  margin-bottom: 15px;
}

.tv_dashboard_section .custom-main-dashboard .dash-Box.amount-saved-box img {
  width: 100px;
  height: 110px;
}

.tv_dashboard_section .custom-main-dashboard .dash-Box.amount-saved-box p {
  font-size: 50px;
}

.tv_dashboard_section .circular-progress {
  width: 150px;
  height: 150px;
}

.tv_dashboard_section .circular-progress .number {
  font-size: 30px;
}

.tv_dashboard_section .custom-main-dashboard .count-box {
  display: block;
  padding: 18px 10px;
}

.tv_dashboard_section .custom-main-dashboard .count-box .ImgBox {
  width: 60px;
  height: 60px;
  margin: 15px auto;
}

.tv_dashboard_section .custom-main-dashboard .count-box .count-content {
  margin-left: 0;
  text-align: center;
  margin-top: 5px;
}

.tv_dashboard_section .custom-main-dashboard .count-box .count-content span {
  font-size: var(--font-az-14);
}

.tv_dashboard_section .custom-main-dashboard .count-box .count-content h5 {
  font-size: var(--font-az-20);
}

.fault-tv-section {
  width: 100%;
}

.fault-tv-section .building-name , .energy_management_tv_dashboard .building-name , .tv_dashboard_section .building-name{
  margin: 0px;
  text-align: right;
  color: var(--color-black);
  font-size: var(--font-az-18);
}

.fault-tv-section , .energy_management_tv_dashboard,.tv_dashboard_section{
  padding: 0 10px;
}

.fault-tv-section .dashboard{
  padding: 0;
}

.fault-tv-section .box-header {
  padding-top: 8px;
  padding-bottom: 8px;
}

.fault-tv-section .box-body {
  padding: 15px 0;
}

.fault-tv-section #chart_3.system_health_chart {
  height: 248px !important;
}

.fault-tv-section #ct-chart-12-new.breakdown_pre_chart {
  height: 245px !important;
  width: 100% !important;
  object-fit: contain;
}

.fault-tv-section canvas#chart_3 {
  width: 100% !important;
}

.fault-tv-section .small-box {
  overflow: unset !important;
  margin-bottom: 0;
  min-height: 153px !important;
}

.fault-tv-section .small-box .icon {
  top: 15px;
  font-size: unset;
}

.fault-tv-section .small-box .icon img {
  width: 25px;
}

.fault-tv-section .small-box .inner {
  height: 100%;
  min-height: unset;
}

.fault-tv-section .small-box:hover .icon {
  font-size: unset;
}

body.modal-open .daterangepicker {
  z-index: 99999;
}

.fault-tv-section .small-box .icon img {
  width: 28px;
}

.energy_management_tv_dashboard .dashboard{
  padding: 0;
  margin-bottom: 60px;
}

.energy_management_tv_dashboard #export_data_btn_pdf.energy_export_performance {
  display: none;
}

.energy_management_tv_dashboard .energy_dashboard_chart_checkbox,
.energy_management_tv_dashboard .energy_dashboard_chart_selectbox {
  visibility: hidden;
  height: 0px;
}

.energy_management_tv_dashboard .info-box-icon {
  float: unset;
}

.energy_management_tv_dashboard .info-box-content {
  margin: 0;
}

.energy_management_tv_dashboard .energy-bg-success {
  background-color: var(--theme-success-color);
}

.energy_management_tv_dashboard .info-box-content {
  padding: 0;
}

.energy_management_tv_dashboard .info-box-icon {
  height: 55px;
  width: 55px;
  line-height: 58px;
}

.energy_management_tv_dashboard .energy-info-divs .info-box {
  min-height: 165px;
}

.energy_management_tv_dashboard #energy-mange-rBox.energy_manage_per_rBox {
  padding: 0;
}

.tv-fault-hr {
  margin: 14px 0 !important;
}

.analytics_section .top-visit-title {
  position: relative;
  display: inline-block;
}

.analytics_section .top-visit-title i, .dashboard .energy-info-divs .info-box .info-box-content i,  .copDegradationModel .box_3 .info-box-text i{
  cursor: pointer;
  position: relative;
  display: inline-block;
  margin-left: 2px;
  color: var(--primary-button-bg);
  font-size: var(--font-az-14);
}

.analytics_section .top-visit-title span , .dashboard .energy-info-divs .info-box .info-box-content .tooltiptext ,.copDegradationModel .box_3 .info-box-text .tooltiptext{
  position: absolute;
  z-index: 1;
  top: 2px;
  right: 16px;
  visibility: hidden;
  background-color: #ffffe0;
  color: var(--color-black);
  text-align: center;
  border-radius: 5px;
  padding: 4px 6px;
  width: max-content;
  font-size: 13px;
  line-height: normal;
  border: 1px solid var(--border-color);
  z-index: 9999;
}
.dashboard .energy-info-divs .info-box .info-box-content .tooltiptext , .copDegradationModel .box_3 .info-box-text .tooltiptext{
  top: auto;
  bottom: 45px;
  text-transform: capitalize;
  text-align: left;
  padding: 8px 12px;
}
.copDegradationModel .box_3 .info-box-text .tooltiptext{
  top: 40px;
  bottom: auto;
  width: 350px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 0;
}
.dashboard .energy-info-divs .info-box .info-box-content .tooltiptext p , .copDegradationModel .box_3 .info-box-text .tooltiptext p{
  margin-bottom: 4px;
}
.info-box-text .modelFirst{
    color: var(--bs-gray);
    font-weight: 500;
    font-size: 13px;
}
.analytics_section .top-visit-title i:hover+span , .dashboard .energy-info-divs .info-box .info-box-content i:hover+.tooltiptext , .copDegradationModel .box_3 .info-box-text i:hover+.tooltiptext{
  visibility: visible;
}

#sensorTable td .label.status-change-label {
  background: var(--primary-button-bg);
  color: var(--color-white) !important;
}

#building_equipment_list.custom-table-header-sticky .grid-view {
  height: 800px;
}

#building_equipment_list.custom-table-header-sticky .grid-view .table>thead>tr>td {
  border-top: var(--color-white);
}

#building-equipment-table.table thead {
  position: sticky;
  top: 0;
  background: var(--bg-white-background);
  z-index: 100;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.theme-link-btn-color.text-decoration-none {
  text-decoration: none !important;
}

.col-position-relative {
  position: relative;
  z-index: 1;
}

#building-control-tabsection .dropdown-toggle::after {
  display: none !important;
}

#building-control-tabsection .bottom {
  min-height: 20px !important;
}

#building-control-tabsection .detail_section {
  min-height: 200px !important;
}

#building-control-tabsection .temp-status span.temp1 {
  color: var(--theme-color-orange-op80);
}

#building-control-tabsection.four-col-layout .box-col-inner span {
  line-height: 14px;
  font-size: 12px;
  font-weight: 500;
}

#building-control-tabsection.four-col-layout .top .left {
  width: 50px;
  float: left;
}

#building-control-tabsection.four-col-layout .top .left img {
  width: 30px;
}

#building-control-tabsection .bottom-last .left {
  width: 75px;
  float: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#building-control-tabsection .bottom-last .left img:hover {
  cursor: pointer;
  filter: drop-shadow(0px 0px 2px #000);
  transition: 0.2s;
}

#building-control-tabsection .bottom-last .right .disabled {
  background-color: var(--color-light-gray);
}

#building-control-tabsection .bottom-last .right .enabled {
  background-color: var(--primary-button-bg);
}

#building-control-tabsection .bottom-last .right .off {
  background-color: var(--color-dark-gray);
}

#building-control-tabsection .err_tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
  /* If you want dots under the hoverable text */
}

/* Tooltip text */
#building-control-tabsection .err_tooltip .err_tooltiptext {
  visibility: hidden;
  min-width: 200px;
  background-color: black;
  color: #fff;
  text-align: left;
  border-radius: 3px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  top: -4px;
  left: 125%;
  font-size: 12px;
  max-width: 350px;
  word-break: break-all;
}

/* Show the tooltip text when you mouse over the tooltip container */
#building-control-tabsection .err_tooltip:hover .err_tooltiptext {
  visibility: visible;
}

.main-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-top i {
  cursor: pointer;
}

#building-control-tabsection .main-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#building-control-tabsection .main-top i {
  cursor: pointer;
}

.equpiment_container .box-col {
  border-radius: 5px;
  position: relative;
}

.equpiment_container .disabled {
  background-color: var(--color-dark-gray-op30);
}

/* .equpiment_container .enabled {
  background-color: var(--primary-button-bg-op-30);
} */

#building-control-tabsection.equpiment_container .disabled {
  background-color: var(--color-dark-gray-op30);
}

#building-control-tabsection.equpiment_container .enabled {
  background-color: var(--primary-button-bg-op-30);
}

#building-control-tabsection.four-col-layout .box-col-inner {
  min-height: 200px;
}

#building-control-tabsection .bottom-last {
  position: absolute;
  right: 10px;
  width: 95%;
  bottom: 10px;
}

#building-control-tabsection .bottom-last img {
  width: 40px;
}

.toggle-button-cover .button {
  height: 26px;
  width: 65px;
}

.toggle-button-cover #button-switch .knobs:before {
  padding: 6px 3px;
  width: 26px;
  height: 26px;
  font-size: 10px;
  border-radius: 50px;
  line-height: inherit;
}

.tv_dashboard_section .custom-main-dashboard .countBox-section{
  margin-top: 0;
}

.modal.modal-w-600 .modal-lg{
  max-width: 600px !important;
}
.modal.modal-w-900 .modal-lg{
  max-width: 900px !important;
}
.zone-euipment_popup_title {
  display: flex;
  flex: 1;
}
.zone-euipment_popup_title span {
  text-align: center;
  font-weight: 600;
  font-size: var(--font-az-18);
  color: var(--color-black);
  margin: auto;
}
.todo-section .two .checkbox-completed ul li label span .count i {
  font-size: 16px;
  margin-left: 5px;
}
.todo-section.mange-todo-sec .two .checkbox-completed ul li label span b{
  top: -4px;
}
.todo-section.mange-todo-sec .two .checkbox-completed ul li span{
  color: var(--color-light-gray);
  margin-left: 10px;
}
.todo-section .overall_box {
  border: none;
}
.label-hide-cust-adds{
  display: flex;
  justify-content: space-evenly;
}
.my-cust-5{
  margin: 1rem 0 !important;
}
.form-line .form-group{
  line-height: 0;
}
.pd-10{
  padding: 0 10.5px;
}
.nsc_copy_form_sec .help-block{
  display: none;
}
.lable-red{
  margin-bottom: 1rem;
}
.bdr-btm{
  border-bottom: 0 ;
  padding: 12px 0 0;
}
.form-line .field-version_number_primary {
  margin-bottom: 0;
}
.platorm_sett_form [type="checkbox"] + label{
  padding-left: 30px;
}
#air_temperature_chart {
  width: 100%;
  height: 500px;
}
.btn-badges{
  cursor: pointer;
  padding: 10px;
  margin: 0px;
  text-align: center;
  width: 149px;
}
.btn-badges:hover{
  box-shadow:none !important;
}
.btn-badges:focus{
  box-shadow:none !important;
}
.btn-badges:focus-visible{
  box-shadow:none !important;
}
.bg-bad, .bg-bad:hover{
  background-color: var(--theme-danger-color);
  color: var(--color-white);
}
.bg-fair, .bg-fair:hover{
  background-color: var(--color-light-gray);
  color: var(--color-white);
}
.bg-good, .bg-good:hover{
  background-color: var(--theme-warning-color);
  color: var(--color-white);
}
.bg-excellent, .bg-excellent:hover{
  background-color: var(--theme-light-green);
  color: var(--color-white);
}
.legend-container{
  display: none;
}
.br-left-t{
  border-top-left-radius: 10px;
  background-color: var(--bg-dark-gray) !important;
}
.br-left-b{
  border-bottom-left-radius: 10px;
  background-color: var(--bg-dark-gray) !important;
}
.br-right-t{
  border-top-right-radius: 10px;
}
.br-right-b{
  border-bottom-right-radius: 10px;
}
#eight_point_sensor_chart {
  width: 100%;
  height: 500px;
}
.weekly_picker tr:hover {
  border: 1px solid var(--border-color);
}
.yearly_picker,
.monthly_picker,
.weekly_picker {
  display: none;
}
.charts_container .modal-body {
  z-index: 1;
}
.nested-list-wrap.zone_list li strong:nth-last-of-type(-n + 3) {
  width: auto;
}
.nested-list-wrap.zone_list ul.nested.level1 li span:nth-last-of-type(-n + 3) {
  width: auto;
}
.width_100 {
  width: 100%;
  max-width: 100%;
}
.table_heading {
  font-size: 16px;
}
#columnchart_material_view_location h3 {
  margin-top: 0;
  color: var(--color-table-lightgray);
}
#columnchart_material_view_location .table_design th {
  padding: 6px 10px 4px;
  vertical-align: baseline;
  font-size: 15px;
}
#columnchart_material_view_location .table_design td {
  padding: 6px 10px 4px;
  font-size: 12px;
}
#columnchart_material_view_location table {
  margin-bottom: 0px;
}
.table_model {
  padding: 10px 20px;
}
.modal-title b{
  color: var(--color-black);
  font-weight: bold;
  font-size: 16px;
}
.modal-lg_new {
  max-width: 700px;
}
#one_phase_sensor_chart {
  width: 100%;
  height: 500px;
}
#relative_humidity_chart {
  width: 100%;
  height: 500px;
}
.mg-t-40 {
  margin-top: 40px;
}
.model_hgt_row .model_ght_box {
  height: 488px;
}
#system_view_button {
  position: absolute;
  right: 0;
  bottom: 2px;
}
.powerContribution .modal-content .modal-body{
  max-height: 600px;
  overflow-y: auto;
  margin-bottom: 15px;
}
.imp-exp-btn{
  display: flex;
}
.imp-exp-btn .btn {
  margin-left: 10px;
}
#three_phase_sensor_chart {
  width: 100%;
  height: 500px;
}
.grid-view [type=checkbox]:checked,.grid-view [type=checkbox]:not(:checked) {
  position: inherit;
  opacity: unset;
  width: 20px;
  height: 20px;
}
.no_data_found{
  text-align: center;
  padding-top: 15px;
}
.cust_building_form [type=checkbox]+label {
  padding-left: 13px;
  height: 10px;
}
.cust_building_form #buildingList .table>tbody>tr>td, .cust_building_form #buildingList .table>tbody>tr>th, .cust_building_form #buildingList .table>tfoot>tr>td, .cust_building_form #buildingList .table>tfoot>tr>th, .cust_building_form #buildingList .table>thead>tr>td, .cust_building_form #buildingList .table>thead>tr>th {
  padding: 1px 5px;
}
hr {
  margin: 8px;
}
.manage_sensor_fieldset {
  min-height: 260px;
}
.manage_sensor_fieldset legend {
  padding: 0 5px 0 5px;
  margin-left: 25px;
  font-weight: 500;
  font-size: 13px;
}
.table_cust_w {
  max-width: 100px;
  min-width: 100px;
  width: 100px
}
#service_level th {
  text-align: center;
}
#service-level-report-list{
  overflow: hidden !important;
}
.alert-dismissable .close,.alert-dismissible .close {
  top: 0px;
  right: -10px;
}
#equipment_list.system-label-gridview {
  max-height: 570px;
  overflow-y: auto;
  margin-left: 1%;
  width: 98%;
}
.system-label-gridview .checkbox_fixed{
  width: 10px;
}
.user_role_list_form .mb-0>a:after {
  position: absolute !important;
  right: 2% !important;
}
.user_role_list_form .mb-0>a:after {
  content: "\f078";
  /* fa-chevron-down */
  font-family: 'FontAwesome';
  position: fixed;
  right: 10%;
}
.user_role_list_form .nav-tabs-custom {
  margin-bottom: 0px;
  box-shadow: none;
  border-radius: 0;
  padding: 15px;
}
.user_role_list_form .nav-tabs {
  border-bottom: 1px solid var(--border-color);
}
.user_role_list_form .child-card .mb-0>a:after {
  right: 11.5%;
}
.user_role_list_form [type=checkbox]+label {
  line-height: unset;
  padding-left: 30px;
}
.user_role_list_form .card {
  margin-bottom: 1.143rem;
  display: flex;
}
.user_role_list_form .card-header {
  padding: 10px 10px;
  background: #d2d6de;
}
.password-change-prompt {
  background-color: var(--color-light-gray);
  border: 1px solid var(--border-color);
  padding: 15px;
  margin: 10px 0;
  text-align: center;
}
.password-change-prompt p {
  font-size: var(--font-az-16);
}
.profile_user_form .form-group {
  margin-bottom: unset;
}
.profile_user_form .form-group label {
  padding-right: 0;
}
.user-form .nav-tabs-custom.nav_tabs_user_custom {
  margin-bottom: 0px;
  box-shadow: none;
  border-radius: 0;
  padding: 15px;
}
.nav-tabs-custom.nav_tabs_user_custom .form-group {
  margin-bottom: unset;
}
.nav-tabs-custom.nav_tabs_user_custom .card {
  margin-bottom: 1.143rem;
  display: flex;
}
.nav-tabs-custom.nav_tabs_user_custom .card-header {
  padding: 10px 10px;
}
#previews{
  padding: 0;
  max-height: 500px;
  overflow: auto;
  padding-top: 0;
}
.ft-500{
  font-weight: 500 !important;
}
#submitButton{
  float: right;
}
#previews table thead{
  position: sticky;
  width: 100%;
  background: #fff;
  margin-bottom: 50px;
  top: 0;
  z-index: 999;
}
.imp_selct {
  display: flex;
  place-content: end;
  place-items: baseline;
}
.import_equip_checkbox.excel_label_checkbox_equipment{
  text-align: end;
  max-width: 325px;
}
.import_equip_checkbox.excel_label_checkbox_equipment::after{
  margin-left: 135px;
}
.import_equip_checkbox.excel_label_checkbox_equipment::before{
  margin-left: 135px;
}
.progress-showcase .progress {
  width: -webkit-fill-available !important;
}
.progress-showcase {
  display: flex;
  place-items: baseline;
}
.table tr td .progress {
  font-weight: 600;
  color: var(--color-black);
}
.wrapper {
  overflow: visible !important;
  min-height: min-content !important;
}
.manage-user-customtable .grid-view [type=checkbox]:checked, .manage-user-customtable .grid-view [type=checkbox]:not(:checked){
  display: none;
}
strong.view-control-strong-title{
  color: var(--color-link-text);
  text-decoration: underline;
  cursor: pointer;
}
.custom-tooltip-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.custom-tooltip-container .custom-tooltip {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffe0;
  color: var(--color-black);
  border: 1px solid var(--border-color);
  text-align: center;
  border-radius: 5px;
  padding: 4px 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 10;
  font-size: 13px;
}
.custom-tooltip-container:hover .custom-tooltip {
  opacity: 1;
  visibility: visible;
}
.btm-last-right .enabled {
  background-color: var(--theme-success-color-op80);
}
.btm-last-right .off {
  background-color: var(--theme-success-color-op80);
}
.bottom-last.btm-last .right .off{
  background-color: var(--theme-success-color-op80);
}
.blank-h4-heading{
  min-height: 22px;
}
ul.sensor_cotaniner li .ser-loc , ul.sensor_cotaniner li .yellow-card-sherloc{
  min-height: 54px;
  display: flex;
  justify-content: center;
  line-height: 18px;
}
.custom-text-primary{
  color: var(--color-black) !important;
}


/* @media (min-width: 1280px){
  body.tv-main-body{
    zoom: 80%;
  }
} */
.anylytic-user-history{
  padding: 15px;
  max-height: 400px;
  overflow-y: auto;
}
.modal.page-detail-check .modal-dialog{
  max-width: 400px !important;
}
.user_detail_header{
  order: unset !important;
}
.pred_message_tableForm {
  text-align: center;
  margin-bottom: 15px;
}
.table-scroll {
  max-height: 400px;
  overflow-y: auto;
  display: block;
}
.table-scroll table {
  width: 100%;
  table-layout: fixed;
}
.tbl_new_cnt {
  display: inline-flex;
  place-items: center;
}
.building_contract_btn{
  margin: 20px;
}
.pl-cus-27{
  padding-left: 27px;
}
.remove-arrow {
  background-image: none;
}
.operator_drop_expresssion_left {
  z-index: 9999;
}
.operator_drop_expresssion_right {
  z-index: 9999;
}
.col-md-1.removeCriteria.pull-right {
  z-index: 999999 !important;
  top: -40px;
}
.building_profile_scen_nav {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
}
.coo {
  margin-right: 2px;
}
#buildingContract .progress{
  height: 6px;
}
.user-permission-form{
  display: flex;
  margin-bottom: 1.143rem;
}
.user-permission-form .card-header{
  padding: 10px;
}
.zone_not_req_col{
  position: relative;
  text-align: left;
}
label.import_equip_checkbox{
  font-weight: 500;
}
.skin-blue .content .building-contract-page{
  background: var(--bg-white-background);
  width: 100%;
}
.building-contract-page .box{
  background: var(--bg-white-background);
}
.build-control-equip-na{
  color: var(--theme-danger-color);
  border-bottom: 1px solid;
  cursor: pointer;
}
.theme-danger-color{
  color: var(--theme-danger-color);
}
.help-popup-toggle{
  background-color: var(--bg-white-background);
  color: var(--primary-button-bg);
  line-height: normal;
  font-size: var(--font-az-14);
  text-transform: capitalize;
  text-decoration: underline;
}
.help-popup-toggle:hover{
  text-decoration: underline;
}
.build-control-equip-name{
  border: none;
  background-color: var(--bg-white-background);
  color: var(--primary-button-bg);
  line-height: normal;
  font-size: var(--font-az-14);
  text-transform: capitalize;
  text-decoration: underline !important;
  font-weight: 400;
}
.check_hide_issue {
  position: unset !important;
  opacity: 1 !important;
  cursor: pointer;
}
.sub-report-col-top-5{
  top: 5px;
}
.required_field_box .form-group .control-label{
  position: relative;
}
.required_field_box .form-group .control-label::after{
  content: '*';
  position: absolute;
  left: 100%;
  color: var(--theme-danger-color);
  padding: 2px;
  top: -4px;
}
.pdf_link_btn{
  margin-bottom: 15px;
  width: auto;
  display: block;
  color: var(--primary-button-bg);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.error-message{
  color: var(--theme-danger-color);
}
label.power_con_tar_checkbox{
  font-weight: 500;
}
.malfunc_cd_detail_btn_padding{
  padding: 2px 8px;
}
.table_fst_box table thead tr th:first-child{
  width: 200px;
}
#control_history_search_grid {
  max-height: 650px;
  overflow-y: auto;
}
.cus-input-grp-addon{
  padding: 0.5rem 1.5rem !important;
}
.center-modal .modal-dialog.modal-lg{
  /* max-width: 600px !important; */
}
.get_sensor .dropdown-toggle::after{
  display: none !important;
}
.btm-min-height{
  min-height: 20px !important;
}
.detail-min-height{
  min-height: 255px !important;
}
.four-col-top-left{
  width: 50px;
  float: left;
}
.four-col-top-left img {
  width: 30px;
}
.btm-last-left{
  width: max-content;
  float: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.btm-last-left img:hover{
  cursor: pointer;
  filter: drop-shadow(0px 0px 2px black);
  transition: 0.2s;
}
.btm-last-right .disabled {
  background-color: var(--theme-color-orange-op80);
}
.btm-last-right .enabled {
  background-color: var(--theme-success-color-op80);
}
.btm-last-right .off {
  background-color: var(--theme-success-color-op80);
}
.cont-mana-err-tooltip{
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted var(--border-color);
}
.cont-mana-err-tooltip .err_tooltiptext {
  visibility: hidden;
  min-width: 200px;
  background-color: black;
  color: #fff;
  text-align: left;
  border-radius: 3px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  top: -4px;
  left: 125%;
  font-size: 12px;
  max-width: 350px;
  word-break: break-all;
}
.cont-mana-err-tooltip:hover .err_tooltiptext {
  visibility: visible;
}
.btm-last{
  position: absolute;
  right: 10px;
  width: 95%;
  bottom: 6px;
}
.btm-last-right span{
  line-height: 14px;
  font-size: 12px;
  font-weight: 500;
}
.cust_tbl_formate table{
  border-color: transparent;
}
.cust_tbl_formate td, .cust_tbl_formate th{
  padding: 0.75rem;
  vertical-align: top;
  font-size: 15px;
}
.cust_tbl_formate a.badge-primary{
  background-color: var(--primary-button-bg);
  color: var(--color-white) !important;
}
.button_alignment {
  display: flex;
  align-items: end;
  justify-content: end;
  margin-top: 10px;
}
#air_movement_chart {
  width: 100%;
  height: 500px;
}
.mg-t-50 {
  margin-top: 50px;
}
#Scatter_chart_system_loading {
  width: 100%;
  height: 500px;
}
.bubble_grp_box .bubble_grp_chart {
  height: 575px;
}
.mt-0-cust {
  margin-top: 0 !important;
}
.imp-exp-headin-sec {
  justify-content: space-between !important;
  display: flex;
  flex-direction: row-reverse;
}
.imp-exp-headin-sec .modal-title {
  width: 100%;
}
.scatter-icon::before {
  content: "\2022";
  color: rgba(75, 192, 192, 1);
  margin-right: 5px;
}
.model-name {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.dot-icon {
  width: 10px;
  height: 10px;
  background-color: var(--bg-black-background);
  border-radius: 50%;
  margin-right: 5px;
}
.modal_grp {
  display: flex;
  place-content: center;
  place-items: baseline;
  justify-content: space-between;
  flex: 1;
  margin: 0 10px 0 30px;
}
.modal_grp ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  float: right;
  flex-wrap: wrap;
  font-size: 14px;
}
.modal_grp ul li {
  padding-right: 5px;
  font-weight: 300;
}
.modal_grp ul li b{
  font-weight: 500;
  font-size: 13px;
  width: 110px;
  display: inline-block;
}
.box_3 {
  width: 33.3333%;
}
.box_3 h4 {
  font-size: 14px;
  margin-left: 5px;
}
.box_3 h3 {
  font-size: 14px;
}
.modal-header .modal-title-w240{
  width: 240px;
  font-weight: 400;
}
.modal_grp .box_3 h3,.modal_grp .box_3 h4{
  margin-bottom: 0;
  margin-top: 0;
}
.bubble_grp_chart .bubble_grp_modal-body-h-80vh{
  height: 80vh
}
#loadingMessage{
  padding: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}
#loadingMessage .cus_loader{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#loadingMessage .cus_loader i{
  font-size: 52px;
  margin-top: 10px;
  animation: spincop 1s linear infinite;
}
.d-w-block{
  display: block;
  width: 100%;
}
.benchmark-text{
  width: max-content;
  padding-left: 12px;
}
.cop_graph_box{
  width: 430px;
}
.cop_graph_box li{
  list-style: none;
  font-weight: 300;
}
.cop_graph_box b{
  width: 130px;
  text-align: left;
}
.cu_name_box{
  width: 160px;
}
.group-hr {
  margin: 3px;
}
.table-td-nowrap .table td {
  white-space: nowrap;
}
.center-modal.in {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.help-content-list a {
  color: var(--primary-button-bg);
  text-decoration: underline;
}
.help-content-video a {
  text-decoration: underline;
}
button.btn.dropdown-toggle::after {
  display: none !important;
}
.help-top-icon {
  position: fixed;
  width: 40px;
  height: 40px;
  background: var(--primary-button-bg);
  bottom: 7%;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white) !important;
  right: 5%;
  min-width: unset;
}
.help-top-icon i{
  display: block !important;
}
.form_label_rgt .col-form-label label {
  text-align: right;
  width: 100%;
}
input[type="checkbox"][readonly] {
  pointer-events: none;
}
.duplidate_td .select2-selection{
  border: 1px solid var(--theme-danger-color) !important;
}
.swal2-container.swal2-center.swal2-backdrop-show{
  z-index: 99999;
}
a.trigger-btn.text-primary {
  color: var(--primary-button-bg) !important;
  text-decoration: underline;
}
#Report_result .overflow-auto h5 {
  display: flex;
}
#Report_result .overflow-auto {
  overflow: auto;
}
#Report_result .overflow-auto h5 a {
  min-width: 370px;
  max-width: 370px;
}
.mg-b-unset{
  margin-bottom: unset;
}
.sweet-alert p{
  text-align: left !important;
}
ul.sure li {
  position: relative;
  list-style: none;
  padding: 3px 0;
}
ul.sure li::before {
  position: absolute;
  left: -20px;
  background-image: url('../images/checkicon.png');
  content: '';
  background-size: 50% 50%;
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
}
.drop_new_des {
  padding-left: 8px;
  padding-right: 22px;
  padding-bottom: 10px;
}

#tooltip {
  text-align: center;
  color: #000;
  background: var(--bg-dark-gray);
  position: absolute;
  z-index: 100;
  padding: 20px 15px 13px 15px;
  border-radius: 5px;
}

#tooltip:after

/* triangle decoration */
  {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--border-color);
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  margin-left: -10px;
}

#tooltip.top:after {
  border-top-color: transparent;
  border-bottom: 10px solid var(--border-color);
  top: -20px;
  bottom: auto;
}

#tooltip.left:after {
  left: 10px;
  margin: 0;
}

#tooltip.right:after {
  right: 10px;
  left: auto;
  margin: 0;
}

.tooltip_icon {
  position: relative;
  left: -12px;
  top: 8px;
}

.media {
  text-align: left;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  margin-bottom: 10px;
  margin-top: 0;
}

.media img {
  border-radius: 50%;
}

.media-body h6 b {
  font-style: normal;
  font-size: 13px;
  font-weight: 400;
  color: var(--color-dark-gray);
}

.close_tooltip {
  position: absolute;
  top: 10px;
  right: 15px;
}

.status_history_icon {
  position: absolute;
  left: -10px;
  top: 10px;
}

.tooltp_height {
  max-height: 260px;
  overflow: auto;
  margin: 25px 2px 5px 2px;
  padding: 0px 10px;
}
.tooltp_height::-webkit-scrollbar {
  width: 5px;
}
.tooltp_height::-webkit-scrollbar-track {
  background: var(--bg-dark-gray);
}
.tooltp_height::-webkit-scrollbar-thumb {
  background: var(--color-dark-gray);
  border-radius: 5px;
}
.tooltp_height::-webkit-scrollbar-thumb:hover {
  background: var(--color-dark-gray);
}
.title_tooltip h6 {
  font-size: 20px;
}
.title_tooltip {
  position: absolute;
  top: 15px;
  left: 28px;
}
.todo-section .one .text-yellow {
  color: var(--theme-warning-color);
  font-weight: 500;
  font-size: 14px;
}
.todo-section .two .text-yellow {
  color: var(--theme-warning-color);
  font-weight: 500;
  font-size: 14px;
}
.todo-section .one h5 i {
  font-style: normal;
  font-weight: 500;
}
.todo-section .one .text-yellow {
  color: var(--theme-warning-color);
  font-weight: 500;
  font-size: 14px;
}
.todo-section .two .text-yellow {
  color: var(--theme-warning-color);
  font-weight: 500;
  font-size: 14px;
}
.todo-section .two {
  border-top: 2px solid var(--border-color);
}
.todo-section .two h5.text-blue {
  color: var(--secondary-button-bg);
}
.todo-section .two .checkbox-completed ul {
  margin-left: 0;
  padding-left: 0;
}
.todo-section .two .checkbox-completed ul li {
  list-style: none;
  margin-bottom: 10px;
}
.todo-section .two .checkbox-completed ul li label {
  color: var(--color-light-gray);
  margin-bottom: 0;
  display: flex;
  align-items: flex-start;
}
.todo-section .two .checkbox-completed ul li label span {
  margin-left: 5px;
  color: var(--color-black);
  position: relative;
  margin-top: -8px;
}
.todo-section .two .checkbox-completed ul li label span i {
  font-size: 30px;
}
.todo-section .two .checkbox-completed ul li label span b {
  width: 20px;
  height: 20px;
  background: var(--theme-danger-color);
  color: var(--color-white);
  font-size: 10px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  line-height: 20px;
  position: absolute;
  left: 20px;
  top: -10px;
}
.todo-section .two .checkbox-completed ul li span {
  color: var(--theme-warning-color);
  font-weight: 500;
  font-size: 14px;
  display: block;
}
.todo-section .two .checkbox-completed ul li label.uncheck {
  color: var(--color-black);
}
/* input[type="radio"],
input[type="checkbox"] {
  margin: -1px -7px 0px !important;
  line-height: normal;
} */
.new_border {
  width: 97%;
  margin: 0 auto;
  margin-top: 20px;
}
.todo-section .overflow-auto h5 {
  display: inline-block;
  width: max-content;
}
.approve {
  color:var(--theme-success-color);
}
.pending {
  color:var(--theme-danger-color);
}
.d-table-new {
  display: table;
}
.todo-section.mange-todo-sec .two .checkbox-completed ul li label {
  color: var(--color-light-gray);
  margin-bottom: 0;
  display: flex;
  align-items: baseline;
  margin-left: 10px;
  font-size: 16px;
  font-weight: 500;
}
.todo-section.mange-todo-sec .two .checkbox-completed ul li label span {
  color: var(--secondary-button-bg) !important;
  margin-bottom: 0;
  display: contents;
  align-items: baseline;
  margin-left: 5px;
  font-size: 16px;
  font-weight: 500;
}
.todo-section .two .checkbox-completed ul li label span .count {
  position: relative;
  display: initial;
}
.todo-section .two .checkbox-completed ul li label span .count b {
  position: absolute;
  content: '';
  top: -3px;
  height: 15px;
  width: 15px;
  text-align: center;
  line-height: 16px;
  background: var(--color-light-gray);
  color: var(--color-white);
  font-size: 8px;
  left: 18px;
}
.todo-section .two .checkbox-completed ul li label span .count i {
  font-size: 16px;
  margin-left: 5px;
}
.todo-section.mange-todo-sec .two .checkbox-completed ul li label span b{
  top: -4px;
}
.todo-section.mange-todo-sec .two .checkbox-completed ul li span{
  color: var(--color-light-gray);
  margin-left: 10px;
}
.todo-section .overall_box {
  border: none;
}
.label-hide-cust-adds{
  display: flex;
  justify-content: space-evenly;
}
.my-cust-5{
  margin: 1rem 0 !important;
}
.form-line .form-group{
  line-height: 0;
}
.pd-10{
  padding: 0 10.5px;
}
.nsc_copy_form_sec .help-block{
  display: none;
}
.lable-red{
  margin-bottom: 1rem;
}
.bdr-btm{
  border-bottom: 0 ;
  padding: 12px 0 0;
}
.form-line .field-version_number_primary {
  margin-bottom: 0;
}
.platorm_sett_form [type="checkbox"] + label{
  padding-left: 30px;
}
#air_temperature_chart {
  width: 100%;
  height: 500px;
}
.btn-badges{
  cursor: pointer;
  padding: 10px;
  margin: 0px;
  text-align: center;
  width: 149px;
}
.btn-badges:hover{
  box-shadow:none !important;
}
.btn-badges:focus{
  box-shadow:none !important;
}
.btn-badges:focus-visible{
  box-shadow:none !important;
}
.bg-bad, .bg-bad:hover{
  background-color: var(--theme-danger-color);
  color: var(--color-white);
}
.bg-fair, .bg-fair:hover{
  background-color: var(--color-light-gray);
  color: var(--color-white);
}
.bg-good, .bg-good:hover{
  background-color: var(--theme-warning-color);
  color: var(--color-white);
}
.bg-excellent, .bg-excellent:hover{
  background-color: var(--theme-light-green);
  color: var(--color-white);
}
.legend-container{
  display: none;
}
.br-left-t{
  border-top-left-radius: 10px;
  background-color: var(--bg-dark-gray) !important;
}
.br-left-b{
  border-bottom-left-radius: 10px;
  background-color: var(--bg-dark-gray) !important;
}
.br-right-t{
  border-top-right-radius: 10px;
}
.br-right-b{
  border-bottom-right-radius: 10px;
}
#eight_point_sensor_chart {
  width: 100%;
  height: 500px;
}
.weekly_picker tr:hover {
  border: 1px solid var(--border-color);
}
.yearly_picker,
.monthly_picker,
.weekly_picker {
  display: none;
}
.charts_container .modal-body {
  z-index: 1;
}
.nested-list-wrap.zone_list li strong:nth-last-of-type(-n + 3) {
  width: auto;
}
.nested-list-wrap.zone_list ul.nested.level1 li span:nth-last-of-type(-n + 3) {
  width: auto;
}
.width_100 {
  width: 100%;
  max-width: 100%;
}
.table_heading {
  font-size: 16px;
}
#columnchart_material_view_location h3 {
  margin-top: 0;
  color: var(--color-table-lightgray);
}
#columnchart_material_view_location .table_design th {
  padding: 6px 10px 4px;
  vertical-align: baseline;
  font-size: 15px;
}
#columnchart_material_view_location .table_design td {
  padding: 6px 10px 4px;
  font-size: 12px;
}
#columnchart_material_view_location table {
  margin-bottom: 0px;
}
.table_model {
  padding: 10px 20px;
}
.modal-title b{
  color: var(--color-black);
  font-weight: bold;
  font-size: 16px;
}
.modal-lg_new {
  max-width: 700px;
}
#one_phase_sensor_chart {
  width: 100%;
  height: 500px;
}
#relative_humidity_chart {
  width: 100%;
  height: 500px;
}
.mg-t-40 {
  margin-top: 40px;
}
.model_hgt_row .model_ght_box {
  height: 488px;
}
#system_view_button {
  position: absolute;
  right: 0;
  bottom: 2px;
}
.powerContribution .modal-content .modal-body{
  max-height: 600px;
  overflow-y: auto;
  margin-bottom: 15px;
}
.imp-exp-btn .btn {
  margin-left: 10px;
}
#three_phase_sensor_chart {
  width: 100%;
  height: 500px;
}
.grid-view [type=checkbox]:checked,.grid-view [type=checkbox]:not(:checked) {
  position: inherit;
  opacity: unset;
  width: 20px;
  height: 20px;
}
.no_data_found{
  text-align: center;
  padding-top: 15px;
}
.cust_building_form [type=checkbox]+label {
  padding-left: 13px;
  height: 10px;
}
.cust_building_form #buildingList .table>tbody>tr>td, .cust_building_form #buildingList .table>tbody>tr>th, .cust_building_form #buildingList .table>tfoot>tr>td, .cust_building_form #buildingList .table>tfoot>tr>th, .cust_building_form #buildingList .table>thead>tr>td, .cust_building_form #buildingList .table>thead>tr>th {
  padding: 1px 5px;
}
hr {
  margin: 8px;
}
.manage_sensor_fieldset {
  min-height: 260px;
}
.manage_sensor_fieldset legend {
  padding: 0 5px 0 5px;
  margin-left: 25px;
  font-weight: 500;
  font-size: 13px;
}
.table_cust_w {
  max-width: 100px;
  min-width: 100px;
  width: 100px
}
#service_level th {
  text-align: center;
}
#service-level-report-list{
  overflow: hidden !important;
}
.alert-dismissable .close,.alert-dismissible .close {
  top: 0px;
  right: -10px;
}
#equipment_list.system-label-gridview {
  max-height: 570px;
  overflow-y: auto;
  margin-left: 1%;
  width: 98%;
}
.system-label-gridview .checkbox_fixed{
  width: 10px;
}
.user_role_list_form .mb-0>a:after {
  position: absolute !important;
  right: 2% !important;
}
.user_role_list_form .mb-0>a:after {
  content: "\f078";
  /* fa-chevron-down */
  font-family: 'FontAwesome';
  position: fixed;
  right: 10%;
}
.user_role_list_form .nav-tabs-custom {
  margin-bottom: 0px;
  box-shadow: none;
  border-radius: 0;
  padding: 15px;
}
.user_role_list_form .nav-tabs {
  border-bottom: 1px solid var(--border-color);
}
.user_role_list_form .child-card .mb-0>a:after {
  right: 11.5%;
}
.user_role_list_form [type=checkbox]+label {
  line-height: unset;
  padding-left: 30px;
}
.user_role_list_form .card {
  margin-bottom: 1.143rem;
  display: flex;
}
.user_role_list_form .card-header {
  padding: 10px 10px;
  background: #d2d6de;
}
.password-change-prompt {
  background-color: var(--color-light-gray);
  border: 1px solid var(--border-color);
  padding: 15px;
  margin: 10px 0;
  text-align: center;
}
.password-change-prompt p {
  font-size: var(--font-az-16);
}
.profile_user_form .form-group {
  margin-bottom: unset;
}
.profile_user_form .form-group label {
  padding-right: 0;
}
.user-form .nav-tabs-custom.nav_tabs_user_custom {
  margin-bottom: 0px;
  box-shadow: none;
  border-radius: 0;
  padding: 15px;
}
.nav-tabs-custom.nav_tabs_user_custom .form-group {
  margin-bottom: unset;
}
.nav-tabs-custom.nav_tabs_user_custom .card {
  margin-bottom: 1.143rem;
  display: flex;
}
.nav-tabs-custom.nav_tabs_user_custom .card-header {
  padding: 10px 10px;
}
#previews{
  padding: 0;
  max-height: 500px;
  overflow: auto;
  padding-top: 0;
}
.ft-500{
  font-weight: 500 !important;
}
#submitButton{
  float: right;
}
#previews table thead{
  position: sticky;
  width: 100%;
  background: #fff;
  margin-bottom: 50px;
  top: 0;
  z-index: 999;
}
.imp_selct {
  display: flex;
  place-content: end;
  place-items: baseline;
}
.import_equip_checkbox.excel_label_checkbox_equipment{
  text-align: end;
  max-width: 325px;
}
.import_equip_checkbox.excel_label_checkbox_equipment::after{
  margin-left: 135px;
}
.import_equip_checkbox.excel_label_checkbox_equipment::before{
  margin-left: 135px;
}
.progress-showcase .progress {
  width: -webkit-fill-available !important;
}
.progress-showcase {
  display: flex;
  place-items: baseline;
}
.table tr td .progress {
  font-weight: 600;
  color: var(--color-black);
}
.wrapper {
  overflow: visible !important;
  min-height: min-content !important;
}
.columnchart_material svg > g:first-of-type > text{
  font-size: var(--font-az-18);
}
input[type=checkbox].manage_pro_recomm_checkbox:checked::after{
  top: 6px;
  left: 6px;
}
.padding-left-right-20{
  padding-left: 20px;
  padding-right: 20px;
}
.table thead tr th.th-vertical-align-top{
  vertical-align: top;
}
.box-inverse.bg-yellow h2,.box-inverse.bg-yellow h4,.box-inverse.bg-yellow small{
  color: var(--color-black);
}
.box-inverse.bg-yellow .btm-li-box li{
  color: var(--color-black);
}
.box-inverse.bg-yellow .top-li-box li div{
  color: var(--color-black);
}

.overall_energy_sub_chart{
  margin-top: 30px;
  margin-bottom: 30px;
}
.view_energy_chart{
  margin-bottom: 25px;
  text-align: right;
}

.alldb-wrapper {
    position: relative;
    width: 100%;
    top: 5px;
}

.chart-legend.AllDB_CLASS {
    position: absolute;
    right: 45px;
    top: 20px;
}

.DbTitle {
    color: var(--color-dark-gray);
    font-size: 14px;
}

.chart-legend>span {
    margin-bottom: 10px;
    display: inline-block;
    color: var(--color-black);
    font-weight: 500;
    font-size: var(--font-az-18);
}
.energy_heat_map_manage_per_rBox {
  background: var(--bg-white-background);
  border-radius: 20px !important;
  margin-bottom: 20px;
}
.TotalEnergyUsage{
    width: 80%;
    padding-left: 30px;
    padding-top: 20px;
    font-size: var(--font-az-18);
    color: var(--color-black);
    font-weight: 600;
}
.stat_on_label{
  background-color: var(--theme-success-color-op80);
  padding: 0 8px;
  font-size: 12px;
}
.stat_off_label{
  background-color: var(--theme-color-orange-op80);
  padding: 0 8px;
  font-size: 12px;
}

#ct-chart-12-new.breakdown_pre_chart canvas,
#ct-chart-12-new.breakdown_pre_chart svg {
  width: 100% !important;
  height: 100% !important;
}
.table thead tr th.first-th{
  width: 100px;
  max-width:100px;
} 
.table thead tr th.second-th{
  width: 200px;
  max-width:200px;
} 
.table thead tr th.third-th{
  width: 200px;
  max-width:200px;
} 
.table thead tr th.fourth-th{
  width: 200px;
  max-width:200px;
} 

.exclude-legend{
  font-size: var(--font-az-14);
  color: var(--color-dark-gray);
  font-weight: 400;
}
.modal-header.cnt_left{
  /* padding-bottom: 0px; */
}
.total-count{
  height: 25px;
}
.br-1.border-gray{
  height: 105px;
}
#grid_system_list_chart .modal-dialog{
  margin-bottom: 0 !important;
  width: 100%;
}
#columnchart_material_system.columnchart_material_box{
  height: 590px !important;
}
.modal-content.copDegradationModel .cnt_left{
  align-items: flex-start;
}
.modal-content.copDegradationModel .modal_grp{
  align-items: flex-start;
}
.tv-header-row{
  padding: 15px 0;
}

.tv-dashboard-logo-box{
  padding: 10px 15px 0;
  text-align: center;
}

.tv-dashboard-logo-box img{
  width: 325px;
}
.tv-contanet-wrapper.content-wrapper{
  margin-left: 0;
  min-height: auto;
}

.tv-main-footer.main-footer{
  margin-left: 0;
}

.energy_management_tv_dashboard .info-box .progress{
  margin-right: 0;
}
.fault-tv-section .tv_dash_malfn_box{
  position: relative;
}
.fault-tv-section .tv_dash_malfn_box::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 12px;
  background: linear-gradient(90deg, #00A1E4 0%, #CCF0FF 100%);
}
.tv_dashboard_footer{
  margin-left: 35px;
}
.tv_dashboard_footer span,.tv_dashboard_footer ul, .tv_dashboard_footer ul li{
  display: inline-block;
}
.tv_dashboard_footer ul{
  padding-left: 0;
  margin-bottom: 0;
  border: 1px solid var(--border-color);
  border-left: 0;
  padding: 5px;
  border-radius: 0px 5px 5px 0;
}
.tv_dashboard_footer ul li{
  position: relative;
  margin-left: 20px;
  color: var(--color-black);
  font-size: 11px;
}
.tv_dashboard_footer ul li::before{
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-dark-gray);
  left: -10px;
  top: 5px;
  display: inline-block;
}
.tv-main-footer .tv_dashboard_footer span{
  font-size: 13px;
  color: var(--color-dark-gray);
  border: 1px solid var(--border-color);
  border-right: 0;
  margin-right: -4px;
  padding: 5px;
  border-radius: 5px 0 0 5px;
}
.tv-main-footer .tv-main-footer-row{
  position: relative;
}
.tv-main-footer .tv-main-footer-row .tv_dashboard_footer{
  position: absolute;
  right: 0;
  top: -5px;
}
.tv_dash_logo_text_box span , .tv_dashboard_section .tv_dash_logo_text_box span{
  position: relative;
  left: -15px;
  top: 8px;
  font-size: var(--font-az-16);
  color: var(--color-black);
  font-weight: 500;
}
.dashboard .energy-info-divs .info-box .date-range-energy-tooltip{
  position: relative;
}
.dashboard .energy-info-divs .info-box .date-range-energy-tooltip .tooltiptext{
  right: 0;
  top: 32px;
  height: 75px;
} 
@media (min-width: 1280px){
  body.tv-main-body{
    zoom: 80%;
  }
}
@media (max-width:1680px) {
  .custom-main-dashboard .data-countBox {
    gap: 15px;
  }

  .circular-progress {
    width: 150px;
    height: 150px;
  }

  .btn {
    padding: 10px 15px;
  }

  .custom-modal-form .modal-header .modal-title,
  .custom-modal-form .modal-header h5,
  .modal-header h5 {
    font-size: var(--font-az-18);
  }

  .power-consumption-from-group .power-consum-checkbox .power-inner-checkbox {
    line-height: normal;
  }

  .add-con,
  .delete_record {
    margin-bottom: 15px;
  }

  .manage-project-list .card-body {
    padding: 20px 16px;
  }
}

@media (max-width:1650px) {
  .platform_building_box {
    flex-direction: column;
  }

  .platform_building_box .building_rbox {
    margin-top: 10px;
  }

  .view_info_box {
    max-width: 100%;
  }

  .platform_building_box.country_box .platfom_box {
    width: 100%;
  }
}

@media (max-width: 1536px) {
  .circular-progress .number {
    font-size: 32px;
  }

  .custom-main-dashboard .data-countBox .dash-Box {
    min-height: 315px;
  }

  .energy-info-divs .info-box {
    /* min-height: 330px; */
  }

  .manage-project-list #progressbar strong {
    font-size: 10px;
  }

  .manage-project-list #progressbar li:first-child strong {
    width: 67px;
  }
}

@media (max-width: 1440px) {
  .building_list_manage .card-box {
    width: 100%;
  }

  .manage-project-list #progressbar li:first-child strong {
    width: 70px;
  }

  .manage-project-list #progressbar strong {
    font-size: 12px;
  }

  .manage-project-list #progressbar li:last-child {
    width: 4%;
  }
}

@media (max-width:1400px) {
  .custom-main-dashboard .data-countBox .dash-Box.cloudy-box h2 {
    font-size: 50px;
  }

  .circular-progress {
    width: 115px;
    height: 115px;
  }

  .circular-progress .number {
    font-size: 30px;
  }

  .custom-main-dashboard .data-countBox .dash-Box.amount-saved-box p {
    font-size: 38px;
  }

  .custom-main-dashboard .data-countBox .dash-Box h5,
  .custom-main-dashboard .data-countBox span {
    font-size: var(--font-az-16);
  }

  .custom-main-dashboard .data-countBox .dash-Box.cooling-saved-box p,
  .custom-main-dashboard .data-countBox .dash-Box.heating-system-box p {
    font-size: 50px;
  }

  .main-sidebar {
    width: 230px;
  }

  .content-wrapper,
  .main-footer {
    margin-left: 230px;
  }

  .main-header .navbar {
    margin-left: 230px;
  }

  /* .common-filter-box.filter-div .filter-content-btnBox .filter-content-box{
    justify-content: end;
    margin-left: auto;
  } */
  .custom-main-dashboard .data-countBox .dash-Box {
    min-height: 265px;
  }

  .custom-main-dashboard .data-countBox .dash-Box.cooling-saved-box p,
  .custom-main-dashboard .data-countBox .dash-Box.heating-system-box p {
    font-size: 38px;
  }

  .circular-progress {
    margin-top: 40px;
  }

  .custom-main-dashboard .data-countBox .dash-Box.amount-saved-box img {
    height: 125px;
  }

  .custom-main-dashboard .countBox-section .count-box {
    flex-direction: column;
    padding: 15px;
  }

  .custom-main-dashboard .data-countBox.system-nsc-section .count-box {
    flex-direction: column;
    justify-content: center;
  }

  .custom-main-dashboard .data-countBox.system-nsc-section .nsc-pre-box {
    display: flex;
    justify-content: center;
    padding: 15px;
  }

  .custom-main-dashboard .data-countBox.system-nsc-section .nsc-pre-box .ImgBox {
    margin: 0 auto 15px;
  }

  .custom-main-dashboard .data-countBox .count-box {
    padding: 15px;
  }

  .custom-main-dashboard .data-countBox .count-box .ImgBox {
    margin: 0 auto 15px;
    width: 75px;
    height: 75px;
  }

  .custom-main-dashboard .data-countBox .count-box .count-content {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }

  .filter-btnbox {
    margin-left: 10px;
  }

  .view_info_box .view_innerBox {
    flex-direction: column;
  }

  .view_info_box .view_innerBox .dash_box_new {
    margin-right: 0;
  }

  .view_info_box .view_innerBox .dash_cnt_des {
    text-align: center;
    margin-top: 15px;
  }

  .view_info_box .view_innerBox .dash_cnt_des h3 {
    margin-bottom: 5px;
  }

  .view_info_box .view_innerBox .dash_cnt_des .view-info-desc {
    margin-bottom: 5px;
  }

  .top_visit_outerSec .row .col-lg-3 .top_visited_box .box-title {
    line-height: normal;
  }

  .small-box h3 {
    font-size: var(--font-az-28);
  }

  .small-box .icon {
    font-size: var(--font-az-38);
  }

  .small-box:hover .icon {
    font-size: var(--font-az-42);
  }

  .info-box-icon {
    height: 60px;
    width: 60px;
    line-height: 62px;
  }

  .info-box-text,
  .progress-description {
    font-size: var(--font-az-15);
  }

  .tooltip:hover .right {
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: 15px;
  }

  .tooltip .right i {
    right: -12px;
    transform: rotate(180deg);
  }

  #sms-log-list .tooltip {
    z-index: 9999;
  }

  .custom-main-dashboard .custom-chartBox {
    gap: 15px;
  }

  .custom-main-dashboard .custom-chartBox .semi-circle-chart,
  .custom-main-dashboard .custom-chartBox .graph-cutom-chart {
    margin-bottom: 15px;
  }

  .custom-main-dashboard .countBox-section,
  .custom-main-dashboard .data-countBox.system-nsc-section {
    margin-top: 15px;
  }

  .select2-container--open.main-dashborad-custom-select2 .select2-dropdown--below {
    margin-top: -10px;
  }
  .searcbox input{
    width: 175px;
    height: 34px; 
  }
  .searcbox .autocomplete i{
      top: 9px;
  }
}

@media (max-width:1380px) {
  .view_info_box .view_innerBox .dash_box_new i {
    font-size: 24px;
  }

  .view_innerBox h3,
  .title_filter_box h3,
  .title_value_header h3,
  .top_visited_box h3,
  .vva_count_box .cop_report_box .cop_report_lBox h3 {
    font-size: 16px;
  }

  .total_visits_box p {
    font-size: 14px;
  }

  .view_info_box {
    margin-top: 15px;
  }

  .view_info_box .view_innerBox {
    margin-right: 15px;
  }

  .cop_top_visit_sec {
    margin-top: 15px;
  }

  .vva_count_box .cop_report_box {
    margin-right: 15px;
  }

  .vva_count_box {
    margin-top: 15px;
  }

  .vva_lBox {
    margin-right: 15px;
  }

  .total_visits_box {
    margin-top: 0;
  }

  .view_info_box .view_innerBox .dash_box_new i {
    font-size: 28px;
  }

  .view_innerBox h3,
  .title_filter_box h3,
  .title_value_header h3,
  .top_visited_box h3,
  .cop_top_visit_sec .cop_report_box .cop_report_lBox h3 {
    font-size: 16px;
  }

  .total_visits_box p {
    font-size: 14px;
  }
}

@media (max-width: 1366px) {

  .custom-main-dashboard .data-countBox .dash-Box h5,
  .custom-main-dashboard .data-countBox span,
  .custom-main-dashboard .custom-chartBox h5,
  .custom-main-dashboard .healthy-chart-box h5 {
    font-size: var(--font-az-14);
  }

  body.scale-150 .custom-main-dashboard .custom-chartBox .semi-circle-chart,
  body.scale-150 .custom-main-dashboard .custom-chartBox .graph-cutom-chart {
    padding: 10px 10px 0;
  }

  .custom-main-dashboard .data-countBox .dash-Box {
    min-height: 230px;
  }

  .custom-main-dashboard .data-countBox .dash-Box,
  .custom-main-dashboard .data-countBox .count-box,
  .custom-main-dashboard .data-countBox .count-box.system-au-box,
  .custom-main-dashboard .data-countBox .count-box.healthy-box {
    padding: 10px;
  }

  .content {
    padding: 15px;
  }

  .count-box img {
    width: 40px;
  }

  .custom-main-dashboard .data-countBox .count-box .ImgBox {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
  }

  .custom-main-dashboard .data-countBox .count-box .count-content h5 {
    font-size: var(--font-az-18);
  }

  .circular-progress .number {
    font-size: var(--font-az-18);
  }

  .custom-main-dashboard .data-countBox .dash-Box.amount-saved-box p,
  .custom-main-dashboard .data-countBox .dash-Box.cooling-saved-box p,
  .custom-main-dashboard .data-countBox .dash-Box.heating-system-box p {
    font-size: var(--font-az-24);
  }

  .custom-main-dashboard .data-countBox .dash-Box.amount-saved-box img {
    height: 90px;
  }

  .circular-progress {
    width: 105px;
    height: 105px;
    margin-top: 22px;
  }

  .custom-main-dashboard .data-countBox .count-box .count-content span {
    font-size: var(--font-az-14);
  }

  .custom-main-dashboard .data-countBox .count-box {
    justify-content: center;
  }

  .user-panel {
    padding: 22px 0 0px;
  }

  .treeview-menu>li>a {
    padding: 7px 5px 7px 40px;
    font-size: var(--font-az-14);
  }

  .sidebar-menu li>a {
    font-size: var(--font-az-15);
  }

  .main-sidebar {
    width: 210px;
  }

  .content-wrapper,
  .main-footer,
  .main-header .navbar {
    margin-left: 210px;
  }

  .main-header .sidebar-toggle {
    padding-left: 25px;
  }

  .custom-input-box input,
  .custom-input-box select {
    height: 34px;
  }

  .select2-container--default .select2-selection--single,
  .select2-selection .select2-selection--single {
    padding: 5px 12px 6px;
    height: 34px;
  }

  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 22px;
    right: 2px;
  }

  .btn {
    padding: 9px 15px;
  }

  .no_data_available_text p {
    font-size: 14px !important;
  }

  .power_consumption-permission {
    padding: 20px 0;
  }

  .table>tbody>tr>td,
  .table>tbody>tr>th,
  .table>tfoot>tr>td,
  .table>tfoot>tr>th,
  .table>thead>tr>td,
  .table>thead>tr>th {
    padding: 0.6rem;
  }

  .contract-type-td {
    min-width: 250px;
    max-width: 250px;
  }

  .builing-name-td {
    min-width: 160px;
    max-width: 160px;
  }

  .nav-tabs-custom>.nav-tabs>li>a,
  .nav-tabs-custom>.nav-tabs>li>a:hover {
    margin: 0 6px;
  }

  #card-list .build-dash-card-box .card-img-top {
    height: 185px;
  }

  .build-card-dash h5 {
    font-size: var(--font-az-14);
  }

  #card-list .card-title {
    line-height: 24px;
  }

  #card-list .card-title .iot_count {
    display: inline-block;
  }

  .energy-info-divs .info-box {
    /* min-height: 231px; */
  }
  .four-col-layout .box-col-inner{
    min-height: 255px;
  }
  .btm-last-left{
    width: fit-content;
  }
}

@media screen and (max-width: 1280px) {
  .p-0-cust {
    padding: 0 15px;
  }

  .table_indoor {
    height: 385px;
  }

  .full_w_cutom {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .power-cons-grid-compare .full_w_cutom {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .bubble_grp_box .bubble_grp_chart {
    height: auto;
  }
  .model_hgt_row .model_ght_box {
    height: auto;
  }
}

@media (max-width: 1200px) {
  .view_info_box {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .view_info_box .view_innerBox {
    flex: none;
    width: 23.20%;
    margin-bottom: 15px;
  }

  .manage-project-list .card-body {
    padding: 20px 10px;
  }

  .manage-project-list #progressbar li:first-child strong {
    width: 80px;
  }

  .manage-project-list #progressbar li:last-child {
    width: 10%;
  }
}

@media (max-width: 1024px) {
  .view_info_box .view_innerBox {
    width: 31.63%;
  }

  .top_visit_outerSec .row .col-lg-3 {
    width: 50%;
  }
}

@media(max-width:1023px) {
  #progressbar {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .manage-project-list #progressbar li {
    width: 25%;
    margin-bottom: 30px;
  }

  #progressbar li:nth-child(4):after {
    display: none;
  }

  .img-content-wrap {
    flex-wrap: wrap;
  }

  .content-list .text1 {
    float: unset;
    display: block;
    padding-left: 20px;
  }
}

@media (min-width: 992px) {
  .modal-lg {
    max-width: 600px;
  }
}

@media(max-width: 991px) {
  .custom-input-box {
    width: 25%;
  }

  .view_info_box .view_innerBox {
    width: 31.33%;
  }

  .top_visit_outerSec .row .col-12:nth-child(2) .top_visited_box .top_visit_cont {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .view_info_box .view_innerBox {
    width: 30.85%;
  }
}

@media (max-width: 767px) {

  .view_info_box,
  .vva_malfunction_box,
  .cop_top_visit_sec {
    flex-wrap: wrap;
  }

  .view_info_box .view_innerBox {
    width: 100%;
    flex: auto;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .cop_report_box,
  .vva_lBox,
  .vva_count_box .cop_report_box {
    margin-right: 0;
  }

  .vva_lBox,
  .malfun_outerBox,
  .vva_count_box.cop_report_box,
  .top_visit_outerSec {
    width: 100%;
  }

  .vva_lBox {
    margin-top: 15px;
  }

  .malfun_outerBox,
  .top_visit_outerSec {
    margin-top: 15px;
  }

  .top_visited_box .top_visit_cont {
    border-right: none;
  }

  .top_visited_box .top_visit_cont {
    padding-bottom: 15px;
    border-bottom: 1px solid #d4d6de;
  }

  .top_visit_outerSec .row .col-12.border-cus-right::after{
    display: none;
  }

  .top_visited_box h3 {
    padding-top: 10px;
  }

  .top_visit_outerSec .row .col-lg-3 {
    width: 100%;
  }

  .manage-project-list.buiding-list {
    width: 100%;
    margin-top: 20px;
  }

  #progressbar li:after {
    width: 2px;
    height: 100%;
    left: 18px;
    top: 35px;
  }

  .manage-project-list #progressbar li:first-child strong {
    margin-left: 0;
  }

  .manage-project-list #progressbar li:first-child strong,
  .manage-project-list #progressbar strong,
  .manage-project-list #progressbar li:last-child strong {
    width: auto;
    padding-left: 25px;
    text-align: left;
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 0;
  }

  .manage-project-list #progressbar li:last-child {
    width: 100%;
  }

  .manage-project-list #progressbar li {
    width: 100%;
  }

  .manage-project-list .card-body {
    padding: 20px 15px;
  }

  #progressbar li:nth-child(4):after {
    display: block;
  }

  .iaq_content .static_graph_labels_box #customDiv {
    width: 100%;
    left: -4px;
  }

  .iaq_content #startDate,
  .iaq_content #endDate {
    height: 26px;
  }

  .iaq_content .start_custom_div.interval_custom_box label {
    min-width: 80px;
    width: 80px;
  }

  .iaq_content .time-options .start_custom_div.interval_custom_box input {
    height: 26px !important;
    margin-right: 5px !important;
    margin-left: 4px;
  }

  .iaq_content .start_custom_div.interval_custom_box .btn-default {
    padding: 6px 15px 5px;
    margin-left: 5px;
    width: 56px;
  }

  .iaq_content .time-options .start_custom_div label {
    min-width: 80px;
    width: 80px;
  }

  .iaq_content .static_graph_labels .interval_selection_box .interval_box {
    margin-left: 0;
  }

  .iaq_content .static_graph_labels_box .static_graph_labels ul li {
    padding: 0 8px;
  }

  #sensorTable td .label.status-change-label {
    background: var(--primary-button-bg);
    color: var(--color-white) !important;
  }

  #building_equipment_list.custom-table-header-sticky .grid-view {
    height: 700px;
  }

  #building_equipment_list.custom-table-header-sticky .grid-view .table>thead>tr>td {
    border-top: var(--color-white);
  }

  #building-equipment-table.table thead {
    position: sticky;
    top: 0;
    background: var(--bg-white-background);
    z-index: 100;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  }
  .content-wrapper, .main-footer, .main-header .navbar{
    margin-left: 0;
  }
  .common-table-grid-view{
    padding-bottom: 90px;
  }
  ul.pagination{
    flex-wrap: wrap;
    justify-content: center;
  }
  .table-responsive .summary{
    bottom: 70px;
    left: 0;
  }
  .content-header.dashboard-golbal-filter{
    position: static;
    margin-top: 15px;
  }
  .custom-main-dashboard .custom-chartBox{
    flex-wrap: wrap;
  }
  .custom-main-dashboard .custom-chartBox .semi-circle-chart, .custom-main-dashboard .custom-chartBox .graph-cutom-chart{
    width: 100%;
    padding: 10px 10px 0;
  }
  .custom-main-dashboard .data-countBox{
    flex-wrap: wrap;
  }
  .custom-main-dashboard .data-countBox .dash-Box{
    width: 100%;
  }
  .custom-main-dashboard .data-countBox .count-box{
    width: 100%;
  }
  .custom-main-dashboard .data-countBox .count-box.system-au-box, .custom-main-dashboard .data-countBox .count-box.healthy-box{
    width: 100%;
  }
  .custom-main-dashboard .dashboard {
    padding-left: 0;
    padding-right: 10px;
  }
  .healthy-chart-box{
    width: 100%;
  }
  .content-header{
    left: 0;
    top: 0;
    position: relative;
    z-index: 9;
  }
  .content.analytics_section .dashboard{
    padding-left: 0;
    padding-right: 10px;
  }
  /* .top_visited_box .top_visit_cont::after{
    display: none;
  } */
  .cop_top_visit_sec{
    margin-top: 0;
  }
  .top_visit_outerSec .row .col-12:last-child .top_visited_box .top_visit_cont{
    border-bottom: none;
  }
  .vva_count_box .cop_report_box{
    width: 100%;
  }
  .skin-blue .content.analytics_section{
    height: auto;
  }
  .dashboard_fault_section .dashboard{
    padding-left: 0;
    padding-right: 10px;
  }
  .dashboard_fault_section .pb-20{
    padding-bottom: 0 !important;
  }
  .dashboard_fault_section .mb-4{
    margin-bottom: 0 !important;
  }
  .small-box>.small-box-footer{
    background: transparent;
  }
  a.help-content-trigger{
    padding: 3px 10px;
    height: 24px;
    font-size: 12px;
  }
  .notification-dashboard #get-help-info{
    right: -88px;
  }
  a.sidebar-trigger {
    padding: 3px 10px;
    height: 24px;
    font-size: 12px;
    right: -88px;
  }
  .dashboard{
    padding-left: 0;
    padding-right: 7px;
  }

}

@media (max-width: 575px) {
  .modal-lg {
      max-width: 400px;
  }
  .second-row,
  .first-row {
      flex-direction: column;
  }
  .right_control_setting {
      width: 100%;
  }
  .remote-controll .rc-opt {
      overflow: hidden;
      display: flex;
      align-items: center;
      position: relative;
      max-width: 205px;
  }
  .remote-controll {
      max-width: 100%;
      float: left;
      width: 100%;
  }
  .airdir.dyanamic-content {
      max-width: 100%;
  }
  .line {
      display: none;
  }
  .form-group {
      margin-bottom: 0
  }
  .modal.fade.center-modal .modal-dialog {
      margin: 30px auto;
      width: 100%;
      position: absolute;
      bottom: auto;
      left: 50%;
      -webkit-transform: translate(-50%, 50%);
      transform: translate(-50%, 0%);
      top: 0;
  }
  .button-cover {
      max-width: 83px;
  }
  .start.rc-opt label {
      margin-right: 15px;
  }
}

@keyframes spincop {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 575px) {
  .modal-lg {
      max-width: 400px;
  }
  .second-row,
  .first-row {
      flex-direction: column;
  }
  .right_control_setting {
      width: 100%;
  }
  .remote-controll .rc-opt {
      overflow: hidden;
      display: flex;
      align-items: center;
      position: relative;
      max-width: 205px;
  }
  .remote-controll {
      max-width: 100%;
      float: left;
      width: 100%;
  }
  .airdir.dyanamic-content {
      max-width: 100%;
  }
  .line {
      display: none;
  }
  .form-group {
      margin-bottom: 0;
  }
  .modal.fade.center-modal .modal-dialog {
      margin: 30px auto;
      width: 100%;
      position: absolute;
      bottom: auto;
      left: 50%;
      -webkit-transform: translate(-50%, 50%);
      transform: translate(-50%, 0%);
      top: 0;
  }
  .button-cover {
      max-width: 83px;
  }
  .start.rc-opt label {
      margin-right: 15px;
  }
}

@keyframes spincop {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.priority_type_checkbox{
  width: 400px;
}
.breakdown_priority_type_checkbox{
  margin-top: 15px;
}
.priority_type_checkbox #malfunclog-type ,.breakdown_priority_type_checkbox #malfunclog-priority_type{
  display: flex;
}
.tv-header-row{
  padding: 15px 0;
}

.tv-dashboard-logo-box{
  padding: 10px 15px 0;
  text-align: center;
}

.tv-dashboard-logo-box img{
  width: 325px;
}
.tv-contanet-wrapper.content-wrapper{
  margin-left: 0;
  min-height: auto;
}

.tv-main-footer.main-footer{
  margin-left: 0;
}

.energy_management_tv_dashboard .info-box .progress{
  margin-right: 0;
}
.fault-tv-section .tv_dash_malfn_box{
  position: relative;
}
.fault-tv-section .tv_dash_malfn_box::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 12px;
  background: linear-gradient(90deg, #00A1E4 0%, #CCF0FF 100%);
}
.tv_dashboard_footer{
  margin-left: 35px;
}
.tv_dashboard_footer span,.tv_dashboard_footer ul, .tv_dashboard_footer ul li{
  display: inline-block;
}
.tv_dashboard_footer ul{
  padding-left: 0;
  margin-bottom: 0;
  border: 1px solid var(--border-color);
  border-left: 0;
  padding: 5px;
  border-radius: 0px 5px 5px 0;
}
.tv_dashboard_footer ul li{
  position: relative;
  margin-left: 20px;
  color: var(--color-black);
  font-size: 11px;
}
.tv_dashboard_footer ul li::before{
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-dark-gray);
  left: -10px;
  top: 5px;
  display: inline-block;
}
.tv-main-footer .tv_dashboard_footer span{
  font-size: 13px;
  color: var(--color-dark-gray);
  border: 1px solid var(--border-color);
  border-right: 0;
  margin-right: -4px;
  padding: 5px;
  border-radius: 5px 0 0 5px;
}
.tv-main-footer .tv-main-footer-row{
  position: relative;
}
.tv-main-footer .tv-main-footer-row .tv_dashboard_footer{
  position: absolute;
  right: 0;
  top: -5px;
}
.tv_dash_logo_text_box span , .tv_dashboard_section .tv_dash_logo_text_box span{
  position: relative;
  left: -15px;
  top: 8px;
  font-size: var(--font-az-16);
  color: var(--color-black);
  font-weight: 500;
}
