/* SCROLL UP BUTTON */
#scrollUp{
  position:fixed;
  bottom:30px;
  right:30px;
  width:50px;
  height:50px;
  border-radius:50%;
  border:2px solid #382826;
  background:#fff;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  visibility:hidden;
  transition:all 0.4s ease;
  z-index:999;
  box-shadow: rgba(0, 0, 0, 0.25) 1.95px 1.95px 2.6px;
}

/* SHOW BUTTON */
#scrollUp.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* ARROW */
#scrollUp span{
  width:10px;
  height:10px;
  border-left:2px solid #382826;
  border-top:2px solid #382826;
  transform:rotate(45deg);
  margin-top:4px;
}

/* HOVER EFFECT */
#scrollUp:hover{
  background:#382826;
}

#scrollUp:hover span{
  border-color:#fff;
}
