:root {
	/* Core Color System */
	--mpwem-primary: #2563eb;
	--mpwem-primary-hover: #1d4ed8;
	--mpwem-danger: #e11d48;
	--mpwem-danger-hover: #be123c;
	--mpwem-bg: #f8fafc;
	--mpwem-surface: #ffffff;
	--mpwem-border: #e2e8f0;
	--mpwem-text: #1e293b;
	--mpwem-muted: #506b90;
	/* Button Design Tokens */
	--mpwem-btn-primary-bg: var(--mpwem-primary);
	--mpwem-btn-primary-text: #ffffff;
	--mpwem-btn-primary-hover: var(--mpwem-primary-hover);
	--mpwem-btn-primary-hover-bg: var(--mpwem-primary-hover);
	--mpwem-btn-secondary-bg: #ffffff;
	--mpwem-btn-secondary-text: #334155;
	--mpwem-btn-secondary-border: #cbd5e1;
	--mpwem-btn-secondary-hover-bg: #f8fafc;
	--mpwem-btn-secondary-hover-border: #94a3b8;
	--mpwem-btn-danger-bg: #fff1f2;
	--mpwem-btn-danger-text: #e11d48;
	--mpwem-btn-danger-border: #fecdd3;
	--mpwem-btn-danger-hover-bg: #e11d48;
	--mpwem-btn-danger-hover-text: #ffffff;
	/* Layout & Spacing */
	--mpwem-radius: 12px;
	--mpwem-btn-radius: 8px;
	--mpwem-btn-padding: 10px 24px;
	--mpwem-card-header-bg: #e9eff6;
	--mpwem-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--mpwem-admin-menu-width: 160px;
	--mpwem-admin-menu-folded-width: 36px;
	--mpwem-admin-bar-height: 32px;
	--mpwem-admin-bar-height-mobile: 46px;
}
body.mpwem-event-wizard-screen {
	--mpwem-admin-sidebar-offset: 0px;
	--mpwem-admin-bar-offset: var(--mpwem-admin-bar-height-mobile);
}
.buttonGroup {
	gap: 3px;
}
.mpwem-event-wizard {
	background: var(--mpwem-bg);
	min-height: calc(100vh - var(--mpwem-admin-bar-offset));
	padding-bottom: 196px;
	font-family: 'Inter', -apple-system, sans-serif;
	box-sizing: border-box;
}
.mpwem-event-wizard__skeleton {
	display: none;
	max-width: 1400px;
	margin: 0 auto;
	padding: 18px 20px 120px;
	box-sizing: border-box;
}
.mpwem-event-wizard.is-loading > .mpwem-event-wizard__skeleton {
	display: block;
}
.mpwem-event-wizard.is-loading > .mpwem-event-wizard__topbar,
.mpwem-event-wizard.is-loading > .mpwem-event-wizard__steps,
.mpwem-event-wizard.is-loading > .mpwem-event-wizard__main {
	display: none;
}
.mpwem-skeleton-topbar,
.mpwem-skeleton-card {
	background: var(--mpwem-surface);
	border: 1px solid var(--mpwem-border);
	box-shadow: var(--mpwem-shadow);
}
.mpwem-skeleton-topbar {
	display: grid;
	grid-template-columns: 160px 1fr 120px;
	gap: 24px;
	align-items: center;
	margin-bottom: 18px;
	padding: 18px 20px;
	border-radius: var(--mpwem-radius);
}
.mpwem-skeleton-title-group {
	display: grid;
	gap: 10px;
	justify-items: center;
}
.mpwem-skeleton-steps {
	display: flex;
	gap: 10px;
	margin-bottom: 28px;
	overflow: hidden;
}
.mpwem-skeleton-layout {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 24px;
}
.mpwem-skeleton-main,
.mpwem-skeleton-sidebar {
	display: grid;
	align-content: start;
	gap: 24px;
}
.mpwem-skeleton-card {
	display: grid;
	gap: 18px;
	padding: 24px;
	border-radius: var(--mpwem-radius);
}
.mpwem-skeleton-card__head {
	display: grid;
	gap: 10px;
}
.mpwem-skeleton-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}
.mpwem-skeleton-advanced-list {
	display: grid;
	gap: 14px;
}
.mpwem-skeleton-section {
	padding: 14px 16px;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	background: linear-gradient(180deg, #fcfdff 0%, #f8fafc 100%);
}
.mpwem-skeleton-section__head {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr) 40px;
	gap: 12px;
	align-items: center;
}
.mpwem-skeleton-section__text,
.mpwem-skeleton-guide__text {
	display: grid;
	gap: 7px;
}
.mpwem-skeleton-section__body {
	margin-top: 12px;
}
.mpwem-skeleton-template-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 14px;
}
.mpwem-skeleton-guide {
	display: grid;
	gap: 12px;
}
.mpwem-skeleton-guide__item {
	display: grid;
	grid-template-columns: 22px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
}
.mpwem-skeleton-line,
.mpwem-skeleton-pill,
.mpwem-skeleton-block {
	position: relative;
	display: block;
	overflow: hidden;
	background: #e5eaf1;
	border-radius: 8px;
}
.mpwem-skeleton-line::after,
.mpwem-skeleton-pill::after,
.mpwem-skeleton-block::after {
	position: absolute;
	inset: 0;
	content: "";
	transform: translateX(-100%);
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent);
	animation: mpwemSkeletonShimmer 1.35s ease-in-out infinite;
}
.mpwem-skeleton-line--back {
	width: 130px;
	height: 16px;
}
.mpwem-skeleton-line--title {
	width: min(320px, 80%);
	height: 26px;
}
.mpwem-skeleton-line--subtitle {
	width: min(420px, 90%);
	height: 14px;
}
.mpwem-skeleton-line--action {
	width: 112px;
	height: 38px;
	border-radius: var(--mpwem-btn-radius);
}
.mpwem-skeleton-line--card-title {
	width: 210px;
	height: 20px;
}
.mpwem-skeleton-line--card-subtitle {
	width: 62%;
	height: 12px;
}
.mpwem-skeleton-pill {
	width: 132px;
	height: 42px;
	border-radius: 999px;
	flex: 0 0 auto;
}
.mpwem-skeleton-line--section-title {
	width: 34%;
	height: 14px;
}
.mpwem-skeleton-line--section-copy {
	width: 64%;
	height: 11px;
}
.mpwem-skeleton-line--guide-title {
	width: 46%;
	height: 12px;
}
.mpwem-skeleton-line--guide-copy {
	width: 88%;
	height: 10px;
}
.mpwem-skeleton-block--input {
	height: 44px;
}
.mpwem-skeleton-block--editor {
	height: 230px;
}
.mpwem-skeleton-block--image {
	aspect-ratio: 4 / 3;
}
.mpwem-skeleton-block--badge {
	width: 34px;
	height: 34px;
	border-radius: 10px;
}
.mpwem-skeleton-block--toggle {
	width: 40px;
	height: 24px;
	border-radius: 999px;
	justify-self: end;
}
.mpwem-skeleton-block--template {
	height: 156px;
	border-radius: 12px;
}
.mpwem-skeleton-block--guide-dot {
	width: 22px;
	height: 22px;
	border-radius: 50%;
}
@keyframes mpwemSkeletonShimmer {
	100% {
		transform: translateX(100%);
	}
}
@media (prefers-reduced-motion: reduce) {
	.mpwem-skeleton-line::after,
	.mpwem-skeleton-pill::after,
	.mpwem-skeleton-block::after {
		animation: none;
	}
}
@media screen and (max-width: 900px) {
	.mpwem-skeleton-layout {
		grid-template-columns: 1fr;
	}
	.mpwem-skeleton-sidebar {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.mpwem-skeleton-template-grid {
		grid-template-columns: 1fr;
	}
}
@media screen and (max-width: 782px) {
	.mpwem-skeleton-topbar,
	.mpwem-skeleton-sidebar,
	.mpwem-skeleton-grid {
		grid-template-columns: 1fr;
	}
	.mpwem-skeleton-topbar {
		gap: 14px;
	}
	.mpwem-skeleton-title-group {
		justify-items: start;
	}
	.mpwem-skeleton-section__head {
		grid-template-columns: 30px minmax(0, 1fr) 34px;
	}
	.mpwem-skeleton-line--section-title,
	.mpwem-skeleton-line--section-copy,
	.mpwem-skeleton-line--guide-copy {
		width: 100%;
	}
}
/* Mounting & Visibility */
.mpwem-embedded-panel {
	display: block !important;
	overflow: initial;
	/* Force visible when mounted */
}
.mpwem-wizard-panels>.mp_tab_item {
	display: none;
}
.mpwem-wizard-panels>.mp_tab_item.is-active {
	display: block !important;
	overflow: initial;
}
.mpwem-link {
	text-decoration: none;
}
/* Classic Editor Switch Button styling */
.mpwem-modern-to-classic-btn {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap: 6px;
	padding: 12px;
	height: auto;
	white-space: nowrap;
	border: 1px solid #a2a2a2;
	border-radius: var(--mpwem-btn-radius);
	background: transparent;
	color: #353535 !important;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.01em;
	text-decoration: none;
	cursor: pointer;
	box-shadow: none;
	transition: color 0.2s ease, opacity 0.2s ease;
	opacity: 1;
	margin-right: 12px;
}
.mpwem-modern-to-classic-btn::before {
	content: none;
}
.mpwem-modern-to-classic-btn:hover,
.mpwem-modern-to-classic-btn:focus {
	color: #475569 !important;
	opacity: 1;
	outline: none;
}
.mpwem-modern-to-classic-btn:active {
	opacity: 0.92;
}
.mpwem-modern-to-classic-btn .dashicons {
	width: 14px;
	height: 14px;
	font-size: 14px;
	opacity: 0.7;
	transition: opacity 0.2s ease;
}
.mpwem-modern-to-classic-btn:hover .dashicons {
	opacity: 0.9;
}
@media screen and (max-width: 900px) {
	.mpwem-modern-to-classic-btn {
		margin-right: 0;
	}
}
/* Topbar & Steps */
.mpwem-event-wizard__topbar {
	position: relative;
	top: auto;
	left: 0;
	right: auto;
	z-index: 100;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--mpwem-border);
	padding: 12px 16px;
	transition: left 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}
.mpwem-event-wizard__topbar-inner {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 12px;
}
.mpwem-event-wizard__title {
	width: 100%;
	min-width: 0;
	margin: 0;
}
.mpwem-event-wizard__title h1 {
	margin: 0;
	font-size: 24px;
	font-weight: 800;
	color: var(--mpwem-text);
	letter-spacing: -0.02em;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	word-break: break-word;
	text-transform: uppercase;
	text-align: center;
}
.mpwem-event-wizard__title .description {
	margin: 4px 0 0;
	font-size: 13px;
	color: var(--mpwem-muted);
}
.mpwem-event-wizard__actions {
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: stretch;
	gap: 12px;
}
.mpwem-status-actions {
	position: relative;
	display: inline-flex;
	align-items: stretch;
	width: 100%;
	border-radius: var(--mpwem-btn-radius);
	transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.mpwem-status-actions:hover,
.mpwem-status-actions:focus-within {
	box-shadow: 0 8px 18px rgba(37, 99, 235, 0.28);
}
.mpwem-status-actions__primary,
.mpwem-status-actions__toggle {
	border-radius: 0 !important;
}
.mpwem-status-actions__primary {
	flex: 1 1 auto;
	border-radius: var(--mpwem-btn-radius) !important;
}
.mpwem-status-actions__primary:not(:last-child) {
	border-top-right-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
	border-top-left-radius: var(--mpwem-btn-radius) !important;
	border-bottom-left-radius: var(--mpwem-btn-radius) !important;
}
.mpwem-status-actions__toggle {
	min-width: 42px;
	padding-left: 12px !important;
	padding-right: 12px !important;
	border-left: 1px solid rgba(255, 255, 255, 0.32) !important;
	border-top-right-radius: var(--mpwem-btn-radius) !important;
	border-bottom-right-radius: var(--mpwem-btn-radius) !important;
}
.mpwem-status-actions__toggle .dashicons {
	font-size: 16px;
	width: 16px;
	height: 16px;
	color: inherit !important;
	line-height: 1 !important;
}
.mpwem-status-actions__menu-wrap {
	position: relative;
	display: inline-flex;
	align-items: stretch;
	border-left: 1px solid #5081ec;
}
.mpwem-status-actions__menu {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	min-width: 190px;
	padding: 6px;
	display: none;
	flex-direction: column;
	gap: 2px;
	background: #fff;
	border: 1px solid var(--mpwem-border);
	border-radius: 12px;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
	z-index: 30;
}
.mpwem-status-actions__menu-wrap.is-open .mpwem-status-actions__menu {
	display: flex;
}
.mpwem-status-actions__menu-item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 8px 12px;
	border: 0 !important;
	border-radius: 8px !important;
	background: #a8a0ff;
	color: var(--mpwem-text) !important;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	text-align: left;
	box-shadow: none !important;
	text-decoration: none !important;
	gap: 10px;
	box-sizing: border-box;
}
.mpwem-status-actions__menu-item .dashicons {
	font-size: 16px;
	width: 16px;
	height: 16px;
	color: inherit !important;
}
.mpwem-status-actions__menu-item:hover,
.mpwem-status-actions__menu-item:focus {
	background: #f8fafc !important;
	color: var(--mpwem-text) !important;
	transform: none !important;
	outline: none;
}
.mpwem-status-actions__menu-item.is-danger {
	background: linear-gradient(180deg, #fff1f2 0%, #ffe4e6 100%) !important;
	color: var(--mpwem-danger) !important;
	border: 1px solid #fda4af !important;
	box-shadow: inset 0 0 0 1px rgba(225, 29, 72, 0.06), 0 1px 2px rgba(225, 29, 72, 0.08) !important;
	font-weight: 700;
}
.mpwem-status-actions__menu-item.is-danger:hover,
.mpwem-status-actions__menu-item.is-danger:focus {
	background: var(--mpwem-btn-danger-hover-bg) !important;
	color: var(--mpwem-btn-danger-hover-text) !important;
	border-color: var(--mpwem-btn-danger-hover-bg) !important;
	box-shadow: 0 8px 16px rgba(225, 29, 72, 0.22) !important;
}
/* Shared Button Design System */
.mpwem-btn,
.mpwem-wizard-save-draft,
.mpwem-status-actions__primary,
.mpwem-status-actions__toggle,
.mpwem-wizard-next,
.mpwem-wizard-prev,
.mpwem-wizard-create,
.mpwem-event-wizard .button,
.mpwem-event-wizard button:not(.mpwem-step):not(.mpwem-select-trigger) {
	display: inline-flex;
	gap: 5px;
	align-items: center;
	justify-content: center;
	padding: var(--mpwem-btn-padding);
	border-radius: var(--mpwem-btn-radius);
	font-size: 14px;
	cursor: pointer;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid var(--mpwem-border);
	line-height: 1.2;
	text-decoration: none;
	outline: none;
	box-sizing: border-box;
	background: var(--mpwem-secondary);
	color: var(--mpwem-text);
	margin-bottom: 0;
}
/* 
 * WP Editor Reset 
 * Force default WordPress styling for buttons inside the editor areas to prevent wizard styles from breaking them.
 */
.mpwem-event-wizard .wp-editor-wrap button,
.mpwem-event-wizard .wp-editor-wrap .button,
.mpwem-event-wizard .wp-editor-tools button,
.mpwem-event-wizard .wp-editor-tools .button,
.mpwem-event-wizard .quicktags-toolbar button,
.mpwem-event-wizard .quicktags-toolbar .button,
.mpwem-event-wizard .mce-container button,
.mpwem-event-wizard .mce-container .button,
.mpwem-event-wizard .wp-media-buttons button,
.mpwem-event-wizard .wp-media-buttons .button,
.mpwem-event-wizard .wp-switch-editor {
	display: inline-block !important;
	align-items: initial !important;
	justify-content: initial !important;
	padding: 4px 8px !important;
	height: auto !important;
	width: auto !important;
	min-height: 0 !important;
	min-width: 0 !important;
	border-radius: 3px !important;
	font-size: 13px !important;
	font-weight: 400 !important;
	background: #f6f7f7 !important;
	color: #2c3338 !important;
	border: 1px solid #dcdcde !important;
	box-shadow: 0 1px 0 #dcdcde !important;
	line-height: normal !important;
	transition: none !important;
	transform: none !important;
	text-decoration: none !important;
	box-sizing: content-box !important;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
}
.mpwem-event-wizard .wp-switch-editor {
	background: #ebebeb !important;
	border-bottom: none !important;
	color: #50575e !important;
	padding: 3px 10px !important;
	border-radius: 3px 3px 0 0 !important;
}
.mpwem-event-wizard .wp-editor-wrap .button-primary {
	background: #2271b1 !important;
	border-color: #2271b1 !important;
	color: #fff !important;
}
/* Primary Action Style (The "Big Actions" Look) */
.mpwem-btn-primary,
.mpwem-status-actions__primary,
.mpwem-status-actions__toggle,
.mpwem-wizard-next,
.mpwem-wizard-create {
	background: var(--mpwem-btn-primary-bg) !important;
	color: var(--mpwem-btn-primary-text) !important;
	border: none !important;
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}
.mpwem-btn-primary:hover,
.mpwem-status-actions__primary:hover,
.mpwem-status-actions__toggle:hover,
.mpwem-wizard-next:hover,
.mpwem-wizard-create:hover {
	background: var(--mpwem-btn-primary-hover) !important;
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}
.mpwem-status-actions__primary:hover,
.mpwem-status-actions__toggle:hover,
.mpwem-status-actions:hover .mpwem-status-actions__primary,
.mpwem-status-actions:hover .mpwem-status-actions__toggle,
.mpwem-status-actions:focus-within .mpwem-status-actions__primary,
.mpwem-status-actions:focus-within .mpwem-status-actions__toggle {
	transform: none !important;
	box-shadow: none !important;
}
/* Secondary/Standard Action Style (The default look for section buttons) */
.mpwem-btn-secondary,
.mpwem-wizard-save-draft,
.mpwem-wizard-prev,
.mpwem-event-wizard .button:not(.mpwem-wizard-save-draft):not(.mpwem-status-actions__primary):not(.mpwem-status-actions__toggle):not(.mpwem-wizard-next):not(.mpwem-wizard-create):not(.remove):not(.delete):not(.mpwem-featured-remove),
.mpwem-event-wizard button:not(.mpwem-wizard-save-draft):not(.mpwem-status-actions__primary):not(.mpwem-status-actions__toggle):not(.mpwem-step):not(.mpwem-select-trigger):not(.remove):not(.delete):not(.mpwem-featured-remove) {
	background: var(--mpwem-btn-secondary-bg);
	color: var(--mpwem-btn-secondary-text);
	border: 1px solid var(--mpwem-btn-secondary-border);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.mpwem-event-wizard button span {
	color: var(--mpwem-btn-secondary-text) !important;
}
.mpwem-status-actions__primary span,
.mpwem-status-actions__toggle span {
	color: var(--mpwem-btn-primary-text) !important;
}
.mpwem-btn-secondary:hover,
.mpwem-wizard-save-draft:hover,
.mpwem-wizard-prev:hover,
.mpwem-event-wizard .button:not(.mpwem-wizard-save-draft):not(.mpwem-status-actions__primary):not(.mpwem-status-actions__toggle):not(.mpwem-wizard-next):not(.mpwem-wizard-create):hover {
	/* background: var(--mpwem-btn-primary-hover-bg) !important; */
	border-color: var(--mpwem-btn-secondary-hover-border) !important;
	transform: translateY(-1px);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05) !important;
}
/* Danger/Remove Style */
.mpwem-btn-danger,
.mpwem-event-wizard .mpwem-featured-remove,
.mpwem-event-wizard .button.remove,
.mpwem-event-wizard .button.delete,
.mpwem-event-wizard .remove,
.mpwem-event-wizard .delete,
.mpwem-event-wizard .ppof-button.remove {
	background: var(--mpwem-btn-danger-bg) !important;
	color: var(--mpwem-btn-danger-text) !important;
	border: 1px solid var(--mpwem-btn-danger-border) !important;
}
.mpwem-event-wizard .remove i,
.mpwem-event-wizard .delete i,
.mpwem-event-wizard .button.remove i {
	color: inherit !important;
}
.mpwem-btn-danger:hover,
.mpwem-featured-remove:hover,
.mpwem-event-wizard .button.remove:hover,
.mpwem-event-wizard .button.delete:hover,
.mpwem-event-wizard .remove:hover,
.mpwem-event-wizard .delete:hover {
	background: var(--mpwem-btn-danger-hover-bg) !important;
	color: var(--mpwem-btn-danger-hover-text) !important;
	border-color: var(--mpwem-btn-danger-hover-bg) !important;
}
/* .mpwem-wizard-save-draft inherits from the shared button system above */
.mpwem-event-wizard__steps {
	position: sticky;
	top: 0;
	z-index: 90;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	padding: 0;
	margin-bottom: 24px;
	box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.03);
}
.mpwem-event-wizard__steps-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 16px;
	display: flex;
	gap: 4px;
	overflow-x: auto;
	scrollbar-width: none; /* Hide scrollbar Firefox */
}
.mpwem-event-wizard__steps-inner::-webkit-scrollbar {
	display: none; /* Hide scrollbar Chrome/Safari */
}

/* Grid & Cards */
.mpwem-event-wizard__container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 16px 120px;
}
.mpwem-event-wizard__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 16px;
}
.mpwem-event-wizard__grid.is-full-width {
	grid-template-columns: 1fr;
}
.mpwem-event-wizard__grid.is-full-width .mpwem-event-wizard__sidebar {
	display: none;
}
.mpwem-event-wizard__grid:not(.is-full-width) .mpwem-event-wizard__main {
	max-width: none;
}
.mpwem-event-wizard__main,
.mpwem-event-wizard__sidebar {
	min-width: 0;
}
.mpwem-card {
	background: #fff;
	border: 1px solid var(--mpwem-border);
	border-radius: var(--mpwem-radius);
	box-shadow: var(--mpwem-shadow);
	margin-bottom: 20px;
	overflow: visible;
}

.mpwem-card__head {
	padding: 14px 16px;
	background: var(--mpwem-card-header-bg);
	border-bottom: 1px solid var(--mpwem-border);
	border-top-right-radius: var(--mpwem-radius);
	border-top-left-radius: var(--mpwem-radius);
	overflow: hidden;
}
.mpwem-card__head h2 {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
}
.mpwem-card__head p {
	margin: 4px 0 0;
	font-size: 13px;
	color: var(--mpwem-muted);
}
.mpwem-card__head-copy {
	min-width: 0;
}
.mpwem-card__head-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-shrink: 0;
}
.mpwem-taxonomy-card .mpwem-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0;
}
.mpwem-taxonomy-card .mpwem-card__head-copy {
	flex: 1 1 auto;
	min-width: 0;
}
.mpwem-taxonomy-card .mpwem-card__head-actions {
	margin-left: auto;
}
.mpwem-taxonomy-card__toggle {
	min-height: 28px !important;
	padding: 0 10px !important;
	border-radius: 999px !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	white-space: nowrap;
	box-shadow: none !important;
}
.mpwem-taxonomy-card__toggle.is-active {
	border-color: #cbd5e1 !important;
	background: #fff !important;
	color: #334155 !important;
}
#mpwem_gallery_images_card .mpwem-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.mpwem-card__body {
	padding: 16px;
}
/* Custom Help Card Colors per step */
.mpwem-card--help {
	--help-bg: #fffbeb;
}

