div.checkbox.switcher label {
	 padding-top: 5px;
}

div.container.refresh_button_bar {
	float: left;
	width: 100%;
}

 div.checkbox.switcher label * {
	 vertical-align: middle;
}

 div.checkbox.switcher label input {
	 display: none;
}

 div.checkbox.switcher label input + span {
	 position: relative;
	 display: inline-block;
	 margin-right: 10px;
	 width: 56px;
	 height: 28px;
	 background: #f2f2f2;
	 border: 1px solid #eee;
	 border-radius: 50px;
	 /*transition: all 0.3s ease-in-out;*/
}

 div.checkbox.switcher label input + span p {
	 position: absolute;
	 display: block;
	 width: 50%;
	 height: 100%;
	 background: #fff;
	 border-radius: 50%;
	 /*transition: all 0.3s ease-in-out;*/
	 left: 0;
}

 div.checkbox.switcher label input:checked + span {
	 background: #269bff;
	 border-color: #269bff;
}

 div.checkbox.switcher label input:checked + span p {
	 left: 50%;
}

 