* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

:root {
  --primary-clr: #434343;
  --secondary-clr: #569bd6;
  --secondary-light-clr: rgba(84, 210, 128, 0.15);
  --txt-clr: #A1A1A1;
  --heading-clr: #5D586C;
  --blue-clr: #00CFE8;
  --orange-clr: #FF9F43;
  --red-clr: #EA5455;
  --bg-clr: #F7F8FA;
  --spacer: 28px;
  --spacer-24: 24px;
  --spacer-20: 20px;
}

body {
  background: var(--bg-clr);
}

/* Scrollbar css start */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: rgb(84 167 220 / 17%);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(84 167 220 / 17%);
  ;
}

/* Scrollbar css end */

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.mt-26 {
  margin-top: 26px !important;
}

.mb-26 {
  margin-bottom: 26px !important;
}

.my-26 {
  margin-top: 26px !important;
  margin-bottom: 26px !important;
}

.spacer {
  padding: var(--spacer) 0px;
}

.spacer-24 {
  padding: var(--spacer-24);
}

.spacer-y24 {
  padding: var(--spacer-24) 0px;
}

.spacer-20 {
  padding: var(--spacer-20);
}

.spacer-y20 {
  padding: var(--spacer-20) 0px;
}

.p-relative {
  position: relative;
}

.shadow-0 {
  box-shadow: none !important;
}

.shadow-1 {
  box-shadow: 0px 2px 4px rgba(165, 163, 174, 0.3);
  border-radius: 6px;
}

.shadow-2 {
  box-shadow: 0px 4px 18px rgba(75, 70, 92, 0.1);
  border-radius: 16px;
}

.table-shadow {
  box-shadow: 0px 4px 18px rgba(75, 70, 92, 0.1);
  border-radius: 6px;
}

.txt-secondary-clr {
  color: var(--secondary-clr) !important;
}

.txt-heading-clr {
  color: var(--heading-clr) !important;
}

.txt-light-clr {
  color: var(--txt-clr) !important;
}

.btn-max-width {
  max-width: 480px;
  width: 100%;
}

.primary-btn {
  color: #fff;
  background-image: url("../../assets/images/background/halfImageBg.png");
  background-size: cover;
  box-shadow: 0px 2px 4px rgba(165, 163, 174, 0.3);
  border-radius: 15px;
  border: 0px;
  padding: 10px;
  min-width: 100px;
  text-align: center;
  margin: 0px;
  transition: all .5s ease;
  display: inline-block;
  text-transform: capitalize;
}

.primary-btn:active {
  scale: 0.9;
}

.primary-btn i,
.secondary-btn i,
.info-btn i,
.primary-btn img,
.secondary-btn img,
.info-btn img {
  margin-right: 8px;
}

.secondary-btn {
  color: var(--secondary-clr);
  background: #fff;
  box-shadow: 0px 2px 4px rgba(165, 163, 174, 0.3);
  border-radius: 12px;
  border: 1px solid var(--secondary-clr);
  padding: 9px 10px;
  min-width: 100px;
  text-align: center;
  margin: 0px;
  transition: all .5s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-transform: capitalize;
}

button.info-btn {
  color: #fff;
  background: var(--blue-clr);
  box-shadow: 0px 2px 4px rgba(165, 163, 174, 0.3);
  border-radius: 12px;
  border: 0px;
  padding: 10px;
  min-width: 100px;
  text-align: center;
  margin: 0px;
  transition: all .5s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-transform: capitalize;
}

.primary-btn:hover {
  background: var(--blue-clr) !important;
  color: #fff !important;
}

.secondary-btn:hover {
  background: var(--blue-clr) !important;
  color: #fff !important;
  border-color: var(--blue-clr) !important;
}

.info-btn:hover {
  background: #12b0c3 !important;
}

input:focus,
select:focus,
textarea:focus {
  box-shadow: none !important;
  border-color: var(--secondary-clr) !important;
}

button:focus-visible {
  outline: 0;
}

h1,
.h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 0px;
  color: var(--primary-clr);
}

h2,
.h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0px;
  color: var(--primary-clr);
}

h3,
.h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0px;
  color: var(--primary-clr);
}

h4,
.h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0px;
  color: var(--primary-clr);
}

.sm-txt {
  font-size: 13px;
  color: var(--txt-clr);
  line-height: 20px;
  margin: 5px 0px 0px;
}

.bg-light-green {
  background: rgba(57, 180, 139, 0.05);
}

