/* Poeles & Accessoires - bouton retour en haut global */
#footer .pa-footer-backtop {
  position: fixed !important;
  z-index: 10020;
  right: 22px;
  bottom: 22px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 46px !important;
  height: 46px !important;
  margin: 0 !important;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50% !important;
  background: #1d1d1b !important;
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(0,0,0,.20);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease, background .2s ease;
}

#footer .pa-footer-backtop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

#footer .pa-footer-backtop:hover,
#footer .pa-footer-backtop:focus-visible {
  background: #f57900 !important;
  color: #fff !important;
  outline: none;
}

#footer .pa-footer-backtop .material-icons {
  font-size: 22px !important;
}

@media (max-width: 767.98px) {
  #footer .pa-footer-backtop {
    right: 14px;
    bottom: 14px;
    width: 42px !important;
    height: 42px !important;
  }
}
