@keyframes focus-shadow-pulse-inset {
  0% {
    box-shadow: inset 0 0 0 3px rgba( 0, 120, 212 ,  0.35 );
    box-shadow: inset 0 0 0 3px rgba( var(--palette-primary,0, 120, 212) ,  0.35 ); }
  50% {
    box-shadow: inset 0 0 0 3px rgba( 0, 120, 212 ,  0.15 );
    box-shadow: inset 0 0 0 3px rgba( var(--palette-primary,0, 120, 212) ,  0.15 ); }
  100% {
    box-shadow: inset 0 0 0 3px rgba( 0, 120, 212 ,  0.35 );
    box-shadow: inset 0 0 0 3px rgba( var(--palette-primary,0, 120, 212) ,  0.35 ); } }

/**
 * Browser specific mixin's
 */
.bolt-toggle-button {
  align-items: center;
  color: rgba(0, 0, 0, .9);
  color: var(--text-primary-color,rgba(0, 0, 0, .9));
  display: inline-flex;
  white-space: nowrap; }

.bolt-toggle-button-pill {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, .55);
  border: 1px solid var(--text-secondary-color,rgba(0, 0, 0, .55));
  align-items: center;
  border-radius: 12px;
  display: flex;
  justify-content: flex-start;
  padding: 3px;
  width: 40px;
  height: 20px; }
  .bolt-toggle-button-pill:focus {
    outline: none; }
    @media screen and (-ms-high-contrast: active) {
      .bolt-toggle-button-pill:focus {
        border-color: highlight; } }
    @media screen and (-ms-high-contrast: black-on-white) {
      .bolt-toggle-button-pill:focus {
        outline: 1px solid highlight;
        outline-offset: 1px; } }

.bolt-toggle-button-icon {
  border: 1px solid transparent;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, .55);
  background-color: var(--text-secondary-color,rgba(0, 0, 0, .55));
  height: 12px;
  width: 12px;
  transition: transform 0.1s; }

.bolt-toggle-button.disabled {
  cursor: default; }

.bolt-toggle-button.disabled .bolt-toggle-button-pill {
  border-color: rgba( 200, 200, 200 ,  1 );
  border-color: rgba( var(--palette-neutral-20,200, 200, 200) ,  1 ); }
  @media screen and (-ms-high-contrast: active) {
    .bolt-toggle-button.disabled .bolt-toggle-button-pill {
      border-color: graytext; } }

.bolt-toggle-button.disabled .bolt-toggle-button-icon {
  background-color: rgba( 200, 200, 200 ,  1 );
  background-color: rgba( var(--palette-neutral-20,200, 200, 200) ,  1 ); }

.bolt-toggle-button.checked .bolt-toggle-button-pill {
  background-color: rgba(0, 120, 212, 1);
  background-color: var(--communication-background,rgba(0, 120, 212, 1));
  border-color: transparent; }
  @media screen and (-ms-high-contrast: active) {
    .bolt-toggle-button.checked .bolt-toggle-button-pill {
      background-color: highlight; } }

.bolt-toggle-button.checked .bolt-toggle-button-icon {
  background-color: rgba( 255, 255, 255 ,  1 );
  background-color: rgba( var(--palette-neutral-0,255, 255, 255) ,  1 );
  -webkit-transform: translateX(20px);
  transform: translateX(20px); }

.bolt-toggle-button.checked.disabled .bolt-toggle-button-pill {
  background-color: rgba( 200, 200, 200 ,  1 );
  background-color: rgba( var(--palette-neutral-20,200, 200, 200) ,  1 ); }

.bolt-toggle-button-text {
  padding-left: 8px; }

.bolt-focus-visible .bolt-toggle-button-pill.bolt-focus-treatment:focus {
  animation: ms-focus-shadow-pulse 4s ease-in-out infinite;
  box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.35);
  box-shadow: 0 0 0 3px var(--focus-pulse-max-color,rgba(0, 120, 212, 0.35));
  border-color: rgba(0, 120, 212, 1);
  border-color: var(--communication-background,rgba(0, 120, 212, 1));
  border-radius: 12px; }
  @media screen and (-ms-high-contrast: active) {
    .bolt-focus-visible .bolt-toggle-button-pill.bolt-focus-treatment:focus {
      animation: none; } }

.bolt-focus-visible .checked .bolt-toggle-button-pill.bolt-focus-treatment:focus {
  border-color: rgba(255, 255, 255, 1);
  border-color: var(--background-color,rgba(255, 255, 255, 1)); }
  @media screen and (-ms-high-contrast: active) {
    .bolt-focus-visible .checked .bolt-toggle-button-pill.bolt-focus-treatment:focus {
      border-color: highlight; } }
