/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/*
    Add your custom styles here
*/

/* TITULOS */

span.amarillo {
	color: var(--e-global-color-secondary) !important;
}

/* CONTACT FORM */

.wpcf7-form {
    text-align: center;
}

.wpcf7-form input, 
.wpcf7-form textarea {
    border: 1px solid var( --e-global-color-secondary );
}

.wpcf7-form input:focus, 
.wpcf7-form textarea:focus {
    border: 1px solid var( --e-global-color-primary );
}

.wpcf7-form input[type="submit"] {
    font-family: "Actor", Sans-serif;
    font-size: 18px;
    padding: 20px 40px;
    font-weight: 800;
    fill: var( --e-global-color-primary );
    color: white;
    background-color: var( --e-global-color-primary );
    border-radius: 15px 15px 15px 15px;
}

.wpcf7-form input[type="submit"]:hover {
    fill: var( --e-global-color-secondary );
    color: black;
    background-color: var( --e-global-color-secondary );
}

.wpcf7-form .wpcf7-spinner {
    display: none;
}

/* CONTACT FORM 2 */

.contact-section .wpcf7-form .fila {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.contact-section .wpcf7-form .fila p {
    width: 48%;
}

.contact-section .wpcf7-form select {
    border: 1px solid var( --e-global-color-secondary );
}

.contact-section  .wpcf7-form .wpcf7-form select:focus{
    border: 1px solid var( --e-global-color-primary );
}

.contact-section  .wpcf7-form input::placeholder, 
.contact-section  .wpcf7-form textarea::placeholder {
    color: black;
}

/* RESPONSIVE */

@media screen and (max-width: 360px) {
    .contact-section .wpcf7-form .fila {
        display: flex;
        flex-direction: column;
    }
    
    .contact-section .wpcf7-form .fila p {
        width: 100%;
    }    

}

