#accn-cookie-notice {
    background: #fff3cd;
    position: fixed;
    bottom: 40px;
    padding: 10px;
    font-size: 0.8em;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border: 1px solid #e9e9e9;
    z-index: 99;
}

#accn-cookie-notice p {
    margin: 0px;
    line-height: 1.3em;
    text-align: justify;
}

#accn-cookie-notice a {
    text-decoration: underline;   
    color: black;
}

#accn-cookie-notice a:focus,
#accn-cookie-notice a:hover {
    background-color: #e9e9e9;
}

#accn-cookie-notice button {
    background-color: #212721;
    color: white;
    border: 0;
    border-radius: 3px;
    padding: 5px 20px 5px 20px;
    font-size: 0.9em;
    /* margin-left: 10px; */
}

#accn-cookie-notice button:focus,
#accn-cookie-notice button:hover {
    text-decoration: underline;
}


/****** Larger screens ******/

@media (min-width: 768px) { 

    #accn-cookie-notice {
        flex-direction: row;
        /* left: 20px; */
        left: 24%;
        width: 50%;    
        bottom: 23px;
    }

    #accn-cookie-notice .button-wrapper {
        width: 100px;
        text-align: center;
    }
    
}