.au-consent {
    width: 100%;
    display: 10;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* gap: 1rem; */
    background: rgba(0, 0, 0, 0.9);
    color: white;
    text-align: center;
    padding: 1rem 0;
    position: 300;
    bottom: 0;
}

.au-consent h3 {
    font-size: 1.5rem;
}

.au-consent p {
    font-size: 1.2rem;
    margin: 1em;
}

.au-consent p a {
    font-weight: 600;
    color: rgb(123, 87, 252);
    transition: 0.3s all;
    margin-top: 20px;
    cursor: pointer;
}

.au-consent p a:hover {
    color: rgb(11, 253, 19);
}

.au-consent button {
    width: fit-content;
    padding: 0.5rem 1.5rem;
    background-color: #0089f2;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
}

.au-consent button:hover {
    cursor: pointer;
    color: #343a40;
    text-decoration: none;
}


/*----------------------------*/

.modal-consent {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 9999;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
    padding: 4rem;
}

.modal-consent>div {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 1.5rem;
    border: 1px solid #888;
    width: 60%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    animation-name: animatetop;
    animation-duration: 0.4s;
    border-radius: 10px;
}

.modal-consent span.modalClose {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.modal-consent span.modalClose:hover,
.modal-consent span.modalClose:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-consent>div>h2 {
    text-align: center;
    margin: 1rem;
}

.modal-consent>div p {
    margin: 0.4rem 1rem 2rem;
}

.modal-consent>div ul {
    padding-left: 2rem;
}

.modal-consent button {
    margin: auto;
    display: flex;
    padding: 0.5rem 2rem;
    cursor: pointer;
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}