.rp-switch[data-v-5093bd29] {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-family: var(--rp-font-family);
  user-select: none;
}
.rp-switch--disabled[data-v-5093bd29] {
  opacity: 0.5;
  cursor: not-allowed;
}
.rp-switch--sm[data-v-5093bd29] {
  gap: var(--rp-spacing-2);
  font-size: var(--rp-font-size-sm);
  --_track-w: 32px;
  --_track-h: 18px;
  --_thumb-size: 14px;
  --_thumb-offset: 2px;
}
.rp-switch--md[data-v-5093bd29] {
  gap: var(--rp-spacing-2);
  font-size: var(--rp-font-size-base);
  --_track-w: 40px;
  --_track-h: 22px;
  --_thumb-size: 18px;
  --_thumb-offset: 2px;
}
.rp-switch--lg[data-v-5093bd29] {
  gap: var(--rp-spacing-3);
  font-size: var(--rp-font-size-lg);
  --_track-w: 48px;
  --_track-h: 26px;
  --_thumb-size: 22px;
  --_thumb-offset: 2px;
}
.rp-switch__native[data-v-5093bd29] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
  pointer-events: none;
}
.rp-switch__native:focus-visible + .rp-switch__track[data-v-5093bd29] {
  border-color: var(--rp-color-primary);
  box-shadow: 0 0 0 2px var(--rp-color-focus-ring);
}
.rp-switch__track[data-v-5093bd29] {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: var(--_track-w);
  height: var(--_track-h);
  flex-shrink: 0;
  background-color: var(--rp-color-gray-300);
  border-radius: var(--rp-radius-full);
  transition: background-color var(--rp-transition-fast);
}
.rp-switch--checked .rp-switch__track[data-v-5093bd29] {
  background-color: var(--rp-color-primary);
}
.rp-switch__thumb[data-v-5093bd29] {
  position: absolute;
  left: var(--_thumb-offset);
  width: var(--_thumb-size);
  height: var(--_thumb-size);
  background-color: var(--rp-color-white);
  border-radius: var(--rp-radius-full);
  box-shadow: var(--rp-shadow-sm);
  transition: transform var(--rp-transition-fast);
}
.rp-switch--checked .rp-switch__thumb[data-v-5093bd29] {
  transform: translateX(calc(var(--_track-w) - var(--_thumb-size) - var(--_thumb-offset) * 2));
}
.rp-switch__label[data-v-5093bd29] {
  line-height: 1.4;
  color: var(--rp-color-text);
}