.flow-editor--node-panel-list {
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #e8e9ec;
  border-top: 1px solid #e8e9ec;
  background-color: #fff;
  height: 100%;

  .node-panel--content {
    padding: 16px 0;
    flex-grow: 1;
    overflow-y: auto;

    .node-panel--content-flex{
      width: 100%;
      display: flex;
      flex-wrap: wrap;

      >div {
        width: 50%;
        flex-shrink: 0;
      }
    }
    .node-source-group {
      margin-bottom: 20px;
      border-bottom: 1px solid #E5E5E5;

      &:last-child{
        border-bottom: none;
      }
      .node-source-group--title {
        font-weight: bold;
        height: 18px;
        line-height: 18px;
        font-size: 14px;
        padding: 0 10px;
      }

      .node-source-group--content {
        width: 100%;
        display: flex;
        flex-wrap: wrap;

        >div {
          width: 50%;
          flex-shrink: 0;
        }
      }
    }

    .node-source-wrapper {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 12px 5px;
      border-bottom: 1px solid #e8e9ec;

      &:last-child {
        border-bottom: none;
      }

      font-size: 12px;

      .node-source {
        padding: 5px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 80px;
        height: 64px;
        cursor: move;

        &:hover {
          background-color: #E5EFF9;
          border-radius: 4px;
        }
      }
    }
  }
}
