.settings-page-wrapper {
  display: flex;

  .settings-menu {
    background-color: white;
    margin-right: 20px;
    padding: 15px;
    border-radius: 10px;
    width: 30%;
    height: 100%;
    position: sticky;
    top: 40px;

    ul li {
      color: #4a5578;
      display: flex;
      align-items: center;
      margin-bottom: 10px;
      padding: 10px;
      border-radius: 7px;
      cursor: pointer;
      border-left: 3px solid transparent;
      font-weight: 500;

      &.active {
        background-color: #f2effe;
        color: #7a5af8;
        border-left-color: #7a5af8;

        > span > svg {
          fill: #7a5af8;
          stroke: #7a5af8;
        }
      }

      > span {
        margin-right: 5px;
        display: flex;
        align-items: center;
        font-size: 14px;

        > img {
          width: 18px;
        }
        > svg {
          font-size: 18px;
          width: 16px;
          color: #4a5578;
        }
      }
    }
  }
  .license_page_wrap,
  .settings-content-wrap {
    width: 100%;
  }
}
