.sidebar-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  transition: 0.3s ease-in-out;
  max-width: 300px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 98;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
}

.sidebar-content {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 0;
  overflow-y: auto;
  overflow-x: hidden;
  border-top: 1px solid rgba(112, 112, 112, 0.2);
}

.siderbar-header-container {
  width: 100%;
  display: flex;
  align-items: center;
}

.toggle-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background-color: #ce915c;
  cursor: pointer;
  border: none;
}

.sidebar-menu-option {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 30px;

  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
  color: #999999;
  background: none;

  text-decoration: none;
  font-family: Roboto;
  font-size: 16px;

  cursor: pointer;
  transition: 0.2s ease-in;
}

.sidebar-sub-menu-option {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-sub-menu-option {
  font-weight: 700;
}

.sidebar-menu-option span {
  margin-left: 16px;
}

.sidebar-menu-option svg {
  min-width: 20px;
  min-height: 20px;
}

.option-active {
  background-color: #55835b;
  color: #ffffff;
}

.option-active svg path {
  fill: #fff !important;
}

.submenu-option-active {
  background-color: #55835b;
  color: #ffffff;
}

.submenu-option-active svg path {
  fill: #fff !important;
}

.sidebar-submenu,
.sidebar-secondary-submenu {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: 0.4s ease-in-out;
  min-width: 200px;
}

.sidebar-submenu {
  padding: 0px 40px;
  border-bottom: 1px solid transparent;
}

.sidebar-submenu a {
  font-family: Roboto;
  text-decoration: none;
  color: #a9a9a9;
  margin: 5px 0;
  font-size: 15px;
}

.submenu-arrow-indicator {
  display: flex;
  margin-left: auto;
}

.sidebar-menu-option .submenu-arrow-indicator {
  transform: scale(0.7);
}

.whatsapp-button {
  margin-top: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 12px;
}

.whatsapp-button svg {
  min-width: 30px;
}

.whatsapp-button p {
  font-family: Roboto;
  font-size: 16px;
  text-decoration: none;
  margin-left: 10px;
  color: rgba(0, 0, 0, 0.9);
  min-width: 130px;
}

.whatsapp-button span {
  color: rgba(0, 0, 0, 0.3);
}
