html {
  width: 100%;
}

body {
  overflow-x: hidden !important;
}

body.show-spinner > main {
  overflow: hidden !important;
}

/* Hide everything under body tag */
body.show-spinner > *{
  opacity: 0;
}

/* Spinner */
body.show-spinner::after{
  content: " ";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border-top-color: rgba(0, 0, 0, 0.3);
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  position: fixed;
  z-index: 1;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

/* Scroll Bar */
::-webkit-scrollbar{
  width: 4px;
  height: 4px;
  }
  ::-webkit-scrollbar-thumb{
  background: #A8A6A8;
  border-radius: 30px;
  }
  ::-webkit-scrollbar-thumb:hover{
  background: #878587;
  }
  ::-webkit-scrollbar-track{
  background: #FFFFFF;
  border-radius: 0px;
  box-shadow: inset 0px 0px 0px 0px #F0F0F0;
  }

/* Login Form */
.form-control-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem !important;
  height: auto !important; }

.logo {
  /* width: 100%; */
  height: 100%;
}

.mask-right {
  display: flex;
  justify-content: flex-end;
}

.login-card {
  min-height: 50vh;
  box-shadow: 0px 3px 32px #0000000A; 
  border-radius: 8px; 
  padding: 58px;
  border: 1px solid #E8E8E8;
}

.login-button {
  width: 100%;
  height: 66px;
  border-radius: 8px;
  font-size: 20px;
  font-family: 'Roboto';
  font-weight: 300;
}

.login-page-text {
  font-size: 78px;
}

.forget-pass-heading {
  font-size: 78px;
} 

.navbar .navbar-left {
  flex: 0.2;
 }
.navbar .navbar-center {
  flex: 0.6;
}
.navbar .navbar-center .module-menu-container {
  text-align: center;
  justify-content: center;
  display: flex;
}
#menu-top-nav {
  gap: 63px;
}
@media (max-width: 1199px) {
  #menu-top-nav {
    gap: 45px;
  }
  .login-page-text {
    font-size: 28px !important;
    line-height: 36px !important;
  }
  .forget-pass-heading {
    font-size: 28px !important;
    line-height: 36px !important;
  }
  .login-page-p {
    font-size: 16px !important;
    line-height: 24px !important;
  }
  .forget-pass-paragrah {
    font-size: 16px !important;
    line-height: 24px !important;
  }
  .login-label {
    font-size: 16px !important;
  }
  .login-card {
    padding: 30px;
  }
}
.menu-item > a {
  font-size: calc(1.25vw) !important;
  font-family: 'Roboto';
}
.navbar .navbar-right {
  /* flex-basis: 40%;  by abhishek*/  
  flex: 0.2; /* Added by abhishek */
  text-align: right; }
@media (max-width: 1199px) {
  .navbar .navbar-right {
    flex: 0.3 !important;
  }
}

@media (max-width : 767px) {
  .navbar-login > a {
    flex: 1 !important;
  }
}

.navbar-logo {
  width: 100px;
  height: 100%;
}

.fa-1x {
  font-size: 1.5rem;
}

/* Mobile Menu Login screen */
.nav-mobile-menu {
  position: absolute;
  flex: 1 1 0%; 
  left: 0px; 
  right: 0px;
  height: 95vh;
  margin-top: 25px;
  padding-top: 40px;
}

.menu-item-mobile > a {
  font-size: 20px;
}

.menu-item-mobile {
  text-align: center;
}

.apexcharts-menu-icon {
  width: auto !important;
  height: auto !important;
}

.apexcharts-toolbar {
  max-width: 215px !important;
}

.page-footer {
  margin-left: 0 !important;
}

/* Download csv modal window */

#download-csv-modal {
  position: fixed;
  top: 0;
  z-index: 1600;
  display: flex;
  width: 100vw;
  min-height: 100vh;
  flex: 1;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF 0% 0% no-repeat padding-box;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.download-csv-modal-card {
  width: 60%;
  min-width: 320px;
  min-height: 200px;
  height: fit-content;
  background-color: #FFFFFF;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.download-csv-modal-card > div:nth-child(1) {
  padding: 15px 20px 0px 20px;
  border-bottom: 1px solid #707070;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#download-csv-modal-card-close {
  border: none;
  background: none;
  color: #000000b7;
}

#download-csv-modal-card-close > p {
  font-size: 28px;
}

#download-csv-sites {
  width: 30%;
  min-width: 280px;
}

#download-csv-meters {
  width: 60%;
  min-width: 280px;
}

#download-csv-time {
  width: 60%;
  min-width: 280px;
}

.download-csv-modal-card > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.download-csv-modal-card > div:nth-child(3) {
  padding: 8px 20px;
  border-top: 1px solid #707070;
  min-height: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.daterangepicker {
  top : 47% !important; 
}


/* Forget pass styling */
.form-forget-pass > p {
  text-align: end;
  color: #4a90e2;
  cursor: pointer;
}
.form-forget-pass>p:hover {
  color: #0f3d64;

}

.forget-pass-heading {
  display: none;
}

.forget-pass-paragrah {
  display: none;
}

