.woocommerce-cart .woocommerce-shipping-methods {
	display: grid;
	gap: 10px;
	margin: 0;
	list-style: none;
}

.woocommerce-cart .woocommerce-shipping-methods li {
	margin: 0;
	padding: 0;
}

.woocommerce-cart .woocommerce-shipping-methods input.shipping_method {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.woocommerce-cart .woocommerce-shipping-methods label {
	display: grid;
	grid-template-columns: 20px minmax(0, 1fr) max-content;
	gap: 10px;
	align-items: center;
	margin: 0;
	padding: 12px;
	border: 1px solid #dedede;
	border-radius: 4px;
	background: #fff;
	color: #0d1720;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: border-color .2s ease, background .2s ease;
}

.woocommerce-cart .woocommerce-shipping-methods label > :not(.amount):not(.woocommerce-Price-amount) {
	min-width: 0;
}

.woocommerce-cart .woocommerce-shipping-methods label::before {
	content: "";
	width: 18px;
	height: 18px;
	border: 2px solid #cdd2d7;
	border-radius: 50%;
	background: #fff;
	box-shadow: inset 0 0 0 4px #fff;
}

.woocommerce-cart .woocommerce-shipping-methods input.shipping_method:checked + label {
	border-color: #18b7cc;
	background: #f4fcfd;
}

.woocommerce-cart .woocommerce-shipping-methods input.shipping_method:checked + label::before {
	border-color: #18b7cc;
	background: #18b7cc;
}

.woocommerce-cart .woocommerce-shipping-methods .amount {
	grid-column: 3;
	justify-self: end;
	color: #08aeca;
	font-weight: 700;
	white-space: nowrap;
}

.woocommerce-cart .woocommerce-shipping-methods .woocommerce-Price-currencySymbol {
	display: inline;
	white-space: nowrap;
}

@media (max-width: 480px) {
	.woocommerce-cart .woocommerce-shipping-methods label {
		grid-template-columns: 20px minmax(0, 1fr);
	}

	.woocommerce-cart .woocommerce-shipping-methods .amount {
		grid-column: 2;
		justify-self: start;
	}
}