.bg-light-blue {
  background: rgba(0, 207, 232, 0.08);
  ;
}

.bg-light-orange {
  background: rgba(255, 159, 67, 0.1);
  ;
}

.bg-light-purple {
  background: rgba(151, 71, 255, 0.05);
}

.main-wrapper {
  margin-left: 260px;
  transition: all .5s ease;
  height: 100%;
}

.main-wrapper.main-width {
  margin-left: 80px;
}

.content-wrapper {
  background: var(--bg-clr);
  overflow-y: auto;
  height: 100%;
}


.side-navbar {
  max-width: 260px;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #FFFFFF;
  box-shadow: 0px 2px 4px rgba(165, 163, 174, 0.3);
  overflow-y: auto;
  transition: all .5s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
}

.side-navbar>ul {
  padding: 14px;
}

/* error classes*/

.error {
  border: 1px solid var(--red-clr) !important;
}

input .error:focus {
  border: 1px solid var(--red-clr) !important;
}

/* sidebar small width css start  */

.side-width {
  max-width: 84px;
  /* padding: 16px 14px; */
}

.side-width a.navbar-brand img {
  width: 52px;
  height: 52px;
}

.side-navbar.side-width ul li a.nav-link {
  padding: 0.5rem;
}

.side-navbar.side-width ul li a.nav-link span.nav-text,
.side-navbar.side-width span.nav-text {
  display: none;
}

.side-navbar.side-width .togglebtn {
  display: none;
}

.side-navbar.side-width span.nav-head-text {
  width: 100%;
  display: inline-block;
  text-align: center;
}

.side-navbar.side-width>ul {
  padding: 9px 0px;
}


/* sidebar small width css end  */

.side-navbar ul li div.logo-blk {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-blk {
  padding: 12px 0px 12px 4px;
}

span.logo-1 {
  width: 41px;
  height: 41px;
  display: inline-block;
  margin-right: 8px;
}

.side-navbar.side-width span.logo-1 {
  width: 35px;
  height: 35px;
  display: inline-block;
  margin-right: 0px;
}

span.logo-2 {
  width: 140px;
  display: inline-block;
}

span.logo-2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.togglebtn {
  width: 18px;
  height: 18px;
  outline: none;
  background-color: #ffffff;
  border: 5px solid var(--primary-clr);
  border-radius: 50%;
  transition: all .5s ease;
}

.side-navbar.side-width .logo-2 {
  display: none;
}

.side-navbar ul li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.side-navbar.side-width ul li div.logo-blk,
.side-navbar.side-width ul li a {
  justify-content: center;
}

a.nav-link.profile-link {
  width: 40px;
  height: 40px;
  background: #c2c2ce;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

a.nav-link.profile-link i {
  font-size: 16px;
  color: var(--primary-clr);
}

.side-navbar ul li {
  display: block;
  width: 100%;
  margin-bottom: 12px;
  margin-right: 0px;
  transition: all .5s ease;
}

.side-navbar ul li:first-child {
  margin-bottom: 16px;
}

.side-navbar ul li a.nav-link {
  color: var(--primary-clr);
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.side-navbar ul li a.nav-link svg {
  margin-right: 8px;
}

.side-navbar ul li a.nav-link.active {
  background-image: url("../../assets/images/background/imageBg.png");
  background-size: cover;
}

.side-navbar ul li a.nav-link.active i,
.side-navbar ul li a.nav-link.active .nav-text,
/* .side-navbar ul li a.nav-link:hover .nav-text, */
/* .side-navbar ul li a.profile-navlink:hover .nav-text, */
.side-navbar ul li a.profile-navlink.active .nav-text {
  background: linear-gradient(135deg, white 0%, white 100%);
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
}

.side-navbar ul li a.nav-link:hover .nav-text {
  color: var(--secondary-clr);
  cursor: pointer;
}

.side-navbar ul li a.profile-navlink:hover .nav-text {
  color: var(--secondary-clr);
  cursor: pointer;
}

.side-navbar ul li a.nav-link i {
  font-size: 16px;
  margin-right: 10px;
}

.side-navbar.side-width ul li a.nav-link svg {
  margin: 0 auto;
}

span.nav-head-text {
  padding: 9px 16px;
  color: #959393;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
}

a.nav-link img {
  margin-right: 8px;
}

.filter-img {
  filter: invert();
}

.side-navbar.side-width a.nav-link img {
  margin: 0px;
}

.profile-nav {
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0px -4px 8px rgba(0, 0, 0, 0.07);
  border-radius: 16px 16px 0px 0px;
  padding: 16px 16px 16px 22px;
  transition: all 1s ease;
}

.profile-img {
  width: 100%;
  background: #fff;
  border: 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.profile-arrow img {
  transform: rotate(180deg);
  transition: all .5s ease;
}

.profile-arrow.down img {
  transform: rotate(0deg);
}

.slide-in {
  height: auto !important;
}

ul.profile-nav-list {
  padding: 10px 10px 0px;
  display: block;
}

ul.profile-nav-list li:last-child {
  margin-bottom: 0px;
}

ul.profile-nav-list li {
  padding: 10px 0px;
}

ul.profile-nav-list li a.profile-navlink {
  color: var(--primary-clr) !important;
  text-decoration: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
}

a.profile-navlink img {
  margin-right: 8px;
}

button.close-btn {
  width: 25px;
  height: 25px;
  border: 0px;
  background: #fff;
  position: relative;
}

button.close-btn::before,
button.close-btn::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--primary-clr);
  border-radius: 10px;
}

button.close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

button.close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}


/* Dashboard css start */

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 10px 20px;
  border-radius: 30px;
}

