.cookie-consent {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;

	background: #fff;

	border-radius: 15px;

	padding: 20px;

	z-index: 99999;

	display: none;

	border: 1px solid #e8e8e8;
}

.cookie-content {
	display: flex;

	align-items: center;

	gap: 20px;
}

.cookie-icon {
	font-size: 45px;
}

.cookie-text {
	flex: 1;
}

.cookie-text h5 {
	margin-bottom: 8px;

	font-weight: bold;
}

.cookie-text p {
	margin: 0;

	color: #666;

	font-size: 14px;
}

.cookie-buttons {
	display: flex;

	gap: 10px;
}

@media (max-width: 768px) {
	.cookie-content {
		flex-direction: column;

		text-align: center;
	}

	.cookie-buttons {
		width: 100%;
	}

	.cookie-buttons button {
		flex: 1;
	}
}
