.ddl-floating-converter {
	--ddl-float-color: #16784b;
	--ddl-float-hover: #0f5f3a;
	align-items: center;
	background: var(--ddl-float-color);
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 999px;
	box-shadow: 0 14px 36px rgba(5, 46, 34, .28), 0 4px 12px rgba(5, 46, 34, .18);
	color: #fff !important;
	display: inline-flex;
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 15px;
	font-weight: 800;
	gap: 10px;
	line-height: 1;
	max-width: calc(100vw - 36px);
	min-height: 56px;
	padding: 9px 20px 9px 10px;
	position: fixed;
	text-decoration: none !important;
	transform: translateZ(0);
	transition: background-color .18s ease, box-shadow .18s ease, transform .18s ease;
	white-space: nowrap;
	z-index: 99990;
}

.ddl-floating-converter:hover,
.ddl-floating-converter:focus-visible {
	background: var(--ddl-float-hover);
	box-shadow: 0 18px 42px rgba(5, 46, 34, .34), 0 5px 14px rgba(5, 46, 34, .2);
	color: #fff !important;
	transform: translateY(-2px);
}

.ddl-floating-converter:focus-visible {
	outline: 3px solid rgba(255, 255, 255, .95);
	outline-offset: 3px;
}

.ddl-floating-converter__icon {
	align-items: center;
	background: rgba(255, 255, 255, .15);
	border-radius: 50%;
	display: inline-flex;
	flex: 0 0 38px;
	height: 38px;
	justify-content: center;
	width: 38px;
}

.ddl-floating-converter__icon svg {
	display: block;
	height: 23px;
	width: 23px;
}

.ddl-floating-converter__text {
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (max-width: 600px) {
	.ddl-floating-converter {
		border-radius: 50%;
		bottom: max(18px, env(safe-area-inset-bottom)) !important;
		height: 58px;
		justify-content: center;
		min-height: 58px;
		padding: 0;
		width: 58px;
	}

	.ddl-floating-converter--left {
		left: 14px !important;
	}

	.ddl-floating-converter--right {
		right: 14px !important;
	}

	.ddl-floating-converter__icon {
		background: transparent;
		flex-basis: 40px;
		height: 40px;
		width: 40px;
	}

	.ddl-floating-converter__icon svg {
		height: 27px;
		width: 27px;
	}

	.ddl-floating-converter__text {
		clip: rect(0 0 0 0);
		clip-path: inset(50%);
		height: 1px;
		overflow: hidden;
		position: absolute;
		white-space: nowrap;
		width: 1px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ddl-floating-converter {
		transition: none;
	}
}

@media print {
	.ddl-floating-converter {
		display: none !important;
	}
}