.mpwem-shortcode-help {
	display: grid;
	gap: 10px;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid rgba(148, 163, 184, 0.18);
}
.mpwem-shortcode-help__row {
	display: grid;
	gap: 8px;
}
.mpwem-shortcode-help__title {
	font-size: 13px;
	font-weight: 700;
	color: var(--mpwem-text);
}
.mpwem-shortcode-help__code {
	display: block;
	padding: 10px 12px;
	border: 1px solid #d6e0ef;
	border-radius: 10px;
	background: #f8fbff;
	color: #1d4ed8;
	font-size: 12px;
	line-height: 1.5;
	white-space: normal;
	word-break: break-word;
}
.mpwem-shortcode-help__description {
	margin: 0;
	font-size: 12px;
	line-height: 1.55;
	color: var(--mpwem-muted);
}
.mpwem-shortcode-help--sidebar {
	margin-top: 16px;
}
/* Fields */
.mpwem-field {
	display: block;
	margin-bottom: 20px;
}
.mpwem-field__label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	font-size: 14px;
}
.mpwem-field input {
	padding: 6px;
	border-radius: 10px;
	border: 1px solid #cbd5e1;
}
.mpwem-input,
.mp_formControl,
.formControl {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--mpwem-border);
	border-radius: 8px;
	background-color: #fff;
	font-size: 14px;
	color: var(--mpwem-text);
	transition: all 0.2s;
}
.mpwem-input:focus,
.mp_formControl:focus,
.formControl:focus {
	outline: none;
	border-color: var(--mpwem-primary);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.mpwem-taxonomy-card__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	align-items: start;
}
.mpwem-taxonomy-card__field {
	min-width: 0;
	position: relative;
	padding: 14px 16px;
	border: 1px solid #eef2f7;
	border-radius: 14px;
	background: linear-gradient(180deg, #fcfdfd 0%, #f8fafc 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
.mpwem-taxonomy-card .mpwem-card__body .mpwem-taxonomy-card__field {
	border: 0;
	background: transparent;
	padding: 0;
	box-shadow: none;
}
.mpwem-taxonomy-card__meta {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin-top: 8px;
}
.mpwem-taxonomy-create {
	margin-top: 14px;
	padding: 16px;
	border: 1px solid #dbe6f2;
	border-radius: 16px;
	background:
		radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 34%),
		linear-gradient(180deg, #fcfdff 0%, #f8fbff 100%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.9),
		0 10px 24px rgba(15, 23, 42, 0.04);
}
.mpwem-taxonomy-create[hidden] {
	display: none !important;
}
.mpwem-taxonomy-create__head {
	margin-bottom: 12px;
}
.mpwem-taxonomy-create__head h3 {
	margin: 0;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
	color: #17324d;
	letter-spacing: 0.01em;
}
.mpwem-taxonomy-create__head p {
	margin: 5px 0 0;
	font-size: 12px;
	line-height: 1.45;
	color: #64748b;
}
.mpwem-taxonomy-create__controls {
	display: flex;
	gap: 10px;
	align-items: center;
}
.mpwem-taxonomy-create__input {
	flex: 1 1 auto;
	min-width: 0;
	margin-bottom: 0;
	border-radius: var(--mpwem-radius) !important;
	min-height: 46px;
	padding: 0 16px;
	border: 1px solid #c7d5e5;
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	color: #17324d;
	font-size: 14px;
	font-weight: 500;
	box-shadow:
		inset 0 1px 2px rgba(15, 23, 42, 0.03),
		0 1px 0 rgba(255, 255, 255, 0.8);
}
.mpwem-taxonomy-create__input::placeholder {
	color: #8aa0b8;
	font-weight: 400;
}
.mpwem-taxonomy-create__input:hover {
	border-color: #9fb6cf;
	background: linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
}
.mpwem-taxonomy-create__input:focus {
	border-color: #2563eb;
	background: #ffffff;
	box-shadow:
		0 0 0 4px rgba(37, 99, 235, 0.12),
		inset 0 1px 2px rgba(15, 23, 42, 0.03);
}
.mpwem-taxonomy-create__button {
	flex: 0 0 auto;
	min-width: 114px;
	min-height: 44px;
	padding: 0 18px !important;
	border: 1px solid #1d4ed8 !important;
	border-radius: 12px !important;
	background: var(--mpwem-btn-primary-bg) !important;
	color: #fff !important;
	font-weight: 700 !important;
	box-shadow: 0 10px 20px rgba(37, 99, 235, 0.18);
	transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.mpwem-taxonomy-create__button:hover,
.mpwem-taxonomy-create__button:focus {
	transform: translateY(-1px);
	box-shadow: 0 14px 26px rgba(37, 99, 235, 0.22);
	filter: brightness(1.02);
}
.mpwem-taxonomy-create.is-loading .mpwem-taxonomy-create__button {
	opacity: 0.75;
	pointer-events: none;
	transform: none;
	box-shadow: 0 8px 16px rgba(37, 99, 235, 0.14);
}
.mpwem-taxonomy-create__message {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 10px 0 0;
	padding: 0 2px;
	min-height: 18px;
	font-size: 12px;
	line-height: 1.45;
	color: #64748b;
}
.mpwem-taxonomy-create__message::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: currentColor;
	opacity: 0.65;
	flex: 0 0 auto;
}
.mpwem-taxonomy-create__message:empty {
	display: none;
}
.mpwem-taxonomy-create__message:empty::before {
	display: none;
}
.mpwem-taxonomy-create__message.is-success {
	color: #166534;
}
.mpwem-taxonomy-create__message.is-error {
	color: #b91c1c;
}
.mpwem-taxonomy-card__help {
	margin: 0;
	font-size: 12px;
	line-height: 1.45;
	color: #64748b;
}
.mpwem-taxonomy-card__manage-link {
	flex: 0 0 auto;
	font-size: 12px;
	font-weight: 600;
	color: #9a3412;
	text-decoration: none;
}
.mpwem-taxonomy-card__manage-link:hover,
.mpwem-taxonomy-card__manage-link:focus {
	color: #7c2d12;
	text-decoration: underline;
}
.mpwem-taxonomy-card__tags-input {
	margin-bottom: 0;
	min-height: 42px;
}
.mpwem-taxonomy-card__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 10px;
	min-height: 10px;
}
.mpwem-taxonomy-card__chip {
	display: inline-flex;
	align-items: center;
	padding: 7px 12px;
	border: 1px solid rgba(194, 156, 108, 0.42);
	border-radius: 999px;
	background: linear-gradient(135deg, #fff8ef 0%, #f8eee7 100%);
	color: #7c2d12;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
}
#mpwem_slug_preview {
	display: block;
	word-break: break-all;
	background: #f1f5f9;
	padding: 6px 10px;
	border-radius: 6px;
	font-family: 'JetBrains Mono', 'Fira Code', monospace;
	font-size: 11px;
	color: #475569;
	margin-top: 6px;
	border: 1px solid #e2e8f0;
	text-decoration: none !important;
	transition: all 0.2s ease;
}
#mpwem_slug_preview:hover {
	background: #e2e8f0;
	color: var(--mpwem-primary);
	border-color: #cbd5e1;
}
.mpwem-taxonomy-checklist {
	display: flex;
	flex-wrap: wrap;
	gap: 3px;
	padding: 4px 0;
}
.mpwem-taxonomy-checklist__item {
	position: relative;
	display: inline-flex;
	align-items: center;
	margin: 0;
	cursor: pointer;
}
.mpwem-taxonomy-checklist__item input {
	position: absolute;
	inset: 0;
	opacity: 0;
	z-index: 1;
	cursor: pointer;
}
.mpwem-taxonomy-checklist__label {
	display: inline-flex;
	align-items: center;
	padding:6px;
	border: 1px solid #d9e2ef;
	border-radius: 999px;
	background: #fff;
	color: #475569;
	font-size: 10px;
	font-weight: normal;
	line-height: 1.2;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	user-select: none;
}
.mpwem-taxonomy-checklist__item:hover .mpwem-taxonomy-checklist__label {
	border-color: #94a3b8;
	background: #f1f5f9;
	color: #1e293b;
}
.mpwem-taxonomy-checklist__item input:checked + .mpwem-taxonomy-checklist__label {
	border-color: var(--mpwem-primary);
	background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
	color: var(--mpwem-primary);
	box-shadow: 0 4px 12px -4px rgba(37, 99, 235, 0.25);
}
.mpwem-taxonomy-checklist__item input:focus-visible + .mpwem-taxonomy-checklist__label {
	outline: none;
	border-color: var(--mpwem-primary);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.mpwem-event-setting-card {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #eef2f7;
}
.mpwem-taxonomy-card--settings .mpwem-event-setting-card {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
}
.mpwem-taxonomy-card--settings .mpwem-event-setting-card__item {
	border: 0;
	padding: 0;
	background: transparent;
	box-shadow: none;
}
.mpwem-event-setting-card__grid {
	display: grid;
	grid-template-columns: repeat(2, auto);
	gap: 16px;
	align-items: stretch;
}
.mpwem-event-setting-card__item {
	padding: 16px;
	border: 1px solid #eef2f7;
	border-radius: 14px;
	background: linear-gradient(180deg, #fcfdfd 0%, #f8fafc 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
.mpwem-event-setting-card__item--roles {
	margin-top: 14px;
}
.mpwem-event-setting-card__item-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
}
.mpwem-event-setting-card__copy {
	min-width: 0;
}
.mpwem-event-setting-card__copy h3 {
	margin: 0;
	font-size: 14px;
	line-height: 1.35;
	color: #20344d;
}
.mpwem-event-setting-card__copy p,
.mpwem-event-setting-card__help {
	margin: 6px 0 0;
	font-size: 12px;
	line-height: 1.5;
	color: #64748b;
}
.mpwem-event-setting-card__switch {
	position: relative;
	flex: 0 0 auto;
	display: inline-flex;
}
.mpwem-event-setting-card__switch input {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
}
.mpwem-event-setting-card__switch-ui {
	position: relative;
	display: inline-block;
	width: 44px;
	height: 24px;
	border-radius: 999px;
	background: #cbd5e1;
	transition: background 0.2s ease;
}
.mpwem-event-setting-card__switch-ui::after {
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.2);
	transition: transform 0.2s ease;
}
.mpwem-event-setting-card__switch input:checked + .mpwem-event-setting-card__switch-ui {
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}
.mpwem-event-setting-card__switch input:checked + .mpwem-event-setting-card__switch-ui::after {
	transform: translateX(20px);
}
.mpwem-event-setting-card__switch input:focus-visible + .mpwem-event-setting-card__switch-ui {
	outline: none;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}
.mpwem-taxonomy-checklist--roles {
	margin-top: 14px;
	max-height: none;
}
@media (max-width: 782px) {
	.mpwem-taxonomy-card__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 18px;
	}
	.mpwem-event-setting-card__grid {
		grid-template-columns: minmax(0, 1fr);
	}
	.mpwem-taxonomy-card__field {
		padding: 14px 14px;
	}
	.mpwem-taxonomy-card__field + .mpwem-taxonomy-card__field::before {
		display: none;
	}
	.mpwem-taxonomy-card__meta {
		flex-direction: column;
		align-items: flex-start;
	}
	.mpwem-taxonomy-create__controls {
		flex-direction: column;
		align-items: stretch;
	}
	.mpwem-taxonomy-create__button {
		width: 100%;
		min-width: 0;
	}
	.mpwem-global-qty-field {
		padding: 16px;
	}
	.mpwem-global-qty-field__toggle,
	.mpwem-global-qty-field__control {
		align-items: stretch;
		gap: 12px;
	}
	.mpwem-global-qty-field__input-wrap {
		width: 100%;
		min-width: 0;
		max-width: none;
		flex-basis: auto;
	}
}
select.mp_formControl,
select.formControl,
.mpwem-wizard-panels select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m19 9-7 7-7-7'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 16px;
	padding-right: 40px;
	cursor: pointer;
}
.mpwem-global-qty-field {
	margin: 0 0 10px;
	padding: 18px 20px !important;
	border: none;
	border-radius: 0;
}
#mpwem_extra_service_global_qty_mount .mpwem-global-qty-field {
	padding: 0 !important;
	border-top: none;
}
.mpwem-global-qty-field__toggle,
.mpwem-global-qty-field__control {
	gap: 20px;
	align-items: center;
}
.mpwem-global-qty-field__toggle > label,
.mpwem-global-qty-field__control > span._mr {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 14px;
	font-weight: 600;
	color: #20344d;
}
.mpwem-global-qty-field__toggle .mpev-switch,
.mpwem-global-qty-field__toggle .mpwem-switch-wrap {
	flex: 0 0 auto;
}
.mpwem-global-qty-field__help {
	display: block;
	margin-top: 8px;
	font-size: 12px;
	line-height: 1.55;
	color: #64748b;
}
.mpwem-global-qty-field__panel {
	margin-top: 16px;
	padding: 16px 18px;
	border: 1px solid rgba(214, 188, 154, 0.7);
	border-radius: 14px;
	background:
		radial-gradient(circle at top right, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0) 34%),
		linear-gradient(135deg, #fff8ef 0%, #f8eee7 38%, #f3ebe4 100%);
	box-shadow:
		0 18px 40px -30px rgba(120, 72, 32, 0.32),
		inset 0 1px 0 rgba(255, 255, 255, 0.75);
	backdrop-filter: blur(10px);
}
.mpwem-global-qty-field__row {
	padding: 14px 16px;
	border: 1px solid #e4edf6;
	border-radius: 12px;
	background: #ffffff;
}
.mpwem-global-qty-field__row + .mpwem-global-qty-field__row {
	margin-top: 14px;
}
.mpwem-global-qty-field__row .divider {
	display: none;
}
.mpwem-global-qty-field__input-wrap {
	width: 240px;
	min-width: 240px;
	max-width: 240px;
	margin-left: auto;
	flex: 0 0 240px;
}
.mpwem-global-qty-field__input-wrap--number {
	width: 132px;
	min-width: 132px;
	max-width: 132px;
	flex-basis: 132px;
}
.mpwem-global-qty-field__input {
	width: 100%;
	margin-left: 0;
}
input[type="number"].mpwem-global-qty-field__input {
	text-align: center;
	width: 132px !important;
	max-width: 132px !important;
	height: 42px !important;
	padding: 8px 12px !important;
	border: 1px solid #d9e2ef !important;
	border-radius: 10px;
	background: #fff;
	box-shadow: none;
}
input[type="number"].mpwem-global-qty-field__input:focus {
	border-color: var(--mpwem-primary) !important;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12) !important;
}
select.mpwem-global-qty-field__input {
	text-align-last: left;
}
/* Custom Dropdown Styling */
.mpwem-select-wrapper {
	position: relative;
	width: 100%;
	min-width: 200px;
	flex: 1;
}
.mpev-label>div:first-child {
	flex: 2;
	padding-right: 20px;
}
.mpwem-select-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 16px;
	background: #fff;
	border: 1px solid var(--mpwem-border);
	border-radius: 10px;
	font-size: 14px;
	color: var(--mpwem-text);
	cursor: pointer;
	transition: all 0.2s;
	user-select: none;
}
.mpwem-select-trigger:hover {
	border-color: #cbd5e1;
}
.mpwem-select-wrapper.is-open .mpwem-select-trigger {
	border-color: var(--mpwem-primary);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.mpwem-select-trigger:after {
	content: '';
	width: 16px;
	height: 16px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m19 9-7 7-7-7'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	transition: transform 0.2s;
}
.mpwem-select-wrapper.is-open .mpwem-select-trigger:after {
	transform: rotate(180deg);
}
.mpwem-select-options {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid var(--mpwem-border);
	border-top: none;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	max-height: 250px;
	overflow-y: auto;
	display: none;
	animation: mpwemFadeIn 0.2s ease-out;
}
.mpwem-select-wrapper.is-open .mpwem-select-options {
	display: block;
}
.mpwem-select-option {
	padding: 10px 16px;
	font-size: 14px;
	color: var(--mpwem-text);
	cursor: pointer;
	transition: background 0.1s;
}
.mpwem-select-option:hover {
	background: #f8fafc;
	color: var(--mpwem-primary);
}
.mpwem-select-option.is-selected {
	background: #eff6ff;
	color: var(--mpwem-primary);
	font-weight: 600;
}
@keyframes mpwemFadeIn {
	from {
		opacity: 0;
		transform: translateY(-5px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/* Event Type Toggle */
.mpwem-event-type-card {
	background: #f8fafc;
	border: 1px solid var(--mpwem-border);
	border-radius: 12px;
	padding: 16px;
	margin-bottom: 24px;
}
.mpwem-event-type-toggle {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.mpwem-event-type-option {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px;
	background: #fff;
	border: 2px solid var(--mpwem-border);
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s;
}
.mpwem-event-type-option.is-active {
	border-color: var(--mpwem-primary);
}

.mpwem-event-type-option.is-active::after {
	content: "✓";
	position: absolute;
	top: 10px;
	right: 10px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--mpwem-primary);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
	line-height: 1;
}
.mpwem-event-type-option .dashicons {
	font-size: 20px;
	width: 20px;
	height: 20px;
	color: var(--mpwem-muted);
}
.mpwem-event-type-option.is-active .dashicons {
	color: var(--mpwem-primary);
}
.mpwem-event-type-option strong {
	display: block;
	font-size: 14px;
}
.mpwem-event-type-option small {
	display: block;
	font-size: 12px;
	color: var(--mpwem-muted);
}
.mpwem-registration-mode {
	display: grid;
	gap: 10px;
	padding: 10px 15px 0;
}
.mpwem-registration-mode + span {
	margin-bottom: 0;
	padding: 10px 20px;
}
.mpwem-registration-mode__toggle {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}
.mpwem-registration-mode__toggle .mpwem-event-type-option {
	position: relative;
	display: grid !important;
	grid-template-columns: 38px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	min-height: 82px;
	width: 100%;
	padding: 14px !important;
	background: #fff !important;
	border: 1px solid #d9e2ef !important;
	border-radius: 10px !important;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04) !important;
	font: inherit;
	color: inherit;
	appearance: none;
	text-align: left;
	transition: all 0.2s;
}
.mpwem-registration-mode__control {
	display: none;
}
.mpwem-registration-mode__toggle .mpwem-event-type-option:hover {
	border-color: #9db4d4 !important;
	background: #f8fbff !important;
	transform: translateY(-1px);
}
.mpwem-registration-mode__toggle .mpwem-event-type-option.is-active {
	border-color: var(--mpwem-primary) !important;
	background: #eef6ff !important;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
}

.mpwem-registration-mode__toggle .mpwem-event-type-option.is-active::after {
	content: "✓";
	position: absolute;
	top: 10px;
	right: 10px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--mpwem-primary);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
	line-height: 1;
}
.mpwem-registration-mode__toggle .mpwem-date-type-option__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: center;
	width: 38px;
	height: 38px;
	line-height: 38px;
	border-radius: 10px;
	background: #e7eef8;
	color: #31537f !important;
	font-size: 18px;
	text-align: center;
}
.mpwem-registration-mode__toggle .mpwem-event-type-option.is-active .mpwem-date-type-option__icon {
	background: var(--mpwem-primary);
	color: #fff !important;
}
.mpwem-registration-mode__toggle .mpwem-date-type-option__copy {
	display: grid;
	gap: 3px;
	min-width: 0;
}
.mpwem-registration-mode__toggle .mpwem-date-type-option__copy strong {
	color: var(--mpwem-text);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.25;
}
.mpwem-registration-mode__toggle .mpwem-date-type-option__copy small {
	color: var(--mpwem-muted);
	font-size: 12px;
	line-height: 1.35;
	font-weight: normal;
}
/* Venue Grid */
.mpwem-venue-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.mpwem-venue-field {
	background: #f8fafc;
	padding: 12px;
	border-radius: 8px;
	border: 1px solid var(--mpwem-border);
}
.mpwem-venue-field.is-full {
	grid-column: span 2;
}
.mpwem-venue-label {
	display: block;
	font-weight: 600;
	font-size: 12px;
	color: var(--mpwem-muted);
	margin-bottom: 4px;
}
.mpwem-venue-field input,
.mpwem-venue-field select {
	width: 100%;
	border: 1px solid #cbd5e1;
	border-radius: 10px;
	padding: 6px;
}
/* Switch Toggle */
.mpwem-switch-wrap,
.mpev-label {
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	user-select: none;
	vertical-align: middle;
	margin-bottom: 0;
}
.mpwem-switch-input {
	display: none !important;
}
.mpwem-switch-slider {
	position: relative;
	width: 44px;
	height: 22px;
	background: #e2e8f0;
	border-radius: 22px;
	transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	flex-shrink: 0;
	border: 1px solid rgba(0, 0, 0, 0.05);
	box-sizing: border-box;
}
.mpwem-switch-slider:after {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	width: 16px;
	height: 16px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mpwem-switch-input:checked+.mpwem-switch-slider {
	background: var(--mpwem-primary);
	border-color: var(--mpwem-primary);
}
.mpwem-switch-input:checked+.mpwem-switch-slider:after {
	transform: translateX(22px);
}
.mpwem-switch-text {
	font-size: 14px;
	font-weight: 500;
	color: var(--mpwem-text);
}
.mpwem-switch-wrap:hover .mpwem-switch-slider {
	background: #cbd5e1;
}
.mpwem-switch-wrap:hover .mpwem-switch-input:checked+.mpwem-switch-slider {
	background: var(--mpwem-primary-hover);
}
/* Info Tips */
.mpwem-info-tip {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	background: #e2e8f0;
	color: #64748b;
	border-radius: 50%;
	font-size: 10px;
	font-weight: 800;
	margin-left: 6px;
	cursor: help;
	vertical-align: middle;
	text-align: center;
	text-transform: lowercase;
}
.mpwem-info-tip--mini {
	width: 13px;
	height: 13px;
	font-size: 8px;
	margin-left: 5px;
}
/* Hide WP Footer & Notices in Wizard */
.mpwem-event-wizard-screen #wpfooter {
	display: none !important;
}
.mpwem-event-wizard-screen .notice,
.mpwem-event-wizard-screen .updated,
.mpwem-event-wizard-screen #message {
	display: none !important;
}
/* Footer */
.mpwem-event-wizard__footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	right: 0;
	background: #fff;
	border-top: 1px solid var(--mpwem-border);
	padding: 16px 0 calc(16px + env(safe-area-inset-bottom, 0px));
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
	z-index: 200;
	transition: left 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.mpwem-event-wizard__footer-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 16px;
	display: grid;
	grid-template-columns: 1fr;
	justify-content: stretch;
	align-items: center;
	gap: 12px;
}
.mpwem-wizard-progress {
	font-weight: 400;
	font-size: 14px;
	color: #ced2d7;
	min-width: 100px;
	text-align: center;
}
.mpwem-event-wizard__footer-center {
	display: flex;
	justify-content: center;
	min-width: 0;
}
/* ===================================================================
 * Legacy Panel Overrides
 * These selectors target markup rendered by the classic meta-box
 * system that is mounted into the wizard via JS. They must keep
 * their `_` prefixed names because the PHP panels generate them.
 * =================================================================== */
._layout_default_xs_mp_zero {


	border-radius: var(--mpwem-radius);

	margin-bottom: 15px !important;
	overflow: hidden;
}
._bg_light_padding,
._bg_light_padding_bB {
	padding: 16px 18px !important;
	background: var(--mpwem-card-header-bg) !important;
	border-bottom: 1px solid var(--mpwem-border) !important;
}
._bg_light_padding h4,
._bg_light_padding_bB h4 {
	display: block !important; /* Overriding previous display:none */
	margin: 0 !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	color: var(--mpwem-text) !important;
}
._bg_light_padding span,
._bg_light_padding_bB span {
	display: block !important;
	margin: 4px 0 0 !important;
	font-size: 13px !important;
	color: var(--mpwem-muted) !important;
}
._padding,
._padding_bt {
	padding: 24px !important;
}
.mpwem_settings_area {
	padding: 0 !important;
	border-top: none !important;
}
.mpwem_style {
	padding: 0 !important;
	border: 0 !important;
}
._justify_between_align_center_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 12px;
}
.label-text {
	display: block;
	font-size: 13px;
	color: var(--mpwem-muted);
	margin-top: -8px;
	margin-bottom: 20px;
}
/* Sidebar Featured Image */
.mpwem-featured-image__preview {
	background: #f1f5f9;
	border: 2px dashed var(--mpwem-border);
	border-radius: 8px;
	aspect-ratio: 16/9;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
	overflow: hidden;
}
.mpwem-featured-image__preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.mpwem-featured-image__actions {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.mpwem-featured-select,.mpwem-featured-remove{
	width: 50%;
}
/* Breakpoint: small tablets and large phones */
@media (min-width: 600px) {
	.mpwem-event-wizard {
		padding-bottom: 148px;
	}
	.mpwem-event-wizard__actions {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
	}
	.mpwem-event-wizard__actions > * {
		width: auto;
	}
	.mpwem-status-actions {
		width: auto;
		margin-left: auto;
	}
	.mpwem-event-wizard__container,
	.mpwem-event-wizard__footer-inner,
	.mpwem-event-wizard__steps-inner {
		padding-left: 20px;
		padding-right: 20px;
	}
	.mpwem-event-wizard__footer-inner {
		grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	}
	.mpwem-wizard-prev,
	.mpwem-wizard-next {
		width: auto;
		justify-self: center;
		min-height: 44px;
	}

	.mpwem-card__head,
	.mpwem-card__body {
		padding: 20px;
	}
	.mpwem-taxonomy-card .mpwem-card__head {
		flex-direction: column;
		align-items: flex-start;
	}
	.mpwem-taxonomy-card__toggle {
		width: 100%;
		min-height: 34px !important;
		font-size: 12px !important;
	}
	.mpwem-taxonomy-card .mpwem-card__head-actions {
		width: auto;
		margin-left: 0;
		justify-content: flex-start;
	}
	.mpwem-featured-image__actions {
		flex-direction: row;
		justify-content: stretch;
	}

	.mpwem-taxonomy-checklist {
		grid-template-columns: repeat(2, auto);
	}
	.mpwem-ticket-summary {
		padding: 0 17px 20px;
	}
}
/* Breakpoint: WordPress admin tablet/desktop layout */
@media screen and (min-width: 783px) {
	body.mpwem-event-wizard-screen {
		--mpwem-admin-sidebar-offset: var(--mpwem-admin-menu-width);
		--mpwem-admin-bar-offset: var(--mpwem-admin-bar-height);
	}
	body.mpwem-event-wizard-screen.folded,
	body.mpwem-event-wizard-screen.auto-fold {
		--mpwem-admin-sidebar-offset: var(--mpwem-admin-menu-folded-width);
	}
	body.mpwem-event-wizard-screen .mpwem-event-wizard__footer {
		left: var(--mpwem-admin-menu-width);
		width: calc(100% - var(--mpwem-admin-menu-width));
	}
	body.mpwem-event-wizard-screen.folded .mpwem-event-wizard__footer,
	body.mpwem-event-wizard-screen.auto-fold .mpwem-event-wizard__footer {
		left: var(--mpwem-admin-menu-folded-width);
		width: calc(100% - var(--mpwem-admin-menu-folded-width));
	}
	.mpwem-event-wizard {
		padding-bottom: 140px;
	}
	.mpwem-event-wizard__topbar {
		position: sticky;
		top: var(--mpwem-admin-bar-offset);
		left: var(--mpwem-admin-sidebar-offset);
		right: 0;
		padding: 16px 20px;
	}
	.mpwem-event-wizard__steps {
		top: 101px;
		margin-bottom: 32px;
	}
	.mpwem-event-wizard__container {
		padding-bottom: 100px;
	}
	.mpwem-event-wizard__footer {
		padding-top: 16px;
	}
	.mpwem-event-wizard__footer-inner {
		gap: 20px;
	}
	.mpwem-taxonomy-checklist {
		grid-template-columns: repeat(2, auto);
	}
}
/* Breakpoint: wide tablet and small desktop */
@media (min-width: 901px) {
	.mpwem-event-wizard__topbar-inner {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
	.mpwem-event-wizard__topbar-inner .mpwem-link {
		min-width: 90px;
	}
	.mpwem-event-wizard__topbar-inner > .mpwem-link:first-child {
		min-width: 122px;
	}
	.mpwem-event-wizard__title {
		flex: 1 1 auto;
		margin: 0 16px;
	}
	.mpwem-event-wizard__title h1 {
		white-space: nowrap;
		word-break: normal;
	}
	.mpwem-event-wizard__actions {
		width: auto;
		flex-wrap: nowrap;
		gap: 0;
		min-width: initial;
	}
	.mpwem-status-actions {
		margin-left: 0;
	}
	.mpwem-ticket-summary__toolbar {
		grid-template-columns: minmax(0, 1fr) auto !important;
	}
	.mpwem-ticket-summary__actions,
	.mpwem-ticket-summary__item-actions,
	.mpwem-ticket-summary__meta {
		justify-content: flex-start;
		text-align: left;
	}
	.mpwem-ticket-modal__dialog {
		width: min(100vw - 20px, 1280px);
		max-height: calc(100vh - 20px);
		margin: 10px auto;
		border-radius: 18px;
	}
	.mpwem-ticket-modal__header,
	.mpwem-ticket-modal__body {
		padding: 20px;
	}
	.mpwem-taxonomy-checklist {
		grid-template-columns: repeat(1, auto);
	}
	.mpwem-event-wizard__sidebar .mpwem-taxonomy-checklist {
		grid-template-columns: 1fr;
	}
}
/* Breakpoint: desktop with sidebar rail */
@media (min-width: 960px) {
	.mpwem-event-wizard__grid {
		grid-template-columns: minmax(0, 1fr) 320px;
		gap: 24px;
	}
}
/* Breakpoint: large desktop */
@media (min-width: 1200px) {
	.mpwem-event-wizard__grid {
		grid-template-columns: minmax(0, 1fr) 400px;
	}
	.mpwem-event-wizard__grid:not(.is-full-width) .mpwem-event-wizard__main {
		max-width: 976px;
	}
	.mpwem-card__head {
		padding: 10px 15px;
		flex-direction: row !important;
	}
	.mpwem-card__body {
		padding: 10px 15px;
	}
}
/* Breakpoint: most large desktop */
@media (min-width: 1600px) {
	.mpwem-taxonomy-checklist {
		grid-template-columns: repeat(2, auto);
	}
	.mpwem-event-wizard__sidebar .mpwem-taxonomy-checklist {
		grid-template-columns: 1fr;
	}
}
.mpwem-media-mount section.bg-light {
	background: var(--mpwem-card-header-bg) !important;
	border: 1px solid var(--mpwem-border);
	border-radius: var(--mpwem-radius);
	padding: 24px !important;
	margin-bottom: 24px !important;
}
.mpwem-media-mount h2 {
	margin: 0 0 12px 0;
	font-size: 16px;
	font-weight: 700;
}
/* Ticket & Pricing Settings Step */
.mpwem_ticket_pricing_settings {
	max-width: 1400px;
	margin: 0 auto;
}
.mpwem-ticket-legacy-mount {
	display: block;
}
#mpwem_wizard_tickets_mount .mpwem-ticket-editor-section {
	display: none !important;
}
#mpwem_wizard_tickets_mount > .mpwem_style {
	padding: 0 !important;
}
#mpwem_wizard_tickets_mount > .mpwem_style > ._layout_default_xs_mp_zero:first-child {
	border: 1px solid var(--mpwem-border);
	border-radius: var(--mpwem-radius);
	background: #fff;
	box-shadow: var(--mpwem-shadow);
	overflow: hidden;
}
.mpwem-ticket-summary {
	display: grid;
	gap: 24px;
	padding: 0 25px 20px;
	margin-top: 20px;
}
#mpwem_ticket_summary.mpwem-ticket-summary {
	gap: 14px;
	padding: 0 15px 14px;
	margin-top: 14px;
}
#mpwem_extra_service_summary.mpwem-ticket-summary {
	gap: 14px;
	padding: 0 0 5px;
	margin-top: 14px;
}
.mpwem-ticket-summary__toolbar {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	align-items: end;
	padding:15px;
	border: 1px solid #dbe5f2;
	border-radius:12px;
	background:
		radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 36%),
		linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
#mpwem_ticket_summary .mpwem-ticket-summary__toolbar {
	grid-template-columns: 1fr;
	gap: 14px;
	padding: 18px 20px;
	border-radius: 14px;
}
#mpwem_extra_service_summary .mpwem-ticket-summary__toolbar {
	grid-template-columns: 1fr;
	gap: 14px;
	padding: 18px 20px;
	border-radius: 14px;
}
.mpwem-ticket-summary__eyebrow,
.mpwem-ticket-modal__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--mpwem-primary);
}
#mpwem_particular_date_summary .mpwem-ticket-summary__toolbar {
	position: relative;
}
#mpwem_particular_date_summary .mpwem-ticket-summary__eyebrow {
	position: absolute;
	top: 0;
	left: 16px;
	z-index: 2;
	padding: 0 8px;
	background: #f8fbff;
	line-height: 1;
	transform: translateY(-50%);
	pointer-events: none;
}
#mpwem_particular_date_summary .mpwem-ticket-summary__intro h3 {
	margin-top: 0;
}
.mpwem-ticket-summary__intro h3,
.mpwem-ticket-modal__header-copy h3 {
	margin: 4px 0 2px;
	font-size: 16px !important;
	line-height: 1.15;
	color: #10233f;
}
div.mep_reg_status_show_msg_txt_sec textarea.formControl{
	width:100%;
	max-width: 100%;
	background-color: #fff;
}

#mpwem_ticket_summary .mpwem-ticket-summary__intro h3 {
	margin: 2px 0 1px;
	font-size: 16px;
}
#mpwem_extra_service_summary .mpwem-ticket-summary__intro h3 {
	margin: 2px 0 1px;
	font-size: 16px;
}
.mpwem-ticket-summary__intro p,
.mpwem-ticket-modal__header-copy p {
	margin: 0;
	font-size: 11px;
	line-height: 1.45;
	color: var(--mpwem-muted);
}
#mpwem_ticket_summary .mpwem-ticket-summary__intro p {
	font-size: 11px;
	line-height: 1.4;
}
#mpwem_extra_service_summary .mpwem-ticket-summary__intro p {
	max-width: 48ch;
	font-size: 11px;
	line-height: 1.4;
}
.mpwem-ticket-summary__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 12px;
}
#mpwem_ticket_summary .mpwem-ticket-summary__actions {
	gap: 8px;
	align-items: center;
}
#mpwem_extra_service_summary .mpwem-ticket-summary__actions {
	gap: 8px;
	align-items: center;
}
#mpwem_ticket_summary .mpwem-ticket-summary__actions .button {
	min-height: 34px;
	padding: 0 12px;
	line-height: 32px;
}

#mpwem_ticket_summary .mpwem-ticket-summary__actions .mpwem-ticket-summary__add.button-primary,
#mpwem_ticket_summary .mpwem-ticket-summary__actions .mpwem-ticket-summary__add.button-primary:hover,
#mpwem_ticket_summary .mpwem-ticket-summary__actions .mpwem-ticket-summary__add.button-primary:focus {
	background: var(--mpwem-btn-primary-bg);
	color: var(--mpwem-btn-primary-text);
	border-color: var(--mpwem-btn-primary-bg);
}
#mpwem_extra_service_summary .mpwem-ticket-summary__actions .button {
	min-height: 34px;
	padding: 0 12px;
	line-height: 32px;
}

#mpwem_extra_service_summary .mpwem-ticket-summary__actions .button-primary,
#mpwem_extra_service_summary .mpwem-ticket-summary__actions .button-primary:hover,
#mpwem_extra_service_summary .mpwem-ticket-summary__actions .button-primary:focus {
	background: var(--mpwem-btn-primary-bg);
	color: var(--mpwem-btn-primary-text);
	border-color: var(--mpwem-btn-primary-bg);
}
#mpwem_particular_date_summary .mpwem-ticket-summary__actions .button {
	min-height: 34px;
	padding: 0 12px;
	line-height: 32px;
}

#mpwem_particular_date_summary .mpwem-ticket-summary__actions .button-primary,
#mpwem_particular_date_summary .mpwem-ticket-summary__actions .button-primary:hover,
#mpwem_particular_date_summary .mpwem-ticket-summary__actions .button-primary:focus {
	background: var(--mpwem-btn-primary-bg);
	color: var(--mpwem-btn-primary-text);
	border-color: var(--mpwem-btn-primary-bg);
}
.mpwem-ticket-summary__list {
	display: grid;
	gap: 7px;
}
#mpwem_ticket_summary .mpwem-ticket-summary__list {
	gap: 5px;
}
#mpwem_extra_service_summary .mpwem-ticket-summary__list {
	gap: 5px;
}
#mpwem_ticket_summary .mpwem-ticket-summary__header,
#mpwem_ticket_summary .mpwem-ticket-summary__item {
	grid-template-columns: minmax(0, 1fr) minmax(88px, 0.42fr) minmax(68px, 0.3fr);
	column-gap: 16px;
}
.mpwem-ticket-summary__header,
.mpwem-ticket-summary__item {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto;
	gap: 20px;
	align-items: center;
}
.mpwem-ticket-summary__header {
	padding: 10px 22px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #64748b;
	background: #e9eff6;
	border-radius: 5px;
}
#mpwem_ticket_summary .mpwem-ticket-summary__header {
	padding: 10px 14px;
	font-size: 10px;
	letter-spacing: 0.1em;
}
#mpwem_extra_service_summary .mpwem-ticket-summary__header {
	padding: 10px 14px;
	font-size: 10px;
	letter-spacing: 0.1em;
}
.mpwem-ticket-summary__item {
	padding: 10px 22px;
	border: 1px solid var(--mpwem-border);
	border-radius: 5px;
	background: #fff;
	box-shadow: 0 10px 24px -20px rgba(15, 23, 42, 0.45);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
#mpwem_ticket_summary .mpwem-ticket-summary__item {
	padding: 8px 14px;
	gap: 14px;
	border-radius: 5px;
	cursor: pointer;
}
#mpwem_extra_service_summary .mpwem-ticket-summary__item {
	padding: 8px 14px;
	gap: 14px;
	border-radius: 5px;
	cursor: pointer;
}
.mpwem-ticket-summary__item:nth-child(even) {
	background: #fafcff;
	border-color: #dbe5f2;
}
.mpwem-ticket-summary__item:nth-child(odd) {
	background:#fafcff;
	border-color: #dbe5f2;
}
.mpwem-ticket-summary__item:hover {
	transform: translateY(-1px);
	border-color: #dbe5f2;
	box-shadow: 0 14px 28px -22px rgba(15, 23, 42, 0.22);
}
#mpwem_ticket_summary .mpwem-ticket-summary__item:hover {
	border-color: #93c5fd;
	box-shadow: 0 16px 30px -24px rgba(37, 99, 235, 0.32);
}
#mpwem_extra_service_summary .mpwem-ticket-summary__item:hover {
	border-color: #93c5fd;
	box-shadow: 0 16px 30px -24px rgba(37, 99, 235, 0.32);
}
.mpwem-ticket-summary__item.is-disabled {
	background: linear-gradient(135deg, #fefdfb 0%, #dbe5f2 58%, #dbe5f2 100%);
	opacity: 0.9;
}
.mpwem-ticket-summary__item-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}
.mpwem-ticket-summary__item-head h4,
.mpwem-ticket-summary__empty h4 {
	margin: 0 !important;
	font-size: 14px !important;
	color: #10233f;
}
#mpwem_ticket_summary .mpwem-ticket-summary__item-head h4 {
	font-size: 14px !important;
	line-height: 1.3;
}
#mpwem_extra_service_summary .mpwem-ticket-summary__item-head h4 {
	font-size: 14px !important;
	font-weight: 400;
	line-height: 1.3;
}
.mpwem-ticket-summary__item-main p,
.mpwem-ticket-summary__empty p {
	margin: 0;
	font-size: 13px;
	line-height: 1.55;
	color: var(--mpwem-muted);
}
.mpwem-ticket-summary__status {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-height: 24px;
	padding: 0 10px;
	border-radius: 999px;
	background: #e8f1ff;
	color: #0f4fbf;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.mpwem-ticket-summary__item.is-disabled .mpwem-ticket-summary__status {
	background: #fff1f2;
	color: #be123c;
}
.mpwem-ticket-summary__meta {
	display: grid;
	gap: 4px;
	text-align: right;
}
#mpwem_ticket_summary .mpwem-ticket-summary__meta {
	gap: 2px;
	justify-self: stretch;
	width: 100%;
	justify-content: flex-end;
}
#mpwem_extra_service_summary .mpwem-ticket-summary__meta {
	gap: 2px;
}
.mpwem-ticket-summary__meta--capacity {
	justify-self: end;
	text-align: right;
}
.mpwem-ticket-summary__price {
	font-size: 20px;
	font-weight: 800;
	color: #10233f;
	padding-right: 0 !important;
}
#mpwem_ticket_summary .mpwem-ticket-summary__price {
	font-size: 14px;
	line-height: 1.2;
	font-weight: 400;
}
#mpwem_extra_service_summary .mpwem-ticket-summary__price {
	font-size: 14px;
	line-height: 1.2;
	font-weight: 400;
}
#mpwem_ticket_summary .mpwem-ticket-summary__capacity {
	font-size: 14px;
	line-height: 1.2;
	font-weight: 400;
	color: #10233f;
}

.mpwem-ticket-summary__datetime {
	display: block;
	font-size: 14px;
	line-height: 1.3;
	font-weight: 400;
	color: #10233f;
	text-transform: none;
	letter-spacing: 0;
}
.mpwem-ticket-summary__item-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.mpwem-ticket-summary__header-price,
.mpwem-ticket-summary__header-action {
	text-align: right;
}
.mpwem-ticket-summary__header-capacity {
	text-align: right;
}
#mpwem_ticket_summary .mpwem-ticket-summary__header-price,
#mpwem_ticket_summary .mpwem-ticket-summary__header-capacity {
	display: block;
	width: 100%;
}
#mpwem_ticket_summary .mpwem-ticket-summary__meta--capacity {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	min-width: 56px;
}
#mpwem_ticket_summary .mpwem-ticket-summary__price,
#mpwem_ticket_summary .mpwem-ticket-summary__capacity {
	display: block;
	width: 100%;
}
#mpwem_extra_service_summary .mpwem-ticket-summary__header,
#mpwem_extra_service_summary .mpwem-ticket-summary__item {
	grid-template-columns: minmax(0, 1fr) minmax(88px, 0.42fr) minmax(64px, 0.28fr);
	column-gap: 16px;
}
#mpwem_extra_service_summary .mpwem-ticket-summary__header-ticket,
#mpwem_extra_service_summary .mpwem-ticket-summary__item-main {
	text-align: left;
}
#mpwem_extra_service_summary .mpwem-ticket-summary__header-price,
#mpwem_extra_service_summary .mpwem-ticket-summary__header-capacity,
#mpwem_extra_service_summary .mpwem-ticket-summary__meta,
#mpwem_extra_service_summary .mpwem-ticket-summary__meta--capacity {
	justify-self: end;
	text-align: right;
}
#mpwem_extra_service_summary .mpwem-ticket-summary__header-price,
#mpwem_extra_service_summary .mpwem-ticket-summary__header-capacity {
	width: 100%;
}
#mpwem_extra_service_summary .mpwem-ticket-summary__meta--capacity {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
#mpwem_extra_service_summary .mpwem-ticket-summary__price,
#mpwem_extra_service_summary .mpwem-ticket-summary__capacity {
	display: block;
	width: 100%;
}
#mpwem_extra_service_summary .mpwem-ticket-summary__meta--capacity {
	min-width: 64px;
}
#mpwem_extra_service_summary .mpwem-ticket-summary__capacity {
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
	color: #10233f;
}
@media (max-width: 767px) {
	#mpwem_ticket_summary .mpwem-ticket-summary__header,
	#mpwem_ticket_summary .mpwem-ticket-summary__item {
		grid-template-columns: minmax(0, 1fr) 78px 56px;
		column-gap: 10px;
	}
	#mpwem_ticket_summary .mpwem-ticket-summary__header {
		padding: 0 10px;
		font-size: 9px;
	}
	#mpwem_ticket_summary .mpwem-ticket-summary__item {
		padding: 8px 10px;
	}
	#mpwem_ticket_summary .mpwem-ticket-summary__item-head h4 {
		font-size: 13px !important;
	}
	#mpwem_ticket_summary .mpwem-ticket-summary__price,
	#mpwem_ticket_summary .mpwem-ticket-summary__capacity {
		font-size: 12px;
	}
	#mpwem_extra_service_summary .mpwem-ticket-summary__header,
	#mpwem_extra_service_summary .mpwem-ticket-summary__item {
		grid-template-columns: minmax(0, 1fr) 78px 52px;
		column-gap: 10px;
	}
	#mpwem_extra_service_summary .mpwem-ticket-summary__header {
		padding: 0 10px;
		font-size: 9px;
	}
	#mpwem_extra_service_summary .mpwem-ticket-summary__item {
		padding: 8px 10px;
	}
	#mpwem_extra_service_summary .mpwem-ticket-summary__item-head h4 {
		font-size: 13px !important;
	}
	#mpwem_extra_service_summary .mpwem-ticket-summary__price,
	#mpwem_extra_service_summary .mpwem-ticket-summary__capacity {
		font-size: 12px;
	}
}
.mpwem-ticket-summary__empty {
	display: grid;
	gap: 12px;
	justify-items: start;
	padding: 28px;
	border: 1px dashed #c7d8f6;
	border-radius: 18px;
}
#mpwem_ticket_summary .mpwem-ticket-summary__empty {
	gap: 8px;
	padding: 18px;
	border-radius: 14px;
}
#mpwem_extra_service_summary .mpwem-ticket-summary__empty {
	gap: 8px;
	padding: 18px;
	border-radius: 14px;
}

