/**
 * Complx client dashboard styles.
 * Palette alignée site : navy #073B66, page #F5F7FA, border #D9E0E7, muted #586474.
 */

:root {
	--complx-dash-navy: #073B66;
	--complx-dash-navy-dark: #062F52;
	--complx-dash-page: #F5F7FA;
	--complx-dash-elevated: #FFFFFF;
	--complx-dash-border: #D9E0E7;
	--complx-dash-text: #101828;
	--complx-dash-muted: #586474;
	--complx-dash-blue-light: #EAF0F8;
	--complx-dash-footer: #0F1E40;
	--complx-dash-accent: #F4A261;
}

/* ---------- Shell ---------- */
body.complx-dashboard {
	background: var(--complx-dash-page) !important;
	color: var(--complx-dash-text);
	font-family: var(--complx-font-body, "Satoshi", "Inter", system-ui, sans-serif);
}

body.complx-dashboard .complx-dash-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100000;
	padding: 0.75rem 1rem;
	background: #fff;
	color: #073B66;
}
body.complx-dashboard .complx-dash-skip:focus {
	left: 1rem;
	top: 1rem;
}

.complx-dash-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	color: #101828;
	border-bottom: 1px solid rgba(226, 232, 240, 0.85);
	box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}
body.admin-bar .complx-dash-header {
	top: 32px;
}
@media (max-width: 782px) {
	body.admin-bar .complx-dash-header { top: 46px; }
}

.complx-dash-header__inner {
	width: 100%;
	max-width: 100rem;
	margin: 0 auto;
	padding: 0 1rem;
	min-height: 4.5rem;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}
@media (min-width: 640px) {
	.complx-dash-header__inner { padding: 0 1.5rem; }
}
@media (min-width: 1280px) {
	.complx-dash-header__inner { padding: 0 2rem; }
}

.complx-dash-brand {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	text-decoration: none !important;
}
.complx-dash-brand__shell {
	display: inline-flex;
	align-items: center;
	border-radius: 0.75rem;
	padding: 0.35rem 0.65rem;
	background: #073B66;
	line-height: 0;
	max-width: 100%;
}
.complx-dash-brand__img {
	display: block !important;
	height: 2.75rem !important;
	width: auto !important;
	max-width: 200px !important;
	object-fit: contain !important;
}
@media (min-width: 640px) {
	.complx-dash-brand__img {
		height: 3.15rem !important;
		max-width: 240px !important;
	}
}

.complx-dash-nav {
	display: none;
	align-items: center;
	justify-content: center;
	flex: 1;
	flex-wrap: nowrap;
	gap: 1.25rem;
	min-width: 0;
}
@media (min-width: 1024px) {
	.complx-dash-nav { display: flex; }
}

.complx-dash-nav__link {
	display: inline-flex;
	align-items: center;
	padding: 0.25rem 0;
	border-radius: 0;
	color: #101828 !important;
	text-decoration: none !important;
	font-size: 0.9375rem;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
	white-space: nowrap;
	background: transparent;
	border-bottom: 2px solid transparent;
	transition: color 0.2s ease, border-color 0.2s ease;
}
.complx-dash-nav__link:hover,
.complx-dash-nav__link:focus {
	background: transparent;
	color: #073B66 !important;
}
.complx-dash-nav__link.is-active {
	background: transparent;
	color: #073B66 !important;
	border-bottom-color: #073B66;
	font-weight: 600;
}
.complx-dash-nav__link--mobile-only {
	display: none;
}

.complx-dash-actions {
	display: none;
	align-items: center;
	gap: 0.65rem;
	flex-shrink: 0;
}
@media (min-width: 1024px) {
	.complx-dash-actions { display: flex; }
}

.complx-dash-logout {
	display: inline-flex;
	align-items: center;
	padding: 0.35rem 0.75rem;
	font-size: 0.9375rem;
	font-weight: 500;
	color: #586474 !important;
	text-decoration: none !important;
	white-space: nowrap;
	transition: color 0.2s ease;
}
.complx-dash-logout:hover,
.complx-dash-logout:focus {
	color: #073B66 !important;
}

.complx-dash-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	border-radius: 999px;
	background: #073B66;
	color: #fff !important;
	text-decoration: none !important;
	padding: 0.65rem 1.15rem;
	font-size: 0.875rem;
	font-weight: 600;
	white-space: nowrap;
	transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.complx-dash-cta:hover,
.complx-dash-cta:focus {
	background: #062F52;
	color: #fff !important;
	box-shadow: 0 10px 30px rgba(7, 59, 102, 0.28);
}
.complx-dash-cta:active {
	transform: scale(0.97);
}

.complx-dash-nav-toggle {
	display: flex;
	width: 40px;
	height: 40px;
	border: 1px solid #D9E0E7;
	border-radius: 8px;
	background: #fff;
	padding: 10px;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}
@media (min-width: 1024px) {
	.complx-dash-nav-toggle { display: none; }
}
.complx-dash-nav-toggle span {
	display: block;
	height: 2px;
	background: #073B66;
	border-radius: 2px;
}

.complx-dash-hero {
	background:
		radial-gradient(ellipse 70% 55% at 100% 0%, rgba(139, 180, 232, 0.22), transparent 55%),
		radial-gradient(ellipse 55% 45% at 0% 100%, rgba(6, 47, 82, 0.45), transparent 55%),
		var(--complx-dash-navy);
	color: #fff;
	padding: 2rem 1.25rem 2.5rem;
}
.complx-dash-hero__inner {
	max-width: 1180px;
	margin: 0 auto;
}
.complx-dash-hero__eyebrow {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.65);
}
.complx-dash-hero__title {
	margin: 0.5rem 0 0;
	font-family: var(--complx-font-display, "General Sans", sans-serif);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.1;
	color: #fff !important;
}
.complx-dash-hero__meta {
	margin: 0.65rem 0 0;
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.95rem;
}

.complx-dash-main-anchor {
	outline: none;
}

/* Hide legacy Elementor member chrome */
body.complx-dashboard .elementor-location-header,
body.complx-dashboard .elementor-location-footer {
	display: none !important;
}

body.complx-dashboard .elementor-top-section.complx-dash-legacy-section {
	display: none !important;
}

body.complx-dashboard .elementor-top-section.complx-dash-content-section {
	margin: -1.75rem auto 3rem !important;
	padding: 0 1.25rem !important;
	background: transparent !important;
	display: block !important;
}

body.complx-dashboard .elementor-top-section.complx-dash-content-section > .elementor-container {
	background: #fff;
	border: 1px solid rgba(226, 232, 240, 0.9);
	border-radius: 1.35rem;
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
	padding: 1.75rem 1.5rem 2rem !important;
	overflow: hidden;
	max-width: 1180px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

.complx-dash-page {
	min-height: 50vh;
}
.complx-dash-page__inner {
	padding: 0 1.25rem 2rem;
}

/* Buttons — exclude filter chips and nav toggles */
.complx-dash-btn,
body.complx-dashboard .woocommerce-Button,
body.complx-dashboard .woocommerce-button,
body.complx-dashboard .button:not(.complx-mc-filter),
body.complx-dashboard button[type="submit"]:not(.complx-mc-filter),
body.complx-dashboard .ff-btn-submit,
body.complx-dashboard input[type="submit"] {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.7rem 1.25rem !important;
	border-radius: 999px !important;
	border: none !important;
	background: #073B66 !important;
	color: #fff !important;
	font-weight: 600 !important;
	font-size: 0.875rem !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
	line-height: 1.2 !important;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
	box-shadow: 0 8px 24px rgba(7, 59, 102, 0.2);
	text-decoration: none !important;
}
.complx-dash-btn:hover,
body.complx-dashboard .woocommerce-Button:hover,
body.complx-dashboard .button:not(.complx-mc-filter):hover,
body.complx-dashboard button[type="submit"]:not(.complx-mc-filter):hover,
body.complx-dashboard .ff-btn-submit:hover {
	background: #062F52 !important;
	color: #fff !important;
	transform: translateY(-1px);
}

/* ---------- LearnDash profile ---------- */
body.complx-dashboard #ld-profile,
body.complx-dashboard .learndash-wrapper {
	font-family: inherit !important;
}

body.complx-dashboard .ld-profile-summary {
	display: grid !important;
	grid-template-columns: auto 1fr;
	gap: 1.5rem 2rem;
	align-items: center;
	padding: 0.5rem 0 1.75rem !important;
	border-bottom: 1px solid #D9E0E7;
	margin-bottom: 1.75rem !important;
	background: transparent !important;
}

body.complx-dashboard .ld-profile-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.35rem;
	text-align: left !important;
	background: transparent !important;
	box-shadow: none !important;
	border: none !important;
	padding: 0 !important;
}

