@charset "utf-8";
/* 1-smartphone/footer.css */



.cierre {
    bottom: 0;
    text-align: center;
    margin: 0 auto 0 auto;
    width: 90%;
    font-family: 'Nunito', sans-serif;
    font-size: 100%;
    color: #836f63;
    margin-bottom: 2em;
}

.cierre a {
    color: #836f63;
    
}

.fa-om {
    font-size: 290%;
    padding-bottom: 0.3em;
}









/* Back to top button */

  #button {
  display: inline-block;
  background-color: #ff5501;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: "\f106";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}