.mpwem-ticket-summary__empty .button-primary,
.mpwem-ticket-summary__empty .button-primary:hover,
.mpwem-ticket-summary__empty .button-primary:focus {
	background: var(--mpwem-btn-primary-bg) !important;
	color: var(--mpwem-btn-primary-text) !important;
	border-color: var(--mpwem-btn-primary-bg) !important;
}
.mpwem-ticket-modal {
	position: fixed;
	inset: 0;
	z-index: 100100;
	display: none;
}
.mpwem-ticket-modal.is-open {
	display: block;
}
.mpwem-ticket-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.56);
	backdrop-filter: blur(8px);
}
.mpwem-ticket-modal__dialog {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-rows: auto minmax(0, 1fr);
	width: min(1280px, calc(100vw - 48px));
	max-height: calc(100vh - 48px);
	margin: 24px auto;
	border: 1px solid rgba(148, 163, 184, 0.35);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 35px 80px -32px rgba(15, 23, 42, 0.55);
	overflow: hidden;
}
.mpwem-ticket-modal__header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px 20px;
	padding: 16px 22px;
	border-bottom: 1px solid rgba(148, 163, 184, 0.2);
	background:
		radial-gradient(circle at top left, rgba(37, 99, 235, 0.11), transparent 28%),
		linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}
.mpwem-ticket-modal__header-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
}
.mpwem-ticket-modal__header-actions > div:empty {
	display: none;
}
.mpwem-ticket-modal__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid #cbd5e1;
	border-radius: 999px;
	background: #fff;
	color: #334155;
	cursor: pointer;
	transition: all 0.2s ease;
}
.mpwem-ticket-modal__close:hover {
	background: #eff6ff;
	border-color: #93c5fd;
	color: #1d4ed8;
}
.mpwem-ticket-modal__body {
	padding: 15px 15px;
	overflow-y: auto;
	overflow-x: hidden;
	min-width: 0;
}
.mpwem-ticket-modal__mount {
	width: 100%;
	min-width: 0;
}
.mpwem-ticket-modal__mount .mpwem-ticket-editor-section {
	display: grid;
	gap: 0;
	width: 100%;
	min-width: 0;
	border-radius: 18px;
	background: #fff;
	overflow: hidden;
}
.mpwem-ticket-modal__mount .mpwem-ticket-editor-section > ._bg_light_padding {
	display: none !important;
}
.mpwem-ticket-modal__mount .mpwem-ticket-editor-section > ._padding_bt {
	padding: 0 !important;
	margin: 0 18px 10px;
	background: #fff;
}
.mpwem-ticket-modal__mount .mpwem_settings_area {
	padding: 0 !important;
	min-width: 0;
}
.mpwem-ticket-modal__mount .mpwem-ticket-modal__note {
	margin: 18px;
	padding: 14px 16px;
	border: 1px solid #dbeafe;
	border-radius: 12px;
	background: #f9cece;
	color: #1e3a8a;
	font-weight: 500;
}
/* Date Modal Overrides */
.mpwem-ticket-modal__mount .mpwem-date-card {
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	padding: 0 !important;
	margin: 0 !important;
}
.mpwem-ticket-modal__mount .mpwem-date-card__head,
.mpwem-ticket-modal__mount .mpwem-date-mode-label,
.mpwem-ticket-modal__mount section.bg-light {
	display: none !important;
}
.mpwem-ticket-modal__mount .mpwem-date-repeat-area {
	padding: 0 !important;
	margin-top: 0;
}
.mpwem-ticket-modal__mount .mpwem-date-repeat-area .mpwem_add_item {
	display: none !important;
}
.mpwem-ticket-modal__mount .mpwem-repeat-schedule-modal {
	padding: 0 !important;
	overflow: hidden !important;
	margin-bottom: 20px !important;
}
.mpwem-ticket-modal__mount .mpwem-repeat-schedule-shell {
	display: grid;
	gap: 14px;
	padding: 18px !important;
	background: transparent !important;
}
.mpwem-ticket-modal__mount [data-collapse="#mep_everyday_event"] ._padding_bt {
	border-bottom: 1px solid #e2e8f0;
}
.mpwem-ticket-modal__mount [data-collapse="#mep_everyday_event"] ._padding_bt:last-child {
	border-bottom: none;
}
.mpwem-ticket-modal__mount .mpwem-repeat-row {
	padding: 16px 18px !important;
	border: 1px solid #e2e8f0 !important;
	border-radius: 18px !important;
	background: rgba(255, 255, 255, 0.96) !important;
}

.mpwem-ticket-modal__mount .mpwem-repeat-row .label-text {
	display: block;
	margin-top: 10px;
	color: #5b708c;
	font-size: 12px;
	line-height: 1.5;
}
.mpwem-ticket-modal__mount [data-collapse="#mep_everyday_event"] ._justify_between_align_center_wrap {

}
.mpwem-ticket-modal__mount .mpwem-repeat-row ._justify_between_align_center_wrap > label:first-child,
.mpwem-ticket-modal__mount .mpwem-repeat-row label._justify_between_align_center_wrap > ._mr {
	display: grid;
	gap: 6px;
	align-content: start;
	margin: 0;
}
.mpwem-ticket-modal__mount .mpwem-repeat-row ._justify_between_align_center_wrap > label:first-child::after,
.mpwem-ticket-modal__mount .mpwem-repeat-row label._justify_between_align_center_wrap > ._mr::after {
	font-size: 12px;
	font-weight: 500;
	line-height: 1.45;
	color: #64748b;
}
.mpwem-ticket-modal__mount .mpwem-repeat-row--start ._justify_between_align_center_wrap > label:first-child::after {
	content: "Choose when the repeated schedule begins.";
}
.mpwem-ticket-modal__mount .mpwem-repeat-row--end ._justify_between_align_center_wrap > label:first-child::after {
	content: "Set when the repeated schedule should stop.";
}
.mpwem-ticket-modal__mount .mpwem-repeat-row--interval label._justify_between_align_center_wrap > ._mr::after {
	content: "Use 1 for daily repetition or a higher number to skip days.";
}
.mpwem-ticket-modal__mount .mpwem-repeat-row--interval label._justify_between_align_center_wrap > ._mr {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 8px;
	row-gap: 4px;
}
.mpwem-ticket-modal__mount .mpwem-repeat-row--interval label._justify_between_align_center_wrap > ._mr::after {
	flex-basis: 100%;
}
.mpwem-ticket-modal__mount .mpwem-repeat-row--offdays ._justify_between_align_center_wrap > label:first-child::after {
	content: "Pick weekdays that should always stay unavailable.";
}
.mpwem-ticket-modal__mount .mpwem-repeat-row--offdates .fdColumn .label-text {
	margin-top: 6px;
}
.mpwem-ticket-modal__mount .mpwem-repeat-field-group {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr);
	gap: 12px;
	align-items: center;
}
.mpwem-ticket-modal__mount .mpwem-repeat-field-group > label,
.mpwem-ticket-modal__mount .mpwem-repeat-field-group > .mep_load_every_day {
	width: fit-content;
	max-width: 100%;
}
.mpwem-ticket-modal__mount .mpwem-repeat-field-group .mpwem-date-input-wrap,
.mpwem-ticket-modal__mount .mpwem-repeat-field-group .mep_load_every_day .mpwem-date-input-wrap {
	/* width: 100%; */
	min-width: 0;
}
.mpwem-ticket-modal__mount .mpwem-repeat-field-group > label.mpwem-time-input-wrap {
	width: fit-content;
	max-width: 100%;
}
.mpwem-ticket-modal__mount .mpwem-repeat-field-group .formControl,
.mpwem-ticket-modal__mount .mpwem-repeat-row input[name="mep_repeated_periods"] {
	min-height: 44px;
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box;
}
.mpwem-ticket-modal__mount .mpwem-repeat-row input[name="mep_repeated_periods"] {
	max-width: 80px !important;
	justify-self: end;
}
.mpwem-ticket-modal__mount .mpwem-repeat-row--offdays ._justify_between_align_center_wrap,
.mpwem-ticket-modal__mount .mpwem-repeat-row--offdates .justify_between {
	align-items: start !important;
}
.mpwem-ticket-modal__mount .mpwem-repeat-row--offdays ._justify_between_align_center_wrap {
	grid-template-columns: minmax(0, .5fr) .5fr !important;
	gap: 12px !important;
}
.mpwem-ticket-modal__mount .mpwem-repeat-row--offdays .mpwem-repeat-field-group {
	justify-self: stretch;
	display: grid !important;
	grid-template-columns: repeat(4, auto);
	gap: 8px !important;
}
.mpwem-ticket-modal__mount .mep-special-datetime {
	border: none !important;
	margin-top: 30px;
	padding-top: 20px;
	border-top: 2px dashed #e2e8f0 !important;
}

