﻿/* Banner cookie */
#cookieChoiceInfo {
 background-color: #000000;
 font-size: 16px;
 color: #fff;
 padding: 10px;
 opacity: 0.8;
 line-height: 1.2em;
 display: flex;
 flex-wrap: wrap; /* permette di andare a capo */
 align-items: center;
 justify-content: center; /* centra tutto */
 gap: 10px;
 position: fixed;
 bottom: 20px;
 left: 20px;
 right: 20px;
 z-index: 9999;
 border-radius: 8px;
 text-align: center; /* testo centrato */
}

/* Link cookie policy */
#cookieInfoLink {
 color: #eb611a; /* arancio */
 text-decoration: underline;
}

 #cookieInfoLink:hover {
  color: #ffa347; /* arancio chiaro */
  text-decoration: underline;
 }

/* Pulsante chiudi */
#cookieChoiceDismiss {
 background-color: #000;
 color: #fff;
 text-decoration: none;
 font-weight: 600;
 font-size: 16px;
 padding: 5px 12px;
 border-radius: 4px;
 display: block; /* va a capo */
 margin-top: 5px;
 cursor: pointer;
}

 #cookieChoiceDismiss:hover {
  background-color: #eb611a; /* arancio */
 }

/* --- Responsive --- */
@media (max-width: 768px) {
 #cookieChoiceInfo {
  flex-direction: column; /* testo e pulsante uno sotto l'altro */
  text-align: center;
  padding: 12px;
  bottom: 15px;
  left: 10px;
  right: 10px;
 }

 #cookieChoiceDismiss {
  width: 100%;
  margin-top: 10px;
 }
}
