  body{
    --system-color : #493ce0;
  }
  table.data-table {
    /* border: 0.5px solid #ccc; */
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
    margin-bottom: 10px;
  }
  
  table.data-table caption {
    font-size: 1.5em;
    margin: .5em 0 .75em;
  }
  table.data-table thead tr{
    background-color: var(--system-color) !important;
    color: white;
  }
  table.data-table tr {
    background-color: white;
    /* border: 1px solid #ddd; */
    padding: .35em;
    height: auto;
  }
  
  table.data-table th,
  table.data-table td {
    /* border: 1px solid black; */
    font-size: 11px;
    padding: .625em;
    text-align: center;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }
  
  table.data-table th {
    /* font-size: .85em; */
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }
  .clicker{
    display: none;
  }
  .btnBlock{
    display: inline-block;
  }
  .table tbody tr:hover {
    color: #212529;
    background-color: rgba(47, 57, 91, 0.035);
  }
  
  @media screen and (max-width: 600px) {
    .display-phone{
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }
    .btnBlock{
      display: none;
    }
    table.data-table {
      border: 0;
    }
    table.data-table tr{
        padding-right: 0;
        padding-left: 0;
        padding-top: 0;
    }
  
    table.data-table caption {
      font-size: 1.3em;
    }
    
    table.data-table thead {
      border: none;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px;
    }
    table.data-table th,
    table.data-table td{
        border: none;
    }
    
    table.data-table tr {
      border-bottom: 3px solid var(--system-color);
      display: block;
      margin-bottom: .625em;
      transition: 0.2s linear;
      position: relative;
    }
    
    table.data-table td {
      /* border-bottom: 1px solid #ddd; */
      display: block;
      font-size: .8em;
      text-align: right;
    }
    table.data-table td:not(:nth-child(3)) {
        display: none;  
    }
    .clicker{
        display: inline-block;
        margin-left: 3px;
        width: 25px;
        height: 25px;
    }
    
    table.data-table td::before {
      /*
      * aria-label has no advantage, it won't be read inside a table.data-table
      content: attr(aria-label);
      */
      content: attr(data-col);
      float: left;
      font-weight: bold;
      line-height: 23px;
      text-transform: uppercase;
    }

    table.data-table td:not(:nth-child(3)){
        border-bottom: 0px solid #dee2e6 !important;
    }
    table.data-table td:nth-child(4){
        border-top: 0px solid #dee2e6 !important;
    }
    table.data-table td:last-child {
      border-bottom: 0px solid #dee2e6 !important;
    }

    .table tbody tr:hover {
      color: #212529;
      background-color: transparent;
    }
  }
  