.singleTable {
  width: 100%;
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.5rem;
  text-align: inherit;
  color: currentColor;
  color: var(--font-clr-primary, currentColor);
}

.singleTable a {
    text-decoration: underline;
    color: var(--clr-primary);
  }

.singleTable p {
    margin: 0;
  }

.singleTable * ~ p,
  .singleTable * ~ h1,
  .singleTable * ~ h2,
  .singleTable * ~ h3,
  .singleTable * ~ h4 {
    margin: 1em 0 0;
  }

.singleTable ul {
    padding: 0 0 0 0.8em;
    list-style: disc;
  }

.singleTable ul li {
      padding: 0.44em 0 0 10px;
      list-style-type: none;
    }

.singleTable ul li::before {
        content: '¬';
        margin-right: 10px;
        margin-left: -20px;
        font-weight: 700;
        color: var(--clr-primary);
      }

.singleTable ol {
    padding: 0;
    counter-reset: item;
    list-style: none;
  }

.singleTable ol li {
      position: relative;
      padding: 0 0 0 1.77em;
      counter-increment: item;
    }

.singleTable ol li + li {
        padding-top: 0.44em;
      }

.singleTable ol li li {
      padding-top: 0.44em;
      padding-left: 3.22em;
    }

.singleTable ol li li li {
      padding-top: 0.44em;
      padding-left: 4.55em;
    }

.singleTable ol li::before {
      content: counters(item, '.') '.';
      position: absolute;
      left: 0;
      font-family: var(--font-primary);
      font-weight: 700;
      color: var(--clr-primary);
    }

.singleTable .table {
    margin: 0;
  }

.singleTable .table table {
      width: 100%;
      border-collapse: separate;
    }

.singleTable .table th {
      padding: 5px;
      text-align: center;
      background-color: #a2a2a2;
      color: #ffffff;
    }

.singleTable .table td {
      padding: 5px;
      border-bottom: 1px solid var(--clr-grayLight);
      background-color: #f1f1f1;
    }

.singleTable .table tr:nth-child(even) td {
      background-color: #dfdfdf;
    }

.singleTable--center {
  text-align: center;
}

.singleTable--left {
  text-align: left;
}

.singleTable--right {
  text-align: right;
}

.singleTable--w-75 {
  width: 100%;
}

@media screen and (min-width: 601px) {

.singleTable--w-75 {
    width: 75%;
}
  }

.singleTable--w-100 {
  width: 100%;
}

.table-caption {
  font-weight: 700 !important;
}

.table-caption {
  text-align: left;
}
