/* toggleswitch.css - stub */
.toggle-switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background: #2c2e33; border-radius: 24px; transition: 0.3s; }
.toggle-slider:before { content: ""; position: absolute; height: 18px; width: 18px; left: 3px; bottom: 3px; background: #c1c2c5; border-radius: 50%; transition: 0.3s; }
input:checked + .toggle-slider { background: #339af0; }
input:checked + .toggle-slider:before { transform: translateX(20px); }
