.qtec-rfq {
	--qtec-ink: #15191f;
	--qtec-muted: #5d6978;
	--qtec-line: #d9e0e8;
	--qtec-accent: #0f766e;
	--qtec-panel: #f6f8fb;
	color: var(--qtec-ink);
}

.qtec-rfq__intro {
	margin: 0 0 28px;
	max-width: 820px;
}

.qtec-rfq__eyebrow {
	color: var(--qtec-accent);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.qtec-rfq__intro h2,
.qtec-rfq-dashboard h2 {
	font-size: 48px;
	line-height: 1.05;
	margin: 0 0 12px;
}

.qtec-rfq__intro p,
.qtec-rfq__help {
	color: var(--qtec-muted);
}

.qtec-rfq__timeline {
	counter-reset: none !important;
	display: grid;
	gap: 16px 28px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	list-style: none !important;
	list-style-type: none !important;
	margin: 0 0 26px;
	padding: 0;
}

.qtec-rfq__timeline li {
	background: var(--qtec-panel);
	border: 1px solid var(--qtec-line);
	border-radius: 8px;
	color: var(--qtec-muted);
	counter-increment: none !important;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.25;
	list-style: none !important;
	list-style-type: none !important;
	min-height: 54px;
	padding: 12px;
	position: relative;
	text-align: center;
}

.qtec-rfq__timeline li::before {
	content: none !important;
	display: none !important;
}

.qtec-rfq__timeline li::marker {
	content: "";
	display: none !important;
	font-size: 0 !important;
}

.qtec-rfq__timeline li::after {
	color: #8aa0b6;
	content: "->";
	font-size: 16px;
	font-weight: 800;
	line-height: 1;
	position: absolute;
	right: -24px;
	top: 50%;
	transform: translateY(-50%);
}

.qtec-rfq__timeline li:nth-child(4)::after,
.qtec-rfq__timeline li:last-child::after {
	content: "";
}

.qtec-rfq__timeline li.is-active {
	background: #e8f5f3;
	border-color: #8ac7c0;
	color: #0b4f4a;
}

.qtec-rfq__form,
.qtec-rfq__lookup,
.qtec-rfq__ticket {
	background: #fff;
	border: 1px solid var(--qtec-line);
	border-radius: 8px;
	display: grid;
	gap: 18px;
	margin: 0 0 24px;
	padding: 24px;
}

.qtec-rfq__grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.qtec-rfq__file-field {
	order: -2;
}

.qtec-rfq label {
	color: var(--qtec-ink);
	display: grid;
	font-size: 14px;
	font-weight: 700;
	gap: 7px;
}

.qtec-rfq input,
.qtec-rfq select,
.qtec-rfq textarea {
	border: 1px solid var(--qtec-line);
	border-radius: 6px;
	font: inherit;
	min-height: 44px;
	padding: 10px 12px;
	width: 100%;
}

.qtec-rfq__post-processing {
	border: 1px solid var(--qtec-line);
	border-radius: 8px;
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0;
	padding: 18px;
}

.qtec-rfq__post-processing legend {
	color: var(--qtec-ink);
	font-size: 14px;
	font-weight: 800;
	padding: 0 6px;
}

.qtec-rfq__post-processing label {
	align-items: center;
	display: flex;
	flex-direction: row;
	gap: 8px;
	margin: 0;
}

.qtec-rfq__post-processing input {
	min-height: auto;
	width: auto;
}

.qtec-rfq__tooltip {
	align-items: center;
	background: #eef3f7;
	border: 1px solid var(--qtec-line);
	border-radius: 50%;
	color: var(--qtec-muted);
	cursor: help;
	display: inline-flex;
	font-size: 11px;
	font-weight: 800;
	height: 18px;
	justify-content: center;
	line-height: 1;
	outline: 0;
	position: relative;
	width: 18px;
}

.qtec-rfq__tooltip-text {
	background: #15191f;
	border-radius: 6px;
	bottom: calc(100% + 10px);
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
	color: #fff;
	display: block;
	font-size: 12px;
	font-weight: 600;
	left: 50%;
	line-height: 1.45;
	max-width: min(280px, 70vw);
	opacity: 0;
	padding: 10px 12px;
	pointer-events: none;
	position: absolute;
	text-align: left;
	transform: translate(-50%, 4px);
	transition: opacity 160ms ease, transform 160ms ease;
	visibility: hidden;
	width: max-content;
	z-index: 20;
}

.qtec-rfq__tooltip-text::before {
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #15191f;
	content: "";
	left: 50%;
	position: absolute;
	top: 100%;
	transform: translateX(-50%);
}

.qtec-rfq__tooltip:hover .qtec-rfq__tooltip-text,
.qtec-rfq__tooltip:focus .qtec-rfq__tooltip-text {
	opacity: 1;
	transform: translate(-50%, 0);
	visibility: visible;
}

.qtec-rfq__tooltip::after {
	content: "";
}

.qtec-rfq textarea {
	min-height: 140px;
	resize: vertical;
}

.qtec-rfq button,
.qtec-rfq .button {
	align-items: center;
	background: var(--qtec-accent);
	border: 0;
	border-radius: 6px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-weight: 800;
	justify-content: center;
	min-height: 46px;
	padding: 12px 18px;
	text-decoration: none;
	width: fit-content;
}

.qtec-rfq__notice,
.qtec-rfq__error {
	border-radius: 8px;
	font-weight: 700;
	margin: 0 0 18px;
	padding: 14px 16px;
}

.qtec-rfq__notice {
	background: #e8f5f3;
	color: #0b4f4a;
}

.qtec-rfq__error {
	background: #fff0f0;
	color: #9b1c1c;
}

.qtec-rfq__order-panel {
	border: 1px solid var(--qtec-line);
	border-radius: 8px;
	margin: 24px 0;
	padding: 22px;
}

.qtec-member-account {
	margin: 0 auto;
	max-width: 1180px;
	padding: 36px 24px;
}

.qtec-member-hero,
.qtec-member-login {
	display: grid;
	gap: 22px;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
	margin-bottom: 24px;
}

.qtec-member-layout {
	align-items: start;
	display: grid;
	gap: 24px;
	grid-template-columns: 230px minmax(0, 1fr);
}

.qtec-member-content {
	display: grid;
	gap: 22px;
}

.qtec-member-menu {
	background: #fff;
	border: 1px solid var(--qtec-line);
	border-radius: 8px;
	display: grid;
	gap: 6px;
	padding: 10px;
	position: sticky;
	top: 96px;
}

.qtec-member-menu a,
.qtec-member-menu button {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 6px;
	color: var(--qtec-ink);
	cursor: pointer;
	display: flex;
	font: inherit;
	font-size: 14px;
	font-weight: 800;
	justify-content: flex-start;
	line-height: 1.25;
	min-height: 42px;
	padding: 11px 12px;
	text-align: left;
	text-decoration: none;
	width: 100%;
}

.qtec-member-menu a:hover,
.qtec-member-menu button:hover,
.qtec-member-menu button.is-active {
	background: var(--qtec-panel);
	color: var(--qtec-accent);
}

.qtec-member-tab-panel {
	display: none;
}

.qtec-member-tab-panel.is-active {
	display: block;
}

.qtec-member-hero h2,
.qtec-member-login h2 {
	font-size: 44px;
	line-height: 1.08;
	margin: 0 0 12px;
}

.qtec-member-panel,
.qtec-member-login__form,
.qtec-tier-card,
.qtec-member-order,
.qtec-tier-dialog__panel {
	background: #fff;
	border: 1px solid var(--qtec-line);
	border-radius: 8px;
}

.qtec-member-panel {
	padding: 22px;
}

.qtec-member-panel h3,
.qtec-tier-dialog__panel h3 {
	font-size: 24px;
	line-height: 1.2;
	margin: 0 0 16px;
}

.qtec-member-profile {
	display: grid;
	gap: 14px;
}

.qtec-member-login__form {
	padding: 22px;
}

.qtec-member-login__form form,
.qtec-member-login__links,
.qtec-member-orders {
	display: grid;
	gap: 14px;
}

.qtec-member-register__submit {
	margin-top: 12px;
}

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

.qtec-tier-card {
	color: #15191f;
	cursor: pointer;
	display: grid;
	gap: 6px;
	min-height: 150px;
	padding: 22px;
	text-align: left;
	transition: transform 180ms ease, box-shadow 180ms ease;
	width: 100%;
}

.qtec-rfq .qtec-tier-card {
	background: #fff;
	color: #15191f;
	width: 100%;
}

.qtec-tier-card:hover {
	box-shadow: 0 16px 38px rgba(21, 25, 31, 0.12);
	transform: translateY(-2px);
}

.qtec-tier-card span,
.qtec-tier-card small,
.qtec-tier-card em {
	color: var(--qtec-muted);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.qtec-tier-card em {
	color: var(--qtec-tier-color);
	font-style: normal;
	text-decoration: underline;
	text-transform: none;
}

.qtec-tier-card strong {
	font-size: 30px;
	line-height: 1.05;
}

.qtec-member-reward {
	border-left: 5px solid var(--qtec-accent);
	padding-left: 14px;
}

.qtec-member-section-title,
.qtec-member-order__head,
.qtec-member-order__meta {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: space-between;
}

.qtec-member-link-button {
	background: transparent;
	border: 0;
	color: var(--qtec-accent);
	cursor: pointer;
	font: inherit;
	font-weight: 800;
	padding: 0;
	text-decoration: underline;
}

.qtec-rfq .qtec-member-link-button {
	background: transparent;
	color: var(--qtec-accent);
	min-height: auto;
	padding: 0;
	width: auto;
}

.qtec-work-order-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.qtec-work-order-actions form {
	margin: 0;
}

.qtec-rfq .qtec-secondary-button,
.qtec-rfq .qtec-danger-button,
.qtec-rfq .qtec-ticket-button {
	border-radius: 6px;
	display: inline-flex;
	font-weight: 800;
	justify-content: center;
	min-height: 42px;
	text-decoration: none;
	width: auto;
}

.qtec-rfq .qtec-danger-button {
	background: #fff1f0;
	border-color: #f1a19a;
	color: #a3372b;
}

.qtec-modal {
	align-items: center;
	display: none;
	inset: 0;
	justify-content: center;
	padding: 24px;
	position: fixed;
	z-index: 99999;
}

.qtec-modal.is-open {
	display: flex;
}

.qtec-modal__backdrop {
	background: rgba(10, 18, 32, 0.54);
	inset: 0;
	position: absolute;
}

.qtec-modal__panel {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 24px 70px rgba(10, 18, 32, 0.24);
	max-height: calc(100vh - 48px);
	max-width: 620px;
	overflow: auto;
	padding: 24px;
	position: relative;
	width: min(100%, 620px);
}

.qtec-modal__panel h4 {
	font-size: 22px;
	line-height: 1.2;
	margin: 0 0 16px;
}

.qtec-modal__close {
	align-items: center;
	background: var(--qtec-panel);
	border: 1px solid var(--qtec-line);
	border-radius: 50%;
	cursor: pointer;
	display: inline-flex;
	font-size: 24px;
	height: 36px;
	justify-content: center;
	line-height: 1;
	position: absolute;
	right: 14px;
	top: 14px;
	width: 36px;
}

.qtec-member-edit-rfq {
	display: grid;
	gap: 14px;
}

.qtec-quote-builder {
	display: grid;
	gap: 14px;
}

.qtec-quote-items input {
	width: 100%;
}

.qtec-quote-col-image {
	width: 110px;
}

.qtec-quote-col-name {
	width: 20%;
}

.qtec-quote-col-quantity {
	width: 8%;
}

.qtec-quote-col-material {
	width: 18%;
}

.qtec-quote-col-notes {
	width: 20%;
}

.qtec-quote-col-price {
	width: 9%;
}

.qtec-quote-col-delivery {
	width: 13%;
}

.qtec-quote-col-action {
	width: 7%;
}

.qtec-quote-item-image-cell {
	min-width: 108px;
}

.qtec-quote-item-image-preview {
	align-items: center;
	background: #f5f7f8;
	border: 1px solid var(--qtec-line);
	border-radius: 6px;
	display: flex;
	height: 70px;
	justify-content: center;
	margin-bottom: 8px;
	width: 92px;
}

.qtec-quote-item-image-preview:empty::before {
	color: var(--qtec-muted);
	content: "No image";
	font-size: 11px;
}

.qtec-quote-item-image-preview img {
	border-radius: 4px;
	max-height: 64px;
	max-width: 86px;
	object-fit: cover;
}

.qtec-quote-items .small-text {
	min-width: 82px;
}

.qtec-quote-items .regular-text {
	max-width: 120px;
	width: 100%;
}

.qtec-quote-delivery-select {
	max-width: 150px;
	width: 100%;
}

.qtec-quote-summary {
	background: var(--qtec-panel);
	border: 1px solid var(--qtec-line);
	border-radius: 8px;
	display: grid;
	gap: 8px;
	max-width: 520px;
	padding: 14px;
}

.qtec-quote-summary p {
	display: flex;
	justify-content: space-between;
	margin: 0;
}

.qtec-quote-summary__total {
	border-top: 1px solid var(--qtec-line);
	font-size: 16px;
	padding-top: 10px;
}

.qtec-quote-summary__original strong {
	color: var(--qtec-muted);
	text-decoration: line-through;
}

.qtec-customer-quote {
	background: #fff;
	border: 1px solid var(--qtec-line);
	border-radius: 8px;
	display: grid;
	gap: 14px;
	padding: 16px;
}

.qtec-customer-quote__head {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 16px;
	justify-content: space-between;
}

.qtec-customer-quote__head {
	border-bottom: 1px solid var(--qtec-line);
	padding-bottom: 12px;
}

.qtec-customer-quote__head strong,
.qtec-customer-quote__head span {
	display: block;
}

.qtec-customer-quote__table-wrap {
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 8px;
	overflow: hidden;
}

.qtec-customer-quote__grid {
	align-items: start;
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr;
}

.qtec-customer-quote__table {
	border-collapse: collapse;
	font-size: 13px;
	table-layout: fixed;
	width: 100%;
}

.qtec-customer-quote__table th,
.qtec-customer-quote__table td {
	border-bottom: 1px solid rgba(15, 23, 42, 0.10);
	padding: 11px 10px;
	text-align: left;
	vertical-align: top;
}

.qtec-customer-quote__table thead th {
	background: rgba(15, 23, 42, 0.03);
	color: var(--qtec-muted);
	font-size: 11px;
	letter-spacing: 0;
	text-transform: uppercase;
}

.qtec-customer-quote__image {
	width: 78px;
}

.qtec-customer-quote__image img {
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 6px;
	display: block;
	height: 58px;
	object-fit: cover;
	width: 58px;
}

.qtec-customer-quote__table th:first-child {
	width: 78px;
}

.qtec-customer-quote__table th:nth-child(2) {
	width: 28%;
}

.qtec-customer-quote__table th:nth-child(3) {
	width: 72px;
}

.qtec-customer-quote__table th:nth-child(4) {
	width: 18%;
}

.qtec-customer-quote__table th:nth-child(6) {
	text-align: right;
	width: 118px;
}

.qtec-customer-quote__table td:nth-child(6) {
	text-align: right;
}

.qtec-customer-quote__table tbody th {
	font-weight: 700;
}

.qtec-customer-quote__item-name,
.qtec-customer-quote__item-note {
	display: block;
}

.qtec-customer-quote__item-note {
	color: var(--qtec-muted);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.45;
	margin-top: 4px;
	max-width: 340px;
}

.qtec-customer-quote__original {
	color: var(--qtec-muted);
	text-decoration: line-through;
}

.qtec-customer-quote__table .qtec-customer-quote__original {
	color: var(--qtec-text);
	font-weight: 700;
	text-decoration: none;
}

.qtec-customer-quote__totals {
	background: rgba(15, 23, 42, 0.025);
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 8px;
	display: grid;
	gap: 0;
	justify-self: end;
	max-width: 420px;
	padding: 4px 14px;
	width: 100%;
}

.qtec-customer-quote__totals p {
	align-items: center;
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
	display: flex;
	gap: 12px;
	justify-content: space-between;
	margin: 0;
	padding: 10px 0;
}

.qtec-customer-quote__totals p:last-child {
	border-bottom: 0;
}

.qtec-customer-quote__total {
	font-size: 17px;
}

.qtec-customer-quote__total strong {
	color: var(--qtec-text);
	font-size: 16px;
}

.qtec-customer-quote__notes {
	background: #fff;
	border-left: 4px solid var(--qtec-accent);
	padding-left: 12px;
}

.qtec-customer-quote__notes p {
	margin: 6px 0 0;
}

body.qtec-rfq-pay-order form#order_review > table.shop_table {
	display: none;
}

body.qtec-rfq-pay-order .qtec-customer-quote {
	margin-bottom: 26px;
}

body.qtec-rfq-pay-order .qtec-customer-quote__table-wrap {
	overflow-x: auto;
}

body.home #header-outer .cart-outer,
body.home #header-outer .cart-menu,
body.home #header-outer a.cart-contents,
body.home #mobile-cart-link {
	display: none !important;
}

