/* Google Font Link */


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins" , sans-serif;
}

.sidebar{
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 78px;
  background: #11101D;
  padding: 6px 14px;
  z-index: 99;
  transition: all 0.5s ease;
}
.sidebar.open{
  width: 180px;
}
.sidebar .logo-details{
  height: 60px;
  display: flex;
  align-items: center;
  position: relative;
}
.sidebar .logo-details .icon{
  opacity: 0;
  transition: all 0.5s ease;
}
.sidebar .logo-details .logo_name{
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  opacity: 0;
  transition: all 0.5s ease;
}
.sidebar.open .logo-details .icon,
.sidebar.open .logo-details .logo_name{
  opacity: 1;
}
.sidebar .logo-details #btn{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 20px;
  transition: all 0.4s ease;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s ease;
}
.sidebar.open .logo-details #btn{
  text-align: right;
}
.sidebar i{
  color: #fff;
  height: 60px;
  min-width: 50px;
  font-size: 28px;
  text-align: center;
  line-height: 60px;
}
.sidebar .nav-list{
  margin-top: 20px;
  height: 100%;
  padding: 0;
}
.sidebar li{
  position: relative;
  margin: 8px 0;
  list-style: none;
}
.sidebar li .submenu {
  position: absolute;
  background: inherit;
  left: 100%;
  right: auto;
  width: 100%;
  top: 0;
}

.sidebar li .marker {
  position: absolute;
  background-color: #00cd69;
  z-index: 2;
  left: calc(100% + 5px);
  top: 0;
  width: 5px;
  height: 100%;
  opacity: 0;
}
.sidebar li.selected .marker {
  opacity: 1;
}


.sidebar li .tooltip{
  position: absolute;
  top: -20px;
  left: calc(100% + 15px);
  z-index: 3;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 400;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: 0s;
}
.sidebar li:hover .tooltip{
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
  top: 50%;
  transform: translateY(-50%);
}
.sidebar li:hover .marker {
  opacity: 1;
}
.sidebar.open li .tooltip{
  display: none;
}
.sidebar input{
  font-size: 15px;
  color: #FFF;
  font-weight: 400;
  outline: none;
  height: 50px;
  width: 100%;
  width: 50px;
  border: none;
  border-radius: 12px;
  transition: all 0.5s ease;
  background: #1d1b31;
}
.sidebar.open input{
  padding: 0 20px 0 50px;
  width: 100%;
}
.sidebar .bx-search{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 22px;
  background: #1d1b31;
  color: #FFF;
}
.sidebar.open .bx-search:hover{
  background: #1d1b31;
  color: #FFF;
}
.sidebar .bx-search:hover{
  background: #FFF;
  color: #11101d;
}
.sidebar li a{
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 12px;
  align-items: center;
  text-decoration: none;
  transition: all 0.4s ease;
  background: #11101D;
}
.sidebar li a:hover{
  background: #FFF;
}
.sidebar li a .links_name{
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}
.sidebar.open li a .links_name{
  opacity: 1;
  pointer-events: auto;
}
.sidebar li a:hover .links_name,
.sidebar li a:hover i{
  transition: all 0.5s ease;
  color: #11101D;
}
.sidebar li i{
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  border-radius: 12px;
}
.sidebar li.profile{
  position: fixed;
  height: 60px;
  width: 78px;
  left: 0;
  bottom: -8px;
  padding: 10px 14px;
  background: #1d1b31;
  transition: all 0.5s ease;
  overflow: hidden;
}
.sidebar.open li.profile{
  width: 180px;
}
.sidebar li .profile-details{
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.sidebar li img{
  height: 45px;
  width: 45px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 10px;
}
.sidebar li.profile .name,
.sidebar li.profile .job{
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
}
.sidebar li.profile .job{
  font-size: 12px;
}
.sidebar .profile #log_out{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #1d1b31;
  width: 100%;
  height: 60px;
  line-height: 60px;
  border-radius: 0px;
  transition: all 0.5s ease;
}
.sidebar.open .profile #log_out{
  width: 50px;
  background: none;
}
.home-section{
  position: relative;
  /* background: #E4E9F7; */
  min-height: 100vh;
  top: 0;
  left: 78px;
  width: calc(100% - 78px);
  transition: all 0.5s ease;
  z-index: 2;
}
.sidebar.open .home-section{
  background: #000;
  left: 180px;
  width: calc(100% - 180px);
}
.home-section .text{
  display: inline-block;
  color: #11101d;
  font-size: 25px;
  font-weight: 500;
  margin: 18px
}
@media (max-width: 420px) {
  .sidebar li .tooltip{
    display: none;
  }
}

/**
Customize Styles
*/

.nav-title {
  color: #ffffff !important;
}

.navbar {
  border-bottom: 1px solid #6c6f80 !important;
}

.fa-mr-1 {
  margin-right: 3%;
}

.select-page {
  height: 35px;
  line-height: 35px;
  font-size: 15px;
  width: 20%;
}

.select-page select {
  display: inline-block;
  width: 30% !important;
}

.background-color {
  background-color: #2b2e43 !important;
}

.m-t-1 {
    margin-top: 1% !important;
}

.m-r-10 {
  margin-left: 10%;
}

.m-l-25 {
    margin-left: 25%;
}

.m-t-4 {
    margin-top: 4% !important;
}

.m-t-17 {
    margin-top: 17% !important;
}

.top-wrapper {
  width: 100%;
  height: 150px;
  margin-bottom: 11%;
}

.gauge-input {
  width: 70% !important;
}

