/* Everest Equity - "Get Started" floating widget (replaces third-party chatbot embed) */

.ee-help-widget {
	position: fixed;
	right: 20px;
	bottom: 90px; /* clears the Google reCAPTCHA badge (60px tall, anchored bottom:14px/right:14px) */
	width: 64px;
	height: 64px;
	z-index: 9999;
}

.ee-help-widget__toggle {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 2;
	width: 64px;
	height: 64px;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
}

.ee-help-widget__toggle img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .3));
}

.ee-help-widget__panel {
	position: absolute;
	right: -10px;
	bottom: 34px;
	z-index: 1;
	width: 260px;
	padding: 20px 22px 34px;
	border-radius: 18px 18px 4px 18px;
	background: #0d2748;
	color: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .2s ease, transform .2s ease, visibility .2s;
	font-family: "Lato", sans-serif;
}

.ee-help-widget__close {
	position: absolute;
	top: -10px;
	left: -10px;
	width: 26px;
	height: 26px;
	padding: 0;
	border: 2px solid #fff;
	border-radius: 50%;
	background: #e0393e;
	color: #fff;
	font-size: 18px;
	line-height: 1;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 2px 6px rgba(0, 0, 0, .25);
	display: flex;
	align-items: center;
	justify-content: center;
}

.ee-help-widget:hover .ee-help-widget__panel,
.ee-help-widget.is-active .ee-help-widget__panel {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.ee-help-widget.is-closing .ee-help-widget__panel {
	opacity: 0 !important;
	visibility: hidden !important;
	transform: translateY(8px) !important;
}

.ee-help-widget__text {
	margin: 0 0 14px;
	font-size: 15px;
	line-height: 1.4;
	color: #fff;
}

.ee-help-widget__cta {
	display: block;
	text-align: center;
	padding: 10px 18px;
	border-radius: 30px;
	background: #fff;
	color: #003466;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: background .2s ease, color .2s ease;
}

.ee-help-widget__cta:hover,
.ee-help-widget__cta:focus {
	background: #c79767;
	color: #fff;
	text-decoration: none;
}

@media (max-width: 576px) {
	.ee-help-widget {
		right: 12px;
		bottom: 82px;
	}

	.ee-help-widget__panel {
		width: 210px;
		padding: 16px 18px 30px;
	}
}
