/* custom forms styles */
.customForm-hidden {
	display: block !important;
	position: absolute !important;
	left:-9999px !important;
}
/* custom checkbox styles */
.chk-area {
	margin: 0 10px 0 0;
	float: left;
	height: 19px;
	width: 19px;
	border:2px solid #9a9a9a;
	position:relative;
	border-radius:1px;
}
.chk-area span {
	position:absolute;
	width: 21px;
	height:16px;
	opacity:0;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	background:url(/sf_images/ico03.svg) no-repeat;
	background-size: 100% auto;
	top:-3px;
	right:-8px;
}
.chk-checked span {opacity:1;}
/* radio button styles */
.rad-area {
	margin: 1px 10px 0 0;
	float: left;
	height: 17px;
	width: 17px;
	border:2px solid #9a9a9a;
	border-radius:100%;
	padding:3px;
}
.rad-area span {
	display: block;
	height:100%;
	border-radius:100%;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.rad-checked span {background:#5888c6;}
/* custom select styles */
.select-area {
	position: relative;
	overflow: hidden;
	margin: 0;
	height: 52px;
	width:auto !important;
	background:#f4f4f4;
	border-radius:26px;
}
.select-area .select-opener {
	position: absolute;
	top: 50%;
	right: 24px;
	width: 0;
	height:0;
	cursor:pointer;
	border:5px solid transparent;
	border-top:6px solid #4a4a4a;
	z-index: 115;
	margin:-3px 0 0;
	-webkit-transition: all 0.3s ease-out;	transition: all 0.3s ease-out;
}
.select-active .select-opener {
	-ms-transform: rotate(180deg);	-webkit-transform: rotate(180deg);	transform: rotate(180deg);
	margin:-8px 0 0;
}
.select-area .center {
	white-space: nowrap;
	position: relative;
	overflow:hidden;
	text-overflow:ellipsis;
	cursor: default;
	display: block;
	padding:15px 20px;
	color:#5e5e5e;
	font-size:16px;
	line-height:22px;
	z-index: 115;
	margin-right:50px;
}
.options-overflow div.drop-list {overflow: auto;}
.options-hidden {
	position: absolute !important;
	top: -9999px !important;
	left: -9999px !important;
}
.select-options {
	z-index: 190;
	position: absolute;
	padding:2px 0;
}
.select-options .drop-holder {
	background:#f4f4f4;
	overflow:hidden;
	position:relative;
	border-radius:26px;
	-webkit-box-shadow:3px 3px 6px rgba(0, 0, 0, 0.15);	box-shadow:2px 2px 6px rgba(0, 0, 0, 0.15);
}
.select-options div.drop-list {width: 100%;}
.select-options ul {
	overflow: hidden;
	list-style: none;
	width: 100%;
	padding: 0;
	margin: 0;
	position:relative;
	z-index:2;
}
.select-options ul a {
	text-decoration: none;
	cursor: default;
	display: block;
	overflow: hidden;
	padding:10px 20px;
	color:#5e5e5e;
	font-size:16px;
	line-height:20px;
	position:relative;
}
.select-options .item-selected a {
	text-decoration: none;
	background: #5888c6;
	z-index:3;
	color:#fff;
}
.select-options ul a:hover {text-decoration: none;}
.select-options ul a:focus {outline: none;}