/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
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: 2.0.0
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 */


.gform_heading {
	display:none;
}



/* Style field titles */
.gfield_label {
    color: #063668 !important; /* Navy */
    font-weight: 700 !important;
    font-size: 1.3em !important;
}

/* Make checkboxes/radio buttons use full width and look like boxes */
.gfield_checkbox li, .gfield_radio li {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 10px;
    transition: all 0.2s ease-in-out;
}

/* Change style on hover and when selected */
.gfield_checkbox li:hover, .gfield_radio li:hover {
    border-color: #063668;
    background-color: rgba(6, 54, 104, 0.03);
}

.gfield_checkbox li input:checked + label, 
.gfield_radio li input:checked + label {
    color: #063668;
    font-weight: 600;
}

/* Align labels nicely next to inputs */
.gfield_checkbox li label, .gfield_radio li label {
    margin-left: 10px;
    cursor: pointer;
}

/* Setup two-column layout for choices (adjust classes as needed based on your structure) */
@media only screen and (min-width: 641px) {
    .gfield_checkbox, .gfield_radio {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .gfield_checkbox li, .gfield_radio li {
        margin-bottom: 0;
    }
}

/* Style the Total field */
.ginput_total {
    background: #063668; /* Navy */
    color: #FFDF2E; /* Yellow */
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.2em;
}

/* Style the Submit Button */
.gform_button {
    background-color: #063668 !important; /* Navy */
    color: #FFDF2E !important; /* Yellow */
    padding: 12px 30px !important;
    font-weight: bold !important;
    text-transform: uppercase;
    transition: background-color 0.2s;
}

.gform_button:hover {
    background-color: #052a50 !important; /* Darker Navy */
}

.gform-theme--api, .gform-theme--foundation {
    --gf-form-gap-y: 20px;
}