.data-table {
  width: 100%;
  margin: 30px 0;
  border-collapse: collapse;
  border-spacing: 0;
  overflow: hidden;

  tr {
    border-top: 1px solid #ebeef5;
    border-bottom: solid 0px #FFF;

    &:last-child {
      border-bottom: 1px solid #ebeef5;
    }
  }

  th, td {
    text-align: left;
    margin: 0;
    border-bottom: dotted 1px #f2f4f9;
    letter-spacing: 1px;

    &:last-child {
      border-bottom: dotted 0 #FFF;
    }
  }

  th, td:before {
    color: #15161f;
    font-weight: normal;
  }

  th {
    display: none;
  }

  td {
    display: block;
    font-size: 14px;

    .price-item {
      font-size: 12px;
      color: #ff5804;
      letter-spacing: 2px
    }

    .price-item span {
      font-size: 15px;
      margin-right: 2px;
      font-weight: bold;
    }

    a {
      color: #ff5804;
      border: solid 1px #ff5804;
      font-size: 11px;
      padding: 5px 15px;
      letter-spacing: 2px;

      &:hover {
        opacity: 1;
        background-color: #ff5804;
        color: #FFF;
      }
    }

    &:before {
      content: attr(data-th);
      font-weight: normal;
      width: 8em;
      display: inline-block;
      background-color: #ebeef5;
      padding: 8px;
      font-size: 11px;
      margin-right: 10px;
    }

    &:first-child {
      padding-top: .5em;
    }

    &:last-child {
      padding-bottom: .5em;
    }

    &.no-data {
      text-align: center;
      color: #adadad;

      &:before {
        display: none;
      }
    }
  }
}

@media (min-width: 993px) {
  .data-table {
    tr {
      border-top: solid 0px #FFF;
      border-bottom: 1px solid #ebeef5;
    }

    th, td {
      display: table-cell;
      padding: 1em !important;

      &.center {
        text-align: center;
      }

      &:last-child {
        border-bottom: dotted 1px #f2f4f9;
      }

      .price-item span {
        font-size: 16px;
      }
    }

    td:before {
      display: none;
    }

    th:first-child, td:first-child {
      padding-left: 0;
    }

    th:last-child, td:last-child {
      padding-right: 0;
    }
  }
}