/**
 * Migrate Bootstrap vom 4 to 5
 *
 * Implement missing / changed CSS classes
 */

/**
 * RTL
 * float-right becomes float-end
 * float-left becomes float-start
 */
.float-right {
    float:right !important;
}
.float-left {
    float:right !important;
}
