/* to top button hover */
.totop {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 100;
}

.totop a,
.totop a:visited {
    border-radius: 2px;
    color: #fff;
    display: block;
    font-size: 30px;
    min-height: 50px;
    line-height: 25px;
    padding-top: 8px;
    text-align: center;
    width: 50px;
}

.totop a {
    background-color: rgba(132, 31, 104, 0.59);
}

.totop a:hover {
    text-shadow: 1px 1px 0 #333;
    color: white;
    background-color: #841f68;
}