.sd-smart-contact {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 10000;
	max-width: min(380px, calc(100vw - 32px));
	font-family: inherit;
	color: #ffffff;
}

.sd-smart-contact__launcher {
	display: none;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	margin-left: auto;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 999px;
	background: #e31b23;
	color: #ffffff;
	box-shadow: 0 18px 38px rgba(11, 42, 61, 0.32), 0 10px 26px rgba(227, 27, 35, 0.22);
	cursor: pointer;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1;
	text-transform: uppercase;
}

.sd-smart-contact__hint {
	position: absolute;
	right: 72px;
	bottom: 7px;
	display: none;
	align-items: center;
	max-width: min(252px, calc(100vw - 112px));
	border: 1px solid rgba(11, 42, 61, 0.14);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 16px 34px rgba(11, 42, 61, 0.22);
	color: #0b2a3d;
	overflow: hidden;
}

.sd-smart-contact.is-collapsed.has-hint .sd-smart-contact__hint {
	display: flex;
	animation: sd-smart-contact-hint-in 180ms ease-out both;
}

.sd-smart-contact__hint::after {
	content: "";
	position: absolute;
	right: -6px;
	bottom: 18px;
	width: 12px;
	height: 12px;
	border-top: 1px solid rgba(11, 42, 61, 0.14);
	border-right: 1px solid rgba(11, 42, 61, 0.14);
	background: #ffffff;
	transform: rotate(45deg);
}

.sd-smart-contact__hint-text,
.sd-smart-contact__hint-close {
	position: relative;
	z-index: 1;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
}

.sd-smart-contact__hint-text {
	min-height: 44px;
	padding: 10px 12px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
	text-align: left;
}

.sd-smart-contact__hint-close {
	align-self: stretch;
	width: 32px;
	border-left: 1px solid rgba(11, 42, 61, 0.1);
	color: rgba(11, 42, 61, 0.56);
	cursor: pointer;
	font-size: 20px;
	line-height: 1;
}

.sd-smart-contact__hint-text:hover,
.sd-smart-contact__hint-text:focus-visible,
.sd-smart-contact__hint-close:hover,
.sd-smart-contact__hint-close:focus-visible {
	color: #e31b23;
}

.sd-smart-contact__panel {
	position: relative;
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-top: 4px solid #d6a13d;
	border-radius: 8px;
	background: linear-gradient(145deg, #0b2a3d 0%, #10384f 100%);
	box-shadow: 0 24px 56px rgba(11, 42, 61, 0.32);
}

.sd-smart-contact.is-collapsed .sd-smart-contact__launcher {
	display: inline-flex;
}

.sd-smart-contact.is-collapsed .sd-smart-contact__panel {
	display: none;
}

@keyframes sd-smart-contact-hint-in {
	from {
		opacity: 0;
		transform: translateX(8px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.sd-smart-contact__close {
	position: absolute;
	top: 8px;
	right: 10px;
	width: 32px;
	height: 32px;
	border: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.72);
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

.sd-smart-contact__close:hover,
.sd-smart-contact__close:focus-visible {
	color: #ffffff;
}

.sd-smart-contact__eyebrow {
	margin: 0 34px 8px 0;
	color: #d6a13d;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.sd-smart-contact__message {
	margin: 0 0 16px;
	color: #f5f8fb;
	font-size: 16px;
	line-height: 1.45;
}

.sd-smart-contact__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.sd-smart-contact__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 14px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 6px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
}

.sd-smart-contact__button:hover,
.sd-smart-contact__button:focus-visible {
	border-color: rgba(255, 255, 255, 0.48);
	color: #ffffff;
}

.sd-smart-contact__button--primary {
	border-color: #e31b23;
	background: #e31b23;
	box-shadow: 0 12px 30px rgba(227, 27, 35, 0.22);
}

.sd-smart-contact__lead {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.sd-smart-contact__label {
	display: block;
	margin-bottom: 8px;
	color: #dce8f1;
	font-size: 13px;
	font-weight: 800;
}

.sd-smart-contact__lead-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
}

.sd-smart-contact__input,
.sd-smart-contact__textarea {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 6px;
	background: #ffffff;
	color: #0b2a3d;
	font: inherit;
	font-size: 14px;
}

.sd-smart-contact__input {
	min-height: 40px;
	padding: 9px 10px;
}

.sd-smart-contact__textarea {
	margin-top: 8px;
	padding: 9px 10px;
	resize: vertical;
}

.sd-smart-contact__submit {
	min-height: 40px;
	padding: 9px 12px;
	border: 1px solid #e31b23;
	border-radius: 6px;
	background: #e31b23;
	color: #ffffff;
	cursor: pointer;
	font-size: 14px;
	font-weight: 800;
}

.sd-smart-contact__submit:disabled {
	cursor: progress;
	opacity: 0.72;
}

.sd-smart-contact__status {
	min-height: 18px;
	margin: 8px 0 0;
	color: #dce8f1;
	font-size: 12px;
	line-height: 1.35;
}

@media (max-width: 640px) {
	.sd-smart-contact {
		right: 16px;
		bottom: 16px;
		left: 16px;
		max-width: none;
	}

	.sd-smart-contact.is-collapsed {
		left: auto;
	}

	.sd-smart-contact__hint {
		right: 68px;
		bottom: 6px;
		max-width: min(230px, calc(100vw - 108px));
	}

	.sd-smart-contact__hint-text {
		min-height: 42px;
		padding: 9px 10px;
		font-size: 12px;
	}

	.sd-smart-contact__panel {
		padding: 18px;
	}

	.sd-smart-contact__message {
		font-size: 15px;
	}

	.sd-smart-contact__lead-row {
		grid-template-columns: 1fr;
	}
}
