 /* 
 * CSS: Complianz
 * @desc: This file contains contains code for cookies page
 */

/* Imports */
@import 'vars.1.1.css';

/* Cookies page width */
#cmplz-document {
    max-width: 100%!important;
}

/* Fixe document h2 */
#cmplz-document h2 {
    border-bottom: 0.5px solid var(--dark-grey);
    margin-bottom: 1rem!important;
    margin-top: 2.5rem!important;
}

/* Fixe invisible texts : add soft white colors */
#cmplz-document .cmplz-category-title,
.cmplz-service-header {
    color: var(--soft-white);
}

/* Fixe invisible texts : add dark grey colors */
.cookies-per-purpose * {
    color: var(--dark-grey);
}

/* Fixe title and close button position */
.cmplz-cookiebanner .cmplz-header {
    display: flex!important;
    justify-content: space-between!important;
    align-items: center!important;
}

/* Styles under 768px */
@media (max-width: 768px) {

    /* Fix links position */
    .cmplz-links {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        align-items: center;
    }
    
}