﻿
        #cookieOverlay {
            position: fixed;
            top: 0;
            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:#000;
        }
        #cookieModal .cookie-buttons {
            margin-top:30px;
        }
        #cookieModal {
            background: #fff;
            width: 600px;
            max-width: 95%;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            font-family: Arial, sans-serif;
        }
        
        .cookie-buttons button {
            width:32%;
        }

        .cookie-settings {
            margin-top: 0px;
            display: none;
        }

        .cookie-category {
            margin-bottom:15px;
        }
        .cookie-category label {
	        margin-bottom: 0px;
	        font-size: 12px;
	        color: #000;
	        font-weight: 600;
            display:flex;
        }
    .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: "✔";
}
 
        #cookieModal button {
            padding: 5px 10px;
            border-radius: 0;
            cursor: pointer;
            font-weight: 600;
            line-height: 22px;
            font-size: 14px; 
        }

        .cookie-buttons .btn-primary {
            background: #0f3460;
            color: #fff;
            border: 1px solid #0f3460;
        }

        .cookie-buttons .btn-outline {
            background: #fff;
            border: 1px solid #0f3460;
            color: #000;
        }

        .cookie-buttons .btn-secondary {
            background: #0f3460;
            color: #fff;
            border: 2px solid #0f3460;
        }

        #cookie-settings-btn {
    position: fixed;
    z-index: 1000;
    bottom:70px;
    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;
}