.qtec-member-empty {
	background: var(--qtec-panel);
	border: 1px dashed var(--qtec-line);
	border-radius: 8px;
	color: var(--qtec-muted);
	font-weight: 700;
	padding: 18px;
}

.qtec-member-order {
	display: grid;
	gap: 16px;
	padding: 18px;
}

.qtec-member-order__summary {
	cursor: pointer;
	display: block;
	list-style: none;
}

.qtec-member-order__summary::-webkit-details-marker {
	display: none;
}

.qtec-member-order__body {
	display: grid;
	gap: 16px;
	padding-top: 16px;
}

.qtec-member-order__requirements {
	background: var(--qtec-panel);
	border-radius: 8px;
	padding: 12px;
}

.qtec-member-order__requirements p {
	margin: 6px 0 0;
}

.qtec-member-order__head strong,
.qtec-member-order__head span {
	display: block;
}

.qtec-member-status,
.qtec-tier-badge {
	border-radius: 999px;
	display: inline-flex;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	padding: 8px 10px;
	text-transform: uppercase;
}

.qtec-member-status {
	background: #e8f5f3;
	color: #0b4f4a;
}

.qtec-shipping-details {
	background: var(--qtec-panel);
	border: 1px solid var(--qtec-line);
	border-radius: 8px;
	display: grid;
	gap: 6px;
	padding: 12px;
}

