.ios-ui-select {
	background: #bb2929;
	border: none;
	height: 26px;
	-webkit-border-radius: 18px;
	border-radius: 18px;
	width: 60px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-box-shadow: none;
	box-shadow: none;
	cursor: pointer;
	position: relative;
	display: inline-block;
}
.ios-checkbox-wrap{
	display: inline-block;
}
.ios-ui-select.checked {
	-webkit-box-shadow: inset 0 0 0 36px #6ddc5f;
	box-shadow: inset 0 0 0 36px #6ddc5f;
}

.ios-ui-select.checked .inner {
	left: 37px;
}


.ios-ui-select .yes, .ios-ui-select .no{
	position: relative;
	top: 5px;
	left: 10px;
	font-weight: bold;
	color: #FFF;
}
.ios-ui-select .no{
	left: 25px;
}

.ios-ui-select .no{
	display: inline;
}
.ios-ui-select .yes{
	display: none;
}


.ios-ui-select.checked .no{
	display: none;
}
.ios-ui-select.checked .yes{
	display: inline;
}

.ios-ui-select .inner {
	width: 20px;
	height: 20px;
	position: absolute;
	top: 3px;
	left: 3px;
	-webkit-border-radius: 100%;
	border-radius: 100%;
	background: white;
	-webkit-transition: all 350ms cubic-bezier(0, 0.89, 0.44, 1);
	-moz-transition: all 350ms cubic-bezier(0, 0.89, 0.44, 1);
	-o-transition: all 350ms cubic-bezier(0, 0.89, 0.44, 1);
	transition: all 350ms cubic-bezier(0, 0.89, 0.44, 1);
	-webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.1);
}
