/* FPGT RFQ Frontend */

/* Header Icon */

.bp-fpgt-rfq-header-icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	text-decoration: none;
	color: inherit;
	line-height: 1;
}

.bp-fpgt-rfq-header-icon:hover .bp-fpgt-rfq-header-icon-svg {
	text-decoration: none;
	opacity: 0.45;
}


.bp-fpgt-rfq-header-icon-svg {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	line-height: 1;
}

.bp-fpgt-rfq-header-icon-svg svg {
	display: block;
	width: 31px;
	height: 31px;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
}

/* Icon color variants */

.bp-fpgt-rfq-header-icon-dark {
	color: #111 !important;
}

.bp-fpgt-rfq-header-icon-dark svg,
.bp-fpgt-rfq-header-icon-dark path {
	stroke: #111 !important;
}

.bp-fpgt-rfq-header-icon-light {
	color: #fff !important;
}

.bp-fpgt-rfq-header-icon-light svg,
.bp-fpgt-rfq-header-icon-light path {
	stroke: #fff !important;
}

/* Quantity badge */

.bp-fpgt-rfq-count {
	position: absolute;
	top: 5px;
	right: 0px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 15px;
	height: 15px;
	min-width: 15px;
	max-width: 15px;
	min-height: 15px;
	max-height: 15px;
	padding: 0;
	border-radius: 50%;
	background: #111;
	color: #fff;
	font-size: 9px;
	line-height: 1;
	font-weight: 400;
	box-sizing: border-box;
}

/* Badge color adjustment for dark headers */

.bp-fpgt-rfq-header-icon-light .bp-fpgt-rfq-count {
	background: #9e9e9e;
	color: #fff;
}

/* Badge color adjustment for light headers */

.bp-fpgt-rfq-header-icon-dark .bp-fpgt-rfq-count {
	background: #0057FF;
	color: #fff;
}
/* Shop / Collection RFQ Button Fix for Woodmart */

.products .bp-fpgt-rfq-loop-button,
.product-grid-item .bp-fpgt-rfq-loop-button,
.wd-product .bp-fpgt-rfq-loop-button,
.product .bp-fpgt-rfq-loop-button,
.products .bp-fpgt-rfq-loop-select-options,
.product-grid-item .bp-fpgt-rfq-loop-select-options,
.wd-product .bp-fpgt-rfq-loop-select-options,
.product .bp-fpgt-rfq-loop-select-options {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 42px;
	min-width: 150px;
	padding: 10px 18px !important;
	border-radius: var(--wd-brd-radius, 4px);
	text-align: center !important;
	line-height: 1.2 !important;
	white-space: nowrap;
}

.products .bp-fpgt-rfq-loop-button::before,
.products .bp-fpgt-rfq-loop-button::after,
.product-grid-item .bp-fpgt-rfq-loop-button::before,
.product-grid-item .bp-fpgt-rfq-loop-button::after,
.wd-product .bp-fpgt-rfq-loop-button::before,
.wd-product .bp-fpgt-rfq-loop-button::after,
.product .bp-fpgt-rfq-loop-button::before,
.product .bp-fpgt-rfq-loop-button::after,
.products .bp-fpgt-rfq-loop-select-options::before,
.products .bp-fpgt-rfq-loop-select-options::after,
.product-grid-item .bp-fpgt-rfq-loop-select-options::before,
.product-grid-item .bp-fpgt-rfq-loop-select-options::after,
.wd-product .bp-fpgt-rfq-loop-select-options::before,
.wd-product .bp-fpgt-rfq-loop-select-options::after,
.product .bp-fpgt-rfq-loop-select-options::before,
.product .bp-fpgt-rfq-loop-select-options::after {
	display: none !important;
	content: none !important;
}

