/*! _tables.css / elements */


/******************************   T A B L E S    ******************************/

table {
    background: var(--white);
    margin-bottom: 0;
    border: none !important;
    margin-bottom: 3.2rem;
  }
  /* table tr:first-child td {
    background: var(--darkblue);
    color: var(--text-color-light);
  } */
  
  
  table th {
    border-bottom: 2px solid var(--darkblue);
    color:var(--darkblue);    
  }
   table td {
    border-bottom: 2px solid rgba(218, 210, 186, 0.3);
    color:var(--darkgrey); 
  }
  table td:last-child {
    border-right: none;
  }
  div[data-hs-responsive-table="true"] {
    border-radius: var(--border-radius);
    padding: 20px;
    background: var(--lightblue);
  }
  table tr th, table tr td{    
    font-size: var(--font-size_18);
    width:190px;
    text-align: left;
    padding:16px 0;
  }
  