/*
 * Theme Name:  Sinatra Child
 * Version:     1.0.0
 * Theme URI:   https://sinatrawp.com/
 * Author:      Gekik, LLC
 * Author URI:  https://gekik.co/
 * Description: Sinatra WordPress Child theme.
 * Tags:        two-columns, right-sidebar, footer-widgets, blog, news, custom-background, custom-menu, post-formats, rtl-language-support, sticky-post, editor-style, threaded-comments, translation-ready, buddypress, custom-colors, featured-images, full-width-template, theme-options, e-commerce
 * Text Domain: sinatra-child
 * Template:    sinatra
 * License:     GNU General Public License v3.0 or later
 * License URI: https://www.gnu.org/licenses/gpl-3.0.html
*/
#navigation .eael-simple-menu-container{min-height:10px !important;}

/* Contact Form 7 Responsive Grid */
.cf7-grid{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
}

.cf7-field{
    flex:1 1 calc(25% - 15px);
    min-width:220px;
}

.cf7-field input,
.cf7-field textarea,
.cf7-field select{
    width:100%;
    height:48px;
    padding:12px 15px;
    border:1px solid #ddd;
    border-radius:6px;
    box-sizing:border-box;
    font-size:16px;
}

.cf7-field textarea{
    height:140px;
}

.cf7-submit{
    display:flex;
    align-items:flex-end;
}

.cf7-submit input[type="submit"]{
    width:100%;
    height:48px;
    border-radius:6px;
    cursor:pointer;
    background: var(--e-global-color-primary);
    border-color: var(--e-global-color-primary);
    color: #000 !important;
    font-size:18px !important;
    transition:.3s;
}
.cf7-submit input[type="submit"]:hover{
    filter: brightness(90%);
}

.cf7-submit input[type="submit"]{
    width:100%;
    height:48px;
}

/* Tablet */
@media (max-width:992px){
    .cf7-field{
        flex:1 1 calc(50% - 10px);
    }
}

/* Mobile */
@media (max-width:576px){
    .cf7-field{
        flex:1 1 100%;
    }
}