: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;
}
.wrapper {
  background-color: rgb(255, 255, 255);
  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;
}
.wrapper > *:not(:last-child) {
  margin-bottom: calc(var(--scw-spacing-1) * 0.5);
  --margin-bottom: calc( var( --scw-spacing-1 ) * 0.5 );
}
.wrapper .radio {
  background-color: rgba(0, 0, 0, 0);
  align-self: stretch;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  padding: 5px;
  cursor: pointer;
}
.wrapper .radio > *:not(:last-child) {
  margin-right: var(--scw-spacing-1);
  --margin-right: var( --scw-spacing-1 );
}
.wrapper .radio .input-wrapper {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 12px 12px 12px 12px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  transition: box-shadow 350ms ease;
}
.wrapper .radio .input-wrapper > *:not(:last-child) {
  margin-right: 0px;
  --margin-right: 0px;
}
.wrapper .radio .box {
  background-color: var(--scw-color-grey-10);
  border-radius: 12px 12px 12px 12px;
  border-width: 1px;
  border-style: solid;
  border-color: var(--scw-color-grey-07);
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  width: 20px;
  height: 20px;
  transition: color 350ms ease, border-color 350ms ease, box-shadow 350ms ease;
}
.wrapper .radio .box > *:not(:last-child) {
  margin-right: 0px;
  --margin-right: 0px;
}
.wrapper .radio .box .icon {
  transition: opacity 350ms ease;
  opacity: 0;
}
.wrapper .radio .input-label {
  text-align: LEFT;
  font: var(--scw-type-text-04-font);
  color: var(--scw-color-grey-02);
  align-self: stretch;
  flex: 1;
}

.checked .radio .box {
  background-color: var(--scw-color-grey-03);
  border-radius: 12px 12px 12px 12px;
  border-width: 1px;
  border-style: solid;
  border-color: var(--scw-color-grey-03);
}
.checked .radio .box .icon {
  background-color: var(--scw-color-grey-10);
  border-radius: 12px 12px 12px 12px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  width: 8px;
  height: 8px;
  opacity: 1;
}
.checked .radio .box .icon > *:not(:last-child) {
  margin-right: 0px;
  --margin-right: 0px;
}

:host(:focus),
:host(:focus-visible) {
  outline: none;
  box-shadow: none !important;
}
:host(:focus) .wrapper .radio .box,
:host(:focus-visible) .wrapper .radio .box {
  outline: none;
  box-shadow: var(--scw-effect-focus-shadow);
}

:host([aria-disabled]) .radio {
  cursor: default;
}
:host([aria-disabled]) .radio .input-wrapper {
  box-shadow: none !important;
}
:host([aria-disabled]) .radio .box {
  background-color: var(--scw-color-grey-095);
  border-radius: 12px 12px 12px 12px;
  border-width: 1px;
  border-style: solid;
  border-color: var(--scw-color-grey-07);
  box-shadow: none !important;
}
:host([aria-disabled]) .radio .input-label {
  text-align: LEFT;
  font: var(--scw-type-text-04-font);
  color: var(--scw-color-grey-06);
  align-self: stretch;
  flex: 1;
}
:host([aria-disabled]) .checked .radio .box {
  background-color: var(--scw-color-grey-07);
  border-radius: 12px 12px 12px 12px;
  border-width: 1px;
  border-style: solid;
  border-color: var(--scw-color-grey-07);
}

.topAlign .radio {
  align-items: flex-start;
}
.topAlign .radio .input-wrapper {
  position: relative;
  top: 5px;
}

@media (hover: hover) {
  .wrapper .radio:hover .input-wrapper {
    box-shadow: 0 0 0 5px var(--scw-color-grey-09);
  }
}