.wrapper {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    .table {
      display: flex;
      flex-direction: column;
      .headers {
        display: flex;
      }
    }
    .table-data {
      display: flex;
      font-size: 14px;
      .data-item {
        flex-basis: 100%;
        padding: .5rem 0 .5rem 0;
        .status-block {
          display: flex;
          margin-left: 35%;
        }
      }
    }
  }
  .header {
    text-align: center;
    flex-basis: 100%;
    background-color: #F3F2F3;
    border-bottom: 2px solid #EAEAEA;
    font-weight: 700;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    padding: .5rem;
    &.left {
      border-top-left-radius: 3px;
    }
    &.right {
      border-top-right-radius: 3px;
    }
  }