#cookie-banner {    
    display: none;  
    position: fixed;
    bottom: 0; 
    right: 0; 
    width: 100%;
    z-index: 1;
    background-color: #000;
    color: #fff;
    font-size: 1.2em;
    text-align: center;  
    font-size: 16px;
    line-height: 1.5em;
	padding: 1em 1.8em;
	z-index: 9999;
}
#cookie-banner a:link,
#cookie-banner a:visited, 
#cookie-banner a:hover,
#cookie-banner a:active {
    text-decoration: none;
    color: #fff;
}
#cookie-banner a:hover, #cookie-banner a:active{
    text-decoration: underline;
    color: #fff;
}
#cookie-banner button#accept-cookies {
    background-color: #c2986e;
    border: none;
    color: #fff;
    padding: 12px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
    cursor: pointer;
}
#cookie-banner #cookie-row #cookie-col {
	display: flex;
	align-items: center;
}
#cookie-banner #cookie-consent-text,
#cookie-banner #cookie-consent-text div {
	flex: 1;
	text-align: left;
}
#cookie-banner #cookie-consent-button {
	flex: 0 1;
    margin-left: 30px;
}

@media(max-width:480px){
	#cookie-banner #cookie-row #cookie-col {
		display: block;
	}
	#cookie-banner #cookie-consent-button {
		margin-left: 0;
		margin-top: 5px;
	}
    #cookie-banner button#accept-cookies {
		width: 100%;
	}	
}