/**
* CSS per il banner Cookie policy
*
*/
.cookies-infobar {
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 0px;
    text-align: center;
    font-size: 12px;
    letter-spacing: 2px;
    line-height: 17px;
    z-index: 2;
    display: none;
  }

  .cookies-infobar.cookies-infobar_show{
    display: block;
  }
  
  .cookies-infobar.cookies-infobar_accepted {
    display: none;
  }
  
  .cookies-infobar_wrapper {
    margin: 10px;
  }
  .cookies-infobar a {
    color: #fff;
    text-decoration: underline;
  }
  .cookies-infobar_wrapper a{
    text-decoration: none;
  }
  .cookies-infobar_btn {
    display: inline-block;
    padding: 5px 10px;
    background: none;
    text-decoration: none;
    border-radius: 3px;
    color: #fff !important;
    text-transform: uppercase;
    font-size: 1.2em;
  }