.mpwem-ticket-modal__mount .mpwem-repeat-times-panel .mpTabs,
.mpwem-ticket-modal__mount .mpwem-repeat-special-panel .mpwem_settings_area {
	margin-top: 0;
}
.mpwem-ticket-modal__mount .mep-special-datetime::before {
	content: "Special Date & Time Settings";
	display: block;
	font-size: 14px;
	font-weight: 800;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 10px 22px;
}
.mpwem-ticket-modal__mount .mpwem-ticket-table-hint {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 2px 8px 20px;
	font-size: 12px;
	font-weight: 600;
	color: #64748b;
}
.mpwem-ticket-modal__mount .mpwem-ticket-table-hint::before {
	content: "\2194";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border-radius: 999px;
	background: #eef2ff;
	color: #4f46e5;
	font-size: 12px;
	line-height: 1;
}
.mpwem-ticket-modal__inline-actions {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 18px;
	clear: both;
	padding: 12px 20px !important;
	border: 1px solid #c7d7ee !important;
	border-radius: 14px !important;
	background:
		radial-gradient(circle at top left, rgba(37, 99, 235, 0.14), transparent 34%),
		linear-gradient(135deg, #ffffff 0%, #f3f8ff 100%) !important;
	color: #0f2747 !important;
	font-weight: 700 !important;
	letter-spacing: 0.01em;
	box-shadow: 0 14px 30px -20px rgba(37, 99, 235, 0.28);
	position: relative;
	overflow: hidden;
}
.mpwem-ticket-modal__inline-actions:hover {
	border-color: #9ebce5 !important;
	background:
		radial-gradient(circle at top left, rgba(37, 99, 235, 0.18), transparent 36%),
		linear-gradient(135deg, #ffffff 0%, #eaf3ff 100%) !important;
	transform: translateY(-1px);
	box-shadow: 0 18px 34px -22px rgba(37, 99, 235, 0.34);
}
.mpwem-ticket-modal__inline-actions .fas,
.mpwem-ticket-modal__inline-actions [class*="fa-"] {
	color: var(--mpwem-primary) !important;
	font-size: 13px;
	width: 18px;
	height: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: rgba(37, 99, 235, 0.12);
}
.mpwem-ticket-modal__mount .mpwem_hidden_content {
	display: none !important;
}
.mpwem-ticket-modal__mount ._justify_between_align_center_wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 0;
}
.mpwem-ticket-modal__mount ._justify_between_align_center_wrap > label {
	margin: 0;
	font-size: 13px;
	font-weight: 700;
	color: #10233f;
}
.mpwem-ticket-modal__mount .label-text {
	display: none;
}
.mpwem-ticket-modal__mount .mpwem-ticket-col-hidden {
	display: none !important;
}
.mpwem-ticket-modal__mount ._ov_auto {
	display: block;
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
	overflow-x: auto;
	overflow-y: visible;
	max-width: 100%;
	max-height: none;
	border: 1px solid #e2e8f0;
	border-radius: 18px;
	background:#f8fafc;
	cursor: grab;
}
.mpwem-ticket-modal__mount ._ov_auto.is-dragging {
	cursor: grabbing;
	user-select: none;
}
.mpwem-ticket-modal__mount .mpwem_ticket_table,
.mpwem-ticket-modal__mount .mpwem-date-table,
.mpwem-ticket-modal__mount .mpwem_extra_service_table {
	width: max-content;
	min-width: 100%;
	border-collapse: separate;
	border-spacing: 0 10px;
	table-layout: auto;
	margin-right: 0;
}
.mpwem-ticket-modal__mount .mpwem_ticket_table thead th,
.mpwem-ticket-modal__mount .mpwem-date-table thead th,
.mpwem-ticket-modal__mount .mpwem_extra_service_table thead th {
	position: sticky;
	top: 0;
	z-index: 2;
	padding: 16px 14px;
	border: 0;
	background: #edf3fb;
	color: #10233f;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-align: left;
	white-space: nowrap;
	box-shadow: inset 0 -1px 0 rgba(148, 163, 184, 0.18);
}
.mpwem-ticket-modal__mount .mpwem_ticket_table thead th:first-child,
.mpwem-ticket-modal__mount .mpwem-date-table thead th:first-child,
.mpwem-ticket-modal__mount .mpwem_extra_service_table thead th:first-child {
	border-top-left-radius: 14px;
}
.mpwem-ticket-modal__mount .mpwem_ticket_table thead th:last-child,
.mpwem-ticket-modal__mount .mpwem-date-table thead th:last-child,
.mpwem-ticket-modal__mount .mpwem_extra_service_table thead th:last-child {
	border-top-right-radius: 14px;
}
.mpwem-ticket-modal__mount .mpwem_ticket_table tbody tr,
.mpwem-ticket-modal__mount .mpwem-date-table tbody tr,
.mpwem-ticket-modal__mount .mpwem_extra_service_table tbody tr {
	box-shadow: 0 12px 28px -26px rgba(15, 23, 42, 0.28);
}
.mpwem-ticket-modal__mount .mpwem_ticket_table tbody td,
.mpwem-ticket-modal__mount .mpwem-date-table tbody td,
.mpwem-ticket-modal__mount .mpwem_extra_service_table tbody td {
	padding: 14px;
	vertical-align: top;
	border-top: 1px solid #e2e8f0;
	border-bottom: 1px solid #e2e8f0;
	background: #fff;
	white-space: nowrap;
}
.mpwem-ticket-modal__mount .mpwem_ticket_table tbody td:first-child,
.mpwem-ticket-modal__mount .mpwem-date-table tbody td:first-child,
.mpwem-ticket-modal__mount .mpwem_extra_service_table tbody td:first-child {
	border-left: 1px solid #e2e8f0;
	border-top-left-radius: 16px;
	border-bottom-left-radius: 16px;
}
.mpwem-ticket-modal__mount .mpwem_ticket_table tbody td:last-child,
.mpwem-ticket-modal__mount .mpwem-date-table tbody td:last-child,
.mpwem-ticket-modal__mount .mpwem_extra_service_table tbody td:last-child {
	border-right: 1px solid #e2e8f0;
	border-top-right-radius: 16px;
	border-bottom-right-radius: 16px;
}

.mpwem-ticket-modal__mount .mpwem_ticket_table label,
.mpwem-ticket-modal__mount .mpwem-date-table label,
.mpwem-ticket-modal__mount .mpwem_extra_service_table label {
	display: block;
}
.mpwem-ticket-modal__mount .mpwem_ticket_table .formControl,
.mpwem-ticket-modal__mount .mpwem-date-table .formControl,
.mpwem-ticket-modal__mount .mpwem_ticket_table .mp_formControl,
.mpwem-ticket-modal__mount .mpwem_extra_service_table .formControl,
.mpwem-ticket-modal__mount .mpwem_extra_service_table .mp_formControl {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	height: 40px;
	padding: 8px 12px;
	border: 1px solid #d7e0ea;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.03);
}
.mpwem-ticket-modal__mount .mpwem_ticket_table .formControl:focus,
.mpwem-ticket-modal__mount .mpwem-date-table .formControl:focus,
.mpwem-ticket-modal__mount .mpwem_ticket_table .mp_formControl:focus,
.mpwem-ticket-modal__mount .mpwem_extra_service_table .formControl:focus,
.mpwem-ticket-modal__mount .mpwem_extra_service_table .mp_formControl:focus {
	border-color: #93c5fd;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.14);
	background: #fff;
}
.mpwem-ticket-modal__mount .mpwem_ticket_table ._dFlex {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 128px;
	gap: 10px;
	align-items: center;
}
.mpwem-ticket-modal__mount .mpwem_ticket_table .buttonGroup,
.mpwem-ticket-modal__mount .mpwem_extra_service_table .buttonGroup {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
}
.mpwem-ticket-modal__mount .mpwem_ticket_table .ticket_name ._flex_wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}
.mpwem-ticket-modal__mount .mpwem_ticket_table .ticket_info {
	margin-top: 8px !important;
}
.mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem_sortable_button,
.mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem_item_remove,
.mpwem-ticket-modal__mount .mpwem-date-table .mpwem_item_remove,
.mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem_show_hide_button,
.mpwem-ticket-modal__mount .mpwem_extra_service_table .mpwem_sortable_button,
.mpwem-ticket-modal__mount .mpwem_extra_service_table .mpwem_item_remove,
.mpwem-ticket-modal__mount .mpwem_extra_service_table .mpwem_show_hide_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	min-height: 34px;
	border-radius: 10px;
}
.mpwem-ticket-modal__mount .mpwem_ticket_table th:nth-child(1),
.mpwem-ticket-modal__mount .mpwem_ticket_table td:nth-child(1) {
	width: 190px;
	min-width: 190px;
}
.mpwem-ticket-modal__mount .mpwem_ticket_table th:nth-child(2),
.mpwem-ticket-modal__mount .mpwem_ticket_table td:nth-child(2) {
	width: 220px;
	min-width: 220px;
}
.mpwem-ticket-modal__mount .mpwem_ticket_table th:nth-child(3),
.mpwem-ticket-modal__mount .mpwem_ticket_table td:nth-child(3),
.mpwem-ticket-modal__mount .mpwem_ticket_table th:nth-child(4),
.mpwem-ticket-modal__mount .mpwem_ticket_table td:nth-child(4),
.mpwem-ticket-modal__mount .mpwem_ticket_table th:nth-child(5),
.mpwem-ticket-modal__mount .mpwem_ticket_table td:nth-child(5),
.mpwem-ticket-modal__mount .mpwem_ticket_table th:nth-child(6),
.mpwem-ticket-modal__mount .mpwem_ticket_table td:nth-child(6) {
	width: 110px;
	min-width: 110px;
}
.mpwem-ticket-modal__mount .mpwem_ticket_table th:nth-child(7),
.mpwem-ticket-modal__mount .mpwem_ticket_table td:nth-child(7) {
	width: 240px;
	min-width: 240px;
}
.mpwem-ticket-modal__mount .mpwem_ticket_table th:nth-child(8),
.mpwem-ticket-modal__mount .mpwem_ticket_table td:nth-child(8) {
	width: 150px;
	min-width: 150px;
}
.mpwem-ticket-modal__mount .mpwem_ticket_table th:last-child,
.mpwem-ticket-modal__mount .mpwem_ticket_table td:last-child {
	width: 110px;
	min-width: 110px;
}
.mpwem-ticket-modal__mount .mpwem_ticket_table td:nth-child(3) .formControl,
.mpwem-ticket-modal__mount .mpwem_ticket_table td:nth-child(4) .formControl,
.mpwem-ticket-modal__mount .mpwem_ticket_table td:nth-child(5) .formControl,
.mpwem-ticket-modal__mount .mpwem_ticket_table td:nth-child(6) .formControl {
	max-width: 100px;
}
.mpwem-ticket-modal__mount .mpwem_ticket_table td:last-child {
	text-align: right;
	padding-right: 16px;
}
.mpwem-ticket-modal__mount .mpwem_extra_service_table th:nth-child(1),
.mpwem-ticket-modal__mount .mpwem_extra_service_table td:nth-child(1) {
	width: 220px;
	min-width: 220px;
}
.mpwem-ticket-modal__mount .mpwem_extra_service_table th:nth-child(2),
.mpwem-ticket-modal__mount .mpwem_extra_service_table td:nth-child(2),
.mpwem-ticket-modal__mount .mpwem_extra_service_table th:nth-child(3),
.mpwem-ticket-modal__mount .mpwem_extra_service_table td:nth-child(3) {
	width: 120px;
	min-width: 120px;
}
.mpwem-ticket-modal__mount .mpwem_extra_service_table th:nth-child(4),
.mpwem-ticket-modal__mount .mpwem_extra_service_table td:nth-child(4) {
	width: 150px;
	min-width: 150px;
}
.mpwem-ticket-modal__mount .mpwem_extra_service_table th:last-child,
.mpwem-ticket-modal__mount .mpwem_extra_service_table td:last-child {
	width: 110px;
	min-width: 110px;
	text-align: right;
	padding-right: 16px;
}
.mpwem-ticket-modal__mount .mpwem_extra_service_table td:nth-child(2) .formControl,
.mpwem-ticket-modal__mount .mpwem_extra_service_table td:nth-child(3) .formControl {
	max-width: 110px;
}
.mpwem-ticket-row-focus {
	animation: mpwemTicketRowFocus 1.8s ease;
}
body.mpwem-ticket-modal-open {
	overflow: hidden;
}
.mpwem-ticket-modal__mount .mpwem-ticket-cards-container {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-top: 0;
}
.mpwem-ticket-modal__mount .mpwem-ticket-action-bar {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
	padding: 10px 22px;
	margin: 0 -24px 24px;
	border-bottom: 1px solid #d7dde8;
	background: linear-gradient(180deg, #f6f8fc 0%, #eef2f7 100%);
}
.mpwem-ticket-modal__mount .mpwem-ticket-action-bar__item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.mpwem-ticket-modal__mount .mpwem-ticket-action-bar__item label {
	margin: 0;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #111827;
}
.mpwem-ticket-modal__mount .mpwem-ticket-action-bar__divider {
	width: 1px;
	height: 28px;
	margin: 0 2px;
	background: #cfd6e3;
}
.mpwem-ticket-modal__mount .mpwem-ticket-global-card {
	margin-bottom: 32px;
	padding: 28px;
	border: 1px solid #edf1f6;
	border-radius: 18px;
	background: linear-gradient(180deg, #ffffff 0%, #fdfefe 100%);
	box-shadow: 0 8px 30px -28px rgba(15, 23, 42, 0.35);
}
.mpwem-ticket-modal__mount .mpwem-ticket-global-card__content {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(220px, 1fr) minmax(220px, 1fr);
	gap: 28px;
	align-items: start;
}
.mpwem-ticket-modal__mount .mpwem-ticket-card {
	padding: 2px 0 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	overflow: visible;
}
.mpwem-ticket-modal__mount .mpwem-ticket-card:first-child {
	padding-top: 0;
}
.mpwem-ticket-modal__mount .mpwem-ticket-card:hover {
	border-color: #dbe4ef;
	box-shadow: none;
}
.mpwem-ticket-modal__mount .mpwem-ticket-card.disable_row {
	opacity: 0.72;
}
.mpwem-ticket-modal__mount .mpwem-ticket-card__main {
	display: grid;
	grid-template-columns: minmax(380px, 2fr) minmax(120px, 1.62fr) minmax(120px, 1.62fr) minmax(128px, 1.72fr) minmax(220px, 1fr) 1fr;
	gap: 16px 18px;
	padding: 10px;
	align-items: center;
	border: 1px solid #d8d8d8;
  	border-radius: 12px;
	background: #fff;
}
.mpwem-ticket-modal__mount .mpwem-ticket-card:nth-child(even) .mpwem-ticket-card__main {
	background: #f7f7f7;
}
.mpwem-ticket-modal__mount .mpwem-ticket-card__group {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
}
.mpwem-ticket-modal__mount .mpwem-ticket-card__identity {
	gap: 2px;
}
.mpwem-ticket-modal__mount .mpwem-ticket-card--compact-identity .mpwem-ticket-card__identity {
	justify-content: flex-end;
	align-self: end;
}
.mpwem-ticket-modal__mount .mpwem-ticket-card__field {
	min-width: 0;
}
.mpwem-ticket-modal__mount .mpwem-ticket-card__locked-name {
	min-height: 48px;
	padding: 11px 14px;
	border: 1px solid #ccd5e1;
	border-radius: 12px;
	background: #fff;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.35;
	color: #111827;
}
.mpwem-ticket-modal__mount .mpwem-card-label {
	margin: 0;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #111827;
}
.mpwem-ticket-modal__mount .mpwem-card-sub-label {
	font-size: 11px;
	line-height: 1.45;
	color: #4b5563;
}
.mpwem-ticket-modal__mount .mpwem-card-input,
.mpwem-ticket-modal__mount .mpwem-card-time-field input.formControl,
.mpwem-ticket-modal__mount .mpwem-card-date-field .formControl,
.mpwem-ticket-modal__mount .mpwem-date-input-wrap input {
	width: 100%;
	min-width: 0;
	height: 42px;
	padding: 10px 12px;
	border: 1px solid #ccd5e1;
	border-radius: 10px;
	background: #fff;
	box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.03);
	font-size: 14px;
	color: #111827;
}
.mpwem-ticket-modal__mount .mpwem-card-input:focus,
.mpwem-ticket-modal__mount .mpwem-card-time-field input.formControl:focus,
.mpwem-ticket-modal__mount .mpwem-card-date-field .formControl:focus,
.mpwem-ticket-modal__mount .mpwem-date-input-wrap input:focus {
	border-color: #94a3b8;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
	outline: none;
}
.mpwem-ticket-modal__mount .mpwem-card-input--large {
	height: 42px;
	font-size: 14px;
	font-weight: 400;
}
.mpwem-ticket-modal__mount .mpwem-card-input--small {
	width: 100%;
	max-width: 100%;
	text-align: left;
}
.mpwem-ticket-modal__mount .mpwem-card-input-wrapper--currency::before {
	left: 14px;
	font-size: 15px;
	color: #374151;
}
.mpwem-ticket-modal__mount .mpwem-card-input-wrapper--currency .mpwem-card-input {
	padding-left: 30px;
}
.mpwem-ticket-modal__mount .mpwem-card-row {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}
.mpwem-ticket-modal__mount .mpwem-card-row--qty {
	position: relative;
}
.mpwem-ticket-modal__mount .mpwem-card-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 68px;
	padding: 4px 8px;
	border-radius: 999px;
	background: #eef4ff;
	color: #1d4ed8;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.04em;
}
.mpwem-ticket-modal__mount .mpwem-card-row--qty:last-child .mpwem-card-tag {
	background: #edf8fb;
	color: #0f7490;
}
.mpwem-ticket-modal__mount .mpwem-ticket-card__qty-box .mpwem-card-input,
.mpwem-ticket-modal__mount .mpwem-ticket-card__default-qty .mpwem-card-input,
.mpwem-ticket-modal__mount .mpwem-ticket-card__advance-qty .mpwem-card-input,
.mpwem-ticket-modal__mount .mpwem-ticket-card__price .mpwem-card-input,
.mpwem-ticket-modal__mount .mpwem-ticket-card__capacity .mpwem-card-input {
	max-width: 120px;
}
.mpwem-ticket-modal__mount .mpwem-ticket-card__sale-period {
	align-self: start;
}
.mpwem-ticket-modal__mount .mpwem-card-date-wrapper {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	width: 100%;
}
.mpwem-ticket-modal__mount .mpwem-card-date-field {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 92px;
	gap: 10px;
	align-items: center;
	width: 100%;
}
.mpwem-ticket-modal__mount .mpwem-card-date-field .mpwem-date-input-wrap {
	width: 100% !important;
	min-width: 0;
}
.mpwem-ticket-modal__mount .mpwem-card-time-field {
	width: 100%;
}
.mpwem-ticket-modal__mount .mpwem-ticket-card__actions {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	padding-top: 24px;
}
.mpwem-ticket-modal__mount .mpwem-ticket-card__action-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: #111827;
}
.mpwem-ticket-modal__mount .mpwem-ticket-card__action-btn:hover {
	background: #f3f4f6;
	color: #111827;
}
.mpwem-ticket-modal__mount .mpwem-ticket-card__action-btn--danger:hover {
	background: #fef2f2;
	color: #dc2626;
}
.mpwem-ticket-modal__mount .mpwem_sortable_button {
	cursor: grab;
	gap: 2px;
}
.mpwem-ticket-modal__mount .mpwem-ticket-footer {
	display: none;
}
.mpwem-ticket-modal__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 28px 28px;
	border-top: 1px solid #d7dde8;
	background: #f8fbff;
}
.mpwem-ticket-modal__footer-start {
	display: flex;
	align-items: center;
	min-width: 0;
}
.mpwem-ticket-modal__footer-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 16px;
	margin-left: auto;
}
.mpwem-ticket-modal__footer-btn.button {
	min-width: 128px;
	height: 52px;
	padding: 0 26px;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 600;
}
.mpwem-ticket-modal__footer-btn.button:not(.button-primary) {
	border-color: #cbd5e1;
	background: #fff;
	color: #334155;
	box-shadow: none;
}
.mpwem-ticket-modal__footer-btn.button:not(.button-primary):hover,
.mpwem-ticket-modal__footer-btn.button:not(.button-primary):focus {
	border-color: #94a3b8;
	background: #f8fafc;
	color: #0f172a;
}
.mpwem-ticket-modal__add.button.button-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #1d4ed8;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
}
.mpwem-ticket-modal__add.button.button-link::before {
	content: "+";
	font-size: 34px;
	line-height: 1;
	font-weight: 300;
}
.mpwem-ticket-modal__save.button-primary {
	min-width: 180px;
	box-shadow: none;
	border-color: var(--mpwem-primary);
	background: var(--mpwem-primary);
	color: #fff;
}
.mpwem-ticket-modal__save.button-primary:hover,
.mpwem-ticket-modal__save.button-primary:focus {
	border-color: var(--mpwem-primary-hover) !important;
	background: var(--mpwem-primary-hover) !important;
	color: #fff !important;
	box-shadow: none !important;
}
.mpwem-ticket-modal__mount .mpwem-ticket-modal__inline-actions {
	display: none !important;
}
@keyframes mpwemTicketRowFocus {
	0% {
		box-shadow: inset 0 0 0 999px rgba(191, 219, 254, 0.9);
	}
	100% {
		box-shadow: inset 0 0 0 999px rgba(191, 219, 254, 0);
	}
}
/* Specifically target and hide the legacy additional sections container */
#mpwem_edit_page_additional {
	display: none !important;
}
@media (max-width: 1200px) {
	.mpwem-ticket-modal__mount .mpwem-ticket-card__main {
		grid-template-columns: minmax(220px, 1.6fr) repeat(3, minmax(110px, 0.68fr)) minmax(200px, 0.92fr) 52px;
	}
}
@media (max-width: 991px) {
	.mpwem-ticket-modal__mount .mpwem-ticket-action-bar,
	.mpwem-ticket-modal__mount .mpwem-ticket-global-card__content,
	.mpwem-ticket-modal__mount .mpwem-ticket-card__main,
	.mpwem-ticket-modal__footer {
		grid-template-columns: 1fr;
	}
	.mpwem-ticket-modal__mount .mpwem-ticket-action-bar {
		flex-wrap: wrap;
		justify-content: flex-start;
		margin-inline: 0;
		padding-inline: 0;
		border-top: 0;
	}
	.mpwem-ticket-modal__mount .mpwem-ticket-global-card__content,
	.mpwem-ticket-modal__mount .mpwem-ticket-card__main {
		display: grid;
	}
	.mpwem-ticket-modal__mount .mpwem-ticket-card__main {
		grid-template-columns: 1fr;
	}
	.mpwem-ticket-modal__mount .mpwem-ticket-card__qty-box .mpwem-card-input,
	.mpwem-ticket-modal__mount .mpwem-ticket-card__default-qty .mpwem-card-input,
	.mpwem-ticket-modal__mount .mpwem-ticket-card__advance-qty .mpwem-card-input,
	.mpwem-ticket-modal__mount .mpwem-ticket-card__price .mpwem-card-input,
	.mpwem-ticket-modal__mount .mpwem-ticket-card__capacity .mpwem-card-input {
		max-width: 100%;
	}
	.mpwem-ticket-modal__mount .mpwem-ticket-card__actions {
		justify-content: flex-start;
		padding-top: 0;
	}
	.mpwem-ticket-modal__footer {
		flex-direction: column;
		align-items: stretch;
	}
	.mpwem-ticket-modal__footer-actions {
		margin-left: 0;
		justify-content: stretch;
	}
	.mpwem-ticket-modal__footer-btn.button,
	.mpwem-ticket-modal__save.button-primary {
		width: 100%;
	}
}
/* Documentation / Sidebar content to the right */
/* Style the event_meta_help_txtx links inside the unified docs card */
.mpwem-docs-card p.event_meta_help_txtx {
	margin-bottom: 12px;
	font-size: 13px;
	line-height: 1.5;
	display: block;
	position: relative;
	padding: 12px 12px 12px 50px;
	background: var(--mpwem-bg);
	border-radius: var(--mpwem-btn-radius);
	border: 1px solid var(--mpwem-border);
	transition: all 0.2s ease;
	color: var(--mpwem-text);
}
.mpwem-docs-card p.event_meta_help_txtx:hover {
	border-color: var(--mpwem-primary);
	box-shadow: 0 2px 4px rgba(37, 99, 235, 0.05);
	background: #ffffff;
}
.mpwem-docs-card p.event_meta_help_txtx:last-child {
	margin-bottom: 0;
}
.mpwem-docs-card p.event_meta_help_txtx a {
	font-weight: 600;
	text-decoration: none;
	color: var(--mpwem-primary);
	display: block;
	margin-top: 6px;
}
.mpwem-docs-card p.event_meta_help_txtx a:hover {
	text-decoration: underline;
}
.mpwem-docs-card p.event_meta_help_txtx span.dashicons {
	position: absolute;
	left: 12px;
	top: 12px;
	color: var(--mpwem-primary);
	background: #eff6ff; /* Soft blue background for the icon */
	border-radius: 50%;
	padding: 6px;
	font-size: 14px;
	width: 14px;
	height: 14px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* Display & Messaging Step */
.mpwem-display-stack {
	display: grid;
	gap: 18px;
	background: #fff;
}
#mpwem_wizard_display .mpwem-event-wizard__sidebar {
	align-self: start;
}
.mpwem-display-sidebar-stack {
	display: grid;
	gap: 18px;
}
.mpwem-display-section {
	overflow: hidden;
	background: #fff;
	border: 1px solid #d9e2ef;
	border-radius: 12px;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
	position: relative;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.mpwem-display-section__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 20px;
	background: linear-gradient(180deg, #fcfdff 0%, #f6f9fc 100%);
	border-bottom: 1px solid #d9e2ef;
	position: relative;
}

.mpwem-display-section__head-main {
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr);
	column-gap: 12px;
	row-gap: 2px;
	align-items: center;
	min-width: 0;
}
.mpwem-display-section__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	grid-row: 1 / span 2;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	border: 1px solid #d9e2ef;
	background: #fff;
	color: #475569;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.mpwem-display-section__badge .dashicons {
	font-size: 17px;
	width: 17px;
	height: 17px;
}
.mpwem-display-section__head h3 {
	margin: 0;
	color: var(--mpwem-text);
	font-size: 15px;
	font-weight: 900;
	line-height: 1.25;
}
.mpwem-display-section__head p {
	grid-column: 2;
	margin: 2px 0 0;
	color: var(--mpwem-muted);
	font-size: 12px;
	line-height: 1.45;
}
.mpwem-display-section__head > .round_switch_label {
	flex: 0 0 auto;
	margin-left: auto;
}
.mpwem-display-toggle-wrap {
	margin-left: auto;
	flex: 0 0 auto;
}
.mpwem-display-section__body {
	background: #fff;
}
.mpwem-display-section.is-collapsed {
	border-color: #d7e0ea;
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
}
.mpwem-display-section.is-collapsed .mpwem-display-section__head {
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.mpwem-display-section.is-expanded {
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}
.mpwem-display-section.is-expanded .mpwem-display-section__head {
	border-bottom-color: rgba(37, 99, 235, 0.12);
}

.mpwem-display-section--template .mpwem-display-section__head {
	background: linear-gradient(180deg, #faf7ff 0%, #f5f0ff 100%);
}
.mpwem-display-section--template .mpwem-display-section__badge {
	border-color: #ddd6fe;
	background: #f3e8ff;
	color: #7c3aed;
}
.mpwem-display-section--faq::before {
	background: #0f766e;
}
.mpwem-display-section--faq .mpwem-display-section__head {
	background: linear-gradient(180deg, #f5fdfa 0%, #ecfdf5 100%);
}
.mpwem-display-section--faq .mpwem-display-section__badge {
	border-color: #b7e4d7;
	background: #e6fffb;
	color: #0f766e;
}
.mpwem-display-section--terms::before {
	background: #b45309;
}
.mpwem-display-section--terms .mpwem-display-section__head {
	background: linear-gradient(180deg, #fffaf2 0%, #fff4e5 100%);
}
.mpwem-display-section--terms .mpwem-display-section__badge {
	border-color: #f3d2a2;
	background: #fff3dd;
	color: #b45309;
}
.mpwem-display-section--attendee-form::before {
	background: #0e7490;
}
.mpwem-display-section--attendee-form .mpwem-display-section__head {
	background: linear-gradient(180deg, #f2fbfd 0%, #eaf8fb 100%);
}
.mpwem-display-section--attendee-form .mpwem-display-section__badge {
	border-color: #a7ddeb;
	background: #e6f8fc;
	color: #0e7490;
}
.mpwem-display-section--waitlist::before {
	background: #ca8a04;
}
.mpwem-display-section--waitlist .mpwem-display-section__head {
	background: linear-gradient(180deg, #fffdf5 0%, #fff7db 100%);
}
.mpwem-display-section--waitlist .mpwem-display-section__head-main {
	grid-template-columns: minmax(0, 1fr);
	row-gap: 6px;
}
.mpwem-display-section--waitlist .mpwem-display-section__head p {
	grid-column: 1;
	margin-top: 0;
}
.mpwem-display-section--waitlist .mpwem-display-section__badge {
	border-color: #f4d58d;
	background: #fff8db;
	color: #a16207;
}
.mpwem-display-section--timeline::before {
	background: #2563eb;
}
.mpwem-display-section--timeline .mpwem-display-section__head {
	background: linear-gradient(180deg, #f6f9ff 0%, #eef4ff 100%);
}
.mpwem-display-section--timeline .mpwem-display-section__badge {
	border-color: #c8d8fb;
	background: #eaf2ff;
	color: #2563eb;
}
.mpwem-display-section--related::before {
	background: #c2410c;
}

.mpwem-display-section--related .mpwem-display-section__badge {
	border-color: #f4c8aa;
	background: #fff1e7;
	color: #c2410c;
}
.mpwem-display-section--email::before {
	background: #7c2d12;
}

.mpwem-display-section--email .mpwem-display-section__badge {
	border-color: #f2d3c1;
	background: #fff4ec;
	color: #9a3412;
}
.mpwem-display-section--email-reminder::before {
	background: #0f766e;
}
.mpwem-display-section--email-reminder .mpwem-display-section__head {
	background: linear-gradient(180deg, #f2fffb 0%, #ebfbf7 100%);
}
.mpwem-display-section--email-reminder .mpwem-display-section__badge {
	border-color: #b9eadf;
	background: #ecfdf5;
	color: #0f766e;
}
.mpwem-display-section--pdf-custom-text::before {
	background: #0f766e;
}
.mpwem-display-section--pdf-custom-text .mpwem-display-section__head {
	background: linear-gradient(180deg, #f3fdf9 0%, #eafaf3 100%);
}
.mpwem-display-section--pdf-custom-text .mpwem-display-section__badge {
	border-color: #b7e4d7;
	background: #e7fbf2;
	color: #0f766e;
}
.mpwem-display-section--seo::before {
	background: #4338ca;
}
.mpwem-display-section--seo .mpwem-display-section__head {
	background: linear-gradient(180deg, #f8f8ff 0%, #f1f3ff 100%);
}
.mpwem-display-section--seo .mpwem-display-section__badge {
	background: #f0fdf4;
	color: #16a34a;
}
.mpwem-display-section--settings::before {
	background: #475569;
}
.mpwem-display-section--settings .mpwem-display-section__head {
	background: #f8fafc;
}
.mpwem-display-section--settings .mpwem-display-section__badge {
	background: #f1f5f9;
	color: #475569;
}
.mpwem-display-section > .mp_tab_item,
.mpwem-display-section > .mp_tab_item > ._layout_default_xs_mp_zero {
	margin: 0 !important;
	padding: 0 !important;
	background: #fff !important;
	border: 0 !important;
	box-shadow: none !important;
}
.mpwem-display-section .mp_tab_item > h3,
.mpwem-display-section .mp_tab_item > p,
.mpwem-display-section .mp_tab_item > section.bg-light,
.mpwem-display-section ._bg_light_padding_bB {
	display: none !important;
}
.mpwem-display-section ._padding_bt,
.mpwem-display-section ._padding_bB,
.mpwem-display-section .mp_tab_item > section:not(.bg-light) {
	padding: 0 !important;
	border-bottom: 1px solid #eef2f7 !important;
	background: #fff !important;
}
.mpwem-display-section ._padding_bt:last-child,
.mpwem-display-section ._padding_bB:last-child,
.mpwem-display-section .mp_tab_item > section:last-child {
	border-bottom: 0 !important;
}
.mpwem-display-section ._justify_between_align_center_wrap,
.mpwem-display-section .justify_between,
.mpwem-display-section .mpev-label {
	display: grid !important;
	grid-template-columns: minmax(180px, 1fr) minmax(240px, 360px);
	gap: 18px;
	align-items: center;
	margin: 0 !important;
}
.mpwem-display-section ._mr,
.mpwem-display-section label > span:first-child,
.mpwem-display-section .mpev-label h2 {
	margin: 0 !important;
	color: var(--mpwem-text) !important;
	font-size: 13px !important;
	font-weight: 800 !important;
	line-height: 1.35;
}
.mpwem-display-section .label-text,
.mpwem-display-section .mpev-label .label-text {
	display: block;
	margin-top: 7px;
	color: var(--mpwem-muted) !important;
	font-size: 12px !important;
	line-height: 1.45;
}
.mpwem-display-section input[type="text"],
.mpwem-display-section select,
.mpwem-display-section textarea,
.mpwem-display-section .formControl,
.mpwem-display-section .regular-text,
.mpwem-display-section .mp_formControl {
	width: 100% !important;
	max-width: 100% !important;
	min-height: 42px;
	padding: 8px 12px !important;
	border: 1px solid #d9e2ef !important;
	border-radius: 10px !important;
	background: #fff !important;
	color: var(--mpwem-text) !important;
	font-size: 13px !important;
	box-shadow: none !important;
	box-sizing: border-box;
}
.mpwem-display-section textarea {
	min-height: 112px;
	resize: vertical;
}
.mpwem-display-section input[type="text"]:focus,
.mpwem-display-section select:focus,
.mpwem-display-section textarea:focus,
.mpwem-display-section .formControl:focus,
.mpwem-display-section .regular-text:focus,
.mpwem-display-section .mp_formControl:focus {
	border-color: var(--mpwem-primary) !important;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12) !important;
	outline: none !important;
}
.mpwem-display-section .button,
.mpwem-display-section .faq-item-header button,
.mpwem-display-section #add-faq-item {
	border-radius: 9px !important;
	font-size: 13px !important;
	font-weight: 700 !important;
}
.mpwem-display-section--attendee-form .mpwem-display-section__body,
.mpwem-display-section--email .mpwem-display-section__body,
.mpwem-display-section--email-reminder .mpwem-display-section__body,
.mpwem-display-section--pdf-custom-text .mpwem-display-section__body,
.mpwem-display-section--seo .mpwem-display-section__body,
.mpwem-display-section--settings .mpwem-display-section__body {
	padding: 18px;
	background:
		radial-gradient(circle at top right, rgba(148, 163, 184, 0.09), transparent 32%),
		linear-gradient(180deg, #fbfdff 0%, #f8fbfe 100%);
}
.mpwem-display-section--attendee-form .mp_tab_item,
.mpwem-display-section--email .mp_tab_item,
.mpwem-display-section--email-reminder .mp_tab_item,
.mpwem-display-section--pdf-custom-text .mp_tab_item,
.mpwem-display-section--seo .mp_tab_item,
.mpwem-display-section--settings .mp_tab_item,
.mpwem-display-section--attendee-form .mp_tab_item > ._layout_default_xs_mp_zero,
.mpwem-display-section--email .mp_tab_item > ._layout_default_xs_mp_zero,
.mpwem-display-section--email-reminder .mp_tab_item > ._layout_default_xs_mp_zero,
.mpwem-display-section--pdf-custom-text .mp_tab_item > ._layout_default_xs_mp_zero,
.mpwem-display-section--seo .mp_tab_item > ._layout_default_xs_mp_zero,
.mpwem-display-section--settings .mp_tab_item > ._layout_default_xs_mp_zero {
	display: grid;
	gap: 14px;
	background: transparent !important;
}
.mpwem-display-section--attendee-form ._padding_bt,
.mpwem-display-section--attendee-form ._padding_bB,
.mpwem-display-section--attendee-form .mp_tab_item > section:not(.bg-light),
.mpwem-display-section--email ._padding_bt,
.mpwem-display-section--email ._padding_bB,
.mpwem-display-section--email .mp_tab_item > section:not(.bg-light),
.mpwem-display-section--email-reminder ._padding_bt,
.mpwem-display-section--email-reminder ._padding_bB,
.mpwem-display-section--email-reminder .mp_tab_item > section:not(.bg-light),
.mpwem-display-section--pdf-custom-text ._padding_bt,
.mpwem-display-section--pdf-custom-text ._padding_bB,
.mpwem-display-section--pdf-custom-text .mp_tab_item > section:not(.bg-light),
.mpwem-display-section--seo ._padding_bt,
.mpwem-display-section--seo ._padding_bB,
.mpwem-display-section--seo .mp_tab_item > section:not(.bg-light),
.mpwem-display-section--settings ._padding_bt,
.mpwem-display-section--settings ._padding_bB,
.mpwem-display-section--settings .mp_tab_item > section:not(.bg-light) {
	padding: 16px 18px !important;
	background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
	border: 1px solid #dbe4ef !important;
	border-radius: 14px !important;
	box-shadow:
		0 10px 22px rgba(15, 23, 42, 0.04),
		0 1px 2px rgba(15, 23, 42, 0.03);
}
.mpwem-display-section--attendee-form ._padding_bt + ._padding_bt,
.mpwem-display-section--attendee-form ._padding_bt + ._padding_bB,
.mpwem-display-section--attendee-form ._padding_bB + ._padding_bt,
.mpwem-display-section--attendee-form ._padding_bB + ._padding_bB,
.mpwem-display-section--attendee-form .mp_tab_item > section:not(.bg-light) + section:not(.bg-light),
.mpwem-display-section--email ._padding_bt + ._padding_bt,
.mpwem-display-section--email ._padding_bt + ._padding_bB,
.mpwem-display-section--email ._padding_bB + ._padding_bt,
.mpwem-display-section--email ._padding_bB + ._padding_bB,
.mpwem-display-section--email .mp_tab_item > section:not(.bg-light) + section:not(.bg-light),
.mpwem-display-section--email-reminder ._padding_bt + ._padding_bt,
.mpwem-display-section--email-reminder ._padding_bt + ._padding_bB,
.mpwem-display-section--email-reminder ._padding_bB + ._padding_bt,
.mpwem-display-section--email-reminder ._padding_bB + ._padding_bB,
.mpwem-display-section--email-reminder .mp_tab_item > section:not(.bg-light) + section:not(.bg-light),
.mpwem-display-section--pdf-custom-text ._padding_bt + ._padding_bt,
.mpwem-display-section--pdf-custom-text ._padding_bt + ._padding_bB,
.mpwem-display-section--pdf-custom-text ._padding_bB + ._padding_bt,
.mpwem-display-section--pdf-custom-text ._padding_bB + ._padding_bB,
.mpwem-display-section--pdf-custom-text .mp_tab_item > section:not(.bg-light) + section:not(.bg-light),
.mpwem-display-section--seo ._padding_bt + ._padding_bt,
.mpwem-display-section--seo ._padding_bt + ._padding_bB,
.mpwem-display-section--seo ._padding_bB + ._padding_bt,
.mpwem-display-section--seo ._padding_bB + ._padding_bB,
.mpwem-display-section--seo .mp_tab_item > section:not(.bg-light) + section:not(.bg-light),
.mpwem-display-section--settings ._padding_bt + ._padding_bt,
.mpwem-display-section--settings ._padding_bt + ._padding_bB,
.mpwem-display-section--settings ._padding_bB + ._padding_bt,
.mpwem-display-section--settings ._padding_bB + ._padding_bB,
.mpwem-display-section--settings .mp_tab_item > section:not(.bg-light) + section:not(.bg-light) {
	margin-top: 0 !important;
}
.mpwem-display-section--attendee-form ._justify_between_align_center_wrap,
.mpwem-display-section--attendee-form .justify_between,
.mpwem-display-section--attendee-form .mpev-label,
.mpwem-display-section--email ._justify_between_align_center_wrap,
.mpwem-display-section--email .justify_between,
.mpwem-display-section--email .mpev-label,
.mpwem-display-section--email-reminder ._justify_between_align_center_wrap,
.mpwem-display-section--email-reminder .justify_between,
.mpwem-display-section--email-reminder .mpev-label,
.mpwem-display-section--pdf-custom-text ._justify_between_align_center_wrap,
.mpwem-display-section--pdf-custom-text .justify_between,
.mpwem-display-section--pdf-custom-text .mpev-label,
.mpwem-display-section--seo ._justify_between_align_center_wrap,
.mpwem-display-section--seo .justify_between,
.mpwem-display-section--seo .mpev-label,
.mpwem-display-section--settings ._justify_between_align_center_wrap,
.mpwem-display-section--settings .justify_between,
.mpwem-display-section--settings .mpev-label {
	grid-template-columns: minmax(200px, 1.1fr) minmax(260px, 1fr);
	gap: 20px;
	align-items: start;
}
.mpwem-display-section--attendee-form ._mr,
.mpwem-display-section--attendee-form label > span:first-child,
.mpwem-display-section--attendee-form .mpev-label h2,
.mpwem-display-section--email ._mr,
.mpwem-display-section--email label > span:first-child,
.mpwem-display-section--email .mpev-label h2,
.mpwem-display-section--email-reminder ._mr,
.mpwem-display-section--email-reminder label > span:first-child,
.mpwem-display-section--email-reminder .mpev-label h2,
.mpwem-display-section--pdf-custom-text ._mr,
.mpwem-display-section--pdf-custom-text label > span:first-child,
.mpwem-display-section--pdf-custom-text .mpev-label h2,
.mpwem-display-section--seo ._mr,
.mpwem-display-section--seo label > span:first-child,
.mpwem-display-section--seo .mpev-label h2,
.mpwem-display-section--settings ._mr,
.mpwem-display-section--settings label > span:first-child,
.mpwem-display-section--settings .mpev-label h2 {
	font-size: 13px !important;
	font-weight: 800 !important;
	letter-spacing: -0.01em;
}
.mpwem-display-section--attendee-form .label-text,
.mpwem-display-section--attendee-form .mpev-label .label-text,
.mpwem-display-section--email .label-text,
.mpwem-display-section--email-reminder .label-text,
.mpwem-display-section--email .mpev-label .label-text,
.mpwem-display-section--email-reminder .mpev-label .label-text,
.mpwem-display-section--pdf-custom-text .label-text,
.mpwem-display-section--pdf-custom-text .mpev-label .label-text,
.mpwem-display-section--seo .label-text,
.mpwem-display-section--seo .mpev-label .label-text,
.mpwem-display-section--settings .label-text,
.mpwem-display-section--settings .mpev-label .label-text {
	margin-top: 6px;
	color: #64748b !important;
	font-size: 11.5px !important;
	line-height: 1.55;
	max-width: 34ch;
}
.mpwem-display-section--attendee-form input[type="text"],
.mpwem-display-section--attendee-form select,
.mpwem-display-section--attendee-form textarea,
.mpwem-display-section--attendee-form .formControl,
.mpwem-display-section--attendee-form .regular-text,
.mpwem-display-section--attendee-form .mp_formControl,
.mpwem-display-section--email input[type="text"],
.mpwem-display-section--email select,
.mpwem-display-section--email textarea,
.mpwem-display-section--email .formControl,
.mpwem-display-section--email .regular-text,
.mpwem-display-section--email .mp_formControl,
.mpwem-display-section--pdf-custom-text input[type="text"],
.mpwem-display-section--pdf-custom-text select,
.mpwem-display-section--pdf-custom-text textarea,
.mpwem-display-section--pdf-custom-text .formControl,
.mpwem-display-section--pdf-custom-text .regular-text,
.mpwem-display-section--pdf-custom-text .mp_formControl,
.mpwem-display-section--seo input[type="text"],
.mpwem-display-section--seo select,
.mpwem-display-section--seo textarea,
.mpwem-display-section--seo .formControl,
.mpwem-display-section--seo .regular-text,
.mpwem-display-section--seo .mp_formControl,
.mpwem-display-section--settings input[type="text"],
.mpwem-display-section--settings select,
.mpwem-display-section--settings textarea,
.mpwem-display-section--settings .formControl,
.mpwem-display-section--settings .regular-text,
.mpwem-display-section--settings .mp_formControl {
	border-color: #d5dfeb !important;
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
	box-shadow:
		inset 0 1px 2px rgba(15, 23, 42, 0.03),
		0 1px 0 rgba(255, 255, 255, 0.9) !important;
}
.mpwem-display-section--attendee-form textarea,
.mpwem-display-section--email textarea,
.mpwem-display-section--pdf-custom-text textarea,
.mpwem-display-section--seo textarea,
.mpwem-display-section--settings textarea {
	min-height: 132px;
	line-height: 1.6;
}
.mpwem-display-section--attendee-form #mp_event_custom_form_table + .button,
.mpwem-display-section--attendee-form #mp_event_custom_form_table + button,
.mpwem-display-section--attendee-form #mp_event_custom_form_table ~ .button,
.mpwem-display-section--attendee-form #mp_event_custom_form_table ~ button,
.mpwem-display-section--attendee-form table + .button,
.mpwem-display-section--attendee-form table + button,
.mpwem-display-section--attendee-form table ~ .button,
.mpwem-display-section--attendee-form table ~ button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 42px;
	padding: 0 16px !important;
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
	border: 1px solid #cfdced !important;
	border-radius: 12px !important;
	color: #1e3a5f !important;
	font-size: 13px !important;
	font-weight: 800 !important;
	letter-spacing: -0.01em;
	box-shadow:
		0 10px 20px rgba(15, 23, 42, 0.06),
		inset 0 1px 0 rgba(255, 255, 255, 0.92);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.mpwem-display-section--attendee-form #mp_event_custom_form_table + .button::before,
.mpwem-display-section--attendee-form #mp_event_custom_form_table + button::before,
.mpwem-display-section--attendee-form #mp_event_custom_form_table ~ .button::before,
.mpwem-display-section--attendee-form #mp_event_custom_form_table ~ button::before,
.mpwem-display-section--attendee-form table + .button::before,
.mpwem-display-section--attendee-form table + button::before,
.mpwem-display-section--attendee-form table ~ .button::before,
.mpwem-display-section--attendee-form table ~ button::before {
	content: "\f502";
	display: inline-grid;
	place-items: center;
	width: 22px;
	height: 22px;
	border-radius: 999px;
	background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
	color: var(--mpwem-primary);
	font-family: dashicons;
	font-size: 14px;
	line-height: 1;
}
.mpwem-display-section--attendee-form #mp_event_custom_form_table + .button:hover,
.mpwem-display-section--attendee-form #mp_event_custom_form_table + button:hover,
.mpwem-display-section--attendee-form #mp_event_custom_form_table ~ .button:hover,
.mpwem-display-section--attendee-form #mp_event_custom_form_table ~ button:hover,
.mpwem-display-section--attendee-form table + .button:hover,
.mpwem-display-section--attendee-form table + button:hover,
.mpwem-display-section--attendee-form table ~ .button:hover,
.mpwem-display-section--attendee-form table ~ button:hover {
	transform: translateY(-1px);
	border-color: #b9cceb !important;
	background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%) !important;
	box-shadow:
		0 14px 28px rgba(37, 99, 235, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.96);
	color: #1d4ed8 !important;
}
.mpwem-display-section--attendee-form #mp_event_custom_form_table + .button:focus,
.mpwem-display-section--attendee-form #mp_event_custom_form_table + button:focus,
.mpwem-display-section--attendee-form #mp_event_custom_form_table ~ .button:focus,
.mpwem-display-section--attendee-form #mp_event_custom_form_table ~ button:focus,
.mpwem-display-section--attendee-form table + .button:focus,
.mpwem-display-section--attendee-form table + button:focus,
.mpwem-display-section--attendee-form table ~ .button:focus,
.mpwem-display-section--attendee-form table ~ button:focus {
	outline: none !important;
	box-shadow:
		0 0 0 3px rgba(37, 99, 235, 0.14),
		0 12px 24px rgba(15, 23, 42, 0.08) !important;
}
.mpwem-display-section--attendee-form .button,
.mpwem-display-section--attendee-form button,
.mpwem-display-section--email .button,
.mpwem-display-section--email button,
.mpwem-display-section--pdf-custom-text .button,
.mpwem-display-section--pdf-custom-text button,
.mpwem-display-section--seo .button,
.mpwem-display-section--seo button,
.mpwem-display-section--settings .button,
.mpwem-display-section--settings button {
	min-height: 36px;
	padding: 0 14px !important;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}
.mpwem-display-section--attendee-form .button:not(.button-primary),
.mpwem-display-section--attendee-form button:not(.button-primary),
.mpwem-display-section--email .button:not(.button-primary),
.mpwem-display-section--email button:not(.button-primary),
.mpwem-display-section--pdf-custom-text .button:not(.button-primary),
.mpwem-display-section--pdf-custom-text button:not(.button-primary),
.mpwem-display-section--seo .button:not(.button-primary),
.mpwem-display-section--seo button:not(.button-primary),
.mpwem-display-section--settings .button:not(.button-primary),
.mpwem-display-section--settings button:not(.button-primary) {
	background: #fff !important;
	border-color: #cfd9e5 !important;
	color: #334155 !important;
}
.mpwem-display-section--attendee-form .button:hover,
.mpwem-display-section--attendee-form button:hover,
.mpwem-display-section--email .button:hover,
.mpwem-display-section--email button:hover,
.mpwem-display-section--pdf-custom-text .button:hover,
.mpwem-display-section--pdf-custom-text button:hover,
.mpwem-display-section--seo .button:hover,
.mpwem-display-section--seo button:hover,
.mpwem-display-section--settings .button:hover,
.mpwem-display-section--settings button:hover {
	transform: translateY(-1px);
}
.mpwem-display-section--faq .mpwem_faq_area_new {
	display: grid;
	gap: 8px;
}
.mpwem-display-section--faq ._padding_bt {
	padding: 12px 18px !important;
}
.mpwem-display-section--terms ._padding_bt,
.mpwem-display-section--terms ._padding_bB,
.mpwem-display-section--terms .mp_tab_item > section:not(.bg-light) {
	padding: 12px 18px !important;
}
.mpwem-display-section--faq .mpwem-faq-toggle-row {
	display: none !important;
}
.mpwem-display-section--terms .mpwem-terms-toggle-row {
	display: none !important;
}
.mpwem-display-section--terms ._padding_bt:has(.round_switch_label, .mpev-switch, .mpwem-switch-wrap),
.mpwem-display-section--terms ._padding_bB:has(.round_switch_label, .mpev-switch, .mpwem-switch-wrap) {
	display: none !important;
}
.timeline-item-header,
.faq-item-header {
	margin-bottom: 0;
}
.mpwem-display-section--terms .mp_tab_item > ._layout_default_xs_mp_zero {
	padding: 0 !important;
}
.mpwem-display-section--terms [data-collapse] {
	padding: 16px 18px 20px !important;
	background:
		radial-gradient(circle at top right, rgba(245, 158, 11, 0.08), transparent 34%),
		linear-gradient(180deg, #fffdf8 0%, #fff 100%);
}
.mpwem-display-section--terms .mpwem-terms-list {
	counter-increment: mpwem-terms-item;
	counter-reset: mpwem-terms-item;
	display: grid;
	gap: 14px;
}
.mpwem-display-section--terms .mpwem-terms-item {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
	border: 1px solid #d6e0eb;
	border-radius: 16px;
	box-shadow:
		0 14px 28px rgba(15, 23, 42, 0.05),
		0 2px 6px rgba(15, 23, 42, 0.03);
}
.mpwem-display-section--terms .mpwem-terms-item::before {
	counter-increment: mpwem-terms-item;
	content: "Term " counter(mpwem-terms-item);
	position: absolute;
	top: 12px;
	left: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 24px;
	padding: 0 10px;
	background: linear-gradient(180deg, #fff8eb 0%, #ffefcf 100%);
	border: 1px solid #f1d29a;
	border-radius: 999px;
	color: #b45309;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	z-index: 2;
}
.mpwem-display-section--terms .mpwem-terms-item__head {
	padding: 44px 14px 0;
}
.mpwem-display-section--terms .mpwem-terms-item__head .justify_between,
.mpwem-display-section--terms .mpwem-terms-item__head ._justify_between_align_center_wrap {
	grid-template-columns: minmax(0, 1fr) auto !important;
	gap: 12px;
	align-items: center;
	margin: 0 !important;
	padding: 14px 0 12px;
	background: transparent;
	border-bottom: 1px solid #e7eef6;
}
.mpwem-display-section--terms .mpwem-terms-item__head .justify_between > :first-child,
.mpwem-display-section--terms .mpwem-terms-item__head ._justify_between_align_center_wrap > :first-child {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}
.mpwem-display-section--terms .mpwem-terms-item__head .justify_between > :first-child::before,
.mpwem-display-section--terms .mpwem-terms-item__head ._justify_between_align_center_wrap > :first-child::before {
	content: "\f534";
	display: inline-grid;
	place-items: center;
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	background: #fff7ed;
	border: 1px solid #fed7aa;
	border-radius: 9px;
	color: #c2410c;
	font-family: dashicons;
	font-size: 14px;
	line-height: 1;
}
.mpwem-display-section--terms .mpwem-terms-item__content {
	padding: 8px 14px 14px;
}
.mpwem-display-section--terms [data-collapse] > ._padding_bt p,
.mpwem-display-section--terms [data-collapse] > ._padding_bB p,
.mpwem-display-section--terms [data-collapse] > section p {
	margin: 0;
}
.mpwem-display-section--terms .mpwem-terms-item__content > * {
	padding: 10px 0;
}
.mpwem-display-section--terms .mpwem-terms-item__content > * + * {
	border-top: 1px solid #eef3f8;
}
.mpwem-display-section--terms .mpwem-terms-item__content > p:first-child,
.mpwem-display-section--terms .mpwem-terms-item__content > div:first-child {
	padding-top: 0;
}
.mpwem-display-section--terms .mpwem-terms-item__content > p:last-child,
.mpwem-display-section--terms .mpwem-terms-item__content > div:last-child {
	padding-bottom: 0;
}
.mpwem-display-section--terms [data-collapse] .buttonGroup {
	display: inline-flex !important;
	gap: 6px;
	width: auto !important;
	max-width: none !important;
}
.mpwem-display-section--terms [data-collapse] .button,
.mpwem-display-section--terms [data-collapse] button {
	min-height: 32px !important;
	padding: 0 12px !important;
	border-radius: 10px !important;
	font-size: 12px !important;
	font-weight: 700 !important;
}
.mpwem-display-section--terms [data-collapse] .button:not(.button-primary),
.mpwem-display-section--terms [data-collapse] button:not(.button-primary) {
	background: #fff !important;
	border-color: #cbd5e1 !important;
	color: #475569 !important;
}
.mpwem-display-section--terms [data-collapse] .button-primary,
.mpwem-display-section--terms [data-collapse] button.button-primary {
	border-color: #d97706 !important;
	background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%) !important;
	box-shadow: 0 8px 18px rgba(217, 119, 6, 0.18);
}
.mpwem-display-section--terms [data-collapse] .button:hover,
.mpwem-display-section--terms [data-collapse] button:hover {
	transform: translateY(-1px);
}
.mpwem-display-section--terms [data-collapse] input[type="text"],
.mpwem-display-section--terms [data-collapse] textarea,
.mpwem-display-section--terms [data-collapse] select,
.mpwem-display-section--terms [data-collapse] .regular-text,
.mpwem-display-section--terms [data-collapse] .formControl,
.mpwem-display-section--terms [data-collapse] .mp_formControl {
	border-color: #d6e0eb !important;
	background: #fff !important;
	box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.03) !important;
}
.mpwem-display-section--terms textarea {
	min-height: 120px;
	line-height: 1.55;
}
.mpwem-display-section--terms .label-text,
.mpwem-display-section--terms .mpev-label .label-text {
	margin-top: 5px;
	color: #64748b !important;
	font-size: 11px !important;
	line-height: 1.45;
}
.mpwem-display-section--terms .mpwem-terms-item__head a,
.mpwem-display-section--terms .mpwem-terms-item__head button,
.mpwem-display-section--terms .mpwem-terms-item__head .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 30px;
	min-height: 30px;
}
.mpwem-display-section--terms .mep-term-section {
	display: grid;
	gap: 14px;
	padding: 16px 18px 18px !important;
	background:
		linear-gradient(180deg, rgba(248, 250, 252, 0.8) 0%, #fff 100%),
		#fff !important;
}
.mpwem-display-section--terms .mep-term-items {
	display: grid;
	gap: 12px;
	margin: 0 !important;
}
.mpwem-display-section--terms .mep-term-item {
	overflow: hidden;
	margin: 0 !important;
	padding: 0 !important;
	background: #fff !important;
	border: 1px solid #d9e2ef;
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.mep_conditional_area {
	display: flex;
	gap: 10px;
	margin-bottom: 15px;
	justify-content: space-between;
}
.mpwem-display-section--terms .mep-term-item:hover {
	border-color: #bfd1ef;
	box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
	transform: translateY(-1px);
}
.mpwem-display-section--terms .mep-term-header {
	position: relative !important;
	z-index: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	background: #fff !important;
	border-bottom: 1px solid #e5edf6;
	font-weight: 700 !important;
}
.mpwem-display-section--terms .mep-term-header .mpev-label {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	min-height: 48px;
	margin: 0 !important;
	padding: 10px 12px !important;
}
.mpwem-display-section--terms .mep-term-header .mpev-label > p {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	margin: 0 !important;
	color: var(--mpwem-text);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
}
.mpwem-display-section--terms .mep-term-header .mpev-label > p::before {
	content: "\f481";
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	background: #fff7ed;
	border: 1px solid #fed7aa;
	border-radius: 8px;
	color: #c2410c;
	font-family: dashicons;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
}
.mpwem-display-section--terms .mep-term-action {
	position: static !important;
	display: inline-flex;
	gap: 6px;
	align-items: center;
	justify-content: flex-end;
	transform: none !important;
	z-index: auto !important;
}
.mpwem-display-section--terms .mep-term-action span {
	display: inline-grid;
	place-items: center;
	width: 30px;
	height: 30px;
	padding: 0 !important;
	background: #f8fafc !important;
	border: 1px solid #d9e2ef;
	border-radius: 8px !important;
	color: #475569 !important;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.mpwem-display-section--terms .mep-term-action span:hover {
	background: #eaf2ff !important;
	border-color: #bfd1ef;
	color: var(--mpwem-primary) !important;
	transform: translateY(-1px);
}
.mpwem-display-section--terms .mep-term-action .mep-term-item-delete:hover,
.mpwem-display-section--terms .mep-term-action span:has(.fa-trash):hover {
	background: #fff1f2 !important;
	border-color: #fecdd3;
	color: #be123c !important;
}
.mpwem-display-section--terms .mep-term-content {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin: 0 !important;
	padding: 12px !important;
	background: #f8fafc !important;
	border: 0 !important;
}
.mpwem-display-section--terms .mep-term-content p {
	display: flex;
	align-items: center;
	gap: 7px;
	min-height: 42px;
	margin: 0 !important;
	padding: 0px 11px;
	background: #fff;
	border: 1px solid #e1e8f0;
	border-radius: 10px;
	color: #64748b;
	font-size: 12px;
	line-height: 1.35;
}
.mpwem-display-section--terms .mep-term-required {
	display: inline-flex;
	align-items: center;
	min-height: 22px;
	padding: 0 8px;
	background: #f1f5f9;
	border: 1px solid #d9e2ef;
	border-radius: 999px;
	color: #334155;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}
.mpwem-display-section--terms .mep-term-url {
	overflow: hidden;
	color: var(--mpwem-primary) !important;
	font-weight: 700;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.mpwem-display-section--terms .mep-term-item-new {
	justify-self: start;
	min-height: 38px !important;
	margin: 10px 0 !important;
	padding: 0 14px !important;
	background: #fff !important;
	border: 1px solid #cbd5e1 !important;
	border-radius: 9px !important;
	color: var(--mpwem-primary) !important;
	font-size: 13px !important;
	font-weight: 800 !important;
	box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
}
.mpwem-display-section--terms .mep-term-item-new:hover {
	background: #eaf2ff !important;
	border-color: #bfd1ef !important;
	color: #1d4ed8 !important;
}
.mpwem-display-section--attendee-form > .mp_tab_item,
.mpwem-display-section--attendee-form > .mp_tab_item > .mpwem_style,
.mpwem-display-section--attendee-form #mp_event_all_info_in_tab {
	margin: 0 !important;
	padding: 0 !important;
	background: #fff !important;
	border: 0 !important;
	box-shadow: none !important;
}
.mpwem-display-section--attendee-form .mep_fb_global_reg_form_list {
	padding: 16px 18px !important;
	background:
		linear-gradient(180deg, rgba(240, 249, 255, 0.78) 0%, #fff 100%),
		#fff !important;
	border-bottom: 1px solid #e5edf6 !important;
}
.mpwem-display-section--attendee-form .mep_fb_global_reg_form_list .mpev-label {
	grid-template-columns: minmax(180px, 260px) minmax(260px, 1fr) !important;
	align-items: center;
	gap: 16px;
	padding: 10px 18px;
}
.mpwem-display-section--attendee-form #mp_event_all_info_in_tab {
	padding: 16px 18px 18px !important;
	border-radius: var(--mpwem-radius);
}
.mpwem-display-section--attendee-form .event_meta_help_txt {
	margin: 0 !important;
	padding: 12px 14px !important;
	background: #f0f9ff;
	border: 1px solid #bae6fd;
	border-radius: 10px;
	color: #075985 !important;
	font-size: 12px !important;
	font-weight: 700;
	line-height: 1.45;
}
.mpwem-display-section--attendee-form .mp_form_builder_table {
	width: 100% !important;
	margin: 0 !important;
	border: 0 !important;
	border-collapse: separate !important;
	border-spacing: 0 10px !important;
	background: transparent !important;
	table-layout: fixed;
}
.mpwem-display-section--attendee-form .mp_form_builder_table tr {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
}
.mpwem-display-section--attendee-form .mp_form_builder_table th,
.mpwem-display-section--attendee-form .mp_form_builder_table td {
	padding: 12px !important;
	background: #fff !important;
	border-top: 1px solid #e1e8f0 !important;
	border-bottom: 1px solid #e1e8f0 !important;
	color: var(--mpwem-text);
	vertical-align: top !important;
}
.mpwem-display-section--attendee-form .mp_form_builder_table td:first-child,
.mpwem-display-section--attendee-form .mp_form_builder_table th:first-child {
	border-left: 1px solid #e1e8f0 !important;
	border-radius: 12px 0 0 12px;
}
.mpwem-display-section--attendee-form .mp_form_builder_table td:last-child,
.mpwem-display-section--attendee-form .mp_form_builder_table th:last-child {
	border-right: 1px solid #e1e8f0 !important;
	border-radius: 0 12px 12px 0;
}
.mpwem-display-section--attendee-form .mp_form_builder_table label {
	display: grid;
	gap: 7px;
	margin: 0 !important;
	color: var(--mpwem-text);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
}
.mpwem-display-section--attendee-form .mp_form_builder_table label:has(input[type="checkbox"]) {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 42px;
	padding: 9px 10px;
	background: #f8fafc;
	border: 1px solid #d9e2ef;
	border-radius: 10px;
}
.mpwem-display-section--attendee-form input[type="checkbox"] {
	width: 17px !important;
	height: 17px !important;
	min-width: 17px;
	margin: 0 !important;
	border-color: #94a3b8 !important;
	border-radius: 5px !important;
	box-shadow: none !important;
}
.mpwem-display-section--attendee-form input[type="checkbox"]:checked {
	background-color: var(--mpwem-primary) !important;
	border-color: var(--mpwem-primary) !important;
}
.mpwem-display-section--attendee-form .mp_formControl,
.mpwem-display-section--attendee-form input[type="text"],
.mpwem-display-section--attendee-form select {
	min-height: 40px !important;
	padding: 8px 11px !important;
	background: #fff !important;
	border: 1px solid #d6e0eb !important;
	border-radius: 10px !important;
	box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.03) !important;
	color: var(--mpwem-text) !important;
	font-size: 13px !important;
}
.mpwem-display-section--attendee-form .conditional_form_area {
	margin-top: 14px !important;
	padding: 14px !important;
	background: #f8fafc !important;
	border: 1px solid #d9e2ef !important;
	border-radius: 12px;
}
.mpwem-display-section--attendee-form .conditional_form_area h3,
.mpwem-display-section--attendee-form .conditional_form_area h4,
.mpwem-display-section--attendee-form .conditional_form_area strong {
	color: var(--mpwem-text);
	font-size: 13px;
	font-weight: 800;
}
.mpwem-display-section--attendee-form .mep_condition_item {
	background: #fff !important;
	border: 1px solid #e1e8f0 !important;
	border-radius: 10px !important;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}
.mpwem-display-section--attendee-form .mp_event_custom_form_table {
	width: 100% !important;
	margin: 18px 0 0 !important;
	border: 0 !important;
	border-collapse: separate !important;
	border-spacing: 0 !important;
	background: #fff !important;
	table-layout: auto !important;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}
.mpwem-display-section--attendee-form .mp_event_custom_form_table th,
.mpwem-display-section--attendee-form .mp_event_custom_form_table td {
	padding: 10px 4px !important;
	vertical-align: baseline !important;
	border-color: #e2e8f0 !important;
	white-space: normal;
	word-break: break-word;
}
.mpwem-display-section--attendee-form .mp_event_custom_form_table thead th {
	position: sticky;
	top: 0;
	z-index: 1;
	background: #f8fbff !important;
}
.mpwem-display-section--attendee-form .mp_event_custom_form_table tbody tr td {
	background: #fff !important;
}
.mpwem-display-section--attendee-form .mp_event_custom_form_table th:nth-child(1),
.mpwem-display-section--attendee-form .mp_event_custom_form_table td:nth-child(1) {
	width: 18%;
	min-width: 150px;
}
.mpwem-display-section--attendee-form .mp_event_custom_form_table th:nth-child(2),
.mpwem-display-section--attendee-form .mp_event_custom_form_table td:nth-child(2) {
	width: 22%;
	min-width: 190px;
}
.mpwem-display-section--attendee-form .mp_event_custom_form_table th:nth-child(3),
.mpwem-display-section--attendee-form .mp_event_custom_form_table td:nth-child(3) {
	width: 25%;
	min-width: 220px;
}
.mpwem-display-section--attendee-form .mp_event_custom_form_table th:nth-child(4),
.mpwem-display-section--attendee-form .mp_event_custom_form_table td:nth-child(4),
.mpwem-display-section--attendee-form .mp_event_custom_form_table th:nth-child(5),
.mpwem-display-section--attendee-form .mp_event_custom_form_table td:nth-child(5) {
	width: 14%;
	min-width: 120px;
}
.mpwem-display-section--attendee-form .mp_event_custom_form_table th:last-child,
.mpwem-display-section--attendee-form .mp_event_custom_form_table td:last-child {
	width: 1%;
	min-width: 120px;
	white-space: nowrap;
}
.mpwem-display-section--attendee-form .mp_event_custom_form_table .mp_formControl,
.mpwem-display-section--attendee-form .mp_event_custom_form_table .formControl,
.mpwem-display-section--attendee-form .mp_event_custom_form_table input[type="text"],
.mpwem-display-section--attendee-form .mp_event_custom_form_table input[type="number"],
.mpwem-display-section--attendee-form .mp_event_custom_form_table select,
.mpwem-display-section--attendee-form .mp_event_custom_form_table textarea {
	width: 100% !important;
	min-width: 0 !important;
	max-width: 100% !important;
}
.mpwem-display-section--attendee-form .mp_event_custom_form_table td > label,
.mpwem-display-section--attendee-form .mp_event_custom_form_table td > .mpwem-label,
.mpwem-display-section--attendee-form .mp_event_custom_form_table td > .mpev-label {
	width: 100%;
}
.mpwem-display-section--attendee-form .mp_event_custom_form_table .button,
.mpwem-display-section--attendee-form .mp_event_custom_form_table button,
.mpwem-display-section--attendee-form .mp_event_custom_form_table input[type="button"],
.mpwem-display-section--attendee-form .mp_event_custom_form_table input[type="submit"] {
	max-width: 100%;
}
.mpwem-display-section--attendee-form .mp_event_custom_form_table + .button,
.mpwem-display-section--attendee-form .mp_event_custom_form_table + button,
.mpwem-display-section--attendee-form .mp_event_custom_form_table + input[type="button"],
.mpwem-display-section--attendee-form .mp_event_custom_form_table + input[type="submit"],
.mpwem-display-section--attendee-form .mp_event_custom_form_table ~ .button:last-child,
.mpwem-display-section--attendee-form .mp_event_custom_form_table ~ button:last-child,
.mpwem-display-section--attendee-form .mp_event_custom_form_table ~ input[type="button"]:last-child,
.mpwem-display-section--attendee-form .mp_event_custom_form_table ~ input[type="submit"]:last-child {
	margin-top: 18px !important;
}
.mpwem-display-section--attendee-form .mp_event_custom_form_table + .button,
.mpwem-display-section--attendee-form .mp_event_custom_form_table + button,
.mpwem-display-section--attendee-form .mp_event_custom_form_table + input[type="button"],
.mpwem-display-section--attendee-form .mp_event_custom_form_table + input[type="submit"],
.mpwem-display-section--attendee-form .mp_event_custom_form_table ~ .button:last-child,
.mpwem-display-section--attendee-form .mp_event_custom_form_table ~ button:last-child,
.mpwem-display-section--attendee-form .mp_event_custom_form_table ~ input[type="button"]:last-child,
.mpwem-display-section--attendee-form .mp_event_custom_form_table ~ input[type="submit"]:last-child {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 42px;
	padding: 10px 18px !important;
	border: 1px solid #bfdbfe !important;
	border-radius: 999px !important;
	background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%) !important;
	color: #1d4ed8 !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	line-height: 1.2;
	box-shadow: 0 10px 24px -20px rgba(29, 78, 216, 0.65);
}
.mpwem-display-section--attendee-form .mp_event_custom_form_table + .button:hover,
.mpwem-display-section--attendee-form .mp_event_custom_form_table + .button:focus,
.mpwem-display-section--attendee-form .mp_event_custom_form_table + button:hover,
.mpwem-display-section--attendee-form .mp_event_custom_form_table + button:focus,
.mpwem-display-section--attendee-form .mp_event_custom_form_table + input[type="button"]:hover,
.mpwem-display-section--attendee-form .mp_event_custom_form_table + input[type="button"]:focus,
.mpwem-display-section--attendee-form .mp_event_custom_form_table + input[type="submit"]:hover,
.mpwem-display-section--attendee-form .mp_event_custom_form_table + input[type="submit"]:focus,
.mpwem-display-section--attendee-form .mp_event_custom_form_table ~ .button:last-child:hover,
.mpwem-display-section--attendee-form .mp_event_custom_form_table ~ .button:last-child:focus,
.mpwem-display-section--attendee-form .mp_event_custom_form_table ~ button:last-child:hover,
.mpwem-display-section--attendee-form .mp_event_custom_form_table ~ button:last-child:focus,
.mpwem-display-section--attendee-form .mp_event_custom_form_table ~ input[type="button"]:last-child:hover,
.mpwem-display-section--attendee-form .mp_event_custom_form_table ~ input[type="button"]:last-child:focus,
.mpwem-display-section--attendee-form .mp_event_custom_form_table ~ input[type="submit"]:last-child:hover,
.mpwem-display-section--attendee-form .mp_event_custom_form_table ~ input[type="submit"]:last-child:focus {
	border-color: #93c5fd !important;
	background: linear-gradient(180deg, #ffffff 0%, #dbeafe 100%) !important;
	color: #1e40af !important;
	box-shadow: 0 16px 30px -22px rgba(30, 64, 175, 0.8);
}
@media (max-width: 1199px) {
	.mpwem-display-section--attendee-form .mp_event_custom_form_table {
		display: block;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
	}
	.mpwem-display-section--attendee-form .mp_event_custom_form_table thead,
	.mpwem-display-section--attendee-form .mp_event_custom_form_table tbody {
		display: table;
		width: 100%;
		min-width: 920px;
		table-layout: fixed;
	}
}
@media (max-width: 782px) {
	.mpwem-display-section--attendee-form .mp_event_custom_form_table th,
	.mpwem-display-section--attendee-form .mp_event_custom_form_table td {
		padding: 12px !important;
	}
	.mpwem-display-section--attendee-form .mp_event_custom_form_table th:nth-child(1),
	.mpwem-display-section--attendee-form .mp_event_custom_form_table td:nth-child(1) {
		min-width: 136px;
	}
	.mpwem-display-section--attendee-form .mp_event_custom_form_table th:nth-child(2),
	.mpwem-display-section--attendee-form .mp_event_custom_form_table td:nth-child(2) {
		min-width: 170px;
	}
	.mpwem-display-section--attendee-form .mp_event_custom_form_table th:nth-child(3),
	.mpwem-display-section--attendee-form .mp_event_custom_form_table td:nth-child(3) {
		min-width: 190px;
	}
}
.mpwem-display-section--faq .mpwem-faq-toggle-row ._justify_between_align_center_wrap {
	grid-template-columns: 1fr !important;
}
.mpwem-display-section--timeline .mpwem-timeline-toggle-row,
.mpwem-display-section--related .mpwem-related-toggle-row {
	display: none !important;
}
.mpwem-display-section--faq ._padding_bB {
	padding: 12px 18px !important;
}
.mpwem-display-section--faq ._padding_bB:first-child .justify_between {
	grid-template-columns: minmax(150px, 220px) minmax(260px, 1fr);
	align-items: start;
}
.mpwem-display-section--faq textarea[name="mep_faq_description"] {
	min-height: 76px;
	height: 76px;
}
.mpwem-display-section--faq .faq-item {
	overflow: hidden;
	background: #f8fafc;
	border: 1px solid #d9e2ef;
	border-radius: 10px;
	margin: 0 !important;
	padding: 0 !important;
}
.mpwem-display-section--faq .faq-item-header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
	align-items: center;
	min-height: 42px;
	padding: 8px 10px;
	background: #fff;
	border-bottom: 0 !important;
}
.mpwem-display-section--faq .faq-item-header h3 {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	overflow: hidden;
	color: var(--mpwem-text);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
	text-overflow: ellipsis;
	white-space: nowrap;
	cursor: pointer;
}
.mpwem-display-section--faq .faq-item-header h3::before {
	content: "\f347";
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	background: #eaf2ff;
	border: 1px solid #bfd1ef;
	border-radius: 6px;
	color: var(--mpwem-primary);
	font-family: dashicons;
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
}
.mpwem-display-section--faq .faq-item.open .faq-item-header h3::before {
	content: "\f343";
}
.mpwem-display-section--faq .faq-item-header .buttonGroup {
	display: inline-flex !important;
	gap: 6px;
	width: auto !important;
	max-width: none !important;
}
.mpwem-display-section--faq .faq-item-header button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 30px !important;
	height: 30px !important;
	min-height: 30px !important;
	padding: 0 !important;
	border-radius: 8px !important;
}
.mpwem-display-section--faq .faq-item-content {
	display: none;
	margin: 0 !important;
	padding: 10px !important;
	background: #fff;
	border-top: 1px solid #e5edf6;
	max-height: none;
}
.mpwem-display-section--faq .faq-item.open .faq-item-content {
	display: block;
	max-height: none;
}
.mpwem-display-section--faq .faq-item-content p {
	margin: 0 0 8px;
}
.mpwem-display-section--faq .faq-item-content p label {
	display: block;
	margin-bottom: 5px;
	color: var(--mpwem-text);
	font-size: 12px;
	font-weight: 800;
}
.mpwem-display-section--faq .faq-item-content input[name="mep_faq_title[]"] {
	height: 38px !important;
	min-height: 38px;
}
.mpwem-display-section--faq .wp-editor-wrap,
.mpwem-display-section--email .wp-editor-wrap {
	overflow: hidden;
	border: 1px solid #d9e2ef;
	border-radius: 12px;
	background: #fff;
}
.mpwem-display-section--faq .wp-editor-container,
.mpwem-display-section--email .wp-editor-container {
	border: 0 !important;
}
.mpwem-display-section--faq .wp-editor-tools {
	padding: 6px 8px 0;
	background: #f8fafc;
}
.mpwem-display-section--faq .wp-editor-tabs {
	margin-top: 0;
}
.mpwem-display-section--faq .quicktags-toolbar {
	padding: 6px !important;
}
.mpwem-display-section--faq .wp-editor-area {
	min-height: 118px;
	height: 118px !important;
}
.mpwem-display-section--faq .mce-edit-area iframe {
	min-height: 130px !important;
	height: 130px !important;
}
.mpwem-display-section--faq #add-faq-item {
	min-height: 36px;
	margin-top: 10px !important;
	padding: 0 14px !important;
}
.mpwem-display-section--timeline ._padding_bt {
	padding: 12px 18px !important;
}
.mpwem-display-section--timeline ._padding_bB {
	padding: 12px 18px !important;
}
.mpwem-display-section--timeline .mpwem_time_line_area_new {
	display: grid;
	gap: 8px;
}
.mpwem-display-section--timeline .timeline-item {
	overflow: hidden;
	background: #f8fafc;
	border: 1px solid #d9e2ef;
	border-radius: 10px;
	margin: 0 !important;
	padding: 0 !important;
}
.mpwem-display-section--timeline .timeline-item-header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
	align-items: center;
	min-height: 42px;
	padding: 8px 10px;
	background: #fff;
	border-bottom: 0 !important;
}
.mpwem-display-section--timeline .timeline-item-header h3 {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	overflow: hidden;
	color: var(--mpwem-text);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
	text-overflow: ellipsis;
	white-space: nowrap;
	cursor: pointer;
}
.mpwem-display-section--timeline .timeline-item-header h3::before {
	content: "\f469";
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	background: #eaf2ff;
	border: 1px solid #bfd1ef;
	border-radius: 6px;
	color: var(--mpwem-primary);
	font-family: dashicons;
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
}
.mpwem-display-section--timeline .timeline-item-header .buttonGroup {
	display: inline-flex !important;
	gap: 6px;
	width: auto !important;
	max-width: none !important;
}
.mpwem-display-section--timeline .timeline-item-header button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 30px !important;
	height: 30px !important;
	min-height: 30px !important;
	padding: 0 !important;
	border-radius: 8px !important;
}
.mpwem-display-section--timeline .timeline-item-content {
	display: none;
	margin: 0 !important;
	padding: 10px !important;
	background: #fff;
	border-top: 1px solid #e5edf6;
}
.mpwem-display-section--timeline .timeline-item.open .timeline-item-content {
	display: grid;
	gap: 10px;
}
.mpwem-display-section--timeline .timeline-item-content > div {
	margin: 0;
}
.mpwem-display-section--timeline .timeline-item-content > div > label {
	display: block;
	margin-bottom: 5px;
	color: var(--mpwem-text);
	font-size: 12px;
	font-weight: 800;
}
.mpwem-display-section--timeline .timeline-item-content input.regular-text {
	height: 38px !important;
	min-height: 38px;
}
.mpwem-display-section--timeline .wp-editor-wrap {
	overflow: hidden;
	border: 1px solid #d9e2ef;
	border-radius: 12px;
	background: #fff;
}
.mpwem-display-section--timeline .wp-editor-container {
	border: 0 !important;
}
.mpwem-display-section--timeline .wp-editor-tools {
	padding: 6px 8px 0;
	background: #f8fafc;
}
.mpwem-display-section--timeline .wp-editor-tabs {
	margin-top: 0;
}
.mpwem-display-section--timeline .quicktags-toolbar {
	padding: 6px !important;
}
.mpwem-display-section--timeline .wp-editor-area {
	min-height: 118px;
	height: 118px !important;
}
.mpwem-display-section--timeline .mce-edit-area iframe {
	min-height: 130px !important;
	height: 130px !important;
}
.mpwem-display-section--timeline #add-timeline-item {
	min-height: 36px;
	margin-top: 10px !important;
	padding: 0 14px !important;
}
.mpwem-display-section--related > .mp_tab_item > section {
	padding: 16px 20px !important;
	border-bottom: 1px solid #eef2f7 !important;
	background: #fff !important;
}
.mpwem-display-section--related #mpev-related-event-display {
	display: grid;
	gap: 12px;
	padding: 16px 20px 20px;
	background: #fff;
}
.mpwem-display-section--related #mpev-related-event-display > section {
	padding: 16px !important;
	border: 1px solid #e3ebf5 !important;
	border-radius: 12px;
	background: #fff !important;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
.mpwem-display-section--related #mpev-related-event-display > section:first-child .mpev-label {
	align-items: center;
}
.mpwem-display-section--related .mpev-label {
	grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
	align-items: start;
	gap: 18px;
}
.mpwem-display-section--related .mpev-label > div:first-child {
	display: grid;
	gap: 6px;
	padding-top: 2px;
	align-content: start;
}
.mpwem-display-section--related .mpev-label h2 {
	font-size: 13px !important;
	font-weight: 800 !important;
	line-height: 1.35;
}
.mpwem-display-section--related .mpev-label .label-text {
	margin-top: 0;
	font-size: 12px !important;
	line-height: 1.5;
}
.mpwem-display-section--related #mpev-related-event-display > section:first-child .mpev-label .label-text {
	max-width: 220px;
}
.mpwem-display-section--related input.related_section_label {
	height: 42px !important;
	min-height: 42px;
	padding-inline: 12px !important;
	border: 1px solid #d9e2ef !important;
	border-radius: 10px !important;
	background: #fff !important;
	font-size: 13px !important;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.mpwem-display-section--related input.related_section_label:focus {
	border-color: var(--mpwem-primary) !important;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
	outline: none;
}

/* ===== Related Events Search (Custom) ===== */
.mpwem-related-search-section .mpev-label > div:last-child {
	min-width: 0;
}
.mpwem-related-search-wrap {
	display: grid;
	gap: 10px;
}

/* --- Search Input --- */
.mpwem-related-search-input-wrap {
	position: relative;
	display: flex;
	align-items: center;
}
.mpwem-related-search-input-wrap .mpwem-related-search-icon {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #94a3b8;
	font-size: 16px;
	width: 16px;
	height: 16px;
	pointer-events: none;
}
.mpwem-related-search-input {
	width: 100%;
	height: 44px;
	padding: 0 54px 0 14px;
	border: 1px solid #d9e2ef;
	border-radius: 10px;
	background: #fff;
	font-size: 13px;
	color: #1e293b;
	transition: border-color 0.2s, box-shadow 0.2s;
	box-sizing: border-box;
}
.mpwem-related-search-input::placeholder {
	color: #94a3b8;
}
.mpwem-related-search-input:focus {
	border-color: var(--mpwem-primary);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
	outline: none;
}

/* --- Search Spinner --- */
.mpwem-related-search-spinner {
	position: absolute;
	right: 36px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	border: 2px solid #e2e8f0;
	border-top-color: var(--mpwem-primary);
	border-radius: 50%;
	opacity: 0;
	transition: opacity 0.2s;
	pointer-events: none;
}
.mpwem-related-search-spinner.is-active {
	opacity: 1;
	animation: mpwem-search-spin 0.6s linear infinite;
}
@keyframes mpwem-search-spin {
	to { transform: translateY(-50%) rotate(360deg); }
}

/* --- Selected Pills --- */
.mpwem-related-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
	min-height: 28px;
}
.mpwem-related-pills-empty {
	font-size: 12px;
	color: #94a3b8;
	font-style: italic;
}
.mpwem-related-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 28px;
	padding: 3px 8px 3px 10px;
	border: 1px solid #d0e0f5;
	border-radius: 999px;
	background: #f0f6ff;
	color: #1a3a6b;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	transition: background 0.15s, border-color 0.15s;
}
.mpwem-related-pill:hover {
	background: #e5efff;
	border-color: #b8cff0;
}
.mpwem-related-pill__title {
	max-width: 180px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.mpwem-related-pill__remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	padding: 0;
	border: none;
	border-radius: 999px;
	background: #94a3b8;
	color: #fff;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	transition: background 0.15s;
	flex-shrink: 0;
}
.mpwem-related-pill__remove:hover {
	background: var(--mpwem-danger);
}

