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

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

.Text p {
    margin: 0;
  }

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

.Text ul {
    padding: 0;
  }

.Text ul li {
      position: relative;
      padding: 5px 0 0 15px;
    }

.Text ul li::before {
        content: '•';
        position: absolute;
        top: 0.25rem;
        left: 0;
        font-weight: 700;
        color: var(--clr-primary);
      }

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

.Text ol li {
      position: relative;
      padding: 0 0 0 20px;
      counter-increment: item;
    }

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

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

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

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

.Text .table {
    overflow-x: auto;
    margin: 0;
  }

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

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

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

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

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

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

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

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

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

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

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