.shipping.shipping-options {
	display: flex;
	justify-content: flex-end; 
}

.woocommerce-checkout ul#shipping_method li {
    line-height: 27px;
    font-size: 0.9em;
}

.woocommerce-cart .shipping-container {
    display: flex;
    justify-content: flex-start;
}

.woocommerce-cart .shipping.shipping-options {
    flex-direction: column;
    width: 100%;
    padding-top: 0.3em;
    padding-left: 2em;
}

.woocommerce-cart ul#shipping_method {
    /* width: 100% !important; */
}


/* 1. Make the entire label text bold and dark when its radio button is checked */
#shipping_method input.shipping_method:checked + label {
  font-weight: bold;
  color: #00b674;
}

/* 2. Reset the price and currency symbol back to their normal weight and color */
#shipping_method input.shipping_method:checked + label .woocommerce-Price-amount,
#shipping_method input.shipping_method:checked + label .woocommerce-Price-amount * {
  font-weight: 400; /* Use 'normal' or '400' to reset boldness */
  color: #111;     /* A standard price color */
}

#shipping_method label {
	color: #666;
}