.sticky-icons {
	position: fixed;
	bottom: 15px;
	right: 15px;
	z-index: 1000;
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-end;
	gap: 12px;
	transition: all 0.3s ease;
}

.sticky-icon {
	display: none;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	background-color: var(--color6);
	color: var(--color3);
	text-decoration: none;
	border-radius: 999px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.sticky-icon svg {
	width: 26px;
	height: 26px;
}

.sticky-icon:hover {
	opacity: 0.7;
	transform: scale(1.1);
}

/* Only the toggle is shown by default */
.sticky-icon.toggle-icon {
	display: flex;
}

/* Show all icons when expanded */
.sticky-icons.expanded .sticky-icon {
	display: flex;
}

/* But hide toggle from being duplicated */
.sticky-icons.expanded .sticky-icon.toggle-icon {
	display: flex;
}
	.sticky-icons.active {
		transform: translateX(-30vw);
	}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.sticky-icons.expanded .sticky-icon:not(.toggle-icon) {
	animation: slideUp 0.5s ease forwards;
}

/* Slide effect based on screen width */
@media screen and (max-width:1140px) {
	.sticky-icons.active {
		transform: translateX(-50vw);
	}
}
@media screen and (max-width:920px) {
	.sticky-icons.active {
		transform: translateX(-70vw);
	}
}
@media screen and (max-width:767px) {
	.sticky-icons.active {
		transform: translateX(-90vw);
	}
}
