.recco-contact-float,
.recco-contact-float * {
	box-sizing: border-box;
}

.recco-contact-float {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 2147483000;
	font-family: "Golos Text", Arial, sans-serif;
	letter-spacing: 0;
}

.recco-contact-float__backdrop {
	position: fixed;
	inset: 0;
	z-index: 0;
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: rgba(13, 22, 32, .46);
	cursor: default;
	opacity: 0;
	pointer-events: none;
	transition: opacity .18s ease;
}

.recco-contact-float.has-open-panel .recco-contact-float__backdrop {
	opacity: 1;
	pointer-events: auto;
}

.recco-contact-float__actions {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
	transition: opacity .18s ease;
}

.recco-contact-float.has-open-panel .recco-contact-float__actions {
	opacity: 0;
	pointer-events: none;
}

.recco-contact-float__trigger,
.recco-contact-float__close,
.recco-contact-float__copy {
	-webkit-appearance: none;
	appearance: none;
	border: 0;
	cursor: pointer;
	font: inherit;
	letter-spacing: 0;
}

.recco-contact-float__trigger {
	position: relative;
	display: grid;
	width: 78px;
	height: 62px;
	padding: 0;
	place-items: center;
	border-radius: 31px;
	color: #fff;
	box-shadow: 0 8px 24px rgba(20, 28, 38, .22);
	transition: transform .18s ease, box-shadow .18s ease;
}

.recco-contact-float__trigger:hover,
.recco-contact-float__trigger:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(20, 28, 38, .3);
}

.recco-contact-float__trigger:focus-visible,
.recco-contact-float__close:focus-visible,
.recco-contact-float__copy:focus-visible,
.recco-contact-float__account a:focus-visible,
.recco-contact-float__qr-link:focus-visible {
	outline: 3px solid #f3b61f;
	outline-offset: 3px;
}

.recco-contact-float__trigger::before {
	position: absolute;
	right: 90px;
	top: 50%;
	padding: 7px 10px;
	border-radius: 4px;
	background: #182433;
	color: #fff;
	content: attr(data-tooltip);
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	opacity: 0;
	pointer-events: none;
	transform: translate(6px, -50%);
	transition: opacity .18s ease, transform .18s ease;
	white-space: nowrap;
}

.recco-contact-float__trigger:hover::before,
.recco-contact-float__trigger:focus-visible::before {
	opacity: 1;
	transform: translate(0, -50%);
}

.recco-contact-float__trigger--whatsapp {
	background: #1eaa59;
}

.recco-contact-float__trigger--email {
	background: #155aa8;
}

.recco-contact-float__trigger svg {
	width: 32px;
	height: 32px;
	fill: currentColor;
}

.recco-contact-float__trigger--email svg {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.recco-contact-float__panel {
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 2;
	width: 420px;
	max-width: calc(100vw - 32px);
	max-height: calc(100vh - 32px);
	max-height: calc(100dvh - 32px);
	padding: 30px;
	border: 1px solid #dfe4ea;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 50px rgba(18, 28, 40, .2);
	color: #17212b;
	opacity: 0;
	overflow-y: auto;
	overscroll-behavior: contain;
	transform: translate(-50%, calc(-50% + 10px));
	transition: opacity .18s ease, transform .18s ease;
}

.recco-contact-float__panel[hidden] {
	display: none;
}

.recco-contact-float__panel.is-open {
	opacity: 1;
	transform: translate(-50%, -50%);
}

.recco-contact-float__close {
	position: absolute;
	top: 10px;
	right: 10px;
	display: grid;
	width: 34px;
	height: 34px;
	padding: 0;
	place-items: center;
	border-radius: 50%;
	background: transparent;
	color: #536172;
}

.recco-contact-float__close:hover {
	background: #f1f3f5;
	color: #17212b;
}

.recco-contact-float__close svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-width: 2;
}

.recco-contact-float__heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	justify-items: center;
	padding: 0 36px;
	text-align: center;
}

.recco-contact-float__brand {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border-radius: 50%;
	color: #fff;
}

.recco-contact-float__brand--whatsapp {
	background: #1eaa59;
}

.recco-contact-float__brand--wechat {
	background: #07a84f;
}

.recco-contact-float__brand--telegram {
	background: #229ed9;
}

.recco-contact-float__brand--email {
	background: #155aa8;
}

