/*
* @package phpBB Extension - Scroll To Top
* @copyright (c) 2025 Stoker - http://www.phpbb3bbcodes.com
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
* @Author Stoker - http://www.phpbb3bbcodes.com
*/
.scroll-top {
	position: fixed; right: 1%; bottom: 20px;
	width: 48px; height: 48px;
	display: grid; place-items: center;
	font-size: 36px;
	line-height: 1;
	color: #4584a1;
	z-index: 9999;
	text-decoration: none;
	transition: opacity .25s ease, visibility .25s ease, color .25s ease;
}
.scroll-top.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.scroll-top:not(.is-hidden) { opacity: 1; visibility: visible; }

a.scroll-top,
a.scroll-top:hover,
a.scroll-top:focus,
a.scroll-top:active {
	text-decoration: none;
	border-bottom: 0;
	box-shadow: none;
}
a.scroll-top:hover { color: #4584a180; }
@media (max-width: 749px) {
	.scroll-top.is-hidden,
	.scroll-top:not(.is-hidden) {
		display: none;
	}
}