:host {
  /* scw element */
  position: relative;
  box-sizing: border-box;
  --margin-right: initial;
  --margin-bottom: initial;
  --gap-h-int: initial;
  --gap-v-int: initial;
  margin-right: var(--margin-right, var(--gap-h-int, initial));
  margin-bottom: var(--margin-bottom, var(--gap-v-int, initial));
  display: block;
}

:host([warning]) {
  outline: 2px solid red !important;
}
@charset "UTF-8";
:host {
  display: block;
}

h1 {
  font: var(--scw-type-text-bold-09-font);
  display: inline-block;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: var(--scw-spacing-1);
}

h2 {
  font: var(--scw-type-text-bold-08-font);
  display: inline-block;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: var(--scw-spacing-1);
}

h3 {
  font: var(--scw-type-text-bold-07-font);
  display: inline-block;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: var(--scw-spacing-1);
}

h4 {
  font: var(--scw-type-text-bold-06-font);
  display: inline-block;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: var(--scw-spacing-1);
}

h5 {
  font: var(--scw-type-text-bold-06-font);
  display: inline-block;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: var(--scw-spacing-1);
}

h6 {
  font: var(--scw-type-text-bold-06-font);
  display: inline-block;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: var(--scw-spacing-1);
}

p {
  font: var(--scw-type-text-04-font);
  display: inline-block;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: var(--scw-spacing-2);
  color: var(--scw-theme-body-color, var(--scw-color-grey-02));
}

h1,
h2,
h3 {
  color: var(--scw-theme-color, var(--scw-color-grey-02));
}

h4,
h5,
h6 {
  color: var(--scw-theme-body-color, var(--scw-color-grey-02));
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  display: block;
}

ul {
  list-style: none;
  padding-left: var(--scw-spacing-2);
}

ul li::before {
  content: "•";
  vertical-align: top;
  color: var(--scw-theme-color, var(--scw-color-grey-02));
  font-weight: bold;
  width: 1em;
  display: inline-block;
  margin-left: -1em;
}

li {
  counter-increment: li;
}

ol {
  list-style: none;
  counter-reset: li;
}

ol li::before {
  content: counter(li) ".  ";
  vertical-align: top;
  text-align: center;
  color: var(--scw-theme-color, var(--scw-color-grey-02));
  width: 2em;
  display: inline-block;
  margin-left: -2em;
}

li * {
  display: inline-block;
}

img {
  max-width: 500px;
  margin-bottom: 20px;
}

table {
  --border: 1px solid var(--scw-color-grey-092);
  background-color: var(--scw-color-grey-10);
  border-radius: 6px;
  border-spacing: 0;
  border-collapse: separate;
  border: var(--border);
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 20px;
}
table p {
  margin: 0;
  text-align: left;
  color: var(--scw-color-grey-02);
}

table th:not(:last-child) {
  --border-color: ;
  border-right: 1px solid var(--scw-theme-border-color, var(--scw-color-grey-03));
}

table td:not(:last-child) {
  border-right: 1px solid var(--scw-color-grey-092);
}

table > thead > tr:not(:last-child) > th,
table > thead > tr:not(:last-child) > td,
table > tbody > tr:not(:last-child) > th,
table > tbody > tr:not(:last-child) > td,
table > tfoot > tr:not(:last-child) > th,
table > tfoot > tr:not(:last-child) > td,
table > tr:not(:last-child) > td,
table > tr:not(:last-child) > th,
table > thead:not(:last-child),
table > tbody:not(:last-child),
table > tfoot:not(:last-child) {
  border-bottom: var(--border);
}

th,
td {
  margin: 0;
  padding: var(--scw-spacing-2);
}

th {
  background-color: var(--scw-theme-color-dark, var(--scw-color-grey-03));
}
th p {
  font-weight: bold;
  color: var(--scw-color-grey-10);
}

tr:nth-child(even) {
  background-color: var(--scw-color-grey-095);
}

blockquote {
  font: var(--scw-type-text-05-font);
  margin-left: var(--scw-spacing-1);
  margin-bottom: var(--scw-spacing-3);
  padding-left: var(--scw-spacing-2);
  border-left: 5px solid var(--scw-theme-color-btn, var(--scw-color-primary-07));
}

:host([inherit]) p,
:host([inherit]) li,
:host([inherit]) ol,
:host([inherit]) ul {
  font: inherit;
  color: inherit;
  font-size: inherit;
}

:host([inline]) p, :host([inline]) div {
  display: inline;
}

:host([custom]) p,
:host([custom]) ul,
:host([custom]) ol {
  margin: 0;
}

scw-link {
  display: inline;
}