/*
 *  CSS propio para la web de COCAM
 * Triki 29-09-2018
 *
 */


#backToTopBtn {
      display: none;
      position: fixed; /* Fixed/sticky position */
      bottom: 2%; /* Place the button at the bottom of the page */
      right: 10%; /* Place the button 30px from the right */
      cursor: pointer; /* Add a mouse pointer on hover */
      background-image:url('../images/btn-up_arrow-deact.png');
      background-color: transparent;
      background-repeat:no-repeat;
      background-position: center center;
      background-size: 92px;
      height: 92px;
      width: 92px;
      border-radius: 50%;
      padding: 0px;
      border: none;
}

#backToTopBtn:hover {
      background-image:url('../images/btn-up_arrow.png');
}
