
#cookie-consent-banner {
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    text-align: center;
    width: 100%;
    background: rgba(0, 0, 0, .7);
    color: #ffffff;
    z-index: 1000;
    min-height: 40px;
    line-height: 40px;
    font-size: 12px;
    padding: 2px 0;
    /* text-align: center; */
    transition: height 1s;
    -moz-transition: height 1s;
    -webkit-transition: height 1s;
    -o-transition: height 1s;
}

#cookie-consent-banner h3 {
	text-align: center;
	font-size: 30px;
	line-height: 37px;
	font-weight: 700;
	margin-bottom: 20px;
}
#cookie-consent-banner p {
	text-align: center;
	font-size: 18px;
	line-height: 26px;
	text-wrap: balance;
	margin-bottom: 20px;
}
#cookie-consent-banner label {
	font-size: 18px;
	line-height: 26px;
}
#cookie-consent-banner label input {
	margin-right: 7px;
}



.cookie-consent-preferences {
	display: none;
}


#cookie-consent-banner .cookie-consent-options {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
	column-gap: 30px;
}

#cookie-consent-banner .cookie-consent-buttons button, a.cookie-consent-button {
    color: #ffffff;
    background-color: #609ab3;
    border: solid 1px #fff;
    padding: 5px 10px;
    margin-left: 15px;
    text-decoration: none;
    cursor: pointer;
    font: 16px / 1 "museo_slab500", sans-serif;
}

#cookie-consent-banner .cookie-consent-buttons button::first-child {
	margin-left: 0;	
}

.cookie-consent-banner-open {
	cursor: pointer;
}



@media screen and (width < 600px) {
	#cookie-consent-banner {
		padding: inherit 5px;
	}
	
	#cookie-consent-banner h3 {
		font-size: 20px;
		line-height: 25px;
	}
	#cookie-consent-banner p {
		font-size: 16px;
		line-height: 24px;
	}

	.cookie-consent-options {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		column-gap: 20px;
		row-gap: 5px;
	}

	#cookie-consent-banner .cookie-consent-buttons button, a.cookie-consent-button {
		width: 90%;
		margin: 25px 0 0 0;
		display: inline-block;
	}

	#cookie-consent-banner {
	    background: rgba(0, 0, 0, 1);
	}
	
}
