* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

#cookiePopup {
  background-color: rgba(255, 255, 255, 0.90);
  position: absolute;
  font-size: 14px;
  width:100%;
  /* max-width:100%; */
  box-shadow: 0 0 2em rgba(5, 0, 31, 0.15);
  font-family: "Poppins", sans-serif;
  text-align: justify;
  line-height: 1.8em;
  padding: 1em 1.5em;
  
  transition: all 0.5s ease-in;
/*   transition: all 0.7s ease-out; */
}
/* #cookiePopup img {
  display: block;
  width: 3.75em;
  transform: translateZ(0);
  position: relative;
  margin: auto;
} */
#cookiePopup p {
  text-align: center;
  margin: 1em 0;
}
#cookiePopup button {
  background-color: #fcc307;
  border: none;
  color: #ffffff;
  font-size: 1.32em;
  padding: 1em 1.4em;
  display: block;
  position: relative;
  margin: auto;
  border-radius: 45px;
}
#cookiePopup button:active{
  border-color:#ffffff;
}
#cookiePopup a {
  color: #1ba2f0;
}
.hide {
  visibility: hidden;
  bottom: 0;
  /* right: 2em; */

}
.show {
  visibility: visible;
  bottom: 0.5em;
  /* right: 2em; */
}
@media only screen and (max-width: 37.5em) {
  #cookiePopup {
    width: 100%;
  }
  .hide {
    bottom: 0.5em;
    /* right: 0; */
  }
  .show {
    right: 0;
    bottom: 0;
  }
}
