#site-menu-sidebar {
  width: 100%;
  max-width: 92%;


  .sidebar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    .sidebar__close {
      margin: 0;
      margin-inline-start: 0;
      margin-inline-end: 0;
      width: auto;
      height: auto;
      text-align: center;


      .sidebar__close-icon {
        display: block;
        width: auto;
        height: auto;
      }

      .sidebar__close-text {
        font-size: 11px;
        font-weight: 500;
        font-family: var(--font-stack-body);
      }
    }
  }

  .sidebar__body {

    .header-actions:empty {
      padding: 0;
      border: 0;
    }

    .link-list {
      letter-spacing: normal;
      list-style: none;

      li::marker {
        display: none;
      }
    }

    .menu-link {
      padding: 20px 22px;



      &:not(.button) {
        border-bottom: 1px solid #DFDFDF;
      }

      span {
        font-size: 17px;
        font-weight: 400;
        color: #000;
      }

      .icon {
        svg {
          width: 13px;
          height: 13px;
          display: block;
          margin: 0;
        }

        path {
          fill: #797979;
        }
      }
    }

  }
}