: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 {
  width: fit-content;
}

scw-link {
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
}
scw-link > *:not(:last-child) {
  margin-bottom: calc(var(--scw-spacing-1) * 0.4);
  --margin-bottom: calc( var( --scw-spacing-1 ) * 0.4 );
}
scw-link .text {
  text-align: LEFT;
  font: var(--scw-type-text-03-font);
  color: rgb(53, 55, 57);
  align-self: stretch;
}
scw-link .focus {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 1px 1px 1px 1px;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.06);
  align-self: stretch;
  height: 3px;
}

:host([active]) .text {
  text-align: LEFT;
  font: var(--scw-type-text-bold-03-font);
  color: rgb(53, 55, 57);
  align-self: stretch;
}
:host([active]) .focus {
  background-color: var(--scw-color-primary-07);
  border-radius: 1px 1px 1px 1px;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.06);
  align-self: stretch;
}

scw-link:hover .text {
  text-align: LEFT;
  font: var(--scw-type-text-bold-03-font);
  color: rgb(53, 55, 57);
  align-self: stretch;
}