.qtec-shipping-details a {
	color: var(--qtec-accent);
	font-weight: 800;
}

.qtec-tier-badge--diamond,
.qtec-tier-card--diamond,
.qtec-tier-border--diamond {
	--qtec-tier-color: #46a7c8;
}

.qtec-tier-badge--titanium,
.qtec-tier-card--titanium,
.qtec-tier-border--titanium {
	--qtec-tier-color: #606975;
}

.qtec-tier-badge--platinum,
.qtec-tier-card--platinum,
.qtec-tier-border--platinum {
	--qtec-tier-color: #0f766e;
}

.qtec-tier-badge--gold,
.qtec-tier-card--gold,
.qtec-tier-border--gold {
	--qtec-tier-color: #c69222;
}

.qtec-tier-badge--silver,
.qtec-tier-card--silver,
.qtec-tier-border--silver {
	--qtec-tier-color: #9aa3ad;
}

.qtec-tier-badge--partner,
.qtec-tier-card--partner,
.qtec-tier-border--partner {
	--qtec-tier-color: #b87333;
}

.qtec-tier-card,
.qtec-tier-border--diamond,
.qtec-tier-border--titanium,
.qtec-tier-border--platinum,
.qtec-tier-border--gold,
.qtec-tier-border--silver,
.qtec-tier-border--partner {
	border-color: var(--qtec-tier-color);
}

