.scrollTop {
    position: fixed;
    right: -115px;
    bottom: 240px;
    background-color: var(--clr02);
    padding: 0;
    transition: all 0.4s ease-in-out 0s;
    z-index: 900;
    font-size: 21px;
    border: 2px solid #fff;
    cursor: pointer;
    opacity: 0;
    color: #fff;
    /* border-radius: 50%; */
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}
.scrollTop i {
    transform: translate(0, 25%);
}

.scrollTop.appear {
    opacity: 1;
    right: 15px;
}

.appear:hover { 
    background-color: var(--clr02); 
    opacity: 1;
}

@media (max-width: 600px) {
    .scrollTop.appear {
        opacity: 1;
        bottom: 0;
        right: 0;
    }
    .scrollTop {
        position: fixed;
        right: 0;
        bottom: -100px;
        background-color: transparent;
        padding: 15px 14px 0px;
        opacity: 0;
        transition: all 0.4s ease-in-out 0s;
        z-index: 900;
        font-size: 35px;
        border-radius: 0;
        border: 0 solid #363636;
        cursor: pointer;
        opacity: 0;
        width: 100%;
        text-align: center;
        background: linear-gradient(rgba(0, 0, 0, .0), rgba(0, 0, 0, 8));
        color: #fff;
        text-shadow: -2px 2px 8px rgba(0, 0, 0, .5);
    }
    .appear:hover {
        border: 0 solid #363636;
        color: #fff;
        border-radius: 0;
        opacity: 1;
        background: linear-gradient(rgba(0, 0, 0, .0), rgba(0, 0, 0, 8));
    }
}