#cookie-bar {
	position: fixed;
	bottom: 20px;
	left: 0;
	width: 100vw;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
}

#cookie-bar p {
	font-family: 'FF Milo', 'Open Sans', 'Helvetica Neue', 'Helvetica', sans-serif;
	font-weight: lighter;
	font-size: 16px;
	background-color: #00A5C9; 
	color: #fff;
	padding: 20px;
	cursor: pointer;
	display: inline-block;
	transition: transform 150ms ease-in-out;
}

#cookie-bar a {
  color: #fff;
  border-bottom: 1px solid #fff;
  text-decoration: none;
  line-height: 100%;
}

#cookie-bar a:hover,
#cookie-bar a:visited,
#cookie-bar a:active {
  text-decoration: none;
}

#cookie-bar .cb-enable {
  margin-left: 10px;
  display: inline-block;
  border-bottom: none;
}

@media screen and (max-width: 500px) {
	#cookie-bar {
		top: 0;
		bottom: auto;
	}
	#cookie-bar p {
		width: 100%;
		display: block;
		text-align: center;
		padding: 24px;
		font-size: 12px;
		text-align: center;
	}
}