.angie-text-alert-overlay-dec53f5c {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 99999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.angie-text-alert-overlay-dec53f5c.is-active {
	opacity: 1;
	visibility: visible;
}

.angie-text-alert-modal-dec53f5c {
	background-color: #ffffff;
	padding: 30px;
	border-radius: 8px;
	max-width: 450px;
	width: 90%;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
	position: relative;
	text-align: center;
	transform: translateY(-20px);
	transition: transform 0.3s ease;
}

.angie-text-alert-overlay-dec53f5c.is-active .angie-text-alert-modal-dec53f5c {
	transform: translateY(0);
}

.angie-text-alert-close-dec53f5c {
	position: absolute;
	top: 10px;
	right: 15px;
	background: none;
	border: none;
	font-size: 24px;
	color: #666;
	cursor: pointer;
	padding: 0;
	line-height: 1;
}

.angie-text-alert-close-dec53f5c:hover {
	color: #000;
}

.angie-text-alert-title-dec53f5c {
	margin-top: 0;
	margin-bottom: 15px;
	font-size: 22px;
	color: #333;
}

.angie-text-alert-message-dec53f5c {
	margin: 0;
	color: #555;
	font-size: 16px;
	line-height: 1.5;
}