.lnh-popin-widget {
	--lnh-popin-title-bg: #38b5c7;
	--lnh-popin-cta-bg: #38b5c7;
	--lnh-popin-cta-text: #ffffff;
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 250px;
	background: #ffffff;
	border: 0;
	border-top: 4px solid var(--lnh-popin-title-bg);
	border-radius: 12px;
	box-shadow: 0 10px 24px rgba(6, 33, 61, 0.18);
	overflow: hidden;
	z-index: 9999;
	font-family: inherit;
}

.lnh-popin-title-top {
	background: var(--lnh-popin-title-bg);
	color: #fff;
	text-align: center;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.2;
	padding: 16px 12px;
}

.lnh-popin-close {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 26px;
	height: 26px;
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	background: rgba(10, 37, 64, 0.72);
	color: #fff;
	font-size: 18px;
	line-height: 24px;
	cursor: pointer;
	transition: background .2s ease;
}

.lnh-popin-close:hover {
	background: rgba(10, 37, 64, 0.9);
}

.lnh-popin-image-link {
	display: block;
	line-height: 0;
	background: #f2f5f9;
}

.lnh-popin-image-link img {
	display: block;
	width: 100%;
	height: auto;
	min-height: 150px;
	object-fit: cover;
}

.lnh-popin-content {
	padding: 10px 12px 14px;
	background: var(--lnh-popin-title-bg);
}

.lnh-popin-cta {
	width: 100%;
	box-sizing: border-box;
	text-align: center;
	background: var(--lnh-popin-cta-bg) !important;
	color: var(--lnh-popin-cta-text) !important;
	border-color: var(--lnh-popin-cta-bg) !important;
	border-width: 1px !important;
	border-style: solid !important;
	background-image: none !important;
	text-shadow: none !important;
	font-weight: 700;
	transition: none !important;
	transform: none !important;
	box-shadow: none !important;
}

.lnh-popin-cta:hover,
.lnh-popin-cta:focus,
.lnh-popin-cta:active {
	background: var(--lnh-popin-cta-bg) !important;
	border-color: var(--lnh-popin-cta-bg) !important;
	color: var(--lnh-popin-cta-text) !important;
	transform: none !important;
	box-shadow: none !important;
	background-image: none !important;
}

.lnh-popin-cta.is-disabled {
	display: inline-block;
	width: 100%;
	padding: 9px 12px;
	box-sizing: border-box;
	text-align: center;
	background: #9aa8b7;
	color: #fff;
	font-size: 13px;
	border-radius: 10px;
	font-weight: 700;
}

@media (max-width: 768px) {
	.lnh-popin-widget {
		right: auto;
		left: 50%;
		transform: translateX(-50%);
		bottom: 15px;
	}
}