/* --- Results List --- */
.mpwem-related-results {
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
	overflow: hidden;
	max-height: 340px;
	overflow-y: auto;
}
.mpwem-related-results-list {
	display: grid;
}
.mpwem-related-result-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 14px;
	cursor: pointer;
	transition: background 0.12s;
	border-bottom: 1px solid #f1f4f9;
}
.mpwem-related-result-item:last-child {
	border-bottom: none;
}
.mpwem-related-result-item:hover {
	background: #f8faff;
}
.mpwem-related-result-item.is-selected {
	background: #f0f6ff;
	cursor: default;
	opacity: 0.7;
}

.mpwem-related-result-item__info {
	display: grid;
	gap: 2px;
	min-width: 0;
}
.mpwem-related-result-item__title {
	font-size: 13px;
	font-weight: 700;
	color: #1e293b;
	line-height: 1.35;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.mpwem-related-result-item.is-selected .mpwem-related-result-item__title {
	color: var(--mpwem-primary);
}
.mpwem-related-result-item__date {
	font-size: 11px;
	color: #94a3b8;
}
.mpwem-related-result-item__icon {
	font-size: 18px;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}
.mpwem-related-result-item:not(.is-selected) .mpwem-related-result-item__icon {
	color: #94a3b8;
	opacity: 1;
}
.mpwem-related-result-item.is-selected .mpwem-related-result-item__icon {
	color: var(--mpwem-primary);
	opacity: 1;
}

/* --- Empty State --- */
.mpwem-related-empty-state {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 28px 16px;
	text-align: center;
}
.mpwem-related-empty-state .dashicons {
	font-size: 32px;
	width: 32px;
	height: 32px;
	color: #cbd5e1;
}
.mpwem-related-empty-state p {
	margin: 0;
	font-size: 12px;
	color: #94a3b8;
}
.mpwem-display-section--related #mpev-related-event-display > section {
	padding: 16px !important;
	border: 1px solid #e3ebf5 !important;
	border-radius: 12px;
	background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}
