@import url('https://fonts.googleapis.com/css?family=Ubuntu+Sans:400,500&display=swap');

#cookie-notice-sterk-root * {
    box-sizing: border-box;
    font-family: 'Ubuntu Sans', Arial, sans-serif;
}

#cookie-notice-sterk-backdrop {
    position: fixed;
    left: 0; right: 0; bottom: 0; top: 0;
    z-index: 99999;
    background: rgba(30, 32, 40, 0.15);
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    pointer-events: auto;
    animation: cns-fadeIn 0.3s;
}

#cookie-notice-sterk-card {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 10px 40px 0 rgba(20,32,80,0.25),0 2px 8px 0 rgba(0,0,0,0.08);
    padding: 35px;
    margin: 30px;
    position: relative;
    max-width: 500px;
    width: 100%;
    text-align: left;
    animation: cns-fadeUpZoom 0.5s cubic-bezier(.23,1.04,.53,.98);
}

@keyframes cns-fadeUpZoom {
    0% {opacity: 0;transform: translateY(60px) scale(0.98);}
    100% {opacity: 1;transform: translateY(0) scale(1);}
}
@keyframes cns-fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

#cookie-notice-sterk-logo {
    display: block;
    position: static;
    width: 64px;
    height: auto;
    margin-bottom: 1.1rem;
    background: none;
    border-radius: 0;
    box-shadow: none;
}

#cookie-notice-sterk-close {
    position: absolute;
    right: 1.1rem;
    top: 1.1rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    color: #27283a;
    opacity: 0.7;
    transition: opacity 0.15s;
}
#cookie-notice-sterk-close:hover { opacity: 1; }

#cookie-notice-sterk-title {
    margin-top: 0;
    margin-bottom: 1.1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #23233c;
}

#cookie-notice-sterk-text {
    color: #44465f;
    font-size: 12px;
    margin-bottom: 2.1rem;
    line-height: 1.55;
}
#cookie-notice-sterk-text a {
    color: #3758f9;
    text-decoration: underline;
}

#cookie-notice-sterk-buttons {
    display: flex;
flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.cns-btn {
    flex: 1 1 100%;
    padding: 1em 0;
    border: none;
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0;
    transition: none; /* geen hover kleur */
}
.cns-btn.cns-accept-all,
.cns-btn.cns-accept-necessary {
    background: #000;
    color: #fff;
}
.cns-btn.cns-accept-all:hover,
.cns-btn.cns-accept-necessary:hover {
    background: #000;
    color: #fff;
}

.cns-btn:active, .cns-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px #23233c33;
}

@media (max-width: 600px) {
    #cookie-notice-sterk-card {
        padding: 35px;
        margin: 25px;
        max-width: 98vw;
    }
    #cookie-notice-sterk-buttons {
        flex-direction: column;
        gap: 0.7rem;
    }
    .cns-btn {
        flex: 1 1 100%;
        margin-bottom: 0;
    }
    #cookie-notice-sterk-backdrop {
        justify-content: center;
        align-items: flex-end;
    }
}