.products .bp-fpgt-rfq-loop-button span,
.product-grid-item .bp-fpgt-rfq-loop-button span,
.wd-product .bp-fpgt-rfq-loop-button span,
.product .bp-fpgt-rfq-loop-button span,
.products .bp-fpgt-rfq-loop-select-options span,
.product-grid-item .bp-fpgt-rfq-loop-select-options span,
.wd-product .bp-fpgt-rfq-loop-select-options span,
.product .bp-fpgt-rfq-loop-select-options span {
	transform: none !important;
	opacity: 1 !important;
	visibility: visible !important;
}

.products .bp-fpgt-rfq-loop-button:hover,
.product-grid-item .bp-fpgt-rfq-loop-button:hover,
.wd-product .bp-fpgt-rfq-loop-button:hover,
.product .bp-fpgt-rfq-loop-button:hover,
.products .bp-fpgt-rfq-loop-select-options:hover,
.product-grid-item .bp-fpgt-rfq-loop-select-options:hover,
.wd-product .bp-fpgt-rfq-loop-select-options:hover,
.product .bp-fpgt-rfq-loop-select-options:hover {
	text-align: center !important;
}

/* Drawer */

.bp-fpgt-rfq-drawer-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	opacity: 0;
	visibility: hidden;
	z-index: 99998;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

.bp-fpgt-rfq-drawer-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.bp-fpgt-rfq-drawer {
	position: fixed;
	top: 0;
	right: 0;
	width: min(340px, 100vw);
	max-width: 100vw;
	height: 100vh;
	background: #fff;
	z-index: 99999;
	transform: translateX(100%);
	transition: transform 0.28s ease;
	box-shadow: -8px 0 24px rgba(0, 0, 0, 0.16);
	display: flex;
	flex-direction: column;
}

.bp-fpgt-rfq-drawer.is-open {
	transform: translateX(0);
}

body.bp-fpgt-rfq-drawer-open {
	overflow: hidden;
}

.bp-fpgt-rfq-drawer-inner {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.bp-fpgt-rfq-drawer-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 16px;
	padding: 12px 15px;
	border-bottom: 1px solid #eee;
}

.bp-fpgt-rfq-drawer-header h3 {
	margin: 0;
	font-size: 20px;
	line-height: 1.2;
}

.bp-fpgt-rfq-drawer-header p {
	margin: 5px 0 0;
	font-size: 13px;
	color: #666;
}

.bp-fpgt-rfq-drawer-close {
	border: none;
	background: transparent !important;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	padding: 0;
	color: #222;
	transition: opacity 0.2s ease, color 0.2s ease;
}

.bp-fpgt-rfq-drawer-close:hover {
	opacity: 0.65;
	color: #222;
}

.bp-fpgt-rfq-drawer-close-icon {
	font-size: 20px;
	line-height: 1;
	font-weight: 400;
	position: relative;
	top: -1px;
}

.bp-fpgt-rfq-drawer-close-text {
	font-size: 14px;
	line-height: 1;
}

button.bp-fpgt-rfq-drawer-close {
	text-transform: none !important;
	letter-spacing: normal !important;
}

.bp-fpgt-rfq-drawer-body {
	flex: 1;
	overflow-y: auto;
	padding: 18px 22px;
}

.bp-fpgt-rfq-drawer-footer {
	padding: 18px 22px;
	border-top: 1px solid #eee;
}

.bp-fpgt-rfq-drawer-quote-button {
	width: 100%;
	text-align: center;
	justify-content: center;
}

.bp-fpgt-rfq-drawer-quote-button.disabled {
	pointer-events: none;
	opacity: 0.45;
}

