

.form{
width: 80%;
margin-left: auto;
margin-right: auto;
background-image: url("../images/enquiry_icon.png");
background-repeat: no-repeat;
background-size: 250px Auto;
background-position: 750px 80px; 
}
.form_style h2, .form_style label {
font-family:Georgia, Times, "Times New Roman", serif;
}

.form_hint, .required_notification {font-size: 11px;}

.required_notification {
    color:#d45252;
    margin:5px 0 0 0;
    display:inline;
    float:right;
}


.form_hint {
    background: #d45252;
    border-radius: 3px 3px 3px 3px;
    color: white;
    margin-left:8px;
    padding: 1px 6px;
    z-index: 999; /* hints stay above all other elements */
    position: absolute; /* allows proper formatting if hint is two lines */
    display: none;
}

.form_hint::before {
    content: "\25C0"; /* left point triangle in escaped unicode */
    color:#d45252;
    position: absolute;
    top:1px;
    left:-6px;
}

.form_style  input:focus + .form_hint {display: inline;}
.form_style  input:required:valid + .form_hint {background: #28921f;} /* change form hint color when valid */
.form_style  input:required:valid + .form_hint::before {color:#28921f;} /* change form hint arrow color when valid */


.form_style h2{
color: #000;
display: inline;
margin: 0px;
}

.form_style_rtext{
color: #d45252;
float: right;
font-size: 11px;
display: inline;
margin: 5px 0 0 0;
}

.form_style ul {
width: 70%;
list-style-type: none;
list-style-position: outside;
margin: 0px;
padding: 0px;
}

.form_style li{
padding:15px;
border-bottom:1px solid #eee;
position:relative;
}

.form_style li:first-child{
border-bottom:1px dashed #87be01;
}

.form_style li:last-child{
border-bottom:0px solid #eee;
}

.form_style label{
width:150px;
margin-top: 3px;
display:inline-block;
float:left;
padding:3px;
}

.form_style input {
width: 220px;
height: 30px;
padding: 5px 8px;
}

.numberss  input{
width: 80px;
height: 20px;
padding: 5px 8px;
}

:-moz-placeholder {
    color: #CCCCCC;
}
 
::-webkit-input-placeholder {
    color: #CCCCCC;
}

.form_style select {
padding: 5px 8px;
width: auto;
}

/*Border and Shadow*/
.form_style select, .form_style input, .form_style textarea {
    border:1px solid #aaa;
    box-shadow: 0px 0px 3px #ccc, 0 10px 15px #eee inset;
    border-radius:2px;
}
/*Border and Shadow While Click*/
.form_style input:focus, .form_style select:focus, .form_style textarea:focus {
    background: #fff;
    border:1px solid #555;
    box-shadow: 0 0 3px #aaa;
}

/*Expanding Input*/
.form_style input:focus, .form_style textarea:focus {
padding-right: 70px;
}

.form_style input, .form_style textarea{
padding-right: 30px;
}

/*Expanding Effect*/
.form_style input, .form_style textarea {
-webkit-transition: padding .25s;
-moz-transition: padding .25s;
transition: padding .25s;
}

input:required, textarea:required, select:required{
    background: #fff url(../images/red-asterisk.png) no-repeat 98% center;
}

::-webkit-validation-bubble-message {
    padding: 1em;
}

.form_style  input:focus:invalid, .form_style  textarea:focus:invalid, .form_style  select:focus:invalid{ /* when a field is considered invalid by the browser */
    background: #fff url(../images/invalid.png) no-repeat 98% center;
    box-shadow: 0 0 5px #d45252;
    border-color: #b03535
}

.form_style  input:required:valid, .form_style  textarea:required:valid, .form_style  select:required:valid { /* when a field is considered valid by the browser */
    background: #fff url(../images/valid.png) no-repeat 98% center;
    box-shadow: 0 0 5px #5cd053;
    border-color: #28921f;
}

button.submit {
    background-color: #FE9A2E;
    background: -webkit-gradient(linear, left top, left bottom, from(#FE9A2E), to(#D87000));
    background: -webkit-linear-gradient(top, #FE9A2E, #D87000);
    background: -moz-linear-gradient(top, #FE9A2E, #D87000);
    background: -ms-linear-gradient(top, #FE9A2E, #D87000);
    background: -o-linear-gradient(top, #FE9A2E, #D87000);
    background: linear-gradient(top, #FE9A2E, #D87000);
    border: 1px solid #FE9A2E;
    border-bottom: 1px solid #FE9A2E;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    box-shadow: inset 0 1px 0 0 #FE9A2E;
    -webkit-box-shadow: 0 1px 0 0 #FE9A2E inset ;
    -moz-box-shadow: 0 1px 0 0 #FE9A2E inset;
    -ms-box-shadow: 0 1px 0 0 #FE9A2E inset;
    -o-box-shadow: 0 1px 0 0 #FE9A2E inset;
    color: white;
    font-weight: bold;
    padding: 6px 20px;
    text-align: center;
    text-shadow: 0 -1px 0 #FE9A2E;
	opacity:.90;
}
button.submit:hover {
    opacity:.99;
    cursor: pointer;
}
button.submit:active {
    border: 1px solid #FE9A2E;
    box-shadow: 0 0 10px 5px #F38E22 inset;
    -webkit-box-shadow:0 0 10px 5px #F38E22 inset ;
    -moz-box-shadow: 0 0 10px 5px #F38E22 inset;
    -ms-box-shadow: 0 0 10px 5px #F38E22 inset;
    -o-box-shadow: 0 0 10px 5px #F38E22 inset;
}

.form_style textarea {
padding:8px; width:300px;
}
.form_style button {
margin-left:156px;
}

/*This is must for validation colour change Red/Green border line*/
*:focus {outline: none;}