/* UItoTop styles
========================================================*/
#toTop {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 30px;
  overflow: hidden;
  border: none;
  width: 35px;
  text-align: center;
  height: 35px;
  background: url(../images/totop.png) 0 0 no-repeat;
  z-index: 20;
  transition: all 0.3s ease;
  outline: none;
  opacity: 0.6;
}
#toTop:before {
  display: none;
}
#toTop:hover {
  opacity: 1;
}
@media only screen and (max-width: 1199px) {
  #toTop {
    display: none !important;
  }
}
