* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}




main {
	margin: 20px auto;
	max-width: 1000px;
	background: #fff;
	min-height: 80vh;
	padding: 20px;
	border-radius: 10px;
}

.aviso-cookies {
	display: none;
	background: #f3f3f3;
	padding: 20px;
	width: calc(100% - 40px);
	max-width: 300px;
	line-height: 150%;
	/* border-radius: 10px; */
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 1000001;
	padding-top: 60px;
	box-shadow: 0px 2px 20px 10px rgba(222,222,222,.25);
	text-align: center;
}

.aviso-cookies.activo {
	display: block;
}

.aviso-cookies .galleta {
	max-width: 100px;
	position: absolute;
	top: -50px;
	left: calc(50% - 50px);
	-webkit-animation: spin 4s linear infinite;
	-moz-animation: spin 4s linear infinite;
	animation: spin 4s linear infinite;
}

@-webkit-keyframes spin{
	100%
	{
		-webkit-transform: rotate(360deg);
	}
}

@-moz-keyframes spin{
	100%
	{
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spin {
	100%
	{
		-webkit-transform: rotate(360deg);
	}
}

.aviso-cookies .boton {
	width: 100%;
	background: #401122;
	border: none;
	color: #fff;
	text-align: center;
	padding: 10px 15px;
	font-weight: 700;
	cursor: pointer;
	transition: .3s ease all;
	border-radius: 5px;
	margin-bottom: 15px;
	font-size: 14px;
}

.aviso-cookies .boton:hover {
	background: #F28B0C;
}

.aviso-cookies .enlace {
	color: #2C3A4C;
	text-decoration: none;
	font-size: 14px;
}

.aviso-cookies .enlace:hover {
	text-decoration: underline;
}

.fondo-aviso-cookies {
	display: none;
	background: rgba(0,0,0,.50);
	position: fixed;
	z-index: 1000000;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
}

.fondo-aviso-cookies.activo {
	display: block;
}