table.table-distances {
    width:100%;
}
table.table-distances thead th {
    font-weight:700;
    text-transform:uppercase;
    background-color:#ffffff;
    border-bottom: 2px solid var(--border);
    border-top: 1px solid var(--border);
}
table.table-distances tbody tr td {
    border-bottom: 1px solid var(--border);
    font-weight:300;
}

table.table-distances tbody tr td:first-child {
    font-weight:700;
}

table.table-distances tbody tr:nth-child(odd) td {
    background-color:#E7F2F0;
}
table.table-distances tbody tr:nth-child(even) td {
    background-color:#ffffff;
}



table.table-facts {
    width:100%;
}

table.table-facts tr td ul li{

}

table.table-facts tr td {
    padding:0.5em 1em;
    border:0px solid transparent;
}

table.table-facts tr td:first-child{
    text-align:right;
    font-weight: bold;
    width:45%;
}
table.table-facts tr td:nth-child(2){
    border-bottom:1px solid currentColor;
    width:55%;
}


table.table-facts tr td ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.25em;
}
table.table-facts tr td ul li {
    display: grid;
    grid-template-columns: 0 1fr;
    gap: 0.75em;
    align-items: start;
}
table.table-facts tr td ul li:before{
    content:"_";
}


ol.list-formal {
  counter-reset: section;
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}

ol.list-formal[start="2"] {
   counter-reset: section 1;
}
ol.list-formal[start="3"] {
   counter-reset: section 2;
}
ol.list-formal[start="4"] {
   counter-reset: section 3;
}
ol.list-formal[start="5"] {
   counter-reset: section 4;
}
ol.list-formal[start="6"] {
   counter-reset: section 5;
}
ol.list-formal[start="7"] {
   counter-reset: section 6;
}
ol.list-formal[start="8"] {
   counter-reset: section 7;
}
ol.list-formal[start="9"] {
   counter-reset: section 8;
}
ol.list-formal[start="10"] {
   counter-reset: section 9;
}
ol.list-formal[start="11"] {
   counter-reset: section 10;
}
ol.list-formal[start="12"] {
   counter-reset: section 11;
}
ol.list-formal[start="13"] {
   counter-reset: section 12;
}
ol.list-formal[start="14"] {
   counter-reset: section 13;
}
ol.list-formal[start="15"] {
   counter-reset: section 14;
}
ol.list-formal[start="16"] {
   counter-reset: section 15;
}
ol.list-formal[start="17"] {
   counter-reset: section 16;
}
ol.list-formal[start="18"] {
   counter-reset: section 17;
}




ol.list-formal ol{
    padding:0;
    margin:0;
    counter-reset: section;
}
ol.list-formal ol > li,
ol.list-formal > li{
    list-style: none;
    position:relative;
    padding-left: 3.5rem;
}

ol.list-formal li ol{
    margin-left:-3.5rem;
}

ol.list-formal li h4,
ol.list-formal li p{
    display: inline;
}

ol.list-formal ol > li::before,
ol.list-formal > li::before {
    content: counters(section, ".") ". ";
    counter-increment: section;
    position:absolute;
    left:0;
    line-height:1.5;
}

ol.list-formal > li > p:first-child,
ol.list-formal > li::before {
    font-weight:700;
    font-size:1.2rem;
}
ol.list-formal > li li{
    font-weight:400;
    font-size: 1rem;
}
