/* 27-toplink.css Stand: 28.10.2025*/




/* benötigte Erweiterung: "Button um zum Anfang der Seite zu springen"

	Modul erstellen: TopLink basierend auf UItoTop mit Text/Icon z. B. <i class='fas fa-arrow-alt-circle-up'></i>
	Modul sollte das erste im Footer sein - es könnte ein z-index nötig sein
*/ 
 
 :root {
	 
	--totop_back: rgba(43,66,94,1); /* #2b425e */
	--totop_arrow: rgba(255, 215, 0, 1); /* #ffd700 */
	--totop_back_hover: rgba(69, 137, 85, 1); /* #458955 */
	 
 }

#toTop {
    display: none;
    text-decoration: none;
    position: fixed;
    bottom: 10px;
    right: 10px;
    overflow: hidden;
    background-color: var(--totop_back);
    color: var(--totop_arrow);
    padding: .1em;
	font-size: 3em;
	border-radius: 7px;
	z-index: 100;
}

#toTop:hover {
    background-color: var(--totop_back_hover);
    color: var(--totop_arrow);
}