.left-sidebar {
  height: 100%;
  display: grid;
  grid-template-rows: 85px repeat(25, 35px);
  width: 0;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  background: white;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 8px;
}

.sidebar-menu {
  color: rgb(17, 82, 57);
  font-weight: bold;
  font-size: 14px;
  font-family: Verdana;
  text-decoration: none;
  text-align: left;
  padding-left: 40px;
}

.sidebar-logo {
  max-width: 89px;
  height: 74px;
  margin-left: 20px;
  margin-right: 10px;
}

.icon-delimiter {
  width: 30px;
  border-bottom: 3px solid rgb(17, 82, 57);
}

.mobile-button {
  height: 15px;
  cursor: pointer;
  display: grid;
  gap: 5px;
  margin: 17px;
}
@media (min-width: 750px) {
  .mobile-button {
    display: none;
  }
}

/*# sourceMappingURL=sidebar.css.map */