.aviso-promo {
	z-index: 99;
	position: fixed; top: 0; right: 0; bottom: 0; left: 0;
	overflow-y: scroll;

	width: 100%;
	height: 100%;
}

.aviso-promo span {
	z-index: 1;
	position: fixed; top: 30px; right: 30px;
	
	opacity: 0;
	cursor: pointer;

	animation: aviso 1s 2s forwards;
}

.aviso-promo span::before {
	display: flex;
	align-items: center;
	justify-content: center;
	content: "\00D7";

	width: 40px;
	height: 40px;

	background-color: red;
	border-radius: 50%;

	font-size: 20px;
	line-height: 20px;
	font-weight: bold;
	color: white;
}

.aviso-promo a {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	
	opacity: 0;

	padding: 30px 0;

	min-width: 100vw;
	min-height: 100vh;

	background-color: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(20px);

	animation: aviso 1s linear 1s forwards;
}

@keyframes aviso {
	0%		{ opacity: 0; }
	100%	{ opacity: 100%; }
}

.aviso-promo img, .aviso-promo video {
	display: block;

	width: 90%; max-width: 500px;
	height: auto;

	border-radius: 20px;
	box-shadow: 0 0 40px grey;
}

