.cookie-banner {
	position: relative;
	z-index: 100;
	bottom: 0;
	top: auto;
	right: auto;
	left: 0;
	display: block;
	margin: 0 auto;
	padding: 0;
	width: 100%;
	min-height: 0;
	border: none;
	border-radius: 0;
	background-color: #17ABD2;
	transform: none;
	transition: transform 300ms ease-in-out;
	visibility: visible;
	position: fixed;
	max-width: none;
}

.cookie-banner.dismissed {
	transform: translateY(110%);
}

.cookie-banner .banner-inner {
	padding: 8px 15px;
}

.cookie-banner .banner-message {
	padding-right: 15px;
}

.cookie-banner h4 {
	font: 700 15px 'petala-pro', sans-serif;
	color: white;
	letter-spacing: 0.7px;
	line-height: 1em;
}

.cookie-banner p {
	font: 300 11.5px 'petala-pro', sans-serif;
	color: white;
	letter-spacing: 0.3px;
	line-height: 1.2em;
	margin-bottom: 0;
	margin-right: 60px;
}

.cookie-banner .banner-message p a {
	font-weight: 700;
	color: white;
}

.cookie-banner .banner-close {
	flex-shrink: 0;
	margin: 0px;
	padding: 0px;
}

.cookie-banner .button {
	position: absolute;
	bottom: 10px;
	right: 10px;
	padding: 7px 10px;
	border-radius: 5px;
	background-color: #047E9F;
	margin: 0;
	font: 300 14px 'petala-pro', sans-serif;
	color: white;
	letter-spacing: 0.7px;
	line-height: 1em;
}

@media (min-width: 768px) {	
	.cookie-banner .banner-inner { 
		display: flex;
		flex-direction: row; 
		justify-content: center;
		align-items: center;
		padding: 17px 15px 10px;
	}
	
	.cookie-banner .banner-message {
		padding-right: 25px;
	}
	
	.cookie-banner h4 {
		font-size: 17px;
	}
	
	.cookie-banner p {
		font-size: 14px;
		margin-right: 0;
		margin-bottom: 10px;
	}
	
	.cookie-banner .button {
		font-size: 17px;
		position: relative;
		bottom: auto;
		right: auto;
		padding: 12px 17px;
	}
}

@media screen and (min-width: 64em) {
	.cookie-banner .banner-message {
		padding-right: 100px;
	}
}