* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

#cookiePopup {
  background-color: #ffffffec;
  position: absolute;
  font-size: 14px;
  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.4em;
  border-radius: 6px;
  transition: all 0.5s ease-in;
  margin-left:0;
  color: #888686;
  z-index:3000;
}
#cookiePopup img {
  display: block;
  width: 3.75em;
  transform: translateZ(0);
  position: relative;
  margin: auto;
}
#cookiePopup p {
  text-align: center;
  margin: 1.4em 0;
  color: #888686;
}
#cookiePopup button {
  background-color: #d1d1d6;
  border: none;
  color: #6e6c6c;
  font-size: 1.2em;
  padding: 1em 1.4em;
  display: block;
  position: relative;
  margin: auto;
  border-radius: 5px;
  cursor: pointer;
}
#cookiePopup a {
  color: #898888;
}
.hide {
  visibility: hidden;
  bottom: 0;
  
}
.show {
  visibility: visible;
  bottom: 2em;
  text-align: center;
}
@media screen and (max-width: 769px){ 

  .hide {
    bottom: 2em;
    right: 0;
  }
  .show {
    right: 0;
    bottom: 0;
  }
}