@keyframes freight_shipping_quote_fadein {
	0% {
		opacity: 0.3
	}

	50% {
		opacity: 0.9
	}

	100% {
		opacity: 0.3
	}
}

ul.freight-shipping-quote-cost-variations:not([data-v-app]) {
	display: none;
}

ul.freight-shipping-quote-cost-variations {
	margin-top: 5px;
	font-size: 14px;
	line-height: 1.2;
	list-style: none !important;
	margin-inline: 0 !important;
	padding-inline: 0 !important;
}

ul.freight-shipping-quote-cost-variations>li {
	border-color: #ccc;
	position: relative;
	padding: 5px 8px !important;
	border-width: 1px !important;
	border-style: solid !important;
	list-style: none !important;
	margin-block: 0 -1px !important;
	padding-inline-end: 30px !important;
	cursor: pointer;
	transition: all 200ms;
}

ul.freight-shipping-quote-cost-variations>li:hover,
ul.freight-shipping-quote-cost-variations>li.selected {
	background-color: #f9f7f7;
}

ul.freight-shipping-quote-cost-variations>li.selected:after {
	--size: 16px;
	content: "";
	top: 50%;
	right: 7px;
	width: var(--size);
	position: absolute;
	aspect-ratio: 1 /1;
	margin-top: calc(-1 * (var(--size) / 2));
	background: url(icon-circle-check.svg) no-repeat center
}

ul.freight-shipping-quote-cost-variations.in-progress {
	animation: freight_shipping_quote_fadein 1100ms infinite
}

.freight-shipping-quote-rate-description .additional-costs {
	font-size: 85%;
	margin-top: -4px;
	font-style: italic;
}

.wc-block-checkout__shipping-option .freight-shipping-quote-rate-description .additional-costs {
	margin-top: 3px;
}