/*
Contact Form by html-form-guide.com
You can customize all the aspects of the form in this style sheet
All the style elements use form id selector(notice the #contactus). So, including this
stylesheet does not affect the other elements at all!
*/
@import url(http://fonts.googleapis.com/css?family=Roboto:400,300,100,500,700);
body{
    margin: 0;
    padding:0;
    position: relative;
}
#contactus fieldset
{
  font-family:  'Roboto', Arial, Helvetica, sans-serif;
  width:auto;  
  border:1px solid #ccc;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px;  
  color:#666;
  margin:0;
  padding:0;
}

#contactus legend, h2
{  
    font-size: 1.3em;
    color: #666;
}

#contactus label
{  
  font-size:0.8em;
  margin-bottom: 5px;
  display: block;
}

#contactus input[type="text"],textarea
{
    font-family:  'Roboto', Arial, Helvetica, sans-serif;
    height: 34px;
    padding:0;
    color: #000;    
    background: #fff;
    border: 1px solid;
    border-color: #bbb;
    -webkit-box-shadow: inset 0 1px 3px rgba(0,0,0,.15);
    -moz-box-shadow: inset 0 1px 3px rgba(0,0,0,.15);
    -ms-box-shadow: inset 0 1px 3px rgba(0,0,0,.15);
    -o-box-shadow: inset 0 1px 3px rgba(0,0,0,.15);
    box-shadow: inset 0 1px 3px rgba(0,0,0,.15);
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    width: calc(100% - 20px);
    padding: 0 10px;
}

#contactus input[type="text"]
{
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;   
  font-size: 15px;
}

#contactus #scaptcha
{
    width: calc(100% - 184px);
    height: 34px;
    border-radius: 0px!important;
    border-top-right-radius: 5px!important;
    border-bottom-right-radius: 5px!important;
    float: left;
}

#contactus input[type="submit"]
{
    width: 150px;
    height: 36px;
    padding-left: 0px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: #1e55c8;
    border: none;
    color: #FFF;
    font-size: 1em; 
}

#contactus textarea
{
    border-radius: 5px;
    height: auto;  
	font-size: 15px;
}

#contactus select
{
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    height: 34px;
    padding: 0;
    color: #000;
    background: #fff;
    border: 1px solid;
    border-color: #bbb;
    -webkit-box-shadow: inset 0 1px 3px rgba(0,0,0,.15);
    -moz-box-shadow: inset 0 1px 3px rgba(0,0,0,.15);
    -ms-box-shadow: inset 0 1px 3px rgba(0,0,0,.15);
    -o-box-shadow: inset 0 1px 3px rgba(0,0,0,.15);
    box-shadow: inset 0 1px 3px rgba(0,0,0,.15);
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    width: 100%;
    
}



/* Targetting Webkit browsers only. FF will show the dropdown arrow with so much padding. */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    select {padding-right:18px}
}

label.select {position:relative}
label.select:after {
    content: '<>';
    font: 16px "Consolas", monospace;
    color: #aaa;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    right: 8px;
    top: 6px;
    padding: 0 0 2px;
    border-bottom: 1px solid #ddd;
    position: absolute;
    pointer-events: none;
}
label.select:before {
    content: '';
    right: 2px;
    top: 2px;
    width: 27px;
    height: 30px;
    background: #f8f8f8;
    position: absolute;
    pointer-events: none;
    display: block;
}
#contactus input[type="text"]:focus,textarea:focus
{
  border-color: #6BACED;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.15), 0 0 8px rgba(82,168,236,.7);
    -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.15), 0 0 8px rgba(82,168,236,.7);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.15), 0 0 8px rgba(82,168,236,.7);
    outline:0;
}

#contactus .container
{
  margin-top:8px;
  margin-bottom: 10px;
  padding: 0 30px;
}

#contactus .error
{
  /*font-family: Verdana, Arial, sans-serif; 
  font-size: 0.7em;
  color: #900;
  background-color : #ffff00;*/
  display: block!important;
    margin-top: 6px;
    padding: 0 3px;
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    line-height: normal;
    color: #CC0000;
    font-size: 12px;
}

