#topPage {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#topPage.show {
    opacity: 1;
    pointer-events: auto;
}

#topPage img{
    width: 30px;
    height: 30px;
}

@media (max-width: 992px) {

    #topPage {
        bottom: 8px;
        right: 8px;
    }

}

html {
  scroll-behavior: smooth;
}

#topPage.hidden {
  display: none; 
}
