.sidebar-main {
  width: 105px;
  background-color: #296d98;
  height: 100vh;
  margin-top: 55px;
  position: fixed;
  left: 0;
  top: 0;
  overflow: auto;
  z-index: 99;
}

.wrapper-sidebar-data {
  text-align: center;
  padding: 40px 0px 20px;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.wrapper-metric {
  cursor: pointer;
  position: relative;
}
.wrapper-metric h5 {
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
  padding-top: 10px;
}
.wrapper-metric:after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  background-color: #ffffff;
  height: 0;
  transition: all 0.3s linear;
}
.wrapper-metric.active:after,
.wrapper-metric:hover:after {
  height: 55px;
}
/* scrollbar css */
/* width */
.sidebar-main::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

/* Track */
.sidebar-main::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.sidebar-main::-webkit-scrollbar-thumb {
  background: #bec7c7;
}
