/* UItoTop styles
========================================================*/
#toTop {
  display: none;
  text-decoration: none;
  position: fixed;
  bottom: 80px;
  right: 30px;
  overflow: hidden;
  border: none;
  color: #ffffff;
  background: #000000;
  border-radius: 200px;
  width: 58px;
  text-align: center;
  height: 58px;
  line-height: 58px;
  z-index: 20;
  -webkit-transition: background 0.5s ease;
  transition: background 0.5s ease;
}
#toTop:hover {
  outline: none;
  background: #888888;
}
#toTop.fa-angle-up::before {
  content: '\e941';
  font-family: 'Linearicons';
  font-size: 24px;
  line-height: 58px;
  text-align: center;
  color: #fff;
}
@media only screen and (max-width: 1199px) {
  #toTop {
    display: none !important;
  }
}