/* Start of CMSMS style sheet 'Cookie Law' */
/* 20160810: Gianluca Frustagli
CSS per il banner a scomparsa in basso "Informativa breve sui cookie in base alla legge italiana-europea".
Ricavato e adattato, insieme al resto del codice, da: http://www.cmscanbesimple.org/blog/add-a-cookie-consent-feature-to-cms-made-simple . */

#cookie_consent {
  background: #000;
  position: fixed;
  bottom: 0;
  float: left;
  z-index: 1000000000;
  width: 100%;
  padding: 30px 0;
  /*filter: alpha(opacity=70);
  opacity: 0.7;*/
}

#cookie_consent p {
  text-align: center;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  /* padding: 0 0 30px 0; */
  padding: 0 30px 0 0;
  /*filter: alpha(opacity=100);
  opacity: 1;*/
}

#cookie_consent a.accept_cookies {
  margin: 0 5px;
  padding: 5px;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  background: #6c0;
}

#cookie_consent a.more_info {
  margin: 0 5px;
  padding: 5px;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  background: #ccc;
}
/* End of 'Cookie Law' */

