/*------------------------------------------------------------------------------ contact popup */
#contact-popup-background {
    background: #282f38;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3500;
    opacity: 0;
    display: none;
}

#contact-popup-content {
    height: 521px;
    top: 50%;
    margin-top: -260.5px;
    left: 50%;
    background: #f0f3f6;
    z-index: 3600;
    -webkit-border-bottom-left-radius: 2px;
    -moz-border-bottom-left-radius: 2px;
    border-bottom-left-radius: 2px;
    -webkit-border-bottom-right-radius: 2px;
    -moz-border-bottom-right-radius: 2px;
    border-bottom-right-radius: 2px;
    -webkit-border-top-left-radius: 2px;
    -moz-border-top-left-radius: 2px;
    border-top-left-radius: 2px;
    box-shadow: 0 3px 3px rgba( 0, 0, 0, 0.1 ); 
    display: none;
}

#contact-popup-content .google-map {
    width: 50%;
    float: left;
    height: 521px;
    -webkit-border-top-left-radius: 2px;
    -moz-border-top-left-radius: 2px;
    border-top-left-radius: 2px;
    -webkit-border-bottom-left-radius: 2px;
    -moz-border-bottom-left-radius: 2px;
    border-bottom-left-radius: 2px;
}

#contact-popup-content .contact-content {
    width: 50%;
    float: right;
    height: 521px;
    position: relative;
}

#contact-popup-content .contact-content .padding {
    padding: 40px;
}

#contact-popup-content .contact-content input[type="text"] {
    display: block;
    padding: 10px;
    font-size: 13px;
    margin-bottom: 5px;
    border: none;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    box-shadow: 0 3px 3px rgba( 0, 0, 0, 0.02 );
    outline: none;     
}

#contact-popup-content .contact-content textarea {
    display: block;
    padding: 10px;
    font-size: 13px;
    border: none;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    box-shadow: 0 3px 3px rgba( 0, 0, 0, 0.02 );
    outline: none;
    height: 100px;
}

#contact-popup-content .contact-content input[type="text"],
#contact-popup-content .contact-content textarea {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
    border: 1px solid #e5e5e5;
}

#contact-popup-content .contact-content input[type="text"]:focus,
#contact-popup-content .contact-content textarea:focus,
#contact-popup-content .contact-content input[type="text"]:hover,
#contact-popup-content .contact-content textarea:hover {
    border: 1px solid #ccc;
}

#contact-popup-content .contact-content input[type="text"].error,
#contact-popup-content .contact-content textarea.error {
    border: 1px solid #e77f7a;
}

#contact-popup-close {
    width: 50px;
    height: 50px;
    position: absolute;
    right: -50px;
    top: 0;
	/*adicionado*/
    background: #000000;
	opacity: 0.8;
    box-shadow: 0 3px 3px rgba( 0, 0, 0, 0.1 ); 
    -webkit-border-top-right-radius: 2px;
    -moz-border-top-right-radius: 2px;
    border-top-right-radius: 2px;
    -webkit-border-bottom-right-radius: 2px;
    -moz-border-bottom-right-radius: 2px;
    border-bottom-right-radius: 2px;
    cursor: pointer;
}

#contact-popup-close img {
    padding: 12px 0 0 12px;
}

/*------------------------------------------------------------------------------ responsive */
@media (min-width: 1150px) {

    #contact-popup-content {
        width: 800px;
        position: fixed;
        margin-left: -400px;
    }
    
    #contact-popup-content .contact-content input[type="text"] {
        width: 296px;      
    }
    
    #contact-popup-content .contact-content textarea {
        width: 296px;
        margin-bottom: 30px;  
    }
}

@media (min-width: 850px) and (max-width: 1149px) {

    #contact-popup-content {
        width: 750px;
        margin-left: -375px;
        position: fixed;
    }
    
    #contact-popup-content .contact-content input[type="text"] {
        width: 273px;      
    }
    
    #contact-popup-content .contact-content textarea {
        width: 273px;
        margin-bottom: 20px;  
    }
}

@media (min-width: 600px) and (max-width: 849px) {

    #contact-popup-content {
        width: 500px;
        height: auto;
        top: 100px;
        margin-top: 0;
        margin-left: -250px;
        position: absolute;
    }
    
    #contact-popup-content .contact-content input[type="text"] {
        width: 115px;     
        display: inline-block; 
    }
    
    #contact-popup-content .contact-content textarea {
        width: 397px;
    }
    
    #contact-popup-content .google-map {
        float: none;
        width: 100%;
        height: 250px;
    }
    
    #contact-popup-content .contact-content {
        float: none;
        width: 100%;
        height: auto;
    }
}

@media (max-width: 599px) {

    #contact-popup-content {
        width: 80%;
        height: auto;
        top: 100px;
        margin-top: 0;
        left: 10%;
        position: absolute;
    }
    
    #contact-popup-content .contact-content input[type="text"] {
        display: block; 
    }
    
    #contact-popup-content .google-map {
        float: none;
        width: 100%;
        height: 250px;
    }
    
    #contact-popup-content .contact-content {
        float: none;
        width: 100%;
        height: auto;
    }
}