﻿.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #F2F4F5;
	color: #333333;
	border-top: 1px solid black;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: museo-sans, sans-serif;
	font-size: 15px;
	z-index: 1000;
	display: none; /* Hidden by default */
}

.cookie-banner-content {
	display: flex;
	align-items: center;
	width: 100%;
}

.cookie-banner p {
	margin: 0;
	width: 90%;
}

.cookie-btn {
	background-color: #76BC21;
	color: #001a2a;
	border: none;
	padding: 12px 30px;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
	position: absolute;
	right: 90px;
}

.close-btn {
	position: absolute;
	right: 34px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	margin-left: 10px;
	display: flex;
}

.close-btn img {
	width: 18px;
}

.close-btn:hover {
	color: grey;
}

.content {
	margin: 50px;
}

.cookie-banner button:focus {
	outline: none;
}

@media screen and (max-width: 750px) {
	.cookie-banner {
		border: 1px solid black;
		padding: 5px 20px;
	}
	.cookie-banner-content {
		display: block;
		text-align: center;
	}
	.cookie-banner p {
		width: 100%;
		margin-top: 26px;
		text-align: left;
	}
	.cookie-btn {
		position: unset;
		margin: 30px 0;
	}
	.close-btn {
		right: 20px;
		top: 8px;
	}
}