.scrollup {
    z-index: 11000;
    background: #ccc;
    display: none;
}
.scrollup a {
    background: none repeat scroll 0 0 transparent;
    bottom: 80px;
    color: #000;
    display: block;
    font-size: 28px;
    height: 40px;
    position: fixed;
    right: 80px;
    text-align: center;
    transition: all 1s ease 0s;
    width: 40px;
    z-index: 1110;
}
.scrollup a:hover{
  color:#4ab9cf;
}
.icon-up{
  background:url(up-arrow.svg) no-repeat;
  background-size:contain;
  width:40px;
  height:40px;
  display: block;
}
@media(max-width:768px){
  .scrollup a{
    right: 15px;
  }
}
