.que-floating-button {
	position: fixed;
	z-index: 100;
	height: 70px;
	cursor: pointer;
}

.que-top-left { top: 0; left: 0; }
.que-top-right { top: 0; right: 0; }
.que-top-center { top: 0; left: 50%; transform: translateX(-50%); margin-left: auto !important; margin-right: auto !important; }
.que-bottom-center { bottom: 0; left: 50%; transform: translateX(-50%); margin-left: auto !important; margin-right: auto !important; }
.que-bottom-left { bottom: 0; left: 0; }
.que-bottom-right { bottom: 0; right: 0; }
.que-center-left { left: 0; top: 50%; transform: translateY(-50%); }
.que-center-right { right: 0; top: 50%; transform: translateY(-50%); }

@keyframes que-floating-button-rotation {
	0% {
		transform: rotate(0);
	}
	10% {
		transform: rotate(-15deg);
	}
	20% {
		transform: rotate(15deg);
	}
	30% {
		transform: rotate(-10deg);
	}
	40% {
		transform: rotate(10deg);
	}
	50% {
		transform: rotate(-5deg);
	}
	60% {
		transform: rotate(5deg);
	}
	70% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(0);
	}
}
@keyframes que-floating-button-pulse{
    0%{
        transform:scale(0);
		opacity: 0.6;
    }
    50%{
        transform:scale(1)
    }
    to{
        transform:scale(1);
        opacity:0
    }
}
.que-floating-button-wrapper {
	border-radius: 50%;
	z-index: 1;
	width: 70px;
	height: 70px;
	position: relative;
}
.que-floating-button-question {
	background-image: url('../img/button.png');
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 36px;
	height: 36px;
}
.que-floating-button:hover .que-floating-button-question {
	animation: que-floating-button-rotation 2s infinite ease-in-out;
	
}
.que-floating-button-wrapper:before {
	opacity: 0;
	background-color: inherit;
	display: block;
	width: 90px;
	height: 90px;
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 50%;
	margin-top: -10px;
    margin-left: -10px;
	
	animation: que-floating-button-pulse 2s infinite ease-in-out;
	animation-delay: 0.3s;
	z-index: -1;
}