#findProBtn_quick_fix .btn-fill{
	transition: background-color var(--animation-primary), opacity 0.25s linear!important;
}

#findProBtn_quick_fix.started{
	color:#000!important
}

#findProBtn_quick_fix.started .btn-fill{ 
	opacity:0!important;
}	

#findProBtn_quick_fix.started .btn-text{
	opacity:0;
}	

#findProBtn_quick_fix.started .btn-loader{
	opacity:1;
}		

#findProBtn_quick_fix.started .btn-loader span:nth-child(1){
	animation-name: points_quick_fix;
	animation-duration: 1s;
	animation-delay: 0s;
	animation-iteration-count: infinite;
}

#findProBtn_quick_fix.started .btn-loader span:nth-child(2){
	animation-name: points_quick_fix;
	animation-duration: 1s;
	animation-delay: 0.15s;
	animation-iteration-count: infinite;
}

#findProBtn_quick_fix.started .btn-loader span:nth-child(3){
	animation-name: points_quick_fix;
	animation-duration: 1s;
	animation-delay: 0.3s;
	animation-iteration-count: infinite;
}

@keyframes points_quick_fix{
	0%{
		-webkit-transform: scale(1);
		transform: scale(1)
	}
	50%{
		-webkit-transform: scale(1.6);
		transform: scale(1.6)
	}
	100%{
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}