.menu {
  left: 0;
  bottom: 0;
  width: 50%;
  height: 100vh;
  min-height: 100vh;
  text-align: right;
  z-index: 1020;
  display: none;
  overflow: auto;
  user-select: none;
  position: fixed;
  background-color: white !important;
  box-shadow: 2px 2px 4px rgb(0, 0, 0, 0.10);
}

.side-menu-expanded {
  width: 200px;
}

.container-fluid-adjust-width-for-menu {
  width: calc(100% - 280px) !important;
}

.side-menu-collapsed {
  width: 60px;
  min-width: 60px;
}

.menu-backdrop {
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  z-index: 1000;
  display: none;
  position: fixed;
  background-color: rgb(0, 0, 0, 0.20);
}

.close-menu {
  margin: 10px;
  cursor: pointer;
  font-size: large;
}

.menu-item:hover {
  background-color: rgb(0, 0, 0, 0.05);
}

.menu-item:active {
  background-color: rgb(0, 0, 0, 0.10);
}

.menu-item {
  text-align: left;
  list-style: none;
  cursor: pointer;
  padding: 10px 30px;
  text-transform: capitalize;
  font-size: 12px;
}

.menu-heading {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 40px;
  align-content: center;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .menu {
    width: calc(100% - 60px);
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .menu {
    width: 50%;
  }
}