#cookiebar {
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    bottom: -1px;
    left: 0;
    z-index: 99;
    padding: 0 20px;
    width: 100vw;
    text-align: center;
    opacity: 1;
    transition: opacity 1s;
}

#cookiebar.accepted {
    opacity: 0;
}

#cookiebar p {
    color: #fff;
	margin: 0.8rem 1.5rem;
}
#cookiebar p a {
    color: #fff !important;
text-decoration: underline;
}

#cookiebar .btn {
    margin: 1rem 1rem;
    padding: 0 1rem;  
background-color: #d93954;
border-radius: 0;
    color: #fff;
    display: inline-block;
    padding: 14px 23px;
/*     font-size: 1rem; */
    line-height: 1.14em;
    font-family: Arial, sans-serif;
    font-weight: bold;
    text-decoration: none;
    -webkit-transition: background .2s ease-out;
    -moz-transition: background .2s ease-out;
    -o-transition: background .2s ease-out;
    transition: background .2s ease-out;
}

@media only screen and (max-width: 40em){
    #cookiebar p {
        font-size: 0.75rem;
        line-height: 0.75rem;
    }
    #cookiebar .btn {
        display: block;
        margin: 1rem auto;
        font-size: .75rem;
    }
    #cookiebar {
        bottom: 0px;
        padding: .5rem;
    }
}