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