.loader-line:before {
  content: "";
  position: fixed;
  top: 0; /* Posisikan loader di bagian atas card */
  left: 0;
  height: 3px;
  width: 100%;
  background-color: rgb(4, 244, 248);
  -webkit-animation: lineAnim 1s linear infinite;
  -moz-animation: lineAnim 1s linear infinite;
  animation: lineAnim 1s linear infinite;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  z-index: 9999;
}

@media (min-width: 768px) {
  .sidebar-heading {
    color: #fff !important; /*#1cc88a  #ffbf00 !important;*/
    /* font-size: 14px !important; */
  }
  .sidebar .nav-item .nav-link {
    padding: 0.5rem !important;
  }
}
.sidebar .nav-item .nav-link {
}
@keyframes lineAnim {
  0% {
    left: -95%;
  }
  50% {
    left: 20%;
    width: 80%;
  }
  100% {
    left: 100%;
    width: 100%;
  }
}
