@charset "UTF-8";
.toggle-modern {
  position: relative;
  width: 150px;
  height: 28px;
  margin-top: 15px;
  /*background: linear-gradient(#c0c5c9, #a1a9af);*/
  background: linear-gradient(#4894cd, #2852a6);
  border-radius: 4px;
  box-shadow: inset 0 2px 1px rgba(0,0,0,.2),
              inset 0 0 0 1px rgba(0,0,0,.15);
  cursor: pointer;
  user-select: none;
  float: right;
}

.toggle-modern .label {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  line-height: 28px;
  font-size: 11px;
  text-align: center;
  color: #fff;
  text-shadow: 1px 1px rgba(0,0,0,.2);
  pointer-events: none;
}

.toggle-modern .label.on { left: 0; }
.toggle-modern .label.off { right: 0; }

.toggle-modern .knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(50% - 4px);
  height: 24px;
  background: linear-gradient(#c0c6c9, #81898f);
  border-radius: 3px;
  box-shadow: inset 0 2px 0 rgba(255,255,255,.2),
              inset 0 0 0 1px rgba(0,0,0,.2),
              1px 1px 2px rgba(0,0,0,.2);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}

.toggle-modern[aria-pressed="false"] .knob {
  transform: translateX(76px);
}


