/* UItoTop styles
========================================================*/
#toTop {
  color: #fff;
  background-color: #c69c6d;
  display: flex;
  text-align: center;
  width: 45px;
  height: 45px;
  line-height: 45px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  opacity: 0.7;
  -webkit-transition: all ease .6s;
  transition: all ease .6s;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 99999;
  bottom: 20px;
  right: 20px;
  text-decoration: none;
}
#toTop:hover {
  outline: none;
  background-color: #c69c6d;
  opacity: 1;
}
#toTop:hover::before {
  -webkit-animation: toTopFromBottom 0.5s forwards;
  animation: toTopFromBottom 0.5s forwards;
}
@media only screen and (max-width: 1199px) {
  #toTop {
    display: none !important;
  }
}
