@charset "utf-8";
/* CSS Document */

.scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 45px;
    background: #63d600;
    color: #fff;
    text-align: center;
    line-height: 45px;
    font-size: 26px;
    border-radius: 8px;
    display: none;
    z-index: 9999;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}
.scrollToTop:hover {
    background: #4cb000;
    transform: scale(1.1);
    color: #fff;
}
