/* custom forms styles */
.customForm-hidden {
	display: block !important;
	position: absolute !important;
	left:-9999px !important;
}
/* custom checkbox styles */
.chk-area {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 10px 0 0;
	float: left;
	height: 20px;
	width: 20px;
	position:relative;
	background: #eeeeee;
}
.chk-area span {
	display: block;
	position: absolute;
	top: 0;
	left: 5px;
	width: 15px;
	height: 15px;
	background: url(../images/ico-checkbox-001.png) no-repeat;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	opacity: 0;
	visibility: hidden;
}
.chk-checked span {
	opacity: 1;
	visibility: visible;
}
/* radio button styles */
.rad-area {
	float: left;
	overflow: hidden;
	height: 20px;
	width: 20px;
	border-radius: 100%;
	position: relative;
	margin-right: 10px;
	background: #eee;
}
.rad-area span {
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	margin: 5px auto 0;
	position: relative;
	-webkit-transition: all .3s;
			transition: all .3s;
}
.rad-checked span {background: #af0335;}
/* custom select styles */
.select-area {
	position: relative;
	overflow: hidden;
	margin: 0;
	height: 44px;
	width: auto !important;
	background: #eee;
	cursor: pointer;
	text-align: left;
	border-radius: 22px;
	border: 2px solid #eee;
}
.select-area .select-opener {
	position: absolute;
	z-index: 3;
	top: 0;
	bottom: 0;
	right: 0;
	width: 50px;
	cursor: pointer;
	color: #555;
	text-decoration: none;
}
.select-area .select-opener:before{
	content: '\f107';
	position: absolute;
	z-index: 20;
	top: 50%;
	left: 50%;
	margin: -14px 0 0 -9px;
	font: 25px/27px 'FontAwesome';
}
.select-area .center {
	white-space: nowrap;
	position: relative;
	overflow: hidden;
	text-overflow: ellipsis;
	cursor: pointer;
	display: block;
	color: #555;
	padding: 10px 0 10px 19px;
	z-index: 2;
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
	margin: 0 50px 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: #fff;
	overflow:hidden;
	position:relative;
	border: 3px solid #eee;
	-webkit-box-shadow: 0 5px 8px rgba(0, 0, 0, .05);
			box-shadow: 0 5px 8px rgba(0, 0, 0, .05);
}
.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-size: 16px;
	line-height: 20px;
}
.select-options ul a {
	text-decoration: none;
	cursor: pointer;
	display: block;
	overflow: hidden;
	padding: 12px 19px;
	color: #555;
}
.select-options .item-selected a {
	text-decoration: none;
	background: #fff;
	color: #adadad;
}
.select-options ul a:hover {text-decoration: none;}
.select-options ul a:focus {outline: none;}