.mpwem-display-section--related #mpev-related-event-display > section:first-child .mpev-label {
	align-items: center;
}
.mpwem-display-section--related #mpev-related-event-display > section:last-child {
	border-bottom: 1px solid #e3ebf5 !important;
}
.mpwem-display-section--related .mpev-label {
	grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
	align-items: start;
	gap: 18px;
}
.mpwem-display-section--related .mpev-label > div:first-child {
	display: grid;
	gap: 6px;
	padding-top: 2px;
	align-content: start;
}
.mpwem-display-section--related .mpev-label h2 {
	font-size: 13px !important;
	font-weight: 800 !important;
	line-height: 1.35;
}
.mpwem-display-section--related .mpev-label .label-text {
	margin-top: 0;
	font-size: 12px !important;
	line-height: 1.5;
}
.mpwem-display-section--related #mpev-related-event-display > section:first-child .mpev-label .label-text {
	max-width: 220px;
}
.mpwem-display-section--seo #mep_rich_text_table {
	padding: 0 !important;
	border-bottom: 0 !important;
}
.mpwem-display-section--seo #mep_rich_text_table table {
	width: 100%;
	margin: 0 !important;
	border: 1px solid #d9e2ef !important;
	border-collapse: separate !important;
	border-spacing: 0 !important;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	box-shadow: none !important;
}
.mpwem-display-section--seo #mep_rich_text_table td {
	padding: 12px 14px !important;
	border-bottom: 1px solid #eef2f7 !important;
	background: #fff !important;
	color: var(--mpwem-text);
	font-size: 13px;
	vertical-align: middle;
}
.mpwem-display-section--seo #mep_rich_text_table tr:last-child td {
	border-bottom: 0 !important;
}
.mpwem-display-section--seo #mep_rich_text_table td:first-child {
	width: 220px;
	background: #f8fafc !important;
	color: #475569;
	font-weight: 800;
}
.mpwem-display-section--seo #mep_rich_text_table .event_meta_help_txt {
	margin: 0;
}
.mpwem-display-section--seo #mep_rich_text_table .event_meta_help_txt a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 0 14px;
	background: #eaf2ff;
	border: 1px solid #bfd1ef;
	border-radius: 9px;
	color: var(--mpwem-primary);
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}
.mpwem-display-section--email h5 {
	margin: 0 0 6px !important;
	color: var(--mpwem-text);
	font-size: 13px;
	font-weight: 800;
}
.mpwem-display-section--email h5 + ._mp_zero {
	display: block;
	margin-top: 4px;
	color: var(--mpwem-muted) !important;
	font-size: 12px !important;
	line-height: 1.45;
}
.mpwem-display-section--email ._padding_bB {
	padding: 14px 18px !important;
}
.mpwem-display-section--email ._mt {
	margin-top: 10px !important;
}
.mpwem-display-section--email h5 + ._mp_zero {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 6px;
	padding: 5px 10px;
	background: #f8fafc;
	border: 1px solid #d9e2ef;
	border-radius: 999px;
	color: #475569 !important;
	font-size: 11px !important;
	font-weight: 700;
	line-height: 1.2;
}
.mpwem-display-section--email h5 + ._mp_zero::before {
	content: "\f481";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	background: #eaf2ff;
	border-radius: 50%;
	color: var(--mpwem-primary);
	font-family: dashicons;
	font-size: 12px;
	line-height: 1;
}
.mpwem-display-section--email .mp_list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
	gap: 8px;
	margin: 12px 0 0 !important;
	padding: 0 !important;
	list-style: none !important;
}
.mpwem-display-section--email .mp_list li {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
	align-items: center;
	min-height: 40px;
	padding: 8px 10px !important;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	border: 1px solid #d7e3f1;
	border-radius: 10px;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
	color: var(--mpwem-text);
	font-size: 12px;
}
.mpwem-display-section--email .mp_list ._min_200 {
	min-width: 0 !important;
	font-weight: 700;
	line-height: 1.3;
}
.mpwem-display-section--email .mp_list code {
	padding: 4px 7px;
	background: #fff;
	border: 1px solid #cbd5e1;
	border-radius: 7px;
	color: var(--mpwem-primary);
	font-size: 10px;
	font-weight: 800;
	white-space: nowrap;
}
.mpwem-display-section--email .wp-editor-tools {
	padding: 6px 8px 0;
	background: #f8fafc;
}
.mpwem-display-section--email .wp-editor-tabs {
	margin-top: 0;
}
.mpwem-display-section--email .quicktags-toolbar {
	padding: 6px !important;
}
.mpwem-display-section--email .wp-editor-area {
	min-height: 132px;
	height: 132px !important;
}
.mpwem-display-section--email .mce-edit-area iframe {
	min-height: 150px !important;
	height: 150px !important;
}
.mpwem-display-section--email-reminder .mp_tab_item > ._layout_default_xs_mp_zero {
	gap: 16px;
}
.mpwem-display-section--email-reminder ._padding_bt,
.mpwem-display-section--email-reminder ._padding_bB,
.mpwem-display-section--email-reminder .mp_tab_item > section:not(.bg-light) {
	position: relative;
	padding: 18px 20px !important;
	background:
		radial-gradient(circle at top right, rgba(15, 118, 110, 0.08), transparent 30%),
		linear-gradient(180deg, #ffffff 0%, #f8fffd 100%) !important;
	border-color: #d2ebe3 !important;
}
.mpwem-display-section--email-reminder ._padding_bt::before,
.mpwem-display-section--email-reminder ._padding_bB::before,
.mpwem-display-section--email-reminder .mp_tab_item > section:not(.bg-light)::before {
	content: '';
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	border-radius: 14px 0 0 14px;
	background: linear-gradient(180deg, #14b8a6 0%, #0f766e 100%);
	opacity: 0.9;
}
.mpwem-display-section--email-reminder h4,
.mpwem-display-section--email-reminder h5 {
	margin: 0 0 8px !important;
	color: #134e4a;
	font-size: 13px !important;
	font-weight: 800 !important;
	letter-spacing: -0.01em;
}
.mpwem-display-section--email-reminder ._mp_zero,
.mpwem-display-section--email-reminder p:not(.description),
.mpwem-display-section--email-reminder .event_meta_help_txt {
	color: #58727a !important;
	font-size: 12px !important;
	line-height: 1.55;
}
.mpwem-display-section--email-reminder .description {
	margin-top: 8px !important;
	color: #64748b !important;
	font-size: 12px !important;
	line-height: 1.55;
}
.mpwem-display-section--email-reminder .round_switch_label,
.mpwem-display-section--email-reminder .mpev-switch,
.mpwem-display-section--email-reminder .mpwem-switch-wrap {
	display: inline-flex;
	align-items: center;
	gap: 12px;
}
.mpwem-display-section--email-reminder textarea,
.mpwem-display-section--email-reminder .wp-editor-area {
	min-height: 148px;
}
.mpwem-display-section--email-reminder .wp-editor-wrap {
	border: 1px solid #d6e8e3;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
}
.mpwem-display-section--email-reminder .wp-editor-tools {
	padding: 8px 10px 0;
	background: #f6fffc;
	border-bottom: 1px solid #e2f3ee;
}
.mpwem-display-section--email-reminder .wp-editor-tabs {
	margin-top: 0;
}
.mpwem-display-section--email-reminder .quicktags-toolbar {
	padding: 6px !important;
	background: #fcfffe;
}
.mpwem-display-section--email-reminder .mce-edit-area iframe {
	min-height: 170px !important;
}
.mpwem-display-section--email-reminder table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
}
.mpwem-display-section--email-reminder table th,
.mpwem-display-section--email-reminder table td {
	padding: 12px 14px !important;
	border-bottom: 1px solid #e2f3ee;
	vertical-align: top;
}
.mpwem-display-section--email-reminder table th {
	background: #f6fffc;
	color: #134e4a;
	font-size: 12px;
	font-weight: 800;
	text-align: left;
}
.mpwem-display-section--email-reminder table tr:last-child th,
.mpwem-display-section--email-reminder table tr:last-child td {
	border-bottom: 0;
}
.mpwem-display-section--email-reminder code {
	display: inline-flex;
	align-items: center;
	padding: 4px 8px;
	border-radius: 8px;
	background: #f0fdfa;
	border: 1px solid #cceee6;
	color: #0f766e;
	font-size: 11px;
	font-weight: 700;
}
@media (max-width: 782px) {
	.mpwem-display-section--email-reminder ._justify_between_align_center_wrap,
	.mpwem-display-section--email-reminder .justify_between,
	.mpwem-display-section--email-reminder .mpev-label {
		grid-template-columns: minmax(0, 1fr);
	}
	.mpwem-display-section--email-reminder table,
	.mpwem-display-section--email-reminder table tbody,
	.mpwem-display-section--email-reminder table tr,
	.mpwem-display-section--email-reminder table th,
	.mpwem-display-section--email-reminder table td {
		display: block;
		width: 100%;
	}
	.mpwem-display-section--email-reminder table tr {
		border-bottom: 1px solid #e2f3ee;
	}
}
.mpwem-display-section--template .mep-template-section {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	padding: 16px 20px !important;
}
.mpwem-display-section--template .mep-template {
	position: relative;
	overflow: hidden;
	width: auto;
	margin: 0 !important;
	padding: 0 10px;
	background: #fff;
	border-radius: 12px;
	cursor: pointer;
	transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.mpwem-display-section--template .mep-template:hover {
	border-color: #bfd1ef;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
	transform: translateY(-1px);
}
.mpwem-display-section--template .mep-template.active {
	border-color: var(--mpwem-primary);
}
.mpwem-display-section--template .mep-template.active::after {
	content: "Selected";
	position: absolute;
	top: 10px;
	right: 20px;
	padding: 4px 8px;
	background: var(--mpwem-primary);
	border-radius: 999px;
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
}
.mpwem-display-section--template .mep-template img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 9px;
	background: #f8fafc;
	padding: 0;
	box-shadow: none;
}
.mpwem-display-section--template .mep-template h5 {
	margin: 0px 0 20px 0;
	color: var(--mpwem-text);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.3;
}
#mpwem_wizard_display .mpwem-event-wizard__sidebar .mpwem-display-section--template .mpwem-display-section__head {
	padding: 14px 16px;
}
#mpwem_wizard_display .mpwem-event-wizard__sidebar .mpwem-display-section--template .mep-template-section {
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 12px;
	padding: 14px 16px !important;
}
#mpwem_wizard_display .mpwem-event-wizard__sidebar .mpwem-display-section--template .mep-template {
	display: block;
	padding: 10px;
}
#mpwem_wizard_display .mpwem-event-wizard__sidebar .mpwem-display-section--template .mep-template img {
	width: 100%;
	aspect-ratio: 4 / 3;
}
#mpwem_wizard_display .mpwem-event-wizard__sidebar .mpwem-display-section--template .mep-template h5 {
	margin: 10px 2px 0;
	font-size: 13px;
	line-height: 1.35;
	text-align: center;
}
#mpwem_wizard_display .mpwem-event-wizard__sidebar .mpwem-display-section--template .mep-template.active::after {
	top: 8px;
	right: 8px;
}
.mpwem-card--help-display .mpwem-display-guide {
	display: grid;
	gap: 8px;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid #e5edf6;
}
.mpwem-card--help-display .mpwem-display-guide span {
	display: grid;
	grid-template-columns: 24px minmax(0, 1fr);
	gap: 8px;
	align-items: start;
	color: var(--mpwem-muted);
	font-size: 12px;
}
.mpwem-card--help-display .mpwem-display-guide span {
	counter-increment: display-guide;
}
.mpwem-card--help-display .mpwem-display-guide span::before {
	content: counter(display-guide);
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	background: #eaf2ff;
	border: 1px solid #bfd1ef;
	border-radius: 50%;
	color: var(--mpwem-primary);
	font-size: 11px;
	font-weight: 800;
}
.mpwem-card--help-display .mpwem-display-guide {
	counter-reset: display-guide;
}
.mpwem-card--help-display .mpwem-display-guide strong {
	display: block;
	color: var(--mpwem-text);
	font-size: 12px;
	line-height: 1.35;
}
.mpwem-card--help-display .mpwem-display-guide small {
	display: block;
	margin-top: 2px;
	color: var(--mpwem-muted);
	font-size: 11px;
	line-height: 1.45;
}
.mpwem-card--danger {
	border-color: #fecdd3;
	box-shadow: 0 10px 24px rgba(225, 29, 72, 0.08);
}
.mpwem-card--danger .mpwem-card__head {
	background: linear-gradient(180deg, #fff7f8 0%, #fff1f2 100%);
	border-bottom-color: #fecdd3;
}
.mpwem-card--danger .mpwem-card__head h2 {
	color: #9f1239;
}
.mpwem-card--danger .mpwem-card__head p {
	color: #be123c;
}
.mpwem-danger-zone {
	display: grid;
	gap: 14px;
	padding: 2px 0;
}
.mpwem-danger-zone__intro {
	display: grid;
	gap: 8px;
	padding: 14px;
	border: 1px solid #fecdd3;
	border-radius: 12px;
	background: linear-gradient(180deg, #fff8f8 0%, #fff4f5 100%);
}
.mpwem-danger-zone__eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	padding: 4px 9px;
	border-radius: 999px;
	background: #ffe4e6;
	color: #be123c;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}
.mpwem-danger-zone__intro p {
	margin: 0;
	color: #7f1d1d;
	font-size: 12px;
	line-height: 1.55;
}
.mpwem-danger-zone .mpwem-danger-reset-trigger {
	min-height: 40px;
	justify-self: stretch;
}
.mpwem-confirm-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: none;
}
.mpwem-confirm-modal.is-open {
	display: block;
}
.mpwem-confirm-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.46);
	backdrop-filter: blur(2px);
}
.mpwem-confirm-modal__dialog {
	position: relative;
	width: min(480px, calc(100vw - 32px));
	margin: 12vh auto 0;
	background: #fff;
	border: 1px solid #fecdd3;
	border-radius: 16px;
	box-shadow: 0 30px 60px rgba(15, 23, 42, 0.22);
	overflow: hidden;
}
.mpwem-confirm-modal__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 20px;
	background: linear-gradient(180deg, #fff7f8 0%, #fff1f2 100%);
	border-bottom: 1px solid #fecdd3;
}
.mpwem-confirm-modal__head h3 {
	margin: 0;
	color: #9f1239;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.3;
}
.mpwem-confirm-modal__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 1px solid #fecdd3;
	border-radius: 10px;
	background: #fff;
	color: #be123c;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
}
.mpwem-confirm-modal__body {
	padding: 18px 20px 10px;
}
.mpwem-confirm-modal__body p {
	margin: 0;
	color: #475569;
	font-size: 13px;
	line-height: 1.6;
}
.mpwem-confirm-modal__actions {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	padding: 16px 20px 20px;
}
.mpwem_ticket_table,
.mpwem_settings_area table {
	width: 100%;
	border-collapse: separate !important;
	border-spacing: 0 !important;
}
/* Sidebar Gallery Mount Styling */
#mpwem_wizard_media_mount_basic .mp_tab_item > h3,
#mpwem_wizard_media_mount_basic .mp_tab_item > p,
#mpwem_wizard_media_mount_basic .mp_tab_item > section.bg-light {
	display: none !important;
}
#mpwem_wizard_media_mount_basic .mp_tab_item > section > h2,
#mpwem_wizard_media_mount_basic .mp_tab_item .mpev-label h2 {
	font-size: 13px !important;
	font-weight: 600 !important;
	color: var(--mpwem-text-main) !important;
	margin: 0 0 8px 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border: none !important;
	display: flex;
	align-items: center;
}
.mpwem-info-icon {
	display: inline-block;
	color: var(--mpwem-primary) !important;
	margin-left: 6px;
	cursor: help;
	font-size: 16px;
	width: 16px;
	height: 16px;
	vertical-align: text-bottom;
}
.mpwem-info-icon:hover {
	opacity: 0.8;
}
#mpwem_wizard_media_mount_basic .mp_tab_item > section {
	padding: 0 !important;
	margin: 0 0 20px 0 !important;
	border: none !important;
	background: transparent !important;
	box-shadow: none !important;
}
#mpwem_gallery_images_card_toggle .mpwem-switch-wrap,
#mpwem_gallery_images_card_toggle .mpev-switch {
	margin: 0;
}
#mpwem_wizard_thumbnail_mount_basic > section.bg-light,
#mpwem_wizard_thumbnail_mount_basic > .mpwem_style > section {
	padding: 0 !important;
	margin: 0 !important;
	border: none !important;
	background: transparent !important;
	box-shadow: none !important;
}
#mpwem_wizard_thumbnail_mount_basic > section.bg-light {
	display: none !important;
}
#mpwem_wizard_thumbnail_mount_basic h2 {
	font-size: 13px !important;
	font-weight: 600 !important;
	color: var(--mpwem-text-main) !important;
	margin: 0 0 8px 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border: none !important;
}
#mpwem_wizard_thumbnail_mount_basic .label-text {
	font-size: 12px;
	color: var(--mpwem-text-muted);
	line-height: 1.4;
	display: block;
}
#mpwem_wizard_thumbnail_mount_basic .mpwem_add_single_image {
	padding: 0;
	text-align: center;
	margin-top: 8px;
	max-width: 100%;
}
#mpwem_wizard_thumbnail_mount_basic .mpwem_add_single_image img {
	max-width: 100%;
	border-radius: var(--mpwem-radius);
	margin-bottom: 12px;
	height: auto;
}
/* Specific overrides for labels in the gallery sidebar */
#mpwem_wizard_media_mount_basic .mp_tab_item .mpev-label {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
}
#mpwem_wizard_media_mount_basic .mp_tab_item .label-text {
	font-size: 12px;
	color: var(--mpwem-text-muted);
	line-height: 1.4;
	display: block;
}
/* Multi-image Uploader Modernization */
#mpwem_wizard_media_mount_basic .mp_multi_image_area,
#mpwem_wizard_media_mount_basic .mpwem_add_single_image {
	padding: 0;
	text-align: center;
	margin-top: 8px;
}
#mpwem_wizard_media_mount_basic .mpwem_add_single_image {
	max-width: 100%;
}
#mpwem_wizard_media_mount_basic .mpwem_add_single_image img {
	max-width: 100%;
	border-radius: var(--mpwem-radius);
	margin-bottom: 12px;
	height: auto;
}
#mpwem_wizard_media_mount_basic .mp_multi_image {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
	gap: 6px;
	margin-bottom: 16px;
}
#mpwem_wizard_media_mount_basic .mp_multi_image_item {
	position: relative;
	border-radius: var(--mpwem-radius);
	overflow: hidden;
	border: 1px solid var(--mpwem-border);
	aspect-ratio: 1;
	background: var(--mpwem-bg);
	width: 100% !important; /* Force CSS Grid to handle sizing instead of legacy width */
	min-width: 0 !important;
	min-height: 0 !important;
	margin: 0 !important;
}
#mpwem_wizard_media_mount_basic .mp_multi_image_item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
#mpwem_wizard_media_mount_basic .mpwem_remove_multi_image,
#mpwem_wizard_media_mount_basic .mpwem_remove_single_image {
	position: absolute;
	top: 4px;
	right: 0;
	background: var(--mpwem-btn-danger-bg);
	color: var(--mpwem-btn-danger-text);
	width: 20px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	border-radius: 50%;
	cursor: pointer;
	font-size: 10px;
	z-index: 10;
}
.mpwem-event-wizard table:not(.ui-datepicker-calendar) {
	width: 100%;
	border-collapse: separate !important;
	border-spacing: 0 !important;
	border-radius: var(--mpwem-radius) !important;
	overflow: hidden !important;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,0.02);
	margin-bottom: 1px;
	table-layout: fixed;
}
.mpwem-event-wizard table:not(.ui-datepicker-calendar) th {
	background: #f1f5f9;
	padding: 14px 16px;
	text-align: left;
	font-size: 13px;
	font-weight: 600;
	color: var(--mpwem-text);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-bottom: 1px solid var(--mpwem-border) !important;
	border-top: none !important;
	border-left: none !important;
	border-right: none !important;
	white-space: nowrap;
	text-transform: capitalize;
}
.mpwem-event-wizard table:not(.ui-datepicker-calendar) td {
	padding: 16px;
	vertical-align: middle !important;
	border-top: none !important;
	border-left: none !important;
	border-right: none !important;
	background: #fff;
	transition: background-color 0.2s ease;
}

/* Explicitly round the corners of the first and last cells to prevent background bleeding */
.mpwem-event-wizard table:not(.ui-datepicker-calendar) th:first-child {
	border-top-left-radius: calc(var(--mpwem-radius) - 1px);
}
.mpwem-event-wizard table:not(.ui-datepicker-calendar) th:last-child {
	border-top-right-radius: calc(var(--mpwem-radius) - 1px);
	text-align: center !important;
}
.mpwem-event-wizard table:not(.ui-datepicker-calendar) tr:last-child td:first-child {
	border-bottom-left-radius: calc(var(--mpwem-radius) - 1px);
}
#mp_event_all_info_in_tab table:not(.ui-datepicker-calendar) tr:last-child td:last-child {
	border-bottom-right-radius: calc(var(--mpwem-radius) - 1px);
}
#mp_event_all_info_in_tab table:not(.ui-datepicker-calendar) tbody tr:hover td {
	background-color: #f8fafc;
}
/* Refined Form Controls for Table */
#mp_event_all_info_in_tab table:not(.ui-datepicker-calendar) .formControl {
	padding: 8px 12px !important;
	height: 38px;
	border-color: #e2e8f0;
	font-size: 13px;
}
#mp_event_all_info_in_tab table:not(.ui-datepicker-calendar) .formControl:focus {
	border-color: var(--mpwem-primary);
	background: #fff;
}
/* Date & Time Wizard Step */
.mpwem-date-step {
	display: grid;
	gap: 18px;
	background: #fff;
	overflow: initial;
}
.mpwem-date-step > h3,
.mpwem-date-step > p {
	display: none;
}
.mpwem-date-card {
	position: relative;
	background: #fff;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
	overflow: visible !important;
	margin: 0 0 18px !important;
}
.mpwem-date-step ._layout_default_xs_mp_zero,
.mpwem-date-step ._layout_default,
.mpwem-date-step [data-collapse="#mep_normal_event"],
.mpwem-date-step [data-collapse="#mep_particular_event"],
.mpwem-date-step [data-collapse="#mep_everyday_event"],
.mpwem-date-step section:not(.bg-light) {
	background: #fff;
}
.mpwem-date-card__head,
.mpwem-date-step .bg-light {
	background: #f8fafc !important;
	border-bottom: 1px solid var(--mpwem-border);
	border-radius:5px;
	padding: 18px 22px !important;
	margin: 0 !important;
}
.mpwem-date-card__head h4,
.mpwem-date-step .bg-light h2 {
	margin: 0 !important;
	color: var(--mpwem-text) !important;
	font-size: 15px !important;
	font-weight: 800 !important;
}
.mpwem-date-card__head span,
.mpwem-date-step .bg-light span {
	display: block;
	margin-top: 4px;
	color: var(--mpwem-muted);
	font-size: 13px;
}
.mpwem-date-step ._padding_bt,
.mpwem-date-step section:not(.bg-light) {
	padding: 18px 22px !important;
	border-bottom: 1px solid #eef2f7;
}
.mpwem-date-step ._padding_bt:last-child,
.mpwem-date-step section:last-child {
	border-bottom: 0;
}
/* .mpwem-date-step ._justify_between_align_center_wrap,
.mpwem-date-step .justify_between {
	display: grid !important;
	grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
	gap: 16px;
	align-items: center;
} */
.mpwem-date-step ._mr,
.mpwem-date-step label > span:first-child {
	color: var(--mpwem-text);
	font-size: 13px;
	font-weight: 700;
}
.mpwem-date-step .label-text,
.mpwem-date-step .text {
	display: block;
	margin-top: 8px;
	color: var(--mpwem-muted);
	font-size: 12px;
	line-height: 1.45;
}
.mpwem-date-type-selector {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	padding: 18px 22px;
	border-bottom: 1px solid #eef2f7;
}
.mpwem-date-type-option {
	position: relative;
	display: grid !important;
	grid-template-columns: 38px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	min-height: 82px;
	padding: 14px !important;
	background: #fff !important;
	border: 1px solid #d9e2ef !important;
	border-radius: 10px !important;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04) !important;
	text-align: left;
}
.mpwem-date-type-option:hover {
	border-color: #9db4d4 !important;
	background: #f8fbff !important;
	transform: translateY(-1px);
}
.mpwem-date-type-option.is-active {
	border-color: var(--mpwem-primary) !important;
	background: #eef6ff !important;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
}

.mpwem-date-type-option.is-active::after {
	content: "✓";
	position: absolute;
	top: 10px;
	right: 10px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--mpwem-primary);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
	line-height: 1;
}
.mpwem-date-type-option__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: center;
	width: 38px;
	height: 38px;
	line-height: 38px;
	border-radius: 10px;
	background: #e7eef8;
	color: #31537f !important;
	font-size: 18px;
	text-align: center;
}
.mpwem-date-type-option__icon::before {
	display: block;
	width: 38px;
	height: 38px;
	line-height: 38px;
	text-align: center;
}
.mpwem-date-type-option[data-value="no"] .mpwem-date-type-option__icon::before {
	content: "\f508";
}
.mpwem-date-type-option[data-value="yes"] .mpwem-date-type-option__icon::before {
	content: "\f145";
}
.mpwem-date-type-option[data-value="everyday"] .mpwem-date-type-option__icon::before {
	content: "\f463";
}
.mpwem-date-type-option.is-active .mpwem-date-type-option__icon {
	background: var(--mpwem-primary);
	color: #fff !important;
}
div.mpwem-date-type-option__copy {
	display: grid;
	gap: 3px;
	min-width: 0;
}
div.mpwem-date-type-option__copy strong {
	color: var(--mpwem-text);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.25;
	color: var(--mpwem-text);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.25;
}
.mpwem-date-type-option__copy small {
	color: var(--mpwem-muted);
	font-size: 12px;
	line-height: 1.35;
}
.mpwem-date-mode-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 10px 10px 10px 0;
	padding: 6px 10px;
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: 999px;
	color: #166534;
	font-size: 12px;
	font-weight: 800;
}
.mpwem-date-mode-label::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #22c55e;
}
.mpwem-date-buffer-field {
	background: #fbfdff;
}
.mpwem-date-buffer-field ._justify_between_align_center_wrap {
	grid-template-columns: minmax(0, 1fr) 132px;
}
.mpwem-date-buffer-field ._mr {
	justify-self: end;
	max-width: 520px;
	text-align: right;
	line-height: 1.4;
}
.mpwem-date-buffer-field input[name="mep_buffer_time"] {
	width: 132px !important;
	max-width: 132px !important;
	height: 42px !important;
	padding: 8px 12px !important;
	border: 1px solid #d9e2ef !important;
	border-radius: 10px !important;
	background: #fff !important;
	font-size: 13px !important;
	font-weight: normal;
	text-align: center;
}
.mpwem-date-buffer-field input[name="mep_buffer_time"]:focus {
	border-color: var(--mpwem-primary) !important;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12) !important;
}
[data-collapse="#mep_everyday_event"] > ._layout_default_xs_mp_zero > ._padding_bt ._justify_between_align_center_wrap {
	display: grid !important;
	grid-template-columns: minmax(180px, 1fr) 510px;
	gap: 18px;
	align-items: center;
}
[data-collapse="#mep_everyday_event"] > ._layout_default_xs_mp_zero > ._padding_bt ._justify_between_align_center_wrap > label:first-child,
[data-collapse="#mep_everyday_event"] > ._layout_default_xs_mp_zero > ._padding_bt label._justify_between_align_center_wrap > ._mr {
	justify-self: start;
	text-align: left;
}

[data-collapse="#mep_everyday_event"] .mep_load_every_day {
	width: min(100%, 250px);
}
[data-collapse="#mep_everyday_event"] input[name="mep_repeated_periods"] {
	justify-self: end;
	width: 250px !important;
	max-width: 250px !important;
	height: 42px !important;
	padding: 8px 12px !important;
	border: 1px solid #d9e2ef !important;
	border-radius: 10px !important;
	background: #fff !important;
	color: var(--mpwem-text) !important;
	font-size: 13px !important;
	font-weight: 700;
	text-align: center;
	box-shadow: none !important;
}
[data-collapse="#mep_everyday_event"] input[name="mep_repeated_periods"]:focus {
	border-color: var(--mpwem-primary) !important;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12) !important;
}
[data-collapse="#mep_everyday_event"] > ._layout_default_xs_mp_zero > ._padding_bt > .label-text {
	display: block;
	max-width: 510px;
	margin-left: auto;
	text-align: left;
}
.mpwem-date-step .dFlex,
.mpwem-date-step ._dFlex {
	display: flex !important;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	justify-content: end;
}
.mpwem-date-input-wrap {
	position: relative;
	display: inline-flex !important;
	align-items: center;
	width: 100%;
	flex-shrink: 0;
	margin: 0;
}
.mpwem-time-input-wrap {
	position: relative;
	display: inline-flex !important;
	align-items: center;
	width: 98%px;
	flex-shrink: 0;
	margin: 0;
}
.mpwem-date-input,
.mpwem-time-input {
	width: 100% !important;
	max-width: none !important;
	height: 42px !important;
	padding-left: 38px !important;
	padding-right: 44px !important;
	border-color: #d9e2ef !important;
	border-radius: 10px !important;
	background: #fff !important;
	font-size: 13px !important;
}
.mpwem-time-input {
	padding-right: 76px !important;
}
.mpwem-date-input-wrap::before,
.mpwem-time-input-wrap::before {
	position: absolute;
	left: 12px;
	z-index: 1;
	color: #64748b;
	font-family: dashicons;
	font-size: 17px;
	line-height: 1;
	pointer-events: none;
}
.mpwem-date-input-wrap::before {
	content: "\f145";
}
/* .mpwem-time-input-wrap::before {
	content: "\f469";
} */
.mpwem-date-input:focus,
.mpwem-time-input:focus {
	border-color: var(--mpwem-primary) !important;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12) !important;
}
.mpwem-date-input-wrap .mpwem_date_reset,
.mpwem-date-input-wrap .remove_icon {
	position: absolute;
	right: 8px;
	top: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	margin: 0;
	border-radius: 999px;
	transform: translateY(-50%);
	background: #fff1f2;
	color: var(--mpwem-danger);
	border: 1px solid #fecdd3;
	font-size: 11px;
	line-height: 1;
	cursor: pointer;
	z-index: 2;
}
.mpwem-time-input-wrap .mpwem_time_reset {
	position: absolute;
	right: 10px;
	top: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	margin: 0;
	border: 1px solid #fecdd3;
	border-radius: 999px;
	background: #fff1f2;
	color: var(--mpwem-danger);
	font-size: 11px;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
	z-index: 2;
}
.mpwem-time-input-wrap .mpwem_time_reset:hover,
.mpwem-time-input-wrap .mpwem_time_reset:focus {
	border-color: #fda4af;
	background: #ffe4e6;
	color: var(--mpwem-danger);
	outline: none;
}
.mpwem-date-step .mpwem-date-table {
	margin: 0 !important;
	border-color: #dbe4f0 !important;
	box-shadow: none;
}
.mpwem-date-step ._ov_auto,
.mpwem-date-step .mep-special-dates-wrap {
	border-radius: 12px;
	overflow-x: auto;
	background: #fff;
}
.mpwem-date-step .mpwem-date-table th {
	background: #eef4fb !important;
	color: #31445f !important;
	font-size: 11px !important;
	letter-spacing: 0.04em !important;
}
.mpwem-date-step .mpwem-date-table td {
	padding: 12px !important;
}
/* .mpwem-date-step .mpwem-date-table tr:hover td {
	background: #fbfdff !important;
} */
#mpwem_particular_date_modal_mount ._ov_auto {
	display: block;
	width: 100%;
	min-width: 0;
	max-width: 100%;
	box-sizing: border-box;
	overflow-x: auto;
	overflow-y: visible;
	-webkit-overflow-scrolling: touch;
	touch-action: pan-x;
	overscroll-behavior-x: contain;
	padding-bottom: 2px;
	cursor: grab;
}
#mpwem_particular_date_modal_mount ._ov_auto.is-dragging {
	cursor: grabbing;
	user-select: none;
}
body.mpwem-drag-scroll-active {
	user-select: none;
}
#mpwem_particular_date_modal_mount .mpwem-date-table {
	display: table;
	width: max-content;
	min-width: 100%;
	max-width: none;
	table-layout: auto;
}
#mpwem_particular_date_modal_mount [data-collapse="#mep_normal_event"] ._ov_auto {
	display: block;
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
	overflow-y: visible;
	cursor: grab;
	touch-action: pan-x;
}
#mpwem_particular_date_modal_mount [data-collapse="#mep_normal_event"] .mpwem-date-table {
	width: max-content;
	min-width: 100%;
}
#mpwem_particular_date_modal_mount [data-collapse="#mep_normal_event"] .mpwem-date-table th:nth-child(1),
#mpwem_particular_date_modal_mount [data-collapse="#mep_normal_event"] .mpwem-date-table td:nth-child(1),
#mpwem_particular_date_modal_mount [data-collapse="#mep_normal_event"] .mpwem-date-table th:nth-child(3),
#mpwem_particular_date_modal_mount [data-collapse="#mep_normal_event"] .mpwem-date-table td:nth-child(3) {
	min-width: 190px;
}
#mpwem_particular_date_modal_mount [data-collapse="#mep_normal_event"] .mpwem-date-table th:nth-child(2),
#mpwem_particular_date_modal_mount [data-collapse="#mep_normal_event"] .mpwem-date-table td:nth-child(2),
#mpwem_particular_date_modal_mount [data-collapse="#mep_normal_event"] .mpwem-date-table th:nth-child(4),
#mpwem_particular_date_modal_mount [data-collapse="#mep_normal_event"] .mpwem-date-table td:nth-child(4) {
	min-width: 130px;
}
#mpwem_particular_date_modal_mount [data-collapse="#mep_normal_event"] .mpwem-date-table th:last-child,
#mpwem_particular_date_modal_mount [data-collapse="#mep_normal_event"] .mpwem-date-table td:last-child {
	min-width: 90px;
}
#mpwem_particular_date_modal_mount .mpwem-date-table th,
#mpwem_particular_date_modal_mount .mpwem-date-table td {
	width: auto;
	min-width: max-content;
	white-space: nowrap;
}
#mpwem_particular_date_modal_mount .mpwem-date-table th:nth-child(1),
#mpwem_particular_date_modal_mount .mpwem-date-table td:nth-child(1),
#mpwem_particular_date_modal_mount .mpwem-date-table th:nth-child(3),
#mpwem_particular_date_modal_mount .mpwem-date-table td:nth-child(3) {
	width: 190px;
	min-width: 190px;
}
#mpwem_particular_date_modal_mount .mpwem-date-table th:nth-child(2),
#mpwem_particular_date_modal_mount .mpwem-date-table td:nth-child(2),
#mpwem_particular_date_modal_mount .mpwem-date-table th:nth-child(4),
#mpwem_particular_date_modal_mount .mpwem-date-table td:nth-child(4) {
	width: 161px;
	min-width: 130px;
}
#mpwem_particular_date_modal_mount .mpwem-date-table th:nth-child(n+5):not(:last-child),
#mpwem_particular_date_modal_mount .mpwem-date-table td:nth-child(n+5):not(:last-child) {
	width: 120px;
	min-width: 120px;
}
#mpwem_particular_date_modal_mount .mpwem-date-table th:last-child,
#mpwem_particular_date_modal_mount .mpwem-date-table td:last-child {
	width: 110px;
	min-width: 110px;
}
#mpwem_particular_date_modal_mount .mpwem-date-table input[type="number"].formControl.mpwem-field-error {
	border-color: #e11d48 !important;
	box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.12) !important;
	background: #fff7f8 !important;
}
#mpwem_particular_date_modal .mpwem-ticket-modal__body {
	overflow-x: auto;
}
#mpwem_particular_date_modal .mpwem-ticket-modal__mount,
#mpwem_particular_date_modal .mpwem-ticket-modal__mount > [data-collapse="#mep_particular_event"],
#mpwem_particular_date_modal .mpwem-ticket-modal__mount > [data-collapse="#mep_normal_event"],
#mpwem_particular_date_modal .mpwem-ticket-modal__mount ._layout_default_xs_mp_zero,
#mpwem_particular_date_modal .mpwem-ticket-modal__mount .mpwem_settings_area {
	min-width: 0;
	width: 100%;
	max-width: 100%;
}
#mpwem_particular_date_modal [data-collapse="#mep_particular_event"] ._ov_auto,
#mpwem_particular_date_modal [data-collapse="#mep_normal_event"] ._ov_auto {
	margin-right: 0;
}
.mep-special-datetime > section:not(.bg-light) {
	padding: 14px 18px !important;
}
.mep-special-datetime > section > .mpwem_settings_area {
	padding: 0 !important;
}
.mep-special-datetime .mep-special-dates-wrap {
	border: 1px solid #d9e2ef;
	border-radius: 12px;
	background: #fff;
	overflow-x: auto;
}
.mep-special-datetime .mep_special_on_dates_table {
	width: 100%;
	min-width: 980px;
	margin: 0 !important;
	border: 0 !important;
	border-collapse: separate !important;
	border-spacing: 0 !important;
	box-shadow: none !important;
	table-layout: fixed;
}
.mep-special-datetime .mep_special_on_dates_table > thead > tr > th:nth-child(1),
.mep-special-datetime .mep_special_on_dates_table > tbody > tr > td:nth-child(1) {
	width: 15%;
}
.mep-special-datetime .mep_special_on_dates_table > thead > tr > th:nth-child(2),
.mep-special-datetime .mep_special_on_dates_table > tbody > tr > td:nth-child(2),
.mep-special-datetime .mep_special_on_dates_table > thead > tr > th:nth-child(3),
.mep-special-datetime .mep_special_on_dates_table > tbody > tr > td:nth-child(3) {
	width: 16%;
}
.mep-special-datetime .mep_special_on_dates_table > thead > tr > th:nth-child(4),
.mep-special-datetime .mep_special_on_dates_table > tbody > tr > td:nth-child(4) {
	width: 43%;
}
.mep-special-datetime .mep_special_on_dates_table > thead > tr > th:nth-child(5),
.mep-special-datetime .mep_special_on_dates_table > tbody > tr > td:nth-child(5) {
	width: 10%;
	text-align: center;
}
.mep-special-datetime .mep_special_on_dates_table > thead > tr > th {
	padding: 10px 8px !important;
	background: #eef4fb !important;
	border-bottom: 1px solid #d9e2ef !important;
	color: #31445f !important;
	font-size: 11px !important;
	font-weight: 800 !important;
	letter-spacing: 0.04em !important;
	text-transform: uppercase;
}
.mep-special-datetime .mep_special_on_dates_table > tbody > tr > td {
	padding: 8px !important;
	border-bottom: 1px solid #eef2f7 !important;
	background: #fff !important;
	vertical-align: top;
}
.mep-special-datetime .mep_special_on_dates_table > tbody > tr:last-child > td {
	border-bottom: 0 !important;
}
.mep-special-datetime .mep_special_on_dates_table > tbody > tr:hover > td {
	background: #fbfdff !important;
}
.mep-special-datetime .mep_special_on_dates_table label {
	display: block;
	margin: 0;
}
.mep-special-datetime .mep_special_on_dates_table input[type="text"],
.mep-special-datetime .mep_special_on_dates_table input[type="time"],
.mep-special-datetime .mep_special_on_dates_table .formControl,
.mep-special-datetime .mep_special_on_dates_table .name_validation {
	width: 100% !important;
	max-width: 100% !important;
	height: 38px !important;
	padding: 7px 10px !important;
	border: 1px solid #d9e2ef !important;
	border-radius: 9px !important;
	background: #fff !important;
	font-size: 12px !important;
	box-sizing: border-box;
}
.mep-special-datetime .mep_special_on_dates_table .mpwem-date-input,
.mep-special-datetime .mep_special_on_dates_table .mpwem-time-input {
	height: 38px !important;
	text-align: center;
}
.mep-special-datetime .mep_special_on_dates_table .mpwem-date-input-wrap,
.mep-special-datetime .mep_special_on_dates_table .mpwem-time-input-wrap {
	width: 100%;
}
.mep-special-datetime .mep_special_on_dates_table > tbody > tr > td > .mpwem_settings_area {
	padding: 0 !important;
}
.mep-special-datetime .mep_special_on_dates_table td .mpwem_settings_area table {
	display: block;
	width: 100%;
	margin: 0 !important;
	border: 1px solid #e2e8f0 !important;
	border-collapse: separate !important;
	border-spacing: 0 !important;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: none !important;
}
.mep-special-datetime .mep_special_on_dates_table td .mpwem_settings_area table thead,
.mep-special-datetime .mep_special_on_dates_table td .mpwem_settings_area table tbody {
	display: block;
	width: 100%;
}
.mep-special-datetime .mep_special_on_dates_table td .mpwem_settings_area table tr {
	display: grid;
	grid-template-columns: minmax(90px, 1fr) 120px 76px;
	gap: 6px;
	align-items: center;
	width: 100%;
	box-sizing: border-box;
}
.mep-special-datetime .mep_special_on_dates_table td .mpwem_settings_area table th,
.mep-special-datetime .mep_special_on_dates_table td .mpwem_settings_area table td {
	padding: 6px !important;
	border-bottom: 1px solid #eef2f7 !important;
	width: auto !important;
	min-width: 0 !important;
	box-sizing: border-box;
	text-align: left;
}
.mep-special-datetime .mep_special_on_dates_table td .mpwem_settings_area table th:last-child,
.mep-special-datetime .mep_special_on_dates_table td .mpwem_settings_area table td:last-child {
	text-align: center;
}
.mep-special-datetime .mep_special_on_dates_table td .mpwem_settings_area table tr:last-child td {
	border-bottom: 0 !important;
}
.mep-special-datetime .mep_special_on_dates_table td .mpwem_settings_area table .allCenter,
.mep-special-datetime .mep_special_on_dates_table td .mpwem_settings_area table .buttonGroup,
.mep-special-datetime .mep_special_on_dates_table > tbody > tr > td:nth-child(5) .allCenter,
.mep-special-datetime .mep_special_on_dates_table > tbody > tr > td:nth-child(5) .buttonGroup {
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
}
.mep-special-datetime .mep_special_on_dates_table td .mpwem_settings_area .mpwem_add_item {
	display: inline-flex !important;
	visibility: visible !important;
	opacity: 1 !important;
	margin-top: 8px !important;
}
.mpwem-ticket-modal__mount .mep-special-datetime .mep_special_on_dates_table td .mpwem_settings_area .mpwem_add_item {
	display: inline-flex !important;
	visibility: visible !important;
	opacity: 1 !important;
}
.mep-special-datetime .mep_special_on_dates_table .buttonGroup {
	justify-content: center;
	gap: 6px;
}
.mpwem-date-step .mpwem_add_item,
.mpwem-date-step .ttbm_add_new_special_date {
	margin-top: 14px !important;
}
.mpwem-ticket-off-dates-field .justify_between {
	display: grid !important;
	grid-template-columns: minmax(180px, 1fr) 510px;
	gap: 18px;
	align-items: start;
}
.mpwem-ticket-off-dates-field .fdColumn {
	justify-self: start;
	text-align: left;
}
.mpwem-ticket-off-dates-field .fdColumn label span {
	color: var(--mpwem-text);
	font-size: 13px;
	font-weight: 800;
}
.mpwem-ticket-off-dates-field .mpwem_settings_area {
	justify-self: end;
	width: 510px;
	max-width: 100%;
	padding: 0 !important;
	box-sizing: border-box;
	display: grid;
	row-gap: 12px;
}
.mpwem-ticket-off-dates-field .mpwem-ticket-off-dates-actions {
	display: flex;
	justify-content: flex-end;
	width: 100%;
}
.mpwem-ticket-modal__mount .mpwem-ticket-off-dates-field .mpwem-ticket-off-dates-actions .mpwem_add_item {
	display: inline-flex !important;
	visibility: visible !important;
	opacity: 1 !important;
}
.mpwem-ticket-off-dates-field .mpwem_item_insert {
	display: grid;
	gap: 10px;
	width: 100%;
}
.mpwem-ticket-off-dates-field .mpwem_remove_area._mt_xs {
	margin: 0 !important;
}
.mpwem-ticket-off-dates-field .mpwem_remove_area > ._dFlex {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
	align-items: center;
	justify-content: end;
	width: 100%;
	padding: 10px;
	background: #d9e2ef;
	border: 1px solid #d9e2ef;
	border-radius: 12px;
	box-sizing: border-box;
}
.mpwem-ticket-off-dates-field .mpwem-date-input-wrap {
	justify-self: start;
	width: 250px;
	max-width: 100%;
}

