.cookie-banner {
	position: fixed;
	bottom: 0;
	width: 100%;
	background-color: #2c2c2c;
	padding: 30px;
	color: #FFF;
	line-height: 1.5;
	display: flex;
	justify-content: space-between;
	align-items: center;
	-webkit-box-shadow: 0 0 5px 0 rgba(31,31,31,0.7);
	-moz-box-shadow: 0 0 5px 0 rgba(31,31,31,0.7);
	box-shadow: 0 0 5px 0 rgba(31,31,31,0.7);
	z-index: 99999999;
	-webkit-transition: all 2s ease; /* Safari */
	transition: all 2s ease;
}
.cookie-banner.hide-banner {
	display: none;
}
.cookie-banner .cookie-content {
	width: 75%;
	margin: 0;
}
.cookie-banner .cookie-content a {
	color: #FFF;
}
.cookie-banner .cbwpt-cookie-buttons-container {
	width: 25%;
	text-align: right;
}
.cookie-banner .cbwpt-cookie-buttons-container button {
	border: none;
	text-transform: uppercase;
	padding: 10px 25px;
	cursor: pointer;
}
.cookie-banner .cbwpt-cookie-buttons-container button.accent {
	padding: 10px 25px;
	color: #000;
	background-color: #fece0d;
	border-radius: 2px;
	-webkit-box-shadow: 0 0 8px 0 rgba(255,255,255,0.5);
	-moz-box-shadow: 0 0 8px 0 rgba(255,255,255,0.5);
	box-shadow: 0 0 8px 0 rgba(255,255,255,0.5);
}
.cookie-banner .cbwpt-cookie-buttons-container button.link, a.link {
	text-decoration: underline;
	color: #fece0d;
	background: unset;
}

.revoke-banner {
	display: none;
	cursor: pointer;
}
.revoke-banner.show-revoke {
	display: block;
	position: fixed;
	bottom: 0;
	right: 5%;
	padding: 10px 25px;
	background-color: #2c2c2c;
	-webkit-box-shadow: 0 0 5px 0 rgba(31,31,31,0.7);
	-moz-box-shadow: 0 0 5px 0 rgba(31,31,31,0.7);
	box-shadow: 0 0 5px 0 rgba(31,31,31,0.7);
	color: #FFF;
	border-radius: 3px 3px 0 0;
}
.revoke-banner p {
	margin: 0;
}

/* Responsive */
@media screen and (max-width: 1023px) {
	.cookie-banner {
		flex-direction: column;
	}
	.cookie-banner .cookie-content {
		width: 90%;
		text-align: center;
	}
	.cookie-banner .cbwpt-cookie-buttons-container {
		width: 100%;
		text-align: center;
		margin-top: 20px;
	}
}

@media screen and (max-width: 767px) {
	.cookie-banner {
		padding: 15px;
	}
	.cookie-banner .cookie-content {
		width: 100%;
	}
}