
 
/* 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;}
}

#cookie1 { font-size: 13px !important; }

#cookie1 * { font-size: 13px !important; }

#cookiesms1:target {
    display: none;
}
.cookiesms{	
width: 100%;
height: auto;
margin: 0 auto;
padding-left: 1%;
padding-top: 16px;
font-size: 1.2em;
clear: both;
font-weight: bold !important;
color: #333;
bottom: 0px;
position: fixed;
left: 0px;
background-color: #FFF;
/* opacity: 0.7; */
filter: alpha(opacity=70);
transition: bottom 1s;
-webkit-transition: bottom 1s;
-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;
}
 
.cookiesms:hover{
bottom:0px;
}
.cookies2{
background-color: #FFF;
display: inline;
opacity: 0.95;
filter: alpha(opacity=95);
position: absolute;
left: 1%;
top: -23px;
font-size: 15px;
height: 24px;
padding-left: 25px;
padding-right: 25px;
-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);
}

.cookiesms button { cursor: pointer; border-radius: 3px;  margin: 10px 0px 10px 0px;}


@media only screen and (max-width :650px)  {

	#cookie1 {
		font-size: 10px !important;
	}

	.cookiesms {
		width: 100%;
		height: 79px;
	}


}

/* Fin del CSS para cookies */


 
