/* ========Back to Top Button=================== */
#button {
  display: inline-block;
  /* background-image: linear-gradient(to left, #ee390f 0%, #f9b700 51%, #ee390f 100%); */
  background-color: black;
  background-size: 200%;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 45px;
  right: 60px;
  transition: background-color .3s,
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;

}

.topIcon {
  font-weight: normal;
  font-style: normal;
  font-size: 2.5em;
  line-height: 50px !important;
  color: #fff;
}

#button:hover {
  cursor: pointer;
  background: #0c2e60;
  ;
}

#button:active {
  background-color: #555;
}

#button.show {
  opacity: 1;
  visibility: visible;
}





.home-backToTop {
  display: none;
}




@media (max-width: 767px) {
  #button {
    margin: 0px;
    border-radius: 25px;
    /* bottom: 10px;
        right: 15px; */
    bottom: 25px;
    right: 25px;
  }

  .home-backToTop {
    display: block;
    background-color: white !important;
    /* border: 3px solid red; */
  }

  .home-backToTop i {
    color: black !important;
    /* border: 3px solid red; */
  }

}