/* CSS Document */
#cookieMessage {
  font-family: serif;
  font-style: italic;
  font-size:14px;
  /*padding: .6em 1em;*/
  padding:0;
  line-height:160%;
  background-color: gold;
  position: relative;
  z-index: 101;
  top: 0;
  overflow: hidden;
}

#cookieMessage p{margin-bottom:0;font-size:14px;}

#cookieMessage p .boton-cookie{
  padding: .15em .8em;
  margin: .5em;
  border-radius: 0em;
  color: white;
  height:1em;
  background-color: #2ba6cb;
  border: .1em solid hsl(211, 75%, 52%);
  background: linear-gradient(hsl(211, 75%, 70%), hsl(211, 75%, 52%));
  text-shadow: -.05em -.05em .05em hsl(210, 75%, 12%);
  font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size:1em;
}
#cookieMessage p .boton-cookie:hover {
  text-decoration: none;
}

#cookieMessage.aceptado {
  -webkit-animation-name: cookieAceptado;
  -webkit-animation-duration: .5s;
  -webkit-animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-name: cookieAceptado;
  -moz-animation-duration: .5s;
  -moz-animation-timing-function: ease-out;
  -moz-animation-fill-mode: forwards;
  animation-name: cookieAceptado;
  animation-duration: .5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@-webkit-keyframes cookieAceptado {
  100% {
    height: 0;
    padding: 0 1em;
  }
}
@-moz-keyframes cookieAceptado {
  100% {
    height: 0;
    padding: 0 1em;
  }
}

@keyframes cookieAceptado {
  100% {
    height: 0;
    padding: 0 1em;
  }
}



