/* Aviso de cookies de Play & Mix: barra inferior, encima del reproductor fijo. */
.pmt-cookies {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 70px;
	z-index: 999998;
	display: flex;
	justify-content: center;
	padding: 0 12px;
	pointer-events: none;
}
.pmt-cookies[hidden] { display: none; }
.pmt-cookies-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 20px;
	width: 100%;
	max-width: 960px;
	padding: 16px 20px;
	border: 1px solid rgba(247, 169, 12, .5);
	border-radius: 12px;
	background: #111;
	color: #eee;
	font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
	box-shadow: 0 10px 40px rgba(0, 0, 0, .55);
	pointer-events: auto;
}
.pmt-cookies-title {
	flex: 0 0 100%;
	margin: 0;
	color: #f7a90c;
	font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
}
.pmt-cookies-text {
	flex: 1 1 420px;
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
}
.pmt-cookies-text a { color: #f7a90c; text-decoration: underline; }
.pmt-cookies-actions { display: flex; gap: 10px; }
/* Mismo aspecto para las dos opciones: rechazar debe ser tan fácil como aceptar. */
.pmt-cookies .pmt-cookies-btn {
	min-width: 120px;
	height: auto;
	margin: 0;
	padding: 10px 18px;
	border: 2px solid #f7a90c;
	border-radius: 24px;
	background: #f7a90c !important;
	background-image: none !important;
	color: #111 !important;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	box-shadow: none;
	cursor: pointer;
}
.pmt-cookies .pmt-cookies-btn:hover,
.pmt-cookies .pmt-cookies-btn:focus-visible { background: #fff !important; border-color: #fff; outline: none; }
@media (max-width: 600px) {
	.pmt-cookies { bottom: 64px; }
	.pmt-cookies-box { padding: 14px; }
	.pmt-cookies-actions { width: 100%; }
	.pmt-cookies .pmt-cookies-btn { flex: 1; min-width: 0; }
}
