﻿
#cookieOverlay {
    position: fixed;
    bottom: 0px;
    left: 0;
    width: 100%;
    /* height: 100%; */
    /* background: rgba(0, 0, 0, 0.65); */
    display: none;
    justify-content: center;
    /* align-items: center; */
    z-index: 999999;
}

    #cookieOverlay h2,
    #cookieOverlay h3 {
        font-size: 22px;
        color: #000;
        margin: 0;
        padding: 0 0 10px 0;
    }

    #cookieOverlay p {
        font-size: 14px;
        line-height: 22px;
        color: #fff;
        display: flex;
        align-items: center;
    }

#cookieModal .cookie-buttons {
    display: flex;
    gap: 5px;
    text-align: center;
    justify-content: center;
}

#cookieModal {
    background: #000000a6;
    width: 100%;
    max-width: 100%;
    padding: 10px;
    border-radius: 0px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    font-family: Arial, sans-serif;
}

#cookieMain {
    text-align: center;
    display: flex;
    justify-content: space-evenly;
}

.cookie-buttons button {
    width: 32%;
}

.cookie-settings {
    margin-top: 0px;
    display: none;
}

.cookie-category {
    margin-bottom: 10px;
}

    .cookie-category label {
        margin-bottom: 0px;
        font-size: 12px;
        color: #000;
        display: flex;
    }

        .cookie-category label input {
            width: 16px;
            height: 16px;
        }

            .cookie-category label input[type=checkbox] {
                appearance: none;
                outline: 0;
                text-align: center;
                width: 16px;
                height: 16px;
                margin-right: 10px;
                border: 1px solid #b5b5b5;
                background: 0 0;
                -webkit-border-radius: 0;
                -moz-border-radius: 0;
                border-radius: 0;
                position: relative;
                z-index: 1;
                margin-top: 0;
                margin-right: 10px;
            }

            .cookie-category label input[type="checkbox"]:checked::before {
                color: #000;
                font-size: 13px;
                line-height: 1;
                height: 12px;
                position: absolute;
                z-index: 1;
                left: 2px;
                content: "✔";
            }

            .cookie-category label input[type="checkbox"]::before {
                color: #000;
                font-size: 13px;
                line-height: 1;
                height: 12px;
                position: absolute;
                z-index: 1;
                left: 2px;
            }


#cookieModal button {
    padding: 5px 10px;
    border-radius: 0;
    cursor: pointer;
    font-weight: 600;
    line-height: 22px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
}

.cookie-buttons .btn-primary {
    background: #e96343;
    color: #fff;
    border: 1px solid #e96343;
}

.cookie-buttons .btn-outline {
    background: #fff;
    border: 1px solid #e96343;
    color: #000;
}

.cookie-buttons .btn-secondary {
    background: #e96343;
    color: #fff;
    border: 2px solid #e96343;
}

#cookie-settings-btn {
    position: fixed;
    z-index: 1000;
    bottom: 30px;
    left: 2%;
    background: #000;
    color: #fff;
    padding: 5px 12px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 12px;
    opacity: 0.95;
    transition: all 0.3s ease;
    font-weight: 600;
}

    #cookie-settings-btn:hover {
        background: #000;
        transform: translateY(-3px);
    }

    #cookie-settings-btn i {
        font-size: 16px;
    }
