﻿#cookieConsent {
	position: fixed;
	left: 0;
	bottom: 0;
	padding: 25px 0;
	width: 100%;
	color: #fff;
	background: rgb(2,50,137);
	background: -moz-linear-gradient(180deg, rgba(2,50,137,1) 0%, rgba(20,95,225,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(2,50,137,1) 0%, rgba(20,95,225,1) 100%);
	background: linear-gradient(180deg, rgba(2,50,137,1) 0%, rgba(20,95,225,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#023289",endColorstr="#145fe1",GradientType=1);
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	text-align: center;
	flex-wrap: wrap;
	z-index: 10;
}

	#cookieConsent button {
		border: 2px solid #fff;
		background-color: transparent;
		padding: 5px 15px;
		margin-left: 10px;
		color: #fff;
		font-weight: bold;
		transition: all .45s ease-in-out;
	}

		#cookieConsent button:hover {
			border: 2px solid #fff;
			background-color: #fff;
			color: rgb(63, 83, 163);
			font-weight: bolder;
		}