.mpwem_sortable_area .mpwem_date_reset,
.mpwem_sortable_area .remove_icon {
	position: absolute;
	right: 8px;
	top: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	margin: 0;
	border-radius: 999px;
	transform: translateY(-50%);
	background: #fff1f2;
	color: var(--mpwem-danger);
	border: 1px solid #fecdd3;
	font-size: 11px;
	line-height: 1;
	cursor: pointer;
	z-index: 2;
}

.mpwem_sortable_area label {
	position: relative;
}
.mpwem-ticket-off-dates-field .mpwem_add_item {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	margin-top: 0 !important;
	border-radius: 10px !important;
}
.mpwem-offday-grid {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(98px, 1fr));
	gap: 8px !important;
	width: 100%;
}
.mpwem-offday-option {
	margin: 0 !important;
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-height: 42px;
	padding: 8px 10px !important;
	background: #f8fafc;
	border: 1px solid #d9e2ef;
	border-radius: 10px;
}
.mpwem-offday-option input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.mpwem-offday-chip {
	display: flex !important;
	align-items: center;
	justify-content: flex-start;
	min-height: auto;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	color: #334155 !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	cursor: pointer;
}
.mpwem-offday-chip::before,
.mpwem-offday-chip::after {
	display: none !important;
	content: none !important;
}
.mpwem-offday-option:has(input:checked) {
	background: #fff7ed !important;
	border-color: #fdba74 !important;
}
.mpwem-offday-option input:checked ~ .mpwem-offday-chip {
	color: #9a3412 !important;
}
.mpwem-date-step .mpTabs.topTabs {
	border: 1px solid var(--mpwem-border);
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
}
.mpwem-date-step .tabLists {
	display: flex !important;
	gap: 4px;
	padding: 10px !important;
	margin: 0 !important;
	overflow-x: auto;
	background: #f8fafc;
	border-bottom: 1px solid var(--mpwem-border);
}
.mpwem-date-step .tabLists li {
	flex: 0 0 auto;
	padding: 9px 12px !important;
	color: #475569;
	font-size: 12px;
	font-weight: 800;
	cursor: pointer;
	border: none;
}
.mpwem-date-step .tabLists li.active,
.mpwem-date-step .tabLists li:hover {
	background: #eaf2ff;
	color: var(--mpwem-primary);
	border-color:transparent;
	border-radius: 8px;
}
.mpwem-date-step .tabsContent {
	padding: 16px;
}
.mpwem-date-step section:has(input[name="mep_disable_ticket_time"]) {
	background: #fff;
}
.mpwem-date-step section:has(input[name="mep_disable_ticket_time"]) .mpev-label {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 18px;
	align-items: center;
	margin: 0;
	padding: 0;
}
.mpwem-date-step section:has(input[name="mep_disable_ticket_time"]) h2 {
	margin: 0 !important;
	color: var(--mpwem-text);
	font-size: 14px;
	font-weight: 800;
}
.mpwem-date-step section:has(input[name="mep_disable_ticket_time"]) .label-text {
	margin-top: 5px;
}
#mep_disable_ticket_time {
	padding: 0 20px !important;
	border: 0 !important;
}
#mep_disable_ticket_time .mpTabs.topTabs {
	margin: 0;
	border-color: #d9e2ef;
	box-shadow: none;
}
#mep_disable_ticket_time .tabsContent {
	background: #fff;
}
#mep_disable_ticket_time .mpwem_settings_area {
	padding: 0 !important;
}
.mpwem-date-time-slots-table {
	display: block;
	width: 100%;
	margin: 0 !important;
	border: 0 !important;
	border-collapse: separate !important;
	border-spacing: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}
.mpwem-date-time-slots-table tbody {
	display: grid;
	gap: 10px;
	width: 100%;
}
.mpwem-date-time-slots-table tr.mpwem_remove_area {
	display: grid;
	grid-template-columns: minmax(220px, 1fr) 180px 86px;
	gap: 10px;
	align-items: center;
	width: 100%;
	padding: 10px;
	background: #f8fafc;
	border: 1px solid #d9e2ef;
	border-radius: 12px;
	box-sizing: border-box;
}
.mpwem-date-time-slots-table td {
	display: block !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}
.mpwem-date-time-slots-table label {
	display: block;
	width: 100%;
	margin: 0;
}
.mpwem-date-time-slots-table input[type="text"].formControl,
.mpwem-date-time-slots-table .mpwem-time-input {
	width: 100% !important;
	height: 42px !important;
	border: 1px solid #d9e2ef !important;
	border-radius: 10px !important;
	background: #fff !important;
	font-size: 13px !important;
}
.mpwem-date-time-slots-table input[type="text"].formControl {
	padding: 8px 12px !important;
}
.mpwem-date-time-slots-table input[type="text"].formControl:focus,
.mpwem-date-time-slots-table .mpwem-time-input:focus {
	border-color: var(--mpwem-primary) !important;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12) !important;
}
.mpwem-date-time-slots-table .mpwem-time-input-wrap {
	width: 100%;
}
.mpwem-date-time-slots-table ._w_150 {
	width: auto !important;
	min-width: 0 !important;
}
.mpwem-date-time-slots-table .allCenter,
.mpwem-date-time-slots-table .buttonGroup {
	display: flex !important;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	width: 100%;
}
.mpwem-date-time-slots-table .mpwem_item_remove,
.mpwem-date-time-slots-table .mpwem_sortable_button {
	opacity: 1 !important;
	visibility: visible !important;
}
#mep_disable_ticket_time .mpwem_add_item {
	display: inline-flex !important;
	visibility: visible !important;
	opacity: 1 !important;
	margin-top: 14px !important;
	border-radius: 10px !important;
}
.mpwem-date-format_settings,
.mpwem-date-step .mpwem_date_format_settings {
	margin-top: 4px !important;
}
.mpwem-date-step .mpwem_date_format_settings {
	border: 1px solid #d9e2ef;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
	margin-bottom: 0 !important;
}
.mpwem-date-step .mpwem_date_format_settings ._bg_light_padding {
	padding: 18px 22px !important;
	background: #f8fafc !important;
	border-bottom: 1px solid #d9e2ef;
}
.mpwem-date-step .mpwem_date_format_settings ._bg_light_padding ._justify_between_align_center_wrap {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 16px;
	align-items: center;
	margin: 0 0 4px !important;
}
.mpwem-date-step .mpwem_date_format_settings h4 {
	margin: 0 !important;
	color: var(--mpwem-text);
	font-size: 15px !important;
	font-weight: 800 !important;
}
.mpwem-date-step .mpwem_date_format_settings ._padding_bt[data-collapse="#mep_enable_custom_dt_format"] {
	display: grid;
	gap: 0;
	padding: 0 !important;
	border-bottom: 0;
}
.mpwem-date-step .mpwem_date_format_settings ._padding_bt[data-collapse="#mep_enable_custom_dt_format"] > div {
	padding: 16px 22px !important;
	border-bottom: 1px solid #eef2f7;
}
.mpwem-date-step .mpwem_date_format_settings ._padding_bt[data-collapse="#mep_enable_custom_dt_format"] > div:last-child {
	border-bottom: 0;
}
.mpwem-date-step .mpwem_date_format_settings ._pt_mt_bt {
	margin: 0 !important;
	padding-top: 16px !important;
}
.mpwem-date-step .mpwem_date_format_settings label._justify_between_align_center_wrap {
	display: grid !important;
	grid-template-columns: minmax(180px, 1fr) minmax(240px, 360px);
	gap: 18px;
	align-items: center;
	margin: 0 !important;
}
.mpwem-date-step .mpwem_date_format_settings label._justify_between_align_center_wrap ._mr {
	display: inline-flex !important;
	align-items: center;
	gap: 6px;
	justify-self: start;
	margin: 0 !important;
	color: var(--mpwem-text);
	font-size: 13px;
	font-weight: 800;
	text-align: left;
	white-space: nowrap;
}
.mpwem-date-step .mpwem_date_format_settings label._justify_between_align_center_wrap ._mr .mpwem-info-tip {
	flex: 0 0 auto;
	margin-left: 0;
	position: relative;
	top: 0;
	vertical-align: middle;
	text-align: center;
}
.mpwem-date-step .mpwem_date_format_settings select.formControl,
.mpwem-date-step .mpwem_date_format_settings input[type="text"].formControl {
	justify-self: end;
	width: 360px !important;
	max-width: 100% !important;
	height: 42px !important;
	padding: 8px 12px !important;
	border: 1px solid #d9e2ef !important;
	border-radius: 10px !important;
	background-color: #fff !important;
	color: var(--mpwem-text) !important;
	font-size: 13px !important;
	box-shadow: none !important;
	box-sizing: border-box;
}
.mpwem-date-step .mpwem_date_format_settings select.formControl:focus,
.mpwem-date-step .mpwem_date_format_settings input[type="text"].formControl:focus {
	border-color: var(--mpwem-primary) !important;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12) !important;
}
.mpwem-date-step .mpwem_date_format_settings .label-text {
	max-width: 760px;
	margin-top: 8px;
	color: var(--mpwem-muted);
	font-size: 12px;
	line-height: 1.45;
}
.mpwem-date-step .mpwem_date_format_settings .label-text a {
	color: var(--mpwem-primary);
	font-weight: 700;
	text-decoration: none;
}
.mpwem-date-step .mpwem_date_format_settings .label-text a:hover {
	text-decoration: underline;
}
body.mpwem-event-wizard-screen #ui-datepicker-div {
	display: none !important;
}
.mpwem-custom-calendar {
	position: absolute;
	z-index: 100200;
	display: none;
	width: 336px;
	padding: 14px;
	background: #fff;
	border: 1px solid #d9e2ef;
	border-radius: 16px;
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
	box-sizing: border-box;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.mpwem-custom-calendar.is-open {
	display: block;
}
.mpwem-custom-calendar__head {
	display: grid;
	grid-template-columns: 34px 1fr 34px;
	gap: 8px;
	align-items: center;
	padding-bottom: 12px;
}
.mpwem-custom-calendar__title {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 84px;
	gap: 8px;
}
.mpwem-custom-calendar__month,
.mpwem-custom-calendar__year {
	width: 100%;
	height: 34px;
	margin: 0;
	padding: 4px 10px;
	border: 1px solid #d9e2ef;
	border-radius: 9px;
	background: #fff;
	color: var(--mpwem-text);
	font-size: 12px;
	font-weight: 700;
	box-shadow: none;
	box-sizing: border-box;
}
.mpwem-custom-calendar__nav {
	display: grid !important;
	place-items: center;
	width: 34px !important;
	height: 34px !important;
	min-width: 34px !important;
	padding: 0 !important;
	border: 1px solid #d9e2ef !important;
	border-radius: 9px !important;
	background: #f8fafc !important;
	color: #475569 !important;
	box-shadow: none !important;
	cursor: pointer;
}
.mpwem-custom-calendar__nav:hover {
	background: #eaf2ff !important;
	border-color: #bfd1ef !important;
}
.mpwem-custom-calendar__week,
.mpwem-custom-calendar__days {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 5px;
}
.mpwem-custom-calendar__week {
	margin-bottom: 5px;
}
.mpwem-custom-calendar__week span {
	display: grid;
	place-items: center;
	width: 100%;
	height: 24px;
	color: #64748b;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}
.mpwem-custom-calendar__empty,
.mpwem-custom-calendar__day {
	width: 100%;
	min-width: 0;
	aspect-ratio: 1 / 1;
}
.mpwem-custom-calendar__day {
	display: grid !important;
	place-items: center;
	padding: 0 !important;
	border: 1px solid transparent !important;
	border-radius: 10px !important;
	background: transparent !important;
	color: #334155 !important;
	font-size: 13px !important;
	font-weight: 800 !important;
	box-shadow: none !important;
	cursor: pointer;
}
.mpwem-custom-calendar__day:hover {
	background: #eaf2ff !important;
	border-color: #bfd1ef !important;
	color: var(--mpwem-primary) !important;
}
.mpwem-custom-calendar__day.is-today {
	background: #f0fdf4 !important;
	border-color: #bbf7d0 !important;
	color: #166534 !important;
}
.mpwem-custom-calendar__day.is-selected {
	background: var(--mpwem-primary) !important;
	border-color: var(--mpwem-primary) !important;
	color: #fff !important;
	box-shadow: 0 8px 18px rgba(37, 99, 235, 0.28) !important;
}
.mpwem-custom-calendar__day.is-disabled,
.mpwem-custom-calendar__day:disabled {
	background: transparent !important;
	border-color: transparent !important;
	color: #cbd5e1 !important;
	cursor: not-allowed;
	box-shadow: none !important;
}
.mpwem-custom-calendar__foot {
	display: flex;
	justify-content: space-between;
	gap: 8px;
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid #eef2f7;
}
.mpwem-custom-calendar__today,
.mpwem-custom-calendar__clear {
	height: 34px !important;
	padding: 0 12px !important;
	border-radius: 9px !important;
	font-size: 12px !important;
	font-weight: 800 !important;
}
.mpwem-custom-calendar__today {
	background: #eaf2ff !important;
	border: 1px solid #bfd1ef !important;
	color: var(--mpwem-primary) !important;
}
.mpwem-custom-calendar__clear {
	background: #fff1f2 !important;
	border: 1px solid #fecdd3 !important;
	color: var(--mpwem-danger) !important;
}
@media screen and (max-width: 900px) {
	.mpwem-date-type-selector,
	.mpwem-date-step ._justify_between_align_center_wrap,
	.mpwem-date-step .justify_between {
		grid-template-columns: 1fr;
	}
	[data-collapse="#mep_everyday_event"] > ._layout_default_xs_mp_zero > ._padding_bt ._justify_between_align_center_wrap {
		grid-template-columns: 1fr;
	}
	.mpwem-ticket-modal__mount [data-collapse="#mep_everyday_event"] ._justify_between_align_center_wrap {
		grid-template-columns: 1fr !important;
		gap: 14px !important;
	}
	.mpwem-ticket-modal__mount .mpwem-repeat-schedule-shell {
		padding: 14px !important;
	}
	.mpwem-ticket-modal__mount .mpwem-repeat-row,
	.mpwem-ticket-modal__mount .mpwem-repeat-times-panel,
	.mpwem-ticket-modal__mount .mpwem-repeat-special-panel {
		padding: 16px !important;
		border-radius: 16px !important;
	}
	.mpwem-ticket-off-dates-field .justify_between {
		grid-template-columns: 1fr;
	}
	[data-collapse="#mep_everyday_event"] > ._layout_default_xs_mp_zero > ._padding_bt ._justify_between_align_center_wrap > label:first-child,
	[data-collapse="#mep_everyday_event"] > ._layout_default_xs_mp_zero > ._padding_bt label._justify_between_align_center_wrap > ._mr,
	[data-collapse="#mep_everyday_event"] > ._layout_default_xs_mp_zero > ._padding_bt ._justify_between_align_center_wrap > .dFlex,
	[data-collapse="#mep_everyday_event"] > ._layout_default_xs_mp_zero > ._padding_bt ._justify_between_align_center_wrap > ._dFlex,
	[data-collapse="#mep_everyday_event"] input[name="mep_repeated_periods"] {
		justify-self: start;
		text-align: left;
	}
	[data-collapse="#mep_everyday_event"] > ._layout_default_xs_mp_zero > ._padding_bt ._justify_between_align_center_wrap > .dFlex,
	[data-collapse="#mep_everyday_event"] > ._layout_default_xs_mp_zero > ._padding_bt ._justify_between_align_center_wrap > ._dFlex,
	[data-collapse="#mep_everyday_event"] > ._layout_default_xs_mp_zero > ._padding_bt > .label-text,
	.mpwem-ticket-off-dates-field .mpwem_settings_area {
		width: 100%;
		max-width: 100%;
	}
	.mpwem-ticket-off-dates-field .mpwem_settings_area {
		justify-self: start;
	}
	.mpwem-ticket-modal__mount .mpwem-repeat-field-group {
		grid-template-columns: 1fr;
	}
	.mpwem-ticket-modal__mount .mpwem-repeat-row input[name="mep_repeated_periods"] {
		max-width: 100% !important;
	}
	.mpwem-date-type-option {
		min-height: 72px;
	}
	.mpwem-registration-mode__toggle {
		grid-template-columns: 1fr;
	}
	.mpwem-date-buffer-field ._justify_between_align_center_wrap {
		grid-template-columns: 1fr;
	}
	.mpwem-date-time-slots-table tr.mpwem_remove_area,
	.mpwem-date-step section:has(input[name="mep_disable_ticket_time"]) .mpev-label {
		grid-template-columns: 1fr;
	}
	.mpwem-date-step .mpwem_date_format_settings label._justify_between_align_center_wrap,
	.mpwem-date-step .mpwem_date_format_settings ._bg_light_padding ._justify_between_align_center_wrap {
		grid-template-columns: 1fr;
	}
	.mpwem-date-step .mpwem_date_format_settings select.formControl,
	.mpwem-date-step .mpwem_date_format_settings input[type="text"].formControl {
		justify-self: start;
		width: 100% !important;
	}
	.mpwem-display-section ._justify_between_align_center_wrap,
	.mpwem-display-section .justify_between,
	.mpwem-display-section .mpev-label {
		grid-template-columns: 1fr;
	}
	.mpwem-display-section--seo #mep_rich_text_table td:first-child {
		width: auto;
	}
	.mpwem-display-section--template .mep-template-section {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	}
	.mpwem-date-step section:has(input[name="mep_disable_ticket_time"]) .mpev-switch {
		justify-self: start;
	}
	.mpwem-date-buffer-field ._mr {
		justify-self: start;
		text-align: left;
	}
}
@media screen and (max-width: 520px) {
	.mpwem-custom-calendar {
		width: calc(100vw - 40px);
	}
	.mpwem-ticket-off-dates-field .mpwem_remove_area > ._dFlex {
		grid-template-columns: 1fr;
		justify-content: stretch;
	}
	.mpwem-ticket-off-dates-field .mpwem-date-input-wrap {
		width: 100%;
	}
	.mpwem-date-time-slots-table tr.mpwem_remove_area {
		padding: 12px;
	}
	.mpwem-date-time-slots-table .allCenter,
	.mpwem-date-time-slots-table .buttonGroup {
		justify-content: flex-start;
	}
	.mpwem-date-step ._padding_bt,
	.mpwem-date-step section:not(.bg-light),
	.mpwem-date-type-selector {
		padding: 16px !important;
	}
}
/* Action buttons in table */
.mpwem_ticket_table .buttonGroup {
	display: flex;
	gap: 8px;
	justify-content: center;
}
.mpwem_item_remove {
	width: 34px !important;
	height: 34px !important;
	padding: 0 !important;
	background: var(--mpwem-btn-danger-bg) !important;
	color: var(--mpwem-btn-danger-text) !important;
	border: 1px solid var(--mpwem-btn-danger-border) !important;
	border-radius: 8px !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s;
}
button.mpwem_item_remove span{
	color: var(--mpwem-btn-danger-text) !important;
}
#mpwem_ticket_editor_modal button.mpwem_item_remove:hover span,
#mpwem_ticket_editor_modal button.mpwem_item_remove:focus span{
	color: #fff !important;
}

