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