/* custom forms styles */
.customForm-hidden {
	display: block !important;
	position: absolute !important;
	left:-9999px !important;
}
/* custom checkbox styles */
.chk-area {
	margin:0 15px 0 0;
	float: left;
	height: 26px;
	width: 27px;
	border: solid 1px #fff;
	border-radius: 4px;
	position: relative;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
}
.chk-area.customForm-class-type2{
	background: #fff;
	border-color: #ccc;
}
.chk-area.customForm-class-type3{
	background: #fff;
	border-color: #ccc;
	width: 25px;
	height: 24px;
}
.chk-area span {
	position: absolute;
	top: 0;
	left: 0;
	margin: 2px 0 0 6px;
	width: 20px;
	height: 16px;
	opacity: 0;
	-webkit-transition: all .3s;
			transition: all .3s;
	background: url(../../Images/GUI/ico-check-gray-01.png) no-repeat;
	background-size: 20px 16px;
}
.chk-area.customForm-class-type2 span{background-image: url(../../Images/GUI/ico-check-green-01.png);}
.chk-area.customForm-class-type3 span{
	background-image: url(../../Images/GUI/ico-check-green-01.png);
	margin-left: 5px;
}
.chk-checked span {opacity: 1;}
/* radio button styles */
.rad-area {
    margin: 0 15px 0 0;
    float: left;
    overflow: hidden;
    height: 18.8px;
    width: 18.8px;
    border: solid 1px #ccc;
    border-radius: 100%;
    position: relative;
    background: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.rad-area span {
	position: absolute;
	border-radius: 100%;
	background: #2d9eae;
	top: -2px;
	/*bottom: 7px;*/
	left: -2px;
	/*right: 7px;*/
	opacity: 0;
	-webkit-transition: all .3s;
			transition: all .3s;
	border: solid 1px #ccc;
    width:110%;
    height:110%;
}
.rad-checked span {opacity: 1;}
/* custom select styles */
.select-area {
	position: relative;
	overflow: hidden;
	height: 50px;
	background: #f2f2f2;
	width: 100% !important;
}
.select-area .select-opener {
	position: absolute;
	z-index: 3;
	top: 0;
	right: 0;
	width: 44px;
	height: 100%;
}
.select-area .select-opener:before {
	content: '';
	position: absolute;
	top: 50%;
	right: 50%;
	border: 6px solid transparent;
	border-top: 6px solid  #282828;
	margin: -3px 0 0;
}
.select-area .left {
	position: absolute;
	width: 10px;
	height: 31px;
	z-index: 1;
	top: 0;
	left: 0;
	display: none;
}
.select-area .center {
	white-space: nowrap;
	position: relative;
	font-size: 15px;
	line-height: 50px;
	cursor: default;
	display: block;
	padding: 0 0 0 21px;
	z-index: 2;
	color: #282828;
	overflow:hidden;
	text-overflow:ellipsis;
	margin-right:45px;
}
.select-area .center img {
	margin: 5px 5px 0 0;
	position: relative;
	float: left;
}
.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 {
	border: 1px solid #cdcdcd;
	border-width: 0 1px 1px;
	height: 1%;
	overflow: hidden;
	background:#fff;
}
.select-options-flipped .drop-holder {
	border-width: 1px 1px 0;
}
.select-options div.drop-list {
	width: 100%;
}
.select-options ul {
	overflow: hidden;
	list-style: none;
	width: 100%;
	padding: 0;
	margin: 0;
}
.select-options ul li {
	overflow: hidden;
	float: left;
	width: 100%;
}
.select-options ul a {
	text-decoration: none;
	cursor: default;
	display: block;
	overflow: hidden;
	height: 1%;
	font-size: 15px;
	color: #282828;
	padding: 5px 21px;
}
.select-options ul a span {
	cursor: default;
	float: left;
}
.select-options .item-selected a {
	text-decoration: none;
	background: #666;
	color: #fff;
}
.select-options ul a:hover {
	text-decoration: none;
}
.select-options ul a:focus {
	outline: none;
}
@media screen and (max-width: 767px), screen and (orientation: landscape) and (max-width: 767px), screen and (orientation: portrait ) and (max-width: 767px){
	.select-area .select-opener{width: 38px;}
}