/* UItoTop styles
========================================================*/
#toTop {
  display: none;
  text-decoration: none;
  position: fixed;
  bottom: 50px;
  right: 50px;
  overflow: hidden;
  border: none;
  color: #ffffff;
  background: #fb8754;
  border-radius: 200px;
  width: 50px;
  text-align: center;
  height: 50px;
  font-size: 16px;
  line-height: 48px;
  z-index: 20;
  -webkit-transition: background 0.5s ease;
  transition: background 0.5s ease;
}
#toTop:hover {
  outline: none;
  color: #ffffff;
  background: #fcd251;
}
@media only screen and (max-width: 1199px) {
  #toTop {
    display: none !important;
  }
}
