.scroll-btns {
	position: fixed;
	right: 20px;
	bottom: 20px;
	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.8);
	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.1);
	background-color: rgba(129, 129, 129, 1);
}

.scroll-btn svg {
	width: 24px;
	height: 24px;
	fill: white;
}



/*-------------------------------------*/

.scroll-btns {
	right: 15px;
	bottom: 15px;
}

.scroll-btn {
	width: 45px;
	height: 45px;
}

.scroll-btn svg {
	width: 20px;
	height: 20px;
}


