@enact/sandstone
Version:
Large-screen/TV support library for Enact, containing a variety of UI components.
887 lines • 66.4 kB
CSS
.checkbox {
display: inline-block;
position: relative;
line-height: 0;
}
.checkbox .icon {
margin: 0;
border-radius: 187.5rem;
position: relative;
text-align: center;
}
.checkbox:global(.neutral).standalone .bg {
position: absolute;
top: -0.625rem;
right: -0.625rem;
bottom: -0.625rem;
left: -0.625rem;
border-radius: 0.25rem;
will-change: box-shadow, box-shadow, box-shadow;
opacity: 0;
background-color: rgb(var(--sand-focus-bg-color-rgb, 230, 230, 230));
}
.checkbox:global(.neutral):global(.spottable) .bg {
position: absolute;
top: -0.625rem;
right: -0.625rem;
bottom: -0.625rem;
left: -0.625rem;
border-radius: 0.25rem;
will-change: box-shadow, box-shadow, box-shadow;
opacity: 0;
background-color: rgb(var(--sand-focus-bg-color-rgb, 230, 230, 230));
}
.checkbox:global(.neutral) .icon {
color: transparent;
background-color: transparent;
box-shadow: 0 0 0 0.08333rem var(--sand-checkbox-color, rgb(var(--sand-text-color-rgb, 230, 230, 230)));
}
.checkbox:global(.neutral).selected .icon {
color: rgb(var(--sand-selected-color-rgb, 230, 230, 230));
background-color: var(--sand-toggle-on-bg-color, #30ad6b);
box-shadow: 0 0 0 0.08333rem var(--sand-toggle-on-bg-color, #30ad6b);
}
.checkbox:global(.neutral).indeterminate .icon {
color: var(--sand-checkbox-color, rgb(var(--sand-text-color-rgb, 230, 230, 230)));
background-color: transparent;
box-shadow: 0 0 0 0.08333rem var(--sand-checkbox-color, rgb(var(--sand-text-color-rgb, 230, 230, 230)));
}
:global(.spotlight-input-key) .checkbox:global(.neutral):global(.spottable):focus .icon,
:global(.spotlight-input-mouse) .checkbox:global(.neutral):global(.spottable):focus .icon {
color: transparent;
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
}
:global(.spotlight-input-key) .checkbox:global(.neutral):global(.spottable):focus .bg,
:global(.spotlight-input-mouse) .checkbox:global(.neutral):global(.spottable):focus .bg {
opacity: 1;
background-color: rgb(var(--sand-focus-bg-color-rgb, 230, 230, 230));
box-shadow: 0 0.75rem 0.75rem rgb(var(--sand-shadow-color-rgb, 0, 0, 0), 30%);
}
:global(.spotlight-input-key) .checkbox:global(.neutral):global(.spottable):focus.selected .icon,
:global(.spotlight-input-mouse) .checkbox:global(.neutral):global(.spottable):focus.selected .icon {
color: rgb(var(--sand-selected-color-rgb, 230, 230, 230));
background-color: var(--sand-toggle-on-bg-color, #30ad6b);
box-shadow: 0 0 0 0.08333rem var(--sand-toggle-on-bg-color, #30ad6b);
}
:global(.spotlight-input-key) .checkbox:global(.neutral):global(.spottable):focus.indeterminate .icon,
:global(.spotlight-input-mouse) .checkbox:global(.neutral):global(.spottable):focus.indeterminate .icon {
color: rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
}
:global(.spotlight-input-touch) .checkbox:global(.neutral):global(.spottable):active .icon {
color: transparent;
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
}
:global(.spotlight-input-touch) .checkbox:global(.neutral):global(.spottable):active .bg {
opacity: 1;
background-color: rgb(var(--sand-focus-bg-color-rgb, 230, 230, 230));
box-shadow: 0 0.75rem 0.75rem rgb(var(--sand-shadow-color-rgb, 0, 0, 0), 30%);
}
:global(.spotlight-input-touch) .checkbox:global(.neutral):global(.spottable):active.selected .icon {
color: rgb(var(--sand-selected-color-rgb, 230, 230, 230));
background-color: var(--sand-toggle-on-bg-color, #30ad6b);
box-shadow: 0 0 0 0.08333rem var(--sand-toggle-on-bg-color, #30ad6b);
}
:global(.spotlight-input-touch) .checkbox:global(.neutral):global(.spottable):active.indeterminate .icon {
color: rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
}
.checkbox:global(.neutral)[disabled] {
opacity: 1;
}
.checkbox:global(.neutral)[disabled] .icon {
opacity: 0.4;
}
.checkbox:global(.neutral)[disabled].selected .icon {
color: var(--sand-checkbox-disabled-selected-text-color, var(--sand-disabled-selected-color, #4c5059));
background-color: var(--sand-disabled-selected-bg-color, #e6e6e6);
box-shadow: 0 0 0 0.08333rem var(--sand-disabled-selected-bg-color, #e6e6e6);
}
:global(.spotlight-input-key) .checkbox:global(.neutral)[disabled]:global(.spottable):focus .bg,
:global(.spotlight-input-mouse) .checkbox:global(.neutral)[disabled]:global(.spottable):focus .bg {
background-color: var(--sand-disabled-focus-bg-color, #abaeb3);
}
:global(.spotlight-input-key) .checkbox:global(.neutral)[disabled]:global(.spottable):focus.selected .icon,
:global(.spotlight-input-mouse) .checkbox:global(.neutral)[disabled]:global(.spottable):focus.selected .icon {
color: var(--sand-disabled-selected-focus-color, var(--sand-disabled-selected-bg-color, #e6e6e6));
background-color: var(--sand-disabled-selected-focus-bg-color, var(--sand-disabled-selected-color, #4c5059));
box-shadow: 0 0 0 0.08333rem var(--sand-disabled-selected-focus-bg-color, var(--sand-disabled-selected-color, #4c5059));
}
:global(.spotlight-input-touch) .checkbox:global(.neutral)[disabled]:global(.spottable):active .bg {
background-color: var(--sand-disabled-focus-bg-color, #abaeb3);
}
:global(.spotlight-input-touch) .checkbox:global(.neutral)[disabled]:global(.spottable):active.selected .icon {
color: var(--sand-disabled-selected-focus-color, var(--sand-disabled-selected-bg-color, #e6e6e6));
background-color: var(--sand-disabled-selected-focus-bg-color, var(--sand-disabled-selected-color, #4c5059));
box-shadow: 0 0 0 0.08333rem var(--sand-disabled-selected-focus-bg-color, var(--sand-disabled-selected-color, #4c5059));
}
:global(.enact-a11y-high-contrast) .checkbox:global(.neutral):global(.highContrast).standalone .bg {
position: absolute;
top: -0.625rem;
right: -0.625rem;
bottom: -0.625rem;
left: -0.625rem;
border-radius: 0.25rem;
will-change: box-shadow, box-shadow, box-shadow;
opacity: 0;
background-color: rgb(var(--sand-focus-bg-color-rgb, 230, 230, 230));
}
:global(.enact-a11y-high-contrast) .checkbox:global(.neutral):global(.highContrast):global(.spottable) .bg {
position: absolute;
top: -0.625rem;
right: -0.625rem;
bottom: -0.625rem;
left: -0.625rem;
border-radius: 0.25rem;
will-change: box-shadow, box-shadow, box-shadow;
opacity: 0;
background-color: rgb(var(--sand-focus-bg-color-rgb, 230, 230, 230));
}
:global(.enact-a11y-high-contrast) .checkbox:global(.neutral):global(.highContrast) .icon {
color: transparent;
background-color: transparent;
box-shadow: 0 0 0 0.08333rem var(--sand-checkbox-color, rgb(var(--sand-text-color-rgb, 230, 230, 230)));
}
:global(.enact-a11y-high-contrast) .checkbox:global(.neutral):global(.highContrast).selected .icon {
color: rgb(var(--sand-selected-color-rgb, 230, 230, 230));
background-color: var(--sand-toggle-on-bg-color, #30ad6b);
box-shadow: 0 0 0 0.08333rem var(--sand-toggle-on-bg-color, #30ad6b);
}
:global(.enact-a11y-high-contrast) .checkbox:global(.neutral):global(.highContrast).indeterminate .icon {
color: var(--sand-checkbox-color, rgb(var(--sand-text-color-rgb, 230, 230, 230)));
background-color: transparent;
box-shadow: 0 0 0 0.08333rem var(--sand-checkbox-color, rgb(var(--sand-text-color-rgb, 230, 230, 230)));
}
:global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .checkbox:global(.neutral):global(.highContrast):global(.spottable):focus .icon,
:global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .checkbox:global(.neutral):global(.highContrast):global(.spottable):focus .icon {
color: transparent;
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
}
:global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .checkbox:global(.neutral):global(.highContrast):global(.spottable):focus .bg,
:global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .checkbox:global(.neutral):global(.highContrast):global(.spottable):focus .bg {
opacity: 1;
background-color: rgb(var(--sand-focus-bg-color-rgb, 230, 230, 230));
box-shadow: 0 0.75rem 0.75rem rgb(var(--sand-shadow-color-rgb, 0, 0, 0), 30%);
}
:global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .checkbox:global(.neutral):global(.highContrast):global(.spottable):focus.selected .icon,
:global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .checkbox:global(.neutral):global(.highContrast):global(.spottable):focus.selected .icon {
color: rgb(var(--sand-selected-color-rgb, 230, 230, 230));
background-color: var(--sand-toggle-on-bg-color, #30ad6b);
box-shadow: 0 0 0 0.08333rem var(--sand-toggle-on-bg-color, #30ad6b);
}
:global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .checkbox:global(.neutral):global(.highContrast):global(.spottable):focus.indeterminate .icon,
:global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .checkbox:global(.neutral):global(.highContrast):global(.spottable):focus.indeterminate .icon {
color: rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
}
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .checkbox:global(.neutral):global(.highContrast):global(.spottable):active .icon {
color: transparent;
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
}
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .checkbox:global(.neutral):global(.highContrast):global(.spottable):active .bg {
opacity: 1;
background-color: rgb(var(--sand-focus-bg-color-rgb, 230, 230, 230));
box-shadow: 0 0.75rem 0.75rem rgb(var(--sand-shadow-color-rgb, 0, 0, 0), 30%);
}
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .checkbox:global(.neutral):global(.highContrast):global(.spottable):active.selected .icon {
color: rgb(var(--sand-selected-color-rgb, 230, 230, 230));
background-color: var(--sand-toggle-on-bg-color, #30ad6b);
box-shadow: 0 0 0 0.08333rem var(--sand-toggle-on-bg-color, #30ad6b);
}
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .checkbox:global(.neutral):global(.highContrast):global(.spottable):active.indeterminate .icon {
color: rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
}
:global(.enact-a11y-high-contrast) .checkbox:global(.neutral):global(.highContrast)[disabled] {
opacity: 1;
}
:global(.enact-a11y-high-contrast) .checkbox:global(.neutral):global(.highContrast)[disabled] .icon {
opacity: 0.4;
}
:global(.enact-a11y-high-contrast) .checkbox:global(.neutral):global(.highContrast)[disabled].selected .icon {
color: var(--sand-checkbox-disabled-selected-text-color, var(--sand-disabled-selected-color, #4c5059));
background-color: var(--sand-disabled-selected-bg-color, #e6e6e6);
box-shadow: 0 0 0 0.08333rem var(--sand-disabled-selected-bg-color, #e6e6e6);
}
:global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .checkbox:global(.neutral):global(.highContrast)[disabled]:global(.spottable):focus .bg,
:global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .checkbox:global(.neutral):global(.highContrast)[disabled]:global(.spottable):focus .bg {
background-color: var(--sand-disabled-focus-bg-color, #abaeb3);
}
:global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .checkbox:global(.neutral):global(.highContrast)[disabled]:global(.spottable):focus.selected .icon,
:global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .checkbox:global(.neutral):global(.highContrast)[disabled]:global(.spottable):focus.selected .icon {
color: var(--sand-disabled-selected-focus-color, var(--sand-disabled-selected-bg-color, #e6e6e6));
background-color: var(--sand-disabled-selected-focus-bg-color, var(--sand-disabled-selected-color, #4c5059));
box-shadow: 0 0 0 0.08333rem var(--sand-disabled-selected-focus-bg-color, var(--sand-disabled-selected-color, #4c5059));
}
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .checkbox:global(.neutral):global(.highContrast)[disabled]:global(.spottable):active .bg {
background-color: var(--sand-disabled-focus-bg-color, #abaeb3);
}
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .checkbox:global(.neutral):global(.highContrast)[disabled]:global(.spottable):active.selected .icon {
color: var(--sand-disabled-selected-focus-color, var(--sand-disabled-selected-bg-color, #e6e6e6));
background-color: var(--sand-disabled-selected-focus-bg-color, var(--sand-disabled-selected-color, #4c5059));
box-shadow: 0 0 0 0.08333rem var(--sand-disabled-selected-focus-bg-color, var(--sand-disabled-selected-color, #4c5059));
}
.checkbox:global(.light).standalone .bg {
position: absolute;
top: -0.625rem;
right: -0.625rem;
bottom: -0.625rem;
left: -0.625rem;
border-radius: 0.25rem;
will-change: box-shadow, box-shadow, box-shadow;
opacity: 0;
background-color: rgb(var(--sand-focus-bg-color-rgb, 230, 230, 230));
}
.checkbox:global(.light):global(.spottable) .bg {
position: absolute;
top: -0.625rem;
right: -0.625rem;
bottom: -0.625rem;
left: -0.625rem;
border-radius: 0.25rem;
will-change: box-shadow, box-shadow, box-shadow;
opacity: 0;
background-color: rgb(var(--sand-focus-bg-color-rgb, 230, 230, 230));
}
.checkbox:global(.light) .icon {
color: transparent;
background-color: transparent;
box-shadow: 0 0 0 0.08333rem var(--sand-checkbox-color, #858b92);
}
.checkbox:global(.light).selected .icon {
color: rgb(var(--sand-selected-color-rgb, 230, 230, 230));
background-color: var(--sand-toggle-on-bg-color, #30ad6b);
box-shadow: 0 0 0 0.08333rem var(--sand-toggle-on-bg-color, #30ad6b);
}
.checkbox:global(.light).indeterminate .icon {
color: var(--sand-checkbox-color, #858b92);
background-color: transparent;
box-shadow: 0 0 0 0.08333rem var(--sand-checkbox-color, #858b92);
}
:global(.spotlight-input-key) .checkbox:global(.light):global(.spottable):focus .icon,
:global(.spotlight-input-mouse) .checkbox:global(.light):global(.spottable):focus .icon {
color: transparent;
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
}
:global(.spotlight-input-key) .checkbox:global(.light):global(.spottable):focus .bg,
:global(.spotlight-input-mouse) .checkbox:global(.light):global(.spottable):focus .bg {
opacity: 1;
background-color: rgb(var(--sand-focus-bg-color-rgb, 230, 230, 230));
box-shadow: 0 0.75rem 0.75rem rgb(var(--sand-shadow-color-rgb, 0, 0, 0), 30%);
}
:global(.spotlight-input-key) .checkbox:global(.light):global(.spottable):focus.selected .icon,
:global(.spotlight-input-mouse) .checkbox:global(.light):global(.spottable):focus.selected .icon {
color: rgb(var(--sand-selected-color-rgb, 230, 230, 230));
background-color: var(--sand-toggle-on-bg-color, #30ad6b);
box-shadow: 0 0 0 0.08333rem var(--sand-toggle-on-bg-color, #30ad6b);
}
:global(.spotlight-input-key) .checkbox:global(.light):global(.spottable):focus.indeterminate .icon,
:global(.spotlight-input-mouse) .checkbox:global(.light):global(.spottable):focus.indeterminate .icon {
color: rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
}
:global(.spotlight-input-touch) .checkbox:global(.light):global(.spottable):active .icon {
color: transparent;
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
}
:global(.spotlight-input-touch) .checkbox:global(.light):global(.spottable):active .bg {
opacity: 1;
background-color: rgb(var(--sand-focus-bg-color-rgb, 230, 230, 230));
box-shadow: 0 0.75rem 0.75rem rgb(var(--sand-shadow-color-rgb, 0, 0, 0), 30%);
}
:global(.spotlight-input-touch) .checkbox:global(.light):global(.spottable):active.selected .icon {
color: rgb(var(--sand-selected-color-rgb, 230, 230, 230));
background-color: var(--sand-toggle-on-bg-color, #30ad6b);
box-shadow: 0 0 0 0.08333rem var(--sand-toggle-on-bg-color, #30ad6b);
}
:global(.spotlight-input-touch) .checkbox:global(.light):global(.spottable):active.indeterminate .icon {
color: rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
}
.checkbox:global(.light)[disabled] {
opacity: 1;
}
.checkbox:global(.light)[disabled] .icon {
opacity: 0.4;
}
.checkbox:global(.light)[disabled].selected .icon {
color: var(--sand-checkbox-disabled-selected-text-color, var(--sand-disabled-selected-color, #ffffff));
background-color: var(--sand-disabled-selected-bg-color, #788688);
box-shadow: 0 0 0 0.08333rem var(--sand-disabled-selected-bg-color, #788688);
}
:global(.spotlight-input-key) .checkbox:global(.light)[disabled]:global(.spottable):focus .bg,
:global(.spotlight-input-mouse) .checkbox:global(.light)[disabled]:global(.spottable):focus .bg {
background-color: var(--sand-disabled-focus-bg-color, #abaeb3);
}
:global(.spotlight-input-key) .checkbox:global(.light)[disabled]:global(.spottable):focus.selected .icon,
:global(.spotlight-input-mouse) .checkbox:global(.light)[disabled]:global(.spottable):focus.selected .icon {
color: var(--sand-disabled-selected-focus-color, #e6e6e6);
background-color: var(--sand-disabled-selected-focus-bg-color, #4c5059);
box-shadow: 0 0 0 0.08333rem var(--sand-disabled-selected-focus-bg-color, #4c5059);
}
:global(.spotlight-input-touch) .checkbox:global(.light)[disabled]:global(.spottable):active .bg {
background-color: var(--sand-disabled-focus-bg-color, #abaeb3);
}
:global(.spotlight-input-touch) .checkbox:global(.light)[disabled]:global(.spottable):active.selected .icon {
color: var(--sand-disabled-selected-focus-color, #e6e6e6);
background-color: var(--sand-disabled-selected-focus-bg-color, #4c5059);
box-shadow: 0 0 0 0.08333rem var(--sand-disabled-selected-focus-bg-color, #4c5059);
}
.checkbox:global(.game).standalone .bg {
position: absolute;
top: -0.625rem;
right: -0.625rem;
bottom: -0.625rem;
left: -0.625rem;
border-radius: 0.25rem;
will-change: box-shadow, box-shadow, box-shadow;
opacity: 0;
background-color: var(--sand-focus-bg-color, #6d2fa1);
}
.checkbox:global(.game):global(.spottable) .bg {
position: absolute;
top: -0.625rem;
right: -0.625rem;
bottom: -0.625rem;
left: -0.625rem;
border-radius: 0.25rem;
will-change: box-shadow, box-shadow, box-shadow;
opacity: 0;
background-color: var(--sand-focus-bg-color, #6d2fa1);
}
.checkbox:global(.game) .icon {
color: transparent;
background-color: transparent;
box-shadow: 0 0 0 0.08333rem var(--sand-checkbox-color, rgb(var(--sand-text-color-rgb, 230, 230, 230)));
}
.checkbox:global(.game).selected .icon {
color: rgb(var(--sand-selected-color-rgb, 230, 230, 230));
background-color: var(--sand-toggle-on-bg-color, #30ad6b);
box-shadow: 0 0 0 0.08333rem var(--sand-toggle-on-bg-color, #30ad6b);
}
.checkbox:global(.game).indeterminate .icon {
color: var(--sand-checkbox-color, rgb(var(--sand-text-color-rgb, 230, 230, 230)));
background-color: transparent;
box-shadow: 0 0 0 0.08333rem var(--sand-checkbox-color, rgb(var(--sand-text-color-rgb, 230, 230, 230)));
}
:global(.spotlight-input-key) .checkbox:global(.game):global(.spottable):focus .icon,
:global(.spotlight-input-mouse) .checkbox:global(.game):global(.spottable):focus .icon {
color: transparent;
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 230, 230, 230));
}
:global(.spotlight-input-key) .checkbox:global(.game):global(.spottable):focus .bg,
:global(.spotlight-input-mouse) .checkbox:global(.game):global(.spottable):focus .bg {
opacity: 1;
background-color: var(--sand-focus-bg-color, #6d2fa1);
box-shadow: 0 0.75rem 0.75rem rgb(var(--sand-shadow-color-rgb, 0, 0, 0), 30%);
}
:global(.spotlight-input-key) .checkbox:global(.game):global(.spottable):focus.selected .icon,
:global(.spotlight-input-mouse) .checkbox:global(.game):global(.spottable):focus.selected .icon {
color: rgb(var(--sand-selected-color-rgb, 230, 230, 230));
background-color: var(--sand-toggle-on-bg-color, #30ad6b);
box-shadow: 0 0 0 0.08333rem var(--sand-toggle-on-bg-color, #30ad6b);
}
:global(.spotlight-input-key) .checkbox:global(.game):global(.spottable):focus.indeterminate .icon,
:global(.spotlight-input-mouse) .checkbox:global(.game):global(.spottable):focus.indeterminate .icon {
color: rgb(var(--sand-component-focus-text-color-rgb, 230, 230, 230));
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 230, 230, 230));
}
:global(.spotlight-input-touch) .checkbox:global(.game):global(.spottable):active .icon {
color: transparent;
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 230, 230, 230));
}
:global(.spotlight-input-touch) .checkbox:global(.game):global(.spottable):active .bg {
opacity: 1;
background-color: var(--sand-focus-bg-color, #6d2fa1);
box-shadow: 0 0.75rem 0.75rem rgb(var(--sand-shadow-color-rgb, 0, 0, 0), 30%);
}
:global(.spotlight-input-touch) .checkbox:global(.game):global(.spottable):active.selected .icon {
color: rgb(var(--sand-selected-color-rgb, 230, 230, 230));
background-color: var(--sand-toggle-on-bg-color, #30ad6b);
box-shadow: 0 0 0 0.08333rem var(--sand-toggle-on-bg-color, #30ad6b);
}
:global(.spotlight-input-touch) .checkbox:global(.game):global(.spottable):active.indeterminate .icon {
color: rgb(var(--sand-component-focus-text-color-rgb, 230, 230, 230));
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 230, 230, 230));
}
.checkbox:global(.game)[disabled] {
opacity: 1;
}
.checkbox:global(.game)[disabled] .icon {
opacity: 0.4;
}
.checkbox:global(.game)[disabled].selected .icon {
color: var(--sand-checkbox-disabled-selected-text-color, var(--sand-disabled-selected-color, #4c5059));
background-color: var(--sand-disabled-selected-bg-color, #e6e6e6);
box-shadow: 0 0 0 0.08333rem var(--sand-disabled-selected-bg-color, #e6e6e6);
}
:global(.spotlight-input-key) .checkbox:global(.game)[disabled]:global(.spottable):focus .bg,
:global(.spotlight-input-mouse) .checkbox:global(.game)[disabled]:global(.spottable):focus .bg {
background-color: var(--sand-disabled-focus-bg-color, #abaeb3);
}
:global(.spotlight-input-key) .checkbox:global(.game)[disabled]:global(.spottable):focus.selected .icon,
:global(.spotlight-input-mouse) .checkbox:global(.game)[disabled]:global(.spottable):focus.selected .icon {
color: var(--sand-disabled-selected-focus-color, var(--sand-disabled-selected-bg-color, #e6e6e6));
background-color: var(--sand-disabled-selected-focus-bg-color, var(--sand-disabled-selected-color, #4c5059));
box-shadow: 0 0 0 0.08333rem var(--sand-disabled-selected-focus-bg-color, var(--sand-disabled-selected-color, #4c5059));
}
:global(.spotlight-input-touch) .checkbox:global(.game)[disabled]:global(.spottable):active .bg {
background-color: var(--sand-disabled-focus-bg-color, #abaeb3);
}
:global(.spotlight-input-touch) .checkbox:global(.game)[disabled]:global(.spottable):active.selected .icon {
color: var(--sand-disabled-selected-focus-color, var(--sand-disabled-selected-bg-color, #e6e6e6));
background-color: var(--sand-disabled-selected-focus-bg-color, var(--sand-disabled-selected-color, #4c5059));
box-shadow: 0 0 0 0.08333rem var(--sand-disabled-selected-focus-bg-color, var(--sand-disabled-selected-color, #4c5059));
}
:global(.green) .checkbox:global(.game).standalone .bg {
position: absolute;
top: -0.625rem;
right: -0.625rem;
bottom: -0.625rem;
left: -0.625rem;
border-radius: 0.25rem;
will-change: box-shadow, box-shadow, box-shadow;
opacity: 0;
background-color: var(--sand-focus-bg-color, #3ea07d);
}
:global(.green) .checkbox:global(.game):global(.spottable) .bg {
position: absolute;
top: -0.625rem;
right: -0.625rem;
bottom: -0.625rem;
left: -0.625rem;
border-radius: 0.25rem;
will-change: box-shadow, box-shadow, box-shadow;
opacity: 0;
background-color: var(--sand-focus-bg-color, #3ea07d);
}
:global(.green) .checkbox:global(.game) .icon {
color: transparent;
background-color: transparent;
box-shadow: 0 0 0 0.08333rem var(--sand-checkbox-color, rgb(var(--sand-text-color-rgb, 230, 230, 230)));
}
:global(.green) .checkbox:global(.game).selected .icon {
color: rgb(var(--sand-selected-color-rgb, 230, 230, 230));
background-color: var(--sand-toggle-on-bg-color, #30ad6b);
box-shadow: 0 0 0 0.08333rem var(--sand-toggle-on-bg-color, #30ad6b);
}
:global(.green) .checkbox:global(.game).indeterminate .icon {
color: var(--sand-checkbox-color, rgb(var(--sand-text-color-rgb, 230, 230, 230)));
background-color: transparent;
box-shadow: 0 0 0 0.08333rem var(--sand-checkbox-color, rgb(var(--sand-text-color-rgb, 230, 230, 230)));
}
:global(.spotlight-input-key) :global(.green) .checkbox:global(.game):global(.spottable):focus .icon,
:global(.spotlight-input-mouse) :global(.green) .checkbox:global(.game):global(.spottable):focus .icon {
color: transparent;
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 230, 230, 230));
}
:global(.spotlight-input-key) :global(.green) .checkbox:global(.game):global(.spottable):focus .bg,
:global(.spotlight-input-mouse) :global(.green) .checkbox:global(.game):global(.spottable):focus .bg {
opacity: 1;
background-color: var(--sand-focus-bg-color, #3ea07d);
box-shadow: 0 0.75rem 0.75rem rgb(var(--sand-shadow-color-rgb, 0, 0, 0), 30%);
}
:global(.spotlight-input-key) :global(.green) .checkbox:global(.game):global(.spottable):focus.selected .icon,
:global(.spotlight-input-mouse) :global(.green) .checkbox:global(.game):global(.spottable):focus.selected .icon {
color: rgb(var(--sand-selected-color-rgb, 230, 230, 230));
background-color: var(--sand-toggle-on-bg-color, #30ad6b);
box-shadow: 0 0 0 0.08333rem var(--sand-toggle-on-bg-color, #30ad6b);
}
:global(.spotlight-input-key) :global(.green) .checkbox:global(.game):global(.spottable):focus.indeterminate .icon,
:global(.spotlight-input-mouse) :global(.green) .checkbox:global(.game):global(.spottable):focus.indeterminate .icon {
color: rgb(var(--sand-component-focus-text-color-rgb, 230, 230, 230));
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 230, 230, 230));
}
:global(.spotlight-input-touch) :global(.green) .checkbox:global(.game):global(.spottable):active .icon {
color: transparent;
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 230, 230, 230));
}
:global(.spotlight-input-touch) :global(.green) .checkbox:global(.game):global(.spottable):active .bg {
opacity: 1;
background-color: var(--sand-focus-bg-color, #3ea07d);
box-shadow: 0 0.75rem 0.75rem rgb(var(--sand-shadow-color-rgb, 0, 0, 0), 30%);
}
:global(.spotlight-input-touch) :global(.green) .checkbox:global(.game):global(.spottable):active.selected .icon {
color: rgb(var(--sand-selected-color-rgb, 230, 230, 230));
background-color: var(--sand-toggle-on-bg-color, #30ad6b);
box-shadow: 0 0 0 0.08333rem var(--sand-toggle-on-bg-color, #30ad6b);
}
:global(.spotlight-input-touch) :global(.green) .checkbox:global(.game):global(.spottable):active.indeterminate .icon {
color: rgb(var(--sand-component-focus-text-color-rgb, 230, 230, 230));
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 230, 230, 230));
}
:global(.green) .checkbox:global(.game)[disabled] {
opacity: 1;
}
:global(.green) .checkbox:global(.game)[disabled] .icon {
opacity: 0.4;
}
:global(.green) .checkbox:global(.game)[disabled].selected .icon {
color: var(--sand-checkbox-disabled-selected-text-color, var(--sand-disabled-selected-color, #4c5059));
background-color: var(--sand-disabled-selected-bg-color, #e6e6e6);
box-shadow: 0 0 0 0.08333rem var(--sand-disabled-selected-bg-color, #e6e6e6);
}
:global(.spotlight-input-key) :global(.green) .checkbox:global(.game)[disabled]:global(.spottable):focus .bg,
:global(.spotlight-input-mouse) :global(.green) .checkbox:global(.game)[disabled]:global(.spottable):focus .bg {
background-color: var(--sand-disabled-focus-bg-color, #abaeb3);
}
:global(.spotlight-input-key) :global(.green) .checkbox:global(.game)[disabled]:global(.spottable):focus.selected .icon,
:global(.spotlight-input-mouse) :global(.green) .checkbox:global(.game)[disabled]:global(.spottable):focus.selected .icon {
color: var(--sand-disabled-selected-focus-color, var(--sand-disabled-selected-bg-color, #e6e6e6));
background-color: var(--sand-disabled-selected-focus-bg-color, var(--sand-disabled-selected-color, #4c5059));
box-shadow: 0 0 0 0.08333rem var(--sand-disabled-selected-focus-bg-color, var(--sand-disabled-selected-color, #4c5059));
}
:global(.spotlight-input-touch) :global(.green) .checkbox:global(.game)[disabled]:global(.spottable):active .bg {
background-color: var(--sand-disabled-focus-bg-color, #abaeb3);
}
:global(.spotlight-input-touch) :global(.green) .checkbox:global(.game)[disabled]:global(.spottable):active.selected .icon {
color: var(--sand-disabled-selected-focus-color, var(--sand-disabled-selected-bg-color, #e6e6e6));
background-color: var(--sand-disabled-selected-focus-bg-color, var(--sand-disabled-selected-color, #4c5059));
box-shadow: 0 0 0 0.08333rem var(--sand-disabled-selected-focus-bg-color, var(--sand-disabled-selected-color, #4c5059));
}
:global(.orange) .checkbox:global(.game).standalone .bg {
position: absolute;
top: -0.625rem;
right: -0.625rem;
bottom: -0.625rem;
left: -0.625rem;
border-radius: 0.25rem;
will-change: box-shadow, box-shadow, box-shadow;
opacity: 0;
background-color: var(--sand-focus-bg-color, #b85f23);
}
:global(.orange) .checkbox:global(.game):global(.spottable) .bg {
position: absolute;
top: -0.625rem;
right: -0.625rem;
bottom: -0.625rem;
left: -0.625rem;
border-radius: 0.25rem;
will-change: box-shadow, box-shadow, box-shadow;
opacity: 0;
background-color: var(--sand-focus-bg-color, #b85f23);
}
:global(.orange) .checkbox:global(.game) .icon {
color: transparent;
background-color: transparent;
box-shadow: 0 0 0 0.08333rem var(--sand-checkbox-color, rgb(var(--sand-text-color-rgb, 230, 230, 230)));
}
:global(.orange) .checkbox:global(.game).selected .icon {
color: rgb(var(--sand-selected-color-rgb, 230, 230, 230));
background-color: var(--sand-toggle-on-bg-color, #30ad6b);
box-shadow: 0 0 0 0.08333rem var(--sand-toggle-on-bg-color, #30ad6b);
}
:global(.orange) .checkbox:global(.game).indeterminate .icon {
color: var(--sand-checkbox-color, rgb(var(--sand-text-color-rgb, 230, 230, 230)));
background-color: transparent;
box-shadow: 0 0 0 0.08333rem var(--sand-checkbox-color, rgb(var(--sand-text-color-rgb, 230, 230, 230)));
}
:global(.spotlight-input-key) :global(.orange) .checkbox:global(.game):global(.spottable):focus .icon,
:global(.spotlight-input-mouse) :global(.orange) .checkbox:global(.game):global(.spottable):focus .icon {
color: transparent;
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 230, 230, 230));
}
:global(.spotlight-input-key) :global(.orange) .checkbox:global(.game):global(.spottable):focus .bg,
:global(.spotlight-input-mouse) :global(.orange) .checkbox:global(.game):global(.spottable):focus .bg {
opacity: 1;
background-color: var(--sand-focus-bg-color, #b85f23);
box-shadow: 0 0.75rem 0.75rem rgb(var(--sand-shadow-color-rgb, 0, 0, 0), 30%);
}
:global(.spotlight-input-key) :global(.orange) .checkbox:global(.game):global(.spottable):focus.selected .icon,
:global(.spotlight-input-mouse) :global(.orange) .checkbox:global(.game):global(.spottable):focus.selected .icon {
color: rgb(var(--sand-selected-color-rgb, 230, 230, 230));
background-color: var(--sand-toggle-on-bg-color, #30ad6b);
box-shadow: 0 0 0 0.08333rem var(--sand-toggle-on-bg-color, #30ad6b);
}
:global(.spotlight-input-key) :global(.orange) .checkbox:global(.game):global(.spottable):focus.indeterminate .icon,
:global(.spotlight-input-mouse) :global(.orange) .checkbox:global(.game):global(.spottable):focus.indeterminate .icon {
color: rgb(var(--sand-component-focus-text-color-rgb, 230, 230, 230));
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 230, 230, 230));
}
:global(.spotlight-input-touch) :global(.orange) .checkbox:global(.game):global(.spottable):active .icon {
color: transparent;
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 230, 230, 230));
}
:global(.spotlight-input-touch) :global(.orange) .checkbox:global(.game):global(.spottable):active .bg {
opacity: 1;
background-color: var(--sand-focus-bg-color, #b85f23);
box-shadow: 0 0.75rem 0.75rem rgb(var(--sand-shadow-color-rgb, 0, 0, 0), 30%);
}
:global(.spotlight-input-touch) :global(.orange) .checkbox:global(.game):global(.spottable):active.selected .icon {
color: rgb(var(--sand-selected-color-rgb, 230, 230, 230));
background-color: var(--sand-toggle-on-bg-color, #30ad6b);
box-shadow: 0 0 0 0.08333rem var(--sand-toggle-on-bg-color, #30ad6b);
}
:global(.spotlight-input-touch) :global(.orange) .checkbox:global(.game):global(.spottable):active.indeterminate .icon {
color: rgb(var(--sand-component-focus-text-color-rgb, 230, 230, 230));
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 230, 230, 230));
}
:global(.orange) .checkbox:global(.game)[disabled] {
opacity: 1;
}
:global(.orange) .checkbox:global(.game)[disabled] .icon {
opacity: 0.4;
}
:global(.orange) .checkbox:global(.game)[disabled].selected .icon {
color: var(--sand-checkbox-disabled-selected-text-color, var(--sand-disabled-selected-color, #4c5059));
background-color: var(--sand-disabled-selected-bg-color, #e6e6e6);
box-shadow: 0 0 0 0.08333rem var(--sand-disabled-selected-bg-color, #e6e6e6);
}
:global(.spotlight-input-key) :global(.orange) .checkbox:global(.game)[disabled]:global(.spottable):focus .bg,
:global(.spotlight-input-mouse) :global(.orange) .checkbox:global(.game)[disabled]:global(.spottable):focus .bg {
background-color: var(--sand-disabled-focus-bg-color, #abaeb3);
}
:global(.spotlight-input-key) :global(.orange) .checkbox:global(.game)[disabled]:global(.spottable):focus.selected .icon,
:global(.spotlight-input-mouse) :global(.orange) .checkbox:global(.game)[disabled]:global(.spottable):focus.selected .icon {
color: var(--sand-disabled-selected-focus-color, var(--sand-disabled-selected-bg-color, #e6e6e6));
background-color: var(--sand-disabled-selected-focus-bg-color, var(--sand-disabled-selected-color, #4c5059));
box-shadow: 0 0 0 0.08333rem var(--sand-disabled-selected-focus-bg-color, var(--sand-disabled-selected-color, #4c5059));
}
:global(.spotlight-input-touch) :global(.orange) .checkbox:global(.game)[disabled]:global(.spottable):active .bg {
background-color: var(--sand-disabled-focus-bg-color, #abaeb3);
}
:global(.spotlight-input-touch) :global(.orange) .checkbox:global(.game)[disabled]:global(.spottable):active.selected .icon {
color: var(--sand-disabled-selected-focus-color, var(--sand-disabled-selected-bg-color, #e6e6e6));
background-color: var(--sand-disabled-selected-focus-bg-color, var(--sand-disabled-selected-color, #4c5059));
box-shadow: 0 0 0 0.08333rem var(--sand-disabled-selected-focus-bg-color, var(--sand-disabled-selected-color, #4c5059));
}
:global(.spotlight-input-key) :global(.neutral):global(.spottable):focus .checkbox .icon,
:global(.spotlight-input-mouse) :global(.neutral):global(.spottable):focus .checkbox .icon {
color: transparent;
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
}
:global(.spotlight-input-key) :global(.neutral):global(.spottable):focus .checkbox .bg,
:global(.spotlight-input-mouse) :global(.neutral):global(.spottable):focus .checkbox .bg {
opacity: 1;
background-color: rgb(var(--sand-focus-bg-color-rgb, 230, 230, 230));
box-shadow: 0 0.75rem 0.75rem rgb(var(--sand-shadow-color-rgb, 0, 0, 0), 30%);
}
:global(.spotlight-input-key) :global(.neutral):global(.spottable):focus .checkbox.selected .icon,
:global(.spotlight-input-mouse) :global(.neutral):global(.spottable):focus .checkbox.selected .icon {
color: rgb(var(--sand-selected-color-rgb, 230, 230, 230));
background-color: var(--sand-toggle-on-bg-color, #30ad6b);
box-shadow: 0 0 0 0.08333rem var(--sand-toggle-on-bg-color, #30ad6b);
}
:global(.spotlight-input-key) :global(.neutral):global(.spottable):focus .checkbox.indeterminate .icon,
:global(.spotlight-input-mouse) :global(.neutral):global(.spottable):focus .checkbox.indeterminate .icon {
color: rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
}
:global(.spotlight-input-touch) :global(.neutral):global(.spottable):active .checkbox .icon {
color: transparent;
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
}
:global(.spotlight-input-touch) :global(.neutral):global(.spottable):active .checkbox .bg {
opacity: 1;
background-color: rgb(var(--sand-focus-bg-color-rgb, 230, 230, 230));
box-shadow: 0 0.75rem 0.75rem rgb(var(--sand-shadow-color-rgb, 0, 0, 0), 30%);
}
:global(.spotlight-input-touch) :global(.neutral):global(.spottable):active .checkbox.selected .icon {
color: rgb(var(--sand-selected-color-rgb, 230, 230, 230));
background-color: var(--sand-toggle-on-bg-color, #30ad6b);
box-shadow: 0 0 0 0.08333rem var(--sand-toggle-on-bg-color, #30ad6b);
}
:global(.spotlight-input-touch) :global(.neutral):global(.spottable):active .checkbox.indeterminate .icon {
color: rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
}
:global(.spotlight-input-key) :global(.enact-a11y-high-contrast) :global(.neutral):global(.highContrast):global(.spottable):focus .checkbox .icon,
:global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) :global(.neutral):global(.highContrast):global(.spottable):focus .checkbox .icon {
color: transparent;
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
}
:global(.spotlight-input-key) :global(.enact-a11y-high-contrast) :global(.neutral):global(.highContrast):global(.spottable):focus .checkbox .bg,
:global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) :global(.neutral):global(.highContrast):global(.spottable):focus .checkbox .bg {
opacity: 1;
background-color: rgb(var(--sand-focus-bg-color-rgb, 230, 230, 230));
box-shadow: 0 0.75rem 0.75rem rgb(var(--sand-shadow-color-rgb, 0, 0, 0), 30%);
}
:global(.spotlight-input-key) :global(.enact-a11y-high-contrast) :global(.neutral):global(.highContrast):global(.spottable):focus .checkbox.selected .icon,
:global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) :global(.neutral):global(.highContrast):global(.spottable):focus .checkbox.selected .icon {
color: rgb(var(--sand-selected-color-rgb, 230, 230, 230));
background-color: var(--sand-toggle-on-bg-color, #30ad6b);
box-shadow: 0 0 0 0.08333rem var(--sand-toggle-on-bg-color, #30ad6b);
}
:global(.spotlight-input-key) :global(.enact-a11y-high-contrast) :global(.neutral):global(.highContrast):global(.spottable):focus .checkbox.indeterminate .icon,
:global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) :global(.neutral):global(.highContrast):global(.spottable):focus .checkbox.indeterminate .icon {
color: rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
}
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) :global(.neutral):global(.highContrast):global(.spottable):active .checkbox .icon {
color: transparent;
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
}
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) :global(.neutral):global(.highContrast):global(.spottable):active .checkbox .bg {
opacity: 1;
background-color: rgb(var(--sand-focus-bg-color-rgb, 230, 230, 230));
box-shadow: 0 0.75rem 0.75rem rgb(var(--sand-shadow-color-rgb, 0, 0, 0), 30%);
}
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) :global(.neutral):global(.highContrast):global(.spottable):active .checkbox.selected .icon {
color: rgb(var(--sand-selected-color-rgb, 230, 230, 230));
background-color: var(--sand-toggle-on-bg-color, #30ad6b);
box-shadow: 0 0 0 0.08333rem var(--sand-toggle-on-bg-color, #30ad6b);
}
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) :global(.neutral):global(.highContrast):global(.spottable):active .checkbox.indeterminate .icon {
color: rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
}
:global(.spotlight-input-key) :global(.light):global(.spottable):focus .checkbox .icon,
:global(.spotlight-input-mouse) :global(.light):global(.spottable):focus .checkbox .icon {
color: transparent;
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
}
:global(.spotlight-input-key) :global(.light):global(.spottable):focus .checkbox .bg,
:global(.spotlight-input-mouse) :global(.light):global(.spottable):focus .checkbox .bg {
opacity: 1;
background-color: rgb(var(--sand-focus-bg-color-rgb, 230, 230, 230));
box-shadow: 0 0.75rem 0.75rem rgb(var(--sand-shadow-color-rgb, 0, 0, 0), 30%);
}
:global(.spotlight-input-key) :global(.light):global(.spottable):focus .checkbox.selected .icon,
:global(.spotlight-input-mouse) :global(.light):global(.spottable):focus .checkbox.selected .icon {
color: rgb(var(--sand-selected-color-rgb, 230, 230, 230));
background-color: var(--sand-toggle-on-bg-color, #30ad6b);
box-shadow: 0 0 0 0.08333rem var(--sand-toggle-on-bg-color, #30ad6b);
}
:global(.spotlight-input-key) :global(.light):global(.spottable):focus .checkbox.indeterminate .icon,
:global(.spotlight-input-mouse) :global(.light):global(.spottable):focus .checkbox.indeterminate .icon {
color: rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
}
:global(.spotlight-input-touch) :global(.light):global(.spottable):active .checkbox .icon {
color: transparent;
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
}
:global(.spotlight-input-touch) :global(.light):global(.spottable):active .checkbox .bg {
opacity: 1;
background-color: rgb(var(--sand-focus-bg-color-rgb, 230, 230, 230));
box-shadow: 0 0.75rem 0.75rem rgb(var(--sand-shadow-color-rgb, 0, 0, 0), 30%);
}
:global(.spotlight-input-touch) :global(.light):global(.spottable):active .checkbox.selected .icon {
color: rgb(var(--sand-selected-color-rgb, 230, 230, 230));
background-color: var(--sand-toggle-on-bg-color, #30ad6b);
box-shadow: 0 0 0 0.08333rem var(--sand-toggle-on-bg-color, #30ad6b);
}
:global(.spotlight-input-touch) :global(.light):global(.spottable):active .checkbox.indeterminate .icon {
color: rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 76, 80, 89));
}
:global(.spotlight-input-key) :global(.game):global(.spottable):focus .checkbox .icon,
:global(.spotlight-input-mouse) :global(.game):global(.spottable):focus .checkbox .icon {
color: transparent;
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 230, 230, 230));
}
:global(.spotlight-input-key) :global(.game):global(.spottable):focus .checkbox .bg,
:global(.spotlight-input-mouse) :global(.game):global(.spottable):focus .checkbox .bg {
opacity: 1;
background-color: var(--sand-focus-bg-color, #6d2fa1);
box-shadow: 0 0.75rem 0.75rem rgb(var(--sand-shadow-color-rgb, 0, 0, 0), 30%);
}
:global(.spotlight-input-key) :global(.game):global(.spottable):focus .checkbox.selected .icon,
:global(.spotlight-input-mouse) :global(.game):global(.spottable):focus .checkbox.selected .icon {
color: rgb(var(--sand-selected-color-rgb, 230, 230, 230));
background-color: var(--sand-toggle-on-bg-color, #30ad6b);
box-shadow: 0 0 0 0.08333rem var(--sand-toggle-on-bg-color, #30ad6b);
}
:global(.spotlight-input-key) :global(.game):global(.spottable):focus .checkbox.indeterminate .icon,
:global(.spotlight-input-mouse) :global(.game):global(.spottable):focus .checkbox.indeterminate .icon {
color: rgb(var(--sand-component-focus-text-color-rgb, 230, 230, 230));
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 230, 230, 230));
}
:global(.spotlight-input-touch) :global(.game):global(.spottable):active .checkbox .icon {
color: transparent;
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 230, 230, 230));
}
:global(.spotlight-input-touch) :global(.game):global(.spottable):active .checkbox .bg {
opacity: 1;
background-color: var(--sand-focus-bg-color, #6d2fa1);
box-shadow: 0 0.75rem 0.75rem rgb(var(--sand-shadow-color-rgb, 0, 0, 0), 30%);
}
:global(.spotlight-input-touch) :global(.game):global(.spottable):active .checkbox.selected .icon {
color: rgb(var(--sand-selected-color-rgb, 230, 230, 230));
background-color: var(--sand-toggle-on-bg-color, #30ad6b);
box-shadow: 0 0 0 0.08333rem var(--sand-toggle-on-bg-color, #30ad6b);
}
:global(.spotlight-input-touch) :global(.game):global(.spottable):active .checkbox.indeterminate .icon {
color: rgb(var(--sand-component-focus-text-color-rgb, 230, 230, 230));
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 230, 230, 230));
}
:global(.spotlight-input-key) :global(.green) :global(.game):global(.spottable):focus .checkbox .icon,
:global(.spotlight-input-mouse) :global(.green) :global(.game):global(.spottable):focus .checkbox .icon {
color: transparent;
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 230, 230, 230));
}
:global(.spotlight-input-key) :global(.green) :global(.game):global(.spottable):focus .checkbox .bg,
:global(.spotlight-input-mouse) :global(.green) :global(.game):global(.spottable):focus .checkbox .bg {
opacity: 1;
background-color: var(--sand-focus-bg-color, #3ea07d);
box-shadow: 0 0.75rem 0.75rem rgb(var(--sand-shadow-color-rgb, 0, 0, 0), 30%);
}
:global(.spotlight-input-key) :global(.green) :global(.game):global(.spottable):focus .checkbox.selected .icon,
:global(.spotlight-input-mouse) :global(.green) :global(.game):global(.spottable):focus .checkbox.selected .icon {
color: rgb(var(--sand-selected-color-rgb, 230, 230, 230));
background-color: var(--sand-toggle-on-bg-color, #30ad6b);
box-shadow: 0 0 0 0.08333rem var(--sand-toggle-on-bg-color, #30ad6b);
}
:global(.spotlight-input-key) :global(.green) :global(.game):global(.spottable):focus .checkbox.indeterminate .icon,
:global(.spotlight-input-mouse) :global(.green) :global(.game):global(.spottable):focus .checkbox.indeterminate .icon {
color: rgb(var(--sand-component-focus-text-color-rgb, 230, 230, 230));
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 230, 230, 230));
}
:global(.spotlight-input-touch) :global(.green) :global(.game):global(.spottable):active .checkbox .icon {
color: transparent;
background-color: transparent;
box-shadow: 0 0 0 0.08333rem rgb(var(--sand-component-focus-text-color-rgb, 230, 230, 230));
}
:global(.spotlight-input-touch) :global(.green) :global(.game):global(.spottable):active .checkbox .bg {
opacity: 1;
background-color: var(--sand-focus-bg-color, #3ea07d);
box-shadow: 0 0.75rem 0.75rem rgb(var(--sand-shadow-color-rgb, 0, 0, 0), 30%);
}
:global(.spotlight-input-touch) :global(.green) :global(.game):global(.spottable):active .checkbox.selected .icon {
color: rgb(var(--sand-selected-color-rgb, 230, 230, 230));
background-color: var(--sand-toggle-on-bg-color, #30ad6b);
box-shadow: 0 0 0 0.08333rem var(--sand-toggle-on-bg-color, #30ad6b);
}
:global(.spotlight-input-touch) :global(.green) :global(.game):global(.spottable):act