.sticky-icons {
	position: fixed;
	bottom: 15px;
	right: 30px;
	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: #007337;
	color: #fff;
	text-decoration: none;
	border-radius: 999px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.sticky-icon svg { 
  width: 26px; 
  height: 26px; 
  fill: currentColor;   /* add this */
}
/* (optional, for stroke-only icons) */
.sticky-icon svg [stroke] { stroke: currentColor; }

.sticky-icon:hover {
    color: #fff;
	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 fadeSlideUp {
  from {
    opacity: 0;
    margin-bottom: -20px;
  }
  to {
    opacity: 1;
    margin-bottom: 0;
  }
}

@keyframes fadeSlideDown {
  from {
    opacity: 1;
    margin-bottom: 0;
  }
  to {
    opacity: 0;
    margin-bottom: -20px;
  }
}

.sticky-icons.expanded .sticky-icon:not(.toggle-icon) {
  animation: fadeSlideUp 0.5s ease forwards;
}

.sticky-icons.closing .sticky-icon:not(.toggle-icon) {
  animation: fadeSlideDown 0.4s ease forwards;
}


