.divSwitch
{
	background-color:#dddddd;
	border-radius:8px;
	cursor:pointer;
	height:16px;
	position:relative;
	transition:background-color 0.25s;
	width:36px;
}

.divSwitch.on
{
	background-color:rgba(37, 34, 92, 0.5);
}

.divSwitch:after
{
	background-color:#ffffff;
	border-radius:50%;
	box-shadow:1px 1px 5px 0px rgba(0, 0, 0, 0.2);
	content:"";
	height:20px;
	left:-2px;
	position:absolute;
	top:-2px;
	transition:background-color 0.25s, left 0.25s;
	width:20px;
}

.divSwitch.on:after
{
	background-color:#25225c;
	left:18px;
}