span.company-name {
  font-size: 16px;
  font-weight: 700;
}

.btn-box {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  width: 30px;
  height: 25px;
  justify-content: space-between;
  transition: transform .33s ease-out;
  background: #fff;
  border: 0px;
}

.btn_bar {
  background-color: #000;
  border-radius: 10px;
  height: 3px;
  width: 100%;
}

.btn_bar.btn_width {
  width: 50%;
}

.btn_bar.top {
  transform-origin: right;
  transition: transform .33s cubic-bezier(.54, -.81, .57, .57);
}

.btn_bar.bottom {
  align-self: flex-end;
  transform-origin: left;
  transition: transform .33s cubic-bezier(.54, -.81, .57, .57);
}

.selection-div {
  max-width: 360px;
}

.selection-div select {
  border: 0px;
  padding: 10px 16px;
}

span.select-arrow {
  position: absolute;
  content: "";
  top: 50%;
  right: 15px;
  width: 10px;
  height: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-50%);
}

.devices-count-blk {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.devices-count-icon {
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  background: #f7f7f7;
  border-radius: 50%;
}

.devices-count-detail span {
  font-size: 13px;
  color: var(--primary-clr);
}

.connectivity {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.connectivity div {
  width: 50%;
}

.connectivity-content-blk h2 {
  color: var(--heading-clr);
}

.connectivity-content-blk p {
  font-size: 13px;
  color: var(--txt-clr);
  line-height: 20px;
  margin: 5px 0px 24px;
}

.connectivity-img-blk {
  display: flex;
  justify-content: center;
  align-items: center;
}

.last-week-wrapper {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  max-width: 142px;
  width: 100%;
  transform: translateY(-50%);
}

.last-week-inner-blk select,
.last-week-inner-blk select:focus {
  width: 100%;
  padding: 10px 20px;
  background: #F7F8FA;
  border: 0px;
  color: #727272;
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
}

.connected-device-graph {
  width: 100%;
  height: 100%;
}

.reports-count-detail {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

span.reports-count {
  font-size: 38px;
  font-weight: 600;
  color: var(--heading-clr);
  margin-right: 10px;
}

span.reports-percentage {
  padding: 5px 10px;
  background: rgba(40, 199, 111, 0.16);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
}

.connected-device-graph img {
  width: 100%;
  height: 159px;
  object-fit: contain;
  object-position: right;
}

.connected-card-blk {
  width: 100%;
  height: 100%;
  border: 1px solid #DBDADE;
  border-radius: 16px;
  padding: 16px 20px;
  margin-top: 32px;
}

.connected-card-head-blk {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

span.connected-icon-blk {
  width: 26px;
  height: 26px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  margin-right: 8px;
}

.connected-card-content-blk {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0px;
}

span.devices-count {
  font-size: 22px;
  font-weight: 600;
}

.connected-percentage {
  font-size: 15px;
  font-weight: 500;
}

.connected-card-progress-blk img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.requested-content-blk {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 23px 0px;
}

.request-card-head-blk {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}

span.request-icon-blk {
  width: 24px;
  height: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  margin-right: 8px;
}

span.request-status {
  font-size: 15px;
}

span.request-percentage,
span.request-count {
  display: block;
}

span.request-percentage {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-clr);
}

.requested-progress-blk {
  width: 100%;
  height: 10px;
  display: flex;
}

.requested-progress-blk img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.pending-blk .request-card-head-blk {
  flex-direction: row-reverse;
}

.pending-blk span {
  text-align: end;
}

.pending-blk span.request-icon-blk {
  margin-left: 8px;
  margin-right: 0px;
}

.divider-blk {
  width: 24px;
  height: 24px;
  background: var(--bg-clr);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  color: var(--heading-clr);
  position: relative;
}

.divider-blk::before {
  position: absolute;
  content: "";
  top: -40px;
  left: 50%;
  width: 1px;
  height: calc(100% + 10px);
  background: #DBDADE;
  transform: translateX(-50%);
}

.divider-blk::after {
  position: absolute;
  content: "";
  bottom: -40px;
  left: 50%;
  width: 1px;
  height: calc(100% + 10px);
  background: #DBDADE;
  transform: translateX(-50%);
}

.kwh-report-blk {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.kwh-deatil-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.kwh-deatil:first-child {
  margin-right: 32px;
}

.kwh-deatil span {
  display: block;
  text-align: end;
}

span.kwh-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-clr);
}

span.kwh-generated {
  font-size: 15px;
  color: var(--primary-clr);
}

span.kwh-gen-indicator,
span.kwh-used-indicator {
  width: 10px;
  height: 10px;
  border-radius: 20px;
  margin-right: 6px;
  display: inline-block;
}

span.kwh-gen-indicator {
  background: var(--secondary-clr);
}

span.kwh-used-indicator {
  background: #3897E0;
}

.reports-graph-img {
  width: 100%;
  height: 306px;
}

.reports-graph-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.type-report-block>ul {
  justify-content: space-between;
  margin-bottom: 30px;
}

button.report-tabs {
  padding: 15px;
  background: #fff;
  border-radius: 16px;
  border: 2px dashed #DBDADE;
  min-width: 165px;
  width: 100%;
}

button.report-tabs.active {
  border-color: var(--secondary-clr);
  border-style: solid;
}

span.reports-tabs-icon {
  width: 34px;
  height: 34px;
  background: #F1F0F2;
  border-radius: 6px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
}

button.report-tabs.active span.reports-tabs-icon {
  background: rgba(57, 180, 139, 0.05);
  ;
}

span.reports-tabs-heading {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--heading-clr);
}


.copyright-blk,
.footer-link-blk {
  padding: 13px 0px;
}

.footer-link-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.footer-link-list li:not(:last-child) {
  margin-right: 16px;
}

.copyright-blk p,
.footer-link-list li a {
  color: var(--primary-clr);
  font-size: 15px;
  transition: all .5s ease;
  cursor: pointer;
}

.footer-link-list li a:hover {
  background: linear-gradient(135deg, #7CE27E 0%, #07B382 100%);
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.welcome-blk p {
  font-size: 15px;
}

.welcome-img-blk {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  max-width: 140px;
  width: 100%;
  border-bottom-right-radius: 16px;
}


/* Dashboard css end */

/* Table css start */
span.check-box {
  /* width: 18px; */
  height: 18px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  margin-right: 20px;
}

.check-box input {
  display: none;
}

.check-box input+label {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid var(--primary-clr);
  transition: all .5s ease;
}

.check-box input:checked+label {
  background: var(--secondary-clr);
  border-color: var(--secondary-clr);
  position: relative;
  box-shadow: 0px 2px 4px rgba(165, 163, 174, 0.3);
}

/* .check-box input:checked + label::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-40deg);
  width: 12px;
  height: 6px;
  border-top: 0px;
  border-right: 0px;
  border-left: 2.5px solid #fff;
  border-bottom: 2.8px solid #ffffff;
  border-radius: 2px 3px 2px 0px;
} */
.check-box input:checked+label::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 100%;
  background: url(../images/icon/checkbox-path.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

table {
  border: 1px solid #d0d0d0;
  border-width: 1px 0px;
}

th,
td {
  padding: 16px 10px !important;
}

th {
  text-transform: uppercase;
  color: var(--primary-clr);
  font-weight: 700;
  font-size: 10px;
}

td {
  vertical-align: middle;
  font-size: 13px;
  color: var(--primary-clr);
}

td a {
  color: var(--primary-clr);
}

td a:hover {
  text-decoration: underline;
}

.th-flex,
.td-flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

span.td-status {
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.success-state {
  background: rgba(57, 180, 139, 0.07);
  color: var(--secondary-clr);
}

.active-state {
  background: rgba(0, 207, 232, 0.16);
  color: var(--blue-clr);
}

.inactive-state,
.pending-state {
  background: rgba(255, 159, 67, 0.16);
  color: var(--orange-clr);
}

.locked-state,
.failed-state {
  background: rgba(234, 84, 85, 0.16);
  color: var(--red-clr);
}

.cancel-state {
  background: rgba(168, 170, 174, 0.16);
  color: #A8AAAE;
}

button.edit-icon-btn {
  border: 0px;
  background: #fff;
}

.table-header {
  padding: 0px 24px 16px;
}

.filter-section,
.search-blk {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
}

.select-blk {
  max-width: 100px;
  width: 100%;
  margin-right: 14px;
}

.search-blk {
  max-width: 300px;
  width: 100%;
}

span.search-icon {
  position: absolute;
  content: "";
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
}

.search-blk input {
  padding-left: 40px;
  font-size: 16px;
}

.search-blk input::placeholder {
  color: #A1A1A1;
  font-size: 15px;
}

.table-btn-section {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.table-footer {
  padding: 16px 24px 0px;
}

.showing-result-blk p {
  font-size: 13px;
  color: var(--primary-clr);
}

.pagination-blk a.page-link {
  border-radius: 10px;
  background: #F1F0F2;
  border: 0px;
  min-width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-clr);
  font-size: 15px;
  margin: 0px !important;
}

li.page-item.disabled .page-link {
  border-radius: 10px;
  background: #F1F0F2 !important;
  border: 0px;
  min-width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-clr) !important;
  font-size: 15px;
  margin: 0px !important;
}

.pagination {
  gap: 4px;
}

.pagination a.page-link {
  border-radius: 10px;
  background: #F1F0F2 !important;
  border: 0px;
  min-width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-clr) !important;
  font-size: 15px;
  margin: 0px !important;
}

.pagination-bar a.page-link {
  background-image: url("../../assets/images/background/halfImageBg.png") !important;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff !important;
}

.abc>.justify-content-center {
  justify-content: end !important;
}

.pagination .page-link:focus {
  /* box-shadow: none !important; */
}

.pagination .page-item>.page-link:hover {
  /* background: #E2E1E5 !important; */
}

.pagination-blk ul li:not(:last-child) {
  margin-right: 4px;
}

/* Table css end */

/* image type style */

.image-type-icon {
  width: 80px;
  height: 60px;
  border-radius: 20%;
  background: cover;
  cursor: pointer;
}

.description-handler {
  max-width: 500px;
}

.view-image-type-icon {
  width: 100%;
  height: 160px;
  border-radius: 10px;
  background: cover;
  cursor: pointer;
  border: 1px solid black;
  object-fit: fill;
  margin-bottom: 10px;
}

/* Manage Distributor , Add New page css Start */

.common-field {
  margin-bottom: 16px;
}

.common-field label {
  font-size: 15px;
  color: var(--txt-clr);
  margin-bottom: 5px;
}

.common-field input,
.common-field textarea,
.common-field select {
  border-radius: 10px;
  font-size: 15px;
  color: var(--primary-clr) !important;
  padding: 10px 14px;
  border-color: #d0d0d0;
}

.common-field input::placeholder,
.common-field textarea::placeholder {
  color: #d0d0d0;
  font-size: 15px;
}

button.copy-btn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 0px;
  background: #F1F1F2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.attach-file-blk input {
  display: none;
}

label.secondary-btn {
  padding: 6px 14px;
}

.attached-file-show-blk,
.add-account-input-blk,
.account-list-blk {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 16px;
}

.attached-file-show-blk:last-child {
  margin-bottom: 0px;
}

span.attach-file-name {
  width: calc(100% - 128px);
  padding: 13px 20px;
  background: var(--bg-clr);
  border-radius: 16px;
  font-size: 18px;
  color: var(--txt-clr);
  overflow: hidden;
}

.attached-file-show-blk button,
.account-list-blk button {
  width: 48px;
  height: 48px;
  border: 0px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 16px;
}

button.file-download-btn {
  background: var(--secondary-light-clr);
}

button.file-remove-btn,
button.account-remove-btn {
  background: rgba(234, 84, 85, 0.1);
}

.add-account-input-blk {
  margin-bottom: 36px;
}

.add-input-blk {
  width: calc(100% - 128px);
}

.account-list-blk:last-child {
  margin-bottom: 0px;
}

button.account-key-btn {
  background: rgba(56, 151, 224, 0.12);
}

.add-account-input-blk button {
  margin-left: 16px;
}

.input-field-blk input {
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--txt-clr) !important;
  font-size: 18px;
  border-color: #d0d0d0;
}

.input-field-blk input::placeholder {
  color: var(--txt-clr) !important;
}

.btns-block {
  text-align: center;
}

button.cancel-btn {
  background: #A8AAAE;
  box-shadow: 0px 2px 4px rgba(165, 163, 174, 0.3);
  border-radius: 12px;
  color: #fff;
  padding: 12px 20px;
  border: 0px;
  margin-left: 32px;
  text-transform: capitalize;
  transition: all .5s ease;
}

button.cancel-btn:hover {
  background: #ed4b4b;
}

/* Manage Distributor , Add New page css End */

/* Upload Page css start */

.upload-block {
  border-radius: 16px;
}

.upload-block input {
  display: none;
}

.upload-block input+label {
  width: 100%;
  background: #FFFFFF;
  border: 1px dashed #DBDADE;
  border-radius: 16px;
  padding: 62px;
  height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

span.label-inner-blk {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

span.upload-icon {
  width: 48px;
  height: 48px;
  background: var(--secondary-light-clr);
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 35px;
}

span.upload-heading {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-clr);
  margin-bottom: 16px;
}

span.upload-note {
  font-size: 15px;
  color: var(--primary-clr);
}

span.upload-value,
span.upload-complete {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-clr);
}

span.upload-status {
  font-size: 15px;
  color: var(--primary-clr);
  margin: 16px 0px 20px;
}

.download-block button {
  padding: 13px;
}

.upload-instruction-blk .accordion-item {
  background: transparent !important;
  border: 0px !important;
  box-shadow: 0px 2px 4px rgba(165, 163, 174, 0.3);
  border-radius: 10px !important;
}

.upload-instruction-blk .accordion-item:not(:last-child) {
  margin-bottom: 8px !important;
}

.upload-instruction-blk .accordion-button {
  background: #fff !important;
  padding: 12.5px 18px;
  border-radius: 10px !important;
  font-size: 15px;
  font-weight: 600;
  color: #4B465C;
}

.upload-instruction-blk .accordion-button:not(.collapsed) {
  background: #fff !important;
  border-radius: 10px 10px 0px 0px !important;
  box-shadow: none;
}

.upload-instruction-blk .accordion-button.collapsed::after {
  transform: rotate(-90deg);
}

.upload-instruction-blk .accordion-button:not(.collapsed)::after {
  transform: rotate(0deg);
}

.upload-instruction-blk .accordion-button:focus {
  box-shadow: none !important;
}

.accordion-body {
  background: #fff;
  color: #4B465C;
  font-size: 15px;
  border-radius: 0px 0px 10px 10px !important;
}


.common-modal .modal-content {
  box-shadow: 0px 5px 20px rgba(75, 70, 92, 0.4) !important;
  border-radius: 6px !important;
  border: 0px !important;
}

.note-modal .modal-dialog {
  max-width: 610px;
}

.note-modal .make-note-blk {
  padding: 65px;
}

.make-note-blk h2 {
  text-align: center;
  font-size: 26px;
  color: #4B465C !important;
}

.note-modal .make-note-blk span {
  display: block;
}

span.note-detail {
  font-size: 15px;
  color: #4B465C;
  font-weight: 600;
  margin-bottom: 12px;
}

span.note-blk {
  font-size: 15px;
  color: #4B465C;
  font-style: italic;
}

.note-input-field label {
  font-size: 15px;
  color: var(--txt-clr);
  margin-bottom: 5px;
}

.note-input-field input {
  border-color: #d0d0d0;
  color: #d0d0d0;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 15px;
}

.note-input-field input::placeholder {
  color: #d0d0d0;
  font-size: 15px;
}

button.light-btn {
  padding: 10px 20px;
  border: 0px;
  background: rgba(168, 170, 174, 0.16);
  border-radius: 12px;
  color: var(--txt-clr);
  text-transform: capitalize;
}

.common-modal button.btn-close {
  position: absolute;
  content: "";
  top: -12px;
  right: -12px;
  width: 32px;
  height: 32px;
  background: #fff;
  box-shadow: 0px 2px 4px rgba(165, 163, 174, 0.3);
  border-radius: 6px;
  opacity: 1;
  z-index: 1;
}

.common-modal button.btn-close::before {
  position: absolute;
  content: "\f00d";
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  font-family: "Font Awesome 6 Free";
  font-size: 18px;
  font-weight: 600;
  color: var(--txt-clr);
  background: #ffffff !important;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
}

body.modal-open .side-navbar,
body.modal-open .main-wrapper {
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
}

.modal-backdrop {
  background: rgba(20, 20, 20, 0.08) !important;
}

/* Toast css start */

.toast {
  position: absolute;
  bottom: 25px;
  right: 37px;
  max-width: 380px;
  width: 100%;
  background: #fff;
  padding: 20px;
  box-shadow: 0px 4px 16px rgba(165, 163, 174, 0.45);
  border-radius: 6px;
  border: 0px;
  overflow: hidden;
  transform: translateX(calc(100% + 30px));
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
}

.toast.active {
  transform: translateX(0%);
}

.toast .toast-blk {
  display: flex;
  align-items: flex-start;
}

.toast-blk .toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  width: 26px;
  border-radius: 6px;
}

