.switch {
	position: relative;
	height: 41px;
	width: 260px;
	background: #fbfbfb;
	border-radius: 10px;
	border-width: 1px;
	border-color: #d2d5dd;
	border-style: solid;
}
.switch-label {
	position: relative;
	z-index: 2;
	padding-top: 11px;
	float: left;
	width: 128px;
	font-size: 12px;
	color: #0d0d0d;
	text-align: center;
	cursor: pointer;
	height: 100%;
}
.switch-label:active {
  	font-weight: bold;
  	color:#fff;
}
.switch-label-off {
  	padding-left: 2px;
}
.switch-label-on {
  	padding-right: 2px;

}
.switch-input {
  	display: none;
}
.switch-input:checked + .switch-label {
  	font-weight: bold;
  	color:#fff;
}
.switch-input:checked + .switch-label-on ~ .switch-selection {
  	left: 130px;
  /* Note: left: 50% doesn't transition in WebKit */
}
.switch-selection {
  	display: block;
  	position: absolute;
  	z-index: 1;
  	top: 0px;
  	left: 0px;
  	width: 130px;
  	height: 39px;
  	background: green;
  	border-radius: 10px;
}