/* CSS para la animación y localización de los DIV de cookies */
 
@keyframes desaparecer
{
0%		{bottom: 0px;}
80%		{bottom: 0px;}
100%		{bottom: -50px;}
}
 
@-webkit-keyframes desaparecer /* Safari and Chrome */
{
0%		{bottom: 0px;}
80%		{bottom: 0px;}
100%		{bottom: -50px;}
}
 
@keyframes aparecer
{
0%		{bottom: -38px;}
10%		{bottom: 0px;}
90%		{bottom: 0px;}
100%		{bottom: -38px;}
}
 
@-webkit-keyframes aparecer /* Safari and Chrome */
{
0%		{bottom: -38px;}
10%		{bottom: 0px;}
90%		{bottom: 0px;}
100%		{bottom: -38px;}
}
.bannerCookiesContenedor{
	bottom: -135px;
	left: 0px;
	position:fixed;
	margin: 0px;
	padding: 0px;
	width: 100%;
	transition: bottom 1s;
	-webkit-transition:bottom 1s; /* Safari */
}
.bannerCookiesContenedor:hover{
	bottom:0px;
}
.bannerCookies{	
	width:100%;
	margin:0;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 30px;
	padding-bottom: 30px;

	font-size: 1.2em;
	text-align: center;
	clear:both;
	font-weight: strong;
	color: #333;
	background-color: #FFF;
	opacity:0.4;
	filter:alpha(opacity=70); /* For IE8 and earlier */
	-webkit-box-shadow: 3px -3px 1px rgba(50, 50, 50, 0.56);
	-moz-box-shadow:    3px -3px 1px rgba(50, 50, 50, 0.56);
	box-shadow:         3px -3px 1px rgba(50, 50, 50, 0.56);
	z-index:999999999;
}
.bannerCookiesContenedor:hover>*{
	opacity:0.7;
}
.pestanaCookies{
	clear:both;
	font-weight: strong;
	color: #333;
	background-color: #FFF;
	text-align: center;
	opacity:0.4;
	margin:0;
	padding: 10px;
	width: 200px;
	height: 30px;
	-webkit-border-top-right-radius: 15px;
	-webkit-border-top-left-radius: 15px;
	-moz-border-radius-topright: 15px;
	-moz-border-radius-topleft: 15px;
	border-top-right-radius: 15px;
	border-top-left-radius: 15px;
	-webkit-box-shadow: 3px -3px 1px rgba(50, 50, 50, 0.56);
	-moz-box-shadow: 3px -3px 1px rgba(50, 50, 50, 0.56);
	box-shadow: 3px -3px 1px rgba(50, 50, 50, 0.56);
}
.bannerBoton{
	background-color: rgba(43, 40, 40, 0.151);
	padding: 15px;
	border-radius: 5px;
	color: rgb(138, 0, 0);
}
.bannerBoton:hover{
	background-color: rgba(243, 243, 243, 0.938);
	padding: 15px;
	color: rgb(235, 0, 184);
}