.mpwem_item_remove:hover {
	background: var(--mpwem-btn-danger-hover-bg) !important;
	color: var(--mpwem-btn-danger-hover-text) !important;
	transform: scale(1.05);
}
.mpwem_sortable_button {
	width: 34px !important;
	height: 34px !important;
	padding: 0 !important;
	background: var(--mpwem-btn-secondary-bg) !important;
	color: var(--mpwem-btn-secondary-text) !important;
	border: 1px solid var(--mpwem-btn-secondary-border) !important;
	border-radius: 8px !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	cursor: move;
}
.mpwem-date-step .mpwem_sortable_button,
.mpwem-date-step .mpwem_sortable_button span,
.mpwem-ticket-off-dates-field .mpwem_sortable_button,
.mpwem-ticket-off-dates-field .mpwem_sortable_button span {
	opacity: 1 !important;
	visibility: visible !important;
}
.mpwem-ticket-off-dates-field .mpwem_sortable_button .fa-expand-arrows-alt {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 1em;
	height: 1em;
	color: inherit !important;
	font-size: 13px !important;
	line-height: 1 !important;
}
.mpwem-date-step .mpwem_sortable_button .fa-expand-arrows-alt {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 1em;
	height: 1em;
	color: inherit !important;
	font-size: 13px !important;
	line-height: 1 !important;
}
.mpwem-ticket-modal__mount .mpwem_extra_service_table .mpwem_sortable_button,
.mpwem-ticket-modal__mount .mpwem_extra_service_table .mpwem_sortable_button span {
	opacity: 1 !important;
	visibility: visible !important;
}
.mpwem-ticket-modal__mount .mpwem_extra_service_table .mpwem_sortable_button .fa-expand-arrows-alt {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 1em;
	height: 1em;
	color: inherit !important;
	font-size: 13px !important;
	line-height: 1 !important;
}
.mpwem-date-step .mpwem_sortable_button .fa-expand-arrows-alt::before,
.mpwem-ticket-off-dates-field .mpwem_sortable_button .fa-expand-arrows-alt::before {
	content: "\f31e" !important;
	font-family: "Font Awesome 5 Free" !important;
	font-weight: 900 !important;
}
.mpwem-ticket-modal__mount .mpwem_extra_service_table .mpwem_sortable_button .fa-expand-arrows-alt::before {
	content: "\f31e" !important;
	font-family: "Font Awesome 5 Free" !important;
	font-weight: 900 !important;
}
/* Add New Button Styling */
.mpwem_add_new_button_area {
	padding-top: 10px;
}
.mpwem_add_new_item.button {
	background: var(--mpwem-btn-secondary-bg) !important;
	color: var(--mpwem-btn-secondary-text) !important;
	border: 1px solid var(--mpwem-btn-secondary-border) !important;
	padding: 10px 20px !important;
	font-weight: 600 !important;
	font-size: 14px !important;
	border-radius: 8px !important;
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	transition: all 0.2s;
}
.mpwem_add_new_item.button:hover {
	background: var(--mpwem-btn-secondary-hover-bg) !important;
	border-color: var(--mpwem-btn-secondary-hover-border) !important;
	transform: translateY(-1px);
}
/* Sales Status Badges */
.ticket_status {
	padding: 4px 8px;
	border-radius: 6px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.05em;
	display: inline-flex;
	align-items: center;
	height: 20px;
}
._button_success_xxs {
	background: #ecfdf5 !important;
	color: #059669 !important;
	border: 1px solid #d1fae5 !important;
}
._button_danger_xxs {
	background: #fef2f2 !important;
	color: #dc2626 !important;
	border: 1px solid #fee2e2 !important;
}
.ticket_info {
	margin-top: 6px;
	font-size: 11px;
	color: var(--mpwem-muted);
	display: flex;
	align-items: center;
	gap: 4px;
}
._button_success_xxs[data-open-icon="mi-unlock"] {
	padding: inherit !important;
	margin: 0;
	vertical-align: middle;
}
/* Shortcode box */
code {
	background: #f8fafc;
	padding: 6px 12px;
	border: 1px solid var(--mpwem-border);
	border-radius: 6px;
	color: var(--mpwem-text);
	font-family: monospace;
	font-weight: 400;
	font-size: 13px;
}
/* Premium Saving Toaster Notification */
.mpwem-toast {
	position: fixed;
	top: 40px;
	left: 50%;
	transform: translateX(-50%) translateY(-20px);
	background-color: #1e293b; /* Dark slate */
	color: #fff;
	padding: 14px 24px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	display: flex;
	align-items: center;
	gap: 12px;
	z-index: 999999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mpwem-toast.show {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}
.mpwem-toast .dashicons {
	color: #38bdf8; /* Soft blue spinning accent */
	font-size: 18px;
	width: 18px;
	height: 18px;
	animation: mpwem-spin 1s linear infinite;
}
.mpwem-toast.is-error {
	background-color: #3b0d18;
}
.mpwem-toast.is-error .dashicons {
	color: #fb7185;
	animation: none;
}
.mpwem-toast.is-warning {
	background-color: #5b3a00;
}
.mpwem-toast.is-warning .dashicons {
	color: #fbbf24;
	animation: none;
}
.mpwem-toast.is-info .dashicons,
.mpwem-toast.is-success .dashicons {
	color: #38bdf8;
	animation: mpwem-spin 1s linear infinite;
}
@keyframes mpwem-spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}
/* Ticket Type Redesign */
.mpwem-ticket-cards-container {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 20px;
}
/* Action Bar */
.mpwem-ticket-action-bar {
	display: flex;
	align-items: center;
	padding: 12px 24px;
	background: #f8fafc;
	border-radius: 12px;
	margin-bottom: 20px;
}
.mpwem-ticket-action-bar__item {
	display: flex;
	align-items: center;
	gap: 12px;
}
.mpwem-ticket-action-bar__item label {
	margin: 0;
	font-size: 11px;
	font-weight: 800;
	color: #64748b;
	letter-spacing: 0.05em;
}
.mpwem-ticket-action-bar__divider {
	width: 1px;
	height: 24px;
	background: #e2e8f0;
	margin: 0 24px;
}
/* Global Card */
.mpwem-ticket-global-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 24px;
	margin-bottom: 24px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.mpwem-ticket-global-card__content {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 24px;
}
/* Ticket Card */
.mpwem-ticket-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 0;
	transition: all 0.2s ease;
	position: relative;
	overflow: hidden;
}
.mpwem-ticket-card:hover {
	border-color: var(--mpwem-primary);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.mpwem-ticket-card__main {
	display: grid;
	grid-template-columns: minmax(200px, 1.5fr) 100px 100px 120px minmax(200px, 1.2fr) 60px;
	gap: 20px;
	padding: 24px;
	align-items: flex-start;
}
/* Group Layouts */
.mpwem-ticket-card__group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.mpwem-ticket-card__identity {
	gap: 12px;
}
.mpwem-ticket-card__locked-name {
	font-size: 16px;
	font-weight: 700;
	color: #1e293b;
	padding: 8px 0;
}
.mpwem-card-label {
	font-size: 10px;
	font-weight: 800;
	color: #94a3b8;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin: 0;
}
.mpwem-card-sub-label {
	font-size: 11px;
	color: #64748b;
	margin-top: 4px;
}
.mpwem-global-qty-warning {
	display: none;
	margin: 2px 0 0;
	font-size: 12px;
	line-height: 1.5;
	color: #b45309;
}
.mpwem-global-qty-warning.is-visible {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}
.mpwem-global-qty-warning__action.button.button-secondary {
	min-height: 30px;
	padding: 4px 10px;
	border-color: #f59e0b;
	color: #92400e;
	background: #fff7ed;
	box-shadow: none;
}
.mpwem-global-qty-warning__action.button.button-secondary:hover,
.mpwem-global-qty-warning__action.button.button-secondary:focus {
	border-color: #d97706;
	color: #78350f;
	background: #ffedd5;
}
/* Inputs */
.mpwem-card-input {
	width: 100%;
	height: 40px;
	padding: 8px 12px;
	background: #ffffff;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	font-size: 13px;
	color: #1e293b;
	transition: all 0.2s ease;
}
.mpwem-card-input:focus {
	border-color: var(--mpwem-primary);
	outline: none;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.mpwem-event-wizard input::placeholder,
.mpwem-event-wizard textarea::placeholder,
.mpwem-event-wizard select::placeholder,
.mpwem-ticket-modal input::placeholder,
.mpwem-ticket-modal textarea::placeholder,
.mpwem-ticket-modal select::placeholder {
	color: #94a3b8;
	opacity: 1;
}
.mpwem-card-input--large {
	font-size: 16px;
	font-weight: 700;
	height: 44px;
}
.mpwem-card-input--small {
	width: 60px;
	text-align: center;
}
.mpwem-card-input-wrapper {
	position: relative;
}
.mpwem-card-input-wrapper--currency::before {
	content: '$';
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: #64748b;
	font-weight: 600;
	font-size: 13px;
}
.mpwem-card-input-wrapper--currency .mpwem-card-input {
	padding-left: 28px;
}
/* Row & Tag Layouts */
.mpwem-card-row {
	display: flex;
	align-items: center;
	gap: 10px;
}
.mpwem-card-tag {
	font-size: 9px;
	font-weight: 800;
	color: #3b82f6;
	background: #eff6ff;
	padding: 2px 6px;
	border-radius: 4px;
	letter-spacing: 0.05em;
	white-space: nowrap;
}
.mpwem-card-tag:last-child {
	color: #0891b2;
	background: #ecfeff;
}
/* Sale Period */
.mpwem-card-date-wrapper {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
}
.mpwem-card-date-wrapper .mpwem-date-input-wrap {
	width: 100% !important;
}
.mpwem-card-time-field {
	width: 100%;
}
.mpwem-card-time-field input {
	width: 100%;
	height: 40px;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	padding: 0 12px;
}
/* Actions */
.mpwem-ticket-card__actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
	padding-top: 4px;
}
.mpwem-ticket-card__action-btn {
	background: transparent;
	border: none;
	color: #94a3b8;
	cursor: pointer;
	padding: 8px;
	border-radius: 6px;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}
.mpwem-ticket-card__action-btn:hover {
	background: #f1f5f9;
	color: #64748b;
}
.mpwem-ticket-card__action-btn--danger:hover {
	background: #fef2f2;
	color: #ef4444;
}
.mpwem_sortable_button {
	cursor: grab;
	display: flex;
	gap: 2px;
}
.mpwem_sortable_button:active {
	cursor: grabbing;
}
/* Footer */
.mpwem-ticket-footer {
	margin-top: 32px;
	display: flex;
	justify-content: flex-start;
}
.mpwem-add-ticket-btn {
	background: transparent;
	border: none;
	color: var(--mpwem-primary);
	font-weight: 600;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	padding: 8px 16px;
	border-radius: 8px;
	transition: all 0.2s ease;
}
.mpwem-add-ticket-btn:hover {
	background: rgba(37, 99, 235, 0.05);
}
/* Hide Table Layout Hint */
.mpwem-ticket-table-hint {
	display: none;
}
/* Modal Specific Adjustments */
#mpwem_ticket_modal_mount .mpwem-ticket-modal__inline-actions {
	display: none; /* Hide old inline actions */
}
#mpwem_ticket_modal_mount .mpwem-ticket-modal__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px 32px;
	background: #f8fafc;
	border-top: 1px solid #e2e8f0;
}
/* Final ticket modal overrides */
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-cards-container {
	gap: 0;
	margin-top: 0;
	width: auto;
	min-width: 100%;
	overflow-x: auto;
	box-sizing: border-box;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__body {
	overflow-x: auto;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-action-bar {
	justify-content: flex-end;
	gap: 18px;
	padding: 10px 22px;
	margin: 0;
	border-bottom: 1px solid #d7dde8;
	border-left: 0;
	border-right: 0;
	border-radius: 0;
	background: linear-gradient(180deg, #f6f8fc 0%, #eef2f7 100%);
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-action-bar__item label,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-card-label {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: capitalize;
	color: #111827;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-action-bar__divider {
	width: 1px;
	height: 28px;
	margin: 0 2px;
	background: #cfd6e3;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-global-card {
	position: relative;
	margin: 18px 20px 0;
	padding: 18px;
	border: 1px solid rgba(191, 219, 254, 0.9);
	border-radius: 18px;
	overflow: visible;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-global-card::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-global-card__content {
	position: relative;
	z-index: 1;
	grid-template-columns: minmax(220px, 1.05fr) minmax(170px, 0.75fr) minmax(170px, 0.75fr);
	gap: 14px;
	align-items: start;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-global-card__content > .mpwem-ticket-card__group {
	padding: 12px 14px;
	border: 1px solid rgba(255, 255, 255, 0.65);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.62);
	backdrop-filter: blur(10px);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-global-card .mpwem-card-label {
	margin-bottom: 5px;
	color: #0f172a;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-global-card .mpwem-card-input {
	height: 38px;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-global-card .mpwem-card-sub-label {
	margin-top: 5px;
	font-size: 11px;
	line-height: 1.45;
	color: #4b5563;
}
#mpwem_ticket_pricing_settings ._padding_bt:has(input[name="mpwem_show_mm"]) {
	margin: 18px 0;
	padding: 22px 24px;
	border: 1px solid #dbe4f0;
	border-radius: 18px;
	background:
		radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 34%),
		linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	box-shadow: 0 18px 36px -32px rgba(15, 23, 42, 0.45);
}
#mpwem_ticket_pricing_settings ._padding_bt:has(input[name="mpwem_show_mm"]) > ._justify_between_align_center_wrap {
	align-items: center;
	gap: 16px;
	margin-bottom: 8px;
}
#mpwem_ticket_pricing_settings ._padding_bt:has(input[name="mpwem_show_mm"]) > ._justify_between_align_center_wrap label {
	margin: 0;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.01em;
	color: #10233f;
}
#mpwem_ticket_pricing_settings ._padding_bt:has(input[name="mpwem_show_mm"]) > .des_info {
	display: block;
	max-width: 760px;
	margin: 0 0 14px;
	font-size: 13px;
	line-height: 1.55;
	color: #526173;
}
#mpwem_ticket_pricing_settings ._padding_bt:has(input[name="mpwem_show_mm"]) > [data-collapse="#mpwem_show_mm"] {
	margin-top: 14px;
	padding: 16px;
	border: 1px solid #e1e9f4;
	border-radius: 16px;
	background: rgba(248, 250, 252, 0.92);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
#mpwem_ticket_pricing_settings ._padding_bt:has(input[name="mpwem_show_mm"]) > [data-collapse="#mpwem_show_mm"] > div {
	padding: 0;
}
#mpwem_ticket_pricing_settings ._padding_bt:has(input[name="mpwem_show_mm"]) > [data-collapse="#mpwem_show_mm"] label._justify_between_align_center_wrap {
	display: grid;
	grid-template-columns: minmax(150px, 0.34fr) minmax(260px, 1fr);
	align-items: center;
	gap: 16px;
	margin: 0;
}
#mpwem_ticket_pricing_settings ._padding_bt:has(input[name="mpwem_show_mm"]) > [data-collapse="#mpwem_show_mm"] ._mr {
	margin: 0;
	font-size: 13px;
	font-weight: 800;
	color: #243449;
}
#mpwem_ticket_pricing_settings ._padding_bt:has(input[name="mpwem_show_mm"]) select[name="mep_mm_min_max_type"],
#mpwem_ticket_pricing_settings ._padding_bt:has(input[name="mpwem_show_mm"]) input[name="mep_mm_min_qty_global"],
#mpwem_ticket_pricing_settings ._padding_bt:has(input[name="mpwem_show_mm"]) input[name="mep_mm_max_qty_global"] {
	width: 100%;
	min-height: 40px;
	border: 1px solid #cfd9e8;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
	color: #10233f;
}
#mpwem_ticket_pricing_settings ._padding_bt:has(input[name="mpwem_show_mm"]) > [data-collapse="#mpwem_show_mm"] .des_info {
	display: block;
	margin: 7px 0 0;
	padding-left: calc(34% + 16px);
	font-size: 12px;
	line-height: 1.45;
	color: #64748b;
}
#mpwem_ticket_pricing_settings ._padding_bt:has(input[name="mpwem_show_mm"]) [data-collapse="#mep_mm_global"],
#mpwem_ticket_pricing_settings ._padding_bt:has(input[name="mpwem_show_mm"]) [data-collapse="#mep_mm_ticket_type"] {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid #dbe5f1;
}
#mpwem_ticket_pricing_settings ._padding_bt:has(input[name="mpwem_show_mm"]) [data-collapse="#mep_mm_global"] .divider,
#mpwem_ticket_pricing_settings ._padding_bt:has(input[name="mpwem_show_mm"]) [data-collapse="#mep_mm_ticket_type"] .divider {
	display: none;
}
#mpwem_ticket_pricing_settings ._padding_bt:has(input[name="mpwem_show_mm"]) [data-collapse="#mep_mm_ticket_type"] > ._justify_between_align_center_wrap {
	padding: 13px 14px;
	border: 1px solid #dbe7f5;
	border-radius: 14px;
	background: #fff;
}
#mpwem_ticket_pricing_settings ._padding_bt:has(input[name="mpwem_show_mm"]) [data-collapse="#mep_mm_ticket_type"] > ._justify_between_align_center_wrap label {
	margin: 0;
	font-size: 13px;
	font-weight: 800;
	color: #17253a;
}
#mpwem_ticket_pricing_settings ._padding_bt:has(input[name="mpwem_show_mm"]) [data-collapse="#mep_mm_ticket_type"] > .des_info {
	padding-left: 14px;
}
@media (max-width: 782px) {
	#mpwem_ticket_pricing_settings ._padding_bt:has(input[name="mpwem_show_mm"]) {
		padding: 18px;
	}
	#mpwem_ticket_pricing_settings ._padding_bt:has(input[name="mpwem_show_mm"]) > [data-collapse="#mpwem_show_mm"] label._justify_between_align_center_wrap {
		grid-template-columns: 1fr;
		gap: 8px;
	}
	#mpwem_ticket_pricing_settings ._padding_bt:has(input[name="mpwem_show_mm"]) > [data-collapse="#mpwem_show_mm"] .des_info,
	#mpwem_ticket_pricing_settings ._padding_bt:has(input[name="mpwem_show_mm"]) [data-collapse="#mep_mm_ticket_type"] > .des_info {
		padding-left: 0;
	}
}
.mpwem-minmax-settings-card {
	position: relative;
	margin: 0 !important;
	padding: 22px 18px !important;
	border: 0 !important;
	border-top: 1px solid var(--mpwem-border, #dbe4f0) !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	overflow: visible;
}
.mpwem-minmax-settings-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
}
.mpwem-minmax-settings-card__head label {
	margin: 0 !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	line-height: 1.25;
	color: var(--mpwem-text, #0f172a) !important;
}
.mpwem-minmax-settings-card__head ._mr {
	margin: 0 !important;
}
.mpwem-minmax-settings-card__intro {
	display: block !important;
	margin: 0 !important;
	padding: 8px 60px 0 0 !important;
	border: 0 !important;
	background: transparent !important;
	font-size: 13px !important;
	line-height: 1.55 !important;
	color: var(--mpwem-muted, #64748b) !important;
}
.mpwem-minmax-settings-card__body {
	margin: 16px 0 0 !important;
	padding: 16px !important;
	border: 1px solid #e2e8f0 !important;
	border-radius: 14px !important;
	background:
		radial-gradient(circle at top right, rgba(37, 99, 235, 0.045), transparent 30%),
		linear-gradient(180deg, #fbfdff 0%, #f8fafc 100%) !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85) !important;
}
.mpwem-minmax-settings-card__type-row {
	padding: 0 !important;
}
.mpwem-minmax-settings-card label._justify_between_align_center_wrap {
	display: flex;
	align-items: center !important;
	gap: 18px !important;
	margin: 0 !important;
	justify-content: space-between;
}
.mpwem-minmax-settings-card .mpwem-select-wrapper {
	width: fit-content !important;
	flex: initial;
}
.mpwem-minmax-settings-card .des_info {
	padding-left: 0 !important;
}
.mpwem-minmax-settings-card label._justify_between_align_center_wrap ._mr {
	margin: 0 !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--mpwem-muted, #64748b) !important;
}
.mpwem-minmax-settings-card select[name="mep_mm_min_max_type"],
.mpwem-minmax-settings-card input[name="mep_mm_min_qty_global"],
.mpwem-minmax-settings-card input[name="mep_mm_max_qty_global"] {
	width: 100% !important;
	min-height: 42px !important;
	margin: 0 !important;
	padding: 8px 12px !important;
	border: 1px solid #cbd5e1 !important;
	border-radius: 12px !important;
	background-color: #fff !important;
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04) !important;
	color: var(--mpwem-text, #0f172a) !important;
	font-size: 14px !important;
}
.mpwem-minmax-settings-card select[name="mep_mm_min_max_type"]:focus,
.mpwem-minmax-settings-card input[name="mep_mm_min_qty_global"]:focus,
.mpwem-minmax-settings-card input[name="mep_mm_max_qty_global"]:focus {
	border-color: var(--mpwem-primary, #2563eb) !important;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14) !important;
	outline: none !important;
}
.mpwem-minmax-settings-card__body .des_info {
	display: block !important;
	margin: 8px 0 0 !important;
	/* padding-left: calc(32% + 18px) !important; */
	font-size: 12px !important;
	line-height: 1.5 !important;
	color: var(--mpwem-muted, #64748b) !important;
}
.mpwem-minmax-settings-card__global-row,
.mpwem-minmax-settings-card__ticket-row {
	margin-top: 16px !important;
	padding-top: 16px !important;
	border-top: 1px dashed #dbe5f1 !important;
}
.mpwem-minmax-settings-card__global-row .divider,
.mpwem-minmax-settings-card__ticket-row .divider {
	display: none !important;
}
.mpwem-minmax-settings-card__ticket-row > ._justify_between_align_center_wrap {
	padding: 14px 16px !important;
	border: 1px solid #dbe7f5 !important;
	border-radius: 14px !important;
	background: rgba(255, 255, 255, 0.82) !important;
	box-shadow: none !important;
}
.mpwem-minmax-settings-card__ticket-row > ._justify_between_align_center_wrap label {
	margin: 0 !important;
	font-size: 14px !important;
	font-weight: 800 !important;
	line-height: 1.35;
	color: var(--mpwem-text, #0f172a) !important;
}
/* .mpwem-minmax-settings-card__ticket-row > .des_info {
	padding-left: 16px !important;
} */
@media (max-width: 782px) {
	.mpwem-minmax-settings-card__head {
		align-items: flex-start;
	}
	.mpwem-minmax-settings-card__intro {
		padding-right: 0 !important;
	}
	.mpwem-minmax-settings-card label._justify_between_align_center_wrap {
		grid-template-columns: 1fr;
		gap: 8px !important;
	}
	.mpwem-minmax-settings-card__body .des_info,
	.mpwem-minmax-settings-card__ticket-row > .des_info {
		padding-left: 0 !important;
	}
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card {
	padding: 2px 0 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	overflow: visible;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card:first-child {
	padding-top: 6px;
	border-top: 0;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__main {
	grid-template-columns: minmax(320px, 1fr) 120px 96px 118px 92px;
	column-gap: 12px;
	row-gap: 8px;
	padding: 8px 18px;
	align-items: start;
	width: max-content;
	min-width: 100%;
	box-sizing: border-box;
}
#mpwem_ticket_editor_modal.is-advanced-columns-visible .mpwem-ticket-modal__mount .mpwem-ticket-card__main {
	grid-template-columns: minmax(320px, 1fr) 120px 96px 118px 88px 88px 92px;
}
#mpwem_ticket_editor_modal.is-sale-period-visible .mpwem-ticket-modal__mount .mpwem-ticket-card__main {
	grid-template-columns: minmax(270px, 1fr) 120px 96px 118px 263px 92px;
}
#mpwem_ticket_editor_modal.is-advanced-columns-visible.is-sale-period-visible .mpwem-ticket-modal__mount .mpwem-ticket-card__main {
	grid-template-columns: minmax(250px, 1fr) 120px 92px 112px 84px 84px 270px 92px;
}
#mpwem_ticket_editor_modal.is-global-qty-visible .mpwem-ticket-modal__mount .mpwem-ticket-card__main {
	grid-template-columns: minmax(320px, 1fr) 120px 118px 92px;
}
#mpwem_ticket_editor_modal.is-global-qty-visible.is-advanced-columns-visible .mpwem-ticket-modal__mount .mpwem-ticket-card__main {
	grid-template-columns: minmax(320px, 1fr) 120px 118px 88px 88px 92px;
}
#mpwem_ticket_editor_modal.is-global-qty-visible.is-sale-period-visible .mpwem-ticket-modal__mount .mpwem-ticket-card__main {
	grid-template-columns: minmax(270px, 1fr) 120px 118px 263px 92px;
}
#mpwem_ticket_editor_modal.is-global-qty-visible.is-advanced-columns-visible.is-sale-period-visible .mpwem-ticket-modal__mount .mpwem-ticket-card__main {
	grid-template-columns: minmax(250px, 1fr) 120px 112px 84px 84px 270px 92px;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__group,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__field {
	min-width: 0;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__group {
	align-self: flex-start;
	white-space: wrap;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__locked-name,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-card-input,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-card-time-field input.formControl,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-date-input-wrap input {
	border: 1px solid #ccd5e1;
	border-radius: 10px;
	background: #fff;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__locked-name {
	min-height: 48px;
	padding: 11px 14px;
	font-size: 17px;
	font-weight: 600;
	color: #111827;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-card-input {
	/* height: 40px; */
	padding: 8px 10px;
	font-size: 13px;
	color: #111827;
	box-sizing: border-box;
	width: 100%;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__price .mpwem-card-input {
	text-align: center;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-card-input--large {
	font-size: 14px;
	font-weight: 400;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-card-input--small {
	width: 100%;
	text-align: left;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__price .mpwem-card-input,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__capacity .mpwem-card-input,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__qty-box .mpwem-card-input,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__default-qty .mpwem-card-input,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__advance-qty .mpwem-card-input {
	max-width: none;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__qty-box select.mpwem-card-input,
#mpwem_extra_service_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__qty-box select.mpwem-card-input {
	padding-right: 34px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%2364748b' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 14px 14px;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__price {
	min-width: 96px;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__capacity {
	min-width: 96px;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__qty-box {
	min-width: 112px;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__default-qty,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__advance-qty {
	min-width: 84px;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__price,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__capacity,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__qty-box,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__default-qty,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__advance-qty {
	width: 100%;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__sale-period {
	width: 100%;
	min-width: 210px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-card-row--date {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	margin: 0;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-card-date-wrapper {
	width: auto;
	min-width: 0;
	max-width: 100%;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__sale-period label {
	margin: 0;
	white-space: nowrap;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-card-date-wrapper > label,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-card-date-field > label:first-child {
	display: block;
	position: relative;
	width: 100%;
	min-width: 0;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-card-date-wrapper input[type="hidden"] {
	display: none;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-card-date-field {
	display: inline-grid;
	grid-template-columns: 150px 108px;
	column-gap: 8px;
	align-items: center;
	justify-content: start;
	width: auto;
	max-width: 100%;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__sale-period .mpwem-date-input-wrap,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__sale-period .mpwem-card-time-field {
	width: auto;
	min-width: 0;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-card-time-field input.formControl,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-date-input-wrap input {
	height: 34px;
	padding-top: 6px;
	padding-bottom: 6px;
	font-size: 12px;
	line-height: 1.2;
	border-radius: 8px;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__sale-period .mpwem-date-input-wrap {
	width: 150px;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__sale-period .mpwem-card-time-field {
	width: 108px;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-date-input-wrap input {
	padding-right: 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-card-date-wrapper .mpwem_date_reset,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-card-date-wrapper .remove_icon {
	display: none !important;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__actions {
	flex-direction: row;
	justify-content: flex-end;
	align-self: center;
	justify-self: end;
	min-width: 64px;
	padding-top: 35px;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__identity .mpwem-card-input--large,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__identity .mpwem-ticket-card__locked-name {
	width: 100%;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__identity .mpwem-card-input:not(.mpwem-card-input--large) {
	height: 55px;
	font-size: 12px;
	border-color: #dfdfdf;
	background: #f8f8f8;
	margin-top: 5px;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__price .mpwem-card-label,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__capacity .mpwem-card-label,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__qty-box .mpwem-card-label,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__default-qty .mpwem-card-label,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__advance-qty .mpwem-card-label,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__sale-period .mpwem-card-label {
	margin-bottom: 6px;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__identity {
	padding-right: 10px;
	min-width: 220px;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__price,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__capacity {
	padding-left: 2px;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__qty-box,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__default-qty,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__advance-qty {
	padding-left: 6px;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__sale-period {
	padding-left: 8px;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-footer,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-modal__inline-actions {
	display: none !important;
}
#mpwem_particular_date_modal .mpwem-ticket-modal__mount .mpwem-ticket-modal__inline-actions {
	display: none !important;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__footer,
#mpwem_extra_service_editor_modal .mpwem-ticket-modal__footer,
#mpwem_particular_date_modal .mpwem-ticket-modal__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 28px 28px;
	border-top: 1px solid #d7dde8;
	background: #f8fbff;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__footer-actions,
#mpwem_extra_service_editor_modal .mpwem-ticket-modal__footer-actions,
#mpwem_particular_date_modal .mpwem-ticket-modal__footer-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-left: auto;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__footer-btn.button,
#mpwem_extra_service_editor_modal .mpwem-ticket-modal__footer-btn.button,
#mpwem_particular_date_modal .mpwem-ticket-modal__footer-btn.button {
	min-width: 128px;
	height: 52px;
	padding: 0 26px;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 600;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__footer-btn.button:not(.button-primary),
#mpwem_extra_service_editor_modal .mpwem-ticket-modal__footer-btn.button:not(.button-primary),
#mpwem_particular_date_modal .mpwem-ticket-modal__footer-btn.button:not(.button-primary) {
	border-color: #cbd5e1;
	background: #fff;
	color: #334155;
	box-shadow: none;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__footer-btn.button:not(.button-primary):hover,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__footer-btn.button:not(.button-primary):focus,
#mpwem_extra_service_editor_modal .mpwem-ticket-modal__footer-btn.button:not(.button-primary):hover,
#mpwem_extra_service_editor_modal .mpwem-ticket-modal__footer-btn.button:not(.button-primary):focus,
#mpwem_particular_date_modal .mpwem-ticket-modal__footer-btn.button:not(.button-primary):hover,
#mpwem_particular_date_modal .mpwem-ticket-modal__footer-btn.button:not(.button-primary):focus {
	border-color: #94a3b8;
	background: #f8fafc;
	color: #0f172a;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__save.button-primary,
#mpwem_extra_service_editor_modal .mpwem-extra-service-modal__save.button-primary,
#mpwem_particular_date_modal .mpwem-date-modal__save.button-primary {
	min-width: 180px;
	border-color: var(--mpwem-primary);
	background: var(--mpwem-primary);
	color: #fff;
	box-shadow: none;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__save.button-primary:hover,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__save.button-primary:focus,
#mpwem_extra_service_editor_modal .mpwem-extra-service-modal__save.button-primary:hover,
#mpwem_extra_service_editor_modal .mpwem-extra-service-modal__save.button-primary:focus,
#mpwem_particular_date_modal .mpwem-date-modal__save.button-primary:hover,
#mpwem_particular_date_modal .mpwem-date-modal__save.button-primary:focus {
	border-color: var(--mpwem-primary-hover) !important;
	background: var(--mpwem-primary-hover) !important;
	color: #fff !important;
	box-shadow: none !important;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__save.button-primary.is-saving,
#mpwem_extra_service_editor_modal .mpwem-extra-service-modal__save.button-primary.is-saving,
#mpwem_particular_date_modal .mpwem-date-modal__save.button-primary.is-saving {
	position: relative;
	padding-right: 48px;
	opacity: 0.88;
	pointer-events: none;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__save.button-primary.is-saving::after,
#mpwem_extra_service_editor_modal .mpwem-extra-service-modal__save.button-primary.is-saving::after,
#mpwem_particular_date_modal .mpwem-date-modal__save.button-primary.is-saving::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	width: 14px;
	height: 14px;
	margin-top: -7px;
	border: 2px solid rgba(255, 255, 255, 0.45);
	border-top-color: #ffffff;
	border-radius: 50%;
	animation: mpwemTicketSaveSpin 0.8s linear infinite;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__add.button.button-link,
#mpwem_extra_service_editor_modal .mpwem-extra-service-modal__add.button.button-link,
#mpwem_particular_date_modal .mpwem-date-modal__add.button.button-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	border: 1px solid #bfdbfe;
	border-radius: 999px;
	background: #eff6ff;
	color: #1d4ed8;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 10px 24px -20px rgba(29, 78, 216, 0.65);
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__add.button.button-link::before,
#mpwem_extra_service_editor_modal .mpwem-extra-service-modal__add.button.button-link::before,
#mpwem_particular_date_modal .mpwem-date-modal__add.button.button-link::before {
	content: "+";
	font-size: 24px;
	line-height: 1;
	font-weight: 500;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__add.button.button-link:hover,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__add.button.button-link:focus,
#mpwem_extra_service_editor_modal .mpwem-extra-service-modal__add.button.button-link:hover,
#mpwem_extra_service_editor_modal .mpwem-extra-service-modal__add.button.button-link:focus,
#mpwem_particular_date_modal .mpwem-date-modal__add.button.button-link:hover,
#mpwem_particular_date_modal .mpwem-date-modal__add.button.button-link:focus {
	border-color: #93c5fd;
	background: #dbeafe;
	color: #1e40af;
	box-shadow: 0 16px 30px -22px rgba(30, 64, 175, 0.8);
}
@media (max-width: 991px) {
	#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-action-bar {
		flex-wrap: wrap;
		justify-content: flex-start;
		margin-inline: 0;
		padding-inline: 0;
		border-top: 0;
	}
	#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-global-card__content,
	#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__main {
		grid-template-columns: 1fr;
	}
	#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-card-row--date,
	#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-card-date-field {
		width: 100%;
	}
	#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-card-date-field {
		grid-template-columns: minmax(0, 1fr) 108px;
	}
	#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__sale-period .mpwem-date-input-wrap {
		width: auto;
	}
	#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__price .mpwem-card-input,
	#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__capacity .mpwem-card-input,
	#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__qty-box .mpwem-card-input,
	#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__default-qty .mpwem-card-input,
	#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__advance-qty .mpwem-card-input {
		max-width: 100%;
	}
	#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__actions {
		justify-content: flex-start;
		padding-top: 0;
	}
	#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__identity,
	#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__price,
	#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__capacity,
	#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__qty-box,
	#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__default-qty,
	#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__advance-qty,
	#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-card__sale-period {
		padding-left: 0;
		padding-right: 0;
	}
	#mpwem_ticket_editor_modal .mpwem-ticket-modal__footer,
	#mpwem_extra_service_editor_modal .mpwem-ticket-modal__footer {
		flex-direction: column;
		align-items: stretch;
	}
	#mpwem_ticket_editor_modal .mpwem-ticket-modal__footer-actions,
	#mpwem_extra_service_editor_modal .mpwem-ticket-modal__footer-actions,
	#mpwem_particular_date_modal .mpwem-ticket-modal__footer-actions {
		margin-left: 0;
	}
	#mpwem_ticket_editor_modal .mpwem-ticket-modal__footer-btn.button,
	#mpwem_ticket_editor_modal .mpwem-ticket-modal__save.button-primary,
	#mpwem_extra_service_editor_modal .mpwem-ticket-modal__footer-btn.button,
	#mpwem_extra_service_editor_modal .mpwem-extra-service-modal__save.button-primary,
	#mpwem_particular_date_modal .mpwem-ticket-modal__footer-btn.button,
	#mpwem_particular_date_modal .mpwem-date-modal__save.button-primary {
		width: 100%;
	}
}
@keyframes mpwemTicketSaveSpin {
	to {
		transform: rotate(360deg);
	}
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-table-wrap {
	margin-top: 16px;
	border: 1px solid #d7dde8;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 16px 34px -30px rgba(15, 23, 42, 0.32);
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table {
	width: max-content;
	min-width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	table-layout: fixed;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-ticket-cards-container {
	display: table-row-group;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-ticket-row {
	display: table-row;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table thead th {
	position: sticky;
	top: 0;
	z-index: 0;
	padding: 14px 12px;
	border-bottom: 1px solid #d7dde8;
	background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #0f172a;
	text-align: left;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table tbody tr:nth-child(even) td {
	background: #fafcff;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table tbody td {
	padding: 5px;
	border-bottom: 1px solid #e5edf5;
	background: #fff;
	vertical-align: top;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table tbody tr:last-child td {
	border-bottom: 0;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-ticket-card.disable_row td {
	opacity: 0.72;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table th:nth-child(1),
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table td:nth-child(1) {
	width: 300px;
	min-width: 300px;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table th:nth-child(2),
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table td:nth-child(2) {
	width: 70px;
	min-width: 70px;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table th:nth-child(3),
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table td:nth-child(3) {
	width: 110px;
	min-width: 110px;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table th:nth-child(4),
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table td:nth-child(4) {
	width: 90px;
	min-width: 90px;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table th:nth-child(5),
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table td:nth-child(5),
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table th:nth-child(6),
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table td:nth-child(6) {
	width: 85px;
	min-width: 85px;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table th:nth-child(7),
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table td:nth-child(7),
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table th:nth-child(8),
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table td:nth-child(8) {
	width: 112px;
	min-width: 112px;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table th:nth-child(9),
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table td:nth-child(9) {
	width: 260px;
	min-width: 260px;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table th:nth-child(10),
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table td:nth-child(10) {
	width: 110px;
	min-width: 110px;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table th.mpwem-ticket-table__sale-period,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table td.mpwem-ticket-card__sale-period {
	/* width: 260px; */
	min-width: 284px;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table th.mpwem-ticket-table__actions,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table td.mpwem-ticket-card__actions {
	/* width: 60px; */
	min-width: 80px;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table td.mpwem-ticket-card__group,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table td.mpwem-ticket-card__actions {
	display: table-cell;
	white-space: normal;
}
/* #mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table td.mpwem-ticket-card__group > * + * {
	margin-top: 8px;
} */
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-card-label {
	display: none;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-ticket-card__field {
	min-width: 0;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-ticket-card__locked-name,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-card-input,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-card-time-field input.formControl,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-date-input-wrap input {
	width: 100%;
	min-width: 0;
	border: 1px solid #ccd5e1;
	border-radius: 10px;
	background: #fff;
	box-sizing: border-box;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-ticket-card__locked-name {
	min-height: 44px;
	padding: 11px 14px;
	font-size: 15px;
	font-weight: 600;
	color: #111827;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-card-input {
	padding: 8px 10px;
	font-size: 13px;
	color: #111827;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-card-input--large {
	font-size: 14px;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-card-input--small,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-ticket-card__price .mpwem-card-input,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-ticket-card__capacity .mpwem-card-input,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-ticket-card__qty-box .mpwem-card-input,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-ticket-card__default-qty .mpwem-card-input,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-ticket-card__advance-qty .mpwem-card-input {
	max-width: none;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-card-input-wrapper--currency::before {
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 13px;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-card-input-wrapper--currency .mpwem-card-input {
	padding-left: 28px;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-ticket-card__qty-box select.mpwem-card-input {
	padding-right: 34px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%2364748b' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 14px 14px;
	line-height: 1;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-ticket-card__sale-period {
	min-width: 0;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table [data-collapse="#mep_mm_ticket_type"] .formControl,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table [data-collapse="#mep_mm_ticket_type"] .mp_formControl {
	width: 100%;
	max-width: 100%;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-card-row--date {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	flex-wrap: nowrap;
	margin: 0;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-card-date-wrapper {
	width: 100%;
	min-width: 0;
	max-width: 100%;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-card-date-wrapper > label,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-card-date-field > label:first-child,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-card-date-wrapper > :first-child {
	display: block;
	width: 100%;
	min-width: 0;
	margin: 0;
	color: #64748b;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-align: left;
	text-transform: uppercase;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-card-date-wrapper input[type="hidden"] {
	display: none;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-card-date-field {
	display: inline-grid;
	grid-template-columns: 150px 108px;
	column-gap: 22px;
	align-items: center;
	justify-content: start;
	width: auto;
	max-width: 100%;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-date-input-wrap,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-card-time-field {
	width: auto;
	min-width: 0;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-date-input-wrap {
	width: 172px !important;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-card-time-field {
	width: 125px;
	display: block;
	margin: 0;
	line-height: 0;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-card-time-field input.formControl,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-date-input-wrap input {
	height: 42px;
	min-height: 34px;
	padding-top: 6px;
	padding-bottom: 6px;
	padding-right: 0 !important;
	padding-left: 30px !important;
	font-size: 12px;
	line-height: 1.2;
	border-radius: 8px;
	box-sizing: border-box;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-card-date-wrapper .mpwem_date_reset,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-card-date-wrapper .remove_icon {
	display: none !important;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-ticket-card__actions {
	text-align: center;
	white-space: nowrap;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-ticket-card__action-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: #111827;
	vertical-align: middle;
}
/* #mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-ticket-card__actions > * + * {
	margin-left: 10px;
} */
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-ticket-card__action-btn:hover {
	background: #f3f4f6;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem-ticket-card__action-btn--danger:hover {
	background: #fef2f2;
	color: #dc2626;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table .mpwem_sortable_button {
	cursor: grab;
	gap: 2px;
}
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-footer,
#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-modal__inline-actions {
	display: none !important;
}
@media (max-width: 991px) {
	#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem-ticket-table-wrap {
		border-radius: 14px;
	}
	#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table thead th,
	#mpwem_ticket_editor_modal .mpwem-ticket-modal__mount .mpwem_ticket_table tbody td {
		padding: 10px;
	}
}

/*=============================*/
.mpwem-event-wizard__steps-inner{
	display:flex;
	align-items:flex-start;
	gap:24px;
	padding:30px 20px 16px;
	justify-content:center;
}

.mpwem-step{
	position:relative;
	display:flex;
	flex-direction:column;
	align-items:center;
	gap:8px;
	padding:0;
	border:none;
	background:transparent;
	cursor:pointer;
	transition:0.25s ease;
	font-size:13px;
	font-weight:600;
	color:#94a3b8;
	min-height:auto;
	flex:1;
	justify-content:center;
	max-width:245px;
	z-index:1;
}

/* Step Number Circle */
.mpwem-step::before{
	content:attr(data-step);
	width:36px;
	height:36px;
	border-radius:50%;
	background:#e2e8f0;
	color:#64748b;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:14px;
	font-weight:700;
	flex-shrink:0;
	transition:0.25s ease;
	position:relative;
	z-index:2;
}

.mpwem-step__label{
	text-align:center;
	line-height:1.3;
	white-space:nowrap;
	font-size:12px;
	color:inherit;
	transition:0.25s ease;
}

/* Standard separator line between steps */
.mpwem-step:not(:last-child)::after{
	content:"";
	position:absolute;
	top:18px;
	left:calc(50% + 24px);
	width:calc(100% + 24px - 48px);
	height:2px;
	background:#e2e8f0;
	z-index:0;
	transition:0.25s ease;
}

/* Active */
.mpwem-step.is-active{
	color:var(--mpwem-primary) !important;
	box-shadow:none;
}

.mpwem-step.is-active::before{
	background:var(--mpwem-primary) !important;
	color:#fff;
}

/* Complete */
.mpwem-step.is-complete{
	color:var(--mpwem-primary) !important;
}

.mpwem-step.is-complete::before{
	background:var(--mpwem-primary) !important;
	color:#fff;
}

.mpwem-step.is-complete::after{
	background:var(--mpwem-primary) !important;
}

/* Tablet */
@media (max-width:991px){
	.mpwem-step{
		max-width:140px;
	}
	.mpwem-step::before{
		width:32px;
		height:32px;
		font-size:13px;
	}

	.mpwem-step:not(:last-child)::after{
		top:16px;
		left:calc(50% + 22px);
		width:calc(100% + 20px - 44px);
	}

	.mpwem-step__label{
		font-size:11px;
	}
}

/* Mobile */
@media (max-width:767px){

	.mpwem-event-wizard__steps-inner{
		flex-direction:column;
		align-items:stretch;
		gap:6px;
		padding:20px 16px 12px;
	}

	.mpwem-step{
		width:100%;
		min-width:100%;
		flex-direction:row;
		justify-content:flex-start;
		padding:10px 14px;
		gap:12px;
		background:#f8fafc;
		border:1px solid #e2e8f0;
		border-radius:10px;
	}

	.mpwem-step::before{
		width:32px;
		height:32px;
		font-size:13px;
	}

	.mpwem-step:not(:last-child)::after{
		display:none;
	}

	.mpwem-step__label{
		white-space:normal;
		text-align:left;
		font-size:13px;
	}

	.mpwem-step.is-active{
		background:#fff;
		border-color:var(--mpwem-primary) !important;
		box-shadow:0 2px 8px rgba(37,99,235,0.1);
	}

	.mpwem-step.is-complete{
		background:#f0f7ff;
		border-color:var(--mpwem-primary) !important;
	}
}
