
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,700italic,600italic,400italic,300,300italic);


*{
	padding:0;
	margin:0;
}


.custom-suitable-form{
	width:540px;
	min-height: 345px;
	padding: 30px;
	padding-bottom: 0px;
	background: url('../images/suitability-bg2.jpg') right -110px top no-repeat, #fff;
	background: #ffffff;
    background-size: auto 100%;
	border-radius: .31em;
	position: relative;
	overflow: hidden;
	margin: 0 auto;
	margin-top: 50px;
	box-shadow: 0px 0px 5px #ccc;
	-moz-box-shadow: 0px 0px 5px #ccc;
	-webkit-box-shadow: 0px 0px 5px #ccc;
}
.custom-suitable-form .right-side-img{
	position: absolute;
	right:0px; 
	top:0px;
	height: 100%;
}
.custom-suitable-form .right-side-img img{
	height: 100%;
}

.custom-suitable-form .inner_col{
	float:left;
	width: 425px;
	position: relative;
	z-index:2;
}
.custom-suitable-form .inner_col h2{
	float:left; 
	width: 100%;
	color:#0036aa;
	font-size: 1.88em;
    line-height: 1.17em;
	font-weight: 700;
	font-family: "Open Sans",Arial,sans-serif;
	margin-bottom: 10px;
}
.custom-suitable-form .inner_col p{
	float:left; 
	width: 100%;
	color: #111;
	font-size: 1em;
	line-height: 1.25em;
	font-family: "Open Sans",Arial,sans-serif;
    letter-spacing: .02em;
}
.custom-suitable-form .inner_col h3{
	float:left; 
	width: 100%;
	text-align:center;
	color:#0036aa;
	font-size: 1.5em;
    line-height: 2em;
	font-weight: 700;
	font-family: "Open Sans",Arial,sans-serif;
	margin-top: 10px;
	margin-bottom: 0px;
}

.custom-suitable-form .inner_col table{
	border:none;
	margin-bottom: 0px;
	margin-left: -10px;
}
.custom-suitable-form .inner_col table tr td{
	font-family: "Open Sans",Arial,sans-serif;
    font-size: 0.8em;
	color: #111;
    font-weight: 600;
    line-height: 1.38em;
    letter-spacing: .02em;
    text-align: center;
    padding: .38em;
	border: none;
}
.custom-suitable-form table tr td.input_wrap{
	position:relative;
}
.custom-suitable-form table tr td.input_wrap input{
	-moz-border-radius: .63em;
    -webkit-border-radius: .63em;
    border-radius: .63em;
	border: #cccccc 1px solid;
	height: 33px;
	line-height: 33px;
	font-weight: 600;
	font-size: 0.81em;
	color: #0036aa;
	outline:none;
	padding: 0px 10px;
	width: 45px;
}
.custom-suitable-form table tr td.input_wrap.focusin input{
	border: #58BE58 1px solid;
}
.custom-suitable-form table tr td.input_wrap.complete input{
	background: url('../images/chk-ok.png') no-repeat right center;
}
.custom-suitable-form .err-msg{
	position:absolute;
	top: 40px;
	left: 0px;
	width: 100px;
	font-family: "Open Sans",Arial,sans-serif;
	font-size: 13px;
	color: #ff0000;
	display:none;
}

.custom-suitable-form .input_chk{
	float:left;
	width: 100%;
	margin-top: 0px;
	margin-bottom: 10px;
	background: url('../images/chk-inactive.jpg') no-repeat 10px center;
}
.custom-suitable-form .input_chk.checked{
	background: url('../images/chk-active.jpg') no-repeat 10px center;
}

.custom-suitable-form .input_chk input.chk{
	float:left;
	width: 22px;
	height: 22px;
	margin-left: 10px;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    opacity: 0;
	cursor:pointer;
	z-index:3;
}
.custom-suitable-form .input_chk label{
	float:left;
	margin-left: 15px;
	font-family: "Open Sans",Arial,sans-serif;
	color: #0036aa;
	font-size: .94em;
	font-weight: 700;
	line-height: 1.25;
}


.custom-suitable-form .btn-get-result{
	float: left;
	width: 100%;
	height: 45px;
	margin-top: 5px;
	background: #fc8b00;
	background: #75B516;
	border: #ccc 1px solid;
	-moz-border-radius: .63em;
    -webkit-border-radius: .63em;
    border-radius: .31em;
	-moz-border-radius: .31em;
    -webkit-border-radius: .31em;
	text-align: center;
	line-height: 45px;
	color: #fff;
	text-decoration:none;
	font-weight:700;
	font-family: "Open Sans",Arial,sans-serif;
	font-size: 16px;
    -webkit-transition-duration: .2s;
    -moz-transition-duration: .2s;
    transition-duration: .2s;
}
.custom-suitable-form .btn-get-result:hover{
	background: #90c344;
}



/*
Pop Up result 
*/
.popup-result-custom-suitable-form{
	position:fixed;
	width:100%;
	height:100%;
	left:0;
	top:0;
	z-index:800/*9999*/;
	display:none;
}
.popup-result-custom-suitable-form .fixed-layer{
	position:absolute;
	width:100%;
	height:100%;

	background: #000;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; // IE8
    filter: alpha(opacity=50); // IE 5-7
	-moz-opacity: 0.5;
    opacity: 0.5;
}
.popup-result-custom-suitable-form .popup-inner-wrap{
	position: absolute;
	z-index:900 /*10000*/;
	width:40%; 
	min-width: 320px;
	padding: 50px;
	left:50%;
	top: 50%;
	margin-left: -25%;
	margin-top: -150px;
	background: #02aef0;

}
.popup-result-custom-suitable-form .popup-inner-wrap .btn-close{
	position:absolute;
	right:-15px; 
	top:-15px;
	width: 38px;
	height: 38px;
	-moz-border-radius: 38px;
    -webkit-border-radius: 38px;
    border-radius: 38px;
	background:#000;
	font-family: "Open Sans",Arial,sans-serif;
	font-size:18px;
	font-weight: 700;
	text-align:center;
	line-height: 38px;
	color:#fff;
	text-decoration:none;
}

.popup-result-custom-suitable-form .popup-inner-wrap .result-title{
	float:left; 
	width:100%;
	font-family: "Open Sans",Arial,sans-serif;
	font-size: 2.25em;
    line-height: 1.2em;
	font-weight: 700;
	color:#fff;
}
.popup-result-custom-suitable-form .popup-inner-wrap .result-title span{
	color: #fff;
}
.popup-result-custom-suitable-form .popup-inner-wrap .result-content{
	float:left; 
	width:100%;
	font-family: "Open Sans",Arial,sans-serif;
	font-size: .9em;
    line-height: 1.4em;
	font-weight: 600;
	color:#fff;
	letter-spacing: 0.02em;
	margin: 25px 0px;
}
.popup-result-custom-suitable-form .popup-inner-wrap .btn-book-free-consultation{
	float:left;
	font-family: "Open Sans",Arial,sans-serif;
	font-size: 0.94em;
	font-weight: 600;
	height: 40px;
	line-height: 40px;
	
	text-align: center;
	background: #75B516;
	color:#fff ;
	text-transform: uppercase;
	text-decoration: none;
	padding: 0px 25px;
	border:#d9dcdc 1px solid;
	-moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}
.popup-result-custom-suitable-form .popup-inner-wrap .btn-book-free-consultation:hover{
	background: #90c344;
}