#cookie-consent-modal {  
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #222;
	color: #eee;
	padding: 15px 20px;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	font-family: Arial, sans-serif;
	font-size: 14px;
	z-index: 10000;
}
#cookie-consent-modal p {
	margin: 0;
	flex: 1 1 60%;
}
#cookie-consent-modal a {
	color: #4dabf7;
	text-decoration: underline;
}
#cookie-consent-modal button {
	background-color: #4dabf7;
	border: none;
	color: #222;
	padding: 10px 20px;
	cursor: pointer;
	font-weight: bold;
	border-radius: 4px;
	flex-shrink: 0;
	margin-left: 15px;
}
@media (max-width: 767px) {
	#cookie-consent-modal {
		flex-direction: column;
		align-items: stretch;
		font-size: 13px;
	}
	#cookie-consent-modal p {
		flex: none;
		margin-bottom: 10px;
	}
	#cookie-consent-modal button {
		margin-left: 0;
		width: 100%;
	}
}
@media (min-width: 768px) and (max-width: 1023px) {
	#cookie-consent-modal p {
		flex: 1 1 70%;
	}
}