.klipsa-discount-notice {
	position: fixed;
	right: 24px;
	bottom: 120px;
	z-index: 9998;
	display: flex;
	align-items: center;
	gap: 14px;
	max-width: 390px;
	padding: 18px 42px 18px 18px;
	background: #111;
	color: #fff;
	border-radius: 18px;
	box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
	animation: klipsaDiscountNoticeIn .35s ease;
}

.klipsa-discount-icon {
	width: 46px;
	height: 46px;
	min-width: 46px;
	border-radius: 50%;
	background: #d6ad68;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 20px;
}

.klipsa-discount-content {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.klipsa-discount-content strong {
	font-size: 16px;
	font-weight: 800;
	color: #fff;
}

.klipsa-discount-content span {
	font-size: 14px;
	line-height: 1.45;
	color: rgba(255, 255, 255, .86);
}

.klipsa-discount-content b {
	color: #fff;
	font-weight: 800;
}

.klipsa-discount-close {
	position: absolute;
	top: 8px;
	right: 10px;
	border: none;
	background: transparent;
	color: #fff;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	opacity: .75;
}

.klipsa-discount-close:hover {
	opacity: 1;
}

.klipsa-discount-notice.is-hidden {
	display: none !important;
}

@keyframes klipsaDiscountNoticeIn {
	from {
		opacity: 0;
		transform: translateY(16px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 768px) {
	.klipsa-discount-notice {
		left: 14px;
		right: 14px;
		bottom: 110px;
		max-width: none;
		padding: 16px 40px 16px 16px;
	}

	.klipsa-discount-content strong {
		font-size: 15px;
	}

	.klipsa-discount-content span {
		font-size: 13px;
	}
}