@charset "utf-8";
/* CSS Document */

body {
  background: #fff;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  color: #000;
  text-align: justify;
  margin: 0 auto; /* Añade la propiedad margin con el valor 0 auto para centrar el mensaje */
  padding: 1rem 1rem;
  background: #fff;
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 9999;
  border: 1px solid #000;
  font-size: 12px;
  max-width: 600px;
}

.cookie-banner--hide {
  display: none;
  bottom: -100%;
}

.cookie-banner .cookie-banner-button {
  display: inline-block;
  cursor: pointer;
  padding: 0.55rem 1rem;
  margin-left: 0.45rem;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
  letter-spacing: 1px;
  background: #22b198;
  border-radius: 5px; /* Añade la propiedad border-radius con el valor deseado para bordes redondeados */
}

@media only screen and (max-width: 600px) {
  .cookie-banner span {
    display: inline-block;
    padding: 10px;
  }
}


