/********** Template CSS **********/
#cookieConsentdiv {
    z-index: 1000;
    position: fixed;
    width: 400px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: aquamarine;
    background-color: #403879dd;
    
    padding: 20px 30px 20px 30px;
    font-family: 'Century Gothic', sans-serif;
    box-shadow: 0px 3px 10px 5px rgba(0, 0, 0, 0.4);
    text-align: center;
    border-radius: 30px 30px 0 0;
}

    #cookieConsentdiv button {
        color: #f8f4ee;
        display: block;
        margin-left: auto;
        margin-right: auto;
        border: none;
        background-color: #7367cd;
        padding: 10px 50px;
        margin-top: -5px;
        transition: all ease 0.5s;
        border-radius: 3px;
        border-color: #403879;
        /* box-shadow: 0 0 0 .25rem rgba(145,99,56,0.5); */
        box-shadow: 0px 3px 10px 5px rgba(0, 0, 0, 0.4);

    }

        #cookieConsentdiv button:hover {
            background-color: #403879;
        }

    #cookieConsentdiv Consent-h3 {
        color: #f8f4ee;
        font-size: 22px;
    }

    #cookieConsentdiv p {
        color: antiquewhite;
        font-size: 13px;
    }

    #cookieConsentdiv a {
        color: white;
        text-decoration: underline;
    }
