/*
|--------------------------------------------------------------------------
| Consent
|--------------------------------------------------------------------------
*/

.consent-intro {

    margin-bottom:35px;

}


.consent-intro h2 {

    margin:0 0 15px;

    font-size:24px;

    font-weight:700;

    color:#111827;

}


.consent-intro p {

    margin:0 0 14px;

    font-size:15px;

    line-height:1.7;

    color:#4b5563;

}


.consent-intro a {

    color:#2563eb;

    text-decoration:none;

    font-weight:600;

}


.consent-intro a:hover {

    text-decoration:underline;

}


.consent-once {

    margin-top:22px !important;

    padding:14px 16px;

    border-radius:8px;

    background:#eff6ff;

    color:#1e3a8a !important;

    font-size:14px !important;

}


/*
|--------------------------------------------------------------------------
| Options
|--------------------------------------------------------------------------
*/

.consent-options {

    display:flex;

    flex-direction:column;

    gap:15px;

    margin-bottom:30px;

}


.consent-option {

    padding:18px;

    border:1px solid #e5e7eb;

    border-radius:10px;

    background:#f9fafb;

}


.consent-option.required {

    border-color:#dbeafe;

    background:#f8fbff;

}


.consent-checkbox {

    display:flex;

    align-items:flex-start;

    gap:12px;

    cursor:pointer;

}


.consent-checkbox input {

    position:absolute;

    opacity:0;

    pointer-events:none;

}


.consent-checkmark {

    position:relative;

    flex:0 0 20px;

    width:20px;

    height:20px;

    margin-top:2px;

    border:2px solid #d1d5db;

    border-radius:5px;

    background:#ffffff;

    box-sizing:border-box;

}


.consent-checkbox input:checked
+ .consent-checkmark {

    background:#2563eb;

    border-color:#2563eb;

}


.consent-checkbox input:checked
+ .consent-checkmark::after {

    content:"";

    position:absolute;

    left:5px;

    top:1px;

    width:5px;

    height:10px;

    border:solid #ffffff;

    border-width:0 2px 2px 0;

    transform:rotate(45deg);

}


.consent-label {

    flex:1;

    color:#374151;

    font-size:14px;

    line-height:1.7;

}


.consent-label a {

    color:#2563eb;

    font-weight:600;

    text-decoration:none;

}


.consent-label a:hover {

    text-decoration:underline;

}


.required-mark {

    color:#dc2626;

    font-weight:700;

}


/*
|--------------------------------------------------------------------------
| Actions
|--------------------------------------------------------------------------
*/

.consent-actions {

    margin-top:30px;

}


.consent-required-note {

    margin-top:12px;

    text-align:center;

    font-size:12px;

    color:#9ca3af;

}