.d-switch {
  display: inline-block;
  font-size: 0.9em;
  position: relative;
  overflow: hidden;
  margin: 3px;
  white-space: nowrap;
  border: 1px solid #c8c8c8;
}
.d-switch.d-focused {
  outline: 0;
  box-shadow: 0 0 8px rgba(102, 175, 233, 0.6);
  border-color: #66afe9;
}
.d-switch.d-disabled {
  opacity: 0.6;
}
.-d-switch-block {
  display: inline-block;
  position: absolute;
  top: 0;
  border-width: 0px;
}
.-d-switch-inner {
  position: absolute;
  width: 30px;
  top: 0;
  border-width: 0px;
}
.d-switch-leading {
  background: #5cb85c;
  font-weight: bold;
  color: #ffffff;
  right: 50%;
  text-align: center;
}
.d-switch.d-rtl .d-switch-leading {
  left: 50%;
  right: auto;
}
.d-switch-trailing {
  background: #eeeeee;
  font-weight: bold;
  color: #555555;
  left: 50%;
  text-align: center;
}
.d-switch.d-rtl .d-switch-trailing {
  right: 50%;
  left: auto;
}
.-d-switch-knob {
  width: 30px;
  left: 50%;
  margin-left: -15px;
  z-index: 5;
  box-shadow: 0 1px 6px #a2a2a2;
  background: #eeeeee;
  border: 1px solid transparent;
  top: -1px;
}
.-d-switch-knobglass {
  display: inline-block;
  position: absolute;
  width: 30px;
  height: 100%;
  z-index: 10;
}
.-d-switch-inner-wrapper {
  position: relative;
  display: inline-block;
}
.-d-switch-push {
  display: inline-block;
  width: 0;
  margin-left: 0px;
}
.-d-switch-input {
  position: absolute;
  opacity: 0;
  z-index: 1;
  height: 100%;
  margin: 0px;
}
.-d-switch-input:checked + .-d-switch-push {
  margin-left: -30px;
}
.-d-switch-transition {
  -webkit-transition: margin-left 100ms ease-in, width 100ms ease-in;
  transition: margin-left 100ms ease-in, width 100ms ease-in;
}
.d-switch-width {
  width: 70px;
}
.d-switch-rounded {
  border-radius: 15px;
}
