:root {
	--lpc-primary: var(--ls-primary, #0d5bff);
	--lpc-primary-hover: var(--ls-primary-hover, #084bd8);
	--lpc-primary-soft: var(--ls-primary-soft, #edf3ff);
	--lpc-ink: var(--ls-text, #0a0e1a);
	--lpc-muted: var(--ls-text-muted, #697184);
	--lpc-surface: var(--ls-surface, #ffffff);
	--lpc-surface-alt: var(--ls-surface-alt, #f6f7fa);
	--lpc-border: var(--ls-border, #e1e4eb);
	--lpc-shadow: var(--ls-shadow, 0 28px 80px rgba(8, 18, 13, 0.22));
	--lpc-overlay: var(--ls-overlay, rgba(7, 12, 18, 0.68));
	--lpc-font: var(--ls-font-body, inherit);
	--lpc-display: var(--ls-font-display, inherit);
}

.lpc-layer,
.lpc-layer * {
	box-sizing: border-box;
}

.lpc-layer button,
.lpc-layer input,
.lpc-layer a {
	font: inherit;
}

.lpc-layer button:focus-visible,
.lpc-layer input:focus-visible,
.lpc-layer a:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--lpc-primary) 28%, transparent);
	outline-offset: 3px;
}

.lpc-layer {
	position: fixed;
	z-index: 999999;
	inset: 0;
	display: grid;
	place-items: safe center;
	overflow: hidden;
	padding: 20px;
	font-family: var(--lpc-font);
	color: var(--lpc-ink);
}

.lpc-layer[hidden] {
	display: none !important;
}

.lpc-backdrop {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--lpc-overlay);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	opacity: 0;
	transition: opacity 220ms ease;
}

.lpc-calculator {
	position: relative;
	z-index: 1;
	width: min(940px, 100%);
	height: min(840px, 100%);
	max-height: 100%;
	min-height: 0;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	overflow-anchor: none;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 24px;
	background: var(--lpc-surface);
	box-shadow: var(--lpc-shadow);
	opacity: 0;
	transform: translateY(10px) scale(0.98);
	transition: opacity 220ms ease, transform 220ms ease;
}

.lpc-layer.is-open .lpc-backdrop {
	opacity: 1;
}

.lpc-layer.is-open .lpc-calculator {
	opacity: 1;
	transform: none;
}

.lpc-drawer-handle {
	flex: 0 0 auto;
	display: none;
}

.lpc-header {
	flex: 0 0 auto;
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 24px 16px;
	border-bottom: 1px solid var(--lpc-border);
}

.lpc-kicker {
	color: var(--lpc-primary);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.lpc-header h2 {
	margin: 4px 0 3px;
	color: var(--lpc-ink);
	font-family: var(--lpc-display);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.045em;
}

.lpc-header p {
	margin: 0;
	color: var(--lpc-muted);
	font-size: 14px;
	line-height: 1.5;
}

.lpc-close {
	width: 42px;
	height: 42px;
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	padding: 0;
	color: #596170;
	border: 1px solid var(--lpc-border);
	border-radius: 50%;
	background: var(--lpc-surface-alt);
	cursor: pointer;
}

.lpc-close:hover {
	color: var(--lpc-ink);
	background: #edf0f5;
}

.lpc-close svg {
	width: 19px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-width: 1.8;
}

.lpc-body {
	flex: 1 1 auto;
	min-height: 0;
	display: grid;
	grid-template-columns: minmax(0, 1.14fr) minmax(300px, 0.86fr);
	grid-template-rows: minmax(0, 1fr);
	align-items: stretch;
	gap: 20px;
	overflow: hidden;
	padding: 18px 20px 20px;
	scrollbar-color: #9eb9f5 transparent;
	scrollbar-width: thin;
}

.lpc-body::-webkit-scrollbar {
	width: 8px;
}

.lpc-body::-webkit-scrollbar-track {
	margin-block: 10px;
	border-radius: 20px;
	background: transparent;
}

.lpc-body::-webkit-scrollbar-thumb {
	border: 2px solid var(--lpc-surface);
	border-radius: 20px;
	background: #9eb9f5;
}

.lpc-body::-webkit-scrollbar-thumb:hover {
	background: var(--lpc-primary);
}

.lpc-inputs {
	min-width: 0;
	min-height: 0;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding-right: 6px;
	scrollbar-color: #c5cddb transparent;
	scrollbar-width: thin;
}

.lpc-inputs::-webkit-scrollbar,
.lpc-estimate-meta::-webkit-scrollbar {
	width: 8px;
}

.lpc-inputs::-webkit-scrollbar-thumb,
.lpc-estimate-meta::-webkit-scrollbar-thumb {
	border: 2px solid transparent;
	border-radius: 20px;
	background: #c5cddb;
	background-clip: padding-box;
}

.lpc-estimate-meta::-webkit-scrollbar-thumb {
	background: rgba(183, 204, 255, 0.38);
	background-clip: padding-box;
}

.lpc-field-group {
	min-width: 0;
	margin: 0 0 20px;
	padding: 0;
	border: 0;
}

.lpc-field-group:last-child {
	margin-bottom: 0;
}

.lpc-field-group legend,
.lpc-field-heading label {
	padding: 0;
	color: #29313f;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.4;
}

.lpc-community-switch {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 10px;
}

.lpc-community-switch label,
.lpc-frequency-switch label,
.lpc-plan-option {
	position: relative;
	cursor: pointer;
}

.lpc-community-switch input,
.lpc-frequency-switch input,
.lpc-plan-option input {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	pointer-events: none;
}

.lpc-community-switch label > span {
	min-height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 8px;
	color: #5c6473;
	font-size: 14px;
	font-weight: 600;
	border: 1px solid var(--lpc-border);
	border-radius: 12px;
	background: var(--lpc-surface);
	transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.lpc-community-switch svg {
	width: 19px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.65;
}

.lpc-community-switch input:checked + span {
	color: var(--lpc-primary);
	border-color: color-mix(in srgb, var(--lpc-primary) 60%, white);
	background: var(--lpc-primary-soft);
	box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--lpc-primary) 8%, transparent);
}

.lpc-community-switch input:focus-visible + span,
.lpc-frequency-switch input:focus-visible + span,
.lpc-plan-option input:focus-visible + .lpc-plan-card {
	outline: 3px solid color-mix(in srgb, var(--lpc-primary) 25%, transparent);
	outline-offset: 2px;
}

.lpc-frequency-switch {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: 10px;
}

.lpc-frequency-switch label > span {
	min-height: 64px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 8px 6px;
	color: #5c6473;
	text-align: center;
	border: 1px solid var(--lpc-border);
	border-radius: 12px;
	background: var(--lpc-surface);
	transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.lpc-frequency-switch strong {
	font-size: 13px;
	font-weight: 700;
}

.lpc-frequency-switch small {
	min-height: 14px;
	color: #168354;
	font-size: 10px;
	font-weight: 700;
}

.lpc-frequency-switch input:checked + span {
	color: var(--lpc-primary);
	border-color: color-mix(in srgb, var(--lpc-primary) 60%, white);
	background: var(--lpc-primary-soft);
	box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--lpc-primary) 8%, transparent);
}

.lpc-frequency-switch input:checked + span small {
	color: var(--lpc-primary);
}

.lpc-quantity-group {
	padding: 16px;
	border: 1px solid var(--lpc-border);
	border-radius: 16px;
	background: var(--lpc-surface-alt);
}

.lpc-field-heading {
	display: flex;
	justify-content: space-between;
	gap: 16px;
}

.lpc-range-note,
.lpc-range-labels {
	color: #8991a0;
	font-size: 11px;
	font-weight: 500;
}

.lpc-stepper {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) 42px;
	gap: 10px;
	margin: 14px 0 15px;
}

.lpc-stepper button {
	width: 42px;
	height: 42px;
	padding: 0;
	color: var(--lpc-primary);
	font-size: 21px;
	line-height: 1;
	border: 1px solid #cbd0dc;
	border-radius: 11px;
	background: white;
	cursor: pointer;
}

.lpc-stepper button:hover {
	border-color: var(--lpc-primary);
	background: var(--lpc-primary-soft);
}

.lpc-number-wrap {
	height: 42px;
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 5px;
	border: 1px solid #cbd0dc;
	border-radius: 11px;
	background: white;
}

.lpc-number-wrap input {
	width: 70px;
	padding: 0;
	color: var(--lpc-ink);
	font-family: var(--lpc-display);
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	text-align: right;
	border: 0;
	outline: 0;
	background: transparent;
	-moz-appearance: textfield;
}

.lpc-number-wrap input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

.lpc-number-wrap span {
	color: var(--lpc-muted);
	font-size: 12px;
}

.lpc-range {
	--lpc-range-progress: 0%;
	width: 100%;
	height: 5px;
	display: block;
	margin: 0;
	border: 0;
	border-radius: 20px;
	background: linear-gradient(to right, var(--lpc-primary) 0 var(--lpc-range-progress), #dce1e9 var(--lpc-range-progress) 100%);
	-webkit-appearance: none;
	appearance: none;
}

.lpc-range::-webkit-slider-thumb {
	width: 18px;
	height: 18px;
	border: 4px solid white;
	border-radius: 50%;
	background: var(--lpc-primary);
	box-shadow: 0 0 0 1px var(--lpc-primary), 0 2px 6px rgba(0, 0, 0, 0.16);
	cursor: grab;
	-webkit-appearance: none;
}

.lpc-range::-moz-range-thumb {
	width: 10px;
	height: 10px;
	border: 4px solid white;
	border-radius: 50%;
	background: var(--lpc-primary);
	box-shadow: 0 0 0 1px var(--lpc-primary);
	cursor: grab;
}

.lpc-range-labels {
	display: flex;
	justify-content: space-between;
	margin-top: 8px;
}

.lpc-plans-group legend {
	margin-bottom: 10px;
}

.lpc-plan-options {
	display: grid;
	gap: 10px;
}

.lpc-plan-card {
	min-height: 72px;
	display: grid;
	grid-template-columns: 19px minmax(0, 1fr) auto;
	gap: 11px;
	align-items: start;
	padding: 12px 13px;
	border: 1px solid var(--lpc-border);
	border-radius: 13px;
	background: var(--lpc-surface);
	transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.lpc-plan-option input:checked + .lpc-plan-card {
	border-color: var(--lpc-ink);
	background: var(--lpc-primary-soft);
	box-shadow: 0 4px 14px rgba(10, 14, 26, 0.06);
}

.lpc-radio-dot {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	display: grid;
	place-items: center;
	border: 1.5px solid #aeb5c1;
	border-radius: 50%;
	background: white;
}

.lpc-radio-dot::after {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--lpc-primary);
	opacity: 0;
	transform: scale(0.5);
	transition: 180ms ease;
}

.lpc-plan-option input:checked + .lpc-plan-card .lpc-radio-dot {
	border-color: var(--lpc-primary);
}

.lpc-plan-option input:checked + .lpc-plan-card .lpc-radio-dot::after {
	opacity: 1;
	transform: scale(1);
}

.lpc-plan-copy {
	min-width: 0;
}

.lpc-plan-name-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 7px;
}

.lpc-plan-name {
	color: var(--lpc-ink);
	font-size: 14px;
	font-weight: 700;
}

.lpc-plan-badge {
	padding: 3px 6px;
	color: var(--lpc-primary);
	font-size: 8px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border-radius: 20px;
	background: white;
}

.lpc-plan-description {
	display: -webkit-box;
	overflow: hidden;
	margin-top: 4px;
	color: var(--lpc-muted);
	font-size: 11px;
	line-height: 1.4;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.lpc-plan-rate {
	color: #343c4a;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
	text-align: right;
	white-space: nowrap;
}

.lpc-plan-rate em {
	display: block;
	color: #168354;
	font-size: 10px;
	font-style: normal;
	font-weight: 700;
}

.lpc-plan-rate del {
	display: block;
	color: #8991a0;
	font-size: 11px;
	font-weight: 600;
}

.lpc-empty-state {
	padding: 20px;
	color: var(--lpc-muted);
	font-size: 13px;
	line-height: 1.5;
	text-align: center;
	border: 1px dashed var(--lpc-border);
	border-radius: 13px;
	background: var(--lpc-surface-alt);
}

.lpc-empty-state p {
	margin: 0;
}

.lpc-estimate-card {
	min-width: 0;
	min-height: 0;
	max-height: 100%;
	height: 100%;
	align-self: stretch;
	overflow-anchor: none;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	padding: 18px 18px 16px;
	color: white;
	border-radius: 19px;
	background: var(--lpc-ink);
}

.lpc-estimate-top {
	flex: 0 0 auto;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.lpc-estimate-label-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.lpc-estimate-label {
	color: #aeb7c8;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.lpc-recommended-badge {
	padding: 5px 8px;
	color: #b7ccff;
	font-size: 8px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	border: 1px solid rgba(183, 204, 255, 0.2);
	border-radius: 20px;
	background: rgba(13, 91, 255, 0.16);
}

.lpc-estimate-card h3 {
	margin: 14px 0 8px;
	color: #e2e7f0;
	font-family: var(--lpc-display);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
}

.lpc-price-block {
	display: grid;
	gap: 4px;
}

.lpc-price-row {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 6px 8px;
}

.lpc-compare-price {
	color: #8b95a8;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: line-through;
}

.lpc-price {
	min-width: 0;
	font-family: var(--lpc-display);
	font-size: clamp(26px, 2.4vw, 34px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.055em;
	overflow-wrap: anywhere;
}

.lpc-period,
.lpc-calculation {
	color: #aeb7c8;
	font-size: 12px;
}

.lpc-save-badge {
	flex: 0 0 auto;
	margin-left: 0;
	padding: 4px 8px;
	color: #b7f0d0;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	border-radius: 20px;
	background: rgba(22, 131, 84, 0.28);
}

.lpc-calculation {
	margin: 10px 0 0;
}

.lpc-estimate-meta {
	display: grid;
	align-content: start;
	gap: 12px;
	flex: 1 1 auto;
	min-height: 0;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: 14px 2px 12px 0;
	font-size: 12px;
	scrollbar-color: rgba(183, 204, 255, 0.35) transparent;
	scrollbar-width: thin;
}

.lpc-billing-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding-bottom: 12px;
	color: #d7dce6;
	border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.lpc-billing-row > span {
	color: #9da7b9;
}

.lpc-feature-list {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	color: #d7dce6;
	font-size: 11px;
	line-height: 1.35;
	list-style: none;
}

.lpc-feature-list li {
	display: grid;
	grid-template-columns: 14px minmax(0, 1fr);
	gap: 7px;
	align-items: start;
	margin: 0;
}

.lpc-feature-list li:first-child {
	color: white;
	font-weight: 600;
}

.lpc-feature-list svg {
	width: 14px;
	margin-top: 1px;
	fill: none;
	stroke: #75a2ff;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.lpc-feature-toggle {
	width: fit-content;
	min-height: 32px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin: 2px 0 0 21px;
	padding: 0;
	color: #b7ccff;
	font-size: 11px;
	font-weight: 700;
	border: 0;
	border-bottom: 1px solid rgba(183, 204, 255, 0.35);
	background: transparent;
	cursor: pointer;
}

.lpc-feature-toggle:hover {
	color: white;
	border-color: white;
}

.lpc-feature-toggle svg {
	width: 14px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	transition: transform 180ms ease;
}

.lpc-feature-toggle[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

.lpc-desktop-action {
	flex: 0 0 auto;
	margin-top: auto;
	padding-top: 12px;
}

.lpc-request-button {
	width: 100%;
	min-height: 49px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 10px 16px;
	color: white !important;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none !important;
	border: 0;
	border-radius: 12px;
	background: var(--lpc-primary);
	cursor: pointer;
	transition: background 180ms ease, transform 180ms ease;
}

.lpc-request-button:hover {
	color: white !important;
	background: var(--lpc-primary-hover);
	transform: translateY(-1px);
}

.lpc-request-button svg {
	width: 18px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.lpc-mobile-action {
	display: none;
}

@media (max-width: 768px) {
	.lpc-layer {
		align-items: end;
		padding: 0;
	}

	.lpc-calculator {
		width: 100%;
		height: min(92vh, 900px);
		max-height: min(92vh, 900px);
		border: 0;
		border-radius: 24px 24px 0 0;
		transform: translateY(100%);
	}

	.lpc-layer.is-open .lpc-calculator {
		transform: translateY(0);
	}

	.lpc-drawer-handle {
		width: 42px;
		height: 5px;
		display: block;
		margin: 9px auto 0;
		border-radius: 20px;
		background: #d9dde5;
	}

	.lpc-header {
		padding: 12px 20px 16px;
	}

	.lpc-kicker {
		display: none;
	}

	.lpc-header h2 {
		margin: 0 0 3px;
		font-size: 22px;
	}

	.lpc-header p {
		font-size: 12px;
	}

	.lpc-close {
		width: 38px;
		height: 38px;
	}

	.lpc-body {
		display: block;
		overflow-y: auto;
		overscroll-behavior: contain;
		margin-right: 4px;
		padding: 20px;
	}

	.lpc-inputs {
		overflow: visible;
		padding-right: 0;
	}

	.lpc-field-group {
		margin-bottom: 20px;
	}

	.lpc-quantity-group {
		padding: 15px;
	}

	.lpc-frequency-switch label > span {
		min-height: 58px;
		padding: 7px 4px;
	}

	.lpc-frequency-switch strong {
		font-size: 12px;
	}

	.lpc-plan-card {
		min-height: 68px;
		padding: 12px;
	}

	.lpc-estimate-card {
		height: auto;
		max-height: none;
		overflow: visible;
		margin-top: 20px;
		padding: 18px;
		border-radius: 17px;
	}

	.lpc-estimate-meta {
		overflow: visible;
		padding: 16px 0;
	}

	.lpc-estimate-card h3 {
		margin-top: 18px;
	}

	.lpc-price {
		font-size: 32px;
	}

	.lpc-feature-list {
		gap: 9px;
	}

	.lpc-desktop-action {
		display: none;
	}

	.lpc-mobile-action {
		position: relative;
		z-index: 4;
		flex: 0 0 auto;
		display: grid;
		grid-template-columns: auto minmax(160px, 1fr);
		gap: 14px;
		align-items: center;
		padding: 13px 20px calc(13px + env(safe-area-inset-bottom));
		border-top: 1px solid var(--lpc-border);
		background: color-mix(in srgb, var(--lpc-surface) 96%, transparent);
		box-shadow: 0 -10px 28px rgba(10, 14, 26, 0.08);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
	}

	.lpc-mobile-action > div {
		min-width: 0;
		display: grid;
	}

	.lpc-mobile-action > div span {
		overflow: hidden;
		color: var(--lpc-muted);
		font-size: 10px;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.lpc-mobile-action > div strong {
		overflow: hidden;
		color: var(--lpc-ink);
		font-family: var(--lpc-display);
		font-size: 13px;
		font-weight: 700;
		line-height: 1.3;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.lpc-mobile-save {
		color: #168354;
		font-size: 10px;
		font-style: normal;
		font-weight: 700;
	}

	.lpc-mobile-action .lpc-request-button {
		min-height: 47px;
	}
}

@media (max-width: 390px) {
	.lpc-header,
	.lpc-body {
		padding-inline: 16px;
	}

	.lpc-community-switch label > span {
		min-height: 46px;
	}

	.lpc-plan-card {
		grid-template-columns: 18px minmax(0, 1fr) auto;
		gap: 9px;
	}

	.lpc-plan-rate {
		max-width: 76px;
		white-space: normal;
	}

	.lpc-mobile-action {
		grid-template-columns: 92px 1fr;
		padding-inline: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lpc-layer *,
	.lpc-layer *::before,
	.lpc-layer *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
