/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 07 2025 | 04:48:53 */
/* --- Fix for missing checkbox text --- */

/* Hide the malformed text coming from the HTML */
label[for="policycheck"] a.help {
    font-size: 0 !important;
    color: transparent !important;
}

/* Add the correct text using a pseudo-element */
label[for="policycheck"] a.help::after {
    content: 'I AGREE TO TERMS & CONDITIONS';
    font-size: 14px; /* Adjust size as needed */
    color: #333; /* Adjust color as needed */
    text-decoration: underline;
    position: relative;
    display: inline-block;
}

/* --- Force checkbox label onto a single line --- */
label[for="policycheck"] {
    white-space: nowrap;
}