.qtec-tier-badge {
	background: color-mix(in srgb, var(--qtec-tier-color) 14%, white);
	color: var(--qtec-tier-color);
}

.qtec-tier-dialog {
	display: none;
	inset: 0;
	position: fixed;
	z-index: 99999;
}

.qtec-tier-dialog.is-open {
	display: block;
}

.qtec-tier-dialog__backdrop {
	background: rgba(12, 17, 23, 0.56);
	inset: 0;
	position: absolute;
}

.qtec-tier-dialog__panel {
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
	left: 50%;
	max-height: calc(100vh - 48px);
	max-width: 920px;
	overflow: auto;
	padding: 28px;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: calc(100% - 36px);
}

.qtec-tier-dialog__close {
	align-items: center;
	background: #15191f;
	border: 0;
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-size: 22px;
	height: 36px;
	justify-content: center;
	position: absolute;
	right: 18px;
	top: 18px;
	width: 36px;
}

.qtec-rfq .qtec-tier-dialog__close {
	background: #15191f;
	min-height: 36px;
	padding: 0;
	width: 36px;
}

.qtec-tier-table {
	display: grid;
	gap: 10px;
	margin-top: 18px;
}

.qtec-tier-row {
	border-left: 5px solid var(--qtec-tier-color);
	display: grid;
	gap: 8px;
	grid-template-columns: 180px minmax(220px, 1fr) minmax(220px, 1fr);
	padding: 14px 0 14px 16px;
}

