.sharen-form-modal {
	position: fixed;
	inset: 0;
	z-index: 2147483000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(15, 23, 42, 0.48);
	backdrop-filter: blur(6px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.22s ease, visibility 0.22s ease;
}

.sharen-form-modal.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.sharen-form-modal__card {
	width: min(92vw, 360px);
	padding: 36px 28px 32px;
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
	text-align: center;
	font-family: inherit;
	color: #0f172a;
	transform: translateY(10px) scale(0.98);
	transition: transform 0.22s ease;
}

.sharen-form-modal.is-open .sharen-form-modal__card {
	transform: none;
}

.sharen-form-modal__icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 18px;
	position: relative;
}

.sharen-form-modal__spinner {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	border: 4px solid #e8eef8;
	border-top-color: #1c72de;
	animation: sharen-form-spin 0.8s linear infinite;
}

.sharen-form-modal__check {
	display: none;
	width: 72px;
	height: 72px;
}

.sharen-form-modal.is-success .sharen-form-modal__spinner {
	display: none;
}

.sharen-form-modal.is-success .sharen-form-modal__check {
	display: block;
}

.sharen-form-modal__check-circle {
	fill: none;
	stroke: #12b76a;
	stroke-width: 3;
	stroke-linecap: round;
	stroke-dasharray: 166;
	stroke-dashoffset: 166;
	animation: sharen-form-draw 0.45s ease forwards;
}

.sharen-form-modal__check-mark {
	fill: none;
	stroke: #12b76a;
	stroke-width: 3.4;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-dasharray: 48;
	stroke-dashoffset: 48;
	animation: sharen-form-draw 0.35s 0.28s ease forwards;
}

.sharen-form-modal__title {
	margin: 0;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.7;
}

.sharen-form-modal__text {
	margin: 8px 0 0;
	font-size: 14px;
	line-height: 1.8;
	color: #475569;
	font-weight: 600;
}

body.sharen-form-modal-open {
	overflow: hidden;
}

.elementor-form .elementor-message-success,
.elementor-message.elementor-message-success,
form.form-state-success [data-element_type="e-form-success-message"],
.lead-form .form-status.is-success,
.lead-form .form-success {
	display: none !important;
}

.sharen-form-complete {
	display: none !important;
}

.sharen-form-done {
	margin: 0;
	padding: 16px 18px;
	border-radius: 14px;
	background: #ecfdf5;
	color: #166534;
	border: 1px solid #bbf7d0;
	font-weight: 800;
	line-height: 1.8;
	text-align: center;
}

@keyframes sharen-form-spin {
	to {
		transform: rotate(360deg);
	}
}

@keyframes sharen-form-draw {
	to {
		stroke-dashoffset: 0;
	}
}
