﻿.returnToTop {
    display: flex;
    align-items: center;
    background-color: var(--corLogo);
    justify-content: center;
    color: white;
    padding: 10px;
    border-radius: 5px;
    position: fixed;
    bottom:-100%;
    transition: 1s;
    pointer-events: none;
    left: 20px;
    border: none;
    cursor: pointer;
    opacity: 0;
}

    .returnToTop.active {
        bottom: 20px;;
        pointer-events: auto;
        opacity: 1;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
