In your css you have added display none !important for shipping method.
.table-checkout-shipping-method tr.row:last-child {
display: none !important;
}
Replace above none to block
.table-checkout-shipping-method tr.row:last-child {
display: block !important;
}
Clear cache,