.qtec-rfq-admin-table th {
	width: 180px;
}

.qtec-seo {
	--qtec-seo-ink: #15191f;
	--qtec-seo-muted: #5d6978;
	--qtec-seo-line: #d9e0e8;
	--qtec-seo-accent: #0f766e;
	--qtec-seo-soft: #f6f8fb;
	color: var(--qtec-seo-ink);
	margin: 42px auto;
	max-width: 1180px;
	padding: 0 24px;
}

.qtec-seo__cta-band {
	align-items: center;
	background: var(--qtec-seo-soft);
	border: 1px solid var(--qtec-seo-line);
	border-radius: 8px;
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 1fr) auto;
	margin: 0 0 28px;
	padding: 30px;
}

.qtec-seo__eyebrow {
	color: var(--qtec-seo-accent);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.qtec-seo h2 {
	font-size: 34px;
	line-height: 1.15;
	margin: 0 0 12px;
}

.qtec-seo h3 {
	font-size: 18px;
	line-height: 1.25;
	margin: 0 0 8px;
}

.qtec-seo p {
	color: var(--qtec-seo-muted);
	font-size: 16px;
	line-height: 1.65;
	margin: 0;
}

.qtec-seo__actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 20px;
}

.qtec-seo__button,
.qtec-seo__link {
	align-items: center;
	border-radius: 6px;
	display: inline-flex;
	font-weight: 800;
	min-height: 46px;
	padding: 12px 18px;
	text-decoration: none;
}

