.scroll-btns {
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: all 0.3s ease;
}

.scroll-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: rgba(155, 155, 155, 0.7);
	border: none;
	color: white;
	cursor: pointer;
	opacity: 0.8;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.scroll-btn:hover {
	opacity: 1;
	transform: scale(1.05);
	background-color: rgba(129, 129, 129, 0.8);
}

.scroll-btn svg {
	width: 24px;
	height: 24px;
	fill: white;
}



/*-------------------------------------*/



.scroll-btn {
	width: 55px;
	height: 55px;
}

.scroll-btn svg {
	width: 28px;
	height: 28px;
}