.fcf-calculator {
	max-width: 1040px;
	margin: 0 auto;
	padding: 24px;
	border: 1px solid #e7e7e7;
	border-radius: 16px;
	background: #fff;
	box-sizing: border-box;
}

.fcf-header,
.fcf-results-head {
	margin-bottom: 20px;
}

.fcf-title {
	margin: 0;
	font-size: 24px;
	line-height: 1.2;
	font-weight: 700;
	color: #1f2937;
}

.fcf-form {
	width: 100%;
}

/*Grid primeira seção campos*/
/* .fcf-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
} */

.fcf-field {
	display: flex;
	flex-direction: column;
}

.fcf-field label {
	margin-bottom: 6px;
	font-size: 14px;
	font-weight: 600;
	color: #111827;
}

.fcf-field input {
	width: 100%;
	min-height: 46px;
	padding: 12px 14px;
	border: 1px solid #e0e0e0!important;
	border-radius: 8px!important;
	font-size: 15px;
	box-sizing: border-box;
}

.fcf-field input:focus {
	outline: none;
	border-color: #7B3FF3!important;
	/* box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12); */
}

.fcf-actions {
	margin-top: 22px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
}

.fcf-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 22px;
	border-radius: 10px;
	border: 1px solid transparent;
	cursor: pointer;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
}

.fcf-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.fcf-btn-primary {
	background-color: #7B3FF3!important;
	color: #fff !important;
    border: none !important;
	transition: all .3s ease-in-out;
}

.fcf-btn-primary:hover {
	background-color: #572dAD!important;
}

.fcf-btn-secondary {
	background: #fff;
	color: #111827;
	border-color: #d1d5db;
}

.fcf-feedback {
	margin-top: 14px;
}

.fcf-feedback-error {
	padding: 14px 16px;
	border-radius: 10px;
	background: #fef2f2;
	color: #991b1b;
	border: 1px solid #fecaca;
}

.fcf-error-list {
	margin: 8px 0 0;
	padding-left: 18px;
}

.fcf-loading {
	padding: 14px 16px;
	border-radius: 10px;
	background: #eff6ff;
	color: #1d4ed8;
	border: 1px solid #bfdbfe;
}

.fcf-empty-state {
	padding: 18px;
	border: 1px dashed #d1d5db;
	border-radius: 12px;
	background: #f9fafb;
}

.fcf-services-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.fcf-services-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.fcf-service-card {
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: 18px;
	background: #fff;
}

.fcf-service-card.is-error {
	border-color: #fecaca;
	background: #fff8f8;
}

.fcf-service-card-grid {
    display: grid;
    grid-template-columns: 160px minmax(118px, 1.5fr) 155px 158px 245px;
    align-items: center;
    column-gap: 27px;
}

.fcf-col {
	min-width: 0;
}

.fcf-col-carrier {
	display: flex;
	align-items: center;
}

.fcf-carrier-wrap {
	display: flex;
	align-items: center;
	min-height: 36px;
}

.fcf-carrier-logo-wrap {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 120px;
	min-height: 36px;
}

.fcf-carrier-logo {
	display: block;
	max-width: 110px;
	max-height: 34px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.fcf-carrier-fallback {
	font-size: 15px;
	font-weight: 600;
	color: #111827;
}

.fcf-col-service {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.fcf-service-title {
	font-size: 15px;
	line-height: 1.25;
	font-weight: 400;
	color: #1f2937;
}

.fcf-service-subtitle {
	font-size: 10px;
	line-height: 12px;
	color: #9ca3af;
}

.fcf-service-message {
	margin-top: 4px;
	font-size: 13px;
	line-height: 1.3;
	color: #b42318;
}

.fcf-col-delivery {
	display: flex;
	align-items: center;
}

.fcf-delivery-time {
	font-size: 15px;
	line-height: 1.15;
	color: #1f2937;
	max-width: 80px;
}

.fcf-col-price {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
}

.fcf-service-price-original {
	font-size: 12px;
	line-height: 1;
	color: #6b7280;
	text-decoration: line-through;
}

.fcf-service-price-current {
	font-size: 16px;
	line-height: 1.15;
	font-weight: 700;
	color: #111827;
}

.fcf-service-price.is-muted {
	font-size: 14px;
	font-weight: 600;
	color: #9ca3af;
}

.fcf-col-action {
	display: flex;
	justify-content: flex-end;
}

.fcf-btn-select {
	min-width: 162px;
	min-height: 50px;
	padding: 12px 24px;
	border-radius: 4px;
	background: #f9f5ff;
	color: #7b3ff3;
	font-weight: 500;
	text-decoration: none;
	box-shadow: none;
	transition: all .4s ease-in-out;
}


.fcf-btn-select:hover {
	background: #7b3ff3;
	color: #fff;
}

.fcf-price-badge-row {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: nowrap;
}

.fcf-price-stack {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
}

.fcf-service-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 13px;
	line-height: 1;
	font-weight: 500;
	white-space: nowrap;
}

.fcf-service-badge-turbo {
	background-color: #f9f5ff;
    color: #572dad;
	font-weight: 500;
    font-size: 12px !important;
}

.fcf-service-card-skeleton {
	overflow: hidden;
}

.fcf-skeleton {
	position: relative;
	overflow: hidden;
	background: #e5e7eb;
	border-radius: 999px;
}

.fcf-skeleton::after {
	content: '';
	position: absolute;
	inset: 0;
	transform: translateX(-100%);
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.65) 50%,
		rgba(255, 255, 255, 0) 100%
	);
	animation: fcf-skeleton-shimmer 1.4s infinite;
}

