
.switch {
	position: relative;
	display: inline-block;
	width: 2rem; /* 60px*/
	height: 1rem; /* 34px*/
	top:.1rem;
}

.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}


.switch-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.switch-slider:before{
	position: absolute;
	content: "";
	height: .8rem; /*height: 26px;*/
	width: .8rem; /*width: 26px;*/
	left:0.1rem; 	/*left: 4px;*/
	bottom:0.1rem; /*bottom: 4px;*/
	
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked + .switch-slider{
	background-color: #2196F3;
}

input:focus + .switch-slider{
	box-shadow: 0 0 1px #2196F3;
}

input:checked + .switch-slider:before {
	-webkit-transform: translateX(1rem);
	-ms-transform: translateX(1rem);
	transform: translateX(1rem);
}

.switch-slider.round{
	border-radius: 1.1rem;
}

.switch-slider.round:before {
	border-radius: 50%;
}