.bp-fpgt-rfq-drawer-items {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.bp-fpgt-rfq-drawer-item {
	position: relative;
	display: grid;
	grid-template-columns: 65px minmax(0, 1fr) 28px;
	gap: 10px;
	padding-bottom: 14px;
	border-bottom: 1px solid #eee;
}

.bp-fpgt-rfq-drawer-item-image img {
	width: 65px;
	height: 65px;
	object-fit: cover;
	border-radius: 8px;
}

.bp-fpgt-rfq-drawer-item-title,
.bp-fpgt-rfq-cart-title {
	display: inline-block;
	font-weight: 700;
	color: #333333;
	text-decoration: none;
	line-height: 1.35;
}

.bp-fpgt-rfq-drawer-item-title:hover,
.bp-fpgt-rfq-cart-title:hover {
	opacity: 0.45;
}

.bp-fpgt-rfq-variation,
.bp-fpgt-rfq-sku,
.bp-fpgt-rfq-drawer-item-meta {
	margin-top: 5px;
	font-size: 12px;
	color: #666;
}

.bp-fpgt-rfq-drawer-item-meta {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.bp-fpgt-rfq-remove-item {
	border: none;
	background: transparent !important;
	color: #222;
	cursor: pointer;
	font-size: 18px;
	line-height: 1;
	padding: 0;
	transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.bp-fpgt-rfq-drawer .bp-fpgt-rfq-remove-item {
	width: 28px !important;
	height: 28px !important;
	min-width: 28px !important;
	max-width: 28px !important;
	min-height: 28px !important;
	max-height: 28px !important;
	padding: 0 !important;
	margin: 0 !important;
	border: none !important;
	border-radius: 50% !important;
	background: transparent !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	flex: 0 0 28px !important;
	font-size: 20px !important;
	line-height: 1 !important;
	font-weight: 400 !important;
	color: #333;
	box-sizing: border-box !important;
	appearance: none;
	-webkit-appearance: none;
}

.bp-fpgt-rfq-drawer .bp-fpgt-rfq-remove-item:hover {
	background: #f2f2f2 !important;
	color: #000;
}

/* Empty State */

.bp-fpgt-rfq-empty {
	padding: 22px;
	background: #f8f8f8;
	border-radius: 10px;
	text-align: center;
}

.bp-fpgt-rfq-empty p {
	margin: 0 0 0px;
}

.bp-fpgt-rfq-page-empty {
	padding: 34px 24px;
	border-radius: 14px;
}

.bp-fpgt-rfq-page-empty h3 {
	margin: 0 0 8px;
	font-size: 20px;
	line-height: 1.3;
}

.bp-fpgt-rfq-page-empty p {
	margin: 0 0 18px;
	color: #666;
}

/* RFQ Page Base */

.bp-fpgt-rfq-cart-page {
	margin: 24px 0;
}

.bp-fpgt-rfq-cart-page h2 {
	margin-bottom: 20px;
}

.bp-fpgt-rfq-form-area {
	margin-top: 24px;
}

.bp-fpgt-rfq-dev-notice {
	padding: 16px;
	border-radius: 10px;
	background: #fff8e5;
	border: 1px solid #f0d48a;
	color: #5f4100;
}

/* RFQ Page Two Column Layout */

.bp-fpgt-rfq-hp-wrap {
	position: absolute !important;
	left: -99999px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.bp-fpgt-rfq-two-column-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 28px;
	align-items: flex-start;
}

.bp-fpgt-rfq-left-column,
.bp-fpgt-rfq-right-column {
	min-width: 0;
}

.bp-fpgt-rfq-form-card {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 12px;
	padding: 24px;
}

.bp-fpgt-rfq-form-card h3 {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 20px;
	line-height: 1.3;
}

.bp-fpgt-rfq-form-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}

.bp-fpgt-rfq-field {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.bp-fpgt-rfq-field label {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	margin: 0;
}

.bp-fpgt-rfq-field label span,
.bp-fpgt-rfq-terms-label span span {
	color: #c62828;
}

.bp-fpgt-rfq-field input,
.bp-fpgt-rfq-field select,
.bp-fpgt-rfq-field textarea {
	width: 100%;
	min-height: 44px;
	border-radius: 6px;
}

.bp-fpgt-rfq-field textarea {
	min-height: 44px;
}

.bp-fpgt-rfq-radio-group {
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
	min-height: 44px;
}

.bp-fpgt-rfq-radio-group label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
	margin: 0;
	cursor: pointer;
}

.bp-fpgt-rfq-radio-group input[type="radio"] {
	width: auto;
	min-height: auto;
	margin: 0;
}

/* Right Column */

.bp-fpgt-rfq-products-card {
	position: sticky;
	top: 24px;
}

.bp-fpgt-rfq-right-column .bp-fpgt-rfq-cart-items {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 0;
}

.bp-fpgt-rfq-right-column .bp-fpgt-rfq-cart-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto 34px;
	gap: 12px;
	align-items: center;
	padding: 12px;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	background: #fff;
}

.bp-fpgt-rfq-right-column .bp-fpgt-rfq-cart-product {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	min-width: 0;
}

.bp-fpgt-rfq-right-column .bp-fpgt-rfq-cart-image img {
	width: 58px;
	height: 58px;
	border-radius: 8px;
	object-fit: cover;
}

.bp-fpgt-rfq-right-column .bp-fpgt-rfq-cart-info {
	min-width: 0;
}

.bp-fpgt-rfq-right-column .bp-fpgt-rfq-cart-title {
	display: block;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.bp-fpgt-rfq-right-column .bp-fpgt-rfq-sku,
.bp-fpgt-rfq-right-column .bp-fpgt-rfq-variation,
.bp-fpgt-rfq-right-column .bp-fpgt-rfq-price {
	font-size: 11px;
	line-height: 1.35;
	margin-top: 3px;
	color: #777;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.bp-fpgt-rfq-right-column .bp-fpgt-rfq-cart-quantity {
	padding-left: 0;
}

.bp-fpgt-rfq-right-column .bp-fpgt-rfq-cart-quantity label {
	display: flex;
	align-items: center;
	gap: 7px;
	margin: 0;
}

.bp-fpgt-rfq-right-column .bp-fpgt-rfq-cart-quantity label span {
	font-size: 12px;
	font-weight: 600;
	margin: 0;
	white-space: nowrap;
}

.bp-fpgt-rfq-right-column .bp-fpgt-rfq-page-qty {
	width: 64px;
	max-width: 64px;
	min-height: 34px;
	height: 34px;
	text-align: center;
	padding: 4px 6px;
}

.bp-fpgt-rfq-right-column .bp-fpgt-rfq-cart-remove {
	padding-left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bp-fpgt-rfq-right-column .bp-fpgt-rfq-remove-icon {
	width: 32px;
	height: 32px;
	min-width: 32px;
	min-height: 32px;
	border: 1px solid #e1e1e1;
	border-radius: 50%;
	background: #fff;
	color: #333;
	font-size: 20px;
	line-height: 1;
	font-weight: 400;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s ease;
}

.bp-fpgt-rfq-right-column .bp-fpgt-rfq-remove-icon:hover {
	background: #f5f5f5;
	border-color: #cfcfcf;
	color: #000;
}

/* Terms + Submit */

.bp-fpgt-rfq-terms-box {
	margin-top: 22px;
	padding: 16px;
	border: 1px solid #ececec;
	border-radius: 10px;
	background: #fafafa;
}

.bp-fpgt-rfq-terms-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	line-height: 1.5;
	margin: 0;
	cursor: pointer;
}

.bp-fpgt-rfq-terms-label input[type="checkbox"] {
	margin-top: 4px;
	flex: 0 0 auto;
}

.bp-fpgt-rfq-submit-wrap {
	margin-top: 20px;
}

.bp-fpgt-rfq-submit-button {
	width: 100%;
	min-height: 46px;
	text-align: center;
	justify-content: center;
}

.bp-fpgt-rfq-form.is-submitting {
	opacity: 0.85;
	pointer-events: none;
}

.bp-fpgt-rfq-submit-button:disabled {
	opacity: 0.65;
	cursor: not-allowed;
}

/* Toast Notice */

.bp-fpgt-rfq-notice {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 100000;
	padding: 12px 16px;
	border-radius: 8px;
	background: #111;
	color: #fff;
	font-size: 14px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.bp-fpgt-rfq-notice.is-error {
	background: #b3261e;
}

/* Responsive */

@media (max-width: 991px) {
	.bp-fpgt-rfq-two-column-layout {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.bp-fpgt-rfq-products-card {
		position: static;
		top: auto;
	}
}

@media (max-width: 767px) {
	.bp-fpgt-rfq-drawer {
		width: min(300px, 80vw);
		max-width: 80vw;
	}

	.bp-fpgt-rfq-form-card {
		padding: 18px;
	}

	.bp-fpgt-rfq-radio-group {
		gap: 18px;
	}

	.bp-fpgt-rfq-right-column .bp-fpgt-rfq-cart-row {
		grid-template-columns: minmax(0, 1fr) 34px;
		grid-template-areas:
			"product remove"
			"quantity quantity";
		gap: 10px 12px;
		align-items: start;
	}

	.bp-fpgt-rfq-right-column .bp-fpgt-rfq-cart-product {
		grid-area: product;
	}

	.bp-fpgt-rfq-right-column .bp-fpgt-rfq-cart-quantity {
		grid-area: quantity;
	}

	.bp-fpgt-rfq-right-column .bp-fpgt-rfq-cart-remove {
		grid-area: remove;
		justify-content: flex-end;
	}

	.bp-fpgt-rfq-right-column .bp-fpgt-rfq-cart-quantity label {
		justify-content: flex-start;
	}

	.bp-fpgt-rfq-right-column .bp-fpgt-rfq-cart-title,
	.bp-fpgt-rfq-right-column .bp-fpgt-rfq-sku,
	.bp-fpgt-rfq-right-column .bp-fpgt-rfq-variation,
	.bp-fpgt-rfq-right-column .bp-fpgt-rfq-price {
		white-space: normal;
	}
}


/* RFQ drawer viewport + scroll safety */

.bp-fpgt-rfq-drawer {
	height: 100vh;
	height: 100dvh;
}

.bp-fpgt-rfq-drawer-inner {
	height: 100%;
	min-height: 0;
	display: flex;
	flex-direction: column;
}

.bp-fpgt-rfq-drawer-body {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.bp-fpgt-rfq-drawer-footer {
	flex: 0 0 auto;
	padding-bottom: max(18px, env(safe-area-inset-bottom));
}

@media (max-width: 767px) {
	.bp-fpgt-rfq-drawer {
		height: 100vh;
		height: 100dvh;
	}

	.bp-fpgt-rfq-drawer-footer {
		padding-bottom: max(22px, calc(env(safe-area-inset-bottom) + 16px));
	}
}

/* Respect WordPress admin bar for logged-in admins */

body.admin-bar .bp-fpgt-rfq-drawer {
	top: 32px;
	height: calc(100vh - 32px);
	height: calc(100dvh - 32px);
}

body.admin-bar .bp-fpgt-rfq-drawer-overlay {
	top: 32px;
}

@media (max-width: 782px) {
	body.admin-bar .bp-fpgt-rfq-drawer {
		top: 46px;
		height: calc(100vh - 46px);
		height: calc(100dvh - 46px);
	}

	body.admin-bar .bp-fpgt-rfq-drawer-overlay {
		top: 46px;
	}
}


/* RFQ Success Confirmation Card */

.bp-fpgt-rfq-success-card {
	max-width: 820px;
	margin: 32px auto 0;
	padding: 46px 42px;
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 14px;
	box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
	text-align: center;
}

.bp-fpgt-rfq-success-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 24px;
	border: 3px solid #2e7d32;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #2e7d32;
}

.bp-fpgt-rfq-success-icon svg {
	width: 34px;
	height: 34px;
	stroke: currentColor;
	stroke-width: 2.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.bp-fpgt-rfq-success-card h3 {
	margin: 0 0 14px;
	font-size: 26px;
	line-height: 1.3;
	font-weight: 700;
	color: #222;
}

.bp-fpgt-rfq-success-message {
	max-width: 600px;
	margin: 0 auto 28px;
	font-size: 16px;
	line-height: 1.65;
	color: #555;
}

.bp-fpgt-rfq-success-message p {
	margin: 0 0 10px;
}

.bp-fpgt-rfq-success-message p:last-child {
	margin-bottom: 0;
}

.bp-fpgt-rfq-reference-box {
	max-width: 460px;
	margin: 0 auto 28px;
	padding: 24px;
	border: 1px solid #e1e1e1;
	border-radius: 10px;
	background: #fbfbfb;
}

.bp-fpgt-rfq-reference-icon {
	width: 34px;
	height: 34px;
	margin: 0 auto 12px;
	border-radius: 50%;
	background: #eef5ee;
	color: #555;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.bp-fpgt-rfq-reference-icon svg {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.bp-fpgt-rfq-reference-label {
	margin: 0 0 8px;
	font-size: 14px;
	line-height: 1.3;
	color: #555;
	font-weight: 600;
}

.bp-fpgt-rfq-reference-id {
	margin: 0 0 18px;
	font-size: 28px;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: 0.4px;
	color: #222;
	word-break: break-word;
}

.bp-fpgt-rfq-copy-reference {
	min-height: 42px;
	padding: 10px 16px;
	border: 1px solid #d9d9d9;
	border-radius: 6px;
	background: #fff;
	color: #222;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	cursor: pointer;
	text-transform: none !important;
	letter-spacing: normal !important;
	transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.bp-fpgt-rfq-copy-reference:hover {
	background: #f5f5f5;
	border-color: #cfcfcf;
}

.bp-fpgt-rfq-copy-reference.is-copied {
	background: #eef5ee;
	border-color: #c5dec5;
}

.bp-fpgt-rfq-copy-icon {
	display: inline-flex;
	width: 18px;
	height: 18px;
}

.bp-fpgt-rfq-copy-icon svg {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.bp-fpgt-rfq-success-actions {
	margin-top: 4px;
}

.bp-fpgt-rfq-success-browse {
	min-width: 180px;
	text-align: center;
	justify-content: center;
}

.bp-fpgt-rfq-success-support {
	max-width: 520px;
	margin: 32px auto 0;
	padding-top: 22px;
	border-top: 1px solid #eeeeee;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	font-size: 14px;
	line-height: 1.4;
	color: #555;
}

.bp-fpgt-rfq-success-support a {
	color: #0057FF;
	font-weight: 600;
	text-decoration: none;
}

.bp-fpgt-rfq-success-support a:hover {
	color: #003DB3;
}

.bp-fpgt-rfq-success-support-icon {
	font-size: 16px;
	line-height: 1;
}

@media (max-width: 767px) {
	.bp-fpgt-rfq-success-card {
		margin-top: 22px;
		padding: 32px 20px;
	}

	.bp-fpgt-rfq-success-icon {
		width: 56px;
		height: 56px;
		margin-bottom: 20px;
	}

	.bp-fpgt-rfq-success-icon svg {
		width: 30px;
		height: 30px;
	}

	.bp-fpgt-rfq-success-card h3 {
		font-size: 22px;
	}

	.bp-fpgt-rfq-success-message {
		font-size: 15px;
	}

	.bp-fpgt-rfq-reference-box {
		padding: 20px 16px;
	}

	.bp-fpgt-rfq-reference-id {
		font-size: 22px;
	}

	.bp-fpgt-rfq-success-support {
		flex-wrap: wrap;
	}
}


.bp-fpgt-rfq-drawer-quote-button{
	background-color:#0057FF !important;
	color:#fff !important;
}
.bp-fpgt-rfq-drawer-quote-button:hover{
	background-color:#003DB3 !important;
}
.bp-fpgt-rfq-submit-button{
	background-color:#0057FF !important;
	color:#fff !important;
}
.bp-fpgt-rfq-submit-button:hover{
	background-color:#003DB3 !important;
}
.bp-fpgt-rfq-empty-cart-button{
	background-color:#0057FF !important;
	color:#fff !important;
}
.bp-fpgt-rfq-empty-cart-button:hover{
	background-color:#003DB3 !important;
}
.bp-fpgt-rfq-success-browse{
	background-color:#0057FF !important;
	color:#fff !important;
}
.bp-fpgt-rfq-success-browse:hover{
	background-color:#003DB3 !important;
}