.cookie-consent{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: lightgray;
    padding: 25px;
    z-index: 9999;
    color: black;
}

.cookie-consent-buttons{
    text-align: center;
}

.cookie-consent-modal-bg{
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0,0,0, 0.75);
}

.cookie-consent-modal{
    display: none;
    z-index: 1010;
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
}

.cookie-consent-modal-content{
    width: 500px;
    max-width: 100%;
    transform: translate(-50%);
    left: 50%;
    background: white;
    padding: 25px;
    border-radius: 5px;
    position: fixed;
}

.cookie-consent-close{
    position: absolute;
    top: 0;
    right: 0;
    font-size: 25px;
    cursor: pointer;
    padding: 0 10px;
}