#sidebar.activetoggle {
  left: 0;
  z-index: 10;
}
#over.activeover {
  display: block;
}
#sidebar {
  width: 280px;
  height: 100%;
  top: 0;
  left: -280px;
  transition: all 400ms linear;
  z-index: 10;
  position: fixed;
}
#over {
  display: none;
  /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: none; /* Enable scroll if needed */
  overflow-y: none;
  margin: 0;
  padding: 0;
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
  animation: fadeIn 500ms;
  background-color: none;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 575.98px) {
  /* ...; */
  .name-profile {
    display: none;
  }
}
