#footer {
  margin: auto;
  position: relative;
  
  color: @footer_color;
  background-color: @footer_bg;
  a {  color: @footer_color; }
  #footer-seo { display: none; }
} 

/****************** MENU INFO E SERVIZI ********************/
#footer-nav {
  display: block;
  font-size: 11px;
  
  max-width: 1030px;  margin: 0 auto; padding: 0 15px;
  
  ul {
    padding-left: 15px;
    li a {font-weight: normal;}
  } 
}


#footer-logo {
  font-size: 11px;
  padding: 10px 0;
  line-height: 25px;
  a {display: inline-block;}
  img {display: inline-block; padding: 0 5px; vertical-align: bottom;}
} 

/****************** COOKIE BAR + PRIVACY BAR********************/

#cookie-bar, #privacy-bar  {
  background: @cookie_bg;
  box-shadow:0 0 3px 1px #666;
  display: none;
  color: @cookie_color;
  z-index: 1100;
  font-size:12px;
  width: 100vw;
  
}
#cookie-bar {
  border-bottom: 1px solid @cookie_border_color;
}

#privacy-bar {
  border-top: 1px solid @cookie_border_color;
}

#cookie-bar-in, #privacy-bar-in {
  width: 90%;
  margin: 10px auto; 
  position:relative;
  .closeBtn {
    width: 10px; height: 10px; margin-left: 10px;
    float: right;
    color:@cookie_color;
    cursor: pointer;
  }
  .link {
    color: @cookie_color;
    text-decoration: underline;
  }
  
}
  
      @media (min-width: @screen-sm-min) {
        #cookie-bar-in, #privacy-bar-in {
          width: 700px;
        }
      }
      
      @media (min-width: @screen-md-min) {
        #cookie-bar-in,  #privacy-bar-in {
          width: 800px;
        }
      }


/****************** BACK TO TOP ********************/

#back-to-top {
  right: 20px; 
  a { color: #000000 }
}


@media (max-width: @screen-sm-min) {
  #back-to-top.affix-top {
    position: absolute; 
    bottom: -80px; 
  }
  #back-to-top.affix {
    position: fixed; 
    bottom: 20px; 
  }
}
@media (min-width: @screen-sm-min) {
    #back-to-top {display: none;}
}
@media print {
  #back-to-top {display: none;}
}


/****************** Sticky footer styles  *******************/
html {
  position: relative;
  min-height: 100%;
}
#footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}

body {
  margin-bottom: 520px; 
  -webkit-transition: margin 0.5s; /* Safari prior 6.1 */
  transition: margin 0.5s; 
}
      /* Medium devices (desktops, 992px and up) */
      @media (min-width: @screen-md-min) { 
        body {
          margin-bottom: 272px; 
          -webkit-transition: margin 0.5s; /* Safari prior 6.1 */
          transition: margin 0.5s; 
        }
      }
/*
Inserito da Javascript

@footer_height = ???
body {
  margin-bottom: @footer_height + 20px; 
}
*/