/**
 * Theme Name: WASNET Child
 * Description: This is a child theme of WASNET, generated by Auto Installer.
 * Author: <a href="https://lansgraphix.net/">Lansgraphix</a>
 * Template: wasnet
 * Version: 5.4.2
 */



/* Target the specific gchoice element and disable inline-grid */
.gchoice.gchoice_3_40_1 {
    display: block !important;
    grid-template-columns: none !important;
    grid-gap: 0 !important;
    gap: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Hide the checkbox completely */
#choice_3_40_1 {
    position: absolute !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    left: -9999px !important;
    pointer-events: none !important;
}

/* Make the label take full width */
#label_3_40_1 {
    display: block !important;
    width: 100% !important;
    padding: 12px 24px;
    text-align: center;
    background-color: #66A1D7;
    /*background-color: rgba(102, 161, 215, 0.5);*/
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 0;
    margin: 0 !important;
    box-sizing: border-box !important;
}

/* Hover state */
#label_3_40_1:hover {
    background-color: #005e8c;
}

/* Checked state */
#choice_3_40_1:checked + label {
    background-color: #28375a;
}




/* Remove default radio button styling for GravityForms */
.gfield-choice-input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 3px; /* Square corners for checkbox look */
    background-color: #fff;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Add tick when checked */
.gfield-choice-input[type="radio"]:checked {
    background-color: #0073aa;
    border-color: #0073aa;
}

.gfield-choice-input[type="radio"]:checked::after {
    content: '\2713'; /* Simple Unicode checkmark */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

/* Hover state */
.gfield-choice-input[type="radio"]:hover {
    border-color: #0073aa;
}

/* Focus state */
.gfield-choice-input[type="radio"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.3);
}








    
    



