// =============================================================================
// LAYOUT (CSS)
// =============================================================================


// Bigcommerce Utility Classes
// -----------------------------------------------------------------------------
//
// 1. If set to false, there is no outputted CSS for this component.
// Adapted from SUIT CSS: https://github.com/suitcss/utils-layout/
//
// -----------------------------------------------------------------------------
// scss-lint:disable ImportantRule

@if $exportCSS--layoutUtilities { // 1

    .u-floatLeft {
        float: left !important;
    }

    .u-floatRight {
        float: right !important;
    }

    .u-clearFloats {
        @include u-clearFloats;
    }
}

