﻿#divCookie {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 99999;
	background-color: #036;
	color: white!important;
	padding: 20px 50px;
}

	#divCookie > div {
		float: left;
	}

		#divCookie > div:first-child {
			max-width: 930px;
		}

	#divCookie h2 {
		font-size: 1.8rem;
		font-weight: normal;
		color: white !important;
	}

	#divCookie p {
		font-size: 1.2rem;
	}

	#divCookie a {
		color: white;
	}

	#divCookie button {
		margin: 20px 80px;
		padding: 5px 12px;
		border-radius: 10px;
		font-size: 1.4rem;
		color: white;
		border: solid 10px transparent;
		background: transparent;
		transition: color .2s ease-in-out,background-color .2s ease-in-out,border-color .2s ease-in-out;
	}

		#divCookie button:hover {
			background: white;
			color: #036;
			border-color: #048;
		}