.qtec-seo__button {
	background: var(--qtec-seo-accent);
	color: #fff;
}

.qtec-seo__button:hover,
.qtec-rfq-floating-cta:hover {
	background: #0b5f59;
	color: #fff;
}

.qtec-seo__link {
	border: 1px solid var(--qtec-seo-line);
	color: var(--qtec-seo-ink);
}

.qtec-home-process {
	margin: 0 0 52px;
	max-width: none;
	padding: 0 40px;
	width: 100%;
}

.qtec-process {
	background: #fff;
	border: 0;
	border-radius: 0;
	padding: 0 40px;
}

.qtec-process__header {
	display: block;
	margin-bottom: 22px;
}

.qtec-process__header h2 {
	color: #111 !important;
	font-family: "Playfair Display", Georgia, "Times New Roman", serif !important;
	font-size: 52px !important;
	font-weight: 500 !important;
	letter-spacing: 0 !important;
	line-height: 1.12 !important;
	margin: 0;
	text-transform: none !important;
}

body.compose-mode .qtec-home-process,
body.vc_editor .qtec-home-process,
.vc_editor .qtec-home-process {
	background: #fff;
	min-height: 180px;
	outline: 1px dashed rgba(17, 17, 17, 0.18);
	outline-offset: 10px;
}

.qtec-process__steps {
	display: grid;
	gap: 14px 30px;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	list-style: none !important;
	margin: 0;
	padding: 0;
}

.qtec-process__steps li {
	border-top: 2px solid #d9e0e8;
	list-style: none !important;
	min-height: 92px;
	padding-top: 16px;
	position: relative;
	transition: border-color 180ms ease, transform 180ms ease;
}

.qtec-process__steps li:hover,
.qtec-process__steps li.is-hovered {
	border-top-color: transparent;
	transform: translateY(-2px);
}

.qtec-process__steps li::marker {
	content: "";
}

.qtec-process__steps li::after {
	content: "";
}

.qtec-process__steps strong,
.qtec-process__steps span {
	display: block;
}

.qtec-process__steps strong {
	color: var(--qtec-seo-ink);
	font-size: 15px;
	line-height: 1.25;
	margin-bottom: 8px;
}

.qtec-process__steps span {
	color: var(--qtec-seo-muted);
	font-size: 13px;
	line-height: 1.45;
}

.qtec-seo__facts {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0 0 28px;
}

.qtec-seo__fact,
.qtec-seo__qa {
	background: #fff;
	border: 1px solid var(--qtec-seo-line);
	border-radius: 8px;
	padding: 18px;
}

.qtec-seo__faq {
	margin-top: 26px;
}

.qtec-seo__faq-grid {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 18px;
}

.qtec-seo__qa summary {
	color: var(--qtec-seo-ink);
	cursor: pointer;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.35;
}

