.pcss3f label:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 34px;
	height: 27px;
}

/**/
/* radios and checkboxes */
/**/
.pcss3f input[type="radio"],
.pcss3f input[type="checkbox"] {
	position: absolute;
	left: -9999px;
}
.pcss3f input[type="radio"] + label {
	position: relative;
	overflow: visible;
	padding: 5px 0 5px 5px;
	color:#a561a2;
	font-size:15px;
	font-size:1.5rem;
	line-height:17px;
	line-height:1.7rem;
	height:17px;
	margin-left:5px;
	width:85px;
	background:#f9f7ff;
	cursor:pointer;
}
.pcss3f input[type="checkbox"] + label {
	position: relative;
	overflow: visible;
	padding: 5px 1% 5px 1%;
	color:#fff;
	font-size:15px;
	font-size:1.5rem;
	line-height:17px;
	line-height:1.7rem;
	height:17px;
	width:98%;
	background:transparent;
	cursor:pointer;
	margin-bottom:10px;
}
.pcss3f input[type="radio"] + label:before {
	content: '';
	position: absolute;
	top: 50%;
	right: 5px;
	width: 18px;
	height: 18px;
	margin-top: -9px;
}
.pcss3f input[type="radio"]:checked + label:after {
	content: '';	
	position: absolute;
	top: 50%;
	right: 9px;
	display: block;
	width: 10px;
	height: 10px;
	margin: -5px 0 0 5px;
}
.pcss3f input[type="checkbox"] + label:before {
	content: '';
	position: absolute;
	top: 50%;
	left:0;
	width:25px;
	height:25px;
	margin-top: -14px;
}
.pcss3f input[type="checkbox"]:checked + label:after {
	content: '';	
	position: absolute;
	top: 50%;
	left: 5px;
	display: block;
	width: 17px;
	height: 17px;
	margin-top:-9px;
}
.pcss3f input[type="radio"] + label:before,
.pcss3f input[type="checkbox"] + label:before {
	background: transparent;
	border:1px solid #ff7bac;
}
.pcss3f input[type="radio"]:checked + label:after,
.pcss3f input[type="checkbox"]:checked + label:after {
	background: #fff;
}