/*** CALLBACK WIDGET ***/
.desktop-block {
		display: none;
		position: fixed;
    right: 20px;
    bottom: 50px;
    background-color: #2fad07;
    font-weight: 500;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    text-align: center;
    line-height: 90px;
    color: #292828;
		z-index: 10;
	}

	.desktop-block img {
		max-width: 60%;
		display: block;
		margin-left: auto;
		margin-right: auto;
		margin-top: 17px;
	}

	.desktop-block:hover {
		color: #fff;
		text-decoration: none;
		background-color: #0cc769;
	}

	.shy-pulse {
		animation: shy-pulse 2s infinite;
	}
	.shy-pulse:hover {
		animation: none;
	}

/* 	@-webkit-keyframes shy-pulse {
		0% {
			-webkit-box-shadow: 0 0 0 0 rgba(253, 207, 137, 0.3);
		}
		70% {
			-webkit-box-shadow: 0 0 0 20px rgba(253, 207, 137, 0);
		}
		100% {
			-webkit-box-shadow: 0 0 0 0 rgba(253, 207, 137, 0);
		}
	} */
	@keyframes shy-pulse {
		0% {
			-moz-box-shadow: 0 0 0 0 rgba(47, 173, 7, 0.3);
			box-shadow: 0 0 0 0 rgba(47, 173, 7, 0.3);
		}
		70% {
			-moz-box-shadow: 0 0 0 20px rgba(47, 173, 7, 0);
			box-shadow: 0 0 0 20px rgba(47, 173, 7, 0);
		}
		100% {
			-moz-box-shadow: 0 0 0 0 rgba(47, 173, 7, 0);
			box-shadow: 0 0 0 0 rgba(47, 173, 7, 0);
		}
	}

@media screen and (min-width: 991px) {
	.desktop-block {
		display: block;
	}
	
}

/*** CALLBACK WIDGET ENDS ***/