/* UItoTop styles
========================================================*/
#toTop {
  display: none;
  text-decoration: none;
  position: fixed;
  bottom: 40px;
  right: 40px;
  overflow: hidden;
  border: 2px solid #6aaf08;
  color: #6aaf08;
  background: #161616;
  border-radius: 0;
  width: 30px;
  text-align: center;
  height: 30px;
  font-size: 14px;
  line-height: 26px;
  z-index: 20;
  -webkit-transition: background 0.5s ease;
  transition: background 0.5s ease;
}
#toTop::before {
  content: "\f0d8";
}
#toTop:hover {
  outline: none;
}
@media only screen and (max-width: 1199px) {
  #toTop {
    display: none !important;
  }
}
