.sticky-icons {
    position: fixed;
    bottom: 30px;
    right: 15px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 8px;
	transition:all 0.2s linear;
}
.sticky-icons.active{
	transform:translateX(-30vw);
}

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

.sticky-icon:hover {
    background-color: #1B1918;
	opacity:0.7;
    transform: scale(1.1);
}

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

@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);
	}
}

.aux-goto-top-btn {
  display: none !important;
  visibility: hidden !important;
}
