﻿#CookiBannerContainer {
    background-color: rgb(0, 0, 0,0.6);
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    display: none;
}
#CookiBannerBox {
    border-radius: 8px;
    max-width: 600px;
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease 0s;
    z-index: 99999;
    padding: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media screen and (max-width: 991px) {
    #CookiBannerBox {
        top: 120px;
        left: 5%;
        right: 5%;
        transform: unset;
        max-width: 100%;
    }

    #SetSelectedCookies.butn, #SetAllCookies.butn {
        width: 100%;
        margin-top: 10px;
    }
}