.global-scroll-top {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    bottom: -15px;
    right: 15px;
    background-image:  linear-gradient(to right, var(--violet-color), var(--pink-color));
    height: 46px;
    width: 46px;
    border-radius: 40px;
    color: white;
    font-size: 2.45rem;
    cursor: pointer;
    user-select: none;
    opacity: 0;
    transition: 0.2s ease-in-out;
}

.global-scroll-top.active {
    bottom: 15px;
    opacity: 1;
    user-select: auto;
}
