.switch-body {
  border: 0px solid rgb(220, 220, 220);
  width: 38px;
  height: 16px;
  border-radius: 20px;
  padding: 3px;
  margin: 5px 2px;
  cursor: pointer;
  transition-duration: 200ms;
}

.switch-body .switch-circular {
  background-color: rgb(255, 255, 255);
  width: 16px;
  height: 16px;
  border-radius: 20px;
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.42,0,0.58,1);
}

.switch-body-off {
  background-color: rgb(210, 210, 210);
}

.switch-body-on {
  background-color: rgb(0, 153, 250);
}