/*
|---------------------------------------------------------------
| ec-connector-2025 document.css
|---------------------------------------------------------------
*/
:root {
  --ecc-document-padding: 20px;
  --ecc-document-font-size: 13px;
  --ecc-document-border-color: #dddddd;
}
@media (min-width: 750.02px) {
  :root {
    --ecc-document-padding: 80px;
    --ecc-document-font-size: 16px;
  }
}

.ecc-document {
  padding: 0 var(--ecc-document-padding, 20px);
  font-size: var(--ecc-document-font-size);
  line-height: 1.75;
}
.ecc-document h2:not(:first-child), .ecc-document h3:not(:first-child), .ecc-document h4:not(:first-child), .ecc-document h5:not(:first-child), .ecc-document h6:not(:first-child) {
  margin-top: 2em;
}
.ecc-document h2 {
  display: block;
  margin: 0 0 2em;
  font-size: 22px;
  font-size: clamp(22px, 2.93vw, 28px);
  font-weight: 600;
  text-align: left;
  line-height: 1.5;
  position: relative;
  padding: 0 0 0 0.68em;
}
.ecc-document h2::before, .ecc-document h2 > span[style*=color]::before {
  content: "";
  display: block;
  width: 1.14em;
  height: 0.32em;
  background-color: var(--ecc-document-heading-theme-color, #004688);
  border-radius: 0 0.16em 0.16em 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: calc(-1 * var(--ecc-document-padding, 20px));
  right: auto;
  bottom: auto;
  z-index: 1;
  margin: auto;
  transform: translateY(-50%);
}
.ecc-document h2 > span[style*=color]::before {
  background-color: currentColor;
}
@media (min-width: 750.02px) {
  .ecc-document h2 {
    padding: 0;
  }
  .ecc-document h2::before, .ecc-document h2 > span[style*=color]::before {
    width: 1.64em;
    height: 0.21em;
    border-radius: 0 0.11em 0.11em 0;
  }
}
.ecc-document h3 {
  display: block;
  margin: 0 0 0.5em;
  padding: 0;
  font-size: 13px;
  font-size: clamp(13px, 1.73vw, 20px);
  font-weight: 600;
}
.ecc-document h4 {
  display: block;
  margin: 0 0 0.5em;
  padding: 0;
  font-size: 13px;
  font-size: clamp(13px, 1.73vw, 16px);
  font-weight: 600;
}
.ecc-document p {
  margin-bottom: 1.5em;
}
.ecc-document a {
  color: inherit;
}
.ecc-document ul, .ecc-document ol {
  padding-left: 2em;
  margin-bottom: 1.5em;
}
.ecc-document li {
  /* margin-bottom: 1.5em; */
}
.ecc-document blockquote {
  display: block;
  padding-left: clamp(30px, 4vw, 60px);
}
.ecc-document table {
  width: 100%;
  border-collapse: collapse;
}
.ecc-document table th, .ecc-document table td {
  padding: 10px 0;
  text-align: left;
  vertical-align: baseline;
  border: 0;
}
.ecc-document table th {
  font-weight: 600;
  border-bottom: 2px solid #004688;
}
.ecc-document table td {
  border-bottom: 2px solid var(--ecc-document-border-color);
  color: #000000;
  background: #ffffff;
}
.ecc-document table td:first-child:last-child {
  padding: 30px 20px;
  border: 1px solid var(--ecc-document-border-color);
}
@media (min-width: 750.02px) {
  .ecc-document table th,
  .ecc-document table td {
    padding: 10px 15px;
    border-width: 1px;
  }
}
.ecc-document *:last-child {
  margin-bottom: 0;
}

.ecc-document .policy-list {
  counter-reset: policy-count;
  list-style: none;
  padding-left: 1.5em;
}
.ecc-document .policy-list li {
  counter-increment: policy-count;
  margin-bottom: 1.5em;
  position: relative;
  line-height: 1.75;
}
.ecc-document .policy-list li::before {
  content: counter(policy-count, lower-alpha) " ) ";
  display: block;
  width: 1.5em;
  font-weight: bold;
  position: absolute;
  top: 0.875em;
  left: 0;
  z-index: 1;
  margin: auto;
  transform: translate(-100%, -50%);
}
