#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #373737;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-family: Open Sans, sans-serif;
    font-size: 10px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 50%;
    margin: 0 auto;
    height: 9rem;
}

#cookie-banner p {width: 80%;}

@media only screen and (max-width: 1080px) {
    #cookie-banner {
        padding: 10px;
        font-size: 10px;
        width: 100%;
        height: 140px;
        display: block;
    }
    
    #cookie-banner button {
    	height: 30px !important;
    	top: unset !important;
    	float: none !important;
    }
    
    #cookie-banner p {
    width: 100%;
}
}


#cookie-banner a {
    color: #fff;
    text-decoration: underline;
}

#cookie-banner button {
    font-family: Open Sans, sans-serif;
    font-size: 10px;
    padding: 5px;
    background-color: #0963BC;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    height: 40px;
    width: 100px;
    float: right;
    position: relative;
    top: -5rem;
}

#cookie-banner button:hover {
    background-color: #0088cc;
}
