/**
 * A-kasse Feed 2026 front-end styles.
 */

.akf-feed,
.akf-feed * {
	box-sizing: border-box;
}

.akf-feed {
	--akf-primary: #0f9f6e;
	--akf-primary-dark: #087e58;
	--akf-primary-soft: #ecfdf5;
	--akf-blue: #1769c2;
	--akf-blue-dark: #0f4f98;
	--akf-blue-soft: #eef6ff;
	--akf-orange: #e78913;
	--akf-text: #172033;
	--akf-muted: #667085;
	--akf-border: #e5e9f0;
	--akf-surface: #ffffff;
	--akf-surface-soft: #f7f9fc;
	--akf-shadow: 0 8px 28px rgba(19, 33, 68, 0.07);
	--akf-shadow-hover: 0 15px 38px rgba(19, 33, 68, 0.12);
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	color: var(--akf-text);
	font-family: inherit;
	font-size: 16px;
	line-height: 1.55;
}

.akf-feed [hidden] {
	display: none !important;
}

.akf-screen-reader-text {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.akf-top-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin: 0 0 24px;
}

.akf-counter {
	margin: 0;
	color: var(--akf-muted);
	font-size: 14px;
	font-weight: 650;
}

.akf-filter-panel {
	display: flex;
	align-items: center;
	gap: 12px;
}

.akf-filter-panel-heading {
	display: none;
}

.akf-select {
	min-width: 210px;
	min-height: 44px;
	margin: 0;
	padding: 9px 40px 9px 14px;
	border: 1px solid var(--akf-border);
	border-radius: 10px;
	background-color: var(--akf-surface);
	color: var(--akf-text);
	font: inherit;
	font-size: 14px;
	font-weight: 650;
	line-height: 1.3;
	box-shadow: 0 2px 8px rgba(19, 33, 68, 0.03);
	cursor: pointer;
}

.akf-select:hover {
	border-color: #c9d1dd;
}

.akf-select:focus-visible,
.akf-mobile-filter-button:focus-visible,
.akf-close-filter:focus-visible,
.akf-show-more-button:focus-visible,
.akf-button:focus-visible,
.akf-sticky-button:focus-visible,
.akf-methodology summary:focus-visible {
	outline: 3px solid rgba(23, 105, 194, 0.24);
	outline-offset: 3px;
}

.akf-mobile-filter-button {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 9px 15px;
	border: 1px solid var(--akf-border);
	border-radius: 10px;
	background: var(--akf-surface);
	color: var(--akf-text);
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	box-shadow: 0 2px 8px rgba(19, 33, 68, 0.04);
	cursor: pointer;
}

.akf-mobile-filter-button svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.akf-filter-overlay {
	display: none;
}

