.onoffswitch {
	position: relative;
	width: 90px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

.onoffswitch-checkbox {
	display: none;
}

.onoffswitch-label {
	display: block;
	overflow: hidden;
	cursor: pointer;
	height: 30px;
	padding: 0;
	line-height: 30px;
	border: 1px solid #bfbfbf;
	border-radius: 60px;
	background-color: #f6f6f6;
	transition: background-color 0.3s ease-in;
	min-height: auto;
}

.onoffswitch-label:before {
	content: "";
	display: block;
	width: 30px;
	margin: 0px;
	background: #FFFFFF;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 58px;
	border: 1px solid #b1b1b1;
	border-radius: 60px;
	transition: all 0.3s ease-in 0s;
}

.onoffswitch-checkbox:checked+.onoffswitch-label {
	background-color: #46ba00;
}

.onoffswitch-checkbox:checked+.onoffswitch-label,.onoffswitch-checkbox:checked+.onoffswitch-label:before
	{
	border-color: #46ba00;
}

.onoffswitch-checkbox:checked+.onoffswitch-label:before {
	right: 0px;
}




label.onoffswitch-label {
	min-height: initial !important;
	float: none !important;
	position: static !important;
	height: 32px;
	width: 100% !important;
}

.onoffswitch {
	display: inline-block;
	top: -6px;
}

.toggle_box {
	margin-top: 32px;
	display: inline-block;
	padding-top: 6px;
}
span.label {
	cursor: pointer;
}