.container-side-bar {
  width: 260px;
  transition: 0.4s;
  @media (width<768px) {
    display: none;
  }
}
.side-bar {
  @media (width<768px) {
    display: none;
  }
  border-radius: 24px;
  background: #fff;
  height: calc(100vh - 3rem);
  position: fixed;
  width: 260px;
  padding: 10px 1.5rem 1rem 2rem;
  transition: 0.4s;
  overflow: hidden;
  p {
    white-space: nowrap;
    overflow: hidden;
  }
  .logo {
    display: grid;
    grid-template-columns: 1fr 30px;
    align-items: center;
    gap: 3rem;
    height: 70px;
    width: 100%;
    img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    button {
      transition: 0.4s;
      background: transparent;
      width: 30px;
      border-radius: 100%;
      aspect-ratio: 1;
      font-size: 15px;
      background: transparent;
      color: #a3a3a3;
      border: 1px solid #a3a3a3;
      transition: 0.4s;
      &:hover {
        color: var(--color-secondary-dark);
        border-color: var(--color-secondary-dark);
      }
    }
  }
  .color-main {
    color: #737373;
  }
  .menu-side-bar {
    display: flex;
    flex-direction: column;
    gap: 1rem;

    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);
      }
    }
  }
}
.container-dashboard {
  transition: 0.4s;
}
.container-body {
  @media (width<768px) {
    width: 100%;
  }
}
.side-bar-close {
  .container-side-bar {
    width: 56px;
  }
  .container-body {
    width: calc(100% - 56px - 1.5rem);
    @media (width<768px) {
      width: 100%;
    }
  }
  .side-bar {
    width: 56px;
    padding-inline: 1rem;
    .logo {
      grid-template-columns: auto;
      justify-content: end;
      img {
        display: none;
      }
      .btn-side-bar {
        transform: rotate(180deg);
      }
    }
    p {
      opacity: 0;
    }
    .other-menu {
      border-top: 1px solid #a3a3a3;
    }
    .menu-side-bar {
      li::before,
      li::after {
        display: none !important;
      }
      span {
        display: none;
      }
    }
  }
}
