:root {
	--vx-ink: #102235;
	--vx-navy: #0b1f33;
	--vx-blue: #1268a8;
	--vx-cyan: #00a3b8;
	--vx-sky: #eaf5fa;
	--vx-slate: #526478;
	--vx-line: #d9e3ea;
	--vx-mist: #f4f7f9;
	--vx-white: #ffffff;
	--vx-accent: #f27a24;
	--vx-accent-dark: #cf5e10;
	--vx-success: #167a66;
	--vx-radius-sm: 8px;
	--vx-radius-md: 14px;
	--vx-radius-lg: 24px;
	--vx-shadow-sm: 0 12px 34px rgba(11, 31, 51, 0.08);
	--vx-shadow-lg: 0 24px 70px rgba(4, 25, 44, 0.18);
	--vx-container: 1200px;
}

.voranix-site,
.voranix-site * {
	box-sizing: border-box;
}

.voranix-site {
	background: var(--vx-white);
	color: var(--vx-ink);
	font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 17px;
	line-height: 1.65;
	overflow: clip;
}

.voranix-site a {
	color: inherit;
}

.voranix-site h1,
.voranix-site h2,
.voranix-site h3,
.voranix-site h4,
.voranix-site p {
	margin-top: 0;
}

.voranix-site h1,
.voranix-site h2,
.voranix-site h3,
.voranix-site h4 {
	color: var(--vx-navy);
	font-weight: 720;
	letter-spacing: -0.025em;
	line-height: 1.14;
}

.voranix-site h1 {
	font-size: clamp(2.7rem, 6vw, 5.6rem);
	max-width: 900px;
}

.voranix-site h2 {
	font-size: clamp(2rem, 4vw, 3.6rem);
	max-width: 840px;
}

.voranix-site h3 {
	font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.voranix-site p {
	color: var(--vx-slate);
}

.voranix-container {
	margin-inline: auto;
	max-width: var(--vx-container);
	padding-inline: clamp(20px, 4vw, 44px);
	width: 100%;
}

.voranix-section {
	padding-block: clamp(74px, 9vw, 130px);
	position: relative;
	width: 100%;
}

.voranix-section--tight {
	padding-block: clamp(52px, 7vw, 88px);
}

.voranix-section--dark {
	background: var(--vx-navy);
	color: var(--vx-white);
}

.voranix-section--dark h1,
.voranix-section--dark h2,
.voranix-section--dark h3,
.voranix-section--dark p {
	color: var(--vx-white);
}

.voranix-section--mist {
	background: var(--vx-mist);
}

.voranix-kicker {
	color: var(--vx-blue);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	margin-bottom: 18px;
	text-transform: uppercase;
}

.voranix-section--dark .voranix-kicker {
	color: #75d7e4;
}

.voranix-lead {
	font-size: clamp(1.08rem, 2vw, 1.32rem);
	max-width: 760px;
}

.voranix-grid {
	display: grid;
	gap: 22px;
}

.voranix-grid--2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.voranix-grid--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.voranix-grid--4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.voranix-grid--6 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.voranix-card {
	background: var(--vx-white);
	border: 1px solid var(--vx-line);
	border-radius: var(--vx-radius-md);
	box-shadow: 0 1px 0 rgba(11, 31, 51, 0.02);
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: clamp(24px, 3vw, 34px);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.voranix-card:hover,
.voranix-card:focus-within {
	border-color: #9dc7db;
	box-shadow: var(--vx-shadow-sm);
	transform: translateY(-4px);
}

.voranix-card p:last-child {
	margin-bottom: 0;
}

.voranix-card__index {
	align-items: center;
	background: var(--vx-sky);
	border-radius: 999px;
	color: var(--vx-blue);
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 800;
	height: 36px;
	justify-content: center;
	letter-spacing: 0.08em;
	margin-bottom: 38px;
	width: 36px;
}

.voranix-card__link {
	color: var(--vx-blue) !important;
	font-weight: 750;
	margin-top: auto;
	padding-top: 22px;
	text-decoration: none;
}

.voranix-card__link::after {
	content: "  →";
}

.voranix-button-row {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.voranix-button:not(.elementor-widget-button),
.voranix-site .elementor-widget-button.voranix-button .elementor-button {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 7px;
	display: inline-flex;
	font-weight: 780;
	justify-content: center;
	line-height: 1.2;
	min-height: 52px;
	padding: 15px 22px;
	text-decoration: none;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.voranix-button:not(.elementor-widget-button):hover,
.voranix-button:not(.elementor-widget-button):focus-visible,
.voranix-site .elementor-widget-button.voranix-button .elementor-button:hover,
.voranix-site .elementor-widget-button.voranix-button .elementor-button:focus-visible {
	transform: translateY(-2px);
}

.voranix-button--primary:not(.elementor-widget-button) {
	background: var(--vx-accent);
	color: var(--vx-white) !important;
}

.voranix-site .elementor-widget-button.voranix-button--primary .elementor-button {
	background: var(--vx-accent);
	color: var(--vx-white);
}

.voranix-button--primary:not(.elementor-widget-button):hover,
.voranix-button--primary:not(.elementor-widget-button):focus-visible {
	background: var(--vx-accent-dark);
}

.voranix-site .elementor-widget-button.voranix-button--primary .elementor-button:hover,
.voranix-site .elementor-widget-button.voranix-button--primary .elementor-button:focus-visible {
	background: var(--vx-accent-dark);
}

.voranix-button--secondary:not(.elementor-widget-button) {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.45);
	color: var(--vx-white) !important;
}

.voranix-site .elementor-widget-button.voranix-button--secondary .elementor-button {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.45);
	color: var(--vx-white);
}

.voranix-button--secondary:not(.elementor-widget-button):hover,
.voranix-button--secondary:not(.elementor-widget-button):focus-visible {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--vx-white);
}

.voranix-site .elementor-widget-button.voranix-button--secondary .elementor-button:hover,
.voranix-site .elementor-widget-button.voranix-button--secondary .elementor-button:focus-visible {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--vx-white);
}

