@layer components {
	.tooltip {
		border: 1px solid var(--stroke-base);
		max-width: 530px;
		box-shadow: var(--shadow-lg-box-shadow, 0 10px 15px -3px rgba(16, 24, 40, .1), 0 4px 6px -4px rgba(16, 24, 40, .1));
		border-radius: var(--roundness-round-outside, 12px);
		background: var(--bg-base);
		z-index: 2;
		opacity: 0;
		pointer-events: none;
		flex-direction: column;
		flex-shrink: 0;
		justify-content: center;
		align-items: center;
		width: -webkit-max-content;
		width: -moz-max-content;
		width: max-content;
		padding: .5rem .75rem;
		display: flex;
		position: absolute;
		top: 0;
	}
	
	@media only screen and (max-width:1199.98px) {
		.tooltip {
			max-width: 90%;
		}
	}
	
	.tooltip {
		transition: opacity .3s;
	}
	
	.tooltip-arrow {
		background: var(--bg-base);
		z-index: -1;
		width: 10px;
		height: 10px;
		position: absolute;
		transform: rotate(45deg);
	}
	
	.tooltip-trigger {
		cursor: default;
		--icon-image: url("data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWluWU1pbiIgdmlld0JveD0iLTIgLTIgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtMTAgMjBjLTUuNTIzIDAtMTAtNC40NzctMTAtMTBzNC40NzctMTAgMTAtMTAgMTAgNC40NzcgMTAgMTAtNC40NzcgMTAtMTAgMTB6bTAtMmE4IDggMCAxIDAgMC0xNiA4IDggMCAwIDAgMCAxNnptMC0xMGExIDEgMCAwIDEgMSAxdjVhMSAxIDAgMCAxIC0yIDB2LTVhMSAxIDAgMCAxIDEtMXptMC0xYTEgMSAwIDEgMSAwLTIgMSAxIDAgMCAxIDAgMnoiLz48L3N2Zz4=");
		align-self: center;
		align-items: center;
		width: 1em;
		height: 1em;
		display: flex;
		position: relative;
	}
	
	.tooltip-trigger:after {
		content: "";
		width: 1em;
		height: 1em;
		-webkit-mask-position: 50%;
		mask-position: 50%;
		-webkit-mask-size: contain;
		mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		mask-repeat: no-repeat;
		-webkit-mask-image: var(--icon-image);
		mask-image: var(--icon-image);
		background: currentColor;
		flex-shrink: 0;
		display: block;
	}
	
	.tooltip-title {
		color: var(--text-base);
		text-align: center;
		letter-spacing: -.01em;
		font-size: .9375rem;
		font-weight: 600;
		line-height: 1.375rem;
		position: relative;
	}
	
	.tooltip-text {
		color: var(--text-muted);
		text-align: center;
		letter-spacing: -.1px;
		font-size: .875rem;
		font-weight: 500;
		line-height: 1.25rem;
		position: relative;
	}
	
	.tooltip:has(img) {
		padding: 0;
	}
	
	.tooltip img {
		object-fit: cover;
		border-radius: 6px;
		width: 530px;
		height: 530px;
		display: block;
	}
}

