#cookie-popup {
	position: fixed;
	bottom: 20px;
	left: 10px;
	z-index: 999;
	width: 350px;
	max-width: calc(100vw - 20px);
	padding: 25px;
	border-radius: 20px;
	background: #f07b02;
	color: #000;
	font-size: 15px;
	text-align: left;
}

#cookie-popup[hidden] {
	display: none;
}

#cookie-popup h2 {
	margin: 0 0 12px;
}

.cookie-popup-links,
.cookie-popup-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.cookie-popup-buttons {
	align-items: center;
	justify-content: flex-start;
	margin-top: 8px;
}

.cookie-popup-buttons button {
	padding: 12px 20px;
	border: 0;
	border-radius: 999px;
	font-weight: 600;
	cursor: pointer;
}

#accept-cookies {
	background: #000;
	color: #fff;
}

#rechazar-cookies {
	border: 1px solid rgb(0 0 0 / 45%);
	background: #fff;
	color: #000;
}

#accept-cookies:hover {
	background: #e78c2d;
	color: #000;
}

#rechazar-cookies:hover {
	background: #6f1cba;
	color: #fff;
}

@media (max-width: 500px) {
	#cookie-popup {
		right: 10px;
		bottom: 10px;
	}
}
