.workflow-bullets {
    margin-top: 1rem;
}

.wrapper {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    .table {
      display: flex;
      flex-direction: column;
      .headers {
        display: flex;
      }
    }
    .table-data {
      display: flex;
      font-size: 12px;
      border-bottom: 1px solid #dde2e6;
      .data-item {
        flex-basis: 100%;
        padding: .5rem 0 .5rem 1rem;
        .status-block {
          display: flex;
          margin-left: 35%;
        }
      }
    }
  }
  .header {
    text-align: center;
    flex-basis: 100%;
    background-color: #F3F2F3;
    font-size: .875rem;
    font-weight: 550;
    padding: .5rem;
    border: 1px solid gainsboro;
    &.left {
      border-top-left-radius: 3px;
    }
    &.right {
      border-top-right-radius: 3px;
    }
  }