#cookie-consent-bar {
	position: fixed;
	bottom: 0;
	left: 15px;
	width: calc(100% - 30px);
	max-width: 900px;
	background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
	color: #fff;
	padding: 15px 45px 15px 15px;
	box-sizing: border-box;
	font-family: Arial, sans-serif;
	font-size: 14px;
	line-height: 1.4;
	border-radius: 8px 8px 0 0;
	display: flex;
	align-items: center;
	z-index: 10000;
}
#cookie-consent-bar a {
	color: #e0e0e0;
	text-decoration: underline;
}
#cookie-consent-bar .close-btn {
	position: absolute;
	top: 8px;
	right: 15px;
	width: 24px;
	height: 24px;
	cursor: pointer;
	font-weight: bold;
	font-size: 20px;
	line-height: 20px;
	color: #ffffff;
	background: transparent;
	border: none;
	padding:0;
}
@media (max-width: 600px) {
	#cookie-consent-bar {
		font-size: 12px;
		padding: 12px 40px 12px 12px;
	}
	#cookie-consent-bar .close-btn {
		top: 6px;
		right: 12px;
		width: 20px;
		height: 20px;
		font-size: 18px;
		line-height: 18px;
	}
}
@media (min-width: 601px) and (max-width: 1024px) {
	#cookie-consent-bar {
		font-size: 13px;
		padding: 14px 42px 14px 14px;
	}
	#cookie-consent-bar .close-btn {
		top: 7px;
		right: 14px;
		width: 22px;
		height: 22px;
		font-size: 19px;
		line-height: 19px;
	}
}