/**
 * 2021 Anvanto
 *
 * NOTICE OF LICENSE
 *
 * This file is not open source! Each license that you purchased is only available for 1 wesite only.
 * If you want to use this file on more websites (or projects), you need to purchase additional licenses.
 * You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
 *
 *  @author Anvanto <anvantoco@gmail.com>
 *  @copyright  2021 Anvanto
 *  @license    Valid for 1 website (or project) for each purchase of license
 *  International Registered Trademark & Property of Anvanto
 */
 
.notification_cookie {
    position: fixed;
    background: rgba(0, 0, 0, .92);
    z-index: 30;
    display: none;
    width: 410px;
    max-width: calc(100% - 40px);
    color: #fff;
    box-sizing: border-box;
    border-radius: 4px;
}

.notification_cookie-content {
    padding: 22px 24px 20px;
}

.notification_cookie p {
    color: #fff;
    margin: 0 0 18px;
    line-height: 1.5;
    font-size: 14px;
}

.notification_cookie a {
    color: #fff;
    text-decoration: underline;
}

/* =========================
   BOUTONS DU BANDEAU
   ========================= */

.notification_cookie-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    cursor: default;
    flex-wrap: wrap;
}

.notification_cookie-btn {
    border: 1px solid rgba(255, 255, 255, .45);
    background: transparent;
    color: #fff;
    padding: 8px 11px;
    font-size: 11px;
    line-height: 1.2;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: all .2s ease;
}

.notification_cookie-btn:hover {
    background: rgba(255, 255, 255, .15);
    border-color: #fff;
}

.notification_cookie-accept {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.notification_cookie-accept:hover {
    background: #e9e9e9;
    color: #000;
}


/* =========================
   FENÊTRE PERSONNALISATION
   ========================= */

.notification_cookie-settings {
    display: none;
    margin-top: 2px;
}

.notification_cookie-settings-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #fff;
}

.notification_cookie-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 13px 0;
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.notification_cookie-category-text {
    flex: 1;
}

.notification_cookie-category-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
}

.notification_cookie-category-text span {
    display: block;
    margin: 0;
    cursor: default;
    font-size: 11px;
    line-height: 1.4;
    text-transform: none;
    text-decoration: none;
    color: #bdbdbd;
}


/* =========================
   CHECKBOX
   ========================= */

.notification_cookie-toggle {
    flex: 0 0 auto;
}

.notification_cookie-toggle input {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
}

.notification_cookie-toggle input:disabled {
    cursor: default;
    opacity: .55;
}


/* =========================
   BOUTON ENREGISTRER
   ========================= */

.notification_cookie-settings-actions {
    margin-top: 18px;
    text-align: right;
}

.notification_cookie-save {
    background: #fff;
    color: #000;
    border-color: #fff;
    padding: 9px 15px;
}

.notification_cookie-save:hover {
    background: #e9e9e9;
}


/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 480px) {
    .notification_cookie {
        width: calc(100% - 30px);
        max-width: none;
    }

    .notification_cookie-content {
        padding: 18px;
    }

    .notification_cookie-action {
        justify-content: center;
    }

    .notification_cookie-btn {
        flex: 1 1 auto;
    }
}