/******------------ Contact Form -------------**********/


/*************   Mobile View. **********************/

#contact_form_shell{
    
    width: 100%; 
    padding: 0px;   
}

#contact_form_container{
        
    position: relative;
}

#contact_left_col {

    float: none;
    width: 100%;
    margin: 0px;
}

#contact_right_col {
    
    float: none;
    width: 100%;
    margin: 0px;
}

#contact_form_shell input[type=text] {
    
    color: #333;
    font-size: 16px;
    width: 100%; 

}


#contact_form_shell input::placeholder {
    
        color: #333 !important;
}

#contact_form_shell email::placeholder {
    
        color: #333 !important;
}


#contact_form_shell textarea::placeholder {
    
        color: #333 !important;
}

#contact_form_shell input[type=email] {
    
    color: #333;
    font-size: 16px;
    width: 100%; 
}

#contact_form_shell textarea {
    height: 80px;
    color: #333;
    font-size: 16px;
    width: 100%; 
}

#contact_form_shell input[type=submit] {

    width: 100%;
    font-size: 16px;
    
}

/*************   Tablet View. **********************/


@media screen and (min-width:750px){
  
    #contact_left_col {
     
        float: left;
        width: 49%; 
    }
    
    #contact_right_col{
         
        float: left;
        width: 48%; 
        margin-left: 3%;
     }
     
     #contact_form_shell textarea {
    
        height: 168px;
     }
}

/*************   Desktop View. **********************/
                     
@media screen and (min-width:1050px){
    
   
}

/******---------Close Contact Form-------------**********/