.fixed-cookie {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 20;
}

#cookiePopup {
  z-index: 15;
  background-color: #ffffff;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  font-size: 14px;
  box-shadow: 0 0 2em rgba(5, 0, 31, 0.15);
  text-align: justify;
  padding: 12px 16px;
  border-radius: 6px;
  transition: all 0.5s ease-in;
  display: flex;
  align-items: center;
  gap: 16px;
}
#cookiePopup img {
  display: block;
  width: 3.75em;
  transform: translateZ(0);
  position: relative;
  margin: auto;
}
#cookiePopup p {
  /* text-align: center; */
  margin: 0;
}
#cookiePopup button {
  background-color: #5e351c;
  border: none;
  color: #ffffff;
  padding: 8px 16px;
  display: block;
  position: relative;
  margin: auto;
  border-radius: 5px;
}
#cookiePopup a {
  color: #5e351c;
}
.cookie-hide {
  visibility: hidden;
  bottom: 0;
  right: 2em;
}
.cookie-show {
  visibility: visible;
  bottom: 2em;
  right: 2em;
  display: flex;
}
@media only screen and (max-width: 37.5em) {
  #cookiePopup {
    width: 100%;
  }
  .cookie-hide {
    bottom: 2em;
    right: 0;
  }
  .cookie-show {
    right: 0;
    bottom: 0;
  }
}