.cookie-banner {
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    color:white;
    padding:10px;
    text-align: center;
    box-shadow: 1px -10px 25px  rgba(0, 0, 0, 0.3)
}

.cookie-banner.active {
    display: block;
    background-color: rgba(0, 0, 0, 0.8);
}

.cookie-inform-and-ask {
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    color:white;    
    padding: 20;    
    text-align: center;    
}

.cookie-inform-and-ask.active {
    display: block;
}
.cookie-inform-and-ask .cookie-dialog {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    color:white;
    padding: 20px;    
    background-color: #191919;
    border-radius:5px;
    box-shadow: 1px -10px 25px  rgba(0, 0, 0, 0.5);
    border:none;
}
