#sidebar {
  width: 250px;
  height: fit-content;
  background: #fff;
}
  .sidebar__banner {
    width: 100%;
  }
  .sidebar__head {
    width: 100%;
    padding: 10px;
    background-color: var(--theme-bg-color);
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
  }
  .sidebar__list {
    width: 100%;
    background-color: #fff;
    padding: 10px;
    font-size: 14px;
    color: #333333;
    line-height: 24px;
  }
    .sidebar__item {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 64px;
      color: #333333;
      border-bottom: 1px solid #ddd;
    }
      .sidebar__item:last-of-type {
        border-bottom: none;
      }
      .sidebar__item:hover {
        color: #d83e28;
      }

    .sidebar__logo_btn a {
      display: block;
      border-bottom: 1px solid #ddd;
      padding: 7px 0;
      text-align: center;
    }
      .sidebar__logo_btn a img {
        height: 35px;
        max-width: 100%;
      }

@media screen and (max-width: 1000px) {
  #sidebar {
    display: none;
  }
}

