/**
 * Eligibility Checker ("Can I Airbnb My Property in Dubai?") – shortcode styles.
 *
 * @package GrowProp\Marketplace
 */

.ec-fade-in { animation: ecFadeIn 0.8s ease-out; }
@keyframes ecFadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}
.ec-glass {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(226, 232, 240, 0.8);
	overflow: visible;
}

#ec-calc .iti { display: block; width: 100%; }
#ec-calc .iti__tel-input {
	width: 100%;
	border-radius: 0.5rem;
	border: 1px solid #e2e8f0;
	padding: 0.75rem 1rem 0.75rem 52px;
	font-size: 0.875rem;
	height: auto;
	min-height: 48px;
	line-height: 1.5;
	box-sizing: border-box;
}
#ec-calc .iti__tel-input:focus {
	border-color: #C5A059;
	box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
	outline: none;
}
#ec-calc .iti__country-list {
	z-index: 60;
}
#ec-calc select {
	font-size: 0.875rem;
	height: auto;
	min-height: 48px;
	line-height: 1.5;
	padding: 0.75rem 1rem;
	box-sizing: border-box;
	overflow: visible;
	text-overflow: ellipsis;
	-webkit-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8.825L.35 3.175 1.175 2.35 6 7.175 10.825 2.35l.825.825z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	background-size: 12px;
	padding-right: 2.5rem;
}
#ec-calc input[type="email"],
#ec-calc input[type="text"] {
	font-size: 0.875rem;
	height: auto;
	min-height: 48px;
	line-height: 1.5;
	padding: 0.75rem 1rem;
	box-sizing: border-box;
	overflow: visible;
	text-overflow: ellipsis;
}

#ec-calc #ec-steps-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
}
#ec-calc #ec-steps-list li::before {
	content: "\2713";
	color: #C5A059;
	font-weight: 700;
	flex-shrink: 0;
}
