: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;
}
:host {
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
}
:host > *:not(:last-child) {
  margin-right: 0px;
  --margin-right: 0px;
}

:host([header]) {
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
}
:host([header]) > *:not(:last-child) {
  margin-right: 0px;
  --margin-right: 0px;
}

:host([header]) ::slotted([start]),
:host([start]:first-child) ::slotted([start]),
:host([start]) ::slotted([label-cell]) {
  border-top-left-radius: 10px;
}

:host([header]) ::slotted(:last-child),
:host([start]:first-child) ::slotted(:last-child) {
  border-top-right-radius: 10px;
}

:host([end]) ::slotted(:last-child) {
  border-bottom-right-radius: 10px;
}

:host([end]) ::slotted(:first-child) {
  border-bottom-left-radius: 10px;
}

:host([end]) ::slotted(*) {
  border-bottom: 1px;
  border-bottom-color: var(--scw-color-grey-08);
  border-bottom-style: solid;
}

:host(:not([header])) ::slotted([start]) {
  border-left: 1px;
  border-left-color: var(--scw-color-grey-08);
  border-left-style: solid;
}

:host ::slotted(*) {
  min-width: calc(100% / var(--column-shown));
}

@media (max-width: 768px) {
  :host(.comparison-row[header]) {
    margin-top: 0;
  }
  :host(.comparison-row[end]) ::slotted(scw-table-cell[label-cell]) {
    border-bottom: 0px;
  }
  :host(.comparison-row) {
    margin-top: var(--scw-spacing-4);
  }
  :host(.comparison-row) ::slotted(*) {
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    flex-basis: 0;
    min-width: 50%;
    border-radius: 0 !important;
  }
  :host(.comparison-row) ::slotted(scw-table-cell[label-cell]) {
    position: absolute;
    width: 100%;
    text-align: center;
    justify-content: center;
    z-index: 2;
    padding: 0;
    bottom: 100%;
    border-left: 0;
    background-color: var(--scw-color-grey-095);
    height: var(--scw-spacing-4);
  }
  :host(.comparison-row) ::slotted(scw-table-cell[header][label-cell]) {
    display: none;
  }
}