/** List group overrides */
/** Badge overrides */
.toggle {
  position: relative;
  display: inline-block;
  height: 23px;
  width: 42px;
  font-size: 12px;
  line-height: 1.5;
  color: #555555;
  border: 0;
  -webkit-appearance: none;
  cursor: pointer;
  background: 0;
}
.toggle:focus > .toggle-content {
  outline: -webkit-focus-ring-color auto 5px;
}
.toggle:focus,
.toggle .toggle-content:focus {
  outline: none;
}
.toggle .toggle-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.toggle .toggle-bg {
  left: 0;
  top: 4px;
  width: 40px;
  height: 14px;
  border-radius: 20px;
  position: absolute;
  display: inline-block;
  -webkit-transition: all ease 500ms;
  -o-transition: all ease 500ms;
  transition: all ease 500ms;
  -webkit-box-shadow: inset 0 0 3px rgba(106, 106, 106, 0.35);
  box-shadow: inset 0 0 3px rgba(106, 106, 106, 0.35);
}
.toggle .toggle-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 13px;
  background-color: #ffffff;
  border: 1px solid #e2e2e2;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16);
  -webkit-transition: all ease 500ms;
  -o-transition: all ease 500ms;
  transition: all ease 500ms;
}
.toggle .toggle-btn .toggle-on,
.toggle .toggle-btn .toggle-off {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 20px;
  text-align: center;
  -webkit-transition: opacity ease 500ms;
  -o-transition: opacity ease 500ms;
  transition: opacity ease 500ms;
}
.toggle .toggle-btn .toggle-on {
  opacity: 0;
  filter: alpha(opacity=0);
}
.toggle .toggle-btn.on {
  left: 20px;
}
.toggle .toggle-btn.on .toggle-on {
  opacity: 100;
  filter: alpha(opacity=10000);
}
.toggle .toggle-btn.on .toggle-off {
  opacity: 0;
  filter: alpha(opacity=0);
}
.toggle .toggle-btn.is-loading {
  left: 50%;
  transform: translatex(-50%);
}
.toggle.disabled,
.toggle.disabled [class^='icon-'],
.toggle.disabled [class*=' icon-'] {
  cursor: not-allowed;
}
.toggle:hover:not(.disabled) {
  color: #333333;
}
.toggle:hover:not(.disabled) .toggle-btn {
  background-color: #eeeeee;
}
.toggle.disabled {
  color: #9e9ea6;
}
.toggle.toggle-lg {
  width: 52px;
  min-width: 50px;
  height: 30px;
  font-size: 14px;
}
.toggle.toggle-lg .toggle-bg {
  top: 4px;
  left: 3px;
  width: 45px;
  height: 20px;
}
.toggle.toggle-lg .toggle-btn {
  width: 26px;
  height: 26px;
}
.toggle.toggle-lg .toggle-btn .toggle-on,
.toggle.toggle-lg .toggle-btn .toggle-off {
  line-height: 25px;
}
.toggle.toggle-lg .toggle-btn.on {
  left: 25px;
}
.toggle.toggle-lg .toggle-btn.is-loading {
  left: 12px;
}
.toggle-on-disable-icon .toggle-on {
  display: none !important;
}