.recco-contact-float__brand svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.recco-contact-float__brand--email svg {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.recco-contact-float__heading h2 {
	margin: 0;
	color: #17212b;
	font-family: Manrope, Arial, sans-serif;
	font-size: 23px;
	font-weight: 750;
	line-height: 1.25;
	letter-spacing: 0;
}

.recco-contact-float__heading p {
	margin: 3px 0 0;
	color: #657282;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0;
}

.recco-contact-float__qr-link {
	display: block;
	width: 250px;
	margin: 22px auto;
	border-radius: 4px;
}

.recco-contact-float__qr {
	display: block;
	width: 250px;
	height: 250px;
	max-width: 100%;
	object-fit: contain;
}

.recco-contact-float__account {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	justify-items: center;
	padding-top: 16px;
	border-top: 1px solid #e6e9ed;
	text-align: center;
}

.recco-contact-float__account--email {
	margin-top: 20px;
}

.recco-contact-float__form {
	display: grid;
	gap: 13px;
	margin-top: 22px;
}

.recco-contact-float__field {
	display: grid;
	gap: 6px;
	color: #334354;
	font-size: 13px;
	font-weight: 650;
}

.recco-contact-float__field input,
.recco-contact-float__field textarea {
	width: 100%;
	min-height: 42px;
	padding: 10px 11px;
	border: 1px solid #cbd2da;
	border-radius: 6px;
	background: #fff;
	color: #17212b;
	font: inherit;
}

.recco-contact-float__field textarea { min-height: 90px; resize: vertical; }
.recco-contact-float__field input:focus,
.recco-contact-float__field textarea:focus { outline: 3px solid rgba(21, 90, 168, .24); border-color: #155aa8; }
.recco-contact-float__submit { min-height: 44px; border: 0; border-radius: 6px; background: #155aa8; color: #fff; cursor: pointer; font: inherit; font-weight: 700; transition: transform .18s ease, background .18s ease; }
.recco-contact-float__submit:hover,
.recco-contact-float__submit:focus-visible { background: #104a8c; transform: translateY(-1px); outline: none; }
.recco-contact-float__honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }

.recco-contact-float__label {
	display: block;
	margin-bottom: 3px;
	color: #6b7786;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.3;
}

.recco-contact-float__account a {
	display: block;
	overflow-wrap: anywhere;
	color: #17212b;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.4;
	text-decoration: none;
}

.recco-contact-float__account-value {
	display: block;
	color: #17212b;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.4;
}

.recco-contact-float__account a:hover {
	color: #155aa8;
	text-decoration: underline;
}

.recco-contact-float__copy {
	display: inline-flex;
	min-height: 38px;
	padding: 8px 11px;
	align-items: center;
	justify-content: center;
	gap: 7px;
	border: 1px solid #cbd2da;
	border-radius: 6px;
	background: #fff;
	color: #253445;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	width: 260px;
	max-width: 100%;
}

.recco-contact-float__copy:hover {
	border-color: #155aa8;
	background: #f5f8fc;
	color: #155aa8;
}

.recco-contact-float__copy.is-copied {
	border-color: #16834c;
	background: #eff9f3;
	color: #11713f;
}

.recco-contact-float__copy svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.recco-contact-float__check-icon {
	display: none;
}

.recco-contact-float__copy.is-copied .recco-contact-float__copy-icon {
	display: none;
}

.recco-contact-float__copy.is-copied .recco-contact-float__check-icon {
	display: block;
}

@media (max-width: 520px) {
	.recco-contact-float {
		right: 16px;
		bottom: 16px;
	}

	.recco-contact-float__trigger {
		width: 70px;
		height: 56px;
		border-radius: 28px;
	}

	.recco-contact-float__trigger::before {
		display: none;
	}

	.recco-contact-float__panel {
		width: calc(100vw - 24px);
		max-width: 400px;
		padding: 24px;
		transform: translate(-50%, calc(-50% + 8px));
	}

	.recco-contact-float__panel.is-open {
		transform: translate(-50%, -50%);
	}

	.recco-contact-float__qr-link,
	.recco-contact-float__qr {
		width: 220px;
		height: 220px;
	}

}

@media (prefers-reduced-motion: reduce) {
	.recco-contact-float__trigger,
	.recco-contact-float__panel,
	.recco-contact-float__backdrop,
	.recco-contact-float__actions,
	.recco-contact-float__trigger::before {
		transition: none;
	}
}
