/* Stile per il popup */
#custom-cookie {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  background: rgba(240, 238, 238, 0);
  /* Sfondo trasparente */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#custom-cookie.hidden {
  display: none;
}

.cookie-content {
  background: white;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  width: 95%;
}

.cookie-content p {
  margin: 0;
}

.cookie-content button {
  margin-top: 15px;
  padding: 10px 20px;
  background: #3a0b8d;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.cookie-content button:hover {
  background: #2a0767;
  color: white;
}

@media screen and (maz-width: 768px) {
  #custom-cookie {
    bottom: 50px;
  }

}

.font-size-cookie {
  font-size: smaller !important;
}

.font-bold {
  font-weight: bold !important;
}