body.complx-dashboard .ld-profile-avatar img,
body.complx-dashboard .ld-profile-avatar .avatar {
	width: 88px !important;
	height: 88px !important;
	border-radius: 50% !important;
	border: 3px solid #D9E0E7 !important;
	object-fit: cover;
}

body.complx-dashboard .ld-profile-heading {
	font-family: var(--complx-font-display, "General Sans", sans-serif) !important;
	font-size: 1.35rem !important;
	font-weight: 700 !important;
	color: #101828 !important;
	margin: 0.35rem 0 0 !important;
}

body.complx-dashboard .ld-profile-edit-link {
	color: #073B66 !important;
	font-size: 0.85rem !important;
	font-weight: 600 !important;
	text-decoration: none !important;
}
body.complx-dashboard .ld-profile-edit-link:hover {
	color: #f4a261 !important;
}

body.complx-dashboard .ld-profile-stats {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.75rem;
	width: 100%;
}

body.complx-dashboard .ld-profile-stat {
	background: #F5F7FA !important;
	border: 1px solid #D9E0E7 !important;
	border-radius: 1rem !important;
	padding: 1rem 0.85rem !important;
	text-align: center !important;
	box-shadow: none !important;
}

body.complx-dashboard .ld-profile-stat strong,
body.complx-dashboard .ld-profile-stat .ld-profile-stat-number {
	display: block;
	font-size: 1.55rem !important;
	font-weight: 700 !important;
	color: #073B66 !important;
	line-height: 1.1;
}

body.complx-dashboard .ld-profile-stat span,
body.complx-dashboard .ld-profile-stat .ld-profile-stat-label {
	display: block;
	margin-top: 0.25rem;
	font-size: 0.75rem !important;
	color: #586474 !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
}

body.complx-dashboard .ld-section-heading {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 1rem !important;
}
body.complx-dashboard .ld-section-heading h3,
body.complx-dashboard .ld-section-heading .ld-text {
	font-family: var(--complx-font-display, "General Sans", sans-serif) !important;
	font-size: 1.15rem !important;
	font-weight: 700 !important;
	color: #101828 !important;
	margin: 0 !important;
}

body.complx-dashboard .ld-item-list-actions .ld-expand-button,
body.complx-dashboard .ld-search-prompt {
	background: #F5F7FA !important;
	border: 1px solid #D9E0E7 !important;
	border-radius: 999px !important;
	color: #073B66 !important;
	padding: 0.45rem 0.9rem !important;
}

body.complx-dashboard .ld-item-list-item,
body.complx-dashboard .ld-item-list-items .ld-item-list-item {
	background: #fff !important;
	border: 1px solid #D9E0E7 !important;
	border-radius: 1rem !important;
	margin-bottom: 0.75rem !important;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03) !important;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
body.complx-dashboard .ld-item-list-item:hover {
	border-color: rgba(7, 59, 102, 0.25) !important;
	box-shadow: 0 10px 28px rgba(7, 59, 102, 0.08) !important;
}

body.complx-dashboard .ld-item-list-item .ld-item-name,
body.complx-dashboard .ld-item-list-item .ld-item-title {
	font-weight: 600 !important;
	color: #101828 !important;
	font-size: 0.95rem !important;
}

body.complx-dashboard .ld-status,
body.complx-dashboard .ld-status-icon {
	border-radius: 999px !important;
}