.qtec-seo__qa p {
	margin-top: 12px;
}

.qtec-home-hero-cta {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
	position: relative;
	z-index: 4;
}

.qtec-home-hero-cta .qtec-seo__button {
	background: transparent !important;
	border: 1px solid #fff !important;
	border-radius: 6px !important;
	box-shadow: none;
	color: #fff !important;
	font-family: inherit;
	font-size: 15px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1;
	min-height: 48px;
	padding: 16px 22px;
	text-decoration: none !important;
	text-transform: none;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.qtec-home-hero-cta .qtec-seo__button:hover {
	background: #000 !important;
	border-color: #000 !important;
	color: #fff !important;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.qtec-home-hero-cta span {
	color: rgba(255, 255, 255, 0.78);
	font-size: 15px;
	line-height: 1.5;
	max-width: 420px;
}

.qtec-home-facts,
.qtec-home-faq {
	margin: 46px auto;
	max-width: 1180px;
	padding: 0 24px;
}

.qtec-home-facts {
	margin-bottom: 86px !important;
}

body .qtec-home-facts {
	margin-bottom: 86px !important;
}

.qtec-home-facts .qtec-seo__facts {
	background: #f6f8fb;
	border: 1px solid var(--qtec-seo-line);
	border-radius: 8px;
	margin: 0;
	padding: 14px;
}

.qtec-home-facts .qtec-seo__fact {
	background: transparent;
	border: 0;
	border-right: 1px solid var(--qtec-seo-line);
	border-radius: 0;
	padding: 12px 16px;
}

.qtec-home-facts .qtec-seo__fact:last-child {
	border-right: 0;
}

.qtec-home-faq .qtec-seo__faq {
	margin-top: 0;
}

.qtec-home-faq .qtec-seo__qa {
	padding: 16px 18px;
}

.qtec-home-faq .qtec-seo__qa p {
	font-size: 15px;
	line-height: 1.55;
}

@media (max-width: 780px) {
	.qtec-rfq__grid,
	.qtec-rfq__timeline,
	.qtec-rfq__post-processing,
	.qtec-member-hero,
	.qtec-member-login,
	.qtec-member-layout,
	.qtec-tier-row,
	.qtec-customer-quote__grid {
		grid-template-columns: 1fr;
	}

	.qtec-customer-quote__table {
		min-width: 640px;
	}

	.qtec-rfq__timeline {
		gap: 26px;
	}

	.qtec-rfq__timeline li::after {
		bottom: -22px;
		content: "↓";
		left: 50%;
		right: auto;
		top: auto;
		transform: translateX(-50%);
	}

	.qtec-rfq__timeline li:nth-child(4)::after {
		content: "↓";
	}

	.qtec-rfq__intro h2,
	.qtec-rfq-dashboard h2,
	.qtec-member-hero h2,
	.qtec-member-login h2 {
		font-size: 34px;
	}

	.qtec-seo {
		margin: 36px auto;
		padding: 0 18px;
	}

	.qtec-seo__hero-cta,
	.qtec-seo__cta-band,
	.qtec-seo__facts,
	.qtec-seo__faq-grid {
		grid-template-columns: 1fr;
	}

	.qtec-seo h2 {
		font-size: 28px;
	}

	.qtec-home-hero-cta,
	.qtec-home-process,
	.qtec-home-facts,
	.qtec-home-faq {
		margin: 30px auto;
		padding: 0 18px;
	}

	.qtec-process {
		padding: 20px;
	}

	.qtec-process__header,
	.qtec-process__steps {
		grid-template-columns: 1fr;
	}

	.qtec-process__steps {
		gap: 24px;
	}

	.qtec-process__steps li {
		min-height: 0;
	}

	.qtec-process__steps li::after {
		content: "";
	}

	.qtec-member-account {
		padding: 28px 18px;
	}

	.qtec-member-menu {
		position: static;
	}

	.qtec-member-login__links {
		grid-template-columns: 1fr;
	}

	.qtec-home-hero-cta span {
		color: rgba(255, 255, 255, 0.84);
	}

	.qtec-home-facts .qtec-seo__fact {
		border-right: 0;
		border-bottom: 1px solid var(--qtec-seo-line);
	}

	.qtec-home-facts .qtec-seo__fact:last-child {
		border-bottom: 0;
	}
}
