.table--striped {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-radius: 0px;
  font-size: 13px;
  overflow: hidden;

  @include media-lg {
    font-size: 16px;
  }

  // tr {
  //   & + tr {
  //     transform: translateY(-10px);
  //   }
  // }

  th,
  td {
    text-align: left;
    font-weight: 400;
  }

  td {
    padding: 15px * 0.7;

    &:first-child {
      border-radius: 15px * 0.3 15px * 0.3 0 0;
    }

    &:last-child {
      border-radius: 0 0 15px * 0.3 15px * 0.3;
    }
  }

  tbody {
    tr {
      border-radius: 15px * 0.3;
    }

    tr:nth-of-type(odd) {
      // background: fade-out($color-primary, 0.95);
    }
  }
}

.tree .tree__level .tree__level .table--striped tbody tr:last-child td {
  border-bottom: none;
}

.tree__body .table--striped {
  margin-top: 0;
}

.tree__body .tree__level td {
  padding: 0;
}

.tree__body .tree__level tbody tr + tr td {
  // border-top: 10px solid fade-out($black, 0.95);
}

.tree__level .tree__level .table--striped tr:nth-of-type(odd) {
  background: none;
}

.tree__level .tree__level .table--striped tbody tr:nth-of-type(odd) tbody {
  th,
  td {
    // border-bottom: 10px solid fade-out($black, 0.95);
  }
}

.booking .table--striped td {
  padding: 0;
}

.booking .table--striped tbody tr:nth-of-type(odd) {
  background-color: transparent;
}