body.complx-dashboard .ld-progress .ld-progress-bar {
	background: #D9E0E7 !important;
	border-radius: 999px !important;
	overflow: hidden;
}
body.complx-dashboard .ld-progress .ld-progress-bar .ld-progress-bar-percentage {
	background: linear-gradient(90deg, #073B66, #f4a261) !important;
}

/* ---------- WooCommerce My Account ---------- */
body.complx-dashboard .woocommerce-account .woocommerce {
	display: grid;
	grid-template-columns: 240px minmax(0, 1fr);
	gap: 1.5rem;
	align-items: start;
}

/* Login / register (logged-out): one centered card, no white void */
body.complx-dashboard:not(.logged-in) .woocommerce,
body.complx-dashboard .woocommerce:has(.woocommerce-form-login):not(:has(.woocommerce-MyAccount-navigation)) {
	display: block !important;
	grid-template-columns: none !important;
	max-width: 440px;
	margin: -1.75rem auto 3rem;
	padding: 1.75rem 1.5rem 2rem !important;
	background: #fff !important;
	border: 1px solid #D9E0E7;
	border-radius: 1.35rem;
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}
body.complx-dashboard:not(.logged-in) .woocommerce > h2,
body.complx-dashboard .woocommerce:has(.woocommerce-form-login):not(:has(.woocommerce-MyAccount-navigation)) > h2 {
	margin: 0 0 1.25rem !important;
	font-family: var(--complx-font-display, "General Sans", sans-serif) !important;
	font-size: 1.35rem !important;
	font-weight: 700 !important;
	color: #101828 !important;
	text-align: left;
}

body.complx-dashboard .woocommerce-MyAccount-navigation {
	background: #F5F7FA;
	border: 1px solid #D9E0E7;
	border-radius: 1.15rem;
	padding: 0.65rem;
}

body.complx-dashboard .woocommerce-MyAccount-navigation ul {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
}

body.complx-dashboard .woocommerce-MyAccount-navigation li {
	margin: 0 !important;
	border: none !important;
}

body.complx-dashboard .woocommerce-MyAccount-navigation a {
	display: block !important;
	padding: 0.7rem 0.9rem !important;
	border-radius: 0.75rem !important;
	color: #586474 !important;
	text-decoration: none !important;
	font-weight: 550 !important;
	font-size: 0.9rem !important;
	border: none !important;
	background: transparent !important;
	transition: background 0.15s ease, color 0.15s ease;
}
body.complx-dashboard .woocommerce-MyAccount-navigation a:hover {
	background: rgba(7, 59, 102, 0.08) !important;
	color: #073B66 !important;
}
body.complx-dashboard .woocommerce-MyAccount-navigation .is-active a,
body.complx-dashboard .woocommerce-MyAccount-navigation li.is-active a {
	background: #073B66 !important;
	color: #fff !important;
}

body.complx-dashboard .woocommerce-MyAccount-content {
	background: transparent;
	padding: 0.25rem 0 0 !important;
	color: #586474;
	font-size: 0.95rem;
	line-height: 1.55;
}

body.complx-dashboard .woocommerce-MyAccount-content h2,
body.complx-dashboard .woocommerce-MyAccount-content h3 {
	font-family: var(--complx-font-display, "General Sans", sans-serif) !important;
	color: #101828 !important;
	font-weight: 700 !important;
}

body.complx-dashboard .woocommerce table.shop_table,
body.complx-dashboard table.shop_table {
	border: 1px solid #D9E0E7 !important;
	border-radius: 1rem !important;
	overflow: hidden;
	border-collapse: separate !important;
	border-spacing: 0 !important;
	width: 100%;
}
body.complx-dashboard .woocommerce table.shop_table th {
	background: #F5F7FA !important;
	color: #586474 !important;
	font-size: 0.75rem !important;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 0.85rem 1rem !important;
	border: none !important;
}
body.complx-dashboard .woocommerce table.shop_table td {
	padding: 0.9rem 1rem !important;
	border-top: 1px solid #D9E0E7 !important;
	border-left: none !important;
	border-right: none !important;
	border-bottom: none !important;
}

body.complx-dashboard .woocommerce form:not(.woocommerce-form-login):not(.woocommerce-form-register) .form-row input.input-text,
body.complx-dashboard .woocommerce form:not(.woocommerce-form-login):not(.woocommerce-form-register) .form-row textarea,
body.complx-dashboard .woocommerce form:not(.woocommerce-form-login):not(.woocommerce-form-register) .form-row select,
body.complx-dashboard .woocommerce-Input,
body.complx-dashboard input[type="text"],
body.complx-dashboard input[type="email"],
body.complx-dashboard input[type="password"],
body.complx-dashboard input[type="number"],
body.complx-dashboard input[type="date"],
body.complx-dashboard select,
body.complx-dashboard textarea {
	border: 1px solid #D9E0E7 !important;
	border-radius: 0.75rem !important;
	padding: 0.7rem 0.9rem !important;
	background: #fff !important;
	box-shadow: none !important;
	min-height: 44px;
}
body.complx-dashboard .woocommerce form:not(.woocommerce-form-login):not(.woocommerce-form-register) .form-row input.input-text:focus,
body.complx-dashboard select:focus,
body.complx-dashboard textarea:focus {
	border-color: #073B66 !important;
	outline: none !important;
	box-shadow: 0 0 0 3px rgba(7, 59, 102, 0.12) !important;
}

/* Login: no field border + eye inside password
   Spec must beat body.complx-dashboard .woocommerce form .form-row input.input-text */
body.complx-dashboard .woocommerce form.woocommerce-form-login .form-row .woocommerce-Input,
body.complx-dashboard .woocommerce form.woocommerce-form-login .form-row input.input-text,
body.complx-dashboard .woocommerce form.woocommerce-form-register .form-row .woocommerce-Input,
body.complx-dashboard .woocommerce form.woocommerce-form-register .form-row input.input-text,
body.complx-dashboard form.woocommerce-form-login input[type="text"],
body.complx-dashboard form.woocommerce-form-login input[type="email"],
body.complx-dashboard form.woocommerce-form-login input[type="password"],
body.complx-dashboard form.woocommerce-form-register input[type="text"],
body.complx-dashboard form.woocommerce-form-register input[type="email"],
body.complx-dashboard form.woocommerce-form-register input[type="password"] {
	border: none !important;
	border-width: 0 !important;
	border-color: transparent !important;
	background: #F5F7FA !important;
	box-shadow: none !important;
}
body.complx-dashboard .woocommerce form.woocommerce-form-login .form-row .woocommerce-Input:focus,
body.complx-dashboard .woocommerce form.woocommerce-form-login .form-row input.input-text:focus,
body.complx-dashboard .woocommerce form.woocommerce-form-register .form-row .woocommerce-Input:focus,
body.complx-dashboard .woocommerce form.woocommerce-form-register .form-row input.input-text:focus,
body.complx-dashboard form.woocommerce-form-login input:focus,
body.complx-dashboard form.woocommerce-form-register input:focus {
	border: none !important;
	border-width: 0 !important;
	outline: none !important;
	box-shadow: 0 0 0 2px rgba(7, 59, 102, 0.18) !important;
}
body.complx-dashboard .woocommerce form.woocommerce-form-login .password-input,
body.complx-dashboard .woocommerce form.woocommerce-form-register .password-input {
	display: block !important;
	position: relative !important;
	width: 100%;
}
body.complx-dashboard .woocommerce form.woocommerce-form-login .form-row .password-input input.input-text,
body.complx-dashboard .woocommerce form.woocommerce-form-register .form-row .password-input input.input-text,
body.complx-dashboard form.woocommerce-form-login .password-input input[type="password"],
body.complx-dashboard form.woocommerce-form-register .password-input input[type="password"] {
	width: 100% !important;
	padding-right: 2.75rem !important;
}
body.complx-dashboard .woocommerce form.woocommerce-form-login .show-password-input,
body.complx-dashboard .woocommerce form.woocommerce-form-register .show-password-input,
body.complx-dashboard form.woocommerce-form-login button.show-password-input,
body.complx-dashboard form.woocommerce-form-register button.show-password-input {
	position: absolute !important;
	top: 50% !important;
	right: 0.75rem !important;
	left: auto !important;
	transform: translateY(-50%) !important;
	width: 2rem !important;
	height: 2rem !important;
	min-width: 2rem !important;
	min-height: 2rem !important;
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	border-radius: 0 !important;
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none !important;
	color: #073B66 !important;
	cursor: pointer !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	appearance: none !important;
	-webkit-appearance: none !important;
	font-size: 0 !important;
	line-height: 0 !important;
	text-indent: 0 !important;
	z-index: 2;
}
body.complx-dashboard .woocommerce form.woocommerce-form-login .show-password-input::before,
body.complx-dashboard .woocommerce form.woocommerce-form-register .show-password-input::before,
body.complx-dashboard form.woocommerce-form-login button.show-password-input::before,
body.complx-dashboard form.woocommerce-form-register button.show-password-input::before {
	content: "" !important;
	display: block !important;
	width: 20px !important;
	height: 20px !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
	background-size: 20px 20px !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23073B66' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3.5-7 10-7 10 7 10 7-3.5 7-10 7S2 12 2 12Z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E") !important;
}
body.complx-dashboard .woocommerce form.woocommerce-form-login .show-password-input.display-password::before,
body.complx-dashboard .woocommerce form.woocommerce-form-register .show-password-input.display-password::before,
body.complx-dashboard form.woocommerce-form-login button.show-password-input.display-password::before,
body.complx-dashboard form.woocommerce-form-register button.show-password-input.display-password::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23073B66' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.94 17.94A10.94 10.94 0 0 1 12 19c-6.5 0-10-7-10-7a18.45 18.45 0 0 1 5.06-5.94'/%3E%3Cpath d='M9.9 4.24A10.94 10.94 0 0 1 12 5c6.5 0 10 7 10 7a18.5 18.5 0 0 1-2.16 3.19'/%3E%3Cpath d='M14.12 14.12a3 3 0 1 1-4.24-4.24'/%3E%3Cpath d='M1 1l22 22'/%3E%3C/svg%3E") !important;
}
body.complx-dashboard form.woocommerce-form-login .password-input input::-ms-reveal,
body.complx-dashboard form.woocommerce-form-register .password-input input::-ms-reveal {
	display: none;
}

body.complx-dashboard .woocommerce-form-login,
body.complx-dashboard .woocommerce-form-register {
	max-width: none;
	margin: 0;
	padding: 0 !important;
	background: transparent;
	border-radius: 0;
	border: none;
}
body.complx-dashboard .woocommerce-form-login h2,
body.complx-dashboard .woocommerce-form-register h2 {
	font-family: var(--complx-font-display, "General Sans", sans-serif) !important;
	color: #101828 !important;
	font-size: 1.25rem !important;
}
body.complx-dashboard .woocommerce-form-login label,
body.complx-dashboard .woocommerce-form-register label {
	color: #101828 !important;
	font-weight: 600 !important;
}
body.complx-dashboard .woocommerce-form-login .woocommerce-form__label-for-checkbox span,
body.complx-dashboard .woocommerce-form-login .lost_password a {
	color: #586474 !important;
}
body.complx-dashboard .fluentform,
body.complx-dashboard .ff-el-group {
	font-family: inherit !important;
}
body.complx-dashboard .ff-el-input--label label {
	font-weight: 600 !important;
	color: #101828 !important;
	font-size: 0.9rem !important;
}
body.complx-dashboard .ff-el-form-control,
body.complx-dashboard .fluentform input,
body.complx-dashboard .fluentform select,
body.complx-dashboard .fluentform textarea {
	border-radius: 0.75rem !important;
	border-color: #D9E0E7 !important;
	min-height: 44px;
}
body.complx-dashboard .ff-btn-submit {
	margin-top: 0.5rem;
}

/* ---------- Documents empty ---------- */
.complx-dash-docs .complx-dash-panel__intro p {
	color: #586474;
	margin: 0 0 1.25rem;
}
.complx-dash-empty {
	text-align: center;
	padding: 2.5rem 1rem;
	background: #F5F7FA;
	border: 1px dashed #D9E0E7;
	border-radius: 1.15rem;
}
.complx-dash-empty__icon {
	width: 48px;
	height: 48px;
	margin: 0 auto 1rem;
	border-radius: 12px;
	background:
		linear-gradient(135deg, rgba(7, 59, 102, 0.12), rgba(244, 162, 97, 0.2));
	border: 1px solid #D9E0E7;
}
.complx-dash-empty h3 {
	margin: 0 0 0.5rem;
	font-family: var(--complx-font-display, "General Sans", sans-serif);
	color: #101828;
}
.complx-dash-empty p {
	color: #586474;
	margin: 0 0 1rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1023px) {
	.complx-dash-nav-toggle {
		display: flex;
	}
	.complx-dash-nav {
		display: none;
		position: absolute;
		left: 1rem;
		right: 1rem;
		top: calc(100% + 0.5rem);
		background: #ffffff;
		border: 1px solid #D9E0E7;
		border-radius: 1rem;
		padding: 0.75rem 1rem;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
		flex: none;
	}
	.complx-dash-header__inner {
		position: relative;
		flex-wrap: wrap;
	}
	.complx-dash-header.is-open .complx-dash-nav {
		display: flex;
	}
	.complx-dash-nav__link {
		justify-content: flex-start;
		padding: 0.85rem 0.25rem;
		border-bottom: 1px solid #D9E0E7;
		border-radius: 0;
	}
	.complx-dash-nav__link.is-active {
		border-bottom-color: #D9E0E7;
		color: #073B66 !important;
	}
	.complx-dash-nav__link--mobile-only {
		display: inline-flex;
	}
	.complx-dash-nav__link--logout {
		color: #586474 !important;
		border-bottom: none;
	}
	body.complx-dashboard .elementor-section.elementor-top-section:nth-of-type(2) > .elementor-container {
		padding: 1.15rem !important;
		border-radius: 1.1rem;
	}
}