.voranix-button--outline:not(.elementor-widget-button) {
	background: transparent;
	border-color: var(--vx-blue);
	color: var(--vx-blue) !important;
}

.voranix-site .elementor-widget-button.voranix-button--outline .elementor-button {
	background: transparent;
	border-color: var(--vx-blue);
	color: var(--vx-blue);
}

.voranix-button--outline:not(.elementor-widget-button):hover,
.voranix-button--outline:not(.elementor-widget-button):focus-visible {
	background: var(--vx-blue);
	color: var(--vx-white) !important;
}

.voranix-site .elementor-widget-button.voranix-button--outline .elementor-button:hover,
.voranix-site .elementor-widget-button.voranix-button--outline .elementor-button:focus-visible {
	background: var(--vx-blue);
	color: var(--vx-white);
}

.voranix-hero {
	background:
		linear-gradient(90deg, rgba(4, 18, 33, 0.97) 0%, rgba(5, 24, 42, 0.9) 46%, rgba(5, 24, 42, 0.58) 100%),
		url("../images/industrial-coding-marking-traceability-applications-voranix.webp") center / cover no-repeat;
	min-height: min(820px, calc(100vh - 80px));
	padding-block: clamp(80px, 10vw, 150px);
}

.voranix-hero__grid {
	align-items: center;
	display: grid;
	gap: clamp(48px, 7vw, 92px);
	grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
}

.voranix-hero h1 {
	color: var(--vx-white);
	margin-bottom: 28px;
}

.voranix-hero .voranix-lead {
	color: #c8d9e8;
	max-width: 680px;
}

.voranix-hero__note {
	color: #9eb7ca !important;
	font-size: 0.92rem;
	margin-top: 20px;
}

.voranix-system-card {
	backdrop-filter: blur(12px);
	background: rgba(5, 25, 44, 0.74);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--vx-radius-lg);
	box-shadow: var(--vx-shadow-lg);
	padding: clamp(24px, 4vw, 42px);
}

