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

#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2%;
  width: 66px;
  height: 66px;
  border: 1px solid #ffffff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
  background-color: #fff;
  background-image: url('../../../images/commun/back-to-top.svg');
  z-index: 3000;
}
#back-to-top:hover {
  cursor: pointer;
}

/**
 * RESPONSIVE
 */

/*--------- <= 760px ---------*/

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

  #back-to-top {
    width: 2.3rem !important;
    height: 2.3rem !important;
  }

}
