/* PXL Admission Process — frontend styles
   Elementor style controls override most of these via {{WRAPPER}} selectors.
   This file only sets structural/base rules so the widget looks right
   even before a user touches the Style tab. */

.pxl-adm-wrap {
	box-sizing: border-box;
	overflow: hidden;
}
.pxl-adm-wrap * {
	box-sizing: border-box;
}

/* Heading */
.pxl-adm-heading {
	display: flex;
	align-items: center;
	gap: 14px;
}
.pxl-adm-heading-line {
	flex: 1 1 60px;
	max-width: 90px;
	height: 2px;
	background-color: #f58220;
}
.pxl-adm-heading-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #f58220;
	flex: 0 0 auto;
}
.pxl-adm-heading-text {
	margin: 0;
	white-space: nowrap;
	letter-spacing: 0.5px;
}

/* Steps row */
.pxl-adm-steps {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: nowrap;
	width: 100%;
}

/* Individual step */
.pxl-adm-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex: 1 1 0;
	min-width: 0;
	position: relative;
}

.pxl-adm-icon-wrap {
	position: relative;
	display: inline-flex;
	flex: 0 0 auto;
}

.pxl-adm-icon {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background-color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	flex: 0 0 auto;
}
.pxl-adm-icon img {
	width: 55%;
	height: 55%;
	object-fit: contain;
}
.pxl-adm-icon i {
	line-height: 1;
}

.pxl-adm-number {
	position: absolute;
	top: -6px;
	right: -6px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	background: #ffffff;
	color: #1b3b8c;
	font-weight: 700;
	font-size: 14px;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
	z-index: 2;
}

.pxl-adm-content {
	margin-top: 14px;
	width: 100%;
}
.pxl-adm-title {
	margin: 4px 0;
	line-height: 1.3;
}
.pxl-adm-subtitle {
	margin: 0;
	line-height: 1.4;
}

/* Connector arrow between steps (horizontal, desktop default) */
.pxl-adm-connector {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	align-self: center;
	margin-top: 55px;
	color: #f58220;
	font-size: 22px;
}
.pxl-adm-connector i {
	line-height: 1;
}
.pxl-adm-connector svg {
	width: 1em;
	height: 1em;
	display: block;
}
.pxl-adm-connector i,
.pxl-adm-connector svg {
	transition: transform 0.2s ease;
}

/* ==========================================================
   DEFAULT RESPONSIVE FALLBACK
   (kicks in automatically at tablet/mobile widths even if the
   Elementor responsive controls above haven't been customized)
   ========================================================== */
@media (max-width: 1024px) {
	.pxl-adm-heading-line {
		display: none;
	}
}

@media (max-width: 767px) {
	/* Note: container width and step width are NOT forced here.
	   Both are Elementor responsive controls (Layout tab / Step Card tab)
	   with mobile_default values already set to 100%, so the panel
	   remains the single source of truth and stays user-editable. */
	.pxl-adm-steps {
		flex-direction: column;
		align-items: stretch;
	}
	.pxl-adm-step {
		flex-direction: row;
		text-align: left;
		align-items: center;
		padding: 16px 0;
		border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	}
	.pxl-adm-step:last-child {
		border-bottom: none;
	}
	.pxl-adm-icon-wrap {
		margin-right: 16px;
	}
	.pxl-adm-icon {
		width: 76px;
		height: 76px;
	}
	.pxl-adm-content {
		margin-top: 0;
		text-align: left;
		flex: 1 1 auto;
	}
	.pxl-adm-connector {
		margin: 0 0 0 38px;
		justify-content: flex-start;
	}
	.pxl-adm-connector i,
	.pxl-adm-connector svg {
		transform: rotate(90deg);
	}
	.pxl-adm-heading-text {
		white-space: normal;
	}
}
