/* UItoTop styles
========================================================*/
#toTop {
  display: none;
  text-decoration: none;
  position: fixed;
  bottom: 80px;
  right: 30px;
  overflow: hidden;
  border: 2px solid #a2aeab;
  color: #a2aeab;
  background: transparent;
  border-radius: 200px;
  width: 40px;
  text-align: center;
  height: 40px;
  font-size: 19px;
  line-height: 40px;
  z-index: 20;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#toTop:hover {
  outline: none;
  border-color: #f85252;
  color: #f85252;
}
@media only screen and (max-width: 1199px) {
  #toTop {
    display: none !important;
  }
}
