.toggle-button {
	position: relative;
	display: inline-block;
	color: #000;
}
.toggle-button label {
	display: inline-block;
	text-transform: uppercase;
	cursor: pointer;
	text-align: center;
	width: auto;
	height: 35px;
	line-height: 35px;
	border: 1px solid #e8e8e8;
	background: #f5f5f5;	`
	background: transparent;	
	border-radius: 35px;
	padding: 0 16px;	
}
.toggle-button input {
	display: none;
}
.toggle-button input:checked + label {
	background: #70ade1;
	border: 1px solid #70ade1;
	color: #fff;
}