@media (max-width: 900px) {
	body.complx-dashboard .woocommerce-account .woocommerce {
		grid-template-columns: 1fr;
	}
	body.complx-dashboard .woocommerce-MyAccount-navigation ul {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		gap: 0.35rem;
		padding-bottom: 0.25rem;
		-webkit-overflow-scrolling: touch;
	}
	body.complx-dashboard .woocommerce-MyAccount-navigation a {
		white-space: nowrap;
	}
	body.complx-dashboard .ld-profile-summary {
		grid-template-columns: 1fr;
	}
	body.complx-dashboard .ld-profile-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* Non-Elementor / shortcode-only pages (mes-documents) */
body.complx-dashboard.complx-dashboard--mes-documents .site-content .ast-container,
body.complx-dashboard.complx-dashboard--mes-documents .entry-content {
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
}
body.complx-dashboard.complx-dashboard--mes-documents .complx-dash-docs {
	background: #fff;
	border: 1px solid rgba(226, 232, 240, 0.9);
	border-radius: 1.35rem;
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
	padding: 1.75rem 1.5rem 2rem;
	max-width: 1180px;
	margin: -1.75rem auto 3rem;
}

/* ---------- Mes cours (custom UI) ---------- */
body.complx-dashboard.complx-dashboard--mes-cours .complx-dash-page__inner,
body.complx-dashboard.complx-dashboard--mes-cours .complx-mc {
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
}
body.complx-dashboard.complx-dashboard--mes-cours .complx-dash-page__inner {
	margin-top: -2rem;
	padding-bottom: 4rem;
}
body.complx-dashboard.complx-dashboard--mes-cours .complx-dash-hero {
	padding-bottom: 3.5rem;
}

.complx-mc {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.complx-mc-hero-card {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
	gap: 1.5rem;
	align-items: center;
	padding: 1.5rem 1.6rem;
	border-radius: 1.5rem;
	background-color: #ffffff;
	background-image: radial-gradient(circle at 100% 0%, rgba(244, 162, 97, 0.12), transparent 42%);
	border: 1px solid rgba(226, 232, 240, 0.95);
	box-shadow: 0 28px 70px rgba(15, 23, 42, 0.1);
}

.complx-mc-hero-card__identity {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.complx-mc-avatar {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #fff;
	box-shadow: 0 8px 24px rgba(7, 59, 102, 0.18);
}
.complx-mc-kicker {
	margin: 0;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #586474;
}
.complx-mc-name {
	margin: 0.2rem 0 0.35rem;
	font-family: var(--complx-font-display, "General Sans", sans-serif);
	font-size: 1.45rem;
	font-weight: 700;
	color: #101828;
	letter-spacing: -0.02em;
}
.complx-mc-profile-link {
	color: #073B66;
	font-size: 0.88rem;
	font-weight: 600;
	text-decoration: none;
}
.complx-mc-profile-link:hover { color: #f4a261; }

.complx-mc-stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.65rem;
}
.complx-mc-stat {
	background: #F5F7FA;
	border: 1px solid #D9E0E7;
	border-radius: 1rem;
	padding: 0.9rem 0.7rem;
	text-align: center;
}
.complx-mc-stat__value {
	display: block;
	font-family: var(--complx-font-display, "General Sans", sans-serif);
	font-size: 1.55rem;
	font-weight: 700;
	color: #073B66;
	line-height: 1;
}
.complx-mc-stat__label {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.72rem;
	color: #586474;
}

.complx-mc-toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	align-items: center;
	justify-content: space-between;
}
.complx-mc-search {
	flex: 1 1 240px;
	max-width: 360px;
}
.complx-mc-search input {
	width: 100%;
	border: 1px solid #D9E0E7 !important;
	border-radius: 999px !important;
	padding: 0.75rem 1.1rem !important;
	background: #fff !important;
	font-size: 0.92rem !important;
	min-height: 46px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.complx-mc-search input:focus {
	border-color: #073B66 !important;
	box-shadow: 0 0 0 3px rgba(7, 59, 102, 0.12) !important;
	outline: none !important;
}
.complx-mc-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}
.complx-mc-filter {
	border: 1px solid #D9E0E7 !important;
	background: #ffffff !important;
	color: #101828 !important;
	border-radius: 999px !important;
	padding: 0.5rem 0.95rem !important;
	font-size: 0.8rem !important;
	font-weight: 600 !important;
	line-height: 1.2 !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
	box-shadow: none !important;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.complx-mc-filter:hover {
	border-color: #073B66 !important;
	background: #F5F7FA !important;
	color: #073B66 !important;
}
.complx-mc-filter.is-active,
.complx-mc-filter.is-active:hover {
	background: #073B66 !important;
	border-color: #073B66 !important;
	color: #ffffff !important;
}

.complx-mc-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.1rem;
}
.complx-mc-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #D9E0E7;
	border-radius: 1.25rem;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
	transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}
.complx-mc-card:hover {
	transform: translateY(-4px);
	border-color: rgba(7, 59, 102, 0.22);
	box-shadow: 0 22px 50px rgba(7, 59, 102, 0.12);
}
.complx-mc-card.is-hidden { display: none; }

.complx-mc-card__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	background: #062F52;
	overflow: hidden;
}
.complx-mc-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.45s ease;
}
.complx-mc-card:hover .complx-mc-card__media img {
	transform: scale(1.04);
}
.complx-mc-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at 30% 20%, rgba(244,162,97,0.45), transparent 45%),
		linear-gradient(145deg, #073B66, #0f1e40);
}
.complx-mc-card__badge {
	position: absolute;
	left: 0.75rem;
	top: 0.75rem;
	padding: 0.3rem 0.65rem;
	border-radius: 999px;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	backdrop-filter: blur(8px);
}
.complx-mc-card__badge--in_progress {
	background: rgba(7, 59, 102, 0.9);
	color: #fff;
}
.complx-mc-card__badge--not_started {
	background: rgba(255, 255, 255, 0.92);
	color: #073B66;
}
.complx-mc-card__badge--completed {
	background: rgba(16, 185, 129, 0.95);
	color: #fff;
}

.complx-mc-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	padding: 1rem 1.05rem 1.15rem;
	flex: 1;
}
.complx-mc-card__title {
	margin: 0;
	font-family: var(--complx-font-display, "General Sans", sans-serif);
	font-size: 1.02rem;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.015em;
}
.complx-mc-card__title a {
	color: #101828 !important;
	text-decoration: none !important;
}
.complx-mc-card__title a:hover { color: #073B66 !important; }
.complx-mc-card__excerpt {
	margin: 0;
	color: #334155;
	font-size: 0.88rem;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex: 1;
}
.complx-mc-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-top: 0.35rem;
	padding-top: 0.75rem;
	border-top: 1px solid #D9E0E7;
}
.complx-mc-progress {
	position: relative;
	width: 44px;
	height: 44px;
	flex-shrink: 0;
}
.complx-mc-progress svg { display: block; transform: rotate(-90deg); }
.complx-mc-progress__track {
	fill: none;
	stroke: #D9E0E7;
	stroke-width: 4;
}
.complx-mc-progress__value {
	fill: none;
	stroke: #073B66;
	stroke-width: 4;
	stroke-linecap: round;
	transition: stroke-dashoffset 0.6s ease;
}
.complx-mc-progress__pct {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	font-size: 0.62rem;
	font-weight: 700;
	color: #073B66;
}
.complx-mc-card__actions {
	display: flex;
	align-items: center;
	gap: 0.55rem;
}
.complx-mc-link {
	font-size: 0.78rem;
	font-weight: 600;
	color: #586474 !important;
	text-decoration: none !important;
}
.complx-mc-link:hover { color: #073B66 !important; }
.complx-mc-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.45rem 0.85rem;
	border-radius: 999px;
	background: #073B66;
	color: #fff !important;
	font-size: 0.78rem;
	font-weight: 600;
	text-decoration: none !important;
	transition: background 0.15s ease, transform 0.15s ease;
}
.complx-mc-cta:hover {
	background: #062F52;
	color: #fff !important;
	transform: translateY(-1px);
}