.toast-blk .toast-message {
  width: calc(100% - 38px);
  margin-left: 12px;
}

.toast-message span {
  display: block;
}

span.toast-heading {
  font-size: 15px;
  font-weight: 600;
  color: var(--heading-clr);
}

span.toast-content {
  font-size: 13px;
  color: var(--heading-clr);
}

.toast-message button {
  padding: 6px 14px;
}

.toast .close-toast {
  position: absolute;
  content: "";
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0px;
  background: #fff;
}

.toast .close-toast i {
  color: var(--txt-clr);
}

.toast .close-toast:hover {
  opacity: 1;
}

.toast:not(.show) {
  display: block;
}

/* Toast css end */

/* Upload Page css end */

/* View Devices batch csss start */

span.distributor-name:hover {
  cursor: pointer;
  text-decoration: underline;
}

/* View Devices batch csss end */

/* My Devices css start */

.last-validation p {
  font-size: 15px;
  color: var(--txt-clr);
}

span.toggle-box {
  display: inline-flex;
}

.toggle-box input {
  display: none;
}

.toggle-box input+label {
  width: 37px;
  height: 22px;
  background: var(--orange-clr);
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  transition: all .5s ease;
}

.toggle-box input+label::before {
  position: absolute;
  content: "";
  top: 4px;
  left: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: all .5s ease;
}

