:root {
    --white: #fff;
    --black: #000000;
    --black-notfull: #222529;
    --orange: #fdb615;
    --light-orange: #ffd067;
    --dark-grey: #7f7f7f;
    --grey: #cccccb;
    --light-grey: #f5f5f5;
}

#cookie-banner {
    position: fixed;
    bottom: -320px;
    left: 0;
    width: 100%;
    background: var(--light-grey);
    color: var(--black-notfull);
    padding: 20px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.4);
    z-index: 9999;
    transition: bottom 0.5s ease;
}

#cookie-banner.show {
    bottom: 0;
}

#cookie-banner h4 {
    margin: 0 0 8px 0;
    font-weight: 600;
    color: var(--orange);
}

#cookie-banner p {
    margin: 0 0 12px 0;
}

#cookie-banner .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

#cookie-banner label {
    margin-right: 10px;
    cursor: pointer;
}

    #cookie-banner input[type="checkbox"] {
        margin-right: 6px;
        accent-color: var(--orange);
    }

    #cookie-banner .btn {
        background: var(--orange);
        color: #002147;
        border: none;
        padding: 8px 14px;
        cursor: pointer;
        font-weight: 600;
        border-radius: 3px;
        transition: background 0.2s ease;
    }

    #cookie-banner .btn:hover {
        background: #0095cc;
    }

#cookie-banner .btn-outline {
    background: transparent;
    color: var(--orange);
    border: 1px solid var(--orange);
}

    #cookie-banner .btn-outline:hover {
        background: var(--light-grey);
    }

.cookie-button {
    color: var(--white);
    height: 25px;
    text-decoration: none;
    border: 1px solid;
    border-radius: 20px;
    padding: 0px 10px 5px 10px;
    display: inline-block;
    margin-top: 10px;
    transition: 0.2s all linear;
    font-weight: 200;
    background-color: var(--orange);
    border-color: var(--orange);
    box-shadow: rgb(255 193 7 / 58%) 0 0 10px 0;
}

    .cookie-button span {
        display: inline-block;
        vertical-align: middle;
        margin-left: 10px;
    }

        .cookie-button span img {
            width: 20px;
        }

    .cookie-button:hover {
        color: var(--white);
        box-shadow: rgb(255 193 7 / 38%) 0 0 12px 0;
        transform: scale(0.98);
    }