#cookie-consent {
    display:none;
    position: fixed;
    bottom: 0px;
    background-color: rgba(250, 250, 250, 0.9);
    background-color: var(--background-alt);
    padding: 0 10px;
    border-radius: 15px;
    opacity: 0.95;
    width: calc(100% - 40px);
    
}

@media screen and (min-width:800px){
    #cookie-consent {
        width: 800px;
    }
}

#cookie-consent > p {
    text-align: center;
    display:block;
}

#cookie-consent > p > .accept {
    background-color: var(--flash-success-color);
    color: #fff;
    margin-left: 30px;
}

#cookie-consent > p > .decline {
    background-color: var(--flash-error-color);
    color: white;
}