.akf-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.akf-card {
	position: relative;
	display: grid;
	grid-template-columns: minmax(145px, 180px) minmax(0, 1fr) minmax(205px, 225px);
	align-items: center;
	gap: 30px;
	margin: 0;
	padding: 25px;
	border: 1px solid var(--akf-border);
	border-radius: 18px;
	background: var(--akf-surface);
	box-shadow: var(--akf-shadow);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.akf-card:hover {
	transform: translateY(-2px);
	border-color: #d7dde7;
	box-shadow: var(--akf-shadow-hover);
}

.akf-badge {
	position: absolute;
	top: -12px;
	right: 24px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	min-height: 25px;
	padding: 4px 13px;
	border-radius: 999px;
	background: var(--akf-blue);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.01em;
	box-shadow: 0 5px 14px rgba(23, 105, 194, 0.18);
}

.akf-badge-campaign {
	background: var(--akf-orange);
	box-shadow: 0 5px 14px rgba(231, 137, 19, 0.2);
}

.akf-logo-section {
	min-width: 0;
	text-align: center;
}

.akf-logo-box {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 94px;
	margin: 0 0 11px;
	padding: 15px;
	border: 1px solid var(--akf-border);
	border-radius: 13px;
	background: #fff;
}

.akf-logo-box img {
	display: block;
	max-width: 100%;
	max-height: 64px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.akf-rating {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	color: var(--akf-text);
	font-size: 13px;
	font-weight: 700;
}

.akf-rating svg {
	width: 16px;
	height: 16px;
	fill: #f5a623;
}

.akf-information {
	min-width: 0;
}

.akf-card-title {
	margin: 0 0 7px !important;
	padding: 0;
	color: var(--akf-text);
	font-size: clamp(20px, 2vw, 23px);
	font-weight: 800;
	line-height: 1.25;
}

.akf-target-group,
.akf-promotion,
.akf-price-label,
.akf-price-value,
.akf-price-breakdown {
	margin-top: 0;
}

.akf-target-group {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 12px;
	color: var(--akf-muted);
	font-size: 13px;
	font-weight: 600;
}

.akf-target-group svg,
.akf-promotion svg {
	flex: 0 0 auto;
	width: 15px;
	height: 15px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.akf-promotion {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 12px;
	color: var(--akf-primary-dark);
	font-size: 14px;
	font-weight: 800;
}

.akf-usps {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.akf-usps li {
	position: relative;
	margin: 0 0 7px !important;
	padding: 0 0 0 27px !important;
	color: #465064;
	font-size: 15px;
	line-height: 1.45;
}

.akf-usps li:last-child {
	margin-bottom: 0 !important;
}

.akf-usps li::before {
	content: "";
	position: absolute;
	top: 0.19em;
	left: 0;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background-color: var(--akf-primary-soft);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23087e58' stroke-width='2.7'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m5 13 4 4L19 7'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 14px;
}

.akf-price-section {
	min-width: 0;
	padding-left: 28px;
	border-left: 1px solid var(--akf-border);
	text-align: right;
}

.akf-price-label {
	margin-bottom: 1px;
	color: var(--akf-muted);
	font-size: 11px;
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.akf-price-value {
	margin-bottom: 1px;
	color: var(--akf-text);
	font-size: clamp(30px, 3vw, 36px);
	font-weight: 850;
	line-height: 1.12;
}

.akf-price-value span {
	color: var(--akf-muted);
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
}

.akf-price-breakdown {
	margin-bottom: 16px;
	color: var(--akf-muted);
	font-size: 11px;
	line-height: 1.45;
}

.akf-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 47px;
	padding: 11px 16px;
	border: 1px solid var(--akf-primary);
	border-radius: 10px;
	background: var(--akf-primary);
	color: #fff !important;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.25;
	text-align: center;
	text-decoration: none !important;
	box-shadow: 0 7px 16px rgba(15, 159, 110, 0.17);
	transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.akf-button:hover {
	transform: translateY(-1px);
	border-color: var(--akf-primary-dark);
	background: var(--akf-primary-dark);
	color: #fff !important;
	box-shadow: 0 9px 20px rgba(8, 126, 88, 0.22);
}

.akf-ad-label {
	display: block;
	margin-top: 7px;
	color: var(--akf-muted);
	font-size: 10px;
	font-weight: 600;
	line-height: 1.3;
	text-align: center;
}

.akf-show-more {
	margin: 30px 0 0;
	text-align: center;
}

.akf-show-more-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 46px;
	padding: 10px 22px;
	border: 1px solid var(--akf-border);
	border-radius: 999px;
	background: var(--akf-surface);
	color: var(--akf-text);
	font: inherit;
	font-size: 14px;
	font-weight: 750;
	box-shadow: var(--akf-shadow);
	cursor: pointer;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.akf-show-more-button:hover {
	transform: translateY(-1px);
	border-color: #ccd4df;
	box-shadow: 0 11px 27px rgba(19, 33, 68, 0.1);
}

.akf-show-more-button svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.akf-after-feed {
	display: grid;
	gap: 18px;
	margin-top: 38px;
}

.akf-disclosure {
	display: flex;
	align-items: flex-start;
	gap: 13px;
	margin: 0;
	padding: 17px 21px;
	border: 1px solid #d7e9fb;
	border-radius: 16px;
	background: linear-gradient(135deg, #f5faff 0%, #eef6ff 100%);
	color: #245680;
	box-shadow: 0 7px 22px rgba(23, 105, 194, 0.06);
}

.akf-disclosure-icon {
	display: inline-flex;
	flex: 0 0 24px;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	margin-top: 1px;
	border-radius: 50%;
	background: var(--akf-blue);
	color: #fff;
	font-size: 14px;
	font-weight: 850;
	font-style: normal;
	line-height: 1;
}

.akf-disclosure p {
	margin: 0;
	font-size: 13px;
	line-height: 1.6;
}

.akf-methodology {
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--akf-border);
	border-radius: 16px;
	background: var(--akf-surface);
	box-shadow: var(--akf-shadow);
}

.akf-methodology summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 62px;
	padding: 17px 21px;
	list-style: none;
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	color: var(--akf-blue);
	font-size: 16px;
	font-weight: 800;
	line-height: 1.4;
	cursor: pointer;
	user-select: none;
}

.akf-methodology summary::-webkit-details-marker {
	display: none;
}

.akf-methodology summary::marker {
	content: "";
}

.akf-methodology summary:hover {
	color: var(--akf-blue-dark);
}

.akf-methodology-chevron {
	position: relative;
	flex: 0 0 12px;
	width: 12px;
	height: 12px;
	margin-right: 3px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	transform-origin: center;
	transition: transform 180ms ease;
}

.akf-methodology[open] .akf-methodology-chevron {
	transform: rotate(225deg) translate(-2px, -2px);
}

.akf-methodology-content {
	padding: 23px 21px 25px;
	border-top: 1px solid var(--akf-border);
	color: #30394b;
	background: #fff;
}

.akf-methodology-content p {
	margin: 0 0 17px;
}

.akf-methodology-content ul {
	margin: 0 0 19px 1.15em !important;
	padding: 0 0 0 0.75em !important;
}

.akf-methodology-content li {
	margin: 0 0 8px !important;
	padding-left: 2px !important;
}

.akf-methodology-content li::marker {
	color: var(--akf-blue);
}

.akf-methodology-content strong {
	color: var(--akf-text);
}

.akf-methodology-conclusion {
	margin-bottom: 0 !important;
	padding: 16px 18px;
	border-left: 4px solid var(--akf-primary);
	border-radius: 0 10px 10px 0;
	background: var(--akf-primary-soft);
}

.akf-empty {
	padding: 15px;
	border: 1px solid #e5e9f0;
	border-radius: 10px;
	background: #f7f9fc;
}

@media (prefers-reduced-motion: reduce) {
	.akf-card,
	.akf-button,
	.akf-show-more-button,
	.akf-methodology-chevron,
	.akf-filter-panel {
		transition: none !important;
	}
}

@media (max-width: 900px) {
	.akf-card {
		grid-template-columns: 145px minmax(0, 1fr);
		gap: 22px 25px;
	}

	.akf-price-section {
		grid-column: 1 / -1;
		padding: 20px 0 0;
		border-top: 1px solid var(--akf-border);
		border-left: 0;
		text-align: center;
	}

	.akf-button {
		max-width: 330px;
		margin: 0 auto;
	}
}

@media (max-width: 850px) {
	.akf-feed.akf-is-enhanced .akf-mobile-filter-button {
		display: inline-flex;
	}

	.akf-feed.akf-is-enhanced .akf-filter-panel {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 100001;
		display: flex;
		align-items: stretch;
		width: min(88vw, 340px);
		height: 100dvh;
		padding: 24px 20px;
		background: var(--akf-surface);
		box-shadow: -15px 0 38px rgba(17, 24, 39, 0.18);
		transform: translateX(105%);
		transition: transform 220ms ease;
	}

	.akf-feed.akf-is-enhanced.akf-filter-is-open .akf-filter-panel {
		transform: translateX(0);
	}

	.akf-feed.akf-is-enhanced .akf-filter-panel {
		flex-direction: column;
		gap: 20px;
	}

	.akf-feed.akf-is-enhanced .akf-filter-panel-heading {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 15px;
		padding-bottom: 17px;
		border-bottom: 1px solid var(--akf-border);
		font-size: 18px;
	}

	.akf-feed.akf-is-enhanced .akf-close-filter {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 38px;
		height: 38px;
		padding: 0;
		border: 1px solid var(--akf-border);
		border-radius: 50%;
		background: var(--akf-surface-soft);
		color: var(--akf-text);
		font: inherit;
		font-size: 25px;
		line-height: 1;
		cursor: pointer;
	}

	.akf-feed.akf-is-enhanced .akf-select {
		width: 100%;
		min-height: 48px;
	}

	.akf-feed.akf-is-enhanced .akf-filter-overlay {
		position: fixed;
		inset: 0;
		z-index: 100000;
		display: block;
		background: rgba(14, 23, 38, 0.5);
		backdrop-filter: blur(2px);
	}
}

@media (max-width: 620px) {
	.akf-feed {
		font-size: 15px;
	}

	.akf-top-bar {
		margin-bottom: 20px;
	}

	.akf-counter {
		font-size: 13px;
	}

	.akf-card {
		grid-template-columns: 1fr;
		gap: 19px;
		padding: 29px 18px 20px;
		border-radius: 15px;
	}

	.akf-card:hover {
		transform: none;
	}

	.akf-badge {
		right: 50%;
		max-width: calc(100% - 36px);
		transform: translateX(50%);
		white-space: nowrap;
	}

	.akf-logo-box {
		max-width: 210px;
		margin-right: auto;
		margin-left: auto;
	}

	.akf-information {
		text-align: left;
	}

	.akf-card-title {
		text-align: center;
	}

	.akf-target-group,
	.akf-promotion {
		justify-content: center;
		text-align: center;
	}

	.akf-price-section {
		grid-column: auto;
		padding-top: 19px;
	}

	.akf-after-feed {
		gap: 14px;
		margin-top: 30px;
	}

	.akf-disclosure {
		gap: 10px;
		padding: 15px;
		border-radius: 13px;
	}

	.akf-disclosure-icon {
		flex-basis: 22px;
		width: 22px;
		height: 22px;
	}

	.akf-disclosure p {
		font-size: 12.5px;
	}

	.akf-methodology {
		border-radius: 13px;
	}

	.akf-methodology summary {
		min-height: 58px;
		padding: 15px 16px;
		font-size: 15px;
	}

	.akf-methodology-content {
		padding: 19px 16px 21px;
	}

	.akf-methodology-content ul {
		margin-left: 0.9em !important;
		padding-left: 0.65em !important;
	}

	.akf-methodology-conclusion {
		padding: 14px;
	}
}

/* Sticky footer conversion bar. It is hidden unless JavaScript confirms the feed has been passed. */
.akf-sticky-sentinel {
	display: block;
	width: 100%;
	height: 1px;
	margin: 0;
	padding: 0;
	pointer-events: none;
}

.akf-sticky-bar[hidden] {
	display: none !important;
}

.akf-sticky-bar {
	--akf-sticky-primary: #0f9f6e;
	--akf-sticky-primary-dark: #087e58;
	--akf-sticky-text: #172033;
	--akf-sticky-muted: #667085;
	--akf-sticky-border: #e2e8f0;
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 99990;
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	padding: 10px max(14px, env(safe-area-inset-right)) calc(10px + env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
	border-top: 1px solid var(--akf-sticky-border);
	background: rgba(255, 255, 255, 0.98);
	color: var(--akf-sticky-text);
	font-family: inherit;
	box-shadow: 0 -12px 34px rgba(15, 23, 42, 0.13);
	opacity: 0;
	visibility: hidden;
	transform: translateY(110%);
	transition: transform 220ms ease, opacity 180ms ease, visibility 220ms ease;
}

.akf-sticky-bar,
.akf-sticky-bar * {
	box-sizing: border-box;
}

.akf-sticky-bar.akf-sticky-bar-is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.akf-sticky-bar-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(155px, 190px);
	align-items: center;
	gap: 20px;
	width: 100%;
	max-width: 1200px;
	min-height: 66px;
	margin: 0 auto;
}

.akf-sticky-summary {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.akf-sticky-logo {
	display: flex;
	flex: 0 0 76px;
	align-items: center;
	justify-content: center;
	width: 76px;
	height: 54px;
	padding: 7px 9px;
	border: 1px solid var(--akf-sticky-border);
	border-radius: 10px;
	background: #fff;
}

.akf-sticky-logo img {
	display: block;
	max-width: 100%;
	max-height: 38px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.akf-sticky-copy {
	display: flex;
	flex-direction: column;
	min-width: 0;
	line-height: 1.25;
}

.akf-sticky-eyebrow {
	margin-bottom: 2px;
	color: var(--akf-sticky-primary-dark);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.akf-sticky-name {
	overflow: hidden;
	color: var(--akf-sticky-text);
	font-size: 17px;
	font-weight: 850;
	line-height: 1.25;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.akf-sticky-detail {
	overflow: hidden;
	margin-top: 3px;
	color: var(--akf-sticky-muted);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.akf-sticky-price {
	min-width: 112px;
	padding-left: 20px;
	border-left: 1px solid var(--akf-sticky-border);
	text-align: right;
}

.akf-sticky-price > span {
	display: block;
	margin-bottom: 1px;
	color: var(--akf-sticky-muted);
	font-size: 9px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.akf-sticky-price strong {
	display: block;
	color: var(--akf-sticky-text);
	font-size: 25px;
	font-weight: 850;
	line-height: 1.1;
	white-space: nowrap;
}

.akf-sticky-price small {
	color: var(--akf-sticky-muted);
	font-size: 11px;
	font-weight: 650;
}

.akf-sticky-action {
	min-width: 0;
	text-align: center;
}

.akf-sticky-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 45px;
	padding: 10px 16px;
	border: 1px solid var(--akf-sticky-primary);
	border-radius: 9px;
	background: var(--akf-sticky-primary);
	color: #fff !important;
	font-size: 14px;
	font-weight: 850;
	line-height: 1.2;
	text-align: center;
	text-decoration: none !important;
	box-shadow: 0 7px 16px rgba(15, 159, 110, 0.18);
	transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.akf-sticky-button:hover {
	transform: translateY(-1px);
	border-color: var(--akf-sticky-primary-dark);
	background: var(--akf-sticky-primary-dark);
	color: #fff !important;
}

.akf-sticky-ad-label {
	display: block;
	margin-top: 4px;
	color: var(--akf-sticky-muted);
	font-size: 9px;
	font-weight: 650;
	line-height: 1.2;
	text-align: center;
}

body.akf-sticky-bar-visible {
	padding-bottom: calc(var(--akf-sticky-body-padding, 0px) + var(--akf-sticky-height, 0px)) !important;
}

@media (prefers-reduced-motion: reduce) {
	.akf-sticky-bar,
	.akf-sticky-button {
		transition: none !important;
	}
}

@media (max-width: 700px) {
	.akf-sticky-bar {
		padding-top: 8px;
		padding-bottom: calc(8px + env(safe-area-inset-bottom));
	}

	.akf-sticky-bar-inner {
		grid-template-columns: minmax(0, 1fr) auto minmax(124px, 145px);
		gap: 11px;
		min-height: 60px;
	}

	.akf-sticky-summary {
		gap: 10px;
	}

	.akf-sticky-logo {
		flex-basis: 58px;
		width: 58px;
		height: 46px;
		padding: 6px;
	}

	.akf-sticky-logo img {
		max-height: 32px;
	}

	.akf-sticky-name {
		font-size: 15px;
	}

	.akf-sticky-detail {
		display: none;
	}

	.akf-sticky-price {
		min-width: 76px;
		padding-left: 11px;
	}

	.akf-sticky-price strong {
		font-size: 21px;
	}

	.akf-sticky-price small {
		display: block;
		font-size: 9px;
	}

	.akf-sticky-button {
		min-height: 42px;
		padding: 9px 10px;
		font-size: 13px;
	}
}

@media (max-width: 460px) {
	.akf-sticky-bar {
		padding-right: 8px;
		padding-left: 8px;
	}

	.akf-sticky-bar-inner {
		grid-template-columns: minmax(0, 1fr) 62px 112px;
		gap: 7px;
	}

	.akf-sticky-summary {
		gap: 7px;
	}

	.akf-sticky-logo {
		flex-basis: 43px;
		width: 43px;
		height: 42px;
		padding: 5px;
		border-radius: 8px;
	}

	.akf-sticky-logo img {
		max-height: 28px;
	}

	.akf-sticky-eyebrow {
		display: none;
	}

	.akf-sticky-name {
		font-size: 13px;
		line-height: 1.2;
	}

	.akf-sticky-price {
		min-width: 0;
		padding-left: 7px;
	}

	.akf-sticky-price > span {
		display: none;
	}

	.akf-sticky-price strong {
		font-size: 18px;
	}

	.akf-sticky-price small {
		font-size: 8px;
	}

	.akf-sticky-button {
		min-height: 40px;
		padding: 8px 7px;
		font-size: 12px;
	}

	.akf-sticky-ad-label {
		font-size: 8px;
	}
}

