.sticky-buttons {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    z-index: 1000 !important;
}

.sticky-button {
	transition:all 0.1s linear;
	background-color:#1BDCD4;
    width: 50px;
    height: 50px;
	display:flex;
	align-items:center;
	justify-content:center;
	border: none !important;
	cursor: pointer !important;
}

.sticky-button:hover {
    transform: scale(1.1);
}

.sticky-button img {
    width: 30px;
    height: 30px;
	object-fit:contain;
}
@media (max-width: 768px) {
	.sticky-buttons {
    bottom: 15px !important;
    right: 15px !important;
    gap: 10px !important;
    z-index: 1000 !important;
}
	.sticky-button {
		width: 40px;
		height: 40px;
	}
	.sticky-button img {
		width: 25px;
		height: 25px;
	}
}