/* FORMS * **************************************************************************************************************************/

input[type=text],input[type=email],
textarea {
    font-size: 14px;
    font-weight: bolder;
    background-color: #ffffff;
    color: #3c3c3c;
   
    border: 1px #127da8 solid;
    padding-left: 20px;
    padding-right: 20px;
    
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    

}
input[type=text]:focus,input[type=email]:focus,
textarea:focus {
    background-color: #d3d3d3;
    border: 1px #1aa4db solid;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

input[type=text],input[type=email] {
    height: 34px;
    width: 100%;
    
}

button i {
    color: #ffffff;
}

select {
   font-size: 14px;
    height: 40px;
    background-color: #efefef;
    color: #3c3c3c;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: 1px #e5e4e4 solid;
    padding-left: 15px;
    padding-right: 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url("../images/combo-arrow.png") 96% / 4% no-repeat #eee;
}
select:focus {
    background-color: #ffffff;
    border: 1px #96C11E solid;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

select::-ms-expand {
    /* for IE 11 */
    display: none;
}


/*PLACE HOLDERS*/

::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #868686;
}

:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #868686;
}

::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #868686;
}

:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #868686;
}