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

.cookie-banner.active {
    display: block;
}

.cookie-inform-and-ask {
    z-index: 1000;
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 20px;
    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%;
    padding: 20px;
    border-radius:5px;
    box-shadow: 1px -10px 25px  rgba(0, 0, 0, 0.5);
    border:none;
}