.fcf-skeleton-logo {
	width: 110px;
	height: 34px;
	border-radius: 8px;
}

.fcf-skeleton-text {
	height: 12px;
}

.fcf-skeleton-service-title {
	width: 160px;
	height: 14px;
	margin-bottom: 8px;
}

.fcf-skeleton-service-subtitle {
	width: 110px;
	height: 12px;
}

.fcf-skeleton-delivery {
	width: 80px;
	height: 14px;
}

.fcf-skeleton-price {
	width: 90px;
	height: 18px;
}

.fcf-skeleton-button {
	width: 162px;
	height: 50px;
	border-radius: 4px;
}

@keyframes fcf-skeleton-shimmer {
	100% {
		transform: translateX(100%);
	}
}

@media (max-width: 991px) {
	.fcf-service-card-grid {
		grid-template-columns: 120px 1.4fr 90px 130px 110px 140px;
		column-gap: 14px;
	}

	.fcf-btn-select {
		min-width: 140px;
	}
}

@media (max-width: 767px) {
	.fcf-grid {
		grid-template-columns: 1fr;
	}

	.fcf-service-card-grid {
		grid-template-columns: 1fr;
		row-gap: 12px;
	}

	.fcf-col-price {
		margin: 0 auto;
	}

	.fcf-service-price-current {
		color: #23b24b!important;
	}

	.fcf-service-subtitle {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.fcf-service-title {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.fcf-col-carrier {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.fcf-btn-select {
		width: 100%;
	}

	.fcf-col-delivery {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.fcf-col-action {
		justify-content: flex-start;
	}

	.fcf-carrier-logo-wrap {
		width: auto;
	}

	.fcf-skeleton-button {
		width: 140px;
	}
}

.fcf-field-cep {
	position: relative;
}

.fcf-cep-overlay {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	right: auto;
	z-index: 30;
	width: max-content;
	min-width: 100%;
	max-width: min(720px, calc(100vw - 32px));
	background: #fff;
	border: 1px solid #d1d5db;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(17, 24, 39, 0.12);
	padding: 6px;
	box-sizing: border-box;
	overflow-x: auto;
}

.fcf-cep-overlay-item {
	display: block;
	width: auto;
	min-width: 100%;
	padding: 10px 12px;
	border: none !important;
	background-color: transparent !important;
	text-align: left!important;
	border-radius: 8px;
	cursor: pointer;
	font-size: 14px !important;
	line-height: 1.35;
	color: #111827 !important;
	font-weight: 500 !important;
	white-space: nowrap;
	box-sizing: border-box;
}

.fcf-cep-overlay-item:hover,
.fcf-cep-overlay-item:focus {
	background-color: transparent!important;
	outline: none;
	color: #7B3FF3!important;
}

.fcf-cep-overlay-loading,
.fcf-cep-overlay-empty,
.fcf-cep-overlay-error {
	padding: 10px 12px;
	font-size: 14px;
	line-height: 1.35;
}

.fcf-cep-overlay-loading {
	color: #1d4ed8;
}

.fcf-cep-overlay-empty {
	color: #6b7280;
}

.fcf-cep-overlay-error {
	color: #b42318;
}

.fcf-results-disclaimer {
	margin-top: 16px;
	padding: 14px 16px;
	border-radius: 10px;
	background: #f9f5ff;
	border: 1px solid #f0eafa;
	color: #344054;
	font-size: 14px;
	line-height: 1.5;
	display: flex;
    justify-content: center;
    vertical-align: middle;


	&::before {
		content: '';
		background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><g clip-path="url(%23clip0_2749_2001)"><path fill-rule="evenodd" clip-rule="evenodd" d="M16 8C16 10.1217 15.1571 12.1566 13.6569 13.6569C12.1566 15.1571 10.1217 16 8 16C5.87827 16 3.84344 15.1571 2.34315 13.6569C0.842855 12.1566 0 10.1217 0 8C0 5.87827 0.842855 3.84344 2.34315 2.34315C3.84344 0.842855 5.87827 0 8 0C10.1217 0 12.1566 0.842855 13.6569 2.34315C15.1571 3.84344 16 5.87827 16 8ZM8 4C7.87361 4.00007 7.74863 4.02662 7.63312 4.07793C7.51761 4.12924 7.41413 4.20418 7.32934 4.29791C7.24456 4.39165 7.18035 4.5021 7.14084 4.62217C7.10134 4.74223 7.08743 4.86923 7.1 4.995L7.45 8.502C7.46176 8.63977 7.5248 8.86164 7.62664 8.95516C7.72849 9.00705 7.86173 9.00705 8 9.00705C8.13827 9.00705 8.27151 8.95516 8.37336 8.86164C8.4752 8.76811 8.53824 8.63977 8.55 8.502L8.9 4.995C8.91257 4.86923 8.89866 4.74223 8.85915 4.62217C8.81965 4.5021 8.75544 4.39165 8.67066 4.29791C8.58587 4.20418 8.48239 4.12924 8.36688 4.07793C8.25137 4.02662 8.12639 4.00007 8 4ZM8.002 10C7.73678 10 7.48243 10.1054 7.29489 10.2929C7.10736 10.4804 7.002 10.7348 7.002 11C7.002 11.2652 7.10736 11.5196 7.29489 11.7071C7.48243 11.8946 7.73678 12 8.002 12C8.26722 12 8.52157 11.8946 8.70911 11.7071C8.89664 11.5196 9.002 11.2652 9.002 11C9.002 10.7348 8.89664 10.4804 8.70911 10.2929C8.52157 10.1054 8.26722 10 8.002 10Z" fill="%237B3FF3"/></g><defs><clipPath id="clip0_2749_2001"><rect width="16" height="16" fill="white"/></clipPath></defs></svg>');
		margin-right: 8px;
        width: 20px;
        height: 16px;
        display: inline-flex;
        vertical-align: middle;
        justify-content: center;
        align-items: center;
		margin-top: 4px;
        background-repeat: no-repeat;
	}
}

.fcf-results-warning-disclaimer {
	margin-top: 16px;
	padding: 14px 16px;
	color: #344054;
	font-size: 14px;
	line-height: 1.5;
	display: flex;
    justify-content: center;
    vertical-align: middle;


	&::before {
		content: '';
		background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M7 14C10.866 14 14 10.866 14 7C14 3.13401 10.866 0 7 0C3.13401 0 0 3.13401 0 7C0 10.866 3.13401 14 7 14ZM7 3C7.41421 3 7.75 3.33579 7.75 3.75V6.75C7.75 7.16421 7.41421 7.5 7 7.5C6.58579 7.5 6.25 7.16421 6.25 6.75V3.75C6.25 3.33579 6.58579 3 7 3ZM7 11C7.55228 11 8 10.5523 8 10C8 9.44771 7.55228 9 7 9C6.44772 9 6 9.44771 6 10C6 10.5523 6.44772 11 7 11Z" fill="%23F79009"/></svg>');
		margin-right: 8px;
        width: 17px;
        height: 14px;
        display: inline-flex;
        vertical-align: middle;
        justify-content: center;
        align-items: center;
		margin-top: 4px;
        background-repeat: no-repeat;
	}
}

/* BUG FIX taxed discount result shipping list */
[data-discount-active="0"] .fcf-service-price-original {
	display: none;
}

.fcf-form-top {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 180px minmax(0, 1fr);
	align-items: end;
	gap: 24px;
	margin-bottom: 24px;
}

.fcf-form-bottom {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 16px;
}

.fcf-field-top label,
.fcf-form-bottom .fcf-field label {
	font-size: 14px;
	font-weight: 500;
	color: #101828;
	margin-bottom: 8px;
}

.fcf-route-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 6px;
}

.fcf-route-icon svg {
	display: block;
	max-width: 117px;
	width: 100%;
	height: auto;
}

.fcf-input-group {
	display: flex;
	align-items: stretch;
	width: 100%;
}

.fcf-input-group input {
	border-radius: 8px 0 0 8px!important;
	border-right: 0!important;
	min-height: 46px;
}

.fcf-input-group .fcf-input-suffix,
.fcf-input-group .fcf-input-prefix {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 60px;
	padding: 0 14px;
	border: 1px solid #d1d5db;
	background: #f2f4f7;
	color: #475467;
	font-size: 15px;
	font-weight: 400;
	box-sizing: border-box;
}

.fcf-input-group .fcf-input-suffix {
	border-radius: 0 8px 8px 0;
}

.fcf-input-group .fcf-input-prefix {
	border-radius: 8px 0 0 8px;
	border-right: 0;
}

.fcf-input-group .fcf-input-prefix + input {
	border-radius: 0 8px 8px 0!important;
}

.fcf-field-cep input {
	min-height: 48px;
}

@media (max-width: 1024px) {
	.fcf-form-top {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.fcf-route-icon {
		order: 2;
		padding-bottom: 0;
	}

	.fcf-form-bottom {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.fcf-form-bottom {
		grid-template-columns: 1fr;
	}

	.fcf-input-group .fcf-input-suffix,
	.fcf-input-group .fcf-input-prefix {
		min-width: 56px;
	}

	.fcf-form .fcf-btn-primary {
		width: 100%;
	}

	.fcf-results-disclaimer::before {
		width: 90px;
		margin-right: 6px;
	}

	.fcf-results-warning-disclaimer::before {
		width: 80px;
		margin-right: 8px;
	}
}

/* @media (max-width: 768px) {
	.fcf-grid {
		grid-template-columns: 1fr;
	}

	.fcf-service-main {
		flex-direction: column;
		align-items: flex-start;
	}

	.fcf-service-meta {
		gap: 14px;
	}
} */

/* .fcf-results-table {
	width: 100%;
	border: 1px solid #dfe3eb;
	border-radius: 6px;
	overflow: hidden;
	background: #fff;
}

.fcf-results-row {
	display: grid;
	grid-template-columns: 160px minmax(220px, 1.5fr) 110px 160px 180px;
	align-items: center;
	column-gap: 18px;
	padding: 22px 18px;
	border-bottom: 1px solid #e7e7e7;
}

.fcf-results-row:last-child {
	border-bottom: 0;
}

.fcf-results-row-header {
	background: #f2f4f7;
	padding-top: 12px;
	padding-bottom: 12px;
	font-size: 14px;
	font-weight: 500;
	color: #374151;
}

.fcf-results-row-header .fcf-col-action {
	visibility: hidden;
}

.fcf-col {
	min-width: 0;
}

.fcf-col-carrier {
	display: flex;
	align-items: center;
}

.fcf-carrier-wrap {
	display: flex;
	align-items: center;
	min-height: 36px;
}

.fcf-carrier-logo-wrap {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 120px;
	min-height: 36px;
}

.fcf-carrier-logo {
	display: block;
	max-width: 110px;
	max-height: 34px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.fcf-col-service {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.fcf-service-title {
	font-size: 15px;
	line-height: 1.25;
	font-weight: 400;
	color: #1f2937;
}

.fcf-service-subtitle {
	font-size: 13px;
	line-height: 1.2;
	color: #9ca3af;
}

.fcf-service-message {
	margin-top: 4px;
	font-size: 13px;
	line-height: 1.3;
	color: #b42318;
}

.fcf-col-delivery {
	display: flex;
	align-items: center;
}

.fcf-delivery-time {
	font-size: 15px;
	line-height: 1.15;
	color: #1f2937;
	max-width: 80px;
}

.fcf-col-price {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
}

.fcf-service-price-original {
	font-size: 12px;
	line-height: 1;
	color: #6b7280;
	text-decoration: line-through;
}

.fcf-service-price-current {
	font-size: 16px;
	line-height: 1.15;
	font-weight: 700;
	color: #111827;
}

.fcf-service-price.is-muted {
	font-size: 14px;
	font-weight: 600;
	color: #9ca3af;
}

.fcf-col-action {
	display: flex;
	justify-content: flex-end;
}

.fcf-btn-select {
	min-width: 162px;
	min-height: 50px;
	padding: 12px 24px;
	border-radius: 4px;
	background: #f3ecf8;
	color: #8b2cf5;
	border: 1px solid #f3ecf8;
	font-weight: 500;
	text-decoration: none;
	box-shadow: none;
}

.fcf-btn-select:hover {
	background: #ede1f7;
	color: #7c1fe5;
}

.fcf-results-row.is-error {
	background: #fff8f8;
}

@media (max-width: 991px) {
	.fcf-results-row,
	.fcf-results-row-header {
		grid-template-columns: 120px 1.4fr 90px 130px 140px;
		column-gap: 14px;
		padding-left: 14px;
		padding-right: 14px;
	}

	.fcf-btn-select {
		min-width: 140px;
	}
}

@media (max-width: 767px) {
	.fcf-results-table {
		border: 0;
		background: transparent;
	}

	.fcf-results-row-header {
		display: none;
	}

	.fcf-results-row {
		grid-template-columns: 1fr;
		row-gap: 12px;
		padding: 16px;
		border: 1px solid #e7e7e7;
		border-radius: 10px;
		background: #fff;
		margin-bottom: 12px;
	}

	.fcf-col-action {
		justify-content: flex-start;
	}

	.fcf-carrier-logo-wrap {
		width: auto;
	}
} */