.projects-list-wrapper {
  width: 100vw;
}

.projects-wrapper {
  overflow-y: scroll;
  width: 100%;
  max-height: calc(100% - 96px);
  padding: 0 6px;
}

.projects-table-wrapper {
  width: 100%;
  max-height: calc(100% - 96px);
}

.line-project {
  width: none;
}

.items-wrapper {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-end;
  justify-content: space-between;

  box-sizing: border-box;
}

.create-project-button {
  height: 36px;
  margin: 6px;
  color: #fff;
  background-color: #639efd;
}

.table-header {
  min-height: 30px;
  font-weight: 600;
  color: #939393;
  border-bottom: 1px solid #c5c5c5;
}

.projects-list {
  &:last-child {
    border-bottom: 1px solid #c5c5c5;
  }

  &:hover {
    background-color: #fbfbfb;
  }
}

.more-menu-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  height: 100%;
  margin: 10px;

  .more-menu-item {
    cursor: pointer;
    padding: 5px 0;
    font-size: 14px;

    &:hover {
      background-color: #fbfbfb;
    }
  }
}

.more-icon {
  cursor: pointer;
}

.last-item {
  justify-content: flex-end;
  margin-right: 25px;
}

.projects-list-item {
  display: flex;
  flex-flow: row nowrap;

  box-sizing: border-box;
  width: 100%;
  padding: 6px 0;

  .projects-list-item-favorite {
    margin: -7px -7px -9px 0;
  }

  .projects-list-item-others {
    align-items: center;
    justify-content: center;
  }

  .projects-list-item-link {
    flex-flow: column;
    flex-grow: 2;

    .projects-list-item-link-title {
      display: block;
      margin: 0 0 3px;
      font-size: 14pt;
      color: #1c1c1c;

      .chip {
        padding: 3px 6px;

        font-size: 10pt;
        font-weight: 800;
        color: white;

        background-color: #808080;
        border-radius: 5px;
      }
    }

    .projects-list-item-link-subtitle {
      display: flex;
      flex-flow: row nowrap;
      font-size: 10pt;
      color: #808080;

      .projects-list-item-link-subtitle-avatar {
        margin-right: 6px;
      }
    }

    &:any-link {
      text-decoration: none;
    }
  }
}
