/*
Theme Name: Beaver Builder Child Theme
Theme URI: http://www.wpbeaverbuilder.com
Version: 1.0
Description: An example child theme that can be used as a starting point for custom development.
Author: The Beaver Builder Team
Author URI: http://www.fastlinemedia.com
template: bb-theme
*/

/* Add your custom styles here... */ 

#playbutton{
	-webkit-animation: playblink 2s linear infinite;
	animation: playblink 2s linear infinite;
	-moz-animation: playblink 2s linear infinite;
	color: #fff;
}
@keyframes playblink
{
	0% { opacity: 1.0; color: #fff; }
	50% { opacity: 1.0; color: #ed2a28; }
	100% { opacity: 1.0; color: #fff;}
}

.blink_icon{
	-webkit-animation: blinkbutton 2s linear infinite;
	animation: blinkbutton 2s linear infinite;
	-moz-animation: blinkbutton 2s linear infinite;
	color: #fff;
}

@keyframes blinkbutton
{
	0% { opacity: 1.0; color: #fff; }
	50% { opacity: 1.0; color: #ed2a28; }
	100% { opacity: 1.0; color: #fff;}
}

.kiteprodbanner{
	cursor:pointer;
}
