/* .sidebar {
  position: absolute;
  width: 229px;
  height: calc(100vh - 174px);
  box-shadow: inset -1px 0px 0px rgba(3, 3, 25, 0.1);
  border-radius: 32px;
  margin: 48px;
  padding: 54px 24px 0 0;

  @include media-breakpoint-down(md) {
    position: inherit;
    width: 100%;
    height: 88px;
    top: 78px;
    border-radius: 0;
    margin: 0;
    padding: 0;

    ul {
      text-align: center;
      box-shadow: inset 0px -1px 0px rgba(3, 3, 25, 0.1);
      padding: 15px 60px;

      @include media-breakpoint-down(sm) {
        padding: 15px;
      }

      li {
        border-right: 1px solid #d2d3d9;
        display: inline-block;
      }

      :last-child {
        border-right: none;
      }
    }
  }

  .sideItem {
    padding: 16px;
    text-align: center;
    display: block;

    @include media-breakpoint-down(md) {
      display: flex;
      align-items: center;
    }

    svg > path {
      fill-opacity: 0.6;
    }

    &:hover,
    &.active {
      background: linear-gradient(
        270deg,
        rgba(26, 106, 244, 0.18) 0%,
        rgba(26, 106, 244, 0) 92.23%
      );
      border-radius: 0px 100px 100px 0px;

      @include media-breakpoint-down(md) {
        background: none;
        border-radius: 0;
      }

      svg > path {
        fill: $primary;
        fill-opacity: 1;
      }

      .link {
        color: $primary;
      }
    }

    .link {
      margin-left: 26px;
      color: rgba(3, 3, 25, 0.6);
      font-size: 16px;
      line-height: 160%;

      @include media-breakpoint-down(md) {
        margin-left: 8px;
      }
    }
  }
} */
.sidebar {
  position: absolute;
  width: 229px;
  height: calc(100vh - 174px);
  box-shadow: inset -1px 0px 0px rgba(3, 3, 25, 0.1);
  border-radius: 32px;
  margin: 48px;
  padding: 54px 24px 0 0;
}
.sidebar .sideItem {
  padding: 16px;
  text-align: center;
  display: block;
}
.sidebar .sideItem svg > path {
  fill-opacity: 0.6;
}
.sidebar .sideItem:hover, .sidebar .sideItem.active {
  background: linear-gradient(270deg, rgba(26, 106, 244, 0.18) 0%, rgba(26, 106, 244, 0) 92.23%);
  border-radius: 0px 100px 100px 0px;
}
.sidebar .sideItem:hover svg > path, .sidebar .sideItem.active svg > path {
  fill: blue;
  fill-opacity: 1;
}
.sidebar .sideItem:hover .link, .sidebar .sideItem.active .link {
  color: blue;
}
.sidebar .sideItem .link {
  margin-left: 26px;
  color: rgba(3, 3, 25, 0.6);
  font-size: 16px;
  line-height: 160%;
}
@media (max-width: 991px) {
  .sidebar{
    position: inherit;
    width: 100%;
    height: 88px;
    top: 78px;
    border-radius: 0;
    margin: 0;
    padding: 0;
  }
  .sidebar ul {
    text-align: center;
    box-shadow: inset 0px -1px 0px rgba(3, 3, 25, 0.1);
    padding: 15px 60px;
  }

  .sidebar ul li{
      border-right: 1px solid #d2d3d9;
      display: inline-block;

  }
  .sidebar ul li:first-child a{
      margin-right: 20px;
  }
  .sidebar ul li:last-child{
      border-right: none;
  }
}
@media (max-width: 767px) {
  .sidebar ul {
    padding: 15px;
  }

}