/*
  Custom Component Container  & its child styling
 */
div.multi-input-conatiner {
  display: block;
  padding: 0 5px 0 5px;
  width: auto;

  .multi-input-box {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-content: space-between;
    width: auto;
  }

  .row-input {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: space-between;
    width: 100%;
    rss-text-area {
      flex: 1 1 auto;
      align-self: center;
      padding: 5px;
      font-family: Roboto, "Helvetica Neue", sans-serif;
    }
  }

  .action {
    flex: 0 0 auto;
    align-self: baseline;

    button {
      min-width: 0;
    }
  }

}

/*
  Table Container  & its child styling
 */
div.table-container {
  display: block;
  width: 100%;
  padding: 0 5px 0 5px;

  .table-row {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-content: space-around;
    width: auto;
    font-family: Roboto, "Helvetica Neue", sans-serif;
  }

  .table-stripped:nth-of-type(n+2) {
    @media (min-width: 992px) {
      .label {
        display: none;
      }
    }
  }

  .table-stripped:nth-of-type(2n+1) {
    // background-color: rgba(199, 199, 199, 0.05);
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: rgba(0,0,0,0.25);
  }

  .table-stripped:nth-of-type(2n) {
    // background-color: rgba(222, 222, 222, 0.25);
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: rgba(0,0,0,0.25);
  }

  .table-data{
    flex: 1 0 0;
    align-self: flex-end;
    .row-content {
      display: flex;
      flex-flow: row wrap;

      .content {
        @media (min-width: 992px) {
          flex: 1 0 auto;
          max-width: 25%;
        }
        flex: 1 0 100%;
        align-self: baseline;
        .label {
          padding: 5px 0 0 0;
          word-break: break-word;
          color: #b0b0b0;
        }
        .value {
          padding: 5px 5px 5px 0;
          word-break: break-word;
        }

      }

    }

  }

  .action {
    flex: 0 0 auto;
    align-self: flex-end;

    button {
      margin-right: 5px;
      padding: 0 5px;
      min-width: 0;
    }
  }

}
