/**
 * @file
 * Feuille de style dédiée au plugin backToTop.
 */

#back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 85px;
  height: 84px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  background-color: #fff;
  background-image: url('../../../images/commun/back-to-top.svg');
  z-index: 3000;
}
#back-to-top:hover {
  /*background-position: 0 -70px;*/
  cursor: pointer;
}

/**
 * RESPONSIVE
 */

/*--------- <= 560px ---------*/

@media only screen and (max-width: 560px) {

  #back-to-top {
    width: 45px !important;
    height: 45px !important;
  }
}