.complx-mc-empty,
.complx-mc-empty-filter {
	text-align: center;
	padding: 2.5rem 1.25rem;
	background: #fff;
	border: 1px dashed #D9E0E7;
	border-radius: 1.25rem;
	color: #586474;
}
.complx-mc-empty__visual {
	width: 56px;
	height: 56px;
	margin: 0 auto 1rem;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(7,59,102,0.12), rgba(244,162,97,0.22));
}
.complx-mc-empty h3 {
	margin: 0 0 0.4rem;
	color: #101828;
	font-family: var(--complx-font-display, "General Sans", sans-serif);
}

@media (max-width: 1024px) {
	.complx-mc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
	.complx-mc-hero-card {
		grid-template-columns: 1fr;
		padding: 1.2rem;
	}
	.complx-mc-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.complx-mc-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
	.complx-dash-btn,
	body.complx-dashboard .button,
	.complx-dash-nav__link,
	.complx-mc-card,
	.complx-mc-card__media img {
		transition: none !important;
	}
}

/* ---------- Shared open layout for dashboard pages ---------- */
body.complx-dashboard.complx-dashboard--mon-compte .complx-dash-page__inner,
body.complx-dashboard.complx-dashboard--formulaire-feuille-de-presence .complx-dash-page__inner,
body.complx-dashboard.complx-dashboard--mes-documents .complx-dash-page__inner {
	max-width: 1180px;
	margin: -2rem auto 0;
	padding: 0 1.25rem 4rem;
}

/* Mon compte */
body.complx-dashboard.complx-dashboard--mon-compte .woocommerce {
	background: #fff;
	border: 1px solid #D9E0E7;
	border-radius: 1.5rem;
	box-shadow: 0 28px 70px rgba(15, 23, 42, 0.1);
	padding: 1.5rem;
}
body.complx-dashboard .woocommerce-MyAccount-navigation {
	background: #F5F7FA !important;
	border: 1px solid #D9E0E7 !important;
	border-radius: 1.15rem !important;
	padding: 0.55rem !important;
}
body.complx-dashboard .woocommerce-MyAccount-content > p:first-child {
	font-size: 1.05rem;
	color: #101828;
	font-family: var(--complx-font-display, "General Sans", sans-serif);
	font-weight: 600;
}
body.complx-dashboard .woocommerce-MyAccount-content .woocommerce-message,
body.complx-dashboard .woocommerce-MyAccount-content .woocommerce-info {
	border-radius: 0.9rem !important;
	border: 1px solid #D9E0E7 !important;
	background: #F5F7FA !important;
}

/* Feuille de présence */
.complx-dp {
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
}
.complx-dp-intro,
.complx-dd-intro {
	background-color: #ffffff;
	background-image: radial-gradient(circle at 100% 0%, rgba(244, 162, 97, 0.1), transparent 42%);
	border: 1px solid #D9E0E7;
	border-radius: 1.5rem;
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
	padding: 1.4rem 1.5rem;
}
.complx-dp-kicker,
.complx-dd-kicker {
	margin: 0;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #586474;
}
.complx-dp-title,
.complx-dd-title {
	margin: 0.35rem 0 0.4rem;
	font-family: var(--complx-font-display, "General Sans", sans-serif);
	font-size: 1.45rem;
	font-weight: 700;
	color: #101828;
	letter-spacing: -0.02em;
}
.complx-dp-text,
.complx-dd-text {
	margin: 0;
	color: #586474;
	font-size: 0.95rem;
	line-height: 1.5;
	max-width: 52rem;
}
.complx-dp-form {
	background: #fff;
	border: 1px solid #D9E0E7;
	border-radius: 1.5rem;
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
	padding: 1.5rem 1.35rem 1.75rem;
}
body.complx-dashboard .fluentform .ff-el-form-control,
body.complx-dashboard .fluentform select,
body.complx-dashboard .fluentform textarea,
body.complx-dashboard .fluentform input[type="text"],
body.complx-dashboard .fluentform input[type="email"],
body.complx-dashboard .fluentform input[type="number"],
body.complx-dashboard .fluentform input[type="date"] {
	border-radius: 0.75rem !important;
	border: 1px solid #D9E0E7 !important;
	min-height: 46px !important;
	background: #fff !important;
}
body.complx-dashboard .fluentform .ff-el-input--label label {
	font-weight: 600 !important;
	color: #101828 !important;
}

/* Mes documents */
.complx-dd {
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
}
.complx-dd-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
.complx-dd-card {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.15rem;
	background: #fff;
	border: 1px solid #D9E0E7;
	border-radius: 1.15rem;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}
.complx-dd-card__icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	flex-shrink: 0;
	background: linear-gradient(135deg, rgba(7,59,102,0.12), rgba(244,162,97,0.22));
	border: 1px solid #D9E0E7;
}
.complx-dd-card__body { flex: 1; min-width: 0; }
.complx-dd-card__title {
	margin: 0;
	font-size: 0.98rem;
	font-weight: 700;
	color: #101828;
	font-family: var(--complx-font-display, "General Sans", sans-serif);
}
.complx-dd-card__meta {
	margin: 0.2rem 0 0;
	font-size: 0.82rem;
	color: #586474;
}

/* Hide old docs panel styles leftover */
body.complx-dashboard.complx-dashboard--mes-documents .complx-dash-docs {
	background: transparent;
	border: 0;
	box-shadow: none;
	padding: 0;
	margin: 0;
}

/* ---------- Member area footer ---------- */
.complx-dash-footer {
	margin-top: 2.5rem;
	background: #0F1E40;
	color: #fff;
	padding: 3.5rem 0 2.25rem;
}
.complx-dash-footer__inner {
	width: 100%;
	max-width: 80rem;
	margin: 0 auto;
	padding: 0 1.5rem;
}
@media (min-width: 640px) {
	.complx-dash-footer__inner { padding: 0 2rem; }
}
.complx-dash-footer__top {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	padding-bottom: 2.25rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 1024px) {
	.complx-dash-footer__top {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}
.complx-dash-footer__brand {
	display: inline-flex;
	text-decoration: none;
}
.complx-dash-footer__logo {
	display: block !important;
	height: 3.15rem !important;
	width: auto !important;
	max-width: 280px !important;
	object-fit: contain !important;
}
@media (min-width: 640px) {
	.complx-dash-footer__logo {
		height: 3.5rem !important;
		max-width: 300px !important;
	}
}
.complx-dash-footer__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.5rem;
}
.complx-dash-footer__nav a {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.15s ease;
}
.complx-dash-footer__nav a:hover,
.complx-dash-footer__nav a:focus {
	color: #fff;
}
.complx-dash-footer__bottom {
	padding-top: 1.75rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.4);
}
@media (min-width: 768px) {
	.complx-dash-footer__bottom {
		flex-direction: row;
		align-items: center;
	}
}
.complx-dash-footer__bottom a {
	color: rgba(255, 255, 255, 0.4);
	text-decoration: none;
	transition: color 0.15s ease;
}
.complx-dash-footer__bottom a:hover,
.complx-dash-footer__bottom a:focus {
	color: #fff;
}

