    .cookiealert {
        width: 380px;
        top: 0;
        left: 0;
        margin: 0 !important;
        z-index: 999;
        border-radius: 2px;
        color: #141414;
        background: white;
        padding: 25px 25px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 1px;
    }
    
    .container-cookies {
        transform: translateY(100%);
        transition: all 500ms ease-out;
    }
    
    .container-cookies.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0%);
        transition-delay: 1000ms;
    }
    
    .cookiealert a {
        text-decoration: underline
    }
    
    .cktitre {
        width: 95%;
        margin-top: 18px;
        margin-bottom: 29px;
        padding-bottom: 11px;
        border-bottom: 1px solid rgb(202, 202, 202);
        text-align: center;
        font-size: 16px;
        font-family: Verdana, 'Segoe UI', Tahoma, Geneva, sans-serif;
        font-weight: bold;
        color: rgb(27, 27, 27);
    }
    
    .cktexte {
        margin-bottom: 18px;
        width: 85%;
        font-size: 13px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: rgb(90, 90, 90);
        line-height: 22px;
    }
    
    button.acceptcookies {
        border-radius: 1px;
        margin-top: 18px;
        margin-bottom: 10px;
        width: 80%;
        height: 33px;
        background-color: rgb(0, 66, 128);
        border: none;
        font-family: sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: white;
        transition: 0.2s;
    }
    
    button.acceptcookies:hover,
    button.acceptcookies:focus,
    button.acceptcookies:active {
        background-color: rgb(5, 43, 78);
        cursor: pointer;
        transition: 0.2s;
    }
    
    p.declinecookies {
        transition: 0.2s;
        margin-top: 6px;
        margin-bottom: 15px;
        color: rgb(168, 168, 168);
        /* text-decoration: underline; */
        font-family: sans-serif;
        font-size: 12px;
    }
    
    p.declinecookies {
        transition: 0.2s;
        cursor: pointer;
        color: rgb(138, 138, 138);
    }
    
    @media screen and (max-width: 500px) {
        .cookiealert {
            padding: 15px 15px;
            width: 300px;
        }
        .cktitre {
            font-size: 15px;
            margin-bottom: 18px;
        }
        .cktexte {
            margin-bottom: 12px;
            width: 85%;
            line-height: 21px;
            font-size: 12px;
        }
    }