/*basis start (for test preview)*/
table {
    border-collapse: collapse;
    width: 100%;
    border-spacing: 0px;
  }
  /*basis end (for test preview)*/

  /*table demo style start*/
  @media screen and (max-width: 991px) {
    .desktop-view {
      display: none;
    }

    .mobile-view {
      display: block;
    }
  }

  @media screen and (min-width: 992px) {
    .desktop-view {
      display: table;
    }

    .mobile-view {
      display: none;
    }
  }

  .table-mb-view {
    width: 100%;
  }

  .table-sec {
    margin-bottom: 20px;
  }

  .table-mb-row {
    width: 100%;
    display: flex;
    align-items: stretch;
    border-top: 1px solid rgba(3, 62, 117, 0.5);
  }

  .table-mb-row:last-child {
    border-bottom: 1px solid rgba(3, 62, 117, 0.5);
  }

  .table-mb-col {
    flex-basis: 100%;
    padding: 10px;
  }

  .table-mb-col:first-child {
    border-left: 1px solid rgba(3, 62, 117, 0.5);
    border-right: 1px solid rgba(3, 62, 117, 0.5);
  }

  .table-mb-col:last-child {
    border-right: 1px solid rgba(3, 62, 117, 0.5);
  }

  .table-mb-col p {
    margin: 0;
  }

  /*table demo style end*/