.scrollTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.5s ease 0s;
    opacity: 0; /* начально скрыть кнопку */
    pointer-events: none; /* начально отключить события */
    height: 45px;
    background: rgba(205, 214, 219, 0.3);
    box-shadow: 0 0 10px rgba(0, 0, 0, .25);

}

.scroll-top-icon:hover path {
    fill: black ;
    transition: 0.3s;
}


.scrollTop.active {
    opacity: 1; /* показать кнопку */
    pointer-events: auto; /* разрешить события */
}