.toggle-box input:checked+label {
  background: var(--blue-clr);
  box-shadow: 0px 2px 4px rgba(165, 163, 174, 0.3);
}

.toggle-box input:checked+label::before {
  left: calc(100% - 17px);
}

.lock input:checked+label {
  background: var(--red-clr);
}

.unlock input:checked+label {
  background: var(--secondary-clr);
}

.show-title {
  position: relative;
  cursor: pointer;
}

.show-title:hover .custom-tooltip {
  display: block;
}

.show-title:hover .text-wrap {
  text-decoration: underline;
}

.custom-tooltip {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  padding: 4px 10px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), #8692D0;
  border-radius: 6px;
  color: #fff;
  white-space: nowrap;
  display: none;
}

.tooltip-left {
  left: calc(100% + 10px);
}

.tooltip-right {
  right: calc(100% + 10px);
}

.custom-tooltip::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: transparent;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.custom-tooltip.tooltip-left::before {
  left: -10px;
  border-right: 5px solid #2f3349;
}

.custom-tooltip.tooltip-right::before {
  right: -10px;
  border-left: 5px solid #2f3349;
}

/* My Devices css end */

/* Create Action css start */

.choose-action input {
  display: none;
}

.choose-action input+label {
  width: 100%;
  padding: 16px;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  cursor: pointer;
}

