/**
 * WDI Popup
*/

.home .ast-builder-menu-2,
.home .ast-builder-menu-1,
.home #ast-mobile-header .ast-builder-menu-1,
.home .ast-mobile-menu-trigger-fill,
.home .ast-header-search,
.home .site-description,
.home #ast-mobile-header .ast-grid-right-section {
	display: none !important;
}

#wdi-overlay {
	position: fixed;
	inset: 0;
	background: rgba(3, 29, 35, 0.82);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	z-index: 99998;
	display: none;
	align-items: center;
	justify-content: center;
}

#wdi-overlay.active {
	display: flex;
}

#wdi-popup {
	width: 440px;
	max-width: 94vw;
	background: #031d23;
	border: 1px solid #043e47;
	border-top: 3px solid #fffa52;
	border-radius: 2px;
	padding: 44px 40px 38px;
	box-shadow: 0 40px 100px rgba(0,0,0,0.65);
	animation: wdiSlideUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
	font-family: 'Arial', sans-serif;
}

@keyframes wdiSlideUp {
	from { opacity: 0; transform: translateY(30px); }
	to	 { opacity: 1; transform: translateY(0); }
}

.wdi-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 28px;
}

.wdi-bar {
	width: 3px;
	height: 50px;
	background: #fffa52;
	border-radius: 2px;
	flex-shrink: 0;
}

.wdi-brand {
	font-size: 10px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #818a86;
	font-weight: 600;
	margin-bottom: 3px;
}

.wdi-title {
	font-size: 20px;
	color: #e1efe6;
	font-family: Georgia, serif;
	line-height: 1.2;
}

.wdi-desc {
	font-size: 13px;
	color: #818a86;
	line-height: 1.65;
	margin: 0 0 28px;
	padding-bottom: 24px;
	border-bottom: 1px solid #1c3338;
}

.wdi-field {
	margin-bottom: 18px;
}

.wdi-field label {
	display: block;
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #818a86;
	margin-bottom: 8px;
}

.wdi-field input {
	width: 100%;
	box-sizing: border-box;
	background: #1c3338;
	border: 1px solid #043e47;
	color: #e1efe6;
	font-size: 14px;
	padding: 12px 15px;
	border-radius: 2px;
	outline: none;
	transition: border-color 0.2s;
}

.wdi-field input:focus {
	border-color: #fffa52;
}

#wdi-submit, #wdi-reset-submit {
	width: 100%;
	background: #fffa52;
	color: #031d23;
	border: none;
	padding: 14px;
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 700;
	border-radius: 2px;
	cursor: pointer;
	margin-top: 8px;
	transition: background 0.2s;
}

#wdi-sso {
	display: block;
	width: 100%;
	height: 40px;
	background: #fffa52;
	color: #031d23;
	border: none;
	padding: 6px;
	font-size: 12px;
	letter-spacing: 0.14em;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 700;
	border-radius: 2px;
	cursor: pointer;
	margin-top: 8px;
	transition: background 0.2s;
}

#wdi-submit:hover, #wdi-sso:hover, #wdi-reset-submit:hover {
	background: #e8e33a;
}

.wdi-dots::after {
	content: '';
	display: inline-block;
	width: 1em;
	text-align: left;
	animation: wdi-dots-cycle 1.2s steps(1) infinite;
}

@keyframes wdi-dots-cycle {
	0%   { content: ''; }
	25%  { content: '.'; }
	50%  { content: '..'; }
	75%  { content: '...'; }
	100% { content: ''; }
}

#wdi-error {
	display: none;
	color: #e1efe6;
	background: rgba(255,250,82,0.08);
	border: 1px solid rgba(255,250,82,0.25);
	border-radius: 2px;
	font-size: 13px;
	padding: 10px 14px;
	margin-top: 14px;
	text-align: center;
}

.wdi-footer {
	text-align: center;
	margin-top: 18px;
	font-size: 11px;
	color: #43524f;
}

/* Forgot Password */
.wdi-forgot {
	text-align: right;
	margin-top: -10px;
	margin-bottom: 20px;
}

.wdi-forgot a {
	font-size: 11px;
	color: #818a86;
	text-decoration: none;
	letter-spacing: 0.06em;
	transition: color 0.2s;
}

.wdi-forgot a:hover {
	color: #fffa52;
}

#wdi-reset-form {
	display: none;
}

#wdi-reset-form p {
	font-size: 13px;
	color: #818a86;
	line-height: 1.6;
	margin: 0 0 20px;
}

#wdi-reset-msg {
	display: none;
	font-size: 13px;
	color: #e1efe6;
	background: rgba(255,250,82,0.08);
	border: 1px solid rgba(255,250,82,0.2);
	border-radius: 2px;
	padding: 10px 14px;
	margin-top: 14px;
	text-align: center;
}

.wdi-back {
	background: none;
	border: none;
	color: #818a86;
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	padding: 0;
	margin-top: 16px;
	display: block;
	transition: color 0.2s;
}

.wdi-back:hover {
	color: #fffa52;
}