/* Cookie Banner */
#cookieConsent {
  position: fixed;
  bottom: 20px;
  right: 10px;

  max-width: 20vw;
  /* margin: auto; */
  background: #efefefe6;
  border: 1px solid #cfcfcf;
  backdrop-filter: blur(12px);
  padding: 10px;
  /* border-radius: 14px; */
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.257);

  z-index: 9999;
  display: none;
}
@media (max-width: 576px) {
  #cookieConsent {
    max-width: 50vw;
  }
}

#cookieConsent p{
  font-size:0.7rem;
  color: #272727;
  hyphens: auto;
}
.cookie-buttons {
  color: #272727;
  margin-top: 15px;
  display: flex;
  gap: 1vw;
  flex-wrap: wrap;
}
#cookieConsent button{
  font-size:0.7rem;
}
#cookieIcon {
  position: fixed;
  bottom: 20px;
  left: 20px;

  width: 2rem;
  height: 2rem;

  border-radius: 50%;

  background: #8c8c8c;
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  cursor: pointer;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.139);

  z-index: 9998;
}