.choose-action input:checked+label {
  border: 1px solid var(--secondary-clr);
}

.choose-label-blk {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.choose-label-circle {
  width: 18px;
  height: 18px;
  border: 1px solid #d0d0d0;
  border-radius: 20px;
  margin-right: 8px;
}

.choose-action input:checked+label .choose-label-circle {
  border-width: 5px;
  border-color: var(--secondary-clr);
  box-shadow: 0px 2px 4px rgba(165, 163, 174, 0.3);
}

.choose-label-content {
  width: calc(100% - 26px);
}

.choose-label-content span {
  display: block;
}

.choose-label-head {
  font-size: 15px;
  font-weight: 600;
  color: var(--heading-clr);
  margin-bottom: 8px;
}

.choose-label-description {
  font-size: 13px;
  color: var(--heading-clr);
}

.choose-action-status {
  font-size: 15px;
}

/* Create Action css end */


.common-modal-flex {
  padding: 10px;
  background: #f3f5fc;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}

span.modal-title-detail {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: capitalize;
  display: block;
}

span.modal-content-detail {
  font-size: 13px;
  display: block;
}

.modal-heading-flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 25px;
}

.modal-heading-flex span.modal-title-detail {
  width: 48%;
}

.modal-user-profile span {
  color: #727171;
  font-size: 14px;
}

.modal-flex-wrapper {
  max-height: 140px;
  overflow-y: auto;
  overflow-x: hidden;
}

.modal-connected-list ul {
  padding-left: 0px;
  list-style: none;
  margin-bottom: 0px;
  max-height: 50px;
  overflow-y: auto;
}

.modal-flex-card {
  padding: 8px 10px;
  background: #fefefe;
  border: 1px solid #7f7f7f;
  border-radius: 15px;
}

.modal-flex-card:not(:last-child) {
  margin-bottom: 4px;
}

a.uid-text {
  color: #3c6693;
  text-decoration: underline;
  cursor: pointer;
  font-size: 15px;
}

@media screen and (min-width: 992px) {
  .container {
    max-width: calc(100% - 52px);
  }
}

@media screen and (min-width: 576px) and (max-width: 991px) {
  .container {
    max-width: calc(100% - 40px);
  }
}

@media screen and (max-width: 1199px) {

  .description-handler {
    max-width: 400px;
  }
}

@media screen and (max-width: 991px) {
  .main-wrapper.main-width {
    margin-left: 0px;
  }

  .description-handler {
    max-width: 300px;
  }

  .side-width {
    max-width: 0px;
  }

  .table {
    width: 100%;
    display: block;
    overflow-x: auto;
  }

  .copyright-blk,
  .footer-link-blk {
    text-align: center;
  }

  .footer-link-list {
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .main-wrapper.main-width {
    margin-left: 0px;
  }

  .side-width {
    max-width: 0px;
  }

  .description-handler {
    max-width: 200px;
  }

  a.navbar-brand img {
    width: 100px;
  }

  .search-blk {
    max-width: 100%;
    width: 100%;
  }

  .type-report-block>ul li {
    margin-bottom: 15px;
  }

  .upload-block input+label {
    padding: 20px;
  }

  .kwh-report-blk {
    flex-direction: column;
    align-items: flex-start;
  }

  .kwh-deatil-wrapper {
    margin-top: 20px;
  }
}

@media screen and (max-width: 576px) {
  a.navbar-brand img {
    width: 90px;
  }

  .primary-btn {
    padding: 6px 10px;
  }

  .secondary-btn {
    color: var(--secondary-clr);
    padding: 5px 10px;
  }

  .select-blk {
    max-width: 70px;
  }

  .last-week-wrapper {
    position: static;
    max-width: 142px;
    width: 100%;
    margin-top: 10px;
    transform: none;
  }

  .note-modal .make-note-blk {
    padding: 30px;
  }

  .common-modal button.btn-close {
    top: -20px;
    right: 10px;
  }

  span.attach-file-name,
  .add-input-blk {
    width: calc(100% - 102px);
  }

  .attached-file-show-blk button,
  .account-list-blk button {
    width: 35px;
    height: 35px;
    border-radius: 8px;
  }

  .input-field-blk input {
    font-size: 14px;
  }

  .cancel-btn {
    margin-top: 15px;
    margin-left: 0px !important;
  }

  .footer-link-list {
    display: flex;
    flex-direction: column;
  }

  .pagination-blk a.page-link {
    min-width: 25px;
    height: 34px;
    font-size: 12px;
    padding: 5px;
  }

  span.upload-heading {
    font-size: 16px;
  }

  span.upload-note {
    font-size: 13px;
  }
}

.transition-wrapper-up {
  animation-name: scroll-up;
  animation-duration: 0.6s;
  animation-timing-function: ease-out;
}

.transition-wrapper-down {
  animation-name: scroll-down;
  animation-duration: 0.6s;
  animation-timing-function: ease-in;
}

/* supply modal */

.outerBox {
  background-color: #eef7ff;
  padding: 17px 29px;
  width: 100%;
}


@keyframes scroll-up {
  from {
    height: 0px;
  }

  to {
    height: 180px;
  }
}

@keyframes scroll-down {
  from {
    height: 180px;
  }

  to {
    height: 50px;
  }
}