/* ---------- Theme toggle (aligné landing) ---------- */
.complx-dash-mobile-tools {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-shrink: 0;
}
@media (min-width: 1024px) {
	.complx-dash-mobile-tools { display: none; }
}
.complx-dash-theme-toggle {
	position: relative;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid var(--complx-dash-border, #D9E0E7) !important;
	border-radius: 999px !important;
	background: #fff !important;
	color: var(--complx-dash-navy, #073B66) !important;
	cursor: pointer;
	box-shadow: none !important;
	appearance: none;
	-webkit-appearance: none;
	transition: background-color 0.18s ease, border-color 0.18s ease;
}
.complx-dash-theme-toggle:hover {
	border-color: var(--complx-dash-navy, #073B66) !important;
	background: var(--complx-dash-blue-light, #EAF0F8) !important;
}
.complx-dash-theme-toggle__icon {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: inherit;
	transition: opacity 0.18s ease, transform 0.18s ease;
}
.complx-dash-theme-toggle .theme-sun {
	opacity: 0;
	transform: scale(0.5) rotate(90deg);
	pointer-events: none;
}
.complx-dash-theme-toggle .theme-moon {
	opacity: 1;
	transform: scale(1);
}
html.dark .complx-dash-theme-toggle .theme-sun,
.dark .complx-dash-theme-toggle .theme-sun {
	opacity: 1;
	transform: scale(1);
	pointer-events: auto;
}
html.dark .complx-dash-theme-toggle .theme-moon,
.dark .complx-dash-theme-toggle .theme-moon {
	opacity: 0;
	transform: scale(0.5) rotate(-90deg);
	pointer-events: none;
}

/* ---------- Dark mode (aligné site) ---------- */
html.dark body.complx-dashboard,
.dark body.complx-dashboard {
	--complx-dash-page: #0A152E;
	--complx-dash-elevated: #15264A;
	--complx-dash-border: rgba(255, 255, 255, 0.14);
	--complx-dash-text: #E8EEFB;
	--complx-dash-muted: rgba(232, 238, 251, 0.68);
	--complx-dash-blue-light: rgba(255, 255, 255, 0.08);
	background: #0A152E !important;
	color: #E8EEFB;
}
html.dark .complx-dash-header,
.dark .complx-dash-header {
	background: rgba(10, 21, 46, 0.94);
	border-bottom-color: rgba(255, 255, 255, 0.1);
	color: #E8EEFB;
	box-shadow: none;
}
html.dark .complx-dash-brand__shell,
.dark .complx-dash-brand__shell {
	background: transparent;
	padding: 0;
}
html.dark .complx-dash-brand__img,
.dark .complx-dash-brand__img {
	height: 2.75rem !important;
	max-width: 200px !important;
}
@media (min-width: 640px) {
	html.dark .complx-dash-brand__img,
	.dark .complx-dash-brand__img {
		height: 3.15rem !important;
		max-width: 240px !important;
	}
}
html.dark .complx-dash-nav__link,
.dark .complx-dash-nav__link {
	color: rgba(255, 255, 255, 0.8) !important;
}
html.dark .complx-dash-nav__link:hover,
html.dark .complx-dash-nav__link:focus,
html.dark .complx-dash-nav__link.is-active,
.dark .complx-dash-nav__link:hover,
.dark .complx-dash-nav__link:focus,
.dark .complx-dash-nav__link.is-active {
	color: #fff !important;
	border-bottom-color: #fff;
}
html.dark .complx-dash-logout,
.dark .complx-dash-logout {
	color: rgba(255, 255, 255, 0.7) !important;
}
html.dark .complx-dash-logout:hover,
.dark .complx-dash-logout:hover {
	color: #fff !important;
}
html.dark .complx-dash-cta,
.dark .complx-dash-cta {
	background: #fff !important;
	color: #073B66 !important;
}
html.dark .complx-dash-cta:hover,
.dark .complx-dash-cta:hover {
	background: #E8EEFB !important;
	color: #062F52 !important;
}
html.dark .complx-dash-theme-toggle,
html.dark .complx-dash-nav-toggle,
.dark .complx-dash-theme-toggle,
.dark .complx-dash-nav-toggle {
	background: rgba(255, 255, 255, 0.06) !important;
	border-color: rgba(255, 255, 255, 0.18) !important;
	color: #fff !important;
}
html.dark .complx-dash-nav-toggle span,
.dark .complx-dash-nav-toggle span {
	background: #fff;
}
html.dark .complx-dash-hero,
.dark .complx-dash-hero {
	background:
		radial-gradient(ellipse 70% 55% at 100% 0%, rgba(139, 180, 232, 0.16), transparent 55%),
		#073B66;
}
html.dark body.complx-dashboard .elementor-top-section.complx-dash-content-section > .elementor-container,
.dark body.complx-dashboard .elementor-top-section.complx-dash-content-section > .elementor-container,
html.dark .complx-mc,
.dark .complx-mc {
	color: #E8EEFB;
}
html.dark body.complx-dashboard .elementor-top-section.complx-dash-content-section > .elementor-container,
.dark body.complx-dashboard .elementor-top-section.complx-dash-content-section > .elementor-container {
	background: #15264A !important;
	border-color: rgba(255, 255, 255, 0.12) !important;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35) !important;
}
html.dark body.complx-dashboard:not(.logged-in) .woocommerce,
html.dark body.complx-dashboard .woocommerce:has(.woocommerce-form-login):not(:has(.woocommerce-MyAccount-navigation)),
.dark body.complx-dashboard:not(.logged-in) .woocommerce,
.dark body.complx-dashboard .woocommerce:has(.woocommerce-form-login):not(:has(.woocommerce-MyAccount-navigation)) {
	background: #15264A !important;
	border-color: rgba(255, 255, 255, 0.12) !important;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35) !important;
}
html.dark body.complx-dashboard:not(.logged-in) .woocommerce > h2,
html.dark body.complx-dashboard .woocommerce:has(.woocommerce-form-login):not(:has(.woocommerce-MyAccount-navigation)) > h2,
.dark body.complx-dashboard:not(.logged-in) .woocommerce > h2,
.dark body.complx-dashboard .woocommerce:has(.woocommerce-form-login):not(:has(.woocommerce-MyAccount-navigation)) > h2 {
	color: #fff !important;
}
html.dark body.complx-dashboard .woocommerce-form-login,
html.dark body.complx-dashboard .woocommerce-form-register,
.dark body.complx-dashboard .woocommerce-form-login,
.dark body.complx-dashboard .woocommerce-form-register {
	background: transparent !important;
	border: none !important;
	color: #E8EEFB !important;
}
html.dark body.complx-dashboard .woocommerce-form-login label,
html.dark body.complx-dashboard .woocommerce-form-register label,
.dark body.complx-dashboard .woocommerce-form-login label,
.dark body.complx-dashboard .woocommerce-form-register label {
	color: rgba(232, 238, 251, 0.92) !important;
}
html.dark body.complx-dashboard .woocommerce-form-login .woocommerce-form__label-for-checkbox span,
html.dark body.complx-dashboard .woocommerce-form-login .lost_password a,
.dark body.complx-dashboard .woocommerce-form-login .woocommerce-form__label-for-checkbox span,
.dark body.complx-dashboard .woocommerce-form-login .lost_password a {
	color: rgba(232, 238, 251, 0.7) !important;
}
html.dark body.complx-dashboard .woocommerce-MyAccount-navigation,
html.dark body.complx-dashboard .woocommerce-MyAccount-content,
html.dark .complx-mc-card,
html.dark .complx-dash-empty,
.dark body.complx-dashboard .woocommerce-MyAccount-navigation,
.dark body.complx-dashboard .woocommerce-MyAccount-content,
.dark .complx-mc-card,
.dark .complx-dash-empty {
	background: #15264A !important;
	border-color: rgba(255, 255, 255, 0.12) !important;
	color: #E8EEFB !important;
}
html.dark .complx-mc-card__title a,
.dark .complx-mc-card__title a {
	color: #fff !important;
}
html.dark .complx-mc-card__excerpt,
.dark .complx-mc-card__excerpt {
	color: rgba(232, 238, 251, 0.82) !important;
}
html.dark .complx-mc-card__meta,
.dark .complx-mc-card__meta {
	border-top-color: rgba(255, 255, 255, 0.12);
}
html.dark .complx-mc-link,
.dark .complx-mc-link {
	color: rgba(232, 238, 251, 0.75) !important;
}
html.dark .complx-mc-stat__label,
html.dark .complx-mc-kicker,
.dark .complx-mc-stat__label,
.dark .complx-mc-kicker {
	color: rgba(232, 238, 251, 0.75) !important;
}
html.dark .complx-mc-profile-link,
.dark .complx-mc-profile-link {
	color: #8BB4E8 !important;
}
html.dark .complx-mc-profile-link:hover,
.dark .complx-mc-profile-link:hover {
	color: #F4A261 !important;
}
html.dark .complx-mc-search input,
.dark .complx-mc-search input {
	background: rgba(255, 255, 255, 0.08) !important;
	border-color: rgba(255, 255, 255, 0.28) !important;
	color: #E8EEFB !important;
	box-shadow: none !important;
}
html.dark .complx-mc-search input::placeholder,
.dark .complx-mc-search input::placeholder {
	color: rgba(232, 238, 251, 0.55) !important;
	opacity: 1;
}
html.dark .complx-mc-search input:focus,
.dark .complx-mc-search input:focus {
	border-color: rgba(255, 255, 255, 0.55) !important;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12) !important;
}
html.dark .complx-mc-stat__value,
.dark .complx-mc-stat__value {
	color: #ffffff !important;
}
html.dark .complx-mc-name,
.dark .complx-mc-name {
	color: #fff !important;
}
html.dark .complx-mc-hero-card,
.dark .complx-mc-hero-card {
	background: #15264A !important;
	border-color: rgba(255, 255, 255, 0.12) !important;
}
html.dark .complx-mc-stat,
.dark .complx-mc-stat {
	background: rgba(255, 255, 255, 0.08) !important;
	border-color: rgba(255, 255, 255, 0.16) !important;
}
html.dark .complx-mc-progress__pct,
.dark .complx-mc-progress__pct {
	color: #ffffff !important;
}
html.dark .complx-mc-progress__track,
.dark .complx-mc-progress__track {
	stroke: rgba(255, 255, 255, 0.22);
}
html.dark .complx-mc-progress__value,
.dark .complx-mc-progress__value {
	stroke: #8BB4E8;
}
html.dark body.complx-dashboard .woocommerce-MyAccount-navigation a,
.dark body.complx-dashboard .woocommerce-MyAccount-navigation a {
	color: rgba(232, 238, 251, 0.85) !important;
}
html.dark body.complx-dashboard .woocommerce-MyAccount-navigation .is-active a,
html.dark body.complx-dashboard .woocommerce-MyAccount-navigation li.is-active a,
.dark body.complx-dashboard .woocommerce-MyAccount-navigation .is-active a,
.dark body.complx-dashboard .woocommerce-MyAccount-navigation li.is-active a {
	background: #073B66 !important;
	color: #fff !important;
}
html.dark body.complx-dashboard h1,
html.dark body.complx-dashboard h2,
html.dark body.complx-dashboard h3,
html.dark body.complx-dashboard .woocommerce-MyAccount-content h2,
html.dark body.complx-dashboard .woocommerce-MyAccount-content h3,
.dark body.complx-dashboard h1,
.dark body.complx-dashboard h2,
.dark body.complx-dashboard h3 {
	color: #fff !important;
}
html.dark body.complx-dashboard input[type="text"],
html.dark body.complx-dashboard input[type="email"],
html.dark body.complx-dashboard input[type="password"],
html.dark body.complx-dashboard input[type="number"],
html.dark body.complx-dashboard input[type="search"],
html.dark body.complx-dashboard select,
html.dark body.complx-dashboard textarea,
html.dark body.complx-dashboard .woocommerce-Input,
html.dark body.complx-dashboard .woocommerce form:not(.woocommerce-form-login):not(.woocommerce-form-register) .form-row input.input-text,
.dark body.complx-dashboard input[type="text"],
.dark body.complx-dashboard input[type="email"],
.dark body.complx-dashboard input[type="password"],
.dark body.complx-dashboard input[type="search"],
.dark body.complx-dashboard select,
.dark body.complx-dashboard textarea,
.dark body.complx-dashboard .woocommerce-Input {
	background: rgba(255, 255, 255, 0.08) !important;
	border: 1px solid rgba(255, 255, 255, 0.28) !important;
	color: #E8EEFB !important;
	border-radius: 0.75rem !important;
	min-height: 46px !important;
	box-shadow: none !important;
}
html.dark body.complx-dashboard input:focus,
html.dark body.complx-dashboard .woocommerce-Input:focus,
.dark body.complx-dashboard input:focus,
.dark body.complx-dashboard .woocommerce-Input:focus {
	border-color: rgba(255, 255, 255, 0.55) !important;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12) !important;
}
html.dark body.complx-dashboard .woocommerce form.woocommerce-form-login .form-row .woocommerce-Input,
html.dark body.complx-dashboard .woocommerce form.woocommerce-form-login .form-row input.input-text,
html.dark body.complx-dashboard .woocommerce form.woocommerce-form-register .form-row .woocommerce-Input,
html.dark body.complx-dashboard .woocommerce form.woocommerce-form-register .form-row input.input-text,
html.dark body.complx-dashboard form.woocommerce-form-login input[type="text"],
html.dark body.complx-dashboard form.woocommerce-form-login input[type="email"],
html.dark body.complx-dashboard form.woocommerce-form-login input[type="password"],
html.dark body.complx-dashboard form.woocommerce-form-register input[type="text"],
html.dark body.complx-dashboard form.woocommerce-form-register input[type="email"],
html.dark body.complx-dashboard form.woocommerce-form-register input[type="password"],
.dark body.complx-dashboard .woocommerce form.woocommerce-form-login .form-row .woocommerce-Input,
.dark body.complx-dashboard .woocommerce form.woocommerce-form-login .form-row input.input-text,
.dark body.complx-dashboard .woocommerce form.woocommerce-form-register .form-row .woocommerce-Input,
.dark body.complx-dashboard .woocommerce form.woocommerce-form-register .form-row input.input-text,
.dark body.complx-dashboard form.woocommerce-form-login input[type="text"],
.dark body.complx-dashboard form.woocommerce-form-login input[type="email"],
.dark body.complx-dashboard form.woocommerce-form-login input[type="password"],
.dark body.complx-dashboard form.woocommerce-form-register input[type="text"],
.dark body.complx-dashboard form.woocommerce-form-register input[type="email"],
.dark body.complx-dashboard form.woocommerce-form-register input[type="password"] {
	background: rgba(255, 255, 255, 0.08) !important;
	border: none !important;
	border-width: 0 !important;
	border-color: transparent !important;
	color: #E8EEFB !important;
}
html.dark body.complx-dashboard .woocommerce form.woocommerce-form-login .form-row input:focus,
html.dark body.complx-dashboard form.woocommerce-form-login input:focus,
.dark body.complx-dashboard .woocommerce form.woocommerce-form-login .form-row input:focus,
.dark body.complx-dashboard form.woocommerce-form-login input:focus {
	border: none !important;
	border-width: 0 !important;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2) !important;
}
html.dark body.complx-dashboard form.woocommerce-form-login button.show-password-input,
html.dark body.complx-dashboard form.woocommerce-form-register button.show-password-input,
.dark body.complx-dashboard form.woocommerce-form-login button.show-password-input,
.dark body.complx-dashboard form.woocommerce-form-register button.show-password-input {
	background: transparent !important;
	background-color: transparent !important;
	border: none !important;
	box-shadow: none !important;
	color: #E8EEFB !important;
}
html.dark body.complx-dashboard form.woocommerce-form-login button.show-password-input::before,
html.dark body.complx-dashboard form.woocommerce-form-register button.show-password-input::before,
.dark body.complx-dashboard form.woocommerce-form-login button.show-password-input::before,
.dark body.complx-dashboard form.woocommerce-form-register button.show-password-input::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23E8EEFB' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3.5-7 10-7 10 7 10 7-3.5 7-10 7S2 12 2 12Z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E") !important;
}
html.dark body.complx-dashboard form.woocommerce-form-login button.show-password-input.display-password::before,
html.dark body.complx-dashboard form.woocommerce-form-register button.show-password-input.display-password::before,
.dark body.complx-dashboard form.woocommerce-form-login button.show-password-input.display-password::before,
.dark body.complx-dashboard form.woocommerce-form-register button.show-password-input.display-password::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23E8EEFB' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.94 17.94A10.94 10.94 0 0 1 12 19c-6.5 0-10-7-10-7a18.45 18.45 0 0 1 5.06-5.94'/%3E%3Cpath d='M9.9 4.24A10.94 10.94 0 0 1 12 5c6.5 0 10 7 10 7a18.5 18.5 0 0 1-2.16 3.19'/%3E%3Cpath d='M14.12 14.12a3 3 0 1 1-4.24-4.24'/%3E%3Cpath d='M1 1l22 22'/%3E%3C/svg%3E") !important;
}
html.dark body.complx-dashboard .complx-dash-btn,
html.dark body.complx-dashboard .woocommerce-Button,
html.dark body.complx-dashboard .button:not(.complx-mc-filter),
html.dark body.complx-dashboard button[type="submit"]:not(.complx-mc-filter),
.dark body.complx-dashboard .complx-dash-btn,
.dark body.complx-dashboard .woocommerce-Button,
.dark body.complx-dashboard .button:not(.complx-mc-filter),
.dark body.complx-dashboard button[type="submit"]:not(.complx-mc-filter) {
	background: #fff !important;
	color: #073B66 !important;
}
html.dark .complx-mc-filter,
.dark .complx-mc-filter {
	background: rgba(255, 255, 255, 0.06) !important;
	border-color: rgba(255, 255, 255, 0.18) !important;
	color: #E8EEFB !important;
}
html.dark .complx-mc-filter.is-active,
.dark .complx-mc-filter.is-active {
	background: #fff !important;
	color: #073B66 !important;
	border-color: #fff !important;
}
html.dark body.complx-dashboard #ld-profile,
html.dark body.complx-dashboard .learndash-wrapper,
html.dark body.complx-dashboard .ld-item-list-item,
.dark body.complx-dashboard #ld-profile,
.dark body.complx-dashboard .learndash-wrapper,
.dark body.complx-dashboard .ld-item-list-item {
	background: transparent !important;
	color: #E8EEFB !important;
	border-color: rgba(255, 255, 255, 0.12) !important;
}
html.dark body.complx-dashboard .ld-profile-heading,
html.dark body.complx-dashboard .ld-item-list-item .ld-item-title,
.dark body.complx-dashboard .ld-profile-heading,
.dark body.complx-dashboard .ld-item-list-item .ld-item-title {
	color: #fff !important;
}
@media (max-width: 1023px) {
	html.dark .complx-dash-header.is-open .complx-dash-nav,
	.dark .complx-dash-header.is-open .complx-dash-nav {
		background: #0F1E40;
		border-color: rgba(255, 255, 255, 0.12);
	}
	html.dark .complx-dash-nav__link,
	.dark .complx-dash-nav__link {
		border-bottom-color: rgba(255, 255, 255, 0.1);
		color: rgba(255, 255, 255, 0.9) !important;
	}
}

