/*!
 * Propeller v1.0.0 (http://propeller.in)
 * Copyright 2016-2017 Digicorp, Inc.
 * Licensed under MIT (http://propeller.in/LICENSE)
 */


.pmd-ripple-effect
{
	position: relative;
	overflow: hidden;
	-webkit-transform: translate3d(0, 0, 0);
}



.ink
{
	display: block;
	position: absolute;
	pointer-events: none;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	-ms-border-radius: 50%;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	background: #808080;
	opacity: 0.2;
}



.ink.animate
{
	-webkit-animation: ripple 0.5s linear;
	-moz-animation: ripple 0.5s linear;
	-ms-animation: ripple 0.5s linear;
	-o-animation: ripple 0.5s linear;
	animation: ripple 0.5s linear;
}



@keyframes ripple
{
	100%
	{
		opacity: 0;
		transform: scale(2.5);
	}
}



@-webkit-keyframes ripple
{
	100%
	{
		opacity: 0;
		-webkit-transform: scale(2.5);
		transform: scale(2.5);
	}
}



@-moz-keyframes ripple
{
	100%
	{
		opacity: 0;
		-moz-transform: scale(2.5);
		transform: scale(2.5);
	}
}



@-ms-keyframes ripple
{
	100%
	{
		opacity: 0;
		-ms-transform: scale(2.5);
		transform: scale(2.5);
	}
}



@-o-keyframes ripple
{
	100%
	{
		opacity: 0;
		-o-transform: scale(2.5);
		transform: scale(2.5);
	}
}