.dashboard_aside_container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dashboard_aside_container_top {
  height: 7rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard_aside_container_top > img {
  width: 70%;
  cursor: pointer;
}

.dashboard_aside_container_middle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: auto;
}

.dashboard_aside_middle_wrapper {
  width: 80%;
}

.dashboard_aside_link_wrapper {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.dashboard_aside_link_wrapper_active {
  background-color: #ffffff;
  margin: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.dashboard_aside_link_wrapper:hover {
  background-color: #ffffff;
}

.dashboard_aside_link_Icon {
  flex: 3;
  display: flex;
  align-items: center;
}

.dashboard_aside_link_Icon > i {
  font-size: 2rem;
  margin-left: 1rem;
  font-weight: 500;
  color: #ffffff;
}

.dashboard_aside_link_wrapper:hover .dashboard_aside_link_Icon > i {
  color: #2b4b1b;
  margin-left: 1.5rem;
}

.dashboard_aside_link_wrapper_active .dashboard_aside_link_Icon > i {
  color: #2b4b1b;
  margin-left: 1.5rem;
}

.dashboard_aside_link_text {
  flex: 9;
}
.dashboard_aside_link_text > p,
.dashboard_aside_bottom_link_text > p {
  font-size: 1.4rem;
  font-weight: 500;
  color: #ffffff;
}

.dashboard_aside_link_wrapper_active .dashboard_aside_link_text > p {
  font-size: 1.4rem;
  font-weight: 500;
  color: #2b4b1b;
}

.dashboard_aside_link_wrapper:hover .dashboard_aside_link_text > p {
  color: #2b4b1b;
  font-weight: 600;
}

.dashboard_aside_container_bottom {
  height: 20rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.dashboard_aside_container_bottom a {
  text-decoration: none !important;
}

.dashboard_aside_container_bottom section {
  height: 50%;
  width: 60%;
  border-top: 1px solid #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.dashboard_aside_bottom_link_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* MOBILE SIDE MENU */
.dashboard_mobile_aside_container {
  display: none;
}

.dashboard_close_mobile_aside_container {
  display: none;
}

/* Mobile */
@media (max-width: 700px) {
  /* MOBILE SIDE MENU */
  .dashboard_mobile_aside_container {
    z-index: 7;
    position: fixed;
    top: 7rem;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.4);
    transition: all 300ms ease-in;

    /* position: absolute;
    top: 7rem;
    bottom: 0;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.4);
    transition: width 500ms ease, opacity 500ms ease; */
  }

  .dashboard_close_mobile_aside_container {
    left: -100vw !important;
    transition: all 300ms ease-in;

    /* width: 0;
    opacity: 0;
    transition: width 300ms ease, opacity 300ms ease; */
  }

  .mobile_aside_left_container {
    width: 70%;
    background-color: #2b4b1b;
    opacity: 1;
    transition: opacity 500ms ease;
    display: flex;
    flex-direction: column;
  }

  .dashboard_mobile_aside_container_middle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: auto;
  }

  .dashboard_mobile_aside_middle_wrapper {
    width: 80%;
  }

  .dashboard_mobile_aside_link_wrapper {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 300ms ease-in-out;
  }

  .dashboard_mobile_aside_link_wrapper_active {
    background-color: #ffffff;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 300ms ease-in-out;
  }

  .dashboard_mobile_aside_link_wrapper:hover {
    background-color: #ffffff;
  }

  .dashboard_mobile_aside_link_Icon {
    flex: 3;
    display: flex;
    align-items: center;
  }

  .dashboard_mobile_aside_link_Icon > i {
    font-size: 2rem;
    margin-left: 1rem;
    font-weight: 500;
    color: #ffffff;
  }

  .dashboard_mobile_aside_link_wrapper:hover
    .dashboard_mobile_aside_link_Icon
    > i {
    color: #2b4b1b;
    margin-left: 1.5rem;
  }

  .dashboard_mobile_aside_link_wrapper_active
    .dashboard_mobile_aside_link_Icon
    > i {
    color: #2b4b1b;
    margin-left: 1.5rem;
  }

  .dashboard_mobile_aside_link_text {
    flex: 9;
  }
  .dashboard_mobile_aside_link_text > p,
  .dashboard_mobile_aside_bottom_link_text > p {
    font-size: 1.4rem;
    font-weight: 500;
    color: #ffffff;
  }

  .dashboard_mobile_aside_link_wrapper_active
    .dashboard_mobile_aside_link_text
    > p {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2b4b1b;
  }

  .dashboard_mobile_aside_link_wrapper:hover
    .dashboard_mobile_aside_link_text
    > p {
    color: #2b4b1b;
    font-weight: 600;
  }

  .dashboard_mobile_aside_container_bottom {
    height: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
  }

  .dashboard_mobile_aside_container_bottom section {
    height: 60%;
    width: 80%;
    border-top: 1px solid #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
  }

  .dashboard_mobile_aside_bottom_link_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  /* Right side of menu */
  .mobile_aside_right_container {
    width: 30%;
    opacity: 1;
    transition: opacity 500ms ease;
  }

  .dashboard_close_mobile_aside_container .mobile_aside_left_container,
  .dashboard_close_mobile_aside_container .mobile_aside_right_container {
    opacity: 0;
  }

  .mobile_aside_right_container div {
    height: 8rem;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .mobile_aside_right_container div i {
    color: #ffffff;
    font-weight: 500;
    font-size: 5rem;
  }

  /* Ensuring child elements transition */
  .dashboard_aside_middle_wrapper,
  .dashboard_mobile_aside_container_bottom,
  .dashboard_mobile_aside_link_wrapper,
  .dashboard_mobile_aside_bottom_link_wrapper {
    transition: opacity 500ms ease;
  }

  /* END MOBILE SIDE MENU */
}

/* Tablet and Smaller Desktop */
@media (min-width: 701px) and (max-width: 1120px) {
}
