/* -----------------------------
BACK TO TOP
----------------------------- */

#back-to-top{
  position:fixed;
  right:24px;
  bottom:24px;

  width:44px;
  height:44px;

  display:flex;
  align-items:center;
  justify-content:center;

  margin:0;
  background:#D9A441;
  color:#fff;

  border-radius:50%;
  text-decoration:none;
  font-size:22px;

  opacity:0;
  visibility:hidden;

  transition:opacity .25s ease;
  z-index:9999;
}

#back-to-top.show{
  opacity:1;
  visibility:visible;
}

#back-to-top:hover{
  opacity:.8;
  color:#fff;
}