.funding-sources-wrapper {
  display: flex;
  flex-direction: column;
  .headers {
    display: flex;
    align-items: flex-end;
    .header {
      flex-basis: 50%;
      background-color: #F3F2F3;
      text-align: center;
      font-size: .875rem;
      font-weight: 550;
      padding: .5rem;
      height: 40px;
      border-right: 1px solid gainsboro;
      &.left {
        border-top-left-radius: 3px;
        padding-left: 1rem;
        flex-basis: 50%;
      }
      &.right {
        border-top-right-radius: 3px;
        border-right: none;
      }
    }
  }
  .item-row {
    display: flex;
    margin-top: 1rem;
    .funding-source {
      margin: 0.25rem 0.5rem 0 0.5rem;
      flex-basis: 50%;
      align-items: left;
    }
    .select-box {
      margin: 0.25rem 0.5rem 0 0.5rem;
      flex-basis: 50%
    }
  }
}