#contactus fieldset#antispam
{
  padding:2px;
  border-top:1px solid #EEE;
  border-left:0;
  border-right:0;
  border-bottom:0;
  width:300px;
}

#contactus fieldset#antispam legend
{
  font-family : Arial, sans-serif;
  font-size: 0.8em;
  font-weight:bold;
  color:#333;   
}

#contactus .short_explanation
{
  font-family : Arial, sans-serif;
  font-size: 0.6em;
  color:#333;   
  padding: 10px 30px;
}

/* spam_trap: This input is hidden. This is here to trick the spam bots*/
#contactus .spmhidip
{
  display:none;
  width:10px;
  height:3px;
}

#fg_crdiv
{
  font-family : Arial, sans-serif;
  font-size: 0.3em;
  opacity: .2;
  -moz-opacity: .2;
  filter: alpha(opacity=20);   
}

#fg_crdiv p
{
  display:none;
}
/**/
form input[type="file"]{
    z-index: 999;
    line-height: 0;    
    position: absolute;
    opacity: 0;
    filter: alpha(opacity = 0);-ms-filter: "alpha(opacity=0)";
    cursor: pointer;
    _cursor: hand;
    margin: 0;
    padding:0;
    left:0;
}
.file-text{
    width:65%!important;
    border-radius: 0px!important; 
    border-top-left-radius: 6px!important;
    border-bottom-left-radius: 6px!important;
}
.add-photo-btn{
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    background-color: #EFEFEF;
    width: calc(35% - 24px);
    height: 34px;
    line-height: 30px;
    float: right;
    border: 1px solid #BBB;
    font-size: 1em!important;
    border-top-right-radius: 5px!important;
    border-bottom-right-radius: 5px!important;
}
.captcha-div {
    display: table;
    width: 100%;
}
.captcha-div > div{
    width: 150px;
    display: inline-block;
    float: left;
    border: 1px solid #bbb;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding: 0px 5px;
}
.captcha-div > div > img{
        width: 85px;
    float: left;
    margin-right: 10px;
}
.captcha-div > div a{
        float: left;
    margin: 7px 18px;
}
.contact_error input[type="text"],.contact_error select{
    background: #FEEFE9!important;
    border-color: #E46B66!important;;
}
.form-header{
        background-color: #F7F7F7;
    background: #F5F5F5;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#FBFBFB), to(#E6E6E6));
    background-image: -webkit-linear-gradient(top, #FBFBFB, #E6E6E6);
    background-image: -moz-linear-gradient(top, #FBFBFB, #E6E6E6);
    background-image: -o-linear-gradient(top, #FBFBFB, #E6E6E6);
    background-image: linear-gradient(to bottom, #FBFBFB, #E6E6E6);
        border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.form-header h2{
    padding: 25px 30px;
    margin: 0 0 20px 0;
    font-size: 2em;
    color: #666;
    font-weight: 100;
}
.form-footer{
    display: block;
    padding: 20px 25px;
    border-top: 1px solid #ddd;
    margin-top: 20px;
}
.contact_error input[type="text"]:focus,.contact_error select:focus
{
  webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.15), 0 0 8px rgba(228,70,52,0,.7)!important;
    -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.15), 0 0 8px rgba(228,70,52,0,.7)!important;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.15), 0 0 8px rgba(228,70,52,.7)!important;
}
.margin-auto{
	margin: 0 auto!important;
    display: table;
}
.location{
	font-size: 0.9em!important;
    font-weight: 700;
}


/* **** Progress Bar **** */

.progress 
{
  display:none; 
  position:relative; 
  max-width:70% !important;
  border: 1px solid #ddd; 
  padding: 1px; 
  border-radius: 3px; 
  margin-bottom:20px;
}
.progress2 
{
  display:none; 
  position:relative; 
  max-width:70% !important;
  border: 1px solid #ddd; 
  padding: 1px; 
  border-radius: 3px; 
  margin-bottom:20px;
}
.bar 
{ 
  background-color: #B4F5B4; 
  width:0%; 
  height:20px; 
  border-radius: 3px; 
}
.percent 
{ 
  position:absolute; 
  display:inline-block; 
  top:3px; 
  left:48%; 

}

