
.material-scrolltop {
    display: block;
    position: fixed;
    width: 0;
    height: 0;
    bottom: 15px;
    left: 10px;
    padding: 0;
    overflow: hidden;
    outline: none;
    border: none;
    border-radius: 2px;
    cursor: hand;
    border-radius: 50%;
    background: #000;
    -webkit-box-shadow:2px 2px 2px rgba(0, 0, 0, 0.5);
    -boxshadow:2px 2px 2px rgba(0, 0, 0, 0.5);
}

.material-scrolltop:hover {
    background-color: #000;
    text-decoration: none;
 
}

.material-scrolltop::before {
    position: absolute;
    top: 50%;
    left: 50%;
    
    transform: translate(-50%, -50%);
    content: "";
    width: 0;
    border-radius: 100%;
    background: #ccc;
}

.material-scrolltop:active::before {
    width: 120%;
    padding-top: 120%;
     
}

.material-scrolltop.reveal {
    width: 40px;
    height: 40px;
}

.material-scrolltop span {
    display: block;
    font-size: 25px;
    color: #fff;
}

.material-scrolltop,
.material-scrolltop::before {
    background-image: url(icons/top-arrow.svg);
    background-position: center 50%;
    background-repeat: no-repeat;
}
/*# sourceMappingURL=material-scrolltop.css.map */