/* floating box style */
.floating-form {
    max-width: 350px;
    padding: 30px 30px 10px 30px;
    font-size: 13px;
    background: #FFF;
    border: 3px solid #89b610;
    right: 10px;
    position: fixed;
	z-index: 100000;
	}
.contact-opener {
    position: absolute;
    right: 270px;
    transform: rotate(90deg);
    top: 100px;
	width:130px;
    background-color: #216288;
    padding: 9px;
    color: #000;
	cursor: pointer;
}
.slidelist-opener{
    position: absolute;
    right: -37px;
    /*transform: rotate(-90deg);*/
    top: -3px;
    /*width:130px;*/
    background-color: #216288;
    padding: 9px;
    color: #000;
    cursor: pointer;
}
.floating-form-heading{
    font-weight: bold;
    border-bottom: 2px solid #ddd;
    margin-bottom: 10px;
    font-size: 19px;
    padding-bottom: 3px;
	color: #000;
}
.floating-form label{
    display: block;
    margin: 0px 0px 15px 0px;
	color: #000;
}
.floating-form label > span{
    width: 70px;
    font-weight: normal;
    float: left;
    padding-top: 8px;
    padding-right: 5px;
	color:#000;
}
.floating-form span.required{
    color:red;
}
.floating-form .tel-number-field{
    width: 40px;
    text-align: center;
}
.floating-form  .long{
    width: 120px;
}
.floating-form input.input-field{
    width: 68%;
   
}

.floating-form input.input-field,
.floating-form .tel-number-field,
.floating-form .textarea-field,
 .floating-form .select-field{
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out; 
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    border: 1px solid #C2C2C2;
    box-shadow: 1px 1px 4px #EBEBEB;
    -moz-box-shadow: 1px 1px 4px #EBEBEB;
    -webkit-box-shadow: 1px 1px 4px #EBEBEB;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    padding: 7px;
    outline: none;
	color:#000;
	height: 32px;
}
.floating-form .input-field:focus,
.floating-form .tel-number-field:focus,
.floating-form .textarea-field:focus,  
.floating-form .select-field:focus{
    border: 1px solid #0C0;
}
.floating-form .textarea-field{
    height:100px;
    width: 68%;
}
.floating-form input[type="button"],
.floating-form input[type="submit"], .contact-opener, .slidelist-opener {
    background-color: #89B610;
    display: inline-block;
    cursor: pointer;
    color: #FFF;
    padding: 9px 25px;
    text-decoration: none;
	font-size: 16px;
}
.floating-form input[type="button"]:hover,
.floating-form input[type="submit"]:hover, .contact-opener {
    background-color: #89B610;
}
.floating-form .success{
	background: #D8FFC0;
	padding: 5px 10px 5px 10px;
	margin: 0px 0px 5px 0px;
	border: none;
	font-weight: bold;
	color: #2E6800;
	border-left: 3px solid #2E6800;
}
.floating-form .error {
	background: #FFE8E8;
	padding: 5px 10px 5px 10px;
	margin: 0px 0px 5px 0px;
	border: none;
	font-weight: bold;
	color: #FF0000;
	border-left: 3px solid #FF0000;
}