.btn-group-custom {
  width: 50%;
  margin: 0 auto;
}

#flat-slider.ui-slider {
    background: #d5cebc;
    border: none;
    border-radius: 0; }

    #flat-slider.ui-slider .ui-slider-handle {
      width: 20px;
      height: 20px;
      border-radius: 50% 50% 0;
      border-color: transparent;
      transition: border 0.4s ease; }

      #flat-slider.ui-slider .ui-slider-handle.ui-state-hover,
      #flat-slider.ui-slider .ui-slider-handle.ui-state-focus,
      #flat-slider.ui-slider .ui-slider-handle.ui-state-active {
        border-color: #172f38; }

    #flat-slider.ui-slider .ui-slider-pip .ui-slider-line {
      background: #d5cebc;
      transition: all 0.4s ease; }

    #flat-slider.ui-slider.ui-slider-horizontal {
      height: 6px; }

      #flat-slider.ui-slider.ui-slider-horizontal .ui-slider-handle {
        -webkit-transform: rotateZ(45deg);
                transform: rotateZ(45deg);
        top: -25px;
        margin-left: -10px; }

      #flat-slider.ui-slider.ui-slider-horizontal .ui-slider-pip {
        top: 10px; }

        #flat-slider.ui-slider.ui-slider-horizontal .ui-slider-pip .ui-slider-line {
          width: 2px;
          height: 10px;
          margin-left: -1px; }

        #flat-slider.ui-slider.ui-slider-horizontal .ui-slider-pip[class*=ui-slider-pip-selected] .ui-slider-line {
          height: 20px; }

        #flat-slider.ui-slider.ui-slider-horizontal .ui-slider-pip.ui-slider-pip-inrange .ui-slider-line {
          height: 12px; }

    #flat-slider.ui-slider.ui-slider-vertical {
      width: 6px;
      height: 125px;
      display: inline-block;
      margin: 0 15%; }

      #flat-slider.ui-slider.ui-slider-vertical .ui-slider-handle {
        -webkit-transform: rotateZ(-45deg);
                transform: rotateZ(-45deg);
        left: -25px;
        margin-bottom: -10px; }

      #flat-slider.ui-slider.ui-slider-vertical .ui-slider-pip {
        left: 10px; }

        #flat-slider.ui-slider.ui-slider-vertical .ui-slider-pip .ui-slider-line {
          height: 2px;
          width: 10px;
          margin-top: -1px; }

        #flat-slider.ui-slider.ui-slider-vertical .ui-slider-pip[class*=ui-slider-pip-selected] .ui-slider-line {
          width: 20px; }

        #flat-slider.ui-slider.ui-slider-vertical .ui-slider-pip.ui-slider-pip-inrange .ui-slider-line {
          width: 12px; }

        #flat-slider.ui-slider.ui-slider-vertical .ui-slider-handle .ui-slider-tip,
        #flat-slider.ui-slider.ui-slider-vertical .ui-slider-handle[class*=ui-state-] .ui-slider-tip {
          visibility: visible;
          opacity: 1;
          border: none;
          background: transparent;
          left: 50%;
          width: 30px;
          margin-left: -15px;
          text-align: center;
          color: white;
          font-weight: normal;
          top: 10px;
          -webkit-transform: rotateZ(45deg);
                  transform: rotateZ(45deg); }

          #flat-slider.ui-slider.ui-slider-vertical .ui-slider-handle .ui-slider-tip:before,
          #flat-slider.ui-slider.ui-slider-vertical .ui-slider-handle[class*=ui-state-] .ui-slider-tip:before {
            display: none; }

  #flat-slider .ui-slider-handle,
  #flat-slider .ui-slider-range,
  #flat-slider .ui-slider-pip[class*=ui-slider-pip-selected] .ui-slider-line,
  #flat-slider .ui-slider-pip.ui-slider-pip-inrange .ui-slider-line {
    background-color: #25daa5; }


  #flat-slider-vertical-1 .ui-slider-handle,
  #flat-slider-vertical-1 .ui-slider-range,
  #flat-slider-vertical-1 .ui-slider-pip[class*=ui-slider-pip-selected] .ui-slider-line,
  #flat-slider-vertical-1 .ui-slider-pip.ui-slider-pip-inrange .ui-slider-line {
    background-color: #f27793; }


  #flat-slider-vertical-2 .ui-slider-handle,
  #flat-slider-vertical-2 .ui-slider-range,
  #flat-slider-vertical-2 .ui-slider-pip[class*=ui-slider-pip-selected] .ui-slider-line,
  #flat-slider-vertical-2 .ui-slider-pip.ui-slider-pip-inrange .ui-slider-line {
    background-color: #bd77f2; }


  #flat-slider-vertical-3 .ui-slider-handle,
  #flat-slider-vertical-3 .ui-slider-range,
  #flat-slider-vertical-3 .ui-slider-pip[class*=ui-slider-pip-selected] .ui-slider-line,
  #flat-slider-vertical-3 .ui-slider-pip.ui-slider-pip-inrange .ui-slider-line {
    background-color: #67c3ec; }

.dropdown-toggle {
    -webkit-appearance: none !important;
    appearance: none !important;
}
@media print {

  .sidebar{
    display: none;
  }
  .header{
    display: none;
  }
  .no-print {
    visibility: hidden;
 }
 table {
  border: solid #000 !important;
  border-width: 1px 0 0 1px !important;
}
th, td {
  border: solid #000 !important;
  border-width: 0 1px 1px 0 !important;
  font-size: 10px;
 
}

}