@layer pages {
	.product-addon {
		color: var(--text-muted);
		letter-spacing: -.1px;
		font-size: .8125rem;
		font-weight: 400;
		line-height: 1.125rem;
	}
	
	.product-group-mobile {
		flex-direction: column;
		gap: 1rem;
		display: flex;
	}
	
	.product-group-sm {
		flex-direction: column;
		gap: .25rem;
		display: flex;
	}
	
	.product-group-sm:has(>[data-count="1"]) {
		display: none;
	}
	
	.product-price-value {
		letter-spacing: -.015em;
		font-size: 2rem;
		font-weight: 600;
		line-height: 2.5rem;
	}
	
	@media only screen and (max-width:1199.98px) {
		.product-price-value {
			letter-spacing: -.015em;
			font-size: 1.25rem;
			line-height: 1.75rem;
		}
	}
	
	.product-price-note {
		font-size: 1.125rem;
		font-weight: meduim;
		letter-spacing: -.01em;
		line-height: 1.75rem;
	}
	
	@media only screen and (max-width:1199.98px) {
		.product-price-note {
			font-size: .8125rem;
			font-weight: meduim;
			letter-spacing: -.01em;
			line-height: 1.125rem;
		}
	}
	
	.product-price-buttons {
		flex-wrap: wrap;
		gap: 1rem;
		display: flex;
	}
	
	.product-price-info {
		color: var(--text-muted);
		letter-spacing: -.01em;
		font-weight: 600;
	}
	
	.product-price-outer {
		flex-direction: column;
		gap: .5rem;
		display: flex;
	}
	
	.product-priceblock {
		background-color: var(--bg-base-subtle);
		border-radius: .75rem;
		padding: 2rem;
	}
	
	@media only screen and (max-width:1199.98px) {
		.product-priceblock {
			gap: .5rem;
			padding: 1rem;
		}
		
		.product-right {
			display: contents;
		}
		
		.product-right h1 {
			order: -1;
		}
	}
	
	.product-left {
		top: calc(var(--header-height) + 1rem);
		gap: 1rem;
		position: -webkit-sticky;
		position: sticky;
	}
	
	@media only screen and (max-width:1199.98px) {
		.product-left {
			display: contents;
		}
	}
	
	.product-right {
		gap: 1rem;
	}
	
	@media only screen and (max-width:1199.98px) {
		.product-top {
			flex-direction: column !important;
		}
		
		.product-top>* {
			display: contents;
		}
		
		.product-calculator-title {
			order: -1;
		}
	}
	
	.product-calculator-info [id^=calculator-target] {
		flex-direction: column;
		gap: .75rem;
		display: flex;
	}
	
	.product-calculator-content {
		letter-spacing: -.01em;
		font-size: 1rem;
		font-weight: 400;
		line-height: 1.5rem;
	}
	
	.product-articles {
		flex-direction: column;
		gap: .25rem;
		margin: 0;
		display: flex;
	}
	
	.product-articles li {
		color: var(--text-muted);
	}
	
	.product-articles a {
		color: inherit;
		letter-spacing: -.1px;
		font-size: .875rem;
		font-weight: 400;
		line-height: 1.25rem;
		text-decoration: underline;
		display: block;
	}
	
	.product-copycenters {
		max-height: 472px;
		overflow: hidden;
	}
	
	.product-copycenters-list {
		flex-direction: column;
		gap: .5rem;
		width: 456px;
		display: flex;
		overflow-y: scroll;
	}
	
	.product-copycenters-list:not(:-webkit-any(:lang(ae),:lang(ar),:lang(arc),:lang(bcc),:lang(bqi),:lang(ckb),:lang(dv),:lang(fa),:lang(glk),:lang(he),:lang(ku),:lang(mzn),:lang(nqo),:lang(pnb),:lang(ps),:lang(sd),:lang(ug),:lang(ur),:lang(yi))) {
		padding-right: .5rem;
	}
	
	.product-copycenters-list:not(:-moz-any(:lang(ae),:lang(ar),:lang(arc),:lang(bcc),:lang(bqi),:lang(ckb),:lang(dv),:lang(fa),:lang(glk),:lang(he),:lang(ku),:lang(mzn),:lang(nqo),:lang(pnb),:lang(ps),:lang(sd),:lang(ug),:lang(ur),:lang(yi))) {
		padding-right: .5rem;
	}
	
	.product-copycenters-list:not(:is(:lang(ae),:lang(ar),:lang(arc),:lang(bcc),:lang(bqi),:lang(ckb),:lang(dv),:lang(fa),:lang(glk),:lang(he),:lang(ku),:lang(mzn),:lang(nqo),:lang(pnb),:lang(ps),:lang(sd),:lang(ug),:lang(ur),:lang(yi))) {
		padding-right: .5rem;
	}
	
	.product-copycenters-list:-webkit-any(:lang(ae),:lang(ar),:lang(arc),:lang(bcc),:lang(bqi),:lang(ckb),:lang(dv),:lang(fa),:lang(glk),:lang(he),:lang(ku),:lang(mzn),:lang(nqo),:lang(pnb),:lang(ps),:lang(sd),:lang(ug),:lang(ur),:lang(yi)) {
		padding-left: .5rem;
	}
	
	.product-copycenters-list:-moz-any(:lang(ae),:lang(ar),:lang(arc),:lang(bcc),:lang(bqi),:lang(ckb),:lang(dv),:lang(fa),:lang(glk),:lang(he),:lang(ku),:lang(mzn),:lang(nqo),:lang(pnb),:lang(ps),:lang(sd),:lang(ug),:lang(ur),:lang(yi)) {
		padding-left: .5rem;
	}
	
	.product-copycenters-list:is(:lang(ae),:lang(ar),:lang(arc),:lang(bcc),:lang(bqi),:lang(ckb),:lang(dv),:lang(fa),:lang(glk),:lang(he),:lang(ku),:lang(mzn),:lang(nqo),:lang(pnb),:lang(ps),:lang(sd),:lang(ug),:lang(ur),:lang(yi)) {
		padding-left: .5rem;
	}
	
	.product-copycenters-list::-webkit-scrollbar-thumb {
		background-color: var(--Gray-50, #858c95);
		border-radius: 5px;
		width: 6px;
	}
	
	.product-copycenters-list::-webkit-scrollbar {
		background: var(--Gradient-Overlay-Selected-Gray, rgba(116, 122, 139, .15));
		border-radius: 5px;
		width: 6px;
		margin: 0;
		padding: 0;
	}
	
	.product-copycenters-map {
		flex-grow: 1;
	}
	
	.product-copycenters-map #metro-map {
		overflow: auto;
	}
	
	.product-table-content {
		width: 100%;
		overflow: auto;
	}
	
	.product-table-content div {
		width: 100%;
	}
	
	.product-table-content table {
		white-space: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
	}
	
	@media only screen and (max-width:1199.98px) {
		.product-table-content table {
			display: block;
		}
	}
	
	.product-table-content :-webkit-any(th,td) {
		color: var(--text-muted);
		border-bottom: 1px solid var(--stroke-base);
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
	
	.product-table-content :-moz-any(th,td) {
		color: var(--text-muted);
		border-bottom: 1px solid var(--stroke-base);
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
	
	.product-table-content :is(th,td) {
		color: var(--text-muted);
		border-bottom: 1px solid var(--stroke-base);
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
	
	.product-table-content th {
		background: var(--bg-base-subtle);
		letter-spacing: -.1px;
		padding-top: .75rem;
		padding-bottom: .75rem;
		font-size: .8125rem;
		font-weight: 500;
		line-height: 1.125rem;
	}
	
	.product-table-content td {
		background: var(--bg-base);
		letter-spacing: -.01em;
		padding-top: 1rem;
		padding-bottom: 1rem;
		font-size: .9375rem;
		font-weight: 500;
		line-height: 1.375rem;
	}
	
	.product-table-content tr:last-child td {
		border-bottom: none;
	}
	
	.product-banner {
		background: var(--bg-base-subtle);
		border-radius: var(--roundness-round-outside, 12px);
		gap: 2rem;
		padding: 2rem;
		display: flex;
	}
	
	@media only screen and (max-width:1199.98px) {
		.product-banner {
			flex-direction: column;
			gap: 1rem;
			padding: 1rem;
		}
	}
	
	.product-banner-image {
		background-image: url("/wp-content/themes/copy/assets/css/../img/create.de7210e6cdc14d34.webp");
		background-size: cover;
		width: 200px;
		height: 200px;
		--lzl-bg-img: "/wp-content/themes/copy/assets/css/../img/create.de7210e6cdc14d34.webp";
	}
	
	.product-banner-image.lzl:not(.lzl-ed), .product-banner-image.lzl-ing:not(.lzl-ed) {
		background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAADNAAAAzQAQMAAACB0IWEAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAA1BMVEVHcEyC+tLSAAAAAXRSTlMAQObYZgAAFw5JREFUeAHt0IEAAAAAw6D5U9/gBIVQYcCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgwYMCAAQMGDBgw8AYGkxwAAVx69SAAAAAASUVORK5CYII=");
	}
	
	@media only screen and (max-width:1199.98px) {
		.product-banner-image {
			width: 160px;
			height: 160px;
		}
	}
	
	.product-banner-text {
		gap: var(--main-system-16px, 16px);
		flex-direction: column;
		flex: 1;
		justify-content: flex-start;
		align-items: flex-start;
		display: flex;
		position: relative;
	}
	
	.product-banner-div {
		gap: var(--main-system-8px, 8px);
		flex-direction: column;
		flex-shrink: 0;
		justify-content: flex-start;
		align-self: stretch;
		align-items: flex-start;
		display: flex;
		position: relative;
	}
	
	.product-banner-title {
		letter-spacing: -.01em;
		font-size: 1rem;
		font-weight: 600;
		line-height: 1.5rem;
	}
	
	@media only screen and (max-width:1199.98px) {
		.product-banner-title {
			letter-spacing: -.015em;
			font-size: 1.125rem;
			line-height: 1.5rem;
		}
	}
	
	.product-banner-description {
		color: var(--text-muted);
		letter-spacing: -.01em;
		font-size: .8125rem;
		font-weight: 500;
		line-height: 1.125rem;
	}
	
	@media only screen and (max-width:1199.98px) {
		.product-banner-description {
			letter-spacing: -.01em;
			font-size: .9375rem;
			font-weight: 500;
			line-height: 1.375rem;
		}
	}
	
	.product-swiper {
		flex-direction: column;
		gap: 1rem;
		display: flex;
	}
	
	@media only screen and (max-width:1199.98px) {
		.product-swiper {
			gap: 10px;
		}
	}
	
	@media only screen and (min-width:1200px) {
		.product-swiper {
			border-radius: .75rem;
		}
	}
	
	.product-swiper .swiper-slide {
		background-color: var(--bg-base-subtle);
		border-radius: 12px;
		overflow: hidden;
	}
	
	.product-swiper .swiper-slide img {
		object-fit: cover;
		width: 100%;
	}
	
	.product-slider {
		flex-direction: column;
		gap: 1rem;
		display: flex;
	}
	
	@media only screen and (min-width:1200px) {
		.product-slider .swiper-pagination {
			display: none;
		}
	}
}

.ht5 {
	letter-spacing: -.01em;
	font-size: .9375rem;
	font-weight: 500;
	line-height: 1.375rem;
}

.ht6 {
	letter-spacing: -.1px;
	font-size: .875rem;
	font-weight: 500;
	line-height: 1.25rem;
}

.product-slider .swiper-pagination {
	display: none;
}

.description-wrapper {
	align-items: flex-start;
	gap: 24px;
}

.description-consult {
	width: max(400px, min(40%, 505px));
	top: calc(var(--header-height) + 1rem);
	background-color: #f8f9fb;
	border-radius: 14px;
	flex-shrink: 0;
	gap: 16px;
	padding: 32px;
	position: -webkit-sticky;
	position: sticky;
	overflow: hidden;
}

.description-consult img {
	object-position: center;
	object-fit: contain;
	width: 100%;
	height: 200px !important;
}

@media only screen and (max-width:1199.98px) {
	.description-consult img {
		order: -1;
	}
}

.description-consult .h3 {
	letter-spacing: -.01em;
	font-weight: 600;
}

.description-consult__text {
	color: var(--text-and-icons-light-base-second, #858c95);
	letter-spacing: -.01em;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.75rem;
}

.description-consult__text * {
	color: #858c95;
	max-width: 100%;
}

.description-consult .btn {
	max-width: 255px;
}

.product-slide__thumb {
	background-color: var(--bg-base-subtle);
	--outline-size: 1px;
	outline: var(--outline-size) solid var(--border-color, transparent);
	outline-offset: calc(-1 * var(--outline-size));
	border-radius: .75rem;
	width: auto;
	transition: all .3s;
	overflow: hidden;
}

.product-slide__thumb:hover, .product-slide__thumb.swiper-slide-thumb-active {
	--border-color: var(--text-primary);
}

.product-price__row {
	align-items: baseline;
	display: flex;
}

.product-calculator-tabs__wrapper {
	width: 100%;
}

.product-calculator-tabs {
	width: 100%;
	flex-wrap: nowrap !important;
}

.product-calculator-tabs .tab {
	flex-grow: 1;
	justify-content: center;
	width: 100%;
}

.product-calculator__tab-items {
	flex-direction: column;
	gap: 12px;
	width: 100%;
	display: flex;
}

.product-calculator__tab-items .tab-item {
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.product-calculator__tab-items .product-calculator__header {
	display: none !important;
}

.product-calculator__header {
	display: none;
}

.product-table-content {
	border-spacing: 0;
	width: 100%;
}

.product-table-content__cell {
	text-align: center;
	vertical-align: top;
	border-bottom: 1px solid #b7b5ae;
	border-right: 1px solid #b7b5ae;
	padding: 10px 12px;
	font-weight: 500;
}

.product-table-content__cell--left {
	text-align: left;
}

.product-table-content__cell--head {
	color: #b7b5ae;
}

.product-table-content__cell--format {
	vertical-align: middle;
	width: 120px;
	max-width: 120px;
}

.checkbox-groups {
	gap: var(--main-system-12px, 12px);
	grid-template-columns: 1fr 1fr 1fr 1fr;
	display: grid;
}

.checkbox-groups .swiper-wrapper {
	height: unset;
}

@media only screen and (max-width:1199.98px) {
	.product-slider .swiper-pagination {
		justify-content: center;
		display: flex;
	}
	
	.product-swiper .copycenter-page-slide__img {
		aspect-ratio: 352/252;
	}
	
	.product-calculator .product-calculator__title, .product-calculator .product-calculator__title_hidden {
		display: block;
	}
	
	.product-head, .product-calculator-tabs {
		display: none;
	}
	
	.product-calculator-tabs_full {
		display: flex;
	}
	
	.product-calculator-tabs {
		background-color: #f8f9fb;
		border: 1px solid #e5e5e7;
		border-radius: 14px;
		margin-bottom: 16px;
		padding: 4px 8px;
	}
	
	.product-calculator-tabs .tab:last-child {
		display: none;
	}
	
	.product-calculator-tabs .tab:first-child, .product-calculator-tabs .tab:nth-last-child(2) {
		color: #858c95;
		background-color: transparent;
		border: 1px solid transparent;
		border-radius: 10px;
	}
	
	.product-calculator__tab-items .tab-item[data-tab-name=Calculator] {
		flex-direction: column;
		gap: 16px;
	}
	
	.product-calculator__header {
		font-size: 18px;
		font-weight: 600;
		line-height: 24px;
		display: block;
	}
	
	.description-wrapper {
		flex-direction: column;
	}
	
	.description-consult {
		order: 10;
		width: 100%;
		padding: 24px;
		position: relative;
		top: 0;
	}
	
	.description-consult .h3 {
		font-size: 18px;
		font-weight: 600;
		line-height: 24px;
	}
	
	.description-consult__text {
		font-size: 15px;
		font-weight: 500;
		line-height: 22px;
	}
	
	.product-thumbs-swiper {
		display: none;
	}
	
	.product-calculator__tab-items .product-calculator__header {
		letter-spacing: -.01em;
		text-align: left;
		font-size: 18px;
		font-weight: 600;
		line-height: 24px;
		display: block !important;
	}
}

.service-description__text {
	width: 100%;
	max-width: 100%;
	max-height: 18em;
	transition: all .5s ease-in-out;
	position: relative;
	overflow: hidden;
}

.service-description__text>:first-child {
	margin-top: 0;
}

.service-description__text {
	letter-spacing: -.01em;
	width: 100%;
	max-width: 100%;
	max-height: 18em;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5rem;
	transition: all .5s ease-in-out;
	position: relative;
	overflow: hidden;
}

.service-description__text:after {
	content: "";
	background: linear-gradient(rgba(255, 255, 255, 0) 0%, #fff 98.98%);
	width: 100%;
	height: 200px;
	transition: all .3s ease-in-out;
	position: absolute;
	bottom: 0;
	left: 0;
}

.product-calculator-content p:first-child {
	margin-top: 0;
}

.product-calculator-content p:last-child {
	margin-bottom: 0;
}

.product-calculator-content p {
	text-overflow: ellipsis;
	-webkit-line-clamp: 13;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	overflow: hidden;
}

.service-description-toggle .toggle-close, .service-description__text.is-active+div .service-description-toggle .toggle-open {
	display: none;
}

.service-description__text.is-active+div .service-description-toggle .toggle-close {
	display: block;
}

#description {
	--scroll-offset: 1rem;
}

.product-window {
	border-radius: var(--roundness-round-outside, 12px);
	flex-direction: column;
	gap: 1rem;
	display: flex;
}

@media only screen and (min-width:1200px) {
	.product-window {
		background: var(--bg-base-subtle);
		padding: 1rem;
	}
}

.product-window .helloprint-calc__container, .product-window .helloprint-calc__container>:first-child:not([class]) {
	display: contents;
}

.product-window .rdropdown__option img {
	height: 1lh !important;
	margin: 0 !important;
}

.product-window [type=checkbox] {
	display: none;
}

.product-window .rdropdown__placeholder img {
	object-fit: cover;
	height: 1lh !important;
	margin: 0 !important;
}

.product-window .swiper-button-disabled {
	--opacity: revert;
	color: var(--text-muted);
	pointer-events: revert;
	cursor: not-allowed;
}

.product-window .helloprint-card img {
	object-fit: cover;
	z-index: -1;
	width: 120px;
	height: 120px;
	position: relative;
	border: none !important;
	border-radius: 0 !important;
	margin: 0 !important;
}

.product-window .opt-prop .title .tooltip-trigger svg {
	display: none;
}

.product-window .shared-checkbox__text .anticon svg, .product-window .shared-radiobox__text .anticon svg, .product-window .shared-checkbox__checkmark, .product-window .shared-radiobox__checkmark {
	display: none;
}

.calculator-group .dropdown-list-title {
	gap: .25rem;
	display: flex;
}

.calculator-group .dropdown-list-button, .calculator-group .dropdown-list {
	width: 100%;
}

@layer vendor {
	.helloprint-calc__loading-container {
		margin-bottom: 10px;
		position: relative;
		overflow: hidden;
	}
	
	.helloprint-calc__loading-container:before {
		content: " ";
		z-index: 1;
		background: linear-gradient(90deg, rgba(255, 255, 255, 0) 46%, rgba(255, 255, 255, .35) 50%, rgba(255, 255, 255, 0) 54%) 50%;
		width: 500%;
		margin-left: -250%;
		animation: 2s linear infinite asystem_calc_placeholder_loading_animation;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 50%;
		right: 0;
	}
	
	.helloprint-calc__loading-container__row {
		align-items: center;
		margin: 0 0 15px;
		display: flex;
	}
	
	.helloprint-calc__loading-container__row.row_right {
		justify-content: flex-end;
	}
	
	.helloprint-calc__loading-container__row__col {
		background-color: #eaeaea;
		border-radius: 10px;
		width: 20%;
		min-width: 60px;
		height: 25px;
		margin: 0 2% 0 0;
		display: inline-block;
	}
	
	.helloprint-calc__loading-container__row__col.col_wide {
		height: 35px;
	}
	
	.helloprint-calc__loading-container__row__col.col_long {
		width: 35%;
		min-width: 150px;
	}
	
	.helloprint-calc__loading-container__row__col.col_short {
		width: 5%;
		min-width: 35px;
	}
}

#pxpProducCalc {
	border: none;
	margin: 0;
	padding: 0;
}

#pxpProducCalc ul {
	margin: 0;
}

#pxpProducCalc .swiper {
	--gap: .75rem;
}

#pxpProducCalc [type=radio] {
	display: none;
}