/* custom forms styles */
.customForm-hidden {
	display: block !important;
	position: absolute !important;
	left:-9999px !important;
}
/* custom select styles */
.select-area {
	position: relative;
	overflow: hidden;
	margin: 0;
	height: 47px;
	width: 100% !important;
	background: #fff;
	cursor: pointer;
	border-radius: 23px;
}
.select-area .select-opener {
	position: absolute;
	z-index: 3;
	top: 0;
	bottom: 0;
	right: 0;
	width: 47px;
	cursor:pointer;
}
.select-area .select-opener:before{
	content: '';
	position: absolute;
	z-index: 20;
	top: 50%;
	left: 50%;
	width: 15px;
	height: 10px;
	background: url(/sf_images/arrow-bottom-gray-01.svg) no-repeat;
	background-size: 15px 10px;
	margin: -3px 0 0 -8px;
}
.select-area .center {
	white-space: nowrap;
	position: relative;
	overflow: hidden;
	text-overflow: ellipsis;
	cursor: pointer;
	display: block;
	color: #6e6e6e;
	padding: 12px 0 12px 22px;
	z-index: 2;
	font: 18px/23px 'ClearSansRegular', sans-serif;
	margin: 0 47px 0 0;
}
.options-overflow div.drop-list {
	overflow: auto;
}
.options-hidden {
	position: absolute !important;
	top: -9999px !important;
	left: -9999px !important;
}
.select-options {
	z-index: 3000;
	position: absolute;
}
.select-options .drop-holder {
	background: #f2f1f1;
	overflow: hidden;
	position: relative;
	border-radius: 23px;
}
.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 li {
	overflow: hidden;
	float: left;
	width: 100%;
	font: 18px/23px 'ClearSansRegular', sans-serif;
}
.select-options ul a {
	text-decoration: none;
	cursor: pointer;
	display: block;
	overflow: hidden;
	padding: 10px 22px;
	color: #6e6e6e;
}
.select-options ul li:first-child a{border-radius: 23px 23px 0 0;}
.select-options ul li:last-child a{border-radius: 0 0 23px 23px;}
.select-options .item-selected a {
	text-decoration: none;
	background: #53ba9a;
	color: #fff;
}
.select-options ul a:hover {text-decoration: none;}
.select-options ul a:focus {outline: none;}
/* custom checkbox styles */
.chk-area {
	overflow: hidden;
	height: 17px;
	width: 17px;
}
.chk-area span {
	background:#fff;
	display: block;
	position:relative;
	width: 17px;
	height: 17px;
	border:1px solid #444;
	border-radius:3px;
}
.chk-area span:before {
	position:absolute;
	left:2px;
	top:2px;
	right:2px;
	bottom:2px;
	opacity:0;
	background:#444;
	border-radius:3px;
	content:"";
	transition:all .3s;	-webkit-transition:all .3s;
}
.chk-checked span:before {
	opacity:1;
}
/* radio button styles */
.rad-area {
	float: left;
	overflow: hidden;
	height: 17px;
	width: 17px;
	background: #fff;
	border: solid 1px #444;
	border-radius: 100%;
	position: relative;
}
.rad-area span {
	display: block;
	width: 9px;
	height: 9px;
	border-radius: 100%;
	background: #fff;
	margin: 3px auto 0;
	position: relative;
	-webkit-transition: all .3s;
			transition: all .3s;
}
.rad-checked span {background: #444;}