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

.elementor-widget-text-editor p:last-child {
	margin-bottom: 0 !important;
}

.expand-box .elementor-widget-text-editor {
	position: relative;
	max-height: 220px;
	overflow: hidden;
	transition: max-height 0.5s ease;
}

.expand-box .elementor-widget-text-editor::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 90px;
	pointer-events: none;
	background: linear-gradient(
		to bottom,
		rgba(242, 242, 242, 0),
		rgba(242, 242, 242, 1)
	);
	transition: opacity 0.3s ease;
}

.expand-box.is-expanded .elementor-widget-text-editor::after {
	opacity: 0;
}

/* Disable text selection */
body {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Disable image dragging */
img {
	-webkit-user-drag: none;
}

/* Show pointer cursor on clickable elements */
a,
button {
	cursor: pointer;
}

/* Allow text selection in form fields */
input,
textarea {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}