.sidebar {
  width: 56px;
  background: #f4f0ea;
  border-left: 1px solid #d6d6d6;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  gap: 18px;
}

.circle-btn {
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: #ff9f0a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.circle-btn i {
  font-size: 22px;
}

/* Slide Menu */

.side-menu {
  position: fixed;
  top: -10;
  left: -250px;
  width: 250px;
  height: 100vh;
  background: #4a4747e8;
  z-index: 99999;
  transition: 0.35s ease;
  padding: 0;
}

.side-menu.active {
  left: 0;
}

.menu-hamburger {
  color: #f5a623;
  font-size: 24px;
  font-weight: bold;
  position: relative;
  top: 10px;
  left: 18px;
  cursor: pointer;
}

.side-menu ul {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.side-menu > ul > li {
  padding: 0 20px;
  position: relative;
  top: 10px;
}

.menu-title {
    position: relative;

  height: 48px;
  top: 3px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;

}

.menu-text {
  color: #fff;
  font-size: 16px;
}

.arrow {
  color: #f5a623;
  font-size: 12px;
  transition: 0.3s;
}

.menu-item.active .arrow {
  transform: rotate(90deg);
}

.menu-item.active .menu-text {
  color: #f5a623;
}

.submenu {
  display: none;
  margin-left: -30px;
  width: calc(100% + 20px);
  position: relative;
  top: -7px;
  left: -10px;
}

.menu-item.active .submenu {
  display: block;
}

.submenu li {
  height: 40px;
  line-height: 40px;
  padding-left: 42px;
  background: #3f3834;
  color: #fff;
  font-size: 15px;
}

.submenu li:hover {
  background: rgba(255, 255, 255, 0.75);
}

.submenu li a {
  color: #fff;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
}

.overlay {
  position: fixed;
  inset: 0;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
  z-index: 99998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}
