.horizontalScroll caption
{
  text-align: left;
  font-weight: 600;
  margin-bottom:8px;
  font-size:18px;
  color:var(--purple);
}



.horizontalScroll {
  margin: 1em 0;
  min-width: 300px;
  width:100%;
}

.horizontalScroll tr {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.horizontalScroll th {
  display: none;
  font-weight: 400;
}

.horizontalScroll td {
  display: block;
}
.horizontalScroll td:first-child {
  padding-top: .5em;
}
.horizontalScroll td:last-child {
  padding-bottom: .5em;
}
.horizontalScroll td:before {
  content: attr(data-th) ": ";
  font-weight: bold;
  width: 6.5em;
  display: inline-block;
}

.horizontalScroll th, .horizontalScroll td {
  text-align: left;
}

.horizontalScroll {
  color: #222222;
}

.horizontalScroll tr:first-of-type /*HIDE HEADER ON MOBILE*/
{
  display: none;
}
.horizontalScroll tr {
    border-color: var(--purple);
    border: 1px solid #111111;
    display: block;
    margin-bottom: 10px;
}

.horizontalScroll th, .horizontalScroll td {
  padding: .5em 1em;
}


@media (max-width: 767px) {
  
    .horizontalScroll tr td:nth-child(odd) {
        background-color: #084382;
    }
    .horizontalScroll tr>td:first-of-type{
        background:var(--purple);
       /* color:#ffffff;*/
    }
    .horizontalScroll tr > th {
        background: #2d3e52;
       /* color: #ffffff;*/
    }
    .horizontalScroll.doubleheader th.vert-header {
        display: block;
        color: #ffffff;
    }
}


@media (min-width: 768px) {
 
    .horizontalScroll th, .horizontalScroll td {
        display: table-cell;
        padding: .25em .5em;
    }
        .horizontalScroll th:first-child, .horizontalScroll td:first-child {
            padding-left: 0;
        }
    .horizontalScroll th:last-child, .horizontalScroll td:last-child {
        padding-right: 0;
    }
    .horizontalScroll th {
        background: #084382;
    }
    .horizontalScroll, td, th {
        border-collapse: collapse; 
        border:1px solid #111111;
    }
    .horizontalScroll th, .horizontalScroll td:before {
        color: #ffffff;
    }
    .horizontalScroll td:before {
        display: none;
    }
    .horizontalScroll th, .horizontalScroll td {
        padding: 1em !important;
    }

    .horizontalScroll tr {
        display: table-row!important;
        margin-bottom: 0px;
    }
    .horizontalScroll > tr:first-child >  td:first-child{
            background-color: #fff!important;
    }
        .horizontalScroll tr:nth-child(odd) td:not(:first-child) {
            background-color: #ddd !important;
            /*color: #fff;*/
        }
}