:import {
  -st-from: "./ToggleSwitchCore.st.css";
  -st-default: ToggleSwitchCore;
}

@st-import [--wds-toggle-switch-shadow] from "@wix/design-system-tokens/all.st.css";

.root {
  -st-extends: ToggleSwitchCore;
}

.root:not(:disabled) {
  cursor: pointer;
}

.root:disabled {
  cursor: not-allowed;
}

.root::track {
  transition: all 300ms ease;
}

.root::knob {
  box-shadow: var(--wds-toggle-switch-shadow, 0 1px 5px 0 rgba(0, 0, 0, 0.6)) ;
  transition: all 300ms ease;
}

/* st-namespace-reference="../../../../../src/ToggleSwitch/ToggleSwitchCore/ToggleSwitchCoreStyle.st.css" */