#offcanvasMenuDashboard {
  .logo-header {
    width: 100%;

    max-width: 140px;

    @media (width>768px) {
      max-width: 220px;
    }
  }
  .menu-offcanvas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: 1rem !important;
    li {
      list-style: none;
      a {
        display: grid;
        grid-template-columns: 24px 1fr;
        gap: 16px;
        align-items: center;
        font-size: var(--fs-content-small);
        font-family: var(--font-family-inter);
        color: #a3a3a3;
        transition: 0.4s;
        svg path {
          transition: 0.4s;
        }
        &:hover {
          color: var(--color-secondary-dark);
          svg path[stroke="#A3A3A3"],
          svg path[stroke="#B2ABAB"] {
            stroke: #74c7b8;
          }
          svg path[fill="#A3A3A3"],
          svg path[fill="#B2ABAB"] {
            fill: #74c7b8;
          }
        }
      }
    }

    li.menu-item-active {
      position: relative;
      a {
        font-weight: 500;
        color: var(--color-secondary-dark);
        svg path[stroke="#A3A3A3"],
        svg path[stroke="#B2ABAB"] {
          stroke: #74c7b8 !important;
        }
        svg path[fill="#A3A3A3"],
        svg path[fill="#B2ABAB"] {
          fill: #74c7b8 !important;
        }
      }
      &::before {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: -17px;
        height: 4px;
        width: 4px;
        background: #74c7b8;
        border-radius: 100%;
      }
      &::after {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: -21px;
        height: 12px;
        width: 12px;
        opacity: 0.5;
        border-radius: 100%;
        border: 2px solid #74c7b8;
        filter: blur(1.1428570747375488px);
      }
    }
  }
}
