
#cookiePopup {
  position: absolute;
    bottom:-30em;
    right:30px;
    max-width:365px;
    background: beige;
    padding:25px 25px 30px 25px;
    border-radius:5px;
    box-shadow:1px 7px 14px -5px rgba(0,0,0,0.15);
    text-align: center;
}
#cookiePopup img {
  display: block;
  width: 3.75em;
  transform: translateZ(0);
  position: relative;
  margin: auto;
}
#cookiePopup p {
  text-align: center;
  margin: 1.4em 0;
}
#cookiePopup button {
  background-color: #262B3E;
  border: none;
  color: #ffffff;
  font-size: 1.2em;
  padding: 1em 1.4em;
  display: block;
  position: relative;
  margin: auto;
  border-radius: 5px;
}
#cookiePopup a {
  color: #bd7b24;
}
.hide {
   opacity:0;
    pointer-events: none;
    transform:scale(0.8);
    transition:all 0.3s ease;
}
.show {
  visibility: visible;
  bottom: 2em;
  right: 2em;
}
@media only screen and (max-width: 37.5em) {
  #cookiePopup {
    width: 100%;
  }
  .hide {
    bottom: 2em;
    right: 0;
  }
  .show {
    right: 0;
    bottom: 0;
  }
}