.toggle-button{min-height:24px;display:flex;gap:12px}.toggle-button label{display:flex;align-items:center;cursor:pointer}.toggle-button span{flex-grow:1}.toggle-button b{flex-shrink:0;display:flex;width:40px;height:24px;border-radius:12.5px;position:relative;background-color:#333;transition:background-color .15s;z-index:1;overflow:hidden}.toggle-button b:before{content:"";position:absolute;transition:.15s}.toggle-button input[type=checkbox]~b:before{top:0;bottom:0;left:0;margin:4px;width:16px;height:16px;border-radius:50%;background-color:#999;transition:.3s}.toggle-button input[type=checkbox]:checked~b{background-color:#f16436}.toggle-button input[type=checkbox]:checked~b:before{transform:translateX(16px);background-color:#e5e5e5}.toggle-button:hover input:not(:disabled)~b{background-color:#4d4d4d}.toggle-button:hover input[type=checkbox]:checked~b{background-color:#ff784d}