*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.user-img{
  width: 50px;
  border-radius: 100%;
  border: 1px solid #eee;
}

.sidebar_meas{
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh; 
  width: 80px;
  /* display: inline-block;  */
  /* overflow: auto;  */
  background-color: #12171e;
  padding: .4rem .8rem;
  transition: all 0.5s ease;
  z-index: 19;
}

/*
.sidebar_meas{
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 80px;
  z-index: 9997;
  background-color: #12171e;
   transition: all ease-in-out 0.5s;
  
  transition: all 0.5s;
  padding: 0 15px;
  overflow-y: auto; 
}*/




.sidebar_meas.active ~ .main-content-meas{
  left: 250px;
  width: calc(100% - 250px);
}

.main-content-meas.active{
  left: 0px;
  width: 100%;
}


.sidebar_meas.active{
  width: 250px;
}

.sidebar_meas #btn {
  position: absolute;
  color: #fff;
  top: .4rem;
  left: 50%;
  font-size: 1.2rem;
  line-height: 50px;
  transform: translateX(-50%);
  cursor: pointer;
  transition: all .5s ease;
}

/* to put menu btn at the left*/
.sidebar_meas.active #btn{
  left: 90%;
}

.sidebar_meas .top .logo{
  color: #fff;
  display: flex;
  height: 50px;
  width: 100px;
  align-items: center;
  pointer-events: none;
  opacity: 0;
}

/* to see logo when t is active*/
.sidebar_meas.active .top .logo{
  opacity: 1;
}

.top .logo i{
  font-size: 2rem;
  margin-right: 5px;
}

.user{
  display: flex;
  align-items: center;
  margin: 1rem 0;
}

.user p {
  color: #fff;
  opacity: 1;
  margin-left: 1rem;
}

.bold{
  font-weight: 600;
}

.sidebar_meas p{
  opacity: 0;
}

.sidebar_meas.active p{
  opacity: 1;
}

.sidebar_meas ul li {
  position: relative;
  list-style-type: none;
  height: 50px;
  width: 90%;
  margin: 0.8rem auto;
  line-height: 50px;
}

.sidebar_meas ul li a{
  color: #fff;
  display: flex;
  align-items: center;
  text-decoration: none;
  border-radius: 0.8rem;
  transition: all 1.5s ease;
}


.sidebar_meas ul li a:hover{
  background-color: rgb(103, 127, 193);
  color: #12171e;
}

/* exxtra */
.sidebar_meas li a::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  background-color: #1e1e4b; /*rgb(103, 127, 193);*/
  border-radius: 5px;
  transition: transform 0.7s ease-in-out;
  transform-origin: left;
  z-index: -2;
}

.sidebar_meas li a:hover::after{
  transform: scaleX(1);
  color:green
}

/* end exxtra */


.sidebar_meas ul li a i{
  min-width: 50px;
  text-align: center;
  height: 50px;
  border-radius: 12px;
  line-height: 50px;
  transition: all 0.5s ease;
}


.sidebar_meas .nav-item-meas{
  color:#fff;
  font-weight: 400;
  white-space: nowrap;
  pointer-events: auto;
  transition: all 0.4s ease;
  pointer-events: none;
  /* color:var(--color-white);
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  pointer-events: auto;
  transition: all 0.4s ease;
  pointer-events: none; */
  
  opacity: 0;
  
}

.sidebar_meas.active .nav-item-meas{
  opacity: 1;
}



.sidebar_meas ul li .tooltip{
  position: absolute;
  left: 125px;
  top: 10px;
  transform: translate(-50%, -50%);
  box-shadow: 0 0.5rem 0.8rem rgba(242, 247, 248, 0.8);
  border-radius: .6rem;
  padding: .4rem 1.2rem;
  line-height: 1.8rem;
  z-index: 20;
  opacity: 0;
}

.sidebar_meas ul li:hover .tooltip{
  opacity: 1;
  background-color: rgb(241, 243, 248);
  transition: all 0.5s ease;
}

.sidebar_meas.active ul li .tooltip{
  display: none;
}

.main-content-meas{
  position: relative;
  /*background-color: #eee;*/
  min-height: 100vh;
  top: 0;
  left: 80px;
  transition: all 0.5s ease;
  width: calc(100% - 80px);
  padding: 1rem;
  height: 100vh; 
  /* display: inline-block; 
  overflow: auto; */
} 


.container-meas{
  display: flex;
  justify-content: space-between;
}



/* jQ TOGGLE UTIL
====================*/
/* .show-sidebar {
  margin-left: 0;
  position: relative;
  background-color: #eee;
  min-height: 100vh;
  top: 0;
  left: 0;
  transition: all 0.5s ease;
  width: 100%;
  padding: 0;
  height: 100vh; 
} */



.menu-meas-hide{
  margin-top: 0;
  margin-right: 0;
  margin-left: 10px;
  transition: all 0.5s ease;
  transform: translate(0%, 100%);
}