/* ---------- Mes documents + feuille (dark) ---------- */
html.dark .complx-dd-intro,
html.dark .complx-dp-intro,
html.dark .complx-dd-card,
html.dark .complx-dp-form,
html.dark .complx-mc-empty,
html.dark .complx-mc-empty-filter,
html.dark .complx-dash-empty,
.dark .complx-dd-intro,
.dark .complx-dp-intro,
.dark .complx-dd-card,
.dark .complx-dp-form,
.dark .complx-mc-empty,
.dark .complx-mc-empty-filter,
.dark .complx-dash-empty {
	background: #15264A !important;
	background-image: none !important;
	border-color: rgba(255, 255, 255, 0.14) !important;
	color: #E8EEFB !important;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3) !important;
}
html.dark .complx-dd-kicker,
html.dark .complx-dp-kicker,
.dark .complx-dd-kicker,
.dark .complx-dp-kicker {
	color: rgba(232, 238, 251, 0.7) !important;
}
html.dark .complx-dd-title,
html.dark .complx-dp-title,
html.dark .complx-dd-card__title,
html.dark .complx-mc-empty h3,
html.dark .complx-dash-empty h3,
html.dark .complx-dd h2,
html.dark .complx-dd h3,
.dark .complx-dd-title,
.dark .complx-dp-title,
.dark .complx-dd-card__title,
.dark .complx-mc-empty h3,
.dark .complx-dash-empty h3,
.dark .complx-dd h2,
.dark .complx-dd h3 {
	color: #ffffff !important;
}
html.dark .complx-dd-text,
html.dark .complx-dp-text,
html.dark .complx-dd-card__meta,
html.dark .complx-mc-empty p,
html.dark .complx-dash-empty p,
.dark .complx-dd-text,
.dark .complx-dp-text,
.dark .complx-dd-card__meta,
.dark .complx-mc-empty p,
.dark .complx-dash-empty p {
	color: rgba(232, 238, 251, 0.78) !important;
}
html.dark .complx-dd-card__icon,
html.dark .complx-mc-empty__visual,
html.dark .complx-dash-empty__icon,
.dark .complx-dd-card__icon,
.dark .complx-mc-empty__visual,
.dark .complx-dash-empty__icon {
	border-color: rgba(255, 255, 255, 0.14) !important;
	background: linear-gradient(135deg, rgba(139, 180, 232, 0.2), rgba(244, 162, 97, 0.25)) !important;
}
html.dark body.complx-dashboard.complx-dashboard--mon-compte .woocommerce,
.dark body.complx-dashboard.complx-dashboard--mon-compte .woocommerce {
	background: #15264A !important;
	border-color: rgba(255, 255, 255, 0.14) !important;
}

