I'm currently working with Bootstrap 4 and have the following code. On the page, there is a right item positioned on the right side, while several items are located on the left side:
---------------------------------------------------------------------
| item 1 item 2 item 3 Right item |
---------------------------------------------------------------------
However, when the screen size shrinks, I want them to be arranged like this instead:
---------------------------------------------
| item 1 item 2 item 3 |
| Right item |
---------------------------------------------
Right now it's almost happening as expected, but rather than that layout, I end up with this:
---------------------------------------------
| item 1 item 2 item 3 |
| Right item |
---------------------------------------------
To see the issue in action, check out this fiddle: https://jsfiddle.net/gax5n8qa/3/
Any suggestions on how I can achieve the desired layout?