#cookieRequest {

    position: fixed;
    bottom: 0;

    z-index: 10;

    max-width: 80%;
    min-width: 350px;

    padding: 5px 20px;
    background: linear-gradient(#bba283, #cbbaa5a0);
    
    text-align: center;

    .buttonContainer {
        display: flex;
    }
    button {
        padding: 5px 20px;
        margin: 5px auto;
        font-size: .6rem;

        background: linear-gradient(#ded9d2, #aea69a);
    }
    h2 {
        font-size: .85rem;
        font-weight: 700;
    }
    p {
        margin: 0 auto;
        width: 80%;
        text-wrap: pretty;
        font-size: .7rem;
        font-weight: 300;
    }
}

#cookieContainer {
    width: 100%;
    display: flex;
    justify-content: center;
}
#cookieCancel {
    position: absolute;
    left: 10px;

    cursor: pointer;
}

@media (max-width: 468px) {
    #cookieRequest p {
        width: 100%;
        margin: 0;

    }
}