.btn-switch{
	float: right;
	height: 0 !important;
	width: 0 !important;
	visibility: hidden;
}
.switch {
	margin-bottom: 20px;
	font-size: 1.3rem;
}
.switch label {
	cursor: pointer;
	text-indent: -9999px;
	width:  80px;
	height: 30px;
	background: grey;
	display: inline-block;
	border-radius: 100px;
	position: relative;
}

.switch label:after {
	content: '';
	position: absolute;
	top: 5px;
	left: 5px;
	width: 20px;
	height: 20px;
	background: #fff;
	border-radius: 90px;
	transition: 0.3s;
}

input:checked + label {
	background: #bada55;
}

input:checked + label:after {
	left: calc(100% - 5px);
	transform: translateX(-100%);
}

label:active:after {
	width: 130px;
}