$enable-important-utilities: false;

$utilities: map-get-multiple($utilities, (
  "rounded",
  "rounded-top",
  "rounded-end",
  "rounded-bottom",
  "rounded-start",
));

$utilities: map-merge($utilities, (
  "circle": (
    property: border-radius,
    class: circle,
    values: (
      null: 100%
    )
  ),
  "rounded": (
    property: border-radius,
    class: rd,
    values: (
      0: 0,
      null: var(--#{$prefix}border-radius),
      1: var(--#{$prefix}border-radius-sm),
      2: var(--#{$prefix}border-radius-lg),
      3: var(--#{$prefix}border-radius-xl),
    )
  ),
  "rounded-top": (
    property: border-top-left-radius border-top-right-radius,
    class: rd-t,
    values: (
      null: var(--#{$prefix}border-radius) !important,
      0: 0 !important,
    )
  ),
  "rounded-end": (
    property: border-top-right-radius border-bottom-right-radius,
    class: rd-r,
    values: (
      null: var(--#{$prefix}border-radius) !important,
      0: 0 !important,
    )
  ),
  "rounded-bottom": (
    property: border-bottom-right-radius border-bottom-left-radius,
    class: rd-b,
    values: (
      null: var(--#{$prefix}border-radius) !important,
      0: 0 !important,
    )
  ),
  "rounded-start": (
    property: border-bottom-left-radius border-top-left-radius,
    class: rd-l,
    values: (
      null: var(--#{$prefix}border-radius) !important,
      0: 0 !important,
    )
  )
)
);

@import "bootstrap/utilities/api";

