/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

/* -------------------------------------------------------
   Checkboxes WPForms – ✔ vert centré (formulaires 400, 2271, 193)
   VERSION CORRIGÉE — supprime la double coche du thème Modern
-------------------------------------------------------- */

/* Supprime la coche SVG par défaut de WPForms Modern */
#wpforms-400-field_3 input[type="checkbox"],
#wpforms-2271-field_3 input[type="checkbox"],
#wpforms-193-field_4 input[type="checkbox"] {
    appearance: none !important;
    -webkit-appearance: none !important;

    background-image: none !important;  /* <- empêche la coche blanche */
    background-repeat: no-repeat !important;

    width: 18px;
    height: 18px;
    border: 2px solid #006239 !important;
    border-radius: 3px;
    background: #fff !important;
    position: relative;
    cursor: pointer;
    margin-right: 6px;
}

/* ✔ vert centré */
#wpforms-400-field_3 input[type="checkbox"]:checked::after,
#wpforms-2271-field_3 input[type="checkbox"]:checked::after,
#wpforms-193-field_4 input[type="checkbox"]:checked::after {
    content: "✔";
    color: #006239;
    font-size: 14px;
    font-weight: bold;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);  /* centrage optique parfait */
    line-height: 1;
}

/* Évite que WPForms remette un fond ou une coche native */
#wpforms-400-field_3 input[type="checkbox"]:checked,
#wpforms-2271-field_3 input[type="checkbox"]:checked,
#wpforms-193-field_4 input[type="checkbox"]:checked {
    background: #fff !important;
    background-image: none !important;
}



