/* 
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 */

/* Apply styles only for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
	* {
		animation: none !important;
		transition: none !important;
		scroll-behavior: auto !important;
	}
}
/*Text Selection Style*/
::selection {
	background-color: rgba(238, 179, 40, .25);
}
:focus,:focus-visible {
	outline: 2px solid var( --e-global-color-769baa7 ) !important;
	outline-offset: 4px;
}
.elementor-widget-text-editor p:last-of-type{
	margin-block-end:0;
}
p:empty{
	display:none;
}

/*Fix Elementor List Item Icon/Link Underlines*/
.elementor-icon-list-item a{
	transition:0.3s;
}
.elementor-icon-list-item a .elementor-icon-list-text{
    text-decoration: underline;
}
.elementor-icon-list-item a:hover .elementor-icon-list-text{
    text-decoration: none;
}

/*Buttons Shine on Hover*/
button,.elementor-button,.btn-wrapper,.shine,.icon-box-link {
	position: relative;
	overflow: hidden;
}
button:before,.elementor-button:before,.btn-wrapper:before,.shine:before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(115deg,transparent, rgba(255, 255, 255, 0.4), transparent);
	transition: all 650ms;
	z-index:9;
}
button:hover:before,.elementor-button:hover:before,.btn-wrapper:hover:before,.shine:hover:before {
  	left: 100%;
}
