/* Start custom CSS for woocommerce-cart, class: .elementor-element-5be743a */#shipping_method > li:nth-child(1) > label:nth-child(2) > span:nth-child(1) > bdi:nth-child(1) > span:nth-child(1) {
  order: -1; /* Moves this element first */
}

/* Move the shipping method price to the extreme right */
#shipping_method > li:nth-child(1) > label:nth-child(2) > span:nth-child(1) {
  position: absolute;  /* Absolutely position it relative to its parent */
  right: 0;            /* Align to the right edge of its parent container */
  
  text-align: right;   /* Ensure content inside is aligned to the right */
  width: auto;         /* Let the width adjust based on content */
  padding-right: 28px; /* Optional: Adds some padding if needed to avoid content sticking to the edge */
}/* End custom CSS */