.voranix-system-card__label {
	color: #90dce5;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.voranix-system-flow {
	display: grid;
	gap: 13px;
	margin-top: 28px;
}

.voranix-system-flow__step {
	align-items: center;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	display: grid;
	gap: 16px;
	grid-template-columns: 46px 1fr;
	padding: 18px;
}

.voranix-system-flow__step strong {
	color: var(--vx-white);
	display: block;
}

.voranix-system-flow__step span:last-child {
	color: #b8ccdc;
	font-size: 0.9rem;
}

.voranix-system-flow__number {
	align-items: center;
	background: var(--vx-cyan);
	border-radius: 9px;
	color: var(--vx-white);
	display: flex;
	font-weight: 850;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.voranix-path-card {
	border-top: 4px solid var(--vx-blue);
}

.voranix-tech-card {
	background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.voranix-media-card {
	overflow: hidden;
	padding: 0;
}

.voranix-media-card__visual,
.voranix-media-card__visual .elementor-widget-container {
	line-height: 0;
	width: 100%;
}

.voranix-media-card__visual-link {
	display: block;
	line-height: 0;
	overflow: hidden;
	width: 100%;
}

.voranix-media-card__image {
	aspect-ratio: 4 / 3;
	display: block;
	height: auto;
	object-fit: cover;
	object-position: center;
	transition: transform 180ms ease;
	width: 100%;
}

.voranix-media-card__visual-link:hover .voranix-media-card__image,
.voranix-media-card__visual-link:focus-visible .voranix-media-card__image {
	transform: scale(1.025);
}

.voranix-card__title-link {
	color: var(--vx-navy) !important;
	text-decoration: none;
}

.voranix-card__title-link:hover,
.voranix-card__title-link:focus-visible {
	color: var(--vx-blue) !important;
}

.voranix-media-card__placeholder {
	align-items: center;
	aspect-ratio: 4 / 3;
	background:
		linear-gradient(135deg, rgba(0, 163, 184, 0.92), rgba(18, 104, 168, 0.94)),
		var(--vx-blue);
	display: flex;
	justify-content: center;
	overflow: hidden;
	position: relative;
}

.voranix-media-card__placeholder::before,
.voranix-media-card__placeholder::after {
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 50%;
	content: "";
	height: 210px;
	position: absolute;
	width: 210px;
}

.voranix-media-card__placeholder::before {
	right: -60px;
	top: -90px;
}

.voranix-media-card__placeholder::after {
	bottom: -120px;
	left: -50px;
}

.voranix-media-card__placeholder span {
	color: var(--vx-white);
	font-size: clamp(1.35rem, 3vw, 2.2rem);
	font-weight: 850;
	letter-spacing: 0.16em;
	position: relative;
	z-index: 1;
}

.voranix-media-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: clamp(24px, 3vw, 34px);
}

.voranix-media-card__body h3 {
	margin-top: 12px;
}

.voranix-tech-card__tag {
	color: var(--vx-success);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.voranix-industry-card {
	background: var(--vx-navy);
	border-color: rgba(255, 255, 255, 0.12);
	min-height: 240px;
}

.voranix-industry-card h3,
.voranix-industry-card p {
	color: var(--vx-white);
}

.voranix-industry-card p {
	opacity: 0.72;
}

.voranix-industry-card .voranix-card__link {
	color: #6dd2df !important;
}

.voranix-architecture {
	align-items: stretch;
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 44px;
}

.voranix-architecture__layer {
	border-radius: var(--vx-radius-md);
	padding: 34px;
	position: relative;
}

.voranix-architecture__layer:nth-child(1) {
	background: #eaf5fa;
}

.voranix-architecture__layer:nth-child(2) {
	background: #dff3f2;
}

.voranix-architecture__layer:nth-child(3) {
	background: #e8edf5;
}

.voranix-architecture__label {
	color: var(--vx-blue);
	font-size: 0.76rem;
	font-weight: 850;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.voranix-tier {
	border-top: 5px solid var(--vx-line);
}

.voranix-tier--recommended {
	border-color: var(--vx-cyan);
	box-shadow: var(--vx-shadow-sm);
}

.voranix-tier--advanced {
	background: var(--vx-navy);
	border-color: var(--vx-accent);
}

.voranix-tier--advanced h3,
.voranix-tier--advanced p,
.voranix-tier--advanced li {
	color: var(--vx-white);
}

.voranix-tier ul {
	margin: 18px 0 0;
	padding-left: 1.1em;
}

.voranix-tier li + li {
	margin-top: 8px;
}

.voranix-band {
	background:
		linear-gradient(115deg, rgba(11, 31, 51, 0.97), rgba(13, 65, 90, 0.94)),
		var(--vx-navy);
	border-radius: var(--vx-radius-lg);
	color: var(--vx-white);
	display: grid;
	gap: 34px;
	grid-template-columns: minmax(0, 1fr) auto;
	padding: clamp(34px, 5vw, 64px);
}

.voranix-band h2,
.voranix-band p {
	color: var(--vx-white);
}

.voranix-band p {
	margin-bottom: 0;
	max-width: 720px;
	opacity: 0.78;
}

.voranix-process {
	counter-reset: process;
}

.voranix-process .voranix-card {
	counter-increment: process;
}

.voranix-process .voranix-card::before {
	color: var(--vx-blue);
	content: "0" counter(process);
	font-size: 0.8rem;
	font-weight: 850;
	letter-spacing: 0.1em;
	margin-bottom: 34px;
}

.voranix-faq {
	border-top: 1px solid var(--vx-line);
	margin-top: 38px;
}

.voranix-faq details {
	border-bottom: 1px solid var(--vx-line);
	padding-block: 22px;
}

.voranix-faq summary {
	color: var(--vx-navy);
	cursor: pointer;
	font-size: 1.08rem;
	font-weight: 760;
	list-style: none;
	padding-right: 44px;
	position: relative;
}

.voranix-faq summary::-webkit-details-marker {
	display: none;
}

.voranix-faq summary::after {
	content: "+";
	font-size: 1.5rem;
	position: absolute;
	right: 4px;
	top: -4px;
}

.voranix-faq details[open] summary::after {
	content: "−";
}

.voranix-faq details p {
	max-width: 850px;
	padding-top: 18px;
}

.voranix-editor-note {
	background: #fff7ed;
	border: 1px solid #fed7aa;
	border-radius: 10px;
	color: #9a3412;
	font-size: 0.9rem;
	padding: 14px 18px;
}

.voranix-contact-row {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px 26px;
	margin-top: 30px;
}

.voranix-contact-row a {
	color: #8ee5ee !important;
	font-weight: 730;
	text-decoration: none;
}

.voranix-contact-row a:hover,
.voranix-contact-row a:focus-visible {
	color: var(--vx-white) !important;
	text-decoration: underline;
}

.voranix-footer {
	background: #071727;
	color: #c8d9e8;
	font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.voranix-footer *,
.voranix-footer *::before,
.voranix-footer *::after {
	box-sizing: border-box;
}

.voranix-footer__inner {
	display: grid;
	gap: 52px;
	grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(160px, 0.8fr));
	margin: 0 auto;
	max-width: var(--vx-container);
	padding: 72px clamp(20px, 4vw, 44px) 58px;
}

.voranix-footer__brand img {
	background: var(--vx-white);
	border-radius: 8px;
	display: block;
	height: auto;
	margin-bottom: 24px;
	max-width: 285px;
	padding: 8px;
	width: 100%;
}

.voranix-footer h2,
.voranix-footer h3 {
	color: var(--vx-white);
	font-size: 1rem;
	letter-spacing: 0.01em;
	margin: 0 0 22px;
}

.voranix-footer p {
	color: #9eb7ca;
	line-height: 1.75;
	margin: 0;
	max-width: 360px;
}

.voranix-footer .voranix-footer__company {
	color: var(--vx-white);
	font-size: 0.82rem;
	font-weight: 750;
	letter-spacing: 0.03em;
	margin-top: 18px;
}

.voranix-footer ul {
	display: grid;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.voranix-footer a {
	color: #c8d9e8;
	text-decoration: none;
}

.voranix-footer a:hover,
.voranix-footer a:focus-visible {
	color: #75d7e4;
	text-decoration: underline;
}

.voranix-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.voranix-footer__bottom-inner {
	align-items: center;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin: 0 auto;
	max-width: var(--vx-container);
	padding: 22px clamp(20px, 4vw, 44px);
}

.voranix-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.voranix-site :focus-visible {
	outline: 3px solid rgba(0, 163, 184, 0.55);
	outline-offset: 3px;
}

/* Elementor container compatibility. */
.voranix-site.e-con,
.voranix-site .e-con {
	--container-max-width: var(--vx-container);
}

.voranix-site .voranix-grid,
.voranix-site .voranix-grid > .e-con-inner {
	display: grid !important;
}

.voranix-site .voranix-grid--2,
.voranix-site .voranix-grid--2 > .e-con-inner {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.voranix-site .voranix-grid--3,
.voranix-site .voranix-grid--3 > .e-con-inner {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.voranix-site .voranix-grid--4,
.voranix-site .voranix-grid--4 > .e-con-inner {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.voranix-site .voranix-product-visual {
	margin: 0;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: #ffffff;
	color: var(--vx-navy);
}

.voranix-site .voranix-product-visual img {
	display: block;
	width: 100%;
	height: auto;
}

.voranix-site .voranix-product-visual figcaption {
	padding: 12px 16px;
	color: var(--vx-slate);
	font-size: 13px;
	line-height: 1.5;
}

.voranix-site .voranix-table-wrap {
	overflow-x: auto;
	border: 1px solid var(--vx-line);
	background: #ffffff;
}

.voranix-site .voranix-spec-table {
	width: 100%;
	min-width: 720px;
	border-collapse: collapse;
}

.voranix-site .voranix-spec-table th,
.voranix-site .voranix-spec-table td {
	padding: 16px 18px;
	border-bottom: 1px solid var(--vx-line);
	text-align: start;
	vertical-align: top;
}

.voranix-site .voranix-spec-table th {
	width: 24%;
	color: var(--vx-navy);
	font-weight: 800;
}

.voranix-site .voranix-spec-table td:last-child {
	color: var(--vx-slate);
}

.voranix-site .voranix-spec-table tr:last-child th,
.voranix-site .voranix-spec-table tr:last-child td {
	border-bottom: 0;
}

@media (max-width: 1024px) {
	.voranix-hero__grid {
		grid-template-columns: 1fr;
	}

	.voranix-grid--4,
	.voranix-site .voranix-grid--4,
	.voranix-site .voranix-grid--4 > .e-con-inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.voranix-grid--3,
	.voranix-grid--6,
	.voranix-site .voranix-grid--3,
	.voranix-site .voranix-grid--3 > .e-con-inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.voranix-footer__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.voranix-site {
		font-size: 16px;
	}

	.voranix-section {
		padding-block: 68px;
	}

	.voranix-grid--2,
	.voranix-grid--3,
	.voranix-grid--4,
	.voranix-grid--6,
	.voranix-architecture,
	.voranix-band,
	.voranix-site .voranix-grid--2,
	.voranix-site .voranix-grid--3,
	.voranix-site .voranix-grid--4,
	.voranix-site .voranix-grid--2 > .e-con-inner,
	.voranix-site .voranix-grid--3 > .e-con-inner,
	.voranix-site .voranix-grid--4 > .e-con-inner {
		grid-template-columns: 1fr;
	}

	.voranix-band {
		align-items: start;
	}

	.voranix-button-row,
	.voranix-button {
		width: 100%;
	}

	.voranix-button {
		text-align: center;
	}

	.voranix-contact-row,
	.voranix-footer__bottom-inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.voranix-footer__inner {
		gap: 40px;
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.voranix-card,
	.voranix-button {
		transition: none;
	}
}

.voranix-customer-contact {
	bottom: 92px;
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	position: fixed;
	right: 22px;
	z-index: 9998;
}

.voranix-customer-contact__details {
	position: relative;
}

.voranix-customer-contact__trigger {
	align-items: center;
	background: #0b1f33;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	box-shadow: 0 12px 30px rgba(11, 31, 51, 0.24);
	color: #ffffff;
	cursor: pointer;
	display: flex;
	font-size: 14px;
	font-weight: 800;
	gap: 9px;
	list-style: none;
	min-height: 50px;
	padding: 8px 17px 8px 9px;
}

.voranix-customer-contact__trigger::-webkit-details-marker {
	display: none;
}

.voranix-customer-contact__trigger:hover,
.voranix-customer-contact__trigger:focus-visible,
.voranix-customer-contact__details[open] > .voranix-customer-contact__trigger {
	background: #1268a8;
	outline: none;
}

.voranix-customer-contact__trigger:focus-visible {
	box-shadow: 0 0 0 4px rgba(0, 163, 184, 0.25), 0 12px 30px rgba(11, 31, 51, 0.24);
}

.voranix-customer-contact__icon {
	align-items: center;
	background: #00a3b8;
	border-radius: 50%;
	display: inline-flex;
	font-size: 16px;
	height: 34px;
	justify-content: center;
	width: 34px;
}

.voranix-customer-contact__panel {
	background: #ffffff;
	border: 1px solid #d9e3ea;
	border-radius: 14px;
	bottom: calc(100% + 12px);
	box-shadow: 0 22px 55px rgba(11, 31, 51, 0.22);
	color: #526478;
	padding: 22px;
	position: absolute;
	right: 0;
	width: min(340px, calc(100vw - 32px));
}

.voranix-customer-contact__panel strong {
	color: #0b1f33;
	display: block;
	font-size: 18px;
	line-height: 1.35;
}

.voranix-customer-contact__panel p {
	font-size: 14px;
	line-height: 1.55;
	margin: 10px 0 16px;
}

.voranix-customer-contact__panel .voranix-customer-contact__kicker {
	color: #1268a8;
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.11em;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.voranix-customer-contact__links {
	border-top: 1px solid #e8eef2;
	display: grid;
	gap: 4px;
	padding-top: 12px;
}

.voranix-customer-contact__links a {
	border-radius: 6px;
	color: #1268a8;
	font-size: 13px;
	font-weight: 750;
	padding: 7px 4px;
	text-decoration: none;
}

.voranix-customer-contact__links a:hover,
.voranix-customer-contact__links a:focus-visible {
	background: #eaf5fa;
}

.voranix-customer-contact__cta {
	background: #f27a24;
	border-radius: 7px;
	color: #ffffff !important;
	display: block;
	font-size: 13px;
	font-weight: 800;
	margin-top: 12px;
	padding: 12px 14px;
	text-align: center;
	text-decoration: none;
}

.voranix-customer-contact__cta:hover,
.voranix-customer-contact__cta:focus-visible {
	background: #d96213;
}

@media (max-width: 720px) {
	.voranix-customer-contact {
		bottom: calc(16px + env(safe-area-inset-bottom));
		right: 14px;
	}

	.voranix-customer-contact__trigger {
		font-size: 12px;
		min-height: 46px;
		padding: 6px;
	}

	.voranix-customer-contact__trigger > span:not(.voranix-customer-contact__icon) {
		border: 0;
		clip: rect(0 0 0 0);
		clip-path: inset(50%);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute;
		white-space: nowrap;
		width: 1px;
	}

	.voranix-customer-contact__icon {
		height: 32px;
		width: 32px;
	}

	.voranix-customer-contact__panel {
		max-height: min(520px, calc(100vh - 96px));
		overflow-y: auto;
		padding: 19px;
	}
}