/* ---------- Fluent Form / feuille de présence (dark) ---------- */
html.dark body.complx-dashboard .ff-el-input--label label,
html.dark body.complx-dashboard .fluentform .ff-el-input--label label,
html.dark body.complx-dashboard .fluentform .ff-el-form-check-label,
html.dark body.complx-dashboard .fluentform label,
.dark body.complx-dashboard .ff-el-input--label label,
.dark body.complx-dashboard .fluentform .ff-el-input--label label,
.dark body.complx-dashboard .fluentform .ff-el-form-check-label,
.dark body.complx-dashboard .fluentform label {
	color: rgba(232, 238, 251, 0.92) !important;
}
html.dark body.complx-dashboard .fluentform .ff-el-form-control,
html.dark body.complx-dashboard .fluentform select,
html.dark body.complx-dashboard .fluentform textarea,
html.dark body.complx-dashboard .fluentform input[type="text"],
html.dark body.complx-dashboard .fluentform input[type="email"],
html.dark body.complx-dashboard .fluentform input[type="number"],
html.dark body.complx-dashboard .fluentform input[type="date"],
html.dark body.complx-dashboard .fluentform input[type="tel"],
html.dark body.complx-dashboard .fluentform input,
.dark body.complx-dashboard .fluentform .ff-el-form-control,
.dark body.complx-dashboard .fluentform select,
.dark body.complx-dashboard .fluentform textarea,
.dark body.complx-dashboard .fluentform input[type="text"],
.dark body.complx-dashboard .fluentform input[type="email"],
.dark body.complx-dashboard .fluentform input[type="number"],
.dark body.complx-dashboard .fluentform input[type="date"],
.dark body.complx-dashboard .fluentform input[type="tel"],
.dark body.complx-dashboard .fluentform input {
	background: rgba(255, 255, 255, 0.08) !important;
	border: 1px solid rgba(255, 255, 255, 0.28) !important;
	color: #E8EEFB !important;
	box-shadow: none !important;
	border-radius: 0.75rem !important;
	min-height: 46px !important;
}
html.dark body.complx-dashboard .fluentform .ff-el-form-control:focus,
html.dark body.complx-dashboard .fluentform select:focus,
html.dark body.complx-dashboard .fluentform input:focus,
.dark body.complx-dashboard .fluentform .ff-el-form-control:focus,
.dark body.complx-dashboard .fluentform select:focus,
.dark body.complx-dashboard .fluentform input:focus {
	border-color: rgba(255, 255, 255, 0.55) !important;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12) !important;
	outline: none !important;
}
html.dark body.complx-dashboard .fluentform .ff-el-form-control::placeholder,
html.dark body.complx-dashboard .fluentform input::placeholder,
html.dark body.complx-dashboard .fluentform textarea::placeholder,
.dark body.complx-dashboard .fluentform .ff-el-form-control::placeholder,
.dark body.complx-dashboard .fluentform input::placeholder,
.dark body.complx-dashboard .fluentform textarea::placeholder {
	color: rgba(232, 238, 251, 0.5) !important;
	opacity: 1;
}
html.dark body.complx-dashboard .fluentform select option,
.dark body.complx-dashboard .fluentform select option {
	background: #15264A;
	color: #E8EEFB;
}
html.dark body.complx-dashboard .fluentform .ff-el-help,
html.dark body.complx-dashboard .fluentform .ff-el-section-title,
html.dark body.complx-dashboard .fluentform .ff-section_break_desk,
.dark body.complx-dashboard .fluentform .ff-el-help,
.dark body.complx-dashboard .fluentform .ff-el-section-title,
.dark body.complx-dashboard .fluentform .ff-section_break_desk {
	color: rgba(232, 238, 251, 0.75) !important;
}
html.dark body.complx-dashboard .fluentform .choices__inner,
html.dark body.complx-dashboard .fluentform .choices__list--dropdown,
html.dark body.complx-dashboard .fluentform .choices__input,
.dark body.complx-dashboard .fluentform .choices__inner,
.dark body.complx-dashboard .fluentform .choices__list--dropdown,
.dark body.complx-dashboard .fluentform .choices__input {
	background: rgba(255, 255, 255, 0.08) !important;
	border-color: rgba(255, 255, 255, 0.28) !important;
	color: #E8EEFB !important;
}
html.dark body.complx-dashboard .fluentform .choices__placeholder,
html.dark body.complx-dashboard .fluentform .choices__item,
.dark body.complx-dashboard .fluentform .choices__placeholder,
.dark body.complx-dashboard .fluentform .choices__item {
	color: rgba(232, 238, 251, 0.85) !important;
}
html.dark body.complx-dashboard .fluentform .ff-btn-submit,
.dark body.complx-dashboard .fluentform .ff-btn-submit {
	background: #ffffff !important;
	color: #073B66 !important;
	border: none !important;
}
