:host {
  display: inline-block;
}

[role='switch'] {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 2.75rem;
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

[role='switch']::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2.25rem;
  height: 1.25rem;
  box-sizing: border-box;
  border: 2px solid currentColor;
  border-radius: 999px;
  background: transparent;
}

[role='switch']::after {
  content: '';
  position: absolute;
  left: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: currentColor;
}

[role='switch'][aria-checked='true']::before {
  background: currentColor;
}

[role='switch'][aria-checked='true']::after {
  background: Canvas;
  transform: translateY(-50%) translateX(1rem);
}

[role='switch']:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
