/*
 * CSS- TOGGLE SWITCH
 */

.disableClickOnToggle {
	pointer-events: none;
	cursor: default;
}

.switch-toggle {
	display: block;
	height: 28px;
	position: relative;
	overflow: visible;
	padding: 0;
	margin-left: 0px;
	background-color: #bbbbbb;
	border-radius: 15px;
	color: white;
}
.switch-input:focus, .switch-input:hover {
	background-color: #666666;
}
.switch-toggle a {
	display: block;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	position: absolute;
	right: 50%;
	z-index: 1;
	width: 40%;
	height: 80%;
	margin: 2.8px;
	background-color: white;
	border-radius: 15px;
}
.switch-toggle input {
	position: absolute;
	opacity: 0;
	z-index: 5;
	pointer-events: none;
}
.switch-toggle input:checked ~ a, input:checked ~ span {
	right: 0%;
}
.switch-toggle > span {
	opacity: 0;
	position: absolute;
	right: 50%;
	z-index: 5;
	width: 40%;
	height: 80%;
	margin: 2.8px;
	border-radius: 15px;
}
