/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
.btn-custom-ripple {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	overflow: hidden;
	cursor: pointer;
	z-index: 1;
	transition: color 0.4s ease, border-color 0.4s ease, transform 0.2s ease;
	text-align: center;
	box-sizing: border-box;
}
.btn-custom-ripple .btn-inner {
	position: relative;
	z-index: 3;
	pointer-events: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.btn-custom-ripple .btn-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	transition: color 0.4s ease;
	flex-shrink: 0;
}
.btn-custom-ripple .btn-icon svg {
	display: block;
	transition: fill 0.4s ease;
}
.btn-custom-ripple .fill {
	position: absolute;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
	z-index: 2;
	width: 0;
	height: 0;
	transition: width .5s cubic-bezier(.4,0,.2,1), height .5s cubic-bezier(.4,0,.2,1);
}
.btn-custom-ripple.is-active .fill {
	width: var(--rs);
	height: var(--rs);
}