From 581e0a01247f3b8c05285e4a092d5a8cf2851a1c Mon Sep 17 00:00:00 2001 From: Robin Malfait Date: Mon, 26 Apr 2021 18:54:52 +0200 Subject: [PATCH] WIP --- .../fixtures/tailwind-output-flagged.css | 10984 ++++++++-------- .../fixtures/tailwind-output-important.css | 10984 ++++++++-------- .../tailwind-output-no-color-opacity.css | 10984 ++++++++-------- __tests__/fixtures/tailwind-output.css | 10984 ++++++++-------- jit/corePlugins/accessibility.js | 25 - jit/corePlugins/alignContent.js | 22 - jit/corePlugins/alignItems.js | 19 - jit/corePlugins/animation.js | 39 - jit/corePlugins/appearance.js | 5 - jit/corePlugins/borderCollapse.js | 6 - jit/corePlugins/boxSizing.js | 6 - jit/corePlugins/clear.js | 8 - jit/corePlugins/container.js | 3 - jit/corePlugins/css/preflight.css | 240 - jit/corePlugins/cursor.js | 15 - jit/corePlugins/display.js | 1 - jit/corePlugins/divideStyle.js | 19 - jit/corePlugins/divideWidth.js | 49 - jit/corePlugins/flex.js | 15 - jit/corePlugins/flexDirection.js | 16 - jit/corePlugins/flexGrow.js | 15 - jit/corePlugins/flexShrink.js | 15 - jit/corePlugins/flexWrap.js | 13 - jit/corePlugins/float.js | 7 - jit/corePlugins/gap.js | 35 - jit/corePlugins/gridAutoColumns.js | 15 - jit/corePlugins/gridAutoFlow.js | 8 - jit/corePlugins/gridAutoRows.js | 15 - jit/corePlugins/gridColumn.js | 13 - jit/corePlugins/gridColumnEnd.js | 15 - jit/corePlugins/gridColumnStart.js | 15 - jit/corePlugins/gridRow.js | 15 - jit/corePlugins/gridRowEnd.js | 15 - jit/corePlugins/gridRowStart.js | 15 - jit/corePlugins/gridTemplateColumns.js | 15 - jit/corePlugins/gridTemplateRows.js | 15 - jit/corePlugins/height.js | 15 - jit/corePlugins/index.js | 152 +- jit/corePlugins/inset.js | 75 - jit/corePlugins/isolation.js | 1 - jit/corePlugins/justifyContent.js | 22 - jit/corePlugins/justifyItems.js | 16 - jit/corePlugins/listStylePosition.js | 6 - jit/corePlugins/listStyleType.js | 13 - jit/corePlugins/margin.js | 73 - jit/corePlugins/maxHeight.js | 15 - jit/corePlugins/maxWidth.js | 15 - jit/corePlugins/minHeight.js | 15 - jit/corePlugins/minWidth.js | 15 - jit/corePlugins/order.js | 15 - jit/corePlugins/placeContent.js | 25 - jit/corePlugins/placeItems.js | 16 - jit/corePlugins/pointerEvents.js | 6 - jit/corePlugins/position.js | 11 - jit/corePlugins/preflight.js | 3 - jit/corePlugins/resize.js | 8 - jit/corePlugins/rotate.js | 15 - jit/corePlugins/scale.js | 35 - jit/corePlugins/skew.js | 24 - jit/corePlugins/space.js | 45 - jit/corePlugins/tableLayout.js | 6 - jit/corePlugins/transform.js | 40 - jit/corePlugins/transformOrigin.js | 15 - jit/corePlugins/translate.js | 24 - jit/corePlugins/userSelect.js | 8 - jit/corePlugins/visibility.js | 6 - jit/corePlugins/width.js | 15 - jit/corePlugins/zIndex.js | 15 - jit/tests/apply.test.js | 1 + jit/tests/arbitrary-values.test.css | 50 + jit/tests/arbitrary-values.test.html | 16 + jit/tests/basic-usage.test.css | 12 +- jit/tests/basic-usage.test.js | 5 +- jit/tests/collapse-adjacent-rules.test.js | 5 +- jit/tests/context-reuse.worker.js | 1 + jit/tests/custom-extractors.test.js | 6 +- jit/tests/custom-separator.test.js | 5 +- jit/tests/import-syntax.test.js | 5 +- jit/tests/important-boolean.test.js | 5 +- jit/tests/important-modifier-prefix.test.js | 5 +- jit/tests/important-modifier.test.js | 5 +- jit/tests/important-selector.test.js | 5 +- jit/tests/kitchen-sink.test.js | 5 +- jit/tests/modify-selectors.test.js | 5 +- jit/tests/mutable.test.js | 9 +- jit/tests/prefix.fn.test.js | 5 +- jit/tests/prefix.test.js | 5 +- .../responsive-and-variants-atrules.test.js | 5 +- jit/tests/svelte-syntax.test.js | 5 +- jit/tests/variants.test.js | 5 +- src/plugins/animation.js | 73 +- src/plugins/cursor.js | 18 +- src/plugins/divideWidth.js | 116 +- src/plugins/flex.js | 18 +- src/plugins/flexGrow.js | 19 +- src/plugins/flexShrink.js | 19 +- src/plugins/gap.js | 6 +- src/plugins/gridTemplateColumns.js | 5 +- src/plugins/gridTemplateRows.js | 5 +- src/plugins/inset.js | 145 +- src/plugins/margin.js | 45 +- src/plugins/order.js | 2 +- src/plugins/scale.js | 6 +- src/plugins/skew.js | 6 +- src/plugins/space.js | 112 +- src/plugins/translate.js | 6 +- src/util/createUtilityPlugin.js | 74 +- 107 files changed, 22627 insertions(+), 23648 deletions(-) delete mode 100644 jit/corePlugins/accessibility.js delete mode 100644 jit/corePlugins/alignContent.js delete mode 100644 jit/corePlugins/alignItems.js delete mode 100644 jit/corePlugins/animation.js delete mode 100644 jit/corePlugins/appearance.js delete mode 100644 jit/corePlugins/borderCollapse.js delete mode 100644 jit/corePlugins/boxSizing.js delete mode 100644 jit/corePlugins/clear.js delete mode 100644 jit/corePlugins/container.js delete mode 100644 jit/corePlugins/css/preflight.css delete mode 100644 jit/corePlugins/cursor.js delete mode 100644 jit/corePlugins/display.js delete mode 100644 jit/corePlugins/divideStyle.js delete mode 100644 jit/corePlugins/divideWidth.js delete mode 100644 jit/corePlugins/flex.js delete mode 100644 jit/corePlugins/flexDirection.js delete mode 100644 jit/corePlugins/flexGrow.js delete mode 100644 jit/corePlugins/flexShrink.js delete mode 100644 jit/corePlugins/flexWrap.js delete mode 100644 jit/corePlugins/float.js delete mode 100644 jit/corePlugins/gap.js delete mode 100644 jit/corePlugins/gridAutoColumns.js delete mode 100644 jit/corePlugins/gridAutoFlow.js delete mode 100644 jit/corePlugins/gridAutoRows.js delete mode 100644 jit/corePlugins/gridColumn.js delete mode 100644 jit/corePlugins/gridColumnEnd.js delete mode 100644 jit/corePlugins/gridColumnStart.js delete mode 100644 jit/corePlugins/gridRow.js delete mode 100644 jit/corePlugins/gridRowEnd.js delete mode 100644 jit/corePlugins/gridRowStart.js delete mode 100644 jit/corePlugins/gridTemplateColumns.js delete mode 100644 jit/corePlugins/gridTemplateRows.js delete mode 100644 jit/corePlugins/height.js delete mode 100644 jit/corePlugins/inset.js delete mode 100644 jit/corePlugins/isolation.js delete mode 100644 jit/corePlugins/justifyContent.js delete mode 100644 jit/corePlugins/justifyItems.js delete mode 100644 jit/corePlugins/listStylePosition.js delete mode 100644 jit/corePlugins/listStyleType.js delete mode 100644 jit/corePlugins/margin.js delete mode 100644 jit/corePlugins/maxHeight.js delete mode 100644 jit/corePlugins/maxWidth.js delete mode 100644 jit/corePlugins/minHeight.js delete mode 100644 jit/corePlugins/minWidth.js delete mode 100644 jit/corePlugins/order.js delete mode 100644 jit/corePlugins/placeContent.js delete mode 100644 jit/corePlugins/placeItems.js delete mode 100644 jit/corePlugins/pointerEvents.js delete mode 100644 jit/corePlugins/position.js delete mode 100644 jit/corePlugins/preflight.js delete mode 100644 jit/corePlugins/resize.js delete mode 100644 jit/corePlugins/rotate.js delete mode 100644 jit/corePlugins/scale.js delete mode 100644 jit/corePlugins/skew.js delete mode 100644 jit/corePlugins/space.js delete mode 100644 jit/corePlugins/tableLayout.js delete mode 100644 jit/corePlugins/transform.js delete mode 100644 jit/corePlugins/transformOrigin.js delete mode 100644 jit/corePlugins/translate.js delete mode 100644 jit/corePlugins/userSelect.js delete mode 100644 jit/corePlugins/visibility.js delete mode 100644 jit/corePlugins/width.js delete mode 100644 jit/corePlugins/zIndex.js diff --git a/__tests__/fixtures/tailwind-output-flagged.css b/__tests__/fixtures/tailwind-output-flagged.css index 02c2ca013c6f..fdf525ddec3c 100644 --- a/__tests__/fixtures/tailwind-output-flagged.css +++ b/__tests__/fixtures/tailwind-output-flagged.css @@ -11905,1848 +11905,1848 @@ video { margin: -0.875rem; } -.my-0 { - margin-top: 0px; - margin-bottom: 0px; -} - .mx-0 { margin-left: 0px; margin-right: 0px; } -.my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; -} - .mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; } -.my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; -} - .mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; } -.my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; -} - .mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; } -.my-4 { - margin-top: 1rem; - margin-bottom: 1rem; -} - .mx-4 { margin-left: 1rem; margin-right: 1rem; } -.my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; -} - .mx-5 { margin-left: 1.25rem; margin-right: 1.25rem; } -.my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; -} - .mx-6 { margin-left: 1.5rem; margin-right: 1.5rem; } -.my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; -} - .mx-7 { margin-left: 1.75rem; margin-right: 1.75rem; } -.my-8 { - margin-top: 2rem; - margin-bottom: 2rem; -} - .mx-8 { margin-left: 2rem; margin-right: 2rem; } -.my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; -} - .mx-9 { margin-left: 2.25rem; margin-right: 2.25rem; } -.my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; -} - .mx-10 { margin-left: 2.5rem; margin-right: 2.5rem; } -.my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; -} - .mx-11 { margin-left: 2.75rem; margin-right: 2.75rem; } -.my-12 { - margin-top: 3rem; - margin-bottom: 3rem; -} - .mx-12 { margin-left: 3rem; margin-right: 3rem; } -.my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; -} - .mx-14 { margin-left: 3.5rem; margin-right: 3.5rem; } -.my-16 { - margin-top: 4rem; - margin-bottom: 4rem; -} - .mx-16 { margin-left: 4rem; margin-right: 4rem; } -.my-20 { - margin-top: 5rem; - margin-bottom: 5rem; -} - .mx-20 { margin-left: 5rem; margin-right: 5rem; } -.my-24 { - margin-top: 6rem; - margin-bottom: 6rem; -} - .mx-24 { margin-left: 6rem; margin-right: 6rem; } -.my-28 { - margin-top: 7rem; - margin-bottom: 7rem; -} - .mx-28 { margin-left: 7rem; margin-right: 7rem; } -.my-32 { - margin-top: 8rem; - margin-bottom: 8rem; -} - .mx-32 { margin-left: 8rem; margin-right: 8rem; } -.my-36 { - margin-top: 9rem; - margin-bottom: 9rem; -} - .mx-36 { margin-left: 9rem; margin-right: 9rem; } -.my-40 { - margin-top: 10rem; - margin-bottom: 10rem; -} - .mx-40 { margin-left: 10rem; margin-right: 10rem; } -.my-44 { - margin-top: 11rem; - margin-bottom: 11rem; -} - .mx-44 { margin-left: 11rem; margin-right: 11rem; } -.my-48 { - margin-top: 12rem; - margin-bottom: 12rem; -} - .mx-48 { margin-left: 12rem; margin-right: 12rem; } -.my-52 { - margin-top: 13rem; - margin-bottom: 13rem; -} - .mx-52 { margin-left: 13rem; margin-right: 13rem; } -.my-56 { - margin-top: 14rem; - margin-bottom: 14rem; -} - .mx-56 { margin-left: 14rem; margin-right: 14rem; } -.my-60 { - margin-top: 15rem; - margin-bottom: 15rem; -} - .mx-60 { margin-left: 15rem; margin-right: 15rem; } -.my-64 { - margin-top: 16rem; - margin-bottom: 16rem; -} - .mx-64 { margin-left: 16rem; margin-right: 16rem; } -.my-72 { - margin-top: 18rem; - margin-bottom: 18rem; -} - .mx-72 { margin-left: 18rem; margin-right: 18rem; } -.my-80 { - margin-top: 20rem; - margin-bottom: 20rem; -} - .mx-80 { margin-left: 20rem; margin-right: 20rem; } -.my-96 { - margin-top: 24rem; - margin-bottom: 24rem; -} - .mx-96 { margin-left: 24rem; margin-right: 24rem; } -.my-auto { - margin-top: auto; - margin-bottom: auto; -} - .mx-auto { margin-left: auto; margin-right: auto; } -.my-px { - margin-top: 1px; - margin-bottom: 1px; -} - .mx-px { margin-left: 1px; margin-right: 1px; } -.my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; -} - .mx-0\.5 { margin-left: 0.125rem; margin-right: 0.125rem; } -.my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; -} - .mx-1\.5 { margin-left: 0.375rem; margin-right: 0.375rem; } -.my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; -} - .mx-2\.5 { margin-left: 0.625rem; margin-right: 0.625rem; } -.my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; -} - .mx-3\.5 { margin-left: 0.875rem; margin-right: 0.875rem; } -.-my-0 { - margin-top: 0px; - margin-bottom: 0px; -} - .-mx-0 { margin-left: 0px; margin-right: 0px; } -.-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; -} - .-mx-1 { margin-left: -0.25rem; margin-right: -0.25rem; } -.-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; -} - .-mx-2 { margin-left: -0.5rem; margin-right: -0.5rem; } -.-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; -} - .-mx-3 { margin-left: -0.75rem; margin-right: -0.75rem; } -.-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; -} - .-mx-4 { margin-left: -1rem; margin-right: -1rem; } -.-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; -} - .-mx-5 { margin-left: -1.25rem; margin-right: -1.25rem; } -.-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; -} - .-mx-6 { margin-left: -1.5rem; margin-right: -1.5rem; } -.-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; -} - .-mx-7 { margin-left: -1.75rem; margin-right: -1.75rem; } -.-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; -} - .-mx-8 { margin-left: -2rem; margin-right: -2rem; } -.-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; -} - .-mx-9 { margin-left: -2.25rem; margin-right: -2.25rem; } -.-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; -} - .-mx-10 { margin-left: -2.5rem; margin-right: -2.5rem; } -.-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; -} - .-mx-11 { margin-left: -2.75rem; margin-right: -2.75rem; } -.-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; -} - .-mx-12 { margin-left: -3rem; margin-right: -3rem; } -.-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; -} - .-mx-14 { margin-left: -3.5rem; margin-right: -3.5rem; } -.-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; -} - .-mx-16 { margin-left: -4rem; margin-right: -4rem; } -.-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; -} - .-mx-20 { margin-left: -5rem; margin-right: -5rem; } -.-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; -} - .-mx-24 { margin-left: -6rem; margin-right: -6rem; } -.-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; -} - .-mx-28 { margin-left: -7rem; margin-right: -7rem; } -.-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; -} - .-mx-32 { margin-left: -8rem; margin-right: -8rem; } -.-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; -} - .-mx-36 { margin-left: -9rem; margin-right: -9rem; } -.-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; -} - .-mx-40 { margin-left: -10rem; margin-right: -10rem; } -.-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; -} - .-mx-44 { margin-left: -11rem; margin-right: -11rem; } -.-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; -} - .-mx-48 { margin-left: -12rem; margin-right: -12rem; } -.-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; -} - .-mx-52 { margin-left: -13rem; margin-right: -13rem; } -.-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; -} - .-mx-56 { margin-left: -14rem; margin-right: -14rem; } -.-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; -} - .-mx-60 { margin-left: -15rem; margin-right: -15rem; } -.-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; -} - .-mx-64 { margin-left: -16rem; margin-right: -16rem; } -.-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; -} - .-mx-72 { margin-left: -18rem; margin-right: -18rem; } -.-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; -} - .-mx-80 { margin-left: -20rem; margin-right: -20rem; } -.-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; -} - .-mx-96 { margin-left: -24rem; margin-right: -24rem; } -.-my-px { - margin-top: -1px; - margin-bottom: -1px; -} - .-mx-px { margin-left: -1px; margin-right: -1px; } -.-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; -} - .-mx-0\.5 { margin-left: -0.125rem; margin-right: -0.125rem; } -.-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; -} - .-mx-1\.5 { margin-left: -0.375rem; margin-right: -0.375rem; } -.-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; -} - .-mx-2\.5 { margin-left: -0.625rem; margin-right: -0.625rem; } -.-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; -} - .-mx-3\.5 { margin-left: -0.875rem; margin-right: -0.875rem; } -.mt-0 { +.my-0 { margin-top: 0px; + margin-bottom: 0px; } -.mr-0 { - margin-right: 0px; -} - -.mb-0 { - margin-bottom: 0px; +.my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } -.ml-0 { - margin-left: 0px; +.my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; } -.mt-1 { - margin-top: 0.25rem; +.my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; } -.mr-1 { - margin-right: 0.25rem; +.my-4 { + margin-top: 1rem; + margin-bottom: 1rem; } -.mb-1 { - margin-bottom: 0.25rem; +.my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; } -.ml-1 { - margin-left: 0.25rem; +.my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; } -.mt-2 { - margin-top: 0.5rem; +.my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; } -.mr-2 { - margin-right: 0.5rem; +.my-8 { + margin-top: 2rem; + margin-bottom: 2rem; } -.mb-2 { - margin-bottom: 0.5rem; +.my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; } -.ml-2 { - margin-left: 0.5rem; +.my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; } -.mt-3 { - margin-top: 0.75rem; +.my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; } -.mr-3 { - margin-right: 0.75rem; +.my-12 { + margin-top: 3rem; + margin-bottom: 3rem; } -.mb-3 { - margin-bottom: 0.75rem; +.my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; } -.ml-3 { - margin-left: 0.75rem; +.my-16 { + margin-top: 4rem; + margin-bottom: 4rem; } -.mt-4 { - margin-top: 1rem; +.my-20 { + margin-top: 5rem; + margin-bottom: 5rem; } -.mr-4 { - margin-right: 1rem; +.my-24 { + margin-top: 6rem; + margin-bottom: 6rem; } -.mb-4 { - margin-bottom: 1rem; +.my-28 { + margin-top: 7rem; + margin-bottom: 7rem; } -.ml-4 { - margin-left: 1rem; +.my-32 { + margin-top: 8rem; + margin-bottom: 8rem; } -.mt-5 { - margin-top: 1.25rem; +.my-36 { + margin-top: 9rem; + margin-bottom: 9rem; } -.mr-5 { - margin-right: 1.25rem; +.my-40 { + margin-top: 10rem; + margin-bottom: 10rem; } -.mb-5 { - margin-bottom: 1.25rem; +.my-44 { + margin-top: 11rem; + margin-bottom: 11rem; } -.ml-5 { - margin-left: 1.25rem; +.my-48 { + margin-top: 12rem; + margin-bottom: 12rem; } -.mt-6 { - margin-top: 1.5rem; +.my-52 { + margin-top: 13rem; + margin-bottom: 13rem; } -.mr-6 { - margin-right: 1.5rem; +.my-56 { + margin-top: 14rem; + margin-bottom: 14rem; } -.mb-6 { - margin-bottom: 1.5rem; +.my-60 { + margin-top: 15rem; + margin-bottom: 15rem; } -.ml-6 { - margin-left: 1.5rem; +.my-64 { + margin-top: 16rem; + margin-bottom: 16rem; } -.mt-7 { - margin-top: 1.75rem; +.my-72 { + margin-top: 18rem; + margin-bottom: 18rem; } -.mr-7 { - margin-right: 1.75rem; +.my-80 { + margin-top: 20rem; + margin-bottom: 20rem; } -.mb-7 { - margin-bottom: 1.75rem; +.my-96 { + margin-top: 24rem; + margin-bottom: 24rem; } -.ml-7 { - margin-left: 1.75rem; +.my-auto { + margin-top: auto; + margin-bottom: auto; } -.mt-8 { - margin-top: 2rem; +.my-px { + margin-top: 1px; + margin-bottom: 1px; } -.mr-8 { - margin-right: 2rem; +.my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; } -.mb-8 { - margin-bottom: 2rem; +.my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; } -.ml-8 { - margin-left: 2rem; +.my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; } -.mt-9 { - margin-top: 2.25rem; +.my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; } -.mr-9 { - margin-right: 2.25rem; +.-my-0 { + margin-top: 0px; + margin-bottom: 0px; } -.mb-9 { - margin-bottom: 2.25rem; +.-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } -.ml-9 { - margin-left: 2.25rem; +.-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } -.mt-10 { - margin-top: 2.5rem; +.-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } -.mr-10 { - margin-right: 2.5rem; +.-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } -.mb-10 { - margin-bottom: 2.5rem; +.-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } -.ml-10 { - margin-left: 2.5rem; +.-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } -.mt-11 { - margin-top: 2.75rem; +.-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } -.mr-11 { - margin-right: 2.75rem; +.-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } -.mb-11 { - margin-bottom: 2.75rem; +.-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } -.ml-11 { - margin-left: 2.75rem; +.-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } -.mt-12 { - margin-top: 3rem; +.-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } -.mr-12 { - margin-right: 3rem; +.-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } -.mb-12 { - margin-bottom: 3rem; +.-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } -.ml-12 { - margin-left: 3rem; +.-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } -.mt-14 { - margin-top: 3.5rem; +.-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } -.mr-14 { - margin-right: 3.5rem; +.-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } -.mb-14 { - margin-bottom: 3.5rem; +.-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } -.ml-14 { - margin-left: 3.5rem; +.-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } -.mt-16 { - margin-top: 4rem; +.-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } -.mr-16 { - margin-right: 4rem; +.-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } -.mb-16 { - margin-bottom: 4rem; +.-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } -.ml-16 { - margin-left: 4rem; +.-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } -.mt-20 { - margin-top: 5rem; +.-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } -.mr-20 { - margin-right: 5rem; +.-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } -.mb-20 { - margin-bottom: 5rem; +.-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } -.ml-20 { - margin-left: 5rem; +.-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } -.mt-24 { - margin-top: 6rem; +.-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } -.mr-24 { - margin-right: 6rem; +.-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } -.mb-24 { - margin-bottom: 6rem; +.-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } -.ml-24 { - margin-left: 6rem; +.-my-px { + margin-top: -1px; + margin-bottom: -1px; } -.mt-28 { - margin-top: 7rem; +.-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } -.mr-28 { - margin-right: 7rem; +.-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } -.mb-28 { - margin-bottom: 7rem; +.-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } -.ml-28 { - margin-left: 7rem; +.-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } -.mt-32 { - margin-top: 8rem; +.mt-0 { + margin-top: 0px; } -.mr-32 { - margin-right: 8rem; +.mt-1 { + margin-top: 0.25rem; } -.mb-32 { - margin-bottom: 8rem; +.mt-2 { + margin-top: 0.5rem; } -.ml-32 { - margin-left: 8rem; +.mt-3 { + margin-top: 0.75rem; } -.mt-36 { - margin-top: 9rem; +.mt-4 { + margin-top: 1rem; } -.mr-36 { - margin-right: 9rem; +.mt-5 { + margin-top: 1.25rem; } -.mb-36 { - margin-bottom: 9rem; +.mt-6 { + margin-top: 1.5rem; } -.ml-36 { - margin-left: 9rem; +.mt-7 { + margin-top: 1.75rem; } -.mt-40 { - margin-top: 10rem; +.mt-8 { + margin-top: 2rem; } -.mr-40 { - margin-right: 10rem; +.mt-9 { + margin-top: 2.25rem; } -.mb-40 { - margin-bottom: 10rem; +.mt-10 { + margin-top: 2.5rem; } -.ml-40 { - margin-left: 10rem; +.mt-11 { + margin-top: 2.75rem; } -.mt-44 { - margin-top: 11rem; +.mt-12 { + margin-top: 3rem; } -.mr-44 { - margin-right: 11rem; +.mt-14 { + margin-top: 3.5rem; } -.mb-44 { - margin-bottom: 11rem; +.mt-16 { + margin-top: 4rem; } -.ml-44 { - margin-left: 11rem; +.mt-20 { + margin-top: 5rem; } -.mt-48 { - margin-top: 12rem; +.mt-24 { + margin-top: 6rem; } -.mr-48 { - margin-right: 12rem; +.mt-28 { + margin-top: 7rem; } -.mb-48 { - margin-bottom: 12rem; +.mt-32 { + margin-top: 8rem; } -.ml-48 { - margin-left: 12rem; +.mt-36 { + margin-top: 9rem; } -.mt-52 { - margin-top: 13rem; +.mt-40 { + margin-top: 10rem; } -.mr-52 { - margin-right: 13rem; +.mt-44 { + margin-top: 11rem; } -.mb-52 { - margin-bottom: 13rem; +.mt-48 { + margin-top: 12rem; } -.ml-52 { - margin-left: 13rem; +.mt-52 { + margin-top: 13rem; } .mt-56 { margin-top: 14rem; } -.mr-56 { - margin-right: 14rem; +.mt-60 { + margin-top: 15rem; } -.mb-56 { - margin-bottom: 14rem; +.mt-64 { + margin-top: 16rem; } -.ml-56 { - margin-left: 14rem; +.mt-72 { + margin-top: 18rem; } -.mt-60 { - margin-top: 15rem; +.mt-80 { + margin-top: 20rem; } -.mr-60 { - margin-right: 15rem; +.mt-96 { + margin-top: 24rem; } -.mb-60 { - margin-bottom: 15rem; +.mt-auto { + margin-top: auto; } -.ml-60 { - margin-left: 15rem; +.mt-px { + margin-top: 1px; } -.mt-64 { - margin-top: 16rem; +.mt-0\.5 { + margin-top: 0.125rem; } -.mr-64 { - margin-right: 16rem; +.mt-1\.5 { + margin-top: 0.375rem; } -.mb-64 { - margin-bottom: 16rem; +.mt-2\.5 { + margin-top: 0.625rem; } -.ml-64 { - margin-left: 16rem; +.mt-3\.5 { + margin-top: 0.875rem; } -.mt-72 { - margin-top: 18rem; +.-mt-0 { + margin-top: 0px; } -.mr-72 { - margin-right: 18rem; +.-mt-1 { + margin-top: -0.25rem; } -.mb-72 { - margin-bottom: 18rem; +.-mt-2 { + margin-top: -0.5rem; } -.ml-72 { - margin-left: 18rem; +.-mt-3 { + margin-top: -0.75rem; } -.mt-80 { - margin-top: 20rem; +.-mt-4 { + margin-top: -1rem; } -.mr-80 { - margin-right: 20rem; +.-mt-5 { + margin-top: -1.25rem; } -.mb-80 { - margin-bottom: 20rem; +.-mt-6 { + margin-top: -1.5rem; } -.ml-80 { - margin-left: 20rem; +.-mt-7 { + margin-top: -1.75rem; } -.mt-96 { - margin-top: 24rem; +.-mt-8 { + margin-top: -2rem; } -.mr-96 { - margin-right: 24rem; +.-mt-9 { + margin-top: -2.25rem; } -.mb-96 { - margin-bottom: 24rem; +.-mt-10 { + margin-top: -2.5rem; } -.ml-96 { - margin-left: 24rem; +.-mt-11 { + margin-top: -2.75rem; } -.mt-auto { - margin-top: auto; +.-mt-12 { + margin-top: -3rem; } -.mr-auto { - margin-right: auto; +.-mt-14 { + margin-top: -3.5rem; } -.mb-auto { - margin-bottom: auto; +.-mt-16 { + margin-top: -4rem; } -.ml-auto { - margin-left: auto; +.-mt-20 { + margin-top: -5rem; } -.mt-px { - margin-top: 1px; +.-mt-24 { + margin-top: -6rem; } -.mr-px { - margin-right: 1px; +.-mt-28 { + margin-top: -7rem; } -.mb-px { - margin-bottom: 1px; +.-mt-32 { + margin-top: -8rem; } -.ml-px { - margin-left: 1px; +.-mt-36 { + margin-top: -9rem; } -.mt-0\.5 { - margin-top: 0.125rem; +.-mt-40 { + margin-top: -10rem; } -.mr-0\.5 { - margin-right: 0.125rem; +.-mt-44 { + margin-top: -11rem; } -.mb-0\.5 { - margin-bottom: 0.125rem; +.-mt-48 { + margin-top: -12rem; } -.ml-0\.5 { - margin-left: 0.125rem; +.-mt-52 { + margin-top: -13rem; } -.mt-1\.5 { - margin-top: 0.375rem; +.-mt-56 { + margin-top: -14rem; } -.mr-1\.5 { - margin-right: 0.375rem; +.-mt-60 { + margin-top: -15rem; } -.mb-1\.5 { - margin-bottom: 0.375rem; +.-mt-64 { + margin-top: -16rem; } -.ml-1\.5 { - margin-left: 0.375rem; +.-mt-72 { + margin-top: -18rem; } -.mt-2\.5 { - margin-top: 0.625rem; +.-mt-80 { + margin-top: -20rem; } -.mr-2\.5 { - margin-right: 0.625rem; +.-mt-96 { + margin-top: -24rem; } -.mb-2\.5 { - margin-bottom: 0.625rem; +.-mt-px { + margin-top: -1px; } -.ml-2\.5 { - margin-left: 0.625rem; +.-mt-0\.5 { + margin-top: -0.125rem; } -.mt-3\.5 { - margin-top: 0.875rem; +.-mt-1\.5 { + margin-top: -0.375rem; } -.mr-3\.5 { - margin-right: 0.875rem; +.-mt-2\.5 { + margin-top: -0.625rem; } -.mb-3\.5 { - margin-bottom: 0.875rem; +.-mt-3\.5 { + margin-top: -0.875rem; } -.ml-3\.5 { - margin-left: 0.875rem; +.mr-0 { + margin-right: 0px; } -.-mt-0 { - margin-top: 0px; +.mr-1 { + margin-right: 0.25rem; } -.-mr-0 { - margin-right: 0px; +.mr-2 { + margin-right: 0.5rem; } -.-mb-0 { - margin-bottom: 0px; +.mr-3 { + margin-right: 0.75rem; } -.-ml-0 { - margin-left: 0px; +.mr-4 { + margin-right: 1rem; } -.-mt-1 { - margin-top: -0.25rem; +.mr-5 { + margin-right: 1.25rem; } -.-mr-1 { - margin-right: -0.25rem; +.mr-6 { + margin-right: 1.5rem; } -.-mb-1 { - margin-bottom: -0.25rem; +.mr-7 { + margin-right: 1.75rem; } -.-ml-1 { - margin-left: -0.25rem; +.mr-8 { + margin-right: 2rem; } -.-mt-2 { - margin-top: -0.5rem; +.mr-9 { + margin-right: 2.25rem; } -.-mr-2 { - margin-right: -0.5rem; +.mr-10 { + margin-right: 2.5rem; } -.-mb-2 { - margin-bottom: -0.5rem; +.mr-11 { + margin-right: 2.75rem; } -.-ml-2 { - margin-left: -0.5rem; +.mr-12 { + margin-right: 3rem; } -.-mt-3 { - margin-top: -0.75rem; +.mr-14 { + margin-right: 3.5rem; } -.-mr-3 { - margin-right: -0.75rem; +.mr-16 { + margin-right: 4rem; } -.-mb-3 { - margin-bottom: -0.75rem; +.mr-20 { + margin-right: 5rem; } -.-ml-3 { - margin-left: -0.75rem; +.mr-24 { + margin-right: 6rem; } -.-mt-4 { - margin-top: -1rem; +.mr-28 { + margin-right: 7rem; } -.-mr-4 { - margin-right: -1rem; +.mr-32 { + margin-right: 8rem; } -.-mb-4 { - margin-bottom: -1rem; +.mr-36 { + margin-right: 9rem; } -.-ml-4 { - margin-left: -1rem; +.mr-40 { + margin-right: 10rem; } -.-mt-5 { - margin-top: -1.25rem; +.mr-44 { + margin-right: 11rem; } -.-mr-5 { - margin-right: -1.25rem; +.mr-48 { + margin-right: 12rem; } -.-mb-5 { - margin-bottom: -1.25rem; +.mr-52 { + margin-right: 13rem; } -.-ml-5 { - margin-left: -1.25rem; +.mr-56 { + margin-right: 14rem; } -.-mt-6 { - margin-top: -1.5rem; +.mr-60 { + margin-right: 15rem; } -.-mr-6 { - margin-right: -1.5rem; +.mr-64 { + margin-right: 16rem; } -.-mb-6 { - margin-bottom: -1.5rem; +.mr-72 { + margin-right: 18rem; } -.-ml-6 { - margin-left: -1.5rem; +.mr-80 { + margin-right: 20rem; } -.-mt-7 { - margin-top: -1.75rem; +.mr-96 { + margin-right: 24rem; } -.-mr-7 { - margin-right: -1.75rem; +.mr-auto { + margin-right: auto; } -.-mb-7 { - margin-bottom: -1.75rem; +.mr-px { + margin-right: 1px; } -.-ml-7 { - margin-left: -1.75rem; +.mr-0\.5 { + margin-right: 0.125rem; } -.-mt-8 { - margin-top: -2rem; +.mr-1\.5 { + margin-right: 0.375rem; } -.-mr-8 { - margin-right: -2rem; +.mr-2\.5 { + margin-right: 0.625rem; } -.-mb-8 { - margin-bottom: -2rem; +.mr-3\.5 { + margin-right: 0.875rem; } -.-ml-8 { - margin-left: -2rem; +.-mr-0 { + margin-right: 0px; } -.-mt-9 { - margin-top: -2.25rem; +.-mr-1 { + margin-right: -0.25rem; } -.-mr-9 { - margin-right: -2.25rem; +.-mr-2 { + margin-right: -0.5rem; } -.-mb-9 { - margin-bottom: -2.25rem; +.-mr-3 { + margin-right: -0.75rem; } -.-ml-9 { - margin-left: -2.25rem; +.-mr-4 { + margin-right: -1rem; } -.-mt-10 { - margin-top: -2.5rem; +.-mr-5 { + margin-right: -1.25rem; } -.-mr-10 { - margin-right: -2.5rem; +.-mr-6 { + margin-right: -1.5rem; } -.-mb-10 { - margin-bottom: -2.5rem; +.-mr-7 { + margin-right: -1.75rem; } -.-ml-10 { - margin-left: -2.5rem; +.-mr-8 { + margin-right: -2rem; } -.-mt-11 { - margin-top: -2.75rem; +.-mr-9 { + margin-right: -2.25rem; +} + +.-mr-10 { + margin-right: -2.5rem; } .-mr-11 { margin-right: -2.75rem; } -.-mb-11 { - margin-bottom: -2.75rem; +.-mr-12 { + margin-right: -3rem; } -.-ml-11 { - margin-left: -2.75rem; +.-mr-14 { + margin-right: -3.5rem; } -.-mt-12 { - margin-top: -3rem; +.-mr-16 { + margin-right: -4rem; } -.-mr-12 { - margin-right: -3rem; +.-mr-20 { + margin-right: -5rem; } -.-mb-12 { - margin-bottom: -3rem; +.-mr-24 { + margin-right: -6rem; } -.-ml-12 { - margin-left: -3rem; +.-mr-28 { + margin-right: -7rem; } -.-mt-14 { - margin-top: -3.5rem; +.-mr-32 { + margin-right: -8rem; } -.-mr-14 { - margin-right: -3.5rem; +.-mr-36 { + margin-right: -9rem; } -.-mb-14 { - margin-bottom: -3.5rem; +.-mr-40 { + margin-right: -10rem; } -.-ml-14 { - margin-left: -3.5rem; +.-mr-44 { + margin-right: -11rem; } -.-mt-16 { - margin-top: -4rem; +.-mr-48 { + margin-right: -12rem; } -.-mr-16 { - margin-right: -4rem; +.-mr-52 { + margin-right: -13rem; } -.-mb-16 { - margin-bottom: -4rem; +.-mr-56 { + margin-right: -14rem; } -.-ml-16 { - margin-left: -4rem; +.-mr-60 { + margin-right: -15rem; } -.-mt-20 { - margin-top: -5rem; +.-mr-64 { + margin-right: -16rem; } -.-mr-20 { - margin-right: -5rem; +.-mr-72 { + margin-right: -18rem; } -.-mb-20 { - margin-bottom: -5rem; +.-mr-80 { + margin-right: -20rem; } -.-ml-20 { - margin-left: -5rem; +.-mr-96 { + margin-right: -24rem; } -.-mt-24 { - margin-top: -6rem; +.-mr-px { + margin-right: -1px; } -.-mr-24 { - margin-right: -6rem; +.-mr-0\.5 { + margin-right: -0.125rem; } -.-mb-24 { - margin-bottom: -6rem; +.-mr-1\.5 { + margin-right: -0.375rem; } -.-ml-24 { - margin-left: -6rem; +.-mr-2\.5 { + margin-right: -0.625rem; } -.-mt-28 { - margin-top: -7rem; +.-mr-3\.5 { + margin-right: -0.875rem; } -.-mr-28 { - margin-right: -7rem; +.mb-0 { + margin-bottom: 0px; } -.-mb-28 { - margin-bottom: -7rem; +.mb-1 { + margin-bottom: 0.25rem; } -.-ml-28 { - margin-left: -7rem; +.mb-2 { + margin-bottom: 0.5rem; } -.-mt-32 { - margin-top: -8rem; +.mb-3 { + margin-bottom: 0.75rem; } -.-mr-32 { - margin-right: -8rem; +.mb-4 { + margin-bottom: 1rem; } -.-mb-32 { - margin-bottom: -8rem; +.mb-5 { + margin-bottom: 1.25rem; } -.-ml-32 { - margin-left: -8rem; +.mb-6 { + margin-bottom: 1.5rem; } -.-mt-36 { - margin-top: -9rem; +.mb-7 { + margin-bottom: 1.75rem; } -.-mr-36 { - margin-right: -9rem; +.mb-8 { + margin-bottom: 2rem; } -.-mb-36 { - margin-bottom: -9rem; +.mb-9 { + margin-bottom: 2.25rem; } -.-ml-36 { - margin-left: -9rem; +.mb-10 { + margin-bottom: 2.5rem; } -.-mt-40 { - margin-top: -10rem; +.mb-11 { + margin-bottom: 2.75rem; } -.-mr-40 { - margin-right: -10rem; +.mb-12 { + margin-bottom: 3rem; } -.-mb-40 { - margin-bottom: -10rem; +.mb-14 { + margin-bottom: 3.5rem; } -.-ml-40 { - margin-left: -10rem; +.mb-16 { + margin-bottom: 4rem; } -.-mt-44 { - margin-top: -11rem; +.mb-20 { + margin-bottom: 5rem; } -.-mr-44 { - margin-right: -11rem; +.mb-24 { + margin-bottom: 6rem; } -.-mb-44 { - margin-bottom: -11rem; +.mb-28 { + margin-bottom: 7rem; } -.-ml-44 { - margin-left: -11rem; +.mb-32 { + margin-bottom: 8rem; } -.-mt-48 { - margin-top: -12rem; +.mb-36 { + margin-bottom: 9rem; } -.-mr-48 { - margin-right: -12rem; +.mb-40 { + margin-bottom: 10rem; } -.-mb-48 { - margin-bottom: -12rem; +.mb-44 { + margin-bottom: 11rem; } -.-ml-48 { - margin-left: -12rem; +.mb-48 { + margin-bottom: 12rem; } -.-mt-52 { - margin-top: -13rem; +.mb-52 { + margin-bottom: 13rem; } -.-mr-52 { - margin-right: -13rem; +.mb-56 { + margin-bottom: 14rem; } -.-mb-52 { - margin-bottom: -13rem; +.mb-60 { + margin-bottom: 15rem; } -.-ml-52 { - margin-left: -13rem; +.mb-64 { + margin-bottom: 16rem; } -.-mt-56 { - margin-top: -14rem; +.mb-72 { + margin-bottom: 18rem; } -.-mr-56 { - margin-right: -14rem; +.mb-80 { + margin-bottom: 20rem; } -.-mb-56 { - margin-bottom: -14rem; +.mb-96 { + margin-bottom: 24rem; } -.-ml-56 { - margin-left: -14rem; +.mb-auto { + margin-bottom: auto; } -.-mt-60 { - margin-top: -15rem; +.mb-px { + margin-bottom: 1px; } -.-mr-60 { - margin-right: -15rem; +.mb-0\.5 { + margin-bottom: 0.125rem; } -.-mb-60 { - margin-bottom: -15rem; +.mb-1\.5 { + margin-bottom: 0.375rem; } -.-ml-60 { - margin-left: -15rem; +.mb-2\.5 { + margin-bottom: 0.625rem; } -.-mt-64 { - margin-top: -16rem; +.mb-3\.5 { + margin-bottom: 0.875rem; } -.-mr-64 { - margin-right: -16rem; +.-mb-0 { + margin-bottom: 0px; } -.-mb-64 { - margin-bottom: -16rem; +.-mb-1 { + margin-bottom: -0.25rem; } -.-ml-64 { - margin-left: -16rem; +.-mb-2 { + margin-bottom: -0.5rem; } -.-mt-72 { - margin-top: -18rem; +.-mb-3 { + margin-bottom: -0.75rem; } -.-mr-72 { - margin-right: -18rem; +.-mb-4 { + margin-bottom: -1rem; } -.-mb-72 { - margin-bottom: -18rem; +.-mb-5 { + margin-bottom: -1.25rem; } -.-ml-72 { - margin-left: -18rem; +.-mb-6 { + margin-bottom: -1.5rem; } -.-mt-80 { - margin-top: -20rem; +.-mb-7 { + margin-bottom: -1.75rem; } -.-mr-80 { - margin-right: -20rem; +.-mb-8 { + margin-bottom: -2rem; } -.-mb-80 { - margin-bottom: -20rem; +.-mb-9 { + margin-bottom: -2.25rem; } -.-ml-80 { - margin-left: -20rem; +.-mb-10 { + margin-bottom: -2.5rem; } -.-mt-96 { - margin-top: -24rem; +.-mb-11 { + margin-bottom: -2.75rem; } -.-mr-96 { - margin-right: -24rem; +.-mb-12 { + margin-bottom: -3rem; } -.-mb-96 { - margin-bottom: -24rem; +.-mb-14 { + margin-bottom: -3.5rem; } -.-ml-96 { - margin-left: -24rem; +.-mb-16 { + margin-bottom: -4rem; } -.-mt-px { - margin-top: -1px; +.-mb-20 { + margin-bottom: -5rem; } -.-mr-px { - margin-right: -1px; +.-mb-24 { + margin-bottom: -6rem; } -.-mb-px { - margin-bottom: -1px; +.-mb-28 { + margin-bottom: -7rem; } -.-ml-px { - margin-left: -1px; +.-mb-32 { + margin-bottom: -8rem; } -.-mt-0\.5 { - margin-top: -0.125rem; +.-mb-36 { + margin-bottom: -9rem; } -.-mr-0\.5 { - margin-right: -0.125rem; +.-mb-40 { + margin-bottom: -10rem; } -.-mb-0\.5 { - margin-bottom: -0.125rem; +.-mb-44 { + margin-bottom: -11rem; } -.-ml-0\.5 { - margin-left: -0.125rem; +.-mb-48 { + margin-bottom: -12rem; } -.-mt-1\.5 { - margin-top: -0.375rem; +.-mb-52 { + margin-bottom: -13rem; } -.-mr-1\.5 { - margin-right: -0.375rem; +.-mb-56 { + margin-bottom: -14rem; } -.-mb-1\.5 { - margin-bottom: -0.375rem; +.-mb-60 { + margin-bottom: -15rem; } -.-ml-1\.5 { - margin-left: -0.375rem; +.-mb-64 { + margin-bottom: -16rem; } -.-mt-2\.5 { - margin-top: -0.625rem; +.-mb-72 { + margin-bottom: -18rem; } -.-mr-2\.5 { - margin-right: -0.625rem; +.-mb-80 { + margin-bottom: -20rem; } -.-mb-2\.5 { - margin-bottom: -0.625rem; +.-mb-96 { + margin-bottom: -24rem; } -.-ml-2\.5 { - margin-left: -0.625rem; +.-mb-px { + margin-bottom: -1px; } -.-mt-3\.5 { - margin-top: -0.875rem; +.-mb-0\.5 { + margin-bottom: -0.125rem; } -.-mr-3\.5 { - margin-right: -0.875rem; +.-mb-1\.5 { + margin-bottom: -0.375rem; +} + +.-mb-2\.5 { + margin-bottom: -0.625rem; } .-mb-3\.5 { margin-bottom: -0.875rem; } +.ml-0 { + margin-left: 0px; +} + +.ml-1 { + margin-left: 0.25rem; +} + +.ml-2 { + margin-left: 0.5rem; +} + +.ml-3 { + margin-left: 0.75rem; +} + +.ml-4 { + margin-left: 1rem; +} + +.ml-5 { + margin-left: 1.25rem; +} + +.ml-6 { + margin-left: 1.5rem; +} + +.ml-7 { + margin-left: 1.75rem; +} + +.ml-8 { + margin-left: 2rem; +} + +.ml-9 { + margin-left: 2.25rem; +} + +.ml-10 { + margin-left: 2.5rem; +} + +.ml-11 { + margin-left: 2.75rem; +} + +.ml-12 { + margin-left: 3rem; +} + +.ml-14 { + margin-left: 3.5rem; +} + +.ml-16 { + margin-left: 4rem; +} + +.ml-20 { + margin-left: 5rem; +} + +.ml-24 { + margin-left: 6rem; +} + +.ml-28 { + margin-left: 7rem; +} + +.ml-32 { + margin-left: 8rem; +} + +.ml-36 { + margin-left: 9rem; +} + +.ml-40 { + margin-left: 10rem; +} + +.ml-44 { + margin-left: 11rem; +} + +.ml-48 { + margin-left: 12rem; +} + +.ml-52 { + margin-left: 13rem; +} + +.ml-56 { + margin-left: 14rem; +} + +.ml-60 { + margin-left: 15rem; +} + +.ml-64 { + margin-left: 16rem; +} + +.ml-72 { + margin-left: 18rem; +} + +.ml-80 { + margin-left: 20rem; +} + +.ml-96 { + margin-left: 24rem; +} + +.ml-auto { + margin-left: auto; +} + +.ml-px { + margin-left: 1px; +} + +.ml-0\.5 { + margin-left: 0.125rem; +} + +.ml-1\.5 { + margin-left: 0.375rem; +} + +.ml-2\.5 { + margin-left: 0.625rem; +} + +.ml-3\.5 { + margin-left: 0.875rem; +} + +.-ml-0 { + margin-left: 0px; +} + +.-ml-1 { + margin-left: -0.25rem; +} + +.-ml-2 { + margin-left: -0.5rem; +} + +.-ml-3 { + margin-left: -0.75rem; +} + +.-ml-4 { + margin-left: -1rem; +} + +.-ml-5 { + margin-left: -1.25rem; +} + +.-ml-6 { + margin-left: -1.5rem; +} + +.-ml-7 { + margin-left: -1.75rem; +} + +.-ml-8 { + margin-left: -2rem; +} + +.-ml-9 { + margin-left: -2.25rem; +} + +.-ml-10 { + margin-left: -2.5rem; +} + +.-ml-11 { + margin-left: -2.75rem; +} + +.-ml-12 { + margin-left: -3rem; +} + +.-ml-14 { + margin-left: -3.5rem; +} + +.-ml-16 { + margin-left: -4rem; +} + +.-ml-20 { + margin-left: -5rem; +} + +.-ml-24 { + margin-left: -6rem; +} + +.-ml-28 { + margin-left: -7rem; +} + +.-ml-32 { + margin-left: -8rem; +} + +.-ml-36 { + margin-left: -9rem; +} + +.-ml-40 { + margin-left: -10rem; +} + +.-ml-44 { + margin-left: -11rem; +} + +.-ml-48 { + margin-left: -12rem; +} + +.-ml-52 { + margin-left: -13rem; +} + +.-ml-56 { + margin-left: -14rem; +} + +.-ml-60 { + margin-left: -15rem; +} + +.-ml-64 { + margin-left: -16rem; +} + +.-ml-72 { + margin-left: -18rem; +} + +.-ml-80 { + margin-left: -20rem; +} + +.-ml-96 { + margin-left: -24rem; +} + +.-ml-px { + margin-left: -1px; +} + +.-ml-0\.5 { + margin-left: -0.125rem; +} + +.-ml-1\.5 { + margin-left: -0.375rem; +} + +.-ml-2\.5 { + margin-left: -0.625rem; +} + .-ml-3\.5 { margin-left: -0.875rem; } @@ -41163,1848 +41163,1848 @@ video { margin: -0.875rem; } - .sm\:my-0 { - margin-top: 0px; - margin-bottom: 0px; - } - .sm\:mx-0 { margin-left: 0px; margin-right: 0px; } - .sm\:my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; - } - .sm\:mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; } - .sm\:my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; - } - .sm\:mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; } - .sm\:my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; - } - .sm\:mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; } - .sm\:my-4 { - margin-top: 1rem; - margin-bottom: 1rem; - } - .sm\:mx-4 { margin-left: 1rem; margin-right: 1rem; } - .sm\:my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; - } - .sm\:mx-5 { margin-left: 1.25rem; margin-right: 1.25rem; } - .sm\:my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; - } - .sm\:mx-6 { margin-left: 1.5rem; margin-right: 1.5rem; } - .sm\:my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; - } - .sm\:mx-7 { margin-left: 1.75rem; margin-right: 1.75rem; } - .sm\:my-8 { - margin-top: 2rem; - margin-bottom: 2rem; - } - .sm\:mx-8 { margin-left: 2rem; margin-right: 2rem; } - .sm\:my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; - } - .sm\:mx-9 { margin-left: 2.25rem; margin-right: 2.25rem; } - .sm\:my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; - } - .sm\:mx-10 { margin-left: 2.5rem; margin-right: 2.5rem; } - .sm\:my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; - } - .sm\:mx-11 { margin-left: 2.75rem; margin-right: 2.75rem; } - .sm\:my-12 { - margin-top: 3rem; - margin-bottom: 3rem; - } - .sm\:mx-12 { margin-left: 3rem; margin-right: 3rem; } - .sm\:my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; - } - .sm\:mx-14 { margin-left: 3.5rem; margin-right: 3.5rem; } - .sm\:my-16 { - margin-top: 4rem; - margin-bottom: 4rem; - } - .sm\:mx-16 { margin-left: 4rem; margin-right: 4rem; } - .sm\:my-20 { - margin-top: 5rem; - margin-bottom: 5rem; - } - .sm\:mx-20 { margin-left: 5rem; margin-right: 5rem; } - .sm\:my-24 { - margin-top: 6rem; - margin-bottom: 6rem; - } - .sm\:mx-24 { margin-left: 6rem; margin-right: 6rem; } - .sm\:my-28 { - margin-top: 7rem; - margin-bottom: 7rem; - } - .sm\:mx-28 { margin-left: 7rem; margin-right: 7rem; } - .sm\:my-32 { - margin-top: 8rem; - margin-bottom: 8rem; - } - .sm\:mx-32 { margin-left: 8rem; margin-right: 8rem; } - .sm\:my-36 { - margin-top: 9rem; - margin-bottom: 9rem; - } - .sm\:mx-36 { margin-left: 9rem; margin-right: 9rem; } - .sm\:my-40 { - margin-top: 10rem; - margin-bottom: 10rem; - } - .sm\:mx-40 { margin-left: 10rem; margin-right: 10rem; } - .sm\:my-44 { - margin-top: 11rem; - margin-bottom: 11rem; - } - .sm\:mx-44 { margin-left: 11rem; margin-right: 11rem; } - .sm\:my-48 { - margin-top: 12rem; - margin-bottom: 12rem; - } - .sm\:mx-48 { margin-left: 12rem; margin-right: 12rem; } - .sm\:my-52 { - margin-top: 13rem; - margin-bottom: 13rem; - } - .sm\:mx-52 { margin-left: 13rem; margin-right: 13rem; } - .sm\:my-56 { - margin-top: 14rem; - margin-bottom: 14rem; - } - .sm\:mx-56 { margin-left: 14rem; margin-right: 14rem; } - .sm\:my-60 { - margin-top: 15rem; - margin-bottom: 15rem; - } - .sm\:mx-60 { margin-left: 15rem; margin-right: 15rem; } - .sm\:my-64 { - margin-top: 16rem; - margin-bottom: 16rem; - } - .sm\:mx-64 { margin-left: 16rem; margin-right: 16rem; } - .sm\:my-72 { - margin-top: 18rem; - margin-bottom: 18rem; - } - .sm\:mx-72 { margin-left: 18rem; margin-right: 18rem; } - .sm\:my-80 { - margin-top: 20rem; - margin-bottom: 20rem; - } - .sm\:mx-80 { margin-left: 20rem; margin-right: 20rem; } - .sm\:my-96 { - margin-top: 24rem; - margin-bottom: 24rem; - } - .sm\:mx-96 { margin-left: 24rem; margin-right: 24rem; } - .sm\:my-auto { - margin-top: auto; - margin-bottom: auto; - } - .sm\:mx-auto { margin-left: auto; margin-right: auto; } - .sm\:my-px { - margin-top: 1px; - margin-bottom: 1px; - } - .sm\:mx-px { margin-left: 1px; margin-right: 1px; } - .sm\:my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; - } - .sm\:mx-0\.5 { margin-left: 0.125rem; margin-right: 0.125rem; } - .sm\:my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; - } - .sm\:mx-1\.5 { margin-left: 0.375rem; margin-right: 0.375rem; } - .sm\:my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; - } - .sm\:mx-2\.5 { margin-left: 0.625rem; margin-right: 0.625rem; } - .sm\:my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; - } - .sm\:mx-3\.5 { margin-left: 0.875rem; margin-right: 0.875rem; } - .sm\:-my-0 { - margin-top: 0px; - margin-bottom: 0px; - } - .sm\:-mx-0 { margin-left: 0px; margin-right: 0px; } - .sm\:-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; - } - .sm\:-mx-1 { margin-left: -0.25rem; margin-right: -0.25rem; } - .sm\:-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; - } - .sm\:-mx-2 { margin-left: -0.5rem; margin-right: -0.5rem; } - .sm\:-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; - } - .sm\:-mx-3 { margin-left: -0.75rem; margin-right: -0.75rem; } - .sm\:-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; - } - .sm\:-mx-4 { margin-left: -1rem; margin-right: -1rem; } - .sm\:-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; - } - .sm\:-mx-5 { margin-left: -1.25rem; margin-right: -1.25rem; } - .sm\:-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; - } - .sm\:-mx-6 { margin-left: -1.5rem; margin-right: -1.5rem; } - .sm\:-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; - } - .sm\:-mx-7 { margin-left: -1.75rem; margin-right: -1.75rem; } - .sm\:-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; - } - .sm\:-mx-8 { margin-left: -2rem; margin-right: -2rem; } - .sm\:-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; - } - .sm\:-mx-9 { margin-left: -2.25rem; margin-right: -2.25rem; } - .sm\:-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; - } - .sm\:-mx-10 { margin-left: -2.5rem; margin-right: -2.5rem; } - .sm\:-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; - } - .sm\:-mx-11 { margin-left: -2.75rem; margin-right: -2.75rem; } - .sm\:-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; - } - .sm\:-mx-12 { margin-left: -3rem; margin-right: -3rem; } - .sm\:-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; - } - .sm\:-mx-14 { margin-left: -3.5rem; margin-right: -3.5rem; } - .sm\:-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; - } - .sm\:-mx-16 { margin-left: -4rem; margin-right: -4rem; } - .sm\:-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; - } - .sm\:-mx-20 { margin-left: -5rem; margin-right: -5rem; } - .sm\:-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; - } - .sm\:-mx-24 { margin-left: -6rem; margin-right: -6rem; } - .sm\:-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; - } - .sm\:-mx-28 { margin-left: -7rem; margin-right: -7rem; } - .sm\:-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; - } - .sm\:-mx-32 { margin-left: -8rem; margin-right: -8rem; } - .sm\:-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; - } - .sm\:-mx-36 { margin-left: -9rem; margin-right: -9rem; } - .sm\:-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; - } - .sm\:-mx-40 { margin-left: -10rem; margin-right: -10rem; } - .sm\:-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; - } - .sm\:-mx-44 { margin-left: -11rem; margin-right: -11rem; } - .sm\:-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; - } - .sm\:-mx-48 { margin-left: -12rem; margin-right: -12rem; } - .sm\:-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; - } - .sm\:-mx-52 { margin-left: -13rem; margin-right: -13rem; } - .sm\:-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; - } - .sm\:-mx-56 { margin-left: -14rem; margin-right: -14rem; } - .sm\:-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; - } - .sm\:-mx-60 { margin-left: -15rem; margin-right: -15rem; } - .sm\:-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; - } - .sm\:-mx-64 { margin-left: -16rem; margin-right: -16rem; } - .sm\:-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; - } - .sm\:-mx-72 { margin-left: -18rem; margin-right: -18rem; } - .sm\:-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; - } - .sm\:-mx-80 { margin-left: -20rem; margin-right: -20rem; } - .sm\:-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; - } - .sm\:-mx-96 { margin-left: -24rem; margin-right: -24rem; } - .sm\:-my-px { - margin-top: -1px; - margin-bottom: -1px; - } - .sm\:-mx-px { margin-left: -1px; margin-right: -1px; } - .sm\:-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; - } - .sm\:-mx-0\.5 { margin-left: -0.125rem; margin-right: -0.125rem; } - .sm\:-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; - } - .sm\:-mx-1\.5 { margin-left: -0.375rem; margin-right: -0.375rem; } - .sm\:-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; - } - .sm\:-mx-2\.5 { margin-left: -0.625rem; margin-right: -0.625rem; } - .sm\:-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; - } - .sm\:-mx-3\.5 { margin-left: -0.875rem; margin-right: -0.875rem; } - .sm\:mt-0 { + .sm\:my-0 { margin-top: 0px; + margin-bottom: 0px; } - .sm\:mr-0 { - margin-right: 0px; - } - - .sm\:mb-0 { - margin-bottom: 0px; + .sm\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } - .sm\:ml-0 { - margin-left: 0px; + .sm\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; } - .sm\:mt-1 { - margin-top: 0.25rem; + .sm\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; } - .sm\:mr-1 { - margin-right: 0.25rem; + .sm\:my-4 { + margin-top: 1rem; + margin-bottom: 1rem; } - .sm\:mb-1 { - margin-bottom: 0.25rem; + .sm\:my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; } - .sm\:ml-1 { - margin-left: 0.25rem; + .sm\:my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; } - .sm\:mt-2 { - margin-top: 0.5rem; + .sm\:my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; } - .sm\:mr-2 { - margin-right: 0.5rem; + .sm\:my-8 { + margin-top: 2rem; + margin-bottom: 2rem; } - .sm\:mb-2 { - margin-bottom: 0.5rem; + .sm\:my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; } - .sm\:ml-2 { - margin-left: 0.5rem; + .sm\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; } - .sm\:mt-3 { - margin-top: 0.75rem; + .sm\:my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; } - .sm\:mr-3 { - margin-right: 0.75rem; + .sm\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; } - .sm\:mb-3 { - margin-bottom: 0.75rem; + .sm\:my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; } - .sm\:ml-3 { - margin-left: 0.75rem; + .sm\:my-16 { + margin-top: 4rem; + margin-bottom: 4rem; } - .sm\:mt-4 { - margin-top: 1rem; + .sm\:my-20 { + margin-top: 5rem; + margin-bottom: 5rem; } - .sm\:mr-4 { - margin-right: 1rem; + .sm\:my-24 { + margin-top: 6rem; + margin-bottom: 6rem; } - .sm\:mb-4 { - margin-bottom: 1rem; + .sm\:my-28 { + margin-top: 7rem; + margin-bottom: 7rem; } - .sm\:ml-4 { - margin-left: 1rem; + .sm\:my-32 { + margin-top: 8rem; + margin-bottom: 8rem; } - .sm\:mt-5 { - margin-top: 1.25rem; + .sm\:my-36 { + margin-top: 9rem; + margin-bottom: 9rem; } - .sm\:mr-5 { - margin-right: 1.25rem; + .sm\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; } - .sm\:mb-5 { - margin-bottom: 1.25rem; + .sm\:my-44 { + margin-top: 11rem; + margin-bottom: 11rem; } - .sm\:ml-5 { - margin-left: 1.25rem; + .sm\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; } - .sm\:mt-6 { - margin-top: 1.5rem; + .sm\:my-52 { + margin-top: 13rem; + margin-bottom: 13rem; } - .sm\:mr-6 { - margin-right: 1.5rem; + .sm\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; } - .sm\:mb-6 { - margin-bottom: 1.5rem; + .sm\:my-60 { + margin-top: 15rem; + margin-bottom: 15rem; } - .sm\:ml-6 { - margin-left: 1.5rem; + .sm\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; } - .sm\:mt-7 { - margin-top: 1.75rem; + .sm\:my-72 { + margin-top: 18rem; + margin-bottom: 18rem; } - .sm\:mr-7 { - margin-right: 1.75rem; + .sm\:my-80 { + margin-top: 20rem; + margin-bottom: 20rem; } - .sm\:mb-7 { - margin-bottom: 1.75rem; + .sm\:my-96 { + margin-top: 24rem; + margin-bottom: 24rem; } - .sm\:ml-7 { - margin-left: 1.75rem; + .sm\:my-auto { + margin-top: auto; + margin-bottom: auto; } - .sm\:mt-8 { - margin-top: 2rem; + .sm\:my-px { + margin-top: 1px; + margin-bottom: 1px; } - .sm\:mr-8 { - margin-right: 2rem; + .sm\:my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; } - .sm\:mb-8 { - margin-bottom: 2rem; + .sm\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; } - .sm\:ml-8 { - margin-left: 2rem; + .sm\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; } - .sm\:mt-9 { - margin-top: 2.25rem; + .sm\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; } - .sm\:mr-9 { - margin-right: 2.25rem; + .sm\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .sm\:mb-9 { - margin-bottom: 2.25rem; + .sm\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } - .sm\:ml-9 { - margin-left: 2.25rem; + .sm\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } - .sm\:mt-10 { - margin-top: 2.5rem; + .sm\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } - .sm\:mr-10 { - margin-right: 2.5rem; + .sm\:-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } - .sm\:mb-10 { - margin-bottom: 2.5rem; + .sm\:-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } - .sm\:ml-10 { - margin-left: 2.5rem; + .sm\:-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } - .sm\:mt-11 { - margin-top: 2.75rem; + .sm\:-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } - .sm\:mr-11 { - margin-right: 2.75rem; + .sm\:-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } - .sm\:mb-11 { - margin-bottom: 2.75rem; + .sm\:-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } - .sm\:ml-11 { - margin-left: 2.75rem; + .sm\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } - .sm\:mt-12 { - margin-top: 3rem; + .sm\:-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } - .sm\:mr-12 { - margin-right: 3rem; + .sm\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } - .sm\:mb-12 { - margin-bottom: 3rem; + .sm\:-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } - .sm\:ml-12 { - margin-left: 3rem; + .sm\:-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } - .sm\:mt-14 { - margin-top: 3.5rem; + .sm\:-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } - .sm\:mr-14 { - margin-right: 3.5rem; + .sm\:-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } - .sm\:mb-14 { - margin-bottom: 3.5rem; + .sm\:-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } - .sm\:ml-14 { - margin-left: 3.5rem; + .sm\:-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } - .sm\:mt-16 { - margin-top: 4rem; + .sm\:-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } - .sm\:mr-16 { - margin-right: 4rem; + .sm\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } - .sm\:mb-16 { - margin-bottom: 4rem; + .sm\:-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } - .sm\:ml-16 { - margin-left: 4rem; + .sm\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } - .sm\:mt-20 { - margin-top: 5rem; + .sm\:-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } - .sm\:mr-20 { - margin-right: 5rem; + .sm\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } - .sm\:mb-20 { - margin-bottom: 5rem; + .sm\:-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } - .sm\:ml-20 { - margin-left: 5rem; + .sm\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } - .sm\:mt-24 { - margin-top: 6rem; + .sm\:-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } - .sm\:mr-24 { - margin-right: 6rem; + .sm\:-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } - .sm\:mb-24 { - margin-bottom: 6rem; + .sm\:-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } - .sm\:ml-24 { - margin-left: 6rem; + .sm\:-my-px { + margin-top: -1px; + margin-bottom: -1px; } - .sm\:mt-28 { - margin-top: 7rem; + .sm\:-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } - .sm\:mr-28 { - margin-right: 7rem; + .sm\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } - .sm\:mb-28 { - margin-bottom: 7rem; + .sm\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } - .sm\:ml-28 { - margin-left: 7rem; + .sm\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } - .sm\:mt-32 { - margin-top: 8rem; + .sm\:mt-0 { + margin-top: 0px; } - .sm\:mr-32 { - margin-right: 8rem; + .sm\:mt-1 { + margin-top: 0.25rem; } - .sm\:mb-32 { - margin-bottom: 8rem; + .sm\:mt-2 { + margin-top: 0.5rem; } - .sm\:ml-32 { - margin-left: 8rem; + .sm\:mt-3 { + margin-top: 0.75rem; } - .sm\:mt-36 { - margin-top: 9rem; + .sm\:mt-4 { + margin-top: 1rem; } - .sm\:mr-36 { - margin-right: 9rem; + .sm\:mt-5 { + margin-top: 1.25rem; } - .sm\:mb-36 { - margin-bottom: 9rem; + .sm\:mt-6 { + margin-top: 1.5rem; } - .sm\:ml-36 { - margin-left: 9rem; + .sm\:mt-7 { + margin-top: 1.75rem; } - .sm\:mt-40 { - margin-top: 10rem; + .sm\:mt-8 { + margin-top: 2rem; } - .sm\:mr-40 { - margin-right: 10rem; + .sm\:mt-9 { + margin-top: 2.25rem; } - .sm\:mb-40 { - margin-bottom: 10rem; + .sm\:mt-10 { + margin-top: 2.5rem; } - .sm\:ml-40 { - margin-left: 10rem; + .sm\:mt-11 { + margin-top: 2.75rem; } - .sm\:mt-44 { - margin-top: 11rem; + .sm\:mt-12 { + margin-top: 3rem; } - .sm\:mr-44 { - margin-right: 11rem; + .sm\:mt-14 { + margin-top: 3.5rem; } - .sm\:mb-44 { - margin-bottom: 11rem; + .sm\:mt-16 { + margin-top: 4rem; } - .sm\:ml-44 { - margin-left: 11rem; + .sm\:mt-20 { + margin-top: 5rem; } - .sm\:mt-48 { - margin-top: 12rem; + .sm\:mt-24 { + margin-top: 6rem; } - .sm\:mr-48 { - margin-right: 12rem; + .sm\:mt-28 { + margin-top: 7rem; } - .sm\:mb-48 { - margin-bottom: 12rem; + .sm\:mt-32 { + margin-top: 8rem; } - .sm\:ml-48 { - margin-left: 12rem; + .sm\:mt-36 { + margin-top: 9rem; } - .sm\:mt-52 { - margin-top: 13rem; + .sm\:mt-40 { + margin-top: 10rem; } - .sm\:mr-52 { - margin-right: 13rem; + .sm\:mt-44 { + margin-top: 11rem; } - .sm\:mb-52 { - margin-bottom: 13rem; + .sm\:mt-48 { + margin-top: 12rem; } - .sm\:ml-52 { - margin-left: 13rem; + .sm\:mt-52 { + margin-top: 13rem; } .sm\:mt-56 { margin-top: 14rem; } - .sm\:mr-56 { - margin-right: 14rem; + .sm\:mt-60 { + margin-top: 15rem; } - .sm\:mb-56 { - margin-bottom: 14rem; + .sm\:mt-64 { + margin-top: 16rem; } - .sm\:ml-56 { - margin-left: 14rem; + .sm\:mt-72 { + margin-top: 18rem; } - .sm\:mt-60 { - margin-top: 15rem; + .sm\:mt-80 { + margin-top: 20rem; } - .sm\:mr-60 { - margin-right: 15rem; + .sm\:mt-96 { + margin-top: 24rem; } - .sm\:mb-60 { - margin-bottom: 15rem; + .sm\:mt-auto { + margin-top: auto; } - .sm\:ml-60 { - margin-left: 15rem; + .sm\:mt-px { + margin-top: 1px; } - .sm\:mt-64 { - margin-top: 16rem; + .sm\:mt-0\.5 { + margin-top: 0.125rem; } - .sm\:mr-64 { - margin-right: 16rem; + .sm\:mt-1\.5 { + margin-top: 0.375rem; } - .sm\:mb-64 { - margin-bottom: 16rem; + .sm\:mt-2\.5 { + margin-top: 0.625rem; } - .sm\:ml-64 { - margin-left: 16rem; + .sm\:mt-3\.5 { + margin-top: 0.875rem; } - .sm\:mt-72 { - margin-top: 18rem; + .sm\:-mt-0 { + margin-top: 0px; } - .sm\:mr-72 { - margin-right: 18rem; + .sm\:-mt-1 { + margin-top: -0.25rem; } - .sm\:mb-72 { - margin-bottom: 18rem; + .sm\:-mt-2 { + margin-top: -0.5rem; } - .sm\:ml-72 { - margin-left: 18rem; + .sm\:-mt-3 { + margin-top: -0.75rem; } - .sm\:mt-80 { - margin-top: 20rem; + .sm\:-mt-4 { + margin-top: -1rem; } - .sm\:mr-80 { - margin-right: 20rem; + .sm\:-mt-5 { + margin-top: -1.25rem; } - .sm\:mb-80 { - margin-bottom: 20rem; + .sm\:-mt-6 { + margin-top: -1.5rem; } - .sm\:ml-80 { - margin-left: 20rem; + .sm\:-mt-7 { + margin-top: -1.75rem; } - .sm\:mt-96 { - margin-top: 24rem; + .sm\:-mt-8 { + margin-top: -2rem; } - .sm\:mr-96 { - margin-right: 24rem; + .sm\:-mt-9 { + margin-top: -2.25rem; } - .sm\:mb-96 { - margin-bottom: 24rem; + .sm\:-mt-10 { + margin-top: -2.5rem; } - .sm\:ml-96 { - margin-left: 24rem; + .sm\:-mt-11 { + margin-top: -2.75rem; } - .sm\:mt-auto { - margin-top: auto; + .sm\:-mt-12 { + margin-top: -3rem; } - .sm\:mr-auto { - margin-right: auto; + .sm\:-mt-14 { + margin-top: -3.5rem; } - .sm\:mb-auto { - margin-bottom: auto; + .sm\:-mt-16 { + margin-top: -4rem; } - .sm\:ml-auto { - margin-left: auto; + .sm\:-mt-20 { + margin-top: -5rem; } - .sm\:mt-px { - margin-top: 1px; + .sm\:-mt-24 { + margin-top: -6rem; } - .sm\:mr-px { - margin-right: 1px; + .sm\:-mt-28 { + margin-top: -7rem; } - .sm\:mb-px { - margin-bottom: 1px; + .sm\:-mt-32 { + margin-top: -8rem; } - .sm\:ml-px { - margin-left: 1px; + .sm\:-mt-36 { + margin-top: -9rem; } - .sm\:mt-0\.5 { - margin-top: 0.125rem; + .sm\:-mt-40 { + margin-top: -10rem; } - .sm\:mr-0\.5 { - margin-right: 0.125rem; + .sm\:-mt-44 { + margin-top: -11rem; } - .sm\:mb-0\.5 { - margin-bottom: 0.125rem; + .sm\:-mt-48 { + margin-top: -12rem; } - .sm\:ml-0\.5 { - margin-left: 0.125rem; + .sm\:-mt-52 { + margin-top: -13rem; } - .sm\:mt-1\.5 { - margin-top: 0.375rem; + .sm\:-mt-56 { + margin-top: -14rem; } - .sm\:mr-1\.5 { - margin-right: 0.375rem; + .sm\:-mt-60 { + margin-top: -15rem; } - .sm\:mb-1\.5 { - margin-bottom: 0.375rem; + .sm\:-mt-64 { + margin-top: -16rem; } - .sm\:ml-1\.5 { - margin-left: 0.375rem; + .sm\:-mt-72 { + margin-top: -18rem; } - .sm\:mt-2\.5 { - margin-top: 0.625rem; + .sm\:-mt-80 { + margin-top: -20rem; } - .sm\:mr-2\.5 { - margin-right: 0.625rem; + .sm\:-mt-96 { + margin-top: -24rem; } - .sm\:mb-2\.5 { - margin-bottom: 0.625rem; + .sm\:-mt-px { + margin-top: -1px; } - .sm\:ml-2\.5 { - margin-left: 0.625rem; + .sm\:-mt-0\.5 { + margin-top: -0.125rem; } - .sm\:mt-3\.5 { - margin-top: 0.875rem; + .sm\:-mt-1\.5 { + margin-top: -0.375rem; } - .sm\:mr-3\.5 { - margin-right: 0.875rem; + .sm\:-mt-2\.5 { + margin-top: -0.625rem; } - .sm\:mb-3\.5 { - margin-bottom: 0.875rem; + .sm\:-mt-3\.5 { + margin-top: -0.875rem; } - .sm\:ml-3\.5 { - margin-left: 0.875rem; + .sm\:mr-0 { + margin-right: 0px; } - .sm\:-mt-0 { - margin-top: 0px; + .sm\:mr-1 { + margin-right: 0.25rem; } - .sm\:-mr-0 { - margin-right: 0px; + .sm\:mr-2 { + margin-right: 0.5rem; } - .sm\:-mb-0 { - margin-bottom: 0px; + .sm\:mr-3 { + margin-right: 0.75rem; } - .sm\:-ml-0 { - margin-left: 0px; + .sm\:mr-4 { + margin-right: 1rem; } - .sm\:-mt-1 { - margin-top: -0.25rem; + .sm\:mr-5 { + margin-right: 1.25rem; } - .sm\:-mr-1 { - margin-right: -0.25rem; + .sm\:mr-6 { + margin-right: 1.5rem; } - .sm\:-mb-1 { - margin-bottom: -0.25rem; + .sm\:mr-7 { + margin-right: 1.75rem; } - .sm\:-ml-1 { - margin-left: -0.25rem; + .sm\:mr-8 { + margin-right: 2rem; } - .sm\:-mt-2 { - margin-top: -0.5rem; + .sm\:mr-9 { + margin-right: 2.25rem; } - .sm\:-mr-2 { - margin-right: -0.5rem; + .sm\:mr-10 { + margin-right: 2.5rem; } - .sm\:-mb-2 { - margin-bottom: -0.5rem; + .sm\:mr-11 { + margin-right: 2.75rem; } - .sm\:-ml-2 { - margin-left: -0.5rem; + .sm\:mr-12 { + margin-right: 3rem; } - .sm\:-mt-3 { - margin-top: -0.75rem; + .sm\:mr-14 { + margin-right: 3.5rem; } - .sm\:-mr-3 { - margin-right: -0.75rem; + .sm\:mr-16 { + margin-right: 4rem; } - .sm\:-mb-3 { - margin-bottom: -0.75rem; + .sm\:mr-20 { + margin-right: 5rem; } - .sm\:-ml-3 { - margin-left: -0.75rem; + .sm\:mr-24 { + margin-right: 6rem; } - .sm\:-mt-4 { - margin-top: -1rem; + .sm\:mr-28 { + margin-right: 7rem; } - .sm\:-mr-4 { - margin-right: -1rem; + .sm\:mr-32 { + margin-right: 8rem; } - .sm\:-mb-4 { - margin-bottom: -1rem; + .sm\:mr-36 { + margin-right: 9rem; } - .sm\:-ml-4 { - margin-left: -1rem; + .sm\:mr-40 { + margin-right: 10rem; } - .sm\:-mt-5 { - margin-top: -1.25rem; + .sm\:mr-44 { + margin-right: 11rem; } - .sm\:-mr-5 { - margin-right: -1.25rem; + .sm\:mr-48 { + margin-right: 12rem; } - .sm\:-mb-5 { - margin-bottom: -1.25rem; + .sm\:mr-52 { + margin-right: 13rem; } - .sm\:-ml-5 { - margin-left: -1.25rem; + .sm\:mr-56 { + margin-right: 14rem; } - .sm\:-mt-6 { - margin-top: -1.5rem; + .sm\:mr-60 { + margin-right: 15rem; } - .sm\:-mr-6 { - margin-right: -1.5rem; + .sm\:mr-64 { + margin-right: 16rem; } - .sm\:-mb-6 { - margin-bottom: -1.5rem; + .sm\:mr-72 { + margin-right: 18rem; } - .sm\:-ml-6 { - margin-left: -1.5rem; + .sm\:mr-80 { + margin-right: 20rem; } - .sm\:-mt-7 { - margin-top: -1.75rem; + .sm\:mr-96 { + margin-right: 24rem; } - .sm\:-mr-7 { - margin-right: -1.75rem; + .sm\:mr-auto { + margin-right: auto; } - .sm\:-mb-7 { - margin-bottom: -1.75rem; + .sm\:mr-px { + margin-right: 1px; } - .sm\:-ml-7 { - margin-left: -1.75rem; + .sm\:mr-0\.5 { + margin-right: 0.125rem; } - .sm\:-mt-8 { - margin-top: -2rem; + .sm\:mr-1\.5 { + margin-right: 0.375rem; } - .sm\:-mr-8 { - margin-right: -2rem; + .sm\:mr-2\.5 { + margin-right: 0.625rem; } - .sm\:-mb-8 { - margin-bottom: -2rem; + .sm\:mr-3\.5 { + margin-right: 0.875rem; } - .sm\:-ml-8 { - margin-left: -2rem; + .sm\:-mr-0 { + margin-right: 0px; } - .sm\:-mt-9 { - margin-top: -2.25rem; + .sm\:-mr-1 { + margin-right: -0.25rem; } - .sm\:-mr-9 { - margin-right: -2.25rem; + .sm\:-mr-2 { + margin-right: -0.5rem; } - .sm\:-mb-9 { - margin-bottom: -2.25rem; + .sm\:-mr-3 { + margin-right: -0.75rem; } - .sm\:-ml-9 { - margin-left: -2.25rem; + .sm\:-mr-4 { + margin-right: -1rem; } - .sm\:-mt-10 { - margin-top: -2.5rem; + .sm\:-mr-5 { + margin-right: -1.25rem; } - .sm\:-mr-10 { - margin-right: -2.5rem; + .sm\:-mr-6 { + margin-right: -1.5rem; } - .sm\:-mb-10 { - margin-bottom: -2.5rem; + .sm\:-mr-7 { + margin-right: -1.75rem; } - .sm\:-ml-10 { - margin-left: -2.5rem; + .sm\:-mr-8 { + margin-right: -2rem; } - .sm\:-mt-11 { - margin-top: -2.75rem; + .sm\:-mr-9 { + margin-right: -2.25rem; + } + + .sm\:-mr-10 { + margin-right: -2.5rem; } .sm\:-mr-11 { margin-right: -2.75rem; } - .sm\:-mb-11 { - margin-bottom: -2.75rem; + .sm\:-mr-12 { + margin-right: -3rem; } - .sm\:-ml-11 { - margin-left: -2.75rem; + .sm\:-mr-14 { + margin-right: -3.5rem; } - .sm\:-mt-12 { - margin-top: -3rem; + .sm\:-mr-16 { + margin-right: -4rem; } - .sm\:-mr-12 { - margin-right: -3rem; + .sm\:-mr-20 { + margin-right: -5rem; } - .sm\:-mb-12 { - margin-bottom: -3rem; + .sm\:-mr-24 { + margin-right: -6rem; } - .sm\:-ml-12 { - margin-left: -3rem; + .sm\:-mr-28 { + margin-right: -7rem; } - .sm\:-mt-14 { - margin-top: -3.5rem; + .sm\:-mr-32 { + margin-right: -8rem; } - .sm\:-mr-14 { - margin-right: -3.5rem; + .sm\:-mr-36 { + margin-right: -9rem; } - .sm\:-mb-14 { - margin-bottom: -3.5rem; + .sm\:-mr-40 { + margin-right: -10rem; } - .sm\:-ml-14 { - margin-left: -3.5rem; + .sm\:-mr-44 { + margin-right: -11rem; } - .sm\:-mt-16 { - margin-top: -4rem; + .sm\:-mr-48 { + margin-right: -12rem; } - .sm\:-mr-16 { - margin-right: -4rem; + .sm\:-mr-52 { + margin-right: -13rem; } - .sm\:-mb-16 { - margin-bottom: -4rem; + .sm\:-mr-56 { + margin-right: -14rem; } - .sm\:-ml-16 { - margin-left: -4rem; + .sm\:-mr-60 { + margin-right: -15rem; } - .sm\:-mt-20 { - margin-top: -5rem; + .sm\:-mr-64 { + margin-right: -16rem; } - .sm\:-mr-20 { - margin-right: -5rem; + .sm\:-mr-72 { + margin-right: -18rem; } - .sm\:-mb-20 { - margin-bottom: -5rem; + .sm\:-mr-80 { + margin-right: -20rem; } - .sm\:-ml-20 { - margin-left: -5rem; + .sm\:-mr-96 { + margin-right: -24rem; } - .sm\:-mt-24 { - margin-top: -6rem; + .sm\:-mr-px { + margin-right: -1px; } - .sm\:-mr-24 { - margin-right: -6rem; + .sm\:-mr-0\.5 { + margin-right: -0.125rem; } - .sm\:-mb-24 { - margin-bottom: -6rem; + .sm\:-mr-1\.5 { + margin-right: -0.375rem; } - .sm\:-ml-24 { - margin-left: -6rem; + .sm\:-mr-2\.5 { + margin-right: -0.625rem; } - .sm\:-mt-28 { - margin-top: -7rem; + .sm\:-mr-3\.5 { + margin-right: -0.875rem; } - .sm\:-mr-28 { - margin-right: -7rem; + .sm\:mb-0 { + margin-bottom: 0px; } - .sm\:-mb-28 { - margin-bottom: -7rem; + .sm\:mb-1 { + margin-bottom: 0.25rem; } - .sm\:-ml-28 { - margin-left: -7rem; + .sm\:mb-2 { + margin-bottom: 0.5rem; } - .sm\:-mt-32 { - margin-top: -8rem; + .sm\:mb-3 { + margin-bottom: 0.75rem; } - .sm\:-mr-32 { - margin-right: -8rem; + .sm\:mb-4 { + margin-bottom: 1rem; } - .sm\:-mb-32 { - margin-bottom: -8rem; + .sm\:mb-5 { + margin-bottom: 1.25rem; } - .sm\:-ml-32 { - margin-left: -8rem; + .sm\:mb-6 { + margin-bottom: 1.5rem; } - .sm\:-mt-36 { - margin-top: -9rem; + .sm\:mb-7 { + margin-bottom: 1.75rem; } - .sm\:-mr-36 { - margin-right: -9rem; + .sm\:mb-8 { + margin-bottom: 2rem; } - .sm\:-mb-36 { - margin-bottom: -9rem; + .sm\:mb-9 { + margin-bottom: 2.25rem; } - .sm\:-ml-36 { - margin-left: -9rem; + .sm\:mb-10 { + margin-bottom: 2.5rem; } - .sm\:-mt-40 { - margin-top: -10rem; + .sm\:mb-11 { + margin-bottom: 2.75rem; } - .sm\:-mr-40 { - margin-right: -10rem; + .sm\:mb-12 { + margin-bottom: 3rem; } - .sm\:-mb-40 { - margin-bottom: -10rem; + .sm\:mb-14 { + margin-bottom: 3.5rem; } - .sm\:-ml-40 { - margin-left: -10rem; + .sm\:mb-16 { + margin-bottom: 4rem; } - .sm\:-mt-44 { - margin-top: -11rem; + .sm\:mb-20 { + margin-bottom: 5rem; } - .sm\:-mr-44 { - margin-right: -11rem; + .sm\:mb-24 { + margin-bottom: 6rem; } - .sm\:-mb-44 { - margin-bottom: -11rem; + .sm\:mb-28 { + margin-bottom: 7rem; } - .sm\:-ml-44 { - margin-left: -11rem; + .sm\:mb-32 { + margin-bottom: 8rem; } - .sm\:-mt-48 { - margin-top: -12rem; + .sm\:mb-36 { + margin-bottom: 9rem; } - .sm\:-mr-48 { - margin-right: -12rem; + .sm\:mb-40 { + margin-bottom: 10rem; } - .sm\:-mb-48 { - margin-bottom: -12rem; + .sm\:mb-44 { + margin-bottom: 11rem; } - .sm\:-ml-48 { - margin-left: -12rem; + .sm\:mb-48 { + margin-bottom: 12rem; } - .sm\:-mt-52 { - margin-top: -13rem; + .sm\:mb-52 { + margin-bottom: 13rem; } - .sm\:-mr-52 { - margin-right: -13rem; + .sm\:mb-56 { + margin-bottom: 14rem; } - .sm\:-mb-52 { - margin-bottom: -13rem; + .sm\:mb-60 { + margin-bottom: 15rem; } - .sm\:-ml-52 { - margin-left: -13rem; + .sm\:mb-64 { + margin-bottom: 16rem; } - .sm\:-mt-56 { - margin-top: -14rem; + .sm\:mb-72 { + margin-bottom: 18rem; } - .sm\:-mr-56 { - margin-right: -14rem; + .sm\:mb-80 { + margin-bottom: 20rem; } - .sm\:-mb-56 { - margin-bottom: -14rem; + .sm\:mb-96 { + margin-bottom: 24rem; } - .sm\:-ml-56 { - margin-left: -14rem; + .sm\:mb-auto { + margin-bottom: auto; } - .sm\:-mt-60 { - margin-top: -15rem; + .sm\:mb-px { + margin-bottom: 1px; } - .sm\:-mr-60 { - margin-right: -15rem; + .sm\:mb-0\.5 { + margin-bottom: 0.125rem; } - .sm\:-mb-60 { - margin-bottom: -15rem; + .sm\:mb-1\.5 { + margin-bottom: 0.375rem; } - .sm\:-ml-60 { - margin-left: -15rem; + .sm\:mb-2\.5 { + margin-bottom: 0.625rem; } - .sm\:-mt-64 { - margin-top: -16rem; + .sm\:mb-3\.5 { + margin-bottom: 0.875rem; } - .sm\:-mr-64 { - margin-right: -16rem; + .sm\:-mb-0 { + margin-bottom: 0px; } - .sm\:-mb-64 { - margin-bottom: -16rem; + .sm\:-mb-1 { + margin-bottom: -0.25rem; } - .sm\:-ml-64 { - margin-left: -16rem; + .sm\:-mb-2 { + margin-bottom: -0.5rem; } - .sm\:-mt-72 { - margin-top: -18rem; + .sm\:-mb-3 { + margin-bottom: -0.75rem; } - .sm\:-mr-72 { - margin-right: -18rem; + .sm\:-mb-4 { + margin-bottom: -1rem; } - .sm\:-mb-72 { - margin-bottom: -18rem; + .sm\:-mb-5 { + margin-bottom: -1.25rem; } - .sm\:-ml-72 { - margin-left: -18rem; + .sm\:-mb-6 { + margin-bottom: -1.5rem; } - .sm\:-mt-80 { - margin-top: -20rem; + .sm\:-mb-7 { + margin-bottom: -1.75rem; } - .sm\:-mr-80 { - margin-right: -20rem; + .sm\:-mb-8 { + margin-bottom: -2rem; } - .sm\:-mb-80 { - margin-bottom: -20rem; + .sm\:-mb-9 { + margin-bottom: -2.25rem; } - .sm\:-ml-80 { - margin-left: -20rem; + .sm\:-mb-10 { + margin-bottom: -2.5rem; } - .sm\:-mt-96 { - margin-top: -24rem; + .sm\:-mb-11 { + margin-bottom: -2.75rem; } - .sm\:-mr-96 { - margin-right: -24rem; + .sm\:-mb-12 { + margin-bottom: -3rem; } - .sm\:-mb-96 { - margin-bottom: -24rem; + .sm\:-mb-14 { + margin-bottom: -3.5rem; } - .sm\:-ml-96 { - margin-left: -24rem; + .sm\:-mb-16 { + margin-bottom: -4rem; } - .sm\:-mt-px { - margin-top: -1px; + .sm\:-mb-20 { + margin-bottom: -5rem; } - .sm\:-mr-px { - margin-right: -1px; + .sm\:-mb-24 { + margin-bottom: -6rem; } - .sm\:-mb-px { - margin-bottom: -1px; + .sm\:-mb-28 { + margin-bottom: -7rem; } - .sm\:-ml-px { - margin-left: -1px; + .sm\:-mb-32 { + margin-bottom: -8rem; } - .sm\:-mt-0\.5 { - margin-top: -0.125rem; + .sm\:-mb-36 { + margin-bottom: -9rem; } - .sm\:-mr-0\.5 { - margin-right: -0.125rem; + .sm\:-mb-40 { + margin-bottom: -10rem; } - .sm\:-mb-0\.5 { - margin-bottom: -0.125rem; + .sm\:-mb-44 { + margin-bottom: -11rem; } - .sm\:-ml-0\.5 { - margin-left: -0.125rem; + .sm\:-mb-48 { + margin-bottom: -12rem; } - .sm\:-mt-1\.5 { - margin-top: -0.375rem; + .sm\:-mb-52 { + margin-bottom: -13rem; } - .sm\:-mr-1\.5 { - margin-right: -0.375rem; + .sm\:-mb-56 { + margin-bottom: -14rem; } - .sm\:-mb-1\.5 { - margin-bottom: -0.375rem; + .sm\:-mb-60 { + margin-bottom: -15rem; } - .sm\:-ml-1\.5 { - margin-left: -0.375rem; + .sm\:-mb-64 { + margin-bottom: -16rem; } - .sm\:-mt-2\.5 { - margin-top: -0.625rem; + .sm\:-mb-72 { + margin-bottom: -18rem; } - .sm\:-mr-2\.5 { - margin-right: -0.625rem; + .sm\:-mb-80 { + margin-bottom: -20rem; } - .sm\:-mb-2\.5 { - margin-bottom: -0.625rem; + .sm\:-mb-96 { + margin-bottom: -24rem; } - .sm\:-ml-2\.5 { - margin-left: -0.625rem; + .sm\:-mb-px { + margin-bottom: -1px; } - .sm\:-mt-3\.5 { - margin-top: -0.875rem; + .sm\:-mb-0\.5 { + margin-bottom: -0.125rem; } - .sm\:-mr-3\.5 { - margin-right: -0.875rem; + .sm\:-mb-1\.5 { + margin-bottom: -0.375rem; + } + + .sm\:-mb-2\.5 { + margin-bottom: -0.625rem; } .sm\:-mb-3\.5 { margin-bottom: -0.875rem; } + .sm\:ml-0 { + margin-left: 0px; + } + + .sm\:ml-1 { + margin-left: 0.25rem; + } + + .sm\:ml-2 { + margin-left: 0.5rem; + } + + .sm\:ml-3 { + margin-left: 0.75rem; + } + + .sm\:ml-4 { + margin-left: 1rem; + } + + .sm\:ml-5 { + margin-left: 1.25rem; + } + + .sm\:ml-6 { + margin-left: 1.5rem; + } + + .sm\:ml-7 { + margin-left: 1.75rem; + } + + .sm\:ml-8 { + margin-left: 2rem; + } + + .sm\:ml-9 { + margin-left: 2.25rem; + } + + .sm\:ml-10 { + margin-left: 2.5rem; + } + + .sm\:ml-11 { + margin-left: 2.75rem; + } + + .sm\:ml-12 { + margin-left: 3rem; + } + + .sm\:ml-14 { + margin-left: 3.5rem; + } + + .sm\:ml-16 { + margin-left: 4rem; + } + + .sm\:ml-20 { + margin-left: 5rem; + } + + .sm\:ml-24 { + margin-left: 6rem; + } + + .sm\:ml-28 { + margin-left: 7rem; + } + + .sm\:ml-32 { + margin-left: 8rem; + } + + .sm\:ml-36 { + margin-left: 9rem; + } + + .sm\:ml-40 { + margin-left: 10rem; + } + + .sm\:ml-44 { + margin-left: 11rem; + } + + .sm\:ml-48 { + margin-left: 12rem; + } + + .sm\:ml-52 { + margin-left: 13rem; + } + + .sm\:ml-56 { + margin-left: 14rem; + } + + .sm\:ml-60 { + margin-left: 15rem; + } + + .sm\:ml-64 { + margin-left: 16rem; + } + + .sm\:ml-72 { + margin-left: 18rem; + } + + .sm\:ml-80 { + margin-left: 20rem; + } + + .sm\:ml-96 { + margin-left: 24rem; + } + + .sm\:ml-auto { + margin-left: auto; + } + + .sm\:ml-px { + margin-left: 1px; + } + + .sm\:ml-0\.5 { + margin-left: 0.125rem; + } + + .sm\:ml-1\.5 { + margin-left: 0.375rem; + } + + .sm\:ml-2\.5 { + margin-left: 0.625rem; + } + + .sm\:ml-3\.5 { + margin-left: 0.875rem; + } + + .sm\:-ml-0 { + margin-left: 0px; + } + + .sm\:-ml-1 { + margin-left: -0.25rem; + } + + .sm\:-ml-2 { + margin-left: -0.5rem; + } + + .sm\:-ml-3 { + margin-left: -0.75rem; + } + + .sm\:-ml-4 { + margin-left: -1rem; + } + + .sm\:-ml-5 { + margin-left: -1.25rem; + } + + .sm\:-ml-6 { + margin-left: -1.5rem; + } + + .sm\:-ml-7 { + margin-left: -1.75rem; + } + + .sm\:-ml-8 { + margin-left: -2rem; + } + + .sm\:-ml-9 { + margin-left: -2.25rem; + } + + .sm\:-ml-10 { + margin-left: -2.5rem; + } + + .sm\:-ml-11 { + margin-left: -2.75rem; + } + + .sm\:-ml-12 { + margin-left: -3rem; + } + + .sm\:-ml-14 { + margin-left: -3.5rem; + } + + .sm\:-ml-16 { + margin-left: -4rem; + } + + .sm\:-ml-20 { + margin-left: -5rem; + } + + .sm\:-ml-24 { + margin-left: -6rem; + } + + .sm\:-ml-28 { + margin-left: -7rem; + } + + .sm\:-ml-32 { + margin-left: -8rem; + } + + .sm\:-ml-36 { + margin-left: -9rem; + } + + .sm\:-ml-40 { + margin-left: -10rem; + } + + .sm\:-ml-44 { + margin-left: -11rem; + } + + .sm\:-ml-48 { + margin-left: -12rem; + } + + .sm\:-ml-52 { + margin-left: -13rem; + } + + .sm\:-ml-56 { + margin-left: -14rem; + } + + .sm\:-ml-60 { + margin-left: -15rem; + } + + .sm\:-ml-64 { + margin-left: -16rem; + } + + .sm\:-ml-72 { + margin-left: -18rem; + } + + .sm\:-ml-80 { + margin-left: -20rem; + } + + .sm\:-ml-96 { + margin-left: -24rem; + } + + .sm\:-ml-px { + margin-left: -1px; + } + + .sm\:-ml-0\.5 { + margin-left: -0.125rem; + } + + .sm\:-ml-1\.5 { + margin-left: -0.375rem; + } + + .sm\:-ml-2\.5 { + margin-left: -0.625rem; + } + .sm\:-ml-3\.5 { margin-left: -0.875rem; } @@ -70286,1848 +70286,1848 @@ video { margin: -0.875rem; } - .md\:my-0 { - margin-top: 0px; - margin-bottom: 0px; - } - .md\:mx-0 { margin-left: 0px; margin-right: 0px; } - .md\:my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; - } - .md\:mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; } - .md\:my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; - } - .md\:mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; } - .md\:my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; - } - .md\:mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; } - .md\:my-4 { - margin-top: 1rem; - margin-bottom: 1rem; - } - .md\:mx-4 { margin-left: 1rem; margin-right: 1rem; } - .md\:my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; - } - .md\:mx-5 { margin-left: 1.25rem; margin-right: 1.25rem; } - .md\:my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; - } - .md\:mx-6 { margin-left: 1.5rem; margin-right: 1.5rem; } - .md\:my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; - } - .md\:mx-7 { margin-left: 1.75rem; margin-right: 1.75rem; } - .md\:my-8 { - margin-top: 2rem; - margin-bottom: 2rem; - } - .md\:mx-8 { margin-left: 2rem; margin-right: 2rem; } - .md\:my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; - } - .md\:mx-9 { margin-left: 2.25rem; margin-right: 2.25rem; } - .md\:my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; - } - .md\:mx-10 { margin-left: 2.5rem; margin-right: 2.5rem; } - .md\:my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; - } - .md\:mx-11 { margin-left: 2.75rem; margin-right: 2.75rem; } - .md\:my-12 { - margin-top: 3rem; - margin-bottom: 3rem; - } - .md\:mx-12 { margin-left: 3rem; margin-right: 3rem; } - .md\:my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; - } - .md\:mx-14 { margin-left: 3.5rem; margin-right: 3.5rem; } - .md\:my-16 { - margin-top: 4rem; - margin-bottom: 4rem; - } - .md\:mx-16 { margin-left: 4rem; margin-right: 4rem; } - .md\:my-20 { - margin-top: 5rem; - margin-bottom: 5rem; - } - .md\:mx-20 { margin-left: 5rem; margin-right: 5rem; } - .md\:my-24 { - margin-top: 6rem; - margin-bottom: 6rem; - } - .md\:mx-24 { margin-left: 6rem; margin-right: 6rem; } - .md\:my-28 { - margin-top: 7rem; - margin-bottom: 7rem; - } - .md\:mx-28 { margin-left: 7rem; margin-right: 7rem; } - .md\:my-32 { - margin-top: 8rem; - margin-bottom: 8rem; - } - .md\:mx-32 { margin-left: 8rem; margin-right: 8rem; } - .md\:my-36 { - margin-top: 9rem; - margin-bottom: 9rem; - } - .md\:mx-36 { margin-left: 9rem; margin-right: 9rem; } - .md\:my-40 { - margin-top: 10rem; - margin-bottom: 10rem; - } - .md\:mx-40 { margin-left: 10rem; margin-right: 10rem; } - .md\:my-44 { - margin-top: 11rem; - margin-bottom: 11rem; - } - .md\:mx-44 { margin-left: 11rem; margin-right: 11rem; } - .md\:my-48 { - margin-top: 12rem; - margin-bottom: 12rem; - } - .md\:mx-48 { margin-left: 12rem; margin-right: 12rem; } - .md\:my-52 { - margin-top: 13rem; - margin-bottom: 13rem; - } - .md\:mx-52 { margin-left: 13rem; margin-right: 13rem; } - .md\:my-56 { - margin-top: 14rem; - margin-bottom: 14rem; - } - .md\:mx-56 { margin-left: 14rem; margin-right: 14rem; } - .md\:my-60 { - margin-top: 15rem; - margin-bottom: 15rem; - } - .md\:mx-60 { margin-left: 15rem; margin-right: 15rem; } - .md\:my-64 { - margin-top: 16rem; - margin-bottom: 16rem; - } - .md\:mx-64 { margin-left: 16rem; margin-right: 16rem; } - .md\:my-72 { - margin-top: 18rem; - margin-bottom: 18rem; - } - .md\:mx-72 { margin-left: 18rem; margin-right: 18rem; } - .md\:my-80 { - margin-top: 20rem; - margin-bottom: 20rem; - } - .md\:mx-80 { margin-left: 20rem; margin-right: 20rem; } - .md\:my-96 { - margin-top: 24rem; - margin-bottom: 24rem; - } - .md\:mx-96 { margin-left: 24rem; margin-right: 24rem; } - .md\:my-auto { - margin-top: auto; - margin-bottom: auto; - } - .md\:mx-auto { margin-left: auto; margin-right: auto; } - .md\:my-px { - margin-top: 1px; - margin-bottom: 1px; - } - .md\:mx-px { margin-left: 1px; margin-right: 1px; } - .md\:my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; - } - .md\:mx-0\.5 { margin-left: 0.125rem; margin-right: 0.125rem; } - .md\:my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; - } - .md\:mx-1\.5 { margin-left: 0.375rem; margin-right: 0.375rem; } - .md\:my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; - } - .md\:mx-2\.5 { margin-left: 0.625rem; margin-right: 0.625rem; } - .md\:my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; - } - .md\:mx-3\.5 { margin-left: 0.875rem; margin-right: 0.875rem; } - .md\:-my-0 { - margin-top: 0px; - margin-bottom: 0px; - } - .md\:-mx-0 { margin-left: 0px; margin-right: 0px; } - .md\:-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; - } - .md\:-mx-1 { margin-left: -0.25rem; margin-right: -0.25rem; } - .md\:-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; - } - .md\:-mx-2 { margin-left: -0.5rem; margin-right: -0.5rem; } - .md\:-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; - } - .md\:-mx-3 { margin-left: -0.75rem; margin-right: -0.75rem; } - .md\:-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; - } - .md\:-mx-4 { margin-left: -1rem; margin-right: -1rem; } - .md\:-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; - } - .md\:-mx-5 { margin-left: -1.25rem; margin-right: -1.25rem; } - .md\:-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; - } - .md\:-mx-6 { margin-left: -1.5rem; margin-right: -1.5rem; } - .md\:-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; - } - .md\:-mx-7 { margin-left: -1.75rem; margin-right: -1.75rem; } - .md\:-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; - } - .md\:-mx-8 { margin-left: -2rem; margin-right: -2rem; } - .md\:-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; - } - .md\:-mx-9 { margin-left: -2.25rem; margin-right: -2.25rem; } - .md\:-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; - } - .md\:-mx-10 { margin-left: -2.5rem; margin-right: -2.5rem; } - .md\:-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; - } - .md\:-mx-11 { margin-left: -2.75rem; margin-right: -2.75rem; } - .md\:-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; - } - .md\:-mx-12 { margin-left: -3rem; margin-right: -3rem; } - .md\:-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; - } - .md\:-mx-14 { margin-left: -3.5rem; margin-right: -3.5rem; } - .md\:-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; - } - .md\:-mx-16 { margin-left: -4rem; margin-right: -4rem; } - .md\:-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; - } - .md\:-mx-20 { margin-left: -5rem; margin-right: -5rem; } - .md\:-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; - } - .md\:-mx-24 { margin-left: -6rem; margin-right: -6rem; } - .md\:-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; - } - .md\:-mx-28 { margin-left: -7rem; margin-right: -7rem; } - .md\:-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; - } - .md\:-mx-32 { margin-left: -8rem; margin-right: -8rem; } - .md\:-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; - } - .md\:-mx-36 { margin-left: -9rem; margin-right: -9rem; } - .md\:-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; - } - .md\:-mx-40 { margin-left: -10rem; margin-right: -10rem; } - .md\:-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; - } - .md\:-mx-44 { margin-left: -11rem; margin-right: -11rem; } - .md\:-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; - } - .md\:-mx-48 { margin-left: -12rem; margin-right: -12rem; } - .md\:-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; - } - .md\:-mx-52 { margin-left: -13rem; margin-right: -13rem; } - .md\:-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; - } - .md\:-mx-56 { margin-left: -14rem; margin-right: -14rem; } - .md\:-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; - } - .md\:-mx-60 { margin-left: -15rem; margin-right: -15rem; } - .md\:-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; - } - .md\:-mx-64 { margin-left: -16rem; margin-right: -16rem; } - .md\:-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; - } - .md\:-mx-72 { margin-left: -18rem; margin-right: -18rem; } - .md\:-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; - } - .md\:-mx-80 { margin-left: -20rem; margin-right: -20rem; } - .md\:-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; - } - .md\:-mx-96 { margin-left: -24rem; margin-right: -24rem; } - .md\:-my-px { - margin-top: -1px; - margin-bottom: -1px; - } - .md\:-mx-px { margin-left: -1px; margin-right: -1px; } - .md\:-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; - } - .md\:-mx-0\.5 { margin-left: -0.125rem; margin-right: -0.125rem; } - .md\:-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; - } - .md\:-mx-1\.5 { margin-left: -0.375rem; margin-right: -0.375rem; } - .md\:-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; - } - .md\:-mx-2\.5 { margin-left: -0.625rem; margin-right: -0.625rem; } - .md\:-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; - } - .md\:-mx-3\.5 { margin-left: -0.875rem; margin-right: -0.875rem; } - .md\:mt-0 { + .md\:my-0 { margin-top: 0px; + margin-bottom: 0px; } - .md\:mr-0 { - margin-right: 0px; - } - - .md\:mb-0 { - margin-bottom: 0px; + .md\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } - .md\:ml-0 { - margin-left: 0px; + .md\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; } - .md\:mt-1 { - margin-top: 0.25rem; + .md\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; } - .md\:mr-1 { - margin-right: 0.25rem; + .md\:my-4 { + margin-top: 1rem; + margin-bottom: 1rem; } - .md\:mb-1 { - margin-bottom: 0.25rem; + .md\:my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; } - .md\:ml-1 { - margin-left: 0.25rem; + .md\:my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; } - .md\:mt-2 { - margin-top: 0.5rem; + .md\:my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; } - .md\:mr-2 { - margin-right: 0.5rem; + .md\:my-8 { + margin-top: 2rem; + margin-bottom: 2rem; } - .md\:mb-2 { - margin-bottom: 0.5rem; + .md\:my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; } - .md\:ml-2 { - margin-left: 0.5rem; + .md\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; } - .md\:mt-3 { - margin-top: 0.75rem; + .md\:my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; } - .md\:mr-3 { - margin-right: 0.75rem; + .md\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; } - .md\:mb-3 { - margin-bottom: 0.75rem; + .md\:my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; } - .md\:ml-3 { - margin-left: 0.75rem; + .md\:my-16 { + margin-top: 4rem; + margin-bottom: 4rem; } - .md\:mt-4 { - margin-top: 1rem; + .md\:my-20 { + margin-top: 5rem; + margin-bottom: 5rem; } - .md\:mr-4 { - margin-right: 1rem; + .md\:my-24 { + margin-top: 6rem; + margin-bottom: 6rem; } - .md\:mb-4 { - margin-bottom: 1rem; + .md\:my-28 { + margin-top: 7rem; + margin-bottom: 7rem; } - .md\:ml-4 { - margin-left: 1rem; + .md\:my-32 { + margin-top: 8rem; + margin-bottom: 8rem; } - .md\:mt-5 { - margin-top: 1.25rem; + .md\:my-36 { + margin-top: 9rem; + margin-bottom: 9rem; } - .md\:mr-5 { - margin-right: 1.25rem; + .md\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; } - .md\:mb-5 { - margin-bottom: 1.25rem; + .md\:my-44 { + margin-top: 11rem; + margin-bottom: 11rem; } - .md\:ml-5 { - margin-left: 1.25rem; + .md\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; } - .md\:mt-6 { - margin-top: 1.5rem; + .md\:my-52 { + margin-top: 13rem; + margin-bottom: 13rem; } - .md\:mr-6 { - margin-right: 1.5rem; + .md\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; } - .md\:mb-6 { - margin-bottom: 1.5rem; + .md\:my-60 { + margin-top: 15rem; + margin-bottom: 15rem; } - .md\:ml-6 { - margin-left: 1.5rem; + .md\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; } - .md\:mt-7 { - margin-top: 1.75rem; + .md\:my-72 { + margin-top: 18rem; + margin-bottom: 18rem; } - .md\:mr-7 { - margin-right: 1.75rem; + .md\:my-80 { + margin-top: 20rem; + margin-bottom: 20rem; } - .md\:mb-7 { - margin-bottom: 1.75rem; + .md\:my-96 { + margin-top: 24rem; + margin-bottom: 24rem; } - .md\:ml-7 { - margin-left: 1.75rem; + .md\:my-auto { + margin-top: auto; + margin-bottom: auto; } - .md\:mt-8 { - margin-top: 2rem; + .md\:my-px { + margin-top: 1px; + margin-bottom: 1px; } - .md\:mr-8 { - margin-right: 2rem; + .md\:my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; } - .md\:mb-8 { - margin-bottom: 2rem; + .md\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; } - .md\:ml-8 { - margin-left: 2rem; + .md\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; } - .md\:mt-9 { - margin-top: 2.25rem; + .md\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; } - .md\:mr-9 { - margin-right: 2.25rem; + .md\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .md\:mb-9 { - margin-bottom: 2.25rem; + .md\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } - .md\:ml-9 { - margin-left: 2.25rem; + .md\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } - .md\:mt-10 { - margin-top: 2.5rem; + .md\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } - .md\:mr-10 { - margin-right: 2.5rem; + .md\:-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } - .md\:mb-10 { - margin-bottom: 2.5rem; + .md\:-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } - .md\:ml-10 { - margin-left: 2.5rem; + .md\:-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } - .md\:mt-11 { - margin-top: 2.75rem; + .md\:-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } - .md\:mr-11 { - margin-right: 2.75rem; + .md\:-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } - .md\:mb-11 { - margin-bottom: 2.75rem; + .md\:-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } - .md\:ml-11 { - margin-left: 2.75rem; + .md\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } - .md\:mt-12 { - margin-top: 3rem; + .md\:-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } - .md\:mr-12 { - margin-right: 3rem; + .md\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } - .md\:mb-12 { - margin-bottom: 3rem; + .md\:-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } - .md\:ml-12 { - margin-left: 3rem; + .md\:-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } - .md\:mt-14 { - margin-top: 3.5rem; + .md\:-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } - .md\:mr-14 { - margin-right: 3.5rem; + .md\:-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } - .md\:mb-14 { - margin-bottom: 3.5rem; + .md\:-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } - .md\:ml-14 { - margin-left: 3.5rem; + .md\:-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } - .md\:mt-16 { - margin-top: 4rem; + .md\:-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } - .md\:mr-16 { - margin-right: 4rem; + .md\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } - .md\:mb-16 { - margin-bottom: 4rem; + .md\:-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } - .md\:ml-16 { - margin-left: 4rem; + .md\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } - .md\:mt-20 { - margin-top: 5rem; + .md\:-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } - .md\:mr-20 { - margin-right: 5rem; + .md\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } - .md\:mb-20 { - margin-bottom: 5rem; + .md\:-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } - .md\:ml-20 { - margin-left: 5rem; + .md\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } - .md\:mt-24 { - margin-top: 6rem; + .md\:-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } - .md\:mr-24 { - margin-right: 6rem; + .md\:-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } - .md\:mb-24 { - margin-bottom: 6rem; + .md\:-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } - .md\:ml-24 { - margin-left: 6rem; + .md\:-my-px { + margin-top: -1px; + margin-bottom: -1px; } - .md\:mt-28 { - margin-top: 7rem; + .md\:-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } - .md\:mr-28 { - margin-right: 7rem; + .md\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } - .md\:mb-28 { - margin-bottom: 7rem; + .md\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } - .md\:ml-28 { - margin-left: 7rem; + .md\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } - .md\:mt-32 { - margin-top: 8rem; + .md\:mt-0 { + margin-top: 0px; } - .md\:mr-32 { - margin-right: 8rem; + .md\:mt-1 { + margin-top: 0.25rem; } - .md\:mb-32 { - margin-bottom: 8rem; + .md\:mt-2 { + margin-top: 0.5rem; } - .md\:ml-32 { - margin-left: 8rem; + .md\:mt-3 { + margin-top: 0.75rem; } - .md\:mt-36 { - margin-top: 9rem; + .md\:mt-4 { + margin-top: 1rem; } - .md\:mr-36 { - margin-right: 9rem; + .md\:mt-5 { + margin-top: 1.25rem; } - .md\:mb-36 { - margin-bottom: 9rem; + .md\:mt-6 { + margin-top: 1.5rem; } - .md\:ml-36 { - margin-left: 9rem; + .md\:mt-7 { + margin-top: 1.75rem; } - .md\:mt-40 { - margin-top: 10rem; + .md\:mt-8 { + margin-top: 2rem; } - .md\:mr-40 { - margin-right: 10rem; + .md\:mt-9 { + margin-top: 2.25rem; } - .md\:mb-40 { - margin-bottom: 10rem; + .md\:mt-10 { + margin-top: 2.5rem; } - .md\:ml-40 { - margin-left: 10rem; + .md\:mt-11 { + margin-top: 2.75rem; } - .md\:mt-44 { - margin-top: 11rem; + .md\:mt-12 { + margin-top: 3rem; } - .md\:mr-44 { - margin-right: 11rem; + .md\:mt-14 { + margin-top: 3.5rem; } - .md\:mb-44 { - margin-bottom: 11rem; + .md\:mt-16 { + margin-top: 4rem; } - .md\:ml-44 { - margin-left: 11rem; + .md\:mt-20 { + margin-top: 5rem; } - .md\:mt-48 { - margin-top: 12rem; + .md\:mt-24 { + margin-top: 6rem; } - .md\:mr-48 { - margin-right: 12rem; + .md\:mt-28 { + margin-top: 7rem; } - .md\:mb-48 { - margin-bottom: 12rem; + .md\:mt-32 { + margin-top: 8rem; } - .md\:ml-48 { - margin-left: 12rem; + .md\:mt-36 { + margin-top: 9rem; } - .md\:mt-52 { - margin-top: 13rem; + .md\:mt-40 { + margin-top: 10rem; } - .md\:mr-52 { - margin-right: 13rem; + .md\:mt-44 { + margin-top: 11rem; } - .md\:mb-52 { - margin-bottom: 13rem; + .md\:mt-48 { + margin-top: 12rem; } - .md\:ml-52 { - margin-left: 13rem; + .md\:mt-52 { + margin-top: 13rem; } .md\:mt-56 { margin-top: 14rem; } - .md\:mr-56 { - margin-right: 14rem; + .md\:mt-60 { + margin-top: 15rem; } - .md\:mb-56 { - margin-bottom: 14rem; + .md\:mt-64 { + margin-top: 16rem; } - .md\:ml-56 { - margin-left: 14rem; + .md\:mt-72 { + margin-top: 18rem; } - .md\:mt-60 { - margin-top: 15rem; + .md\:mt-80 { + margin-top: 20rem; } - .md\:mr-60 { - margin-right: 15rem; + .md\:mt-96 { + margin-top: 24rem; } - .md\:mb-60 { - margin-bottom: 15rem; + .md\:mt-auto { + margin-top: auto; } - .md\:ml-60 { - margin-left: 15rem; + .md\:mt-px { + margin-top: 1px; } - .md\:mt-64 { - margin-top: 16rem; + .md\:mt-0\.5 { + margin-top: 0.125rem; } - .md\:mr-64 { - margin-right: 16rem; + .md\:mt-1\.5 { + margin-top: 0.375rem; } - .md\:mb-64 { - margin-bottom: 16rem; + .md\:mt-2\.5 { + margin-top: 0.625rem; } - .md\:ml-64 { - margin-left: 16rem; + .md\:mt-3\.5 { + margin-top: 0.875rem; } - .md\:mt-72 { - margin-top: 18rem; + .md\:-mt-0 { + margin-top: 0px; } - .md\:mr-72 { - margin-right: 18rem; + .md\:-mt-1 { + margin-top: -0.25rem; } - .md\:mb-72 { - margin-bottom: 18rem; + .md\:-mt-2 { + margin-top: -0.5rem; } - .md\:ml-72 { - margin-left: 18rem; + .md\:-mt-3 { + margin-top: -0.75rem; } - .md\:mt-80 { - margin-top: 20rem; + .md\:-mt-4 { + margin-top: -1rem; } - .md\:mr-80 { - margin-right: 20rem; + .md\:-mt-5 { + margin-top: -1.25rem; } - .md\:mb-80 { - margin-bottom: 20rem; + .md\:-mt-6 { + margin-top: -1.5rem; } - .md\:ml-80 { - margin-left: 20rem; + .md\:-mt-7 { + margin-top: -1.75rem; } - .md\:mt-96 { - margin-top: 24rem; + .md\:-mt-8 { + margin-top: -2rem; } - .md\:mr-96 { - margin-right: 24rem; + .md\:-mt-9 { + margin-top: -2.25rem; } - .md\:mb-96 { - margin-bottom: 24rem; + .md\:-mt-10 { + margin-top: -2.5rem; } - .md\:ml-96 { - margin-left: 24rem; + .md\:-mt-11 { + margin-top: -2.75rem; } - .md\:mt-auto { - margin-top: auto; + .md\:-mt-12 { + margin-top: -3rem; } - .md\:mr-auto { - margin-right: auto; + .md\:-mt-14 { + margin-top: -3.5rem; } - .md\:mb-auto { - margin-bottom: auto; + .md\:-mt-16 { + margin-top: -4rem; } - .md\:ml-auto { - margin-left: auto; + .md\:-mt-20 { + margin-top: -5rem; } - .md\:mt-px { - margin-top: 1px; + .md\:-mt-24 { + margin-top: -6rem; } - .md\:mr-px { - margin-right: 1px; + .md\:-mt-28 { + margin-top: -7rem; } - .md\:mb-px { - margin-bottom: 1px; + .md\:-mt-32 { + margin-top: -8rem; } - .md\:ml-px { - margin-left: 1px; + .md\:-mt-36 { + margin-top: -9rem; } - .md\:mt-0\.5 { - margin-top: 0.125rem; + .md\:-mt-40 { + margin-top: -10rem; } - .md\:mr-0\.5 { - margin-right: 0.125rem; + .md\:-mt-44 { + margin-top: -11rem; } - .md\:mb-0\.5 { - margin-bottom: 0.125rem; + .md\:-mt-48 { + margin-top: -12rem; } - .md\:ml-0\.5 { - margin-left: 0.125rem; + .md\:-mt-52 { + margin-top: -13rem; } - .md\:mt-1\.5 { - margin-top: 0.375rem; + .md\:-mt-56 { + margin-top: -14rem; } - .md\:mr-1\.5 { - margin-right: 0.375rem; + .md\:-mt-60 { + margin-top: -15rem; } - .md\:mb-1\.5 { - margin-bottom: 0.375rem; + .md\:-mt-64 { + margin-top: -16rem; } - .md\:ml-1\.5 { - margin-left: 0.375rem; + .md\:-mt-72 { + margin-top: -18rem; } - .md\:mt-2\.5 { - margin-top: 0.625rem; + .md\:-mt-80 { + margin-top: -20rem; } - .md\:mr-2\.5 { - margin-right: 0.625rem; + .md\:-mt-96 { + margin-top: -24rem; } - .md\:mb-2\.5 { - margin-bottom: 0.625rem; + .md\:-mt-px { + margin-top: -1px; } - .md\:ml-2\.5 { - margin-left: 0.625rem; + .md\:-mt-0\.5 { + margin-top: -0.125rem; } - .md\:mt-3\.5 { - margin-top: 0.875rem; + .md\:-mt-1\.5 { + margin-top: -0.375rem; } - .md\:mr-3\.5 { - margin-right: 0.875rem; + .md\:-mt-2\.5 { + margin-top: -0.625rem; } - .md\:mb-3\.5 { - margin-bottom: 0.875rem; + .md\:-mt-3\.5 { + margin-top: -0.875rem; } - .md\:ml-3\.5 { - margin-left: 0.875rem; + .md\:mr-0 { + margin-right: 0px; } - .md\:-mt-0 { - margin-top: 0px; + .md\:mr-1 { + margin-right: 0.25rem; } - .md\:-mr-0 { - margin-right: 0px; + .md\:mr-2 { + margin-right: 0.5rem; } - .md\:-mb-0 { - margin-bottom: 0px; + .md\:mr-3 { + margin-right: 0.75rem; } - .md\:-ml-0 { - margin-left: 0px; + .md\:mr-4 { + margin-right: 1rem; } - .md\:-mt-1 { - margin-top: -0.25rem; + .md\:mr-5 { + margin-right: 1.25rem; } - .md\:-mr-1 { - margin-right: -0.25rem; + .md\:mr-6 { + margin-right: 1.5rem; } - .md\:-mb-1 { - margin-bottom: -0.25rem; + .md\:mr-7 { + margin-right: 1.75rem; } - .md\:-ml-1 { - margin-left: -0.25rem; + .md\:mr-8 { + margin-right: 2rem; } - .md\:-mt-2 { - margin-top: -0.5rem; + .md\:mr-9 { + margin-right: 2.25rem; } - .md\:-mr-2 { - margin-right: -0.5rem; + .md\:mr-10 { + margin-right: 2.5rem; } - .md\:-mb-2 { - margin-bottom: -0.5rem; + .md\:mr-11 { + margin-right: 2.75rem; } - .md\:-ml-2 { - margin-left: -0.5rem; + .md\:mr-12 { + margin-right: 3rem; } - .md\:-mt-3 { - margin-top: -0.75rem; + .md\:mr-14 { + margin-right: 3.5rem; } - .md\:-mr-3 { - margin-right: -0.75rem; + .md\:mr-16 { + margin-right: 4rem; } - .md\:-mb-3 { - margin-bottom: -0.75rem; + .md\:mr-20 { + margin-right: 5rem; } - .md\:-ml-3 { - margin-left: -0.75rem; + .md\:mr-24 { + margin-right: 6rem; } - .md\:-mt-4 { - margin-top: -1rem; + .md\:mr-28 { + margin-right: 7rem; } - .md\:-mr-4 { - margin-right: -1rem; + .md\:mr-32 { + margin-right: 8rem; } - .md\:-mb-4 { - margin-bottom: -1rem; + .md\:mr-36 { + margin-right: 9rem; } - .md\:-ml-4 { - margin-left: -1rem; + .md\:mr-40 { + margin-right: 10rem; } - .md\:-mt-5 { - margin-top: -1.25rem; + .md\:mr-44 { + margin-right: 11rem; } - .md\:-mr-5 { - margin-right: -1.25rem; + .md\:mr-48 { + margin-right: 12rem; } - .md\:-mb-5 { - margin-bottom: -1.25rem; + .md\:mr-52 { + margin-right: 13rem; } - .md\:-ml-5 { - margin-left: -1.25rem; + .md\:mr-56 { + margin-right: 14rem; } - .md\:-mt-6 { - margin-top: -1.5rem; + .md\:mr-60 { + margin-right: 15rem; } - .md\:-mr-6 { - margin-right: -1.5rem; + .md\:mr-64 { + margin-right: 16rem; } - .md\:-mb-6 { - margin-bottom: -1.5rem; + .md\:mr-72 { + margin-right: 18rem; } - .md\:-ml-6 { - margin-left: -1.5rem; + .md\:mr-80 { + margin-right: 20rem; } - .md\:-mt-7 { - margin-top: -1.75rem; + .md\:mr-96 { + margin-right: 24rem; } - .md\:-mr-7 { - margin-right: -1.75rem; + .md\:mr-auto { + margin-right: auto; } - .md\:-mb-7 { - margin-bottom: -1.75rem; + .md\:mr-px { + margin-right: 1px; } - .md\:-ml-7 { - margin-left: -1.75rem; + .md\:mr-0\.5 { + margin-right: 0.125rem; } - .md\:-mt-8 { - margin-top: -2rem; + .md\:mr-1\.5 { + margin-right: 0.375rem; } - .md\:-mr-8 { - margin-right: -2rem; + .md\:mr-2\.5 { + margin-right: 0.625rem; } - .md\:-mb-8 { - margin-bottom: -2rem; + .md\:mr-3\.5 { + margin-right: 0.875rem; } - .md\:-ml-8 { - margin-left: -2rem; + .md\:-mr-0 { + margin-right: 0px; } - .md\:-mt-9 { - margin-top: -2.25rem; + .md\:-mr-1 { + margin-right: -0.25rem; } - .md\:-mr-9 { - margin-right: -2.25rem; + .md\:-mr-2 { + margin-right: -0.5rem; } - .md\:-mb-9 { - margin-bottom: -2.25rem; + .md\:-mr-3 { + margin-right: -0.75rem; } - .md\:-ml-9 { - margin-left: -2.25rem; + .md\:-mr-4 { + margin-right: -1rem; } - .md\:-mt-10 { - margin-top: -2.5rem; + .md\:-mr-5 { + margin-right: -1.25rem; } - .md\:-mr-10 { - margin-right: -2.5rem; + .md\:-mr-6 { + margin-right: -1.5rem; } - .md\:-mb-10 { - margin-bottom: -2.5rem; + .md\:-mr-7 { + margin-right: -1.75rem; } - .md\:-ml-10 { - margin-left: -2.5rem; + .md\:-mr-8 { + margin-right: -2rem; } - .md\:-mt-11 { - margin-top: -2.75rem; + .md\:-mr-9 { + margin-right: -2.25rem; + } + + .md\:-mr-10 { + margin-right: -2.5rem; } .md\:-mr-11 { margin-right: -2.75rem; } - .md\:-mb-11 { - margin-bottom: -2.75rem; + .md\:-mr-12 { + margin-right: -3rem; } - .md\:-ml-11 { - margin-left: -2.75rem; + .md\:-mr-14 { + margin-right: -3.5rem; } - .md\:-mt-12 { - margin-top: -3rem; + .md\:-mr-16 { + margin-right: -4rem; } - .md\:-mr-12 { - margin-right: -3rem; + .md\:-mr-20 { + margin-right: -5rem; } - .md\:-mb-12 { - margin-bottom: -3rem; + .md\:-mr-24 { + margin-right: -6rem; } - .md\:-ml-12 { - margin-left: -3rem; + .md\:-mr-28 { + margin-right: -7rem; } - .md\:-mt-14 { - margin-top: -3.5rem; + .md\:-mr-32 { + margin-right: -8rem; } - .md\:-mr-14 { - margin-right: -3.5rem; + .md\:-mr-36 { + margin-right: -9rem; } - .md\:-mb-14 { - margin-bottom: -3.5rem; + .md\:-mr-40 { + margin-right: -10rem; } - .md\:-ml-14 { - margin-left: -3.5rem; + .md\:-mr-44 { + margin-right: -11rem; } - .md\:-mt-16 { - margin-top: -4rem; + .md\:-mr-48 { + margin-right: -12rem; } - .md\:-mr-16 { - margin-right: -4rem; + .md\:-mr-52 { + margin-right: -13rem; } - .md\:-mb-16 { - margin-bottom: -4rem; + .md\:-mr-56 { + margin-right: -14rem; } - .md\:-ml-16 { - margin-left: -4rem; + .md\:-mr-60 { + margin-right: -15rem; } - .md\:-mt-20 { - margin-top: -5rem; + .md\:-mr-64 { + margin-right: -16rem; } - .md\:-mr-20 { - margin-right: -5rem; + .md\:-mr-72 { + margin-right: -18rem; } - .md\:-mb-20 { - margin-bottom: -5rem; + .md\:-mr-80 { + margin-right: -20rem; } - .md\:-ml-20 { - margin-left: -5rem; + .md\:-mr-96 { + margin-right: -24rem; } - .md\:-mt-24 { - margin-top: -6rem; + .md\:-mr-px { + margin-right: -1px; } - .md\:-mr-24 { - margin-right: -6rem; + .md\:-mr-0\.5 { + margin-right: -0.125rem; } - .md\:-mb-24 { - margin-bottom: -6rem; + .md\:-mr-1\.5 { + margin-right: -0.375rem; } - .md\:-ml-24 { - margin-left: -6rem; + .md\:-mr-2\.5 { + margin-right: -0.625rem; } - .md\:-mt-28 { - margin-top: -7rem; + .md\:-mr-3\.5 { + margin-right: -0.875rem; } - .md\:-mr-28 { - margin-right: -7rem; + .md\:mb-0 { + margin-bottom: 0px; } - .md\:-mb-28 { - margin-bottom: -7rem; + .md\:mb-1 { + margin-bottom: 0.25rem; } - .md\:-ml-28 { - margin-left: -7rem; + .md\:mb-2 { + margin-bottom: 0.5rem; } - .md\:-mt-32 { - margin-top: -8rem; + .md\:mb-3 { + margin-bottom: 0.75rem; } - .md\:-mr-32 { - margin-right: -8rem; + .md\:mb-4 { + margin-bottom: 1rem; } - .md\:-mb-32 { - margin-bottom: -8rem; + .md\:mb-5 { + margin-bottom: 1.25rem; } - .md\:-ml-32 { - margin-left: -8rem; + .md\:mb-6 { + margin-bottom: 1.5rem; } - .md\:-mt-36 { - margin-top: -9rem; + .md\:mb-7 { + margin-bottom: 1.75rem; } - .md\:-mr-36 { - margin-right: -9rem; + .md\:mb-8 { + margin-bottom: 2rem; } - .md\:-mb-36 { - margin-bottom: -9rem; + .md\:mb-9 { + margin-bottom: 2.25rem; } - .md\:-ml-36 { - margin-left: -9rem; + .md\:mb-10 { + margin-bottom: 2.5rem; } - .md\:-mt-40 { - margin-top: -10rem; + .md\:mb-11 { + margin-bottom: 2.75rem; } - .md\:-mr-40 { - margin-right: -10rem; + .md\:mb-12 { + margin-bottom: 3rem; } - .md\:-mb-40 { - margin-bottom: -10rem; + .md\:mb-14 { + margin-bottom: 3.5rem; } - .md\:-ml-40 { - margin-left: -10rem; + .md\:mb-16 { + margin-bottom: 4rem; } - .md\:-mt-44 { - margin-top: -11rem; + .md\:mb-20 { + margin-bottom: 5rem; } - .md\:-mr-44 { - margin-right: -11rem; + .md\:mb-24 { + margin-bottom: 6rem; } - .md\:-mb-44 { - margin-bottom: -11rem; + .md\:mb-28 { + margin-bottom: 7rem; } - .md\:-ml-44 { - margin-left: -11rem; + .md\:mb-32 { + margin-bottom: 8rem; } - .md\:-mt-48 { - margin-top: -12rem; + .md\:mb-36 { + margin-bottom: 9rem; } - .md\:-mr-48 { - margin-right: -12rem; + .md\:mb-40 { + margin-bottom: 10rem; } - .md\:-mb-48 { - margin-bottom: -12rem; + .md\:mb-44 { + margin-bottom: 11rem; } - .md\:-ml-48 { - margin-left: -12rem; + .md\:mb-48 { + margin-bottom: 12rem; } - .md\:-mt-52 { - margin-top: -13rem; + .md\:mb-52 { + margin-bottom: 13rem; } - .md\:-mr-52 { - margin-right: -13rem; + .md\:mb-56 { + margin-bottom: 14rem; } - .md\:-mb-52 { - margin-bottom: -13rem; + .md\:mb-60 { + margin-bottom: 15rem; } - .md\:-ml-52 { - margin-left: -13rem; + .md\:mb-64 { + margin-bottom: 16rem; } - .md\:-mt-56 { - margin-top: -14rem; + .md\:mb-72 { + margin-bottom: 18rem; } - .md\:-mr-56 { - margin-right: -14rem; + .md\:mb-80 { + margin-bottom: 20rem; } - .md\:-mb-56 { - margin-bottom: -14rem; + .md\:mb-96 { + margin-bottom: 24rem; } - .md\:-ml-56 { - margin-left: -14rem; + .md\:mb-auto { + margin-bottom: auto; } - .md\:-mt-60 { - margin-top: -15rem; + .md\:mb-px { + margin-bottom: 1px; } - .md\:-mr-60 { - margin-right: -15rem; + .md\:mb-0\.5 { + margin-bottom: 0.125rem; } - .md\:-mb-60 { - margin-bottom: -15rem; + .md\:mb-1\.5 { + margin-bottom: 0.375rem; } - .md\:-ml-60 { - margin-left: -15rem; + .md\:mb-2\.5 { + margin-bottom: 0.625rem; } - .md\:-mt-64 { - margin-top: -16rem; + .md\:mb-3\.5 { + margin-bottom: 0.875rem; } - .md\:-mr-64 { - margin-right: -16rem; + .md\:-mb-0 { + margin-bottom: 0px; } - .md\:-mb-64 { - margin-bottom: -16rem; + .md\:-mb-1 { + margin-bottom: -0.25rem; } - .md\:-ml-64 { - margin-left: -16rem; + .md\:-mb-2 { + margin-bottom: -0.5rem; } - .md\:-mt-72 { - margin-top: -18rem; + .md\:-mb-3 { + margin-bottom: -0.75rem; } - .md\:-mr-72 { - margin-right: -18rem; + .md\:-mb-4 { + margin-bottom: -1rem; } - .md\:-mb-72 { - margin-bottom: -18rem; + .md\:-mb-5 { + margin-bottom: -1.25rem; } - .md\:-ml-72 { - margin-left: -18rem; + .md\:-mb-6 { + margin-bottom: -1.5rem; } - .md\:-mt-80 { - margin-top: -20rem; + .md\:-mb-7 { + margin-bottom: -1.75rem; } - .md\:-mr-80 { - margin-right: -20rem; + .md\:-mb-8 { + margin-bottom: -2rem; } - .md\:-mb-80 { - margin-bottom: -20rem; + .md\:-mb-9 { + margin-bottom: -2.25rem; } - .md\:-ml-80 { - margin-left: -20rem; + .md\:-mb-10 { + margin-bottom: -2.5rem; } - .md\:-mt-96 { - margin-top: -24rem; + .md\:-mb-11 { + margin-bottom: -2.75rem; } - .md\:-mr-96 { - margin-right: -24rem; + .md\:-mb-12 { + margin-bottom: -3rem; } - .md\:-mb-96 { - margin-bottom: -24rem; + .md\:-mb-14 { + margin-bottom: -3.5rem; } - .md\:-ml-96 { - margin-left: -24rem; + .md\:-mb-16 { + margin-bottom: -4rem; } - .md\:-mt-px { - margin-top: -1px; + .md\:-mb-20 { + margin-bottom: -5rem; } - .md\:-mr-px { - margin-right: -1px; + .md\:-mb-24 { + margin-bottom: -6rem; } - .md\:-mb-px { - margin-bottom: -1px; + .md\:-mb-28 { + margin-bottom: -7rem; } - .md\:-ml-px { - margin-left: -1px; + .md\:-mb-32 { + margin-bottom: -8rem; } - .md\:-mt-0\.5 { - margin-top: -0.125rem; + .md\:-mb-36 { + margin-bottom: -9rem; } - .md\:-mr-0\.5 { - margin-right: -0.125rem; + .md\:-mb-40 { + margin-bottom: -10rem; } - .md\:-mb-0\.5 { - margin-bottom: -0.125rem; + .md\:-mb-44 { + margin-bottom: -11rem; } - .md\:-ml-0\.5 { - margin-left: -0.125rem; + .md\:-mb-48 { + margin-bottom: -12rem; } - .md\:-mt-1\.5 { - margin-top: -0.375rem; + .md\:-mb-52 { + margin-bottom: -13rem; } - .md\:-mr-1\.5 { - margin-right: -0.375rem; + .md\:-mb-56 { + margin-bottom: -14rem; } - .md\:-mb-1\.5 { - margin-bottom: -0.375rem; + .md\:-mb-60 { + margin-bottom: -15rem; } - .md\:-ml-1\.5 { - margin-left: -0.375rem; + .md\:-mb-64 { + margin-bottom: -16rem; } - .md\:-mt-2\.5 { - margin-top: -0.625rem; + .md\:-mb-72 { + margin-bottom: -18rem; } - .md\:-mr-2\.5 { - margin-right: -0.625rem; + .md\:-mb-80 { + margin-bottom: -20rem; } - .md\:-mb-2\.5 { - margin-bottom: -0.625rem; + .md\:-mb-96 { + margin-bottom: -24rem; } - .md\:-ml-2\.5 { - margin-left: -0.625rem; + .md\:-mb-px { + margin-bottom: -1px; } - .md\:-mt-3\.5 { - margin-top: -0.875rem; + .md\:-mb-0\.5 { + margin-bottom: -0.125rem; } - .md\:-mr-3\.5 { - margin-right: -0.875rem; + .md\:-mb-1\.5 { + margin-bottom: -0.375rem; + } + + .md\:-mb-2\.5 { + margin-bottom: -0.625rem; } .md\:-mb-3\.5 { margin-bottom: -0.875rem; } + .md\:ml-0 { + margin-left: 0px; + } + + .md\:ml-1 { + margin-left: 0.25rem; + } + + .md\:ml-2 { + margin-left: 0.5rem; + } + + .md\:ml-3 { + margin-left: 0.75rem; + } + + .md\:ml-4 { + margin-left: 1rem; + } + + .md\:ml-5 { + margin-left: 1.25rem; + } + + .md\:ml-6 { + margin-left: 1.5rem; + } + + .md\:ml-7 { + margin-left: 1.75rem; + } + + .md\:ml-8 { + margin-left: 2rem; + } + + .md\:ml-9 { + margin-left: 2.25rem; + } + + .md\:ml-10 { + margin-left: 2.5rem; + } + + .md\:ml-11 { + margin-left: 2.75rem; + } + + .md\:ml-12 { + margin-left: 3rem; + } + + .md\:ml-14 { + margin-left: 3.5rem; + } + + .md\:ml-16 { + margin-left: 4rem; + } + + .md\:ml-20 { + margin-left: 5rem; + } + + .md\:ml-24 { + margin-left: 6rem; + } + + .md\:ml-28 { + margin-left: 7rem; + } + + .md\:ml-32 { + margin-left: 8rem; + } + + .md\:ml-36 { + margin-left: 9rem; + } + + .md\:ml-40 { + margin-left: 10rem; + } + + .md\:ml-44 { + margin-left: 11rem; + } + + .md\:ml-48 { + margin-left: 12rem; + } + + .md\:ml-52 { + margin-left: 13rem; + } + + .md\:ml-56 { + margin-left: 14rem; + } + + .md\:ml-60 { + margin-left: 15rem; + } + + .md\:ml-64 { + margin-left: 16rem; + } + + .md\:ml-72 { + margin-left: 18rem; + } + + .md\:ml-80 { + margin-left: 20rem; + } + + .md\:ml-96 { + margin-left: 24rem; + } + + .md\:ml-auto { + margin-left: auto; + } + + .md\:ml-px { + margin-left: 1px; + } + + .md\:ml-0\.5 { + margin-left: 0.125rem; + } + + .md\:ml-1\.5 { + margin-left: 0.375rem; + } + + .md\:ml-2\.5 { + margin-left: 0.625rem; + } + + .md\:ml-3\.5 { + margin-left: 0.875rem; + } + + .md\:-ml-0 { + margin-left: 0px; + } + + .md\:-ml-1 { + margin-left: -0.25rem; + } + + .md\:-ml-2 { + margin-left: -0.5rem; + } + + .md\:-ml-3 { + margin-left: -0.75rem; + } + + .md\:-ml-4 { + margin-left: -1rem; + } + + .md\:-ml-5 { + margin-left: -1.25rem; + } + + .md\:-ml-6 { + margin-left: -1.5rem; + } + + .md\:-ml-7 { + margin-left: -1.75rem; + } + + .md\:-ml-8 { + margin-left: -2rem; + } + + .md\:-ml-9 { + margin-left: -2.25rem; + } + + .md\:-ml-10 { + margin-left: -2.5rem; + } + + .md\:-ml-11 { + margin-left: -2.75rem; + } + + .md\:-ml-12 { + margin-left: -3rem; + } + + .md\:-ml-14 { + margin-left: -3.5rem; + } + + .md\:-ml-16 { + margin-left: -4rem; + } + + .md\:-ml-20 { + margin-left: -5rem; + } + + .md\:-ml-24 { + margin-left: -6rem; + } + + .md\:-ml-28 { + margin-left: -7rem; + } + + .md\:-ml-32 { + margin-left: -8rem; + } + + .md\:-ml-36 { + margin-left: -9rem; + } + + .md\:-ml-40 { + margin-left: -10rem; + } + + .md\:-ml-44 { + margin-left: -11rem; + } + + .md\:-ml-48 { + margin-left: -12rem; + } + + .md\:-ml-52 { + margin-left: -13rem; + } + + .md\:-ml-56 { + margin-left: -14rem; + } + + .md\:-ml-60 { + margin-left: -15rem; + } + + .md\:-ml-64 { + margin-left: -16rem; + } + + .md\:-ml-72 { + margin-left: -18rem; + } + + .md\:-ml-80 { + margin-left: -20rem; + } + + .md\:-ml-96 { + margin-left: -24rem; + } + + .md\:-ml-px { + margin-left: -1px; + } + + .md\:-ml-0\.5 { + margin-left: -0.125rem; + } + + .md\:-ml-1\.5 { + margin-left: -0.375rem; + } + + .md\:-ml-2\.5 { + margin-left: -0.625rem; + } + .md\:-ml-3\.5 { margin-left: -0.875rem; } @@ -99409,1848 +99409,1848 @@ video { margin: -0.875rem; } - .lg\:my-0 { - margin-top: 0px; - margin-bottom: 0px; - } - .lg\:mx-0 { margin-left: 0px; margin-right: 0px; } - .lg\:my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; - } - .lg\:mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; } - .lg\:my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; - } - .lg\:mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; } - .lg\:my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; - } - .lg\:mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; } - .lg\:my-4 { - margin-top: 1rem; - margin-bottom: 1rem; - } - .lg\:mx-4 { margin-left: 1rem; margin-right: 1rem; } - .lg\:my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; - } - .lg\:mx-5 { margin-left: 1.25rem; margin-right: 1.25rem; } - .lg\:my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; - } - .lg\:mx-6 { margin-left: 1.5rem; margin-right: 1.5rem; } - .lg\:my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; - } - .lg\:mx-7 { margin-left: 1.75rem; margin-right: 1.75rem; } - .lg\:my-8 { - margin-top: 2rem; - margin-bottom: 2rem; - } - .lg\:mx-8 { margin-left: 2rem; margin-right: 2rem; } - .lg\:my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; - } - .lg\:mx-9 { margin-left: 2.25rem; margin-right: 2.25rem; } - .lg\:my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; - } - .lg\:mx-10 { margin-left: 2.5rem; margin-right: 2.5rem; } - .lg\:my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; - } - .lg\:mx-11 { margin-left: 2.75rem; margin-right: 2.75rem; } - .lg\:my-12 { - margin-top: 3rem; - margin-bottom: 3rem; - } - .lg\:mx-12 { margin-left: 3rem; margin-right: 3rem; } - .lg\:my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; - } - .lg\:mx-14 { margin-left: 3.5rem; margin-right: 3.5rem; } - .lg\:my-16 { - margin-top: 4rem; - margin-bottom: 4rem; - } - .lg\:mx-16 { margin-left: 4rem; margin-right: 4rem; } - .lg\:my-20 { - margin-top: 5rem; - margin-bottom: 5rem; - } - .lg\:mx-20 { margin-left: 5rem; margin-right: 5rem; } - .lg\:my-24 { - margin-top: 6rem; - margin-bottom: 6rem; - } - .lg\:mx-24 { margin-left: 6rem; margin-right: 6rem; } - .lg\:my-28 { - margin-top: 7rem; - margin-bottom: 7rem; - } - .lg\:mx-28 { margin-left: 7rem; margin-right: 7rem; } - .lg\:my-32 { - margin-top: 8rem; - margin-bottom: 8rem; - } - .lg\:mx-32 { margin-left: 8rem; margin-right: 8rem; } - .lg\:my-36 { - margin-top: 9rem; - margin-bottom: 9rem; - } - .lg\:mx-36 { margin-left: 9rem; margin-right: 9rem; } - .lg\:my-40 { - margin-top: 10rem; - margin-bottom: 10rem; - } - .lg\:mx-40 { margin-left: 10rem; margin-right: 10rem; } - .lg\:my-44 { - margin-top: 11rem; - margin-bottom: 11rem; - } - .lg\:mx-44 { margin-left: 11rem; margin-right: 11rem; } - .lg\:my-48 { - margin-top: 12rem; - margin-bottom: 12rem; - } - .lg\:mx-48 { margin-left: 12rem; margin-right: 12rem; } - .lg\:my-52 { - margin-top: 13rem; - margin-bottom: 13rem; - } - .lg\:mx-52 { margin-left: 13rem; margin-right: 13rem; } - .lg\:my-56 { - margin-top: 14rem; - margin-bottom: 14rem; - } - .lg\:mx-56 { margin-left: 14rem; margin-right: 14rem; } - .lg\:my-60 { - margin-top: 15rem; - margin-bottom: 15rem; - } - .lg\:mx-60 { margin-left: 15rem; margin-right: 15rem; } - .lg\:my-64 { - margin-top: 16rem; - margin-bottom: 16rem; - } - .lg\:mx-64 { margin-left: 16rem; margin-right: 16rem; } - .lg\:my-72 { - margin-top: 18rem; - margin-bottom: 18rem; - } - .lg\:mx-72 { margin-left: 18rem; margin-right: 18rem; } - .lg\:my-80 { - margin-top: 20rem; - margin-bottom: 20rem; - } - .lg\:mx-80 { margin-left: 20rem; margin-right: 20rem; } - .lg\:my-96 { - margin-top: 24rem; - margin-bottom: 24rem; - } - .lg\:mx-96 { margin-left: 24rem; margin-right: 24rem; } - .lg\:my-auto { - margin-top: auto; - margin-bottom: auto; - } - .lg\:mx-auto { margin-left: auto; margin-right: auto; } - .lg\:my-px { - margin-top: 1px; - margin-bottom: 1px; - } - .lg\:mx-px { margin-left: 1px; margin-right: 1px; } - .lg\:my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; - } - .lg\:mx-0\.5 { margin-left: 0.125rem; margin-right: 0.125rem; } - .lg\:my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; - } - .lg\:mx-1\.5 { margin-left: 0.375rem; margin-right: 0.375rem; } - .lg\:my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; - } - .lg\:mx-2\.5 { margin-left: 0.625rem; margin-right: 0.625rem; } - .lg\:my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; - } - .lg\:mx-3\.5 { margin-left: 0.875rem; margin-right: 0.875rem; } - .lg\:-my-0 { - margin-top: 0px; - margin-bottom: 0px; - } - .lg\:-mx-0 { margin-left: 0px; margin-right: 0px; } - .lg\:-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; - } - .lg\:-mx-1 { margin-left: -0.25rem; margin-right: -0.25rem; } - .lg\:-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; - } - .lg\:-mx-2 { margin-left: -0.5rem; margin-right: -0.5rem; } - .lg\:-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; - } - .lg\:-mx-3 { margin-left: -0.75rem; margin-right: -0.75rem; } - .lg\:-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; - } - .lg\:-mx-4 { margin-left: -1rem; margin-right: -1rem; } - .lg\:-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; - } - .lg\:-mx-5 { margin-left: -1.25rem; margin-right: -1.25rem; } - .lg\:-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; - } - .lg\:-mx-6 { margin-left: -1.5rem; margin-right: -1.5rem; } - .lg\:-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; - } - .lg\:-mx-7 { margin-left: -1.75rem; margin-right: -1.75rem; } - .lg\:-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; - } - .lg\:-mx-8 { margin-left: -2rem; margin-right: -2rem; } - .lg\:-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; - } - .lg\:-mx-9 { margin-left: -2.25rem; margin-right: -2.25rem; } - .lg\:-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; - } - .lg\:-mx-10 { margin-left: -2.5rem; margin-right: -2.5rem; } - .lg\:-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; - } - .lg\:-mx-11 { margin-left: -2.75rem; margin-right: -2.75rem; } - .lg\:-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; - } - .lg\:-mx-12 { margin-left: -3rem; margin-right: -3rem; } - .lg\:-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; - } - .lg\:-mx-14 { margin-left: -3.5rem; margin-right: -3.5rem; } - .lg\:-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; - } - .lg\:-mx-16 { margin-left: -4rem; margin-right: -4rem; } - .lg\:-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; - } - .lg\:-mx-20 { margin-left: -5rem; margin-right: -5rem; } - .lg\:-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; - } - .lg\:-mx-24 { margin-left: -6rem; margin-right: -6rem; } - .lg\:-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; - } - .lg\:-mx-28 { margin-left: -7rem; margin-right: -7rem; } - .lg\:-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; - } - .lg\:-mx-32 { margin-left: -8rem; margin-right: -8rem; } - .lg\:-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; - } - .lg\:-mx-36 { margin-left: -9rem; margin-right: -9rem; } - .lg\:-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; - } - .lg\:-mx-40 { margin-left: -10rem; margin-right: -10rem; } - .lg\:-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; - } - .lg\:-mx-44 { margin-left: -11rem; margin-right: -11rem; } - .lg\:-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; - } - .lg\:-mx-48 { margin-left: -12rem; margin-right: -12rem; } - .lg\:-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; - } - .lg\:-mx-52 { margin-left: -13rem; margin-right: -13rem; } - .lg\:-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; - } - .lg\:-mx-56 { margin-left: -14rem; margin-right: -14rem; } - .lg\:-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; - } - .lg\:-mx-60 { margin-left: -15rem; margin-right: -15rem; } - .lg\:-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; - } - .lg\:-mx-64 { margin-left: -16rem; margin-right: -16rem; } - .lg\:-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; - } - .lg\:-mx-72 { margin-left: -18rem; margin-right: -18rem; } - .lg\:-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; - } - .lg\:-mx-80 { margin-left: -20rem; margin-right: -20rem; } - .lg\:-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; - } - .lg\:-mx-96 { margin-left: -24rem; margin-right: -24rem; } - .lg\:-my-px { - margin-top: -1px; - margin-bottom: -1px; - } - .lg\:-mx-px { margin-left: -1px; margin-right: -1px; } - .lg\:-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; - } - .lg\:-mx-0\.5 { margin-left: -0.125rem; margin-right: -0.125rem; } - .lg\:-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; - } - .lg\:-mx-1\.5 { margin-left: -0.375rem; margin-right: -0.375rem; } - .lg\:-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; - } - .lg\:-mx-2\.5 { margin-left: -0.625rem; margin-right: -0.625rem; } - .lg\:-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; - } - .lg\:-mx-3\.5 { margin-left: -0.875rem; margin-right: -0.875rem; } - .lg\:mt-0 { + .lg\:my-0 { margin-top: 0px; + margin-bottom: 0px; } - .lg\:mr-0 { - margin-right: 0px; - } - - .lg\:mb-0 { - margin-bottom: 0px; + .lg\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } - .lg\:ml-0 { - margin-left: 0px; + .lg\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; } - .lg\:mt-1 { - margin-top: 0.25rem; + .lg\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; } - .lg\:mr-1 { - margin-right: 0.25rem; + .lg\:my-4 { + margin-top: 1rem; + margin-bottom: 1rem; } - .lg\:mb-1 { - margin-bottom: 0.25rem; + .lg\:my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; } - .lg\:ml-1 { - margin-left: 0.25rem; + .lg\:my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; } - .lg\:mt-2 { - margin-top: 0.5rem; + .lg\:my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; } - .lg\:mr-2 { - margin-right: 0.5rem; + .lg\:my-8 { + margin-top: 2rem; + margin-bottom: 2rem; } - .lg\:mb-2 { - margin-bottom: 0.5rem; + .lg\:my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; } - .lg\:ml-2 { - margin-left: 0.5rem; + .lg\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; } - .lg\:mt-3 { - margin-top: 0.75rem; + .lg\:my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; } - .lg\:mr-3 { - margin-right: 0.75rem; + .lg\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; } - .lg\:mb-3 { - margin-bottom: 0.75rem; + .lg\:my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; } - .lg\:ml-3 { - margin-left: 0.75rem; + .lg\:my-16 { + margin-top: 4rem; + margin-bottom: 4rem; } - .lg\:mt-4 { - margin-top: 1rem; + .lg\:my-20 { + margin-top: 5rem; + margin-bottom: 5rem; } - .lg\:mr-4 { - margin-right: 1rem; + .lg\:my-24 { + margin-top: 6rem; + margin-bottom: 6rem; } - .lg\:mb-4 { - margin-bottom: 1rem; + .lg\:my-28 { + margin-top: 7rem; + margin-bottom: 7rem; } - .lg\:ml-4 { - margin-left: 1rem; + .lg\:my-32 { + margin-top: 8rem; + margin-bottom: 8rem; } - .lg\:mt-5 { - margin-top: 1.25rem; + .lg\:my-36 { + margin-top: 9rem; + margin-bottom: 9rem; } - .lg\:mr-5 { - margin-right: 1.25rem; + .lg\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; } - .lg\:mb-5 { - margin-bottom: 1.25rem; + .lg\:my-44 { + margin-top: 11rem; + margin-bottom: 11rem; } - .lg\:ml-5 { - margin-left: 1.25rem; + .lg\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; } - .lg\:mt-6 { - margin-top: 1.5rem; + .lg\:my-52 { + margin-top: 13rem; + margin-bottom: 13rem; } - .lg\:mr-6 { - margin-right: 1.5rem; + .lg\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; } - .lg\:mb-6 { - margin-bottom: 1.5rem; + .lg\:my-60 { + margin-top: 15rem; + margin-bottom: 15rem; } - .lg\:ml-6 { - margin-left: 1.5rem; + .lg\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; } - .lg\:mt-7 { - margin-top: 1.75rem; + .lg\:my-72 { + margin-top: 18rem; + margin-bottom: 18rem; } - .lg\:mr-7 { - margin-right: 1.75rem; + .lg\:my-80 { + margin-top: 20rem; + margin-bottom: 20rem; } - .lg\:mb-7 { - margin-bottom: 1.75rem; + .lg\:my-96 { + margin-top: 24rem; + margin-bottom: 24rem; } - .lg\:ml-7 { - margin-left: 1.75rem; + .lg\:my-auto { + margin-top: auto; + margin-bottom: auto; } - .lg\:mt-8 { - margin-top: 2rem; + .lg\:my-px { + margin-top: 1px; + margin-bottom: 1px; } - .lg\:mr-8 { - margin-right: 2rem; + .lg\:my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; } - .lg\:mb-8 { - margin-bottom: 2rem; + .lg\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; } - .lg\:ml-8 { - margin-left: 2rem; + .lg\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; } - .lg\:mt-9 { - margin-top: 2.25rem; + .lg\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; } - .lg\:mr-9 { - margin-right: 2.25rem; + .lg\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .lg\:mb-9 { - margin-bottom: 2.25rem; + .lg\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } - .lg\:ml-9 { - margin-left: 2.25rem; + .lg\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } - .lg\:mt-10 { - margin-top: 2.5rem; + .lg\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } - .lg\:mr-10 { - margin-right: 2.5rem; + .lg\:-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } - .lg\:mb-10 { - margin-bottom: 2.5rem; + .lg\:-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } - .lg\:ml-10 { - margin-left: 2.5rem; + .lg\:-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } - .lg\:mt-11 { - margin-top: 2.75rem; + .lg\:-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } - .lg\:mr-11 { - margin-right: 2.75rem; + .lg\:-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } - .lg\:mb-11 { - margin-bottom: 2.75rem; + .lg\:-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } - .lg\:ml-11 { - margin-left: 2.75rem; + .lg\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } - .lg\:mt-12 { - margin-top: 3rem; + .lg\:-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } - .lg\:mr-12 { - margin-right: 3rem; + .lg\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } - .lg\:mb-12 { - margin-bottom: 3rem; + .lg\:-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } - .lg\:ml-12 { - margin-left: 3rem; + .lg\:-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } - .lg\:mt-14 { - margin-top: 3.5rem; + .lg\:-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } - .lg\:mr-14 { - margin-right: 3.5rem; + .lg\:-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } - .lg\:mb-14 { - margin-bottom: 3.5rem; + .lg\:-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } - .lg\:ml-14 { - margin-left: 3.5rem; + .lg\:-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } - .lg\:mt-16 { - margin-top: 4rem; + .lg\:-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } - .lg\:mr-16 { - margin-right: 4rem; + .lg\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } - .lg\:mb-16 { - margin-bottom: 4rem; + .lg\:-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } - .lg\:ml-16 { - margin-left: 4rem; + .lg\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } - .lg\:mt-20 { - margin-top: 5rem; + .lg\:-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } - .lg\:mr-20 { - margin-right: 5rem; + .lg\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } - .lg\:mb-20 { - margin-bottom: 5rem; + .lg\:-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } - .lg\:ml-20 { - margin-left: 5rem; + .lg\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } - .lg\:mt-24 { - margin-top: 6rem; + .lg\:-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } - .lg\:mr-24 { - margin-right: 6rem; + .lg\:-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } - .lg\:mb-24 { - margin-bottom: 6rem; + .lg\:-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } - .lg\:ml-24 { - margin-left: 6rem; + .lg\:-my-px { + margin-top: -1px; + margin-bottom: -1px; } - .lg\:mt-28 { - margin-top: 7rem; + .lg\:-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } - .lg\:mr-28 { - margin-right: 7rem; + .lg\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } - .lg\:mb-28 { - margin-bottom: 7rem; + .lg\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } - .lg\:ml-28 { - margin-left: 7rem; + .lg\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } - .lg\:mt-32 { - margin-top: 8rem; + .lg\:mt-0 { + margin-top: 0px; } - .lg\:mr-32 { - margin-right: 8rem; + .lg\:mt-1 { + margin-top: 0.25rem; } - .lg\:mb-32 { - margin-bottom: 8rem; + .lg\:mt-2 { + margin-top: 0.5rem; } - .lg\:ml-32 { - margin-left: 8rem; + .lg\:mt-3 { + margin-top: 0.75rem; } - .lg\:mt-36 { - margin-top: 9rem; + .lg\:mt-4 { + margin-top: 1rem; } - .lg\:mr-36 { - margin-right: 9rem; + .lg\:mt-5 { + margin-top: 1.25rem; } - .lg\:mb-36 { - margin-bottom: 9rem; + .lg\:mt-6 { + margin-top: 1.5rem; } - .lg\:ml-36 { - margin-left: 9rem; + .lg\:mt-7 { + margin-top: 1.75rem; } - .lg\:mt-40 { - margin-top: 10rem; + .lg\:mt-8 { + margin-top: 2rem; } - .lg\:mr-40 { - margin-right: 10rem; + .lg\:mt-9 { + margin-top: 2.25rem; } - .lg\:mb-40 { - margin-bottom: 10rem; + .lg\:mt-10 { + margin-top: 2.5rem; } - .lg\:ml-40 { - margin-left: 10rem; + .lg\:mt-11 { + margin-top: 2.75rem; } - .lg\:mt-44 { - margin-top: 11rem; + .lg\:mt-12 { + margin-top: 3rem; } - .lg\:mr-44 { - margin-right: 11rem; + .lg\:mt-14 { + margin-top: 3.5rem; } - .lg\:mb-44 { - margin-bottom: 11rem; + .lg\:mt-16 { + margin-top: 4rem; } - .lg\:ml-44 { - margin-left: 11rem; + .lg\:mt-20 { + margin-top: 5rem; } - .lg\:mt-48 { - margin-top: 12rem; + .lg\:mt-24 { + margin-top: 6rem; } - .lg\:mr-48 { - margin-right: 12rem; + .lg\:mt-28 { + margin-top: 7rem; } - .lg\:mb-48 { - margin-bottom: 12rem; + .lg\:mt-32 { + margin-top: 8rem; } - .lg\:ml-48 { - margin-left: 12rem; + .lg\:mt-36 { + margin-top: 9rem; } - .lg\:mt-52 { - margin-top: 13rem; + .lg\:mt-40 { + margin-top: 10rem; } - .lg\:mr-52 { - margin-right: 13rem; + .lg\:mt-44 { + margin-top: 11rem; } - .lg\:mb-52 { - margin-bottom: 13rem; + .lg\:mt-48 { + margin-top: 12rem; } - .lg\:ml-52 { - margin-left: 13rem; + .lg\:mt-52 { + margin-top: 13rem; } .lg\:mt-56 { margin-top: 14rem; } - .lg\:mr-56 { - margin-right: 14rem; + .lg\:mt-60 { + margin-top: 15rem; } - .lg\:mb-56 { - margin-bottom: 14rem; + .lg\:mt-64 { + margin-top: 16rem; } - .lg\:ml-56 { - margin-left: 14rem; + .lg\:mt-72 { + margin-top: 18rem; } - .lg\:mt-60 { - margin-top: 15rem; + .lg\:mt-80 { + margin-top: 20rem; } - .lg\:mr-60 { - margin-right: 15rem; + .lg\:mt-96 { + margin-top: 24rem; } - .lg\:mb-60 { - margin-bottom: 15rem; + .lg\:mt-auto { + margin-top: auto; } - .lg\:ml-60 { - margin-left: 15rem; + .lg\:mt-px { + margin-top: 1px; } - .lg\:mt-64 { - margin-top: 16rem; + .lg\:mt-0\.5 { + margin-top: 0.125rem; } - .lg\:mr-64 { - margin-right: 16rem; + .lg\:mt-1\.5 { + margin-top: 0.375rem; } - .lg\:mb-64 { - margin-bottom: 16rem; + .lg\:mt-2\.5 { + margin-top: 0.625rem; } - .lg\:ml-64 { - margin-left: 16rem; + .lg\:mt-3\.5 { + margin-top: 0.875rem; } - .lg\:mt-72 { - margin-top: 18rem; + .lg\:-mt-0 { + margin-top: 0px; } - .lg\:mr-72 { - margin-right: 18rem; + .lg\:-mt-1 { + margin-top: -0.25rem; } - .lg\:mb-72 { - margin-bottom: 18rem; + .lg\:-mt-2 { + margin-top: -0.5rem; } - .lg\:ml-72 { - margin-left: 18rem; + .lg\:-mt-3 { + margin-top: -0.75rem; } - .lg\:mt-80 { - margin-top: 20rem; + .lg\:-mt-4 { + margin-top: -1rem; } - .lg\:mr-80 { - margin-right: 20rem; + .lg\:-mt-5 { + margin-top: -1.25rem; } - .lg\:mb-80 { - margin-bottom: 20rem; + .lg\:-mt-6 { + margin-top: -1.5rem; } - .lg\:ml-80 { - margin-left: 20rem; + .lg\:-mt-7 { + margin-top: -1.75rem; } - .lg\:mt-96 { - margin-top: 24rem; + .lg\:-mt-8 { + margin-top: -2rem; } - .lg\:mr-96 { - margin-right: 24rem; + .lg\:-mt-9 { + margin-top: -2.25rem; } - .lg\:mb-96 { - margin-bottom: 24rem; + .lg\:-mt-10 { + margin-top: -2.5rem; } - .lg\:ml-96 { - margin-left: 24rem; + .lg\:-mt-11 { + margin-top: -2.75rem; } - .lg\:mt-auto { - margin-top: auto; + .lg\:-mt-12 { + margin-top: -3rem; } - .lg\:mr-auto { - margin-right: auto; + .lg\:-mt-14 { + margin-top: -3.5rem; } - .lg\:mb-auto { - margin-bottom: auto; + .lg\:-mt-16 { + margin-top: -4rem; } - .lg\:ml-auto { - margin-left: auto; + .lg\:-mt-20 { + margin-top: -5rem; } - .lg\:mt-px { - margin-top: 1px; + .lg\:-mt-24 { + margin-top: -6rem; } - .lg\:mr-px { - margin-right: 1px; + .lg\:-mt-28 { + margin-top: -7rem; } - .lg\:mb-px { - margin-bottom: 1px; + .lg\:-mt-32 { + margin-top: -8rem; } - .lg\:ml-px { - margin-left: 1px; + .lg\:-mt-36 { + margin-top: -9rem; } - .lg\:mt-0\.5 { - margin-top: 0.125rem; + .lg\:-mt-40 { + margin-top: -10rem; } - .lg\:mr-0\.5 { - margin-right: 0.125rem; + .lg\:-mt-44 { + margin-top: -11rem; } - .lg\:mb-0\.5 { - margin-bottom: 0.125rem; + .lg\:-mt-48 { + margin-top: -12rem; } - .lg\:ml-0\.5 { - margin-left: 0.125rem; + .lg\:-mt-52 { + margin-top: -13rem; } - .lg\:mt-1\.5 { - margin-top: 0.375rem; + .lg\:-mt-56 { + margin-top: -14rem; } - .lg\:mr-1\.5 { - margin-right: 0.375rem; + .lg\:-mt-60 { + margin-top: -15rem; } - .lg\:mb-1\.5 { - margin-bottom: 0.375rem; + .lg\:-mt-64 { + margin-top: -16rem; } - .lg\:ml-1\.5 { - margin-left: 0.375rem; + .lg\:-mt-72 { + margin-top: -18rem; } - .lg\:mt-2\.5 { - margin-top: 0.625rem; + .lg\:-mt-80 { + margin-top: -20rem; } - .lg\:mr-2\.5 { - margin-right: 0.625rem; + .lg\:-mt-96 { + margin-top: -24rem; } - .lg\:mb-2\.5 { - margin-bottom: 0.625rem; + .lg\:-mt-px { + margin-top: -1px; } - .lg\:ml-2\.5 { - margin-left: 0.625rem; + .lg\:-mt-0\.5 { + margin-top: -0.125rem; } - .lg\:mt-3\.5 { - margin-top: 0.875rem; + .lg\:-mt-1\.5 { + margin-top: -0.375rem; } - .lg\:mr-3\.5 { - margin-right: 0.875rem; + .lg\:-mt-2\.5 { + margin-top: -0.625rem; } - .lg\:mb-3\.5 { - margin-bottom: 0.875rem; + .lg\:-mt-3\.5 { + margin-top: -0.875rem; } - .lg\:ml-3\.5 { - margin-left: 0.875rem; + .lg\:mr-0 { + margin-right: 0px; } - .lg\:-mt-0 { - margin-top: 0px; + .lg\:mr-1 { + margin-right: 0.25rem; } - .lg\:-mr-0 { - margin-right: 0px; + .lg\:mr-2 { + margin-right: 0.5rem; } - .lg\:-mb-0 { - margin-bottom: 0px; + .lg\:mr-3 { + margin-right: 0.75rem; } - .lg\:-ml-0 { - margin-left: 0px; + .lg\:mr-4 { + margin-right: 1rem; } - .lg\:-mt-1 { - margin-top: -0.25rem; + .lg\:mr-5 { + margin-right: 1.25rem; } - .lg\:-mr-1 { - margin-right: -0.25rem; + .lg\:mr-6 { + margin-right: 1.5rem; } - .lg\:-mb-1 { - margin-bottom: -0.25rem; + .lg\:mr-7 { + margin-right: 1.75rem; } - .lg\:-ml-1 { - margin-left: -0.25rem; + .lg\:mr-8 { + margin-right: 2rem; } - .lg\:-mt-2 { - margin-top: -0.5rem; + .lg\:mr-9 { + margin-right: 2.25rem; } - .lg\:-mr-2 { - margin-right: -0.5rem; + .lg\:mr-10 { + margin-right: 2.5rem; } - .lg\:-mb-2 { - margin-bottom: -0.5rem; + .lg\:mr-11 { + margin-right: 2.75rem; } - .lg\:-ml-2 { - margin-left: -0.5rem; + .lg\:mr-12 { + margin-right: 3rem; } - .lg\:-mt-3 { - margin-top: -0.75rem; + .lg\:mr-14 { + margin-right: 3.5rem; } - .lg\:-mr-3 { - margin-right: -0.75rem; + .lg\:mr-16 { + margin-right: 4rem; } - .lg\:-mb-3 { - margin-bottom: -0.75rem; + .lg\:mr-20 { + margin-right: 5rem; } - .lg\:-ml-3 { - margin-left: -0.75rem; + .lg\:mr-24 { + margin-right: 6rem; } - .lg\:-mt-4 { - margin-top: -1rem; + .lg\:mr-28 { + margin-right: 7rem; } - .lg\:-mr-4 { - margin-right: -1rem; + .lg\:mr-32 { + margin-right: 8rem; } - .lg\:-mb-4 { - margin-bottom: -1rem; + .lg\:mr-36 { + margin-right: 9rem; } - .lg\:-ml-4 { - margin-left: -1rem; + .lg\:mr-40 { + margin-right: 10rem; } - .lg\:-mt-5 { - margin-top: -1.25rem; + .lg\:mr-44 { + margin-right: 11rem; } - .lg\:-mr-5 { - margin-right: -1.25rem; + .lg\:mr-48 { + margin-right: 12rem; } - .lg\:-mb-5 { - margin-bottom: -1.25rem; + .lg\:mr-52 { + margin-right: 13rem; } - .lg\:-ml-5 { - margin-left: -1.25rem; + .lg\:mr-56 { + margin-right: 14rem; } - .lg\:-mt-6 { - margin-top: -1.5rem; + .lg\:mr-60 { + margin-right: 15rem; } - .lg\:-mr-6 { - margin-right: -1.5rem; + .lg\:mr-64 { + margin-right: 16rem; } - .lg\:-mb-6 { - margin-bottom: -1.5rem; + .lg\:mr-72 { + margin-right: 18rem; } - .lg\:-ml-6 { - margin-left: -1.5rem; + .lg\:mr-80 { + margin-right: 20rem; } - .lg\:-mt-7 { - margin-top: -1.75rem; + .lg\:mr-96 { + margin-right: 24rem; } - .lg\:-mr-7 { - margin-right: -1.75rem; + .lg\:mr-auto { + margin-right: auto; } - .lg\:-mb-7 { - margin-bottom: -1.75rem; + .lg\:mr-px { + margin-right: 1px; } - .lg\:-ml-7 { - margin-left: -1.75rem; + .lg\:mr-0\.5 { + margin-right: 0.125rem; } - .lg\:-mt-8 { - margin-top: -2rem; + .lg\:mr-1\.5 { + margin-right: 0.375rem; } - .lg\:-mr-8 { - margin-right: -2rem; + .lg\:mr-2\.5 { + margin-right: 0.625rem; } - .lg\:-mb-8 { - margin-bottom: -2rem; + .lg\:mr-3\.5 { + margin-right: 0.875rem; } - .lg\:-ml-8 { - margin-left: -2rem; + .lg\:-mr-0 { + margin-right: 0px; } - .lg\:-mt-9 { - margin-top: -2.25rem; + .lg\:-mr-1 { + margin-right: -0.25rem; } - .lg\:-mr-9 { - margin-right: -2.25rem; + .lg\:-mr-2 { + margin-right: -0.5rem; } - .lg\:-mb-9 { - margin-bottom: -2.25rem; + .lg\:-mr-3 { + margin-right: -0.75rem; } - .lg\:-ml-9 { - margin-left: -2.25rem; + .lg\:-mr-4 { + margin-right: -1rem; } - .lg\:-mt-10 { - margin-top: -2.5rem; + .lg\:-mr-5 { + margin-right: -1.25rem; } - .lg\:-mr-10 { - margin-right: -2.5rem; + .lg\:-mr-6 { + margin-right: -1.5rem; } - .lg\:-mb-10 { - margin-bottom: -2.5rem; + .lg\:-mr-7 { + margin-right: -1.75rem; } - .lg\:-ml-10 { - margin-left: -2.5rem; + .lg\:-mr-8 { + margin-right: -2rem; } - .lg\:-mt-11 { - margin-top: -2.75rem; + .lg\:-mr-9 { + margin-right: -2.25rem; + } + + .lg\:-mr-10 { + margin-right: -2.5rem; } .lg\:-mr-11 { margin-right: -2.75rem; } - .lg\:-mb-11 { - margin-bottom: -2.75rem; + .lg\:-mr-12 { + margin-right: -3rem; } - .lg\:-ml-11 { - margin-left: -2.75rem; + .lg\:-mr-14 { + margin-right: -3.5rem; } - .lg\:-mt-12 { - margin-top: -3rem; + .lg\:-mr-16 { + margin-right: -4rem; } - .lg\:-mr-12 { - margin-right: -3rem; + .lg\:-mr-20 { + margin-right: -5rem; } - .lg\:-mb-12 { - margin-bottom: -3rem; + .lg\:-mr-24 { + margin-right: -6rem; } - .lg\:-ml-12 { - margin-left: -3rem; + .lg\:-mr-28 { + margin-right: -7rem; } - .lg\:-mt-14 { - margin-top: -3.5rem; + .lg\:-mr-32 { + margin-right: -8rem; } - .lg\:-mr-14 { - margin-right: -3.5rem; + .lg\:-mr-36 { + margin-right: -9rem; } - .lg\:-mb-14 { - margin-bottom: -3.5rem; + .lg\:-mr-40 { + margin-right: -10rem; } - .lg\:-ml-14 { - margin-left: -3.5rem; + .lg\:-mr-44 { + margin-right: -11rem; } - .lg\:-mt-16 { - margin-top: -4rem; + .lg\:-mr-48 { + margin-right: -12rem; } - .lg\:-mr-16 { - margin-right: -4rem; + .lg\:-mr-52 { + margin-right: -13rem; } - .lg\:-mb-16 { - margin-bottom: -4rem; + .lg\:-mr-56 { + margin-right: -14rem; } - .lg\:-ml-16 { - margin-left: -4rem; + .lg\:-mr-60 { + margin-right: -15rem; } - .lg\:-mt-20 { - margin-top: -5rem; + .lg\:-mr-64 { + margin-right: -16rem; } - .lg\:-mr-20 { - margin-right: -5rem; + .lg\:-mr-72 { + margin-right: -18rem; } - .lg\:-mb-20 { - margin-bottom: -5rem; + .lg\:-mr-80 { + margin-right: -20rem; } - .lg\:-ml-20 { - margin-left: -5rem; + .lg\:-mr-96 { + margin-right: -24rem; } - .lg\:-mt-24 { - margin-top: -6rem; + .lg\:-mr-px { + margin-right: -1px; } - .lg\:-mr-24 { - margin-right: -6rem; + .lg\:-mr-0\.5 { + margin-right: -0.125rem; } - .lg\:-mb-24 { - margin-bottom: -6rem; + .lg\:-mr-1\.5 { + margin-right: -0.375rem; } - .lg\:-ml-24 { - margin-left: -6rem; + .lg\:-mr-2\.5 { + margin-right: -0.625rem; } - .lg\:-mt-28 { - margin-top: -7rem; + .lg\:-mr-3\.5 { + margin-right: -0.875rem; } - .lg\:-mr-28 { - margin-right: -7rem; + .lg\:mb-0 { + margin-bottom: 0px; } - .lg\:-mb-28 { - margin-bottom: -7rem; + .lg\:mb-1 { + margin-bottom: 0.25rem; } - .lg\:-ml-28 { - margin-left: -7rem; + .lg\:mb-2 { + margin-bottom: 0.5rem; } - .lg\:-mt-32 { - margin-top: -8rem; + .lg\:mb-3 { + margin-bottom: 0.75rem; } - .lg\:-mr-32 { - margin-right: -8rem; + .lg\:mb-4 { + margin-bottom: 1rem; } - .lg\:-mb-32 { - margin-bottom: -8rem; + .lg\:mb-5 { + margin-bottom: 1.25rem; } - .lg\:-ml-32 { - margin-left: -8rem; + .lg\:mb-6 { + margin-bottom: 1.5rem; } - .lg\:-mt-36 { - margin-top: -9rem; + .lg\:mb-7 { + margin-bottom: 1.75rem; } - .lg\:-mr-36 { - margin-right: -9rem; + .lg\:mb-8 { + margin-bottom: 2rem; } - .lg\:-mb-36 { - margin-bottom: -9rem; + .lg\:mb-9 { + margin-bottom: 2.25rem; } - .lg\:-ml-36 { - margin-left: -9rem; + .lg\:mb-10 { + margin-bottom: 2.5rem; } - .lg\:-mt-40 { - margin-top: -10rem; + .lg\:mb-11 { + margin-bottom: 2.75rem; } - .lg\:-mr-40 { - margin-right: -10rem; + .lg\:mb-12 { + margin-bottom: 3rem; } - .lg\:-mb-40 { - margin-bottom: -10rem; + .lg\:mb-14 { + margin-bottom: 3.5rem; } - .lg\:-ml-40 { - margin-left: -10rem; + .lg\:mb-16 { + margin-bottom: 4rem; } - .lg\:-mt-44 { - margin-top: -11rem; + .lg\:mb-20 { + margin-bottom: 5rem; } - .lg\:-mr-44 { - margin-right: -11rem; + .lg\:mb-24 { + margin-bottom: 6rem; } - .lg\:-mb-44 { - margin-bottom: -11rem; + .lg\:mb-28 { + margin-bottom: 7rem; } - .lg\:-ml-44 { - margin-left: -11rem; + .lg\:mb-32 { + margin-bottom: 8rem; } - .lg\:-mt-48 { - margin-top: -12rem; + .lg\:mb-36 { + margin-bottom: 9rem; } - .lg\:-mr-48 { - margin-right: -12rem; + .lg\:mb-40 { + margin-bottom: 10rem; } - .lg\:-mb-48 { - margin-bottom: -12rem; + .lg\:mb-44 { + margin-bottom: 11rem; } - .lg\:-ml-48 { - margin-left: -12rem; + .lg\:mb-48 { + margin-bottom: 12rem; } - .lg\:-mt-52 { - margin-top: -13rem; + .lg\:mb-52 { + margin-bottom: 13rem; } - .lg\:-mr-52 { - margin-right: -13rem; + .lg\:mb-56 { + margin-bottom: 14rem; } - .lg\:-mb-52 { - margin-bottom: -13rem; + .lg\:mb-60 { + margin-bottom: 15rem; } - .lg\:-ml-52 { - margin-left: -13rem; + .lg\:mb-64 { + margin-bottom: 16rem; } - .lg\:-mt-56 { - margin-top: -14rem; + .lg\:mb-72 { + margin-bottom: 18rem; } - .lg\:-mr-56 { - margin-right: -14rem; + .lg\:mb-80 { + margin-bottom: 20rem; } - .lg\:-mb-56 { - margin-bottom: -14rem; + .lg\:mb-96 { + margin-bottom: 24rem; } - .lg\:-ml-56 { - margin-left: -14rem; + .lg\:mb-auto { + margin-bottom: auto; } - .lg\:-mt-60 { - margin-top: -15rem; + .lg\:mb-px { + margin-bottom: 1px; } - .lg\:-mr-60 { - margin-right: -15rem; + .lg\:mb-0\.5 { + margin-bottom: 0.125rem; } - .lg\:-mb-60 { - margin-bottom: -15rem; + .lg\:mb-1\.5 { + margin-bottom: 0.375rem; } - .lg\:-ml-60 { - margin-left: -15rem; + .lg\:mb-2\.5 { + margin-bottom: 0.625rem; } - .lg\:-mt-64 { - margin-top: -16rem; + .lg\:mb-3\.5 { + margin-bottom: 0.875rem; } - .lg\:-mr-64 { - margin-right: -16rem; + .lg\:-mb-0 { + margin-bottom: 0px; } - .lg\:-mb-64 { - margin-bottom: -16rem; + .lg\:-mb-1 { + margin-bottom: -0.25rem; } - .lg\:-ml-64 { - margin-left: -16rem; + .lg\:-mb-2 { + margin-bottom: -0.5rem; } - .lg\:-mt-72 { - margin-top: -18rem; + .lg\:-mb-3 { + margin-bottom: -0.75rem; } - .lg\:-mr-72 { - margin-right: -18rem; + .lg\:-mb-4 { + margin-bottom: -1rem; } - .lg\:-mb-72 { - margin-bottom: -18rem; + .lg\:-mb-5 { + margin-bottom: -1.25rem; } - .lg\:-ml-72 { - margin-left: -18rem; + .lg\:-mb-6 { + margin-bottom: -1.5rem; } - .lg\:-mt-80 { - margin-top: -20rem; + .lg\:-mb-7 { + margin-bottom: -1.75rem; } - .lg\:-mr-80 { - margin-right: -20rem; + .lg\:-mb-8 { + margin-bottom: -2rem; } - .lg\:-mb-80 { - margin-bottom: -20rem; + .lg\:-mb-9 { + margin-bottom: -2.25rem; } - .lg\:-ml-80 { - margin-left: -20rem; + .lg\:-mb-10 { + margin-bottom: -2.5rem; } - .lg\:-mt-96 { - margin-top: -24rem; + .lg\:-mb-11 { + margin-bottom: -2.75rem; } - .lg\:-mr-96 { - margin-right: -24rem; + .lg\:-mb-12 { + margin-bottom: -3rem; } - .lg\:-mb-96 { - margin-bottom: -24rem; + .lg\:-mb-14 { + margin-bottom: -3.5rem; } - .lg\:-ml-96 { - margin-left: -24rem; + .lg\:-mb-16 { + margin-bottom: -4rem; } - .lg\:-mt-px { - margin-top: -1px; + .lg\:-mb-20 { + margin-bottom: -5rem; } - .lg\:-mr-px { - margin-right: -1px; + .lg\:-mb-24 { + margin-bottom: -6rem; } - .lg\:-mb-px { - margin-bottom: -1px; + .lg\:-mb-28 { + margin-bottom: -7rem; } - .lg\:-ml-px { - margin-left: -1px; + .lg\:-mb-32 { + margin-bottom: -8rem; } - .lg\:-mt-0\.5 { - margin-top: -0.125rem; + .lg\:-mb-36 { + margin-bottom: -9rem; } - .lg\:-mr-0\.5 { - margin-right: -0.125rem; + .lg\:-mb-40 { + margin-bottom: -10rem; } - .lg\:-mb-0\.5 { - margin-bottom: -0.125rem; + .lg\:-mb-44 { + margin-bottom: -11rem; } - .lg\:-ml-0\.5 { - margin-left: -0.125rem; + .lg\:-mb-48 { + margin-bottom: -12rem; } - .lg\:-mt-1\.5 { - margin-top: -0.375rem; + .lg\:-mb-52 { + margin-bottom: -13rem; } - .lg\:-mr-1\.5 { - margin-right: -0.375rem; + .lg\:-mb-56 { + margin-bottom: -14rem; } - .lg\:-mb-1\.5 { - margin-bottom: -0.375rem; + .lg\:-mb-60 { + margin-bottom: -15rem; } - .lg\:-ml-1\.5 { - margin-left: -0.375rem; + .lg\:-mb-64 { + margin-bottom: -16rem; } - .lg\:-mt-2\.5 { - margin-top: -0.625rem; + .lg\:-mb-72 { + margin-bottom: -18rem; } - .lg\:-mr-2\.5 { - margin-right: -0.625rem; + .lg\:-mb-80 { + margin-bottom: -20rem; } - .lg\:-mb-2\.5 { - margin-bottom: -0.625rem; + .lg\:-mb-96 { + margin-bottom: -24rem; } - .lg\:-ml-2\.5 { - margin-left: -0.625rem; + .lg\:-mb-px { + margin-bottom: -1px; } - .lg\:-mt-3\.5 { - margin-top: -0.875rem; + .lg\:-mb-0\.5 { + margin-bottom: -0.125rem; } - .lg\:-mr-3\.5 { - margin-right: -0.875rem; + .lg\:-mb-1\.5 { + margin-bottom: -0.375rem; + } + + .lg\:-mb-2\.5 { + margin-bottom: -0.625rem; } .lg\:-mb-3\.5 { margin-bottom: -0.875rem; } + .lg\:ml-0 { + margin-left: 0px; + } + + .lg\:ml-1 { + margin-left: 0.25rem; + } + + .lg\:ml-2 { + margin-left: 0.5rem; + } + + .lg\:ml-3 { + margin-left: 0.75rem; + } + + .lg\:ml-4 { + margin-left: 1rem; + } + + .lg\:ml-5 { + margin-left: 1.25rem; + } + + .lg\:ml-6 { + margin-left: 1.5rem; + } + + .lg\:ml-7 { + margin-left: 1.75rem; + } + + .lg\:ml-8 { + margin-left: 2rem; + } + + .lg\:ml-9 { + margin-left: 2.25rem; + } + + .lg\:ml-10 { + margin-left: 2.5rem; + } + + .lg\:ml-11 { + margin-left: 2.75rem; + } + + .lg\:ml-12 { + margin-left: 3rem; + } + + .lg\:ml-14 { + margin-left: 3.5rem; + } + + .lg\:ml-16 { + margin-left: 4rem; + } + + .lg\:ml-20 { + margin-left: 5rem; + } + + .lg\:ml-24 { + margin-left: 6rem; + } + + .lg\:ml-28 { + margin-left: 7rem; + } + + .lg\:ml-32 { + margin-left: 8rem; + } + + .lg\:ml-36 { + margin-left: 9rem; + } + + .lg\:ml-40 { + margin-left: 10rem; + } + + .lg\:ml-44 { + margin-left: 11rem; + } + + .lg\:ml-48 { + margin-left: 12rem; + } + + .lg\:ml-52 { + margin-left: 13rem; + } + + .lg\:ml-56 { + margin-left: 14rem; + } + + .lg\:ml-60 { + margin-left: 15rem; + } + + .lg\:ml-64 { + margin-left: 16rem; + } + + .lg\:ml-72 { + margin-left: 18rem; + } + + .lg\:ml-80 { + margin-left: 20rem; + } + + .lg\:ml-96 { + margin-left: 24rem; + } + + .lg\:ml-auto { + margin-left: auto; + } + + .lg\:ml-px { + margin-left: 1px; + } + + .lg\:ml-0\.5 { + margin-left: 0.125rem; + } + + .lg\:ml-1\.5 { + margin-left: 0.375rem; + } + + .lg\:ml-2\.5 { + margin-left: 0.625rem; + } + + .lg\:ml-3\.5 { + margin-left: 0.875rem; + } + + .lg\:-ml-0 { + margin-left: 0px; + } + + .lg\:-ml-1 { + margin-left: -0.25rem; + } + + .lg\:-ml-2 { + margin-left: -0.5rem; + } + + .lg\:-ml-3 { + margin-left: -0.75rem; + } + + .lg\:-ml-4 { + margin-left: -1rem; + } + + .lg\:-ml-5 { + margin-left: -1.25rem; + } + + .lg\:-ml-6 { + margin-left: -1.5rem; + } + + .lg\:-ml-7 { + margin-left: -1.75rem; + } + + .lg\:-ml-8 { + margin-left: -2rem; + } + + .lg\:-ml-9 { + margin-left: -2.25rem; + } + + .lg\:-ml-10 { + margin-left: -2.5rem; + } + + .lg\:-ml-11 { + margin-left: -2.75rem; + } + + .lg\:-ml-12 { + margin-left: -3rem; + } + + .lg\:-ml-14 { + margin-left: -3.5rem; + } + + .lg\:-ml-16 { + margin-left: -4rem; + } + + .lg\:-ml-20 { + margin-left: -5rem; + } + + .lg\:-ml-24 { + margin-left: -6rem; + } + + .lg\:-ml-28 { + margin-left: -7rem; + } + + .lg\:-ml-32 { + margin-left: -8rem; + } + + .lg\:-ml-36 { + margin-left: -9rem; + } + + .lg\:-ml-40 { + margin-left: -10rem; + } + + .lg\:-ml-44 { + margin-left: -11rem; + } + + .lg\:-ml-48 { + margin-left: -12rem; + } + + .lg\:-ml-52 { + margin-left: -13rem; + } + + .lg\:-ml-56 { + margin-left: -14rem; + } + + .lg\:-ml-60 { + margin-left: -15rem; + } + + .lg\:-ml-64 { + margin-left: -16rem; + } + + .lg\:-ml-72 { + margin-left: -18rem; + } + + .lg\:-ml-80 { + margin-left: -20rem; + } + + .lg\:-ml-96 { + margin-left: -24rem; + } + + .lg\:-ml-px { + margin-left: -1px; + } + + .lg\:-ml-0\.5 { + margin-left: -0.125rem; + } + + .lg\:-ml-1\.5 { + margin-left: -0.375rem; + } + + .lg\:-ml-2\.5 { + margin-left: -0.625rem; + } + .lg\:-ml-3\.5 { margin-left: -0.875rem; } @@ -128532,1848 +128532,1848 @@ video { margin: -0.875rem; } - .xl\:my-0 { - margin-top: 0px; - margin-bottom: 0px; - } - .xl\:mx-0 { margin-left: 0px; margin-right: 0px; } - .xl\:my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; - } - .xl\:mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; } - .xl\:my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; - } - .xl\:mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; } - .xl\:my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; - } - .xl\:mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; } - .xl\:my-4 { - margin-top: 1rem; - margin-bottom: 1rem; - } - .xl\:mx-4 { margin-left: 1rem; margin-right: 1rem; } - .xl\:my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; - } - .xl\:mx-5 { margin-left: 1.25rem; margin-right: 1.25rem; } - .xl\:my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; - } - .xl\:mx-6 { margin-left: 1.5rem; margin-right: 1.5rem; } - .xl\:my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; - } - .xl\:mx-7 { margin-left: 1.75rem; margin-right: 1.75rem; } - .xl\:my-8 { - margin-top: 2rem; - margin-bottom: 2rem; - } - .xl\:mx-8 { margin-left: 2rem; margin-right: 2rem; } - .xl\:my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; - } - .xl\:mx-9 { margin-left: 2.25rem; margin-right: 2.25rem; } - .xl\:my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; - } - .xl\:mx-10 { margin-left: 2.5rem; margin-right: 2.5rem; } - .xl\:my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; - } - .xl\:mx-11 { margin-left: 2.75rem; margin-right: 2.75rem; } - .xl\:my-12 { - margin-top: 3rem; - margin-bottom: 3rem; - } - .xl\:mx-12 { margin-left: 3rem; margin-right: 3rem; } - .xl\:my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; - } - .xl\:mx-14 { margin-left: 3.5rem; margin-right: 3.5rem; } - .xl\:my-16 { - margin-top: 4rem; - margin-bottom: 4rem; - } - .xl\:mx-16 { margin-left: 4rem; margin-right: 4rem; } - .xl\:my-20 { - margin-top: 5rem; - margin-bottom: 5rem; - } - .xl\:mx-20 { margin-left: 5rem; margin-right: 5rem; } - .xl\:my-24 { - margin-top: 6rem; - margin-bottom: 6rem; - } - .xl\:mx-24 { margin-left: 6rem; margin-right: 6rem; } - .xl\:my-28 { - margin-top: 7rem; - margin-bottom: 7rem; - } - .xl\:mx-28 { margin-left: 7rem; margin-right: 7rem; } - .xl\:my-32 { - margin-top: 8rem; - margin-bottom: 8rem; - } - .xl\:mx-32 { margin-left: 8rem; margin-right: 8rem; } - .xl\:my-36 { - margin-top: 9rem; - margin-bottom: 9rem; - } - .xl\:mx-36 { margin-left: 9rem; margin-right: 9rem; } - .xl\:my-40 { - margin-top: 10rem; - margin-bottom: 10rem; - } - .xl\:mx-40 { margin-left: 10rem; margin-right: 10rem; } - .xl\:my-44 { - margin-top: 11rem; - margin-bottom: 11rem; - } - .xl\:mx-44 { margin-left: 11rem; margin-right: 11rem; } - .xl\:my-48 { - margin-top: 12rem; - margin-bottom: 12rem; - } - .xl\:mx-48 { margin-left: 12rem; margin-right: 12rem; } - .xl\:my-52 { - margin-top: 13rem; - margin-bottom: 13rem; - } - .xl\:mx-52 { margin-left: 13rem; margin-right: 13rem; } - .xl\:my-56 { - margin-top: 14rem; - margin-bottom: 14rem; - } - .xl\:mx-56 { margin-left: 14rem; margin-right: 14rem; } - .xl\:my-60 { - margin-top: 15rem; - margin-bottom: 15rem; - } - .xl\:mx-60 { margin-left: 15rem; margin-right: 15rem; } - .xl\:my-64 { - margin-top: 16rem; - margin-bottom: 16rem; - } - .xl\:mx-64 { margin-left: 16rem; margin-right: 16rem; } - .xl\:my-72 { - margin-top: 18rem; - margin-bottom: 18rem; - } - .xl\:mx-72 { margin-left: 18rem; margin-right: 18rem; } - .xl\:my-80 { - margin-top: 20rem; - margin-bottom: 20rem; - } - .xl\:mx-80 { margin-left: 20rem; margin-right: 20rem; } - .xl\:my-96 { - margin-top: 24rem; - margin-bottom: 24rem; - } - .xl\:mx-96 { margin-left: 24rem; margin-right: 24rem; } - .xl\:my-auto { - margin-top: auto; - margin-bottom: auto; - } - .xl\:mx-auto { margin-left: auto; margin-right: auto; } - .xl\:my-px { - margin-top: 1px; - margin-bottom: 1px; - } - .xl\:mx-px { margin-left: 1px; margin-right: 1px; } - .xl\:my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; - } - .xl\:mx-0\.5 { margin-left: 0.125rem; margin-right: 0.125rem; } - .xl\:my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; - } - .xl\:mx-1\.5 { margin-left: 0.375rem; margin-right: 0.375rem; } - .xl\:my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; - } - .xl\:mx-2\.5 { margin-left: 0.625rem; margin-right: 0.625rem; } - .xl\:my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; - } - .xl\:mx-3\.5 { margin-left: 0.875rem; margin-right: 0.875rem; } - .xl\:-my-0 { - margin-top: 0px; - margin-bottom: 0px; - } - .xl\:-mx-0 { margin-left: 0px; margin-right: 0px; } - .xl\:-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; - } - .xl\:-mx-1 { margin-left: -0.25rem; margin-right: -0.25rem; } - .xl\:-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; - } - .xl\:-mx-2 { margin-left: -0.5rem; margin-right: -0.5rem; } - .xl\:-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; - } - .xl\:-mx-3 { margin-left: -0.75rem; margin-right: -0.75rem; } - .xl\:-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; - } - .xl\:-mx-4 { margin-left: -1rem; margin-right: -1rem; } - .xl\:-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; - } - .xl\:-mx-5 { margin-left: -1.25rem; margin-right: -1.25rem; } - .xl\:-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; - } - .xl\:-mx-6 { margin-left: -1.5rem; margin-right: -1.5rem; } - .xl\:-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; - } - .xl\:-mx-7 { margin-left: -1.75rem; margin-right: -1.75rem; } - .xl\:-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; - } - .xl\:-mx-8 { margin-left: -2rem; margin-right: -2rem; } - .xl\:-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; - } - .xl\:-mx-9 { margin-left: -2.25rem; margin-right: -2.25rem; } - .xl\:-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; - } - .xl\:-mx-10 { margin-left: -2.5rem; margin-right: -2.5rem; } - .xl\:-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; - } - .xl\:-mx-11 { margin-left: -2.75rem; margin-right: -2.75rem; } - .xl\:-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; - } - .xl\:-mx-12 { margin-left: -3rem; margin-right: -3rem; } - .xl\:-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; - } - .xl\:-mx-14 { margin-left: -3.5rem; margin-right: -3.5rem; } - .xl\:-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; - } - .xl\:-mx-16 { margin-left: -4rem; margin-right: -4rem; } - .xl\:-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; - } - .xl\:-mx-20 { margin-left: -5rem; margin-right: -5rem; } - .xl\:-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; - } - .xl\:-mx-24 { margin-left: -6rem; margin-right: -6rem; } - .xl\:-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; - } - .xl\:-mx-28 { margin-left: -7rem; margin-right: -7rem; } - .xl\:-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; - } - .xl\:-mx-32 { margin-left: -8rem; margin-right: -8rem; } - .xl\:-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; - } - .xl\:-mx-36 { margin-left: -9rem; margin-right: -9rem; } - .xl\:-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; - } - .xl\:-mx-40 { margin-left: -10rem; margin-right: -10rem; } - .xl\:-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; - } - .xl\:-mx-44 { margin-left: -11rem; margin-right: -11rem; } - .xl\:-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; - } - .xl\:-mx-48 { margin-left: -12rem; margin-right: -12rem; } - .xl\:-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; - } - .xl\:-mx-52 { margin-left: -13rem; margin-right: -13rem; } - .xl\:-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; - } - .xl\:-mx-56 { margin-left: -14rem; margin-right: -14rem; } - .xl\:-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; - } - .xl\:-mx-60 { margin-left: -15rem; margin-right: -15rem; } - .xl\:-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; - } - .xl\:-mx-64 { margin-left: -16rem; margin-right: -16rem; } - .xl\:-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; - } - .xl\:-mx-72 { margin-left: -18rem; margin-right: -18rem; } - .xl\:-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; - } - .xl\:-mx-80 { margin-left: -20rem; margin-right: -20rem; } - .xl\:-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; - } - .xl\:-mx-96 { margin-left: -24rem; margin-right: -24rem; } - .xl\:-my-px { - margin-top: -1px; - margin-bottom: -1px; - } - .xl\:-mx-px { margin-left: -1px; margin-right: -1px; } - .xl\:-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; - } - .xl\:-mx-0\.5 { margin-left: -0.125rem; margin-right: -0.125rem; } - .xl\:-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; - } - .xl\:-mx-1\.5 { margin-left: -0.375rem; margin-right: -0.375rem; } - .xl\:-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; - } - .xl\:-mx-2\.5 { margin-left: -0.625rem; margin-right: -0.625rem; } - .xl\:-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; - } - .xl\:-mx-3\.5 { margin-left: -0.875rem; margin-right: -0.875rem; } - .xl\:mt-0 { + .xl\:my-0 { margin-top: 0px; + margin-bottom: 0px; } - .xl\:mr-0 { - margin-right: 0px; - } - - .xl\:mb-0 { - margin-bottom: 0px; + .xl\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } - .xl\:ml-0 { - margin-left: 0px; + .xl\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; } - .xl\:mt-1 { - margin-top: 0.25rem; + .xl\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; } - .xl\:mr-1 { - margin-right: 0.25rem; + .xl\:my-4 { + margin-top: 1rem; + margin-bottom: 1rem; } - .xl\:mb-1 { - margin-bottom: 0.25rem; + .xl\:my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; } - .xl\:ml-1 { - margin-left: 0.25rem; + .xl\:my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; } - .xl\:mt-2 { - margin-top: 0.5rem; + .xl\:my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; } - .xl\:mr-2 { - margin-right: 0.5rem; + .xl\:my-8 { + margin-top: 2rem; + margin-bottom: 2rem; } - .xl\:mb-2 { - margin-bottom: 0.5rem; + .xl\:my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; } - .xl\:ml-2 { - margin-left: 0.5rem; + .xl\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; } - .xl\:mt-3 { - margin-top: 0.75rem; + .xl\:my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; } - .xl\:mr-3 { - margin-right: 0.75rem; + .xl\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; } - .xl\:mb-3 { - margin-bottom: 0.75rem; + .xl\:my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; } - .xl\:ml-3 { - margin-left: 0.75rem; + .xl\:my-16 { + margin-top: 4rem; + margin-bottom: 4rem; } - .xl\:mt-4 { - margin-top: 1rem; + .xl\:my-20 { + margin-top: 5rem; + margin-bottom: 5rem; } - .xl\:mr-4 { - margin-right: 1rem; + .xl\:my-24 { + margin-top: 6rem; + margin-bottom: 6rem; } - .xl\:mb-4 { - margin-bottom: 1rem; + .xl\:my-28 { + margin-top: 7rem; + margin-bottom: 7rem; } - .xl\:ml-4 { - margin-left: 1rem; + .xl\:my-32 { + margin-top: 8rem; + margin-bottom: 8rem; } - .xl\:mt-5 { - margin-top: 1.25rem; + .xl\:my-36 { + margin-top: 9rem; + margin-bottom: 9rem; } - .xl\:mr-5 { - margin-right: 1.25rem; + .xl\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; } - .xl\:mb-5 { - margin-bottom: 1.25rem; + .xl\:my-44 { + margin-top: 11rem; + margin-bottom: 11rem; } - .xl\:ml-5 { - margin-left: 1.25rem; + .xl\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; } - .xl\:mt-6 { - margin-top: 1.5rem; + .xl\:my-52 { + margin-top: 13rem; + margin-bottom: 13rem; } - .xl\:mr-6 { - margin-right: 1.5rem; + .xl\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; } - .xl\:mb-6 { - margin-bottom: 1.5rem; + .xl\:my-60 { + margin-top: 15rem; + margin-bottom: 15rem; } - .xl\:ml-6 { - margin-left: 1.5rem; + .xl\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; } - .xl\:mt-7 { - margin-top: 1.75rem; + .xl\:my-72 { + margin-top: 18rem; + margin-bottom: 18rem; } - .xl\:mr-7 { - margin-right: 1.75rem; + .xl\:my-80 { + margin-top: 20rem; + margin-bottom: 20rem; } - .xl\:mb-7 { - margin-bottom: 1.75rem; + .xl\:my-96 { + margin-top: 24rem; + margin-bottom: 24rem; } - .xl\:ml-7 { - margin-left: 1.75rem; + .xl\:my-auto { + margin-top: auto; + margin-bottom: auto; } - .xl\:mt-8 { - margin-top: 2rem; + .xl\:my-px { + margin-top: 1px; + margin-bottom: 1px; } - .xl\:mr-8 { - margin-right: 2rem; + .xl\:my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; } - .xl\:mb-8 { - margin-bottom: 2rem; + .xl\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; } - .xl\:ml-8 { - margin-left: 2rem; + .xl\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; } - .xl\:mt-9 { - margin-top: 2.25rem; + .xl\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; } - .xl\:mr-9 { - margin-right: 2.25rem; + .xl\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .xl\:mb-9 { - margin-bottom: 2.25rem; + .xl\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } - .xl\:ml-9 { - margin-left: 2.25rem; + .xl\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } - .xl\:mt-10 { - margin-top: 2.5rem; + .xl\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } - .xl\:mr-10 { - margin-right: 2.5rem; + .xl\:-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } - .xl\:mb-10 { - margin-bottom: 2.5rem; + .xl\:-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } - .xl\:ml-10 { - margin-left: 2.5rem; + .xl\:-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } - .xl\:mt-11 { - margin-top: 2.75rem; + .xl\:-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } - .xl\:mr-11 { - margin-right: 2.75rem; + .xl\:-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } - .xl\:mb-11 { - margin-bottom: 2.75rem; + .xl\:-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } - .xl\:ml-11 { - margin-left: 2.75rem; + .xl\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } - .xl\:mt-12 { - margin-top: 3rem; + .xl\:-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } - .xl\:mr-12 { - margin-right: 3rem; + .xl\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } - .xl\:mb-12 { - margin-bottom: 3rem; + .xl\:-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } - .xl\:ml-12 { - margin-left: 3rem; + .xl\:-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } - .xl\:mt-14 { - margin-top: 3.5rem; + .xl\:-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } - .xl\:mr-14 { - margin-right: 3.5rem; + .xl\:-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } - .xl\:mb-14 { - margin-bottom: 3.5rem; + .xl\:-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } - .xl\:ml-14 { - margin-left: 3.5rem; + .xl\:-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } - .xl\:mt-16 { - margin-top: 4rem; + .xl\:-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } - .xl\:mr-16 { - margin-right: 4rem; + .xl\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } - .xl\:mb-16 { - margin-bottom: 4rem; + .xl\:-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } - .xl\:ml-16 { - margin-left: 4rem; + .xl\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } - .xl\:mt-20 { - margin-top: 5rem; + .xl\:-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } - .xl\:mr-20 { - margin-right: 5rem; + .xl\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } - .xl\:mb-20 { - margin-bottom: 5rem; + .xl\:-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } - .xl\:ml-20 { - margin-left: 5rem; + .xl\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } - .xl\:mt-24 { - margin-top: 6rem; + .xl\:-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } - .xl\:mr-24 { - margin-right: 6rem; + .xl\:-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } - .xl\:mb-24 { - margin-bottom: 6rem; + .xl\:-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } - .xl\:ml-24 { - margin-left: 6rem; + .xl\:-my-px { + margin-top: -1px; + margin-bottom: -1px; } - .xl\:mt-28 { - margin-top: 7rem; + .xl\:-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } - .xl\:mr-28 { - margin-right: 7rem; + .xl\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } - .xl\:mb-28 { - margin-bottom: 7rem; + .xl\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } - .xl\:ml-28 { - margin-left: 7rem; + .xl\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } - .xl\:mt-32 { - margin-top: 8rem; + .xl\:mt-0 { + margin-top: 0px; } - .xl\:mr-32 { - margin-right: 8rem; + .xl\:mt-1 { + margin-top: 0.25rem; } - .xl\:mb-32 { - margin-bottom: 8rem; + .xl\:mt-2 { + margin-top: 0.5rem; } - .xl\:ml-32 { - margin-left: 8rem; + .xl\:mt-3 { + margin-top: 0.75rem; } - .xl\:mt-36 { - margin-top: 9rem; + .xl\:mt-4 { + margin-top: 1rem; } - .xl\:mr-36 { - margin-right: 9rem; + .xl\:mt-5 { + margin-top: 1.25rem; } - .xl\:mb-36 { - margin-bottom: 9rem; + .xl\:mt-6 { + margin-top: 1.5rem; } - .xl\:ml-36 { - margin-left: 9rem; + .xl\:mt-7 { + margin-top: 1.75rem; } - .xl\:mt-40 { - margin-top: 10rem; + .xl\:mt-8 { + margin-top: 2rem; } - .xl\:mr-40 { - margin-right: 10rem; + .xl\:mt-9 { + margin-top: 2.25rem; } - .xl\:mb-40 { - margin-bottom: 10rem; + .xl\:mt-10 { + margin-top: 2.5rem; } - .xl\:ml-40 { - margin-left: 10rem; + .xl\:mt-11 { + margin-top: 2.75rem; } - .xl\:mt-44 { - margin-top: 11rem; + .xl\:mt-12 { + margin-top: 3rem; } - .xl\:mr-44 { - margin-right: 11rem; + .xl\:mt-14 { + margin-top: 3.5rem; } - .xl\:mb-44 { - margin-bottom: 11rem; + .xl\:mt-16 { + margin-top: 4rem; } - .xl\:ml-44 { - margin-left: 11rem; + .xl\:mt-20 { + margin-top: 5rem; } - .xl\:mt-48 { - margin-top: 12rem; + .xl\:mt-24 { + margin-top: 6rem; } - .xl\:mr-48 { - margin-right: 12rem; + .xl\:mt-28 { + margin-top: 7rem; } - .xl\:mb-48 { - margin-bottom: 12rem; + .xl\:mt-32 { + margin-top: 8rem; } - .xl\:ml-48 { - margin-left: 12rem; + .xl\:mt-36 { + margin-top: 9rem; } - .xl\:mt-52 { - margin-top: 13rem; + .xl\:mt-40 { + margin-top: 10rem; } - .xl\:mr-52 { - margin-right: 13rem; + .xl\:mt-44 { + margin-top: 11rem; } - .xl\:mb-52 { - margin-bottom: 13rem; + .xl\:mt-48 { + margin-top: 12rem; } - .xl\:ml-52 { - margin-left: 13rem; + .xl\:mt-52 { + margin-top: 13rem; } .xl\:mt-56 { margin-top: 14rem; } - .xl\:mr-56 { - margin-right: 14rem; + .xl\:mt-60 { + margin-top: 15rem; } - .xl\:mb-56 { - margin-bottom: 14rem; + .xl\:mt-64 { + margin-top: 16rem; } - .xl\:ml-56 { - margin-left: 14rem; + .xl\:mt-72 { + margin-top: 18rem; } - .xl\:mt-60 { - margin-top: 15rem; + .xl\:mt-80 { + margin-top: 20rem; } - .xl\:mr-60 { - margin-right: 15rem; + .xl\:mt-96 { + margin-top: 24rem; } - .xl\:mb-60 { - margin-bottom: 15rem; + .xl\:mt-auto { + margin-top: auto; } - .xl\:ml-60 { - margin-left: 15rem; + .xl\:mt-px { + margin-top: 1px; } - .xl\:mt-64 { - margin-top: 16rem; + .xl\:mt-0\.5 { + margin-top: 0.125rem; } - .xl\:mr-64 { - margin-right: 16rem; + .xl\:mt-1\.5 { + margin-top: 0.375rem; } - .xl\:mb-64 { - margin-bottom: 16rem; + .xl\:mt-2\.5 { + margin-top: 0.625rem; } - .xl\:ml-64 { - margin-left: 16rem; + .xl\:mt-3\.5 { + margin-top: 0.875rem; } - .xl\:mt-72 { - margin-top: 18rem; + .xl\:-mt-0 { + margin-top: 0px; } - .xl\:mr-72 { - margin-right: 18rem; + .xl\:-mt-1 { + margin-top: -0.25rem; } - .xl\:mb-72 { - margin-bottom: 18rem; + .xl\:-mt-2 { + margin-top: -0.5rem; } - .xl\:ml-72 { - margin-left: 18rem; + .xl\:-mt-3 { + margin-top: -0.75rem; } - .xl\:mt-80 { - margin-top: 20rem; + .xl\:-mt-4 { + margin-top: -1rem; } - .xl\:mr-80 { - margin-right: 20rem; + .xl\:-mt-5 { + margin-top: -1.25rem; } - .xl\:mb-80 { - margin-bottom: 20rem; + .xl\:-mt-6 { + margin-top: -1.5rem; } - .xl\:ml-80 { - margin-left: 20rem; + .xl\:-mt-7 { + margin-top: -1.75rem; } - .xl\:mt-96 { - margin-top: 24rem; + .xl\:-mt-8 { + margin-top: -2rem; } - .xl\:mr-96 { - margin-right: 24rem; + .xl\:-mt-9 { + margin-top: -2.25rem; } - .xl\:mb-96 { - margin-bottom: 24rem; + .xl\:-mt-10 { + margin-top: -2.5rem; } - .xl\:ml-96 { - margin-left: 24rem; + .xl\:-mt-11 { + margin-top: -2.75rem; } - .xl\:mt-auto { - margin-top: auto; + .xl\:-mt-12 { + margin-top: -3rem; } - .xl\:mr-auto { - margin-right: auto; + .xl\:-mt-14 { + margin-top: -3.5rem; } - .xl\:mb-auto { - margin-bottom: auto; + .xl\:-mt-16 { + margin-top: -4rem; } - .xl\:ml-auto { - margin-left: auto; + .xl\:-mt-20 { + margin-top: -5rem; } - .xl\:mt-px { - margin-top: 1px; + .xl\:-mt-24 { + margin-top: -6rem; } - .xl\:mr-px { - margin-right: 1px; + .xl\:-mt-28 { + margin-top: -7rem; } - .xl\:mb-px { - margin-bottom: 1px; + .xl\:-mt-32 { + margin-top: -8rem; } - .xl\:ml-px { - margin-left: 1px; + .xl\:-mt-36 { + margin-top: -9rem; } - .xl\:mt-0\.5 { - margin-top: 0.125rem; + .xl\:-mt-40 { + margin-top: -10rem; } - .xl\:mr-0\.5 { - margin-right: 0.125rem; + .xl\:-mt-44 { + margin-top: -11rem; } - .xl\:mb-0\.5 { - margin-bottom: 0.125rem; + .xl\:-mt-48 { + margin-top: -12rem; } - .xl\:ml-0\.5 { - margin-left: 0.125rem; + .xl\:-mt-52 { + margin-top: -13rem; } - .xl\:mt-1\.5 { - margin-top: 0.375rem; + .xl\:-mt-56 { + margin-top: -14rem; } - .xl\:mr-1\.5 { - margin-right: 0.375rem; + .xl\:-mt-60 { + margin-top: -15rem; } - .xl\:mb-1\.5 { - margin-bottom: 0.375rem; + .xl\:-mt-64 { + margin-top: -16rem; } - .xl\:ml-1\.5 { - margin-left: 0.375rem; + .xl\:-mt-72 { + margin-top: -18rem; } - .xl\:mt-2\.5 { - margin-top: 0.625rem; + .xl\:-mt-80 { + margin-top: -20rem; } - .xl\:mr-2\.5 { - margin-right: 0.625rem; + .xl\:-mt-96 { + margin-top: -24rem; } - .xl\:mb-2\.5 { - margin-bottom: 0.625rem; + .xl\:-mt-px { + margin-top: -1px; } - .xl\:ml-2\.5 { - margin-left: 0.625rem; + .xl\:-mt-0\.5 { + margin-top: -0.125rem; } - .xl\:mt-3\.5 { - margin-top: 0.875rem; + .xl\:-mt-1\.5 { + margin-top: -0.375rem; } - .xl\:mr-3\.5 { - margin-right: 0.875rem; + .xl\:-mt-2\.5 { + margin-top: -0.625rem; } - .xl\:mb-3\.5 { - margin-bottom: 0.875rem; + .xl\:-mt-3\.5 { + margin-top: -0.875rem; } - .xl\:ml-3\.5 { - margin-left: 0.875rem; + .xl\:mr-0 { + margin-right: 0px; } - .xl\:-mt-0 { - margin-top: 0px; + .xl\:mr-1 { + margin-right: 0.25rem; } - .xl\:-mr-0 { - margin-right: 0px; + .xl\:mr-2 { + margin-right: 0.5rem; } - .xl\:-mb-0 { - margin-bottom: 0px; + .xl\:mr-3 { + margin-right: 0.75rem; } - .xl\:-ml-0 { - margin-left: 0px; + .xl\:mr-4 { + margin-right: 1rem; } - .xl\:-mt-1 { - margin-top: -0.25rem; + .xl\:mr-5 { + margin-right: 1.25rem; } - .xl\:-mr-1 { - margin-right: -0.25rem; + .xl\:mr-6 { + margin-right: 1.5rem; } - .xl\:-mb-1 { - margin-bottom: -0.25rem; + .xl\:mr-7 { + margin-right: 1.75rem; } - .xl\:-ml-1 { - margin-left: -0.25rem; + .xl\:mr-8 { + margin-right: 2rem; } - .xl\:-mt-2 { - margin-top: -0.5rem; + .xl\:mr-9 { + margin-right: 2.25rem; } - .xl\:-mr-2 { - margin-right: -0.5rem; + .xl\:mr-10 { + margin-right: 2.5rem; } - .xl\:-mb-2 { - margin-bottom: -0.5rem; + .xl\:mr-11 { + margin-right: 2.75rem; } - .xl\:-ml-2 { - margin-left: -0.5rem; + .xl\:mr-12 { + margin-right: 3rem; } - .xl\:-mt-3 { - margin-top: -0.75rem; + .xl\:mr-14 { + margin-right: 3.5rem; } - .xl\:-mr-3 { - margin-right: -0.75rem; + .xl\:mr-16 { + margin-right: 4rem; } - .xl\:-mb-3 { - margin-bottom: -0.75rem; + .xl\:mr-20 { + margin-right: 5rem; } - .xl\:-ml-3 { - margin-left: -0.75rem; + .xl\:mr-24 { + margin-right: 6rem; } - .xl\:-mt-4 { - margin-top: -1rem; + .xl\:mr-28 { + margin-right: 7rem; } - .xl\:-mr-4 { - margin-right: -1rem; + .xl\:mr-32 { + margin-right: 8rem; } - .xl\:-mb-4 { - margin-bottom: -1rem; + .xl\:mr-36 { + margin-right: 9rem; } - .xl\:-ml-4 { - margin-left: -1rem; + .xl\:mr-40 { + margin-right: 10rem; } - .xl\:-mt-5 { - margin-top: -1.25rem; + .xl\:mr-44 { + margin-right: 11rem; } - .xl\:-mr-5 { - margin-right: -1.25rem; + .xl\:mr-48 { + margin-right: 12rem; } - .xl\:-mb-5 { - margin-bottom: -1.25rem; + .xl\:mr-52 { + margin-right: 13rem; } - .xl\:-ml-5 { - margin-left: -1.25rem; + .xl\:mr-56 { + margin-right: 14rem; } - .xl\:-mt-6 { - margin-top: -1.5rem; + .xl\:mr-60 { + margin-right: 15rem; } - .xl\:-mr-6 { - margin-right: -1.5rem; + .xl\:mr-64 { + margin-right: 16rem; } - .xl\:-mb-6 { - margin-bottom: -1.5rem; + .xl\:mr-72 { + margin-right: 18rem; } - .xl\:-ml-6 { - margin-left: -1.5rem; + .xl\:mr-80 { + margin-right: 20rem; } - .xl\:-mt-7 { - margin-top: -1.75rem; + .xl\:mr-96 { + margin-right: 24rem; } - .xl\:-mr-7 { - margin-right: -1.75rem; + .xl\:mr-auto { + margin-right: auto; } - .xl\:-mb-7 { - margin-bottom: -1.75rem; + .xl\:mr-px { + margin-right: 1px; } - .xl\:-ml-7 { - margin-left: -1.75rem; + .xl\:mr-0\.5 { + margin-right: 0.125rem; } - .xl\:-mt-8 { - margin-top: -2rem; + .xl\:mr-1\.5 { + margin-right: 0.375rem; } - .xl\:-mr-8 { - margin-right: -2rem; + .xl\:mr-2\.5 { + margin-right: 0.625rem; } - .xl\:-mb-8 { - margin-bottom: -2rem; + .xl\:mr-3\.5 { + margin-right: 0.875rem; } - .xl\:-ml-8 { - margin-left: -2rem; + .xl\:-mr-0 { + margin-right: 0px; } - .xl\:-mt-9 { - margin-top: -2.25rem; + .xl\:-mr-1 { + margin-right: -0.25rem; } - .xl\:-mr-9 { - margin-right: -2.25rem; + .xl\:-mr-2 { + margin-right: -0.5rem; } - .xl\:-mb-9 { - margin-bottom: -2.25rem; + .xl\:-mr-3 { + margin-right: -0.75rem; } - .xl\:-ml-9 { - margin-left: -2.25rem; + .xl\:-mr-4 { + margin-right: -1rem; } - .xl\:-mt-10 { - margin-top: -2.5rem; + .xl\:-mr-5 { + margin-right: -1.25rem; } - .xl\:-mr-10 { - margin-right: -2.5rem; + .xl\:-mr-6 { + margin-right: -1.5rem; } - .xl\:-mb-10 { - margin-bottom: -2.5rem; + .xl\:-mr-7 { + margin-right: -1.75rem; } - .xl\:-ml-10 { - margin-left: -2.5rem; + .xl\:-mr-8 { + margin-right: -2rem; } - .xl\:-mt-11 { - margin-top: -2.75rem; + .xl\:-mr-9 { + margin-right: -2.25rem; + } + + .xl\:-mr-10 { + margin-right: -2.5rem; } .xl\:-mr-11 { margin-right: -2.75rem; } - .xl\:-mb-11 { - margin-bottom: -2.75rem; + .xl\:-mr-12 { + margin-right: -3rem; } - .xl\:-ml-11 { - margin-left: -2.75rem; + .xl\:-mr-14 { + margin-right: -3.5rem; } - .xl\:-mt-12 { - margin-top: -3rem; + .xl\:-mr-16 { + margin-right: -4rem; } - .xl\:-mr-12 { - margin-right: -3rem; + .xl\:-mr-20 { + margin-right: -5rem; } - .xl\:-mb-12 { - margin-bottom: -3rem; + .xl\:-mr-24 { + margin-right: -6rem; } - .xl\:-ml-12 { - margin-left: -3rem; + .xl\:-mr-28 { + margin-right: -7rem; } - .xl\:-mt-14 { - margin-top: -3.5rem; + .xl\:-mr-32 { + margin-right: -8rem; } - .xl\:-mr-14 { - margin-right: -3.5rem; + .xl\:-mr-36 { + margin-right: -9rem; } - .xl\:-mb-14 { - margin-bottom: -3.5rem; + .xl\:-mr-40 { + margin-right: -10rem; } - .xl\:-ml-14 { - margin-left: -3.5rem; + .xl\:-mr-44 { + margin-right: -11rem; } - .xl\:-mt-16 { - margin-top: -4rem; + .xl\:-mr-48 { + margin-right: -12rem; } - .xl\:-mr-16 { - margin-right: -4rem; + .xl\:-mr-52 { + margin-right: -13rem; } - .xl\:-mb-16 { - margin-bottom: -4rem; + .xl\:-mr-56 { + margin-right: -14rem; } - .xl\:-ml-16 { - margin-left: -4rem; + .xl\:-mr-60 { + margin-right: -15rem; } - .xl\:-mt-20 { - margin-top: -5rem; + .xl\:-mr-64 { + margin-right: -16rem; } - .xl\:-mr-20 { - margin-right: -5rem; + .xl\:-mr-72 { + margin-right: -18rem; } - .xl\:-mb-20 { - margin-bottom: -5rem; + .xl\:-mr-80 { + margin-right: -20rem; } - .xl\:-ml-20 { - margin-left: -5rem; + .xl\:-mr-96 { + margin-right: -24rem; } - .xl\:-mt-24 { - margin-top: -6rem; + .xl\:-mr-px { + margin-right: -1px; } - .xl\:-mr-24 { - margin-right: -6rem; + .xl\:-mr-0\.5 { + margin-right: -0.125rem; } - .xl\:-mb-24 { - margin-bottom: -6rem; + .xl\:-mr-1\.5 { + margin-right: -0.375rem; } - .xl\:-ml-24 { - margin-left: -6rem; + .xl\:-mr-2\.5 { + margin-right: -0.625rem; } - .xl\:-mt-28 { - margin-top: -7rem; + .xl\:-mr-3\.5 { + margin-right: -0.875rem; } - .xl\:-mr-28 { - margin-right: -7rem; + .xl\:mb-0 { + margin-bottom: 0px; } - .xl\:-mb-28 { - margin-bottom: -7rem; + .xl\:mb-1 { + margin-bottom: 0.25rem; } - .xl\:-ml-28 { - margin-left: -7rem; + .xl\:mb-2 { + margin-bottom: 0.5rem; } - .xl\:-mt-32 { - margin-top: -8rem; + .xl\:mb-3 { + margin-bottom: 0.75rem; } - .xl\:-mr-32 { - margin-right: -8rem; + .xl\:mb-4 { + margin-bottom: 1rem; } - .xl\:-mb-32 { - margin-bottom: -8rem; + .xl\:mb-5 { + margin-bottom: 1.25rem; } - .xl\:-ml-32 { - margin-left: -8rem; + .xl\:mb-6 { + margin-bottom: 1.5rem; } - .xl\:-mt-36 { - margin-top: -9rem; + .xl\:mb-7 { + margin-bottom: 1.75rem; } - .xl\:-mr-36 { - margin-right: -9rem; + .xl\:mb-8 { + margin-bottom: 2rem; } - .xl\:-mb-36 { - margin-bottom: -9rem; + .xl\:mb-9 { + margin-bottom: 2.25rem; } - .xl\:-ml-36 { - margin-left: -9rem; + .xl\:mb-10 { + margin-bottom: 2.5rem; } - .xl\:-mt-40 { - margin-top: -10rem; + .xl\:mb-11 { + margin-bottom: 2.75rem; } - .xl\:-mr-40 { - margin-right: -10rem; + .xl\:mb-12 { + margin-bottom: 3rem; } - .xl\:-mb-40 { - margin-bottom: -10rem; + .xl\:mb-14 { + margin-bottom: 3.5rem; } - .xl\:-ml-40 { - margin-left: -10rem; + .xl\:mb-16 { + margin-bottom: 4rem; } - .xl\:-mt-44 { - margin-top: -11rem; + .xl\:mb-20 { + margin-bottom: 5rem; } - .xl\:-mr-44 { - margin-right: -11rem; + .xl\:mb-24 { + margin-bottom: 6rem; } - .xl\:-mb-44 { - margin-bottom: -11rem; + .xl\:mb-28 { + margin-bottom: 7rem; } - .xl\:-ml-44 { - margin-left: -11rem; + .xl\:mb-32 { + margin-bottom: 8rem; } - .xl\:-mt-48 { - margin-top: -12rem; + .xl\:mb-36 { + margin-bottom: 9rem; } - .xl\:-mr-48 { - margin-right: -12rem; + .xl\:mb-40 { + margin-bottom: 10rem; } - .xl\:-mb-48 { - margin-bottom: -12rem; + .xl\:mb-44 { + margin-bottom: 11rem; } - .xl\:-ml-48 { - margin-left: -12rem; + .xl\:mb-48 { + margin-bottom: 12rem; } - .xl\:-mt-52 { - margin-top: -13rem; + .xl\:mb-52 { + margin-bottom: 13rem; } - .xl\:-mr-52 { - margin-right: -13rem; + .xl\:mb-56 { + margin-bottom: 14rem; } - .xl\:-mb-52 { - margin-bottom: -13rem; + .xl\:mb-60 { + margin-bottom: 15rem; } - .xl\:-ml-52 { - margin-left: -13rem; + .xl\:mb-64 { + margin-bottom: 16rem; } - .xl\:-mt-56 { - margin-top: -14rem; + .xl\:mb-72 { + margin-bottom: 18rem; } - .xl\:-mr-56 { - margin-right: -14rem; + .xl\:mb-80 { + margin-bottom: 20rem; } - .xl\:-mb-56 { - margin-bottom: -14rem; + .xl\:mb-96 { + margin-bottom: 24rem; } - .xl\:-ml-56 { - margin-left: -14rem; + .xl\:mb-auto { + margin-bottom: auto; } - .xl\:-mt-60 { - margin-top: -15rem; + .xl\:mb-px { + margin-bottom: 1px; } - .xl\:-mr-60 { - margin-right: -15rem; + .xl\:mb-0\.5 { + margin-bottom: 0.125rem; } - .xl\:-mb-60 { - margin-bottom: -15rem; + .xl\:mb-1\.5 { + margin-bottom: 0.375rem; } - .xl\:-ml-60 { - margin-left: -15rem; + .xl\:mb-2\.5 { + margin-bottom: 0.625rem; } - .xl\:-mt-64 { - margin-top: -16rem; + .xl\:mb-3\.5 { + margin-bottom: 0.875rem; } - .xl\:-mr-64 { - margin-right: -16rem; + .xl\:-mb-0 { + margin-bottom: 0px; } - .xl\:-mb-64 { - margin-bottom: -16rem; + .xl\:-mb-1 { + margin-bottom: -0.25rem; } - .xl\:-ml-64 { - margin-left: -16rem; + .xl\:-mb-2 { + margin-bottom: -0.5rem; } - .xl\:-mt-72 { - margin-top: -18rem; + .xl\:-mb-3 { + margin-bottom: -0.75rem; } - .xl\:-mr-72 { - margin-right: -18rem; + .xl\:-mb-4 { + margin-bottom: -1rem; } - .xl\:-mb-72 { - margin-bottom: -18rem; + .xl\:-mb-5 { + margin-bottom: -1.25rem; } - .xl\:-ml-72 { - margin-left: -18rem; + .xl\:-mb-6 { + margin-bottom: -1.5rem; } - .xl\:-mt-80 { - margin-top: -20rem; + .xl\:-mb-7 { + margin-bottom: -1.75rem; } - .xl\:-mr-80 { - margin-right: -20rem; + .xl\:-mb-8 { + margin-bottom: -2rem; } - .xl\:-mb-80 { - margin-bottom: -20rem; + .xl\:-mb-9 { + margin-bottom: -2.25rem; } - .xl\:-ml-80 { - margin-left: -20rem; + .xl\:-mb-10 { + margin-bottom: -2.5rem; } - .xl\:-mt-96 { - margin-top: -24rem; + .xl\:-mb-11 { + margin-bottom: -2.75rem; } - .xl\:-mr-96 { - margin-right: -24rem; + .xl\:-mb-12 { + margin-bottom: -3rem; } - .xl\:-mb-96 { - margin-bottom: -24rem; + .xl\:-mb-14 { + margin-bottom: -3.5rem; } - .xl\:-ml-96 { - margin-left: -24rem; + .xl\:-mb-16 { + margin-bottom: -4rem; } - .xl\:-mt-px { - margin-top: -1px; + .xl\:-mb-20 { + margin-bottom: -5rem; } - .xl\:-mr-px { - margin-right: -1px; + .xl\:-mb-24 { + margin-bottom: -6rem; } - .xl\:-mb-px { - margin-bottom: -1px; + .xl\:-mb-28 { + margin-bottom: -7rem; } - .xl\:-ml-px { - margin-left: -1px; + .xl\:-mb-32 { + margin-bottom: -8rem; } - .xl\:-mt-0\.5 { - margin-top: -0.125rem; + .xl\:-mb-36 { + margin-bottom: -9rem; } - .xl\:-mr-0\.5 { - margin-right: -0.125rem; + .xl\:-mb-40 { + margin-bottom: -10rem; } - .xl\:-mb-0\.5 { - margin-bottom: -0.125rem; + .xl\:-mb-44 { + margin-bottom: -11rem; } - .xl\:-ml-0\.5 { - margin-left: -0.125rem; + .xl\:-mb-48 { + margin-bottom: -12rem; } - .xl\:-mt-1\.5 { - margin-top: -0.375rem; + .xl\:-mb-52 { + margin-bottom: -13rem; } - .xl\:-mr-1\.5 { - margin-right: -0.375rem; + .xl\:-mb-56 { + margin-bottom: -14rem; } - .xl\:-mb-1\.5 { - margin-bottom: -0.375rem; + .xl\:-mb-60 { + margin-bottom: -15rem; } - .xl\:-ml-1\.5 { - margin-left: -0.375rem; + .xl\:-mb-64 { + margin-bottom: -16rem; } - .xl\:-mt-2\.5 { - margin-top: -0.625rem; + .xl\:-mb-72 { + margin-bottom: -18rem; } - .xl\:-mr-2\.5 { - margin-right: -0.625rem; + .xl\:-mb-80 { + margin-bottom: -20rem; } - .xl\:-mb-2\.5 { - margin-bottom: -0.625rem; + .xl\:-mb-96 { + margin-bottom: -24rem; } - .xl\:-ml-2\.5 { - margin-left: -0.625rem; + .xl\:-mb-px { + margin-bottom: -1px; } - .xl\:-mt-3\.5 { - margin-top: -0.875rem; + .xl\:-mb-0\.5 { + margin-bottom: -0.125rem; } - .xl\:-mr-3\.5 { - margin-right: -0.875rem; + .xl\:-mb-1\.5 { + margin-bottom: -0.375rem; + } + + .xl\:-mb-2\.5 { + margin-bottom: -0.625rem; } .xl\:-mb-3\.5 { margin-bottom: -0.875rem; } + .xl\:ml-0 { + margin-left: 0px; + } + + .xl\:ml-1 { + margin-left: 0.25rem; + } + + .xl\:ml-2 { + margin-left: 0.5rem; + } + + .xl\:ml-3 { + margin-left: 0.75rem; + } + + .xl\:ml-4 { + margin-left: 1rem; + } + + .xl\:ml-5 { + margin-left: 1.25rem; + } + + .xl\:ml-6 { + margin-left: 1.5rem; + } + + .xl\:ml-7 { + margin-left: 1.75rem; + } + + .xl\:ml-8 { + margin-left: 2rem; + } + + .xl\:ml-9 { + margin-left: 2.25rem; + } + + .xl\:ml-10 { + margin-left: 2.5rem; + } + + .xl\:ml-11 { + margin-left: 2.75rem; + } + + .xl\:ml-12 { + margin-left: 3rem; + } + + .xl\:ml-14 { + margin-left: 3.5rem; + } + + .xl\:ml-16 { + margin-left: 4rem; + } + + .xl\:ml-20 { + margin-left: 5rem; + } + + .xl\:ml-24 { + margin-left: 6rem; + } + + .xl\:ml-28 { + margin-left: 7rem; + } + + .xl\:ml-32 { + margin-left: 8rem; + } + + .xl\:ml-36 { + margin-left: 9rem; + } + + .xl\:ml-40 { + margin-left: 10rem; + } + + .xl\:ml-44 { + margin-left: 11rem; + } + + .xl\:ml-48 { + margin-left: 12rem; + } + + .xl\:ml-52 { + margin-left: 13rem; + } + + .xl\:ml-56 { + margin-left: 14rem; + } + + .xl\:ml-60 { + margin-left: 15rem; + } + + .xl\:ml-64 { + margin-left: 16rem; + } + + .xl\:ml-72 { + margin-left: 18rem; + } + + .xl\:ml-80 { + margin-left: 20rem; + } + + .xl\:ml-96 { + margin-left: 24rem; + } + + .xl\:ml-auto { + margin-left: auto; + } + + .xl\:ml-px { + margin-left: 1px; + } + + .xl\:ml-0\.5 { + margin-left: 0.125rem; + } + + .xl\:ml-1\.5 { + margin-left: 0.375rem; + } + + .xl\:ml-2\.5 { + margin-left: 0.625rem; + } + + .xl\:ml-3\.5 { + margin-left: 0.875rem; + } + + .xl\:-ml-0 { + margin-left: 0px; + } + + .xl\:-ml-1 { + margin-left: -0.25rem; + } + + .xl\:-ml-2 { + margin-left: -0.5rem; + } + + .xl\:-ml-3 { + margin-left: -0.75rem; + } + + .xl\:-ml-4 { + margin-left: -1rem; + } + + .xl\:-ml-5 { + margin-left: -1.25rem; + } + + .xl\:-ml-6 { + margin-left: -1.5rem; + } + + .xl\:-ml-7 { + margin-left: -1.75rem; + } + + .xl\:-ml-8 { + margin-left: -2rem; + } + + .xl\:-ml-9 { + margin-left: -2.25rem; + } + + .xl\:-ml-10 { + margin-left: -2.5rem; + } + + .xl\:-ml-11 { + margin-left: -2.75rem; + } + + .xl\:-ml-12 { + margin-left: -3rem; + } + + .xl\:-ml-14 { + margin-left: -3.5rem; + } + + .xl\:-ml-16 { + margin-left: -4rem; + } + + .xl\:-ml-20 { + margin-left: -5rem; + } + + .xl\:-ml-24 { + margin-left: -6rem; + } + + .xl\:-ml-28 { + margin-left: -7rem; + } + + .xl\:-ml-32 { + margin-left: -8rem; + } + + .xl\:-ml-36 { + margin-left: -9rem; + } + + .xl\:-ml-40 { + margin-left: -10rem; + } + + .xl\:-ml-44 { + margin-left: -11rem; + } + + .xl\:-ml-48 { + margin-left: -12rem; + } + + .xl\:-ml-52 { + margin-left: -13rem; + } + + .xl\:-ml-56 { + margin-left: -14rem; + } + + .xl\:-ml-60 { + margin-left: -15rem; + } + + .xl\:-ml-64 { + margin-left: -16rem; + } + + .xl\:-ml-72 { + margin-left: -18rem; + } + + .xl\:-ml-80 { + margin-left: -20rem; + } + + .xl\:-ml-96 { + margin-left: -24rem; + } + + .xl\:-ml-px { + margin-left: -1px; + } + + .xl\:-ml-0\.5 { + margin-left: -0.125rem; + } + + .xl\:-ml-1\.5 { + margin-left: -0.375rem; + } + + .xl\:-ml-2\.5 { + margin-left: -0.625rem; + } + .xl\:-ml-3\.5 { margin-left: -0.875rem; } @@ -157655,1846 +157655,1846 @@ video { margin: -0.875rem; } - .\32xl\:my-0 { - margin-top: 0px; - margin-bottom: 0px; - } - .\32xl\:mx-0 { margin-left: 0px; margin-right: 0px; } - .\32xl\:my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; - } - .\32xl\:mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; } - .\32xl\:my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; - } - .\32xl\:mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; } - .\32xl\:my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; - } - .\32xl\:mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; } - .\32xl\:my-4 { - margin-top: 1rem; - margin-bottom: 1rem; - } - .\32xl\:mx-4 { margin-left: 1rem; margin-right: 1rem; } - .\32xl\:my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; - } - .\32xl\:mx-5 { margin-left: 1.25rem; margin-right: 1.25rem; } - .\32xl\:my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; - } - .\32xl\:mx-6 { margin-left: 1.5rem; margin-right: 1.5rem; } - .\32xl\:my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; - } - .\32xl\:mx-7 { margin-left: 1.75rem; margin-right: 1.75rem; } - .\32xl\:my-8 { - margin-top: 2rem; - margin-bottom: 2rem; - } - .\32xl\:mx-8 { margin-left: 2rem; margin-right: 2rem; } - .\32xl\:my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; - } - .\32xl\:mx-9 { margin-left: 2.25rem; margin-right: 2.25rem; } - .\32xl\:my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; - } - .\32xl\:mx-10 { margin-left: 2.5rem; margin-right: 2.5rem; } - .\32xl\:my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; - } - .\32xl\:mx-11 { margin-left: 2.75rem; margin-right: 2.75rem; } - .\32xl\:my-12 { - margin-top: 3rem; - margin-bottom: 3rem; - } - .\32xl\:mx-12 { margin-left: 3rem; margin-right: 3rem; } - .\32xl\:my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; - } - .\32xl\:mx-14 { margin-left: 3.5rem; margin-right: 3.5rem; } - .\32xl\:my-16 { - margin-top: 4rem; - margin-bottom: 4rem; - } - .\32xl\:mx-16 { margin-left: 4rem; margin-right: 4rem; } - .\32xl\:my-20 { - margin-top: 5rem; - margin-bottom: 5rem; - } - .\32xl\:mx-20 { margin-left: 5rem; margin-right: 5rem; } - .\32xl\:my-24 { - margin-top: 6rem; - margin-bottom: 6rem; - } - .\32xl\:mx-24 { margin-left: 6rem; margin-right: 6rem; } - .\32xl\:my-28 { - margin-top: 7rem; - margin-bottom: 7rem; - } - .\32xl\:mx-28 { margin-left: 7rem; margin-right: 7rem; } - .\32xl\:my-32 { - margin-top: 8rem; - margin-bottom: 8rem; - } - .\32xl\:mx-32 { margin-left: 8rem; margin-right: 8rem; } - .\32xl\:my-36 { - margin-top: 9rem; - margin-bottom: 9rem; - } - .\32xl\:mx-36 { margin-left: 9rem; margin-right: 9rem; } - .\32xl\:my-40 { - margin-top: 10rem; - margin-bottom: 10rem; - } - .\32xl\:mx-40 { margin-left: 10rem; margin-right: 10rem; } - .\32xl\:my-44 { - margin-top: 11rem; - margin-bottom: 11rem; - } - .\32xl\:mx-44 { margin-left: 11rem; margin-right: 11rem; } - .\32xl\:my-48 { - margin-top: 12rem; - margin-bottom: 12rem; - } - .\32xl\:mx-48 { margin-left: 12rem; margin-right: 12rem; } - .\32xl\:my-52 { - margin-top: 13rem; - margin-bottom: 13rem; - } - .\32xl\:mx-52 { margin-left: 13rem; margin-right: 13rem; } - .\32xl\:my-56 { - margin-top: 14rem; - margin-bottom: 14rem; - } - .\32xl\:mx-56 { margin-left: 14rem; margin-right: 14rem; } - .\32xl\:my-60 { - margin-top: 15rem; - margin-bottom: 15rem; - } - .\32xl\:mx-60 { margin-left: 15rem; margin-right: 15rem; } - .\32xl\:my-64 { - margin-top: 16rem; - margin-bottom: 16rem; - } - .\32xl\:mx-64 { margin-left: 16rem; margin-right: 16rem; } - .\32xl\:my-72 { - margin-top: 18rem; - margin-bottom: 18rem; - } - .\32xl\:mx-72 { margin-left: 18rem; margin-right: 18rem; } - .\32xl\:my-80 { - margin-top: 20rem; - margin-bottom: 20rem; - } - .\32xl\:mx-80 { margin-left: 20rem; margin-right: 20rem; } - .\32xl\:my-96 { - margin-top: 24rem; - margin-bottom: 24rem; - } - .\32xl\:mx-96 { margin-left: 24rem; margin-right: 24rem; } - .\32xl\:my-auto { - margin-top: auto; - margin-bottom: auto; - } - .\32xl\:mx-auto { margin-left: auto; margin-right: auto; } - .\32xl\:my-px { - margin-top: 1px; - margin-bottom: 1px; - } - .\32xl\:mx-px { margin-left: 1px; margin-right: 1px; } - .\32xl\:my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; - } - .\32xl\:mx-0\.5 { margin-left: 0.125rem; margin-right: 0.125rem; } - .\32xl\:my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; - } - .\32xl\:mx-1\.5 { margin-left: 0.375rem; margin-right: 0.375rem; } - .\32xl\:my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; - } - .\32xl\:mx-2\.5 { margin-left: 0.625rem; margin-right: 0.625rem; } - .\32xl\:my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; - } - .\32xl\:mx-3\.5 { margin-left: 0.875rem; margin-right: 0.875rem; } - .\32xl\:-my-0 { - margin-top: 0px; - margin-bottom: 0px; - } - .\32xl\:-mx-0 { margin-left: 0px; margin-right: 0px; } - .\32xl\:-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; - } - .\32xl\:-mx-1 { margin-left: -0.25rem; margin-right: -0.25rem; } - .\32xl\:-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; - } - .\32xl\:-mx-2 { margin-left: -0.5rem; margin-right: -0.5rem; } - .\32xl\:-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; - } - .\32xl\:-mx-3 { margin-left: -0.75rem; margin-right: -0.75rem; } - .\32xl\:-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; - } - .\32xl\:-mx-4 { margin-left: -1rem; margin-right: -1rem; } - .\32xl\:-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; - } - .\32xl\:-mx-5 { margin-left: -1.25rem; margin-right: -1.25rem; } - .\32xl\:-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; - } - .\32xl\:-mx-6 { margin-left: -1.5rem; margin-right: -1.5rem; } - .\32xl\:-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; - } - .\32xl\:-mx-7 { margin-left: -1.75rem; margin-right: -1.75rem; } - .\32xl\:-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; - } - .\32xl\:-mx-8 { margin-left: -2rem; margin-right: -2rem; } - .\32xl\:-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; - } - .\32xl\:-mx-9 { margin-left: -2.25rem; margin-right: -2.25rem; } - .\32xl\:-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; - } - .\32xl\:-mx-10 { margin-left: -2.5rem; margin-right: -2.5rem; } - .\32xl\:-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; - } - .\32xl\:-mx-11 { margin-left: -2.75rem; margin-right: -2.75rem; } - .\32xl\:-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; - } - .\32xl\:-mx-12 { margin-left: -3rem; margin-right: -3rem; } - .\32xl\:-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; - } - .\32xl\:-mx-14 { margin-left: -3.5rem; margin-right: -3.5rem; } - .\32xl\:-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; - } - .\32xl\:-mx-16 { margin-left: -4rem; margin-right: -4rem; } - .\32xl\:-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; - } - .\32xl\:-mx-20 { margin-left: -5rem; margin-right: -5rem; } - .\32xl\:-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; - } - .\32xl\:-mx-24 { margin-left: -6rem; margin-right: -6rem; } - .\32xl\:-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; - } - .\32xl\:-mx-28 { margin-left: -7rem; margin-right: -7rem; } - .\32xl\:-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; - } - .\32xl\:-mx-32 { margin-left: -8rem; margin-right: -8rem; } - .\32xl\:-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; - } - .\32xl\:-mx-36 { margin-left: -9rem; margin-right: -9rem; } - .\32xl\:-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; - } - .\32xl\:-mx-40 { margin-left: -10rem; margin-right: -10rem; } - .\32xl\:-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; - } - .\32xl\:-mx-44 { margin-left: -11rem; margin-right: -11rem; } - .\32xl\:-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; - } - .\32xl\:-mx-48 { margin-left: -12rem; margin-right: -12rem; } - .\32xl\:-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; - } - .\32xl\:-mx-52 { margin-left: -13rem; margin-right: -13rem; } - .\32xl\:-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; - } - .\32xl\:-mx-56 { margin-left: -14rem; margin-right: -14rem; } - .\32xl\:-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; - } - .\32xl\:-mx-60 { margin-left: -15rem; margin-right: -15rem; } - .\32xl\:-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; - } - .\32xl\:-mx-64 { margin-left: -16rem; margin-right: -16rem; } - .\32xl\:-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; - } - .\32xl\:-mx-72 { margin-left: -18rem; margin-right: -18rem; } - .\32xl\:-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; - } - .\32xl\:-mx-80 { margin-left: -20rem; margin-right: -20rem; } - .\32xl\:-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; - } - .\32xl\:-mx-96 { margin-left: -24rem; margin-right: -24rem; } - .\32xl\:-my-px { - margin-top: -1px; - margin-bottom: -1px; - } - .\32xl\:-mx-px { margin-left: -1px; margin-right: -1px; } - .\32xl\:-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; - } - .\32xl\:-mx-0\.5 { margin-left: -0.125rem; margin-right: -0.125rem; } - .\32xl\:-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; - } - .\32xl\:-mx-1\.5 { margin-left: -0.375rem; margin-right: -0.375rem; } - .\32xl\:-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; - } - .\32xl\:-mx-2\.5 { margin-left: -0.625rem; margin-right: -0.625rem; } - .\32xl\:-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; - } - .\32xl\:-mx-3\.5 { margin-left: -0.875rem; margin-right: -0.875rem; } - .\32xl\:mt-0 { + .\32xl\:my-0 { margin-top: 0px; + margin-bottom: 0px; } - .\32xl\:mr-0 { - margin-right: 0px; + .\32xl\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } - .\32xl\:mb-0 { + .\32xl\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; + } + + .\32xl\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; + } + + .\32xl\:my-4 { + margin-top: 1rem; + margin-bottom: 1rem; + } + + .\32xl\:my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; + } + + .\32xl\:my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; + } + + .\32xl\:my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; + } + + .\32xl\:my-8 { + margin-top: 2rem; + margin-bottom: 2rem; + } + + .\32xl\:my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; + } + + .\32xl\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; + } + + .\32xl\:my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; + } + + .\32xl\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; + } + + .\32xl\:my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; + } + + .\32xl\:my-16 { + margin-top: 4rem; + margin-bottom: 4rem; + } + + .\32xl\:my-20 { + margin-top: 5rem; + margin-bottom: 5rem; + } + + .\32xl\:my-24 { + margin-top: 6rem; + margin-bottom: 6rem; + } + + .\32xl\:my-28 { + margin-top: 7rem; + margin-bottom: 7rem; + } + + .\32xl\:my-32 { + margin-top: 8rem; + margin-bottom: 8rem; + } + + .\32xl\:my-36 { + margin-top: 9rem; + margin-bottom: 9rem; + } + + .\32xl\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; + } + + .\32xl\:my-44 { + margin-top: 11rem; + margin-bottom: 11rem; + } + + .\32xl\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; + } + + .\32xl\:my-52 { + margin-top: 13rem; + margin-bottom: 13rem; + } + + .\32xl\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; + } + + .\32xl\:my-60 { + margin-top: 15rem; + margin-bottom: 15rem; + } + + .\32xl\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; + } + + .\32xl\:my-72 { + margin-top: 18rem; + margin-bottom: 18rem; + } + + .\32xl\:my-80 { + margin-top: 20rem; + margin-bottom: 20rem; + } + + .\32xl\:my-96 { + margin-top: 24rem; + margin-bottom: 24rem; + } + + .\32xl\:my-auto { + margin-top: auto; + margin-bottom: auto; + } + + .\32xl\:my-px { + margin-top: 1px; + margin-bottom: 1px; + } + + .\32xl\:my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; + } + + .\32xl\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; + } + + .\32xl\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; + } + + .\32xl\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; + } + + .\32xl\:-my-0 { + margin-top: 0px; margin-bottom: 0px; } - .\32xl\:ml-0 { - margin-left: 0px; + .\32xl\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } - .\32xl\:mt-1 { - margin-top: 0.25rem; + .\32xl\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } - .\32xl\:mr-1 { - margin-right: 0.25rem; + .\32xl\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } - .\32xl\:mb-1 { - margin-bottom: 0.25rem; + .\32xl\:-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } - .\32xl\:ml-1 { - margin-left: 0.25rem; + .\32xl\:-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } - .\32xl\:mt-2 { - margin-top: 0.5rem; + .\32xl\:-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } - .\32xl\:mr-2 { - margin-right: 0.5rem; + .\32xl\:-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } - .\32xl\:mb-2 { - margin-bottom: 0.5rem; + .\32xl\:-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } - .\32xl\:ml-2 { - margin-left: 0.5rem; + .\32xl\:-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } - .\32xl\:mt-3 { - margin-top: 0.75rem; + .\32xl\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } - .\32xl\:mr-3 { - margin-right: 0.75rem; + .\32xl\:-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } - .\32xl\:mb-3 { - margin-bottom: 0.75rem; + .\32xl\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } - .\32xl\:ml-3 { - margin-left: 0.75rem; + .\32xl\:-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } - .\32xl\:mt-4 { - margin-top: 1rem; + .\32xl\:-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } - .\32xl\:mr-4 { - margin-right: 1rem; + .\32xl\:-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } - .\32xl\:mb-4 { - margin-bottom: 1rem; + .\32xl\:-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } - .\32xl\:ml-4 { - margin-left: 1rem; + .\32xl\:-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } - .\32xl\:mt-5 { - margin-top: 1.25rem; + .\32xl\:-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } - .\32xl\:mr-5 { - margin-right: 1.25rem; + .\32xl\:-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } - .\32xl\:mb-5 { - margin-bottom: 1.25rem; + .\32xl\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } - .\32xl\:ml-5 { - margin-left: 1.25rem; + .\32xl\:-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } - .\32xl\:mt-6 { - margin-top: 1.5rem; + .\32xl\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } - .\32xl\:mr-6 { - margin-right: 1.5rem; + .\32xl\:-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } - .\32xl\:mb-6 { - margin-bottom: 1.5rem; + .\32xl\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } - .\32xl\:ml-6 { - margin-left: 1.5rem; + .\32xl\:-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } - .\32xl\:mt-7 { - margin-top: 1.75rem; + .\32xl\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } - .\32xl\:mr-7 { - margin-right: 1.75rem; + .\32xl\:-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } - .\32xl\:mb-7 { - margin-bottom: 1.75rem; + .\32xl\:-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } - .\32xl\:ml-7 { - margin-left: 1.75rem; + .\32xl\:-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } - .\32xl\:mt-8 { - margin-top: 2rem; + .\32xl\:-my-px { + margin-top: -1px; + margin-bottom: -1px; } - .\32xl\:mr-8 { - margin-right: 2rem; + .\32xl\:-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } - .\32xl\:mb-8 { - margin-bottom: 2rem; + .\32xl\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } - .\32xl\:ml-8 { - margin-left: 2rem; + .\32xl\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } - .\32xl\:mt-9 { - margin-top: 2.25rem; + .\32xl\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } - .\32xl\:mr-9 { - margin-right: 2.25rem; + .\32xl\:mt-0 { + margin-top: 0px; } - .\32xl\:mb-9 { - margin-bottom: 2.25rem; + .\32xl\:mt-1 { + margin-top: 0.25rem; } - .\32xl\:ml-9 { - margin-left: 2.25rem; + .\32xl\:mt-2 { + margin-top: 0.5rem; } - .\32xl\:mt-10 { - margin-top: 2.5rem; + .\32xl\:mt-3 { + margin-top: 0.75rem; } - .\32xl\:mr-10 { - margin-right: 2.5rem; + .\32xl\:mt-4 { + margin-top: 1rem; } - .\32xl\:mb-10 { - margin-bottom: 2.5rem; + .\32xl\:mt-5 { + margin-top: 1.25rem; } - .\32xl\:ml-10 { - margin-left: 2.5rem; + .\32xl\:mt-6 { + margin-top: 1.5rem; } - .\32xl\:mt-11 { - margin-top: 2.75rem; + .\32xl\:mt-7 { + margin-top: 1.75rem; } - .\32xl\:mr-11 { - margin-right: 2.75rem; + .\32xl\:mt-8 { + margin-top: 2rem; } - .\32xl\:mb-11 { - margin-bottom: 2.75rem; + .\32xl\:mt-9 { + margin-top: 2.25rem; } - .\32xl\:ml-11 { - margin-left: 2.75rem; + .\32xl\:mt-10 { + margin-top: 2.5rem; + } + + .\32xl\:mt-11 { + margin-top: 2.75rem; } .\32xl\:mt-12 { margin-top: 3rem; } - .\32xl\:mr-12 { - margin-right: 3rem; + .\32xl\:mt-14 { + margin-top: 3.5rem; } - .\32xl\:mb-12 { - margin-bottom: 3rem; + .\32xl\:mt-16 { + margin-top: 4rem; } - .\32xl\:ml-12 { - margin-left: 3rem; + .\32xl\:mt-20 { + margin-top: 5rem; } - .\32xl\:mt-14 { - margin-top: 3.5rem; + .\32xl\:mt-24 { + margin-top: 6rem; } - .\32xl\:mr-14 { - margin-right: 3.5rem; + .\32xl\:mt-28 { + margin-top: 7rem; } - .\32xl\:mb-14 { - margin-bottom: 3.5rem; + .\32xl\:mt-32 { + margin-top: 8rem; } - .\32xl\:ml-14 { - margin-left: 3.5rem; + .\32xl\:mt-36 { + margin-top: 9rem; } - .\32xl\:mt-16 { - margin-top: 4rem; + .\32xl\:mt-40 { + margin-top: 10rem; } - .\32xl\:mr-16 { - margin-right: 4rem; + .\32xl\:mt-44 { + margin-top: 11rem; } - .\32xl\:mb-16 { - margin-bottom: 4rem; + .\32xl\:mt-48 { + margin-top: 12rem; } - .\32xl\:ml-16 { - margin-left: 4rem; + .\32xl\:mt-52 { + margin-top: 13rem; } - .\32xl\:mt-20 { - margin-top: 5rem; + .\32xl\:mt-56 { + margin-top: 14rem; } - .\32xl\:mr-20 { - margin-right: 5rem; + .\32xl\:mt-60 { + margin-top: 15rem; } - .\32xl\:mb-20 { - margin-bottom: 5rem; + .\32xl\:mt-64 { + margin-top: 16rem; } - .\32xl\:ml-20 { - margin-left: 5rem; + .\32xl\:mt-72 { + margin-top: 18rem; } - .\32xl\:mt-24 { - margin-top: 6rem; + .\32xl\:mt-80 { + margin-top: 20rem; } - .\32xl\:mr-24 { - margin-right: 6rem; + .\32xl\:mt-96 { + margin-top: 24rem; } - .\32xl\:mb-24 { - margin-bottom: 6rem; + .\32xl\:mt-auto { + margin-top: auto; } - .\32xl\:ml-24 { - margin-left: 6rem; + .\32xl\:mt-px { + margin-top: 1px; } - .\32xl\:mt-28 { - margin-top: 7rem; + .\32xl\:mt-0\.5 { + margin-top: 0.125rem; } - .\32xl\:mr-28 { - margin-right: 7rem; + .\32xl\:mt-1\.5 { + margin-top: 0.375rem; } - .\32xl\:mb-28 { - margin-bottom: 7rem; + .\32xl\:mt-2\.5 { + margin-top: 0.625rem; } - .\32xl\:ml-28 { - margin-left: 7rem; + .\32xl\:mt-3\.5 { + margin-top: 0.875rem; } - .\32xl\:mt-32 { - margin-top: 8rem; + .\32xl\:-mt-0 { + margin-top: 0px; } - .\32xl\:mr-32 { - margin-right: 8rem; + .\32xl\:-mt-1 { + margin-top: -0.25rem; } - .\32xl\:mb-32 { - margin-bottom: 8rem; + .\32xl\:-mt-2 { + margin-top: -0.5rem; } - .\32xl\:ml-32 { - margin-left: 8rem; + .\32xl\:-mt-3 { + margin-top: -0.75rem; } - .\32xl\:mt-36 { - margin-top: 9rem; + .\32xl\:-mt-4 { + margin-top: -1rem; } - .\32xl\:mr-36 { - margin-right: 9rem; + .\32xl\:-mt-5 { + margin-top: -1.25rem; } - .\32xl\:mb-36 { - margin-bottom: 9rem; + .\32xl\:-mt-6 { + margin-top: -1.5rem; } - .\32xl\:ml-36 { - margin-left: 9rem; + .\32xl\:-mt-7 { + margin-top: -1.75rem; } - .\32xl\:mt-40 { - margin-top: 10rem; + .\32xl\:-mt-8 { + margin-top: -2rem; } - .\32xl\:mr-40 { - margin-right: 10rem; + .\32xl\:-mt-9 { + margin-top: -2.25rem; } - .\32xl\:mb-40 { - margin-bottom: 10rem; + .\32xl\:-mt-10 { + margin-top: -2.5rem; } - .\32xl\:ml-40 { - margin-left: 10rem; + .\32xl\:-mt-11 { + margin-top: -2.75rem; } - .\32xl\:mt-44 { - margin-top: 11rem; + .\32xl\:-mt-12 { + margin-top: -3rem; } - .\32xl\:mr-44 { - margin-right: 11rem; + .\32xl\:-mt-14 { + margin-top: -3.5rem; } - .\32xl\:mb-44 { - margin-bottom: 11rem; + .\32xl\:-mt-16 { + margin-top: -4rem; } - .\32xl\:ml-44 { - margin-left: 11rem; + .\32xl\:-mt-20 { + margin-top: -5rem; } - .\32xl\:mt-48 { - margin-top: 12rem; + .\32xl\:-mt-24 { + margin-top: -6rem; } - .\32xl\:mr-48 { - margin-right: 12rem; + .\32xl\:-mt-28 { + margin-top: -7rem; } - .\32xl\:mb-48 { - margin-bottom: 12rem; + .\32xl\:-mt-32 { + margin-top: -8rem; } - .\32xl\:ml-48 { - margin-left: 12rem; + .\32xl\:-mt-36 { + margin-top: -9rem; } - .\32xl\:mt-52 { - margin-top: 13rem; + .\32xl\:-mt-40 { + margin-top: -10rem; } - .\32xl\:mr-52 { - margin-right: 13rem; + .\32xl\:-mt-44 { + margin-top: -11rem; } - .\32xl\:mb-52 { - margin-bottom: 13rem; + .\32xl\:-mt-48 { + margin-top: -12rem; } - .\32xl\:ml-52 { - margin-left: 13rem; + .\32xl\:-mt-52 { + margin-top: -13rem; } - .\32xl\:mt-56 { - margin-top: 14rem; + .\32xl\:-mt-56 { + margin-top: -14rem; } - .\32xl\:mr-56 { - margin-right: 14rem; + .\32xl\:-mt-60 { + margin-top: -15rem; } - .\32xl\:mb-56 { - margin-bottom: 14rem; + .\32xl\:-mt-64 { + margin-top: -16rem; } - .\32xl\:ml-56 { - margin-left: 14rem; + .\32xl\:-mt-72 { + margin-top: -18rem; } - .\32xl\:mt-60 { - margin-top: 15rem; + .\32xl\:-mt-80 { + margin-top: -20rem; } - .\32xl\:mr-60 { - margin-right: 15rem; + .\32xl\:-mt-96 { + margin-top: -24rem; } - .\32xl\:mb-60 { - margin-bottom: 15rem; + .\32xl\:-mt-px { + margin-top: -1px; } - .\32xl\:ml-60 { - margin-left: 15rem; + .\32xl\:-mt-0\.5 { + margin-top: -0.125rem; } - .\32xl\:mt-64 { - margin-top: 16rem; + .\32xl\:-mt-1\.5 { + margin-top: -0.375rem; } - .\32xl\:mr-64 { - margin-right: 16rem; + .\32xl\:-mt-2\.5 { + margin-top: -0.625rem; } - .\32xl\:mb-64 { - margin-bottom: 16rem; + .\32xl\:-mt-3\.5 { + margin-top: -0.875rem; } - .\32xl\:ml-64 { - margin-left: 16rem; + .\32xl\:mr-0 { + margin-right: 0px; } - .\32xl\:mt-72 { - margin-top: 18rem; + .\32xl\:mr-1 { + margin-right: 0.25rem; } - .\32xl\:mr-72 { - margin-right: 18rem; + .\32xl\:mr-2 { + margin-right: 0.5rem; } - .\32xl\:mb-72 { - margin-bottom: 18rem; + .\32xl\:mr-3 { + margin-right: 0.75rem; } - .\32xl\:ml-72 { - margin-left: 18rem; + .\32xl\:mr-4 { + margin-right: 1rem; } - .\32xl\:mt-80 { - margin-top: 20rem; + .\32xl\:mr-5 { + margin-right: 1.25rem; } - .\32xl\:mr-80 { - margin-right: 20rem; + .\32xl\:mr-6 { + margin-right: 1.5rem; } - .\32xl\:mb-80 { - margin-bottom: 20rem; + .\32xl\:mr-7 { + margin-right: 1.75rem; } - .\32xl\:ml-80 { - margin-left: 20rem; + .\32xl\:mr-8 { + margin-right: 2rem; } - .\32xl\:mt-96 { - margin-top: 24rem; + .\32xl\:mr-9 { + margin-right: 2.25rem; } - .\32xl\:mr-96 { - margin-right: 24rem; + .\32xl\:mr-10 { + margin-right: 2.5rem; } - .\32xl\:mb-96 { - margin-bottom: 24rem; + .\32xl\:mr-11 { + margin-right: 2.75rem; } - .\32xl\:ml-96 { - margin-left: 24rem; + .\32xl\:mr-12 { + margin-right: 3rem; } - .\32xl\:mt-auto { - margin-top: auto; + .\32xl\:mr-14 { + margin-right: 3.5rem; } - .\32xl\:mr-auto { - margin-right: auto; + .\32xl\:mr-16 { + margin-right: 4rem; } - .\32xl\:mb-auto { - margin-bottom: auto; + .\32xl\:mr-20 { + margin-right: 5rem; } - .\32xl\:ml-auto { - margin-left: auto; + .\32xl\:mr-24 { + margin-right: 6rem; } - .\32xl\:mt-px { - margin-top: 1px; + .\32xl\:mr-28 { + margin-right: 7rem; } - .\32xl\:mr-px { - margin-right: 1px; + .\32xl\:mr-32 { + margin-right: 8rem; } - .\32xl\:mb-px { - margin-bottom: 1px; + .\32xl\:mr-36 { + margin-right: 9rem; } - .\32xl\:ml-px { - margin-left: 1px; + .\32xl\:mr-40 { + margin-right: 10rem; } - .\32xl\:mt-0\.5 { - margin-top: 0.125rem; + .\32xl\:mr-44 { + margin-right: 11rem; } - .\32xl\:mr-0\.5 { - margin-right: 0.125rem; + .\32xl\:mr-48 { + margin-right: 12rem; } - .\32xl\:mb-0\.5 { - margin-bottom: 0.125rem; + .\32xl\:mr-52 { + margin-right: 13rem; } - .\32xl\:ml-0\.5 { - margin-left: 0.125rem; + .\32xl\:mr-56 { + margin-right: 14rem; } - .\32xl\:mt-1\.5 { - margin-top: 0.375rem; + .\32xl\:mr-60 { + margin-right: 15rem; } - .\32xl\:mr-1\.5 { - margin-right: 0.375rem; + .\32xl\:mr-64 { + margin-right: 16rem; } - .\32xl\:mb-1\.5 { - margin-bottom: 0.375rem; + .\32xl\:mr-72 { + margin-right: 18rem; } - .\32xl\:ml-1\.5 { - margin-left: 0.375rem; + .\32xl\:mr-80 { + margin-right: 20rem; } - .\32xl\:mt-2\.5 { - margin-top: 0.625rem; + .\32xl\:mr-96 { + margin-right: 24rem; } - .\32xl\:mr-2\.5 { - margin-right: 0.625rem; + .\32xl\:mr-auto { + margin-right: auto; } - .\32xl\:mb-2\.5 { - margin-bottom: 0.625rem; + .\32xl\:mr-px { + margin-right: 1px; } - .\32xl\:ml-2\.5 { - margin-left: 0.625rem; + .\32xl\:mr-0\.5 { + margin-right: 0.125rem; } - .\32xl\:mt-3\.5 { - margin-top: 0.875rem; + .\32xl\:mr-1\.5 { + margin-right: 0.375rem; + } + + .\32xl\:mr-2\.5 { + margin-right: 0.625rem; } .\32xl\:mr-3\.5 { margin-right: 0.875rem; } - .\32xl\:mb-3\.5 { - margin-bottom: 0.875rem; + .\32xl\:-mr-0 { + margin-right: 0px; } - .\32xl\:ml-3\.5 { - margin-left: 0.875rem; + .\32xl\:-mr-1 { + margin-right: -0.25rem; } - .\32xl\:-mt-0 { - margin-top: 0px; + .\32xl\:-mr-2 { + margin-right: -0.5rem; } - .\32xl\:-mr-0 { - margin-right: 0px; + .\32xl\:-mr-3 { + margin-right: -0.75rem; } - .\32xl\:-mb-0 { + .\32xl\:-mr-4 { + margin-right: -1rem; + } + + .\32xl\:-mr-5 { + margin-right: -1.25rem; + } + + .\32xl\:-mr-6 { + margin-right: -1.5rem; + } + + .\32xl\:-mr-7 { + margin-right: -1.75rem; + } + + .\32xl\:-mr-8 { + margin-right: -2rem; + } + + .\32xl\:-mr-9 { + margin-right: -2.25rem; + } + + .\32xl\:-mr-10 { + margin-right: -2.5rem; + } + + .\32xl\:-mr-11 { + margin-right: -2.75rem; + } + + .\32xl\:-mr-12 { + margin-right: -3rem; + } + + .\32xl\:-mr-14 { + margin-right: -3.5rem; + } + + .\32xl\:-mr-16 { + margin-right: -4rem; + } + + .\32xl\:-mr-20 { + margin-right: -5rem; + } + + .\32xl\:-mr-24 { + margin-right: -6rem; + } + + .\32xl\:-mr-28 { + margin-right: -7rem; + } + + .\32xl\:-mr-32 { + margin-right: -8rem; + } + + .\32xl\:-mr-36 { + margin-right: -9rem; + } + + .\32xl\:-mr-40 { + margin-right: -10rem; + } + + .\32xl\:-mr-44 { + margin-right: -11rem; + } + + .\32xl\:-mr-48 { + margin-right: -12rem; + } + + .\32xl\:-mr-52 { + margin-right: -13rem; + } + + .\32xl\:-mr-56 { + margin-right: -14rem; + } + + .\32xl\:-mr-60 { + margin-right: -15rem; + } + + .\32xl\:-mr-64 { + margin-right: -16rem; + } + + .\32xl\:-mr-72 { + margin-right: -18rem; + } + + .\32xl\:-mr-80 { + margin-right: -20rem; + } + + .\32xl\:-mr-96 { + margin-right: -24rem; + } + + .\32xl\:-mr-px { + margin-right: -1px; + } + + .\32xl\:-mr-0\.5 { + margin-right: -0.125rem; + } + + .\32xl\:-mr-1\.5 { + margin-right: -0.375rem; + } + + .\32xl\:-mr-2\.5 { + margin-right: -0.625rem; + } + + .\32xl\:-mr-3\.5 { + margin-right: -0.875rem; + } + + .\32xl\:mb-0 { margin-bottom: 0px; } - .\32xl\:-ml-0 { - margin-left: 0px; + .\32xl\:mb-1 { + margin-bottom: 0.25rem; } - .\32xl\:-mt-1 { - margin-top: -0.25rem; + .\32xl\:mb-2 { + margin-bottom: 0.5rem; } - .\32xl\:-mr-1 { - margin-right: -0.25rem; + .\32xl\:mb-3 { + margin-bottom: 0.75rem; } - .\32xl\:-mb-1 { - margin-bottom: -0.25rem; + .\32xl\:mb-4 { + margin-bottom: 1rem; } - .\32xl\:-ml-1 { - margin-left: -0.25rem; + .\32xl\:mb-5 { + margin-bottom: 1.25rem; } - .\32xl\:-mt-2 { - margin-top: -0.5rem; + .\32xl\:mb-6 { + margin-bottom: 1.5rem; } - .\32xl\:-mr-2 { - margin-right: -0.5rem; + .\32xl\:mb-7 { + margin-bottom: 1.75rem; } - .\32xl\:-mb-2 { - margin-bottom: -0.5rem; + .\32xl\:mb-8 { + margin-bottom: 2rem; } - .\32xl\:-ml-2 { - margin-left: -0.5rem; + .\32xl\:mb-9 { + margin-bottom: 2.25rem; } - .\32xl\:-mt-3 { - margin-top: -0.75rem; + .\32xl\:mb-10 { + margin-bottom: 2.5rem; } - .\32xl\:-mr-3 { - margin-right: -0.75rem; + .\32xl\:mb-11 { + margin-bottom: 2.75rem; } - .\32xl\:-mb-3 { - margin-bottom: -0.75rem; + .\32xl\:mb-12 { + margin-bottom: 3rem; } - .\32xl\:-ml-3 { - margin-left: -0.75rem; + .\32xl\:mb-14 { + margin-bottom: 3.5rem; } - .\32xl\:-mt-4 { - margin-top: -1rem; + .\32xl\:mb-16 { + margin-bottom: 4rem; } - .\32xl\:-mr-4 { - margin-right: -1rem; + .\32xl\:mb-20 { + margin-bottom: 5rem; } - .\32xl\:-mb-4 { - margin-bottom: -1rem; + .\32xl\:mb-24 { + margin-bottom: 6rem; } - .\32xl\:-ml-4 { - margin-left: -1rem; + .\32xl\:mb-28 { + margin-bottom: 7rem; } - .\32xl\:-mt-5 { - margin-top: -1.25rem; + .\32xl\:mb-32 { + margin-bottom: 8rem; } - .\32xl\:-mr-5 { - margin-right: -1.25rem; + .\32xl\:mb-36 { + margin-bottom: 9rem; } - .\32xl\:-mb-5 { - margin-bottom: -1.25rem; + .\32xl\:mb-40 { + margin-bottom: 10rem; } - .\32xl\:-ml-5 { - margin-left: -1.25rem; + .\32xl\:mb-44 { + margin-bottom: 11rem; } - .\32xl\:-mt-6 { - margin-top: -1.5rem; + .\32xl\:mb-48 { + margin-bottom: 12rem; } - .\32xl\:-mr-6 { - margin-right: -1.5rem; + .\32xl\:mb-52 { + margin-bottom: 13rem; } - .\32xl\:-mb-6 { - margin-bottom: -1.5rem; + .\32xl\:mb-56 { + margin-bottom: 14rem; } - .\32xl\:-ml-6 { - margin-left: -1.5rem; + .\32xl\:mb-60 { + margin-bottom: 15rem; } - .\32xl\:-mt-7 { - margin-top: -1.75rem; + .\32xl\:mb-64 { + margin-bottom: 16rem; } - .\32xl\:-mr-7 { - margin-right: -1.75rem; + .\32xl\:mb-72 { + margin-bottom: 18rem; } - .\32xl\:-mb-7 { - margin-bottom: -1.75rem; + .\32xl\:mb-80 { + margin-bottom: 20rem; } - .\32xl\:-ml-7 { - margin-left: -1.75rem; + .\32xl\:mb-96 { + margin-bottom: 24rem; } - .\32xl\:-mt-8 { - margin-top: -2rem; + .\32xl\:mb-auto { + margin-bottom: auto; } - .\32xl\:-mr-8 { - margin-right: -2rem; + .\32xl\:mb-px { + margin-bottom: 1px; } - .\32xl\:-mb-8 { - margin-bottom: -2rem; + .\32xl\:mb-0\.5 { + margin-bottom: 0.125rem; } - .\32xl\:-ml-8 { - margin-left: -2rem; + .\32xl\:mb-1\.5 { + margin-bottom: 0.375rem; } - .\32xl\:-mt-9 { - margin-top: -2.25rem; + .\32xl\:mb-2\.5 { + margin-bottom: 0.625rem; } - .\32xl\:-mr-9 { - margin-right: -2.25rem; + .\32xl\:mb-3\.5 { + margin-bottom: 0.875rem; } - .\32xl\:-mb-9 { - margin-bottom: -2.25rem; + .\32xl\:-mb-0 { + margin-bottom: 0px; } - .\32xl\:-ml-9 { - margin-left: -2.25rem; + .\32xl\:-mb-1 { + margin-bottom: -0.25rem; } - .\32xl\:-mt-10 { - margin-top: -2.5rem; + .\32xl\:-mb-2 { + margin-bottom: -0.5rem; } - .\32xl\:-mr-10 { - margin-right: -2.5rem; + .\32xl\:-mb-3 { + margin-bottom: -0.75rem; } - .\32xl\:-mb-10 { - margin-bottom: -2.5rem; + .\32xl\:-mb-4 { + margin-bottom: -1rem; } - .\32xl\:-ml-10 { - margin-left: -2.5rem; + .\32xl\:-mb-5 { + margin-bottom: -1.25rem; } - .\32xl\:-mt-11 { - margin-top: -2.75rem; + .\32xl\:-mb-6 { + margin-bottom: -1.5rem; } - .\32xl\:-mr-11 { - margin-right: -2.75rem; + .\32xl\:-mb-7 { + margin-bottom: -1.75rem; } - .\32xl\:-mb-11 { - margin-bottom: -2.75rem; + .\32xl\:-mb-8 { + margin-bottom: -2rem; } - .\32xl\:-ml-11 { - margin-left: -2.75rem; + .\32xl\:-mb-9 { + margin-bottom: -2.25rem; } - .\32xl\:-mt-12 { - margin-top: -3rem; + .\32xl\:-mb-10 { + margin-bottom: -2.5rem; } - .\32xl\:-mr-12 { - margin-right: -3rem; + .\32xl\:-mb-11 { + margin-bottom: -2.75rem; } .\32xl\:-mb-12 { margin-bottom: -3rem; } - .\32xl\:-ml-12 { - margin-left: -3rem; + .\32xl\:-mb-14 { + margin-bottom: -3.5rem; } - .\32xl\:-mt-14 { - margin-top: -3.5rem; + .\32xl\:-mb-16 { + margin-bottom: -4rem; } - .\32xl\:-mr-14 { - margin-right: -3.5rem; + .\32xl\:-mb-20 { + margin-bottom: -5rem; } - .\32xl\:-mb-14 { - margin-bottom: -3.5rem; + .\32xl\:-mb-24 { + margin-bottom: -6rem; } - .\32xl\:-ml-14 { - margin-left: -3.5rem; + .\32xl\:-mb-28 { + margin-bottom: -7rem; } - .\32xl\:-mt-16 { - margin-top: -4rem; + .\32xl\:-mb-32 { + margin-bottom: -8rem; } - .\32xl\:-mr-16 { - margin-right: -4rem; + .\32xl\:-mb-36 { + margin-bottom: -9rem; } - .\32xl\:-mb-16 { - margin-bottom: -4rem; + .\32xl\:-mb-40 { + margin-bottom: -10rem; } - .\32xl\:-ml-16 { - margin-left: -4rem; + .\32xl\:-mb-44 { + margin-bottom: -11rem; } - .\32xl\:-mt-20 { - margin-top: -5rem; + .\32xl\:-mb-48 { + margin-bottom: -12rem; } - .\32xl\:-mr-20 { - margin-right: -5rem; + .\32xl\:-mb-52 { + margin-bottom: -13rem; } - .\32xl\:-mb-20 { - margin-bottom: -5rem; + .\32xl\:-mb-56 { + margin-bottom: -14rem; } - .\32xl\:-ml-20 { - margin-left: -5rem; + .\32xl\:-mb-60 { + margin-bottom: -15rem; } - .\32xl\:-mt-24 { - margin-top: -6rem; + .\32xl\:-mb-64 { + margin-bottom: -16rem; } - .\32xl\:-mr-24 { - margin-right: -6rem; + .\32xl\:-mb-72 { + margin-bottom: -18rem; } - .\32xl\:-mb-24 { - margin-bottom: -6rem; + .\32xl\:-mb-80 { + margin-bottom: -20rem; } - .\32xl\:-ml-24 { - margin-left: -6rem; + .\32xl\:-mb-96 { + margin-bottom: -24rem; } - .\32xl\:-mt-28 { - margin-top: -7rem; + .\32xl\:-mb-px { + margin-bottom: -1px; } - .\32xl\:-mr-28 { - margin-right: -7rem; + .\32xl\:-mb-0\.5 { + margin-bottom: -0.125rem; } - .\32xl\:-mb-28 { - margin-bottom: -7rem; + .\32xl\:-mb-1\.5 { + margin-bottom: -0.375rem; } - .\32xl\:-ml-28 { - margin-left: -7rem; + .\32xl\:-mb-2\.5 { + margin-bottom: -0.625rem; } - .\32xl\:-mt-32 { - margin-top: -8rem; + .\32xl\:-mb-3\.5 { + margin-bottom: -0.875rem; } - .\32xl\:-mr-32 { - margin-right: -8rem; + .\32xl\:ml-0 { + margin-left: 0px; } - .\32xl\:-mb-32 { - margin-bottom: -8rem; + .\32xl\:ml-1 { + margin-left: 0.25rem; } - .\32xl\:-ml-32 { - margin-left: -8rem; + .\32xl\:ml-2 { + margin-left: 0.5rem; } - .\32xl\:-mt-36 { - margin-top: -9rem; + .\32xl\:ml-3 { + margin-left: 0.75rem; } - .\32xl\:-mr-36 { - margin-right: -9rem; + .\32xl\:ml-4 { + margin-left: 1rem; } - .\32xl\:-mb-36 { - margin-bottom: -9rem; + .\32xl\:ml-5 { + margin-left: 1.25rem; } - .\32xl\:-ml-36 { - margin-left: -9rem; + .\32xl\:ml-6 { + margin-left: 1.5rem; } - .\32xl\:-mt-40 { - margin-top: -10rem; + .\32xl\:ml-7 { + margin-left: 1.75rem; } - .\32xl\:-mr-40 { - margin-right: -10rem; + .\32xl\:ml-8 { + margin-left: 2rem; } - .\32xl\:-mb-40 { - margin-bottom: -10rem; + .\32xl\:ml-9 { + margin-left: 2.25rem; } - .\32xl\:-ml-40 { - margin-left: -10rem; + .\32xl\:ml-10 { + margin-left: 2.5rem; } - .\32xl\:-mt-44 { - margin-top: -11rem; + .\32xl\:ml-11 { + margin-left: 2.75rem; } - .\32xl\:-mr-44 { - margin-right: -11rem; + .\32xl\:ml-12 { + margin-left: 3rem; } - .\32xl\:-mb-44 { - margin-bottom: -11rem; + .\32xl\:ml-14 { + margin-left: 3.5rem; } - .\32xl\:-ml-44 { - margin-left: -11rem; + .\32xl\:ml-16 { + margin-left: 4rem; } - .\32xl\:-mt-48 { - margin-top: -12rem; + .\32xl\:ml-20 { + margin-left: 5rem; } - .\32xl\:-mr-48 { - margin-right: -12rem; + .\32xl\:ml-24 { + margin-left: 6rem; } - .\32xl\:-mb-48 { - margin-bottom: -12rem; + .\32xl\:ml-28 { + margin-left: 7rem; } - .\32xl\:-ml-48 { - margin-left: -12rem; + .\32xl\:ml-32 { + margin-left: 8rem; } - .\32xl\:-mt-52 { - margin-top: -13rem; + .\32xl\:ml-36 { + margin-left: 9rem; } - .\32xl\:-mr-52 { - margin-right: -13rem; + .\32xl\:ml-40 { + margin-left: 10rem; } - .\32xl\:-mb-52 { - margin-bottom: -13rem; + .\32xl\:ml-44 { + margin-left: 11rem; } - .\32xl\:-ml-52 { - margin-left: -13rem; + .\32xl\:ml-48 { + margin-left: 12rem; } - .\32xl\:-mt-56 { - margin-top: -14rem; + .\32xl\:ml-52 { + margin-left: 13rem; } - .\32xl\:-mr-56 { - margin-right: -14rem; + .\32xl\:ml-56 { + margin-left: 14rem; } - .\32xl\:-mb-56 { - margin-bottom: -14rem; + .\32xl\:ml-60 { + margin-left: 15rem; } - .\32xl\:-ml-56 { - margin-left: -14rem; + .\32xl\:ml-64 { + margin-left: 16rem; } - .\32xl\:-mt-60 { - margin-top: -15rem; + .\32xl\:ml-72 { + margin-left: 18rem; } - .\32xl\:-mr-60 { - margin-right: -15rem; + .\32xl\:ml-80 { + margin-left: 20rem; } - .\32xl\:-mb-60 { - margin-bottom: -15rem; + .\32xl\:ml-96 { + margin-left: 24rem; } - .\32xl\:-ml-60 { - margin-left: -15rem; + .\32xl\:ml-auto { + margin-left: auto; } - .\32xl\:-mt-64 { - margin-top: -16rem; + .\32xl\:ml-px { + margin-left: 1px; } - .\32xl\:-mr-64 { - margin-right: -16rem; + .\32xl\:ml-0\.5 { + margin-left: 0.125rem; } - .\32xl\:-mb-64 { - margin-bottom: -16rem; + .\32xl\:ml-1\.5 { + margin-left: 0.375rem; } - .\32xl\:-ml-64 { - margin-left: -16rem; + .\32xl\:ml-2\.5 { + margin-left: 0.625rem; } - .\32xl\:-mt-72 { - margin-top: -18rem; + .\32xl\:ml-3\.5 { + margin-left: 0.875rem; } - .\32xl\:-mr-72 { - margin-right: -18rem; + .\32xl\:-ml-0 { + margin-left: 0px; } - .\32xl\:-mb-72 { - margin-bottom: -18rem; + .\32xl\:-ml-1 { + margin-left: -0.25rem; } - .\32xl\:-ml-72 { - margin-left: -18rem; + .\32xl\:-ml-2 { + margin-left: -0.5rem; } - .\32xl\:-mt-80 { - margin-top: -20rem; + .\32xl\:-ml-3 { + margin-left: -0.75rem; } - .\32xl\:-mr-80 { - margin-right: -20rem; + .\32xl\:-ml-4 { + margin-left: -1rem; } - .\32xl\:-mb-80 { - margin-bottom: -20rem; + .\32xl\:-ml-5 { + margin-left: -1.25rem; } - .\32xl\:-ml-80 { - margin-left: -20rem; + .\32xl\:-ml-6 { + margin-left: -1.5rem; } - .\32xl\:-mt-96 { - margin-top: -24rem; + .\32xl\:-ml-7 { + margin-left: -1.75rem; } - .\32xl\:-mr-96 { - margin-right: -24rem; + .\32xl\:-ml-8 { + margin-left: -2rem; } - .\32xl\:-mb-96 { - margin-bottom: -24rem; + .\32xl\:-ml-9 { + margin-left: -2.25rem; } - .\32xl\:-ml-96 { - margin-left: -24rem; + .\32xl\:-ml-10 { + margin-left: -2.5rem; } - .\32xl\:-mt-px { - margin-top: -1px; + .\32xl\:-ml-11 { + margin-left: -2.75rem; } - .\32xl\:-mr-px { - margin-right: -1px; + .\32xl\:-ml-12 { + margin-left: -3rem; } - .\32xl\:-mb-px { - margin-bottom: -1px; + .\32xl\:-ml-14 { + margin-left: -3.5rem; } - .\32xl\:-ml-px { - margin-left: -1px; + .\32xl\:-ml-16 { + margin-left: -4rem; } - .\32xl\:-mt-0\.5 { - margin-top: -0.125rem; + .\32xl\:-ml-20 { + margin-left: -5rem; } - .\32xl\:-mr-0\.5 { - margin-right: -0.125rem; + .\32xl\:-ml-24 { + margin-left: -6rem; } - .\32xl\:-mb-0\.5 { - margin-bottom: -0.125rem; + .\32xl\:-ml-28 { + margin-left: -7rem; } - .\32xl\:-ml-0\.5 { - margin-left: -0.125rem; + .\32xl\:-ml-32 { + margin-left: -8rem; } - .\32xl\:-mt-1\.5 { - margin-top: -0.375rem; + .\32xl\:-ml-36 { + margin-left: -9rem; } - .\32xl\:-mr-1\.5 { - margin-right: -0.375rem; + .\32xl\:-ml-40 { + margin-left: -10rem; } - .\32xl\:-mb-1\.5 { - margin-bottom: -0.375rem; + .\32xl\:-ml-44 { + margin-left: -11rem; } - .\32xl\:-ml-1\.5 { - margin-left: -0.375rem; + .\32xl\:-ml-48 { + margin-left: -12rem; } - .\32xl\:-mt-2\.5 { - margin-top: -0.625rem; + .\32xl\:-ml-52 { + margin-left: -13rem; } - .\32xl\:-mr-2\.5 { - margin-right: -0.625rem; + .\32xl\:-ml-56 { + margin-left: -14rem; } - .\32xl\:-mb-2\.5 { - margin-bottom: -0.625rem; + .\32xl\:-ml-60 { + margin-left: -15rem; } - .\32xl\:-ml-2\.5 { - margin-left: -0.625rem; + .\32xl\:-ml-64 { + margin-left: -16rem; } - .\32xl\:-mt-3\.5 { - margin-top: -0.875rem; + .\32xl\:-ml-72 { + margin-left: -18rem; } - .\32xl\:-mr-3\.5 { - margin-right: -0.875rem; + .\32xl\:-ml-80 { + margin-left: -20rem; } - .\32xl\:-mb-3\.5 { - margin-bottom: -0.875rem; + .\32xl\:-ml-96 { + margin-left: -24rem; + } + + .\32xl\:-ml-px { + margin-left: -1px; + } + + .\32xl\:-ml-0\.5 { + margin-left: -0.125rem; + } + + .\32xl\:-ml-1\.5 { + margin-left: -0.375rem; + } + + .\32xl\:-ml-2\.5 { + margin-left: -0.625rem; } .\32xl\:-ml-3\.5 { diff --git a/__tests__/fixtures/tailwind-output-important.css b/__tests__/fixtures/tailwind-output-important.css index b5a4146588e2..9ee4fa5e1fef 100644 --- a/__tests__/fixtures/tailwind-output-important.css +++ b/__tests__/fixtures/tailwind-output-important.css @@ -11905,1848 +11905,1848 @@ video { margin: -0.875rem !important; } -.my-0 { - margin-top: 0px !important; - margin-bottom: 0px !important; -} - .mx-0 { margin-left: 0px !important; margin-right: 0px !important; } -.my-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; -} - .mx-1 { margin-left: 0.25rem !important; margin-right: 0.25rem !important; } -.my-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; -} - .mx-2 { margin-left: 0.5rem !important; margin-right: 0.5rem !important; } -.my-3 { - margin-top: 0.75rem !important; - margin-bottom: 0.75rem !important; -} - .mx-3 { margin-left: 0.75rem !important; margin-right: 0.75rem !important; } -.my-4 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; -} - .mx-4 { margin-left: 1rem !important; margin-right: 1rem !important; } -.my-5 { - margin-top: 1.25rem !important; - margin-bottom: 1.25rem !important; -} - .mx-5 { margin-left: 1.25rem !important; margin-right: 1.25rem !important; } -.my-6 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; -} - .mx-6 { margin-left: 1.5rem !important; margin-right: 1.5rem !important; } -.my-7 { - margin-top: 1.75rem !important; - margin-bottom: 1.75rem !important; -} - .mx-7 { margin-left: 1.75rem !important; margin-right: 1.75rem !important; } -.my-8 { - margin-top: 2rem !important; - margin-bottom: 2rem !important; -} - .mx-8 { margin-left: 2rem !important; margin-right: 2rem !important; } -.my-9 { - margin-top: 2.25rem !important; - margin-bottom: 2.25rem !important; -} - .mx-9 { margin-left: 2.25rem !important; margin-right: 2.25rem !important; } -.my-10 { - margin-top: 2.5rem !important; - margin-bottom: 2.5rem !important; -} - .mx-10 { margin-left: 2.5rem !important; margin-right: 2.5rem !important; } -.my-11 { - margin-top: 2.75rem !important; - margin-bottom: 2.75rem !important; -} - .mx-11 { margin-left: 2.75rem !important; margin-right: 2.75rem !important; } -.my-12 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; -} - .mx-12 { margin-left: 3rem !important; margin-right: 3rem !important; } -.my-14 { - margin-top: 3.5rem !important; - margin-bottom: 3.5rem !important; -} - .mx-14 { margin-left: 3.5rem !important; margin-right: 3.5rem !important; } -.my-16 { - margin-top: 4rem !important; - margin-bottom: 4rem !important; -} - .mx-16 { margin-left: 4rem !important; margin-right: 4rem !important; } -.my-20 { - margin-top: 5rem !important; - margin-bottom: 5rem !important; -} - .mx-20 { margin-left: 5rem !important; margin-right: 5rem !important; } -.my-24 { - margin-top: 6rem !important; - margin-bottom: 6rem !important; -} - .mx-24 { margin-left: 6rem !important; margin-right: 6rem !important; } -.my-28 { - margin-top: 7rem !important; - margin-bottom: 7rem !important; -} - .mx-28 { margin-left: 7rem !important; margin-right: 7rem !important; } -.my-32 { - margin-top: 8rem !important; - margin-bottom: 8rem !important; -} - .mx-32 { margin-left: 8rem !important; margin-right: 8rem !important; } -.my-36 { - margin-top: 9rem !important; - margin-bottom: 9rem !important; -} - .mx-36 { margin-left: 9rem !important; margin-right: 9rem !important; } -.my-40 { - margin-top: 10rem !important; - margin-bottom: 10rem !important; -} - .mx-40 { margin-left: 10rem !important; margin-right: 10rem !important; } -.my-44 { - margin-top: 11rem !important; - margin-bottom: 11rem !important; -} - .mx-44 { margin-left: 11rem !important; margin-right: 11rem !important; } -.my-48 { - margin-top: 12rem !important; - margin-bottom: 12rem !important; -} - .mx-48 { margin-left: 12rem !important; margin-right: 12rem !important; } -.my-52 { - margin-top: 13rem !important; - margin-bottom: 13rem !important; -} - .mx-52 { margin-left: 13rem !important; margin-right: 13rem !important; } -.my-56 { - margin-top: 14rem !important; - margin-bottom: 14rem !important; -} - .mx-56 { margin-left: 14rem !important; margin-right: 14rem !important; } -.my-60 { - margin-top: 15rem !important; - margin-bottom: 15rem !important; -} - .mx-60 { margin-left: 15rem !important; margin-right: 15rem !important; } -.my-64 { - margin-top: 16rem !important; - margin-bottom: 16rem !important; -} - .mx-64 { margin-left: 16rem !important; margin-right: 16rem !important; } -.my-72 { - margin-top: 18rem !important; - margin-bottom: 18rem !important; -} - .mx-72 { margin-left: 18rem !important; margin-right: 18rem !important; } -.my-80 { - margin-top: 20rem !important; - margin-bottom: 20rem !important; -} - .mx-80 { margin-left: 20rem !important; margin-right: 20rem !important; } -.my-96 { - margin-top: 24rem !important; - margin-bottom: 24rem !important; -} - .mx-96 { margin-left: 24rem !important; margin-right: 24rem !important; } -.my-auto { - margin-top: auto !important; - margin-bottom: auto !important; -} - .mx-auto { margin-left: auto !important; margin-right: auto !important; } -.my-px { - margin-top: 1px !important; - margin-bottom: 1px !important; -} - .mx-px { margin-left: 1px !important; margin-right: 1px !important; } -.my-0\.5 { - margin-top: 0.125rem !important; - margin-bottom: 0.125rem !important; -} - .mx-0\.5 { margin-left: 0.125rem !important; margin-right: 0.125rem !important; } -.my-1\.5 { - margin-top: 0.375rem !important; - margin-bottom: 0.375rem !important; -} - .mx-1\.5 { margin-left: 0.375rem !important; margin-right: 0.375rem !important; } -.my-2\.5 { - margin-top: 0.625rem !important; - margin-bottom: 0.625rem !important; -} - .mx-2\.5 { margin-left: 0.625rem !important; margin-right: 0.625rem !important; } -.my-3\.5 { - margin-top: 0.875rem !important; - margin-bottom: 0.875rem !important; -} - .mx-3\.5 { margin-left: 0.875rem !important; margin-right: 0.875rem !important; } -.-my-0 { - margin-top: 0px !important; - margin-bottom: 0px !important; -} - .-mx-0 { margin-left: 0px !important; margin-right: 0px !important; } -.-my-1 { - margin-top: -0.25rem !important; - margin-bottom: -0.25rem !important; -} - .-mx-1 { margin-left: -0.25rem !important; margin-right: -0.25rem !important; } -.-my-2 { - margin-top: -0.5rem !important; - margin-bottom: -0.5rem !important; -} - .-mx-2 { margin-left: -0.5rem !important; margin-right: -0.5rem !important; } -.-my-3 { - margin-top: -0.75rem !important; - margin-bottom: -0.75rem !important; -} - .-mx-3 { margin-left: -0.75rem !important; margin-right: -0.75rem !important; } -.-my-4 { - margin-top: -1rem !important; - margin-bottom: -1rem !important; -} - .-mx-4 { margin-left: -1rem !important; margin-right: -1rem !important; } -.-my-5 { - margin-top: -1.25rem !important; - margin-bottom: -1.25rem !important; -} - .-mx-5 { margin-left: -1.25rem !important; margin-right: -1.25rem !important; } -.-my-6 { - margin-top: -1.5rem !important; - margin-bottom: -1.5rem !important; -} - .-mx-6 { margin-left: -1.5rem !important; margin-right: -1.5rem !important; } -.-my-7 { - margin-top: -1.75rem !important; - margin-bottom: -1.75rem !important; -} - .-mx-7 { margin-left: -1.75rem !important; margin-right: -1.75rem !important; } -.-my-8 { - margin-top: -2rem !important; - margin-bottom: -2rem !important; -} - .-mx-8 { margin-left: -2rem !important; margin-right: -2rem !important; } -.-my-9 { - margin-top: -2.25rem !important; - margin-bottom: -2.25rem !important; -} - .-mx-9 { margin-left: -2.25rem !important; margin-right: -2.25rem !important; } -.-my-10 { - margin-top: -2.5rem !important; - margin-bottom: -2.5rem !important; -} - .-mx-10 { margin-left: -2.5rem !important; margin-right: -2.5rem !important; } -.-my-11 { - margin-top: -2.75rem !important; - margin-bottom: -2.75rem !important; -} - .-mx-11 { margin-left: -2.75rem !important; margin-right: -2.75rem !important; } -.-my-12 { - margin-top: -3rem !important; - margin-bottom: -3rem !important; -} - .-mx-12 { margin-left: -3rem !important; margin-right: -3rem !important; } -.-my-14 { - margin-top: -3.5rem !important; - margin-bottom: -3.5rem !important; -} - .-mx-14 { margin-left: -3.5rem !important; margin-right: -3.5rem !important; } -.-my-16 { - margin-top: -4rem !important; - margin-bottom: -4rem !important; -} - .-mx-16 { margin-left: -4rem !important; margin-right: -4rem !important; } -.-my-20 { - margin-top: -5rem !important; - margin-bottom: -5rem !important; -} - .-mx-20 { margin-left: -5rem !important; margin-right: -5rem !important; } -.-my-24 { - margin-top: -6rem !important; - margin-bottom: -6rem !important; -} - .-mx-24 { margin-left: -6rem !important; margin-right: -6rem !important; } -.-my-28 { - margin-top: -7rem !important; - margin-bottom: -7rem !important; -} - .-mx-28 { margin-left: -7rem !important; margin-right: -7rem !important; } -.-my-32 { - margin-top: -8rem !important; - margin-bottom: -8rem !important; -} - .-mx-32 { margin-left: -8rem !important; margin-right: -8rem !important; } -.-my-36 { - margin-top: -9rem !important; - margin-bottom: -9rem !important; -} - .-mx-36 { margin-left: -9rem !important; margin-right: -9rem !important; } -.-my-40 { - margin-top: -10rem !important; - margin-bottom: -10rem !important; -} - .-mx-40 { margin-left: -10rem !important; margin-right: -10rem !important; } -.-my-44 { - margin-top: -11rem !important; - margin-bottom: -11rem !important; -} - .-mx-44 { margin-left: -11rem !important; margin-right: -11rem !important; } -.-my-48 { - margin-top: -12rem !important; - margin-bottom: -12rem !important; -} - .-mx-48 { margin-left: -12rem !important; margin-right: -12rem !important; } -.-my-52 { - margin-top: -13rem !important; - margin-bottom: -13rem !important; -} - .-mx-52 { margin-left: -13rem !important; margin-right: -13rem !important; } -.-my-56 { - margin-top: -14rem !important; - margin-bottom: -14rem !important; -} - .-mx-56 { margin-left: -14rem !important; margin-right: -14rem !important; } -.-my-60 { - margin-top: -15rem !important; - margin-bottom: -15rem !important; -} - .-mx-60 { margin-left: -15rem !important; margin-right: -15rem !important; } -.-my-64 { - margin-top: -16rem !important; - margin-bottom: -16rem !important; -} - .-mx-64 { margin-left: -16rem !important; margin-right: -16rem !important; } -.-my-72 { - margin-top: -18rem !important; - margin-bottom: -18rem !important; -} - .-mx-72 { margin-left: -18rem !important; margin-right: -18rem !important; } -.-my-80 { - margin-top: -20rem !important; - margin-bottom: -20rem !important; -} - .-mx-80 { margin-left: -20rem !important; margin-right: -20rem !important; } -.-my-96 { - margin-top: -24rem !important; - margin-bottom: -24rem !important; -} - .-mx-96 { margin-left: -24rem !important; margin-right: -24rem !important; } -.-my-px { - margin-top: -1px !important; - margin-bottom: -1px !important; -} - .-mx-px { margin-left: -1px !important; margin-right: -1px !important; } -.-my-0\.5 { - margin-top: -0.125rem !important; - margin-bottom: -0.125rem !important; -} - .-mx-0\.5 { margin-left: -0.125rem !important; margin-right: -0.125rem !important; } -.-my-1\.5 { - margin-top: -0.375rem !important; - margin-bottom: -0.375rem !important; -} - .-mx-1\.5 { margin-left: -0.375rem !important; margin-right: -0.375rem !important; } -.-my-2\.5 { - margin-top: -0.625rem !important; - margin-bottom: -0.625rem !important; -} - .-mx-2\.5 { margin-left: -0.625rem !important; margin-right: -0.625rem !important; } -.-my-3\.5 { - margin-top: -0.875rem !important; - margin-bottom: -0.875rem !important; -} - .-mx-3\.5 { margin-left: -0.875rem !important; margin-right: -0.875rem !important; } -.mt-0 { +.my-0 { margin-top: 0px !important; + margin-bottom: 0px !important; } -.mr-0 { - margin-right: 0px !important; -} - -.mb-0 { - margin-bottom: 0px !important; +.my-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; } -.ml-0 { - margin-left: 0px !important; +.my-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; } -.mt-1 { - margin-top: 0.25rem !important; +.my-3 { + margin-top: 0.75rem !important; + margin-bottom: 0.75rem !important; } -.mr-1 { - margin-right: 0.25rem !important; +.my-4 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; } -.mb-1 { - margin-bottom: 0.25rem !important; +.my-5 { + margin-top: 1.25rem !important; + margin-bottom: 1.25rem !important; } -.ml-1 { - margin-left: 0.25rem !important; +.my-6 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; } -.mt-2 { - margin-top: 0.5rem !important; +.my-7 { + margin-top: 1.75rem !important; + margin-bottom: 1.75rem !important; } -.mr-2 { - margin-right: 0.5rem !important; +.my-8 { + margin-top: 2rem !important; + margin-bottom: 2rem !important; } -.mb-2 { - margin-bottom: 0.5rem !important; +.my-9 { + margin-top: 2.25rem !important; + margin-bottom: 2.25rem !important; } -.ml-2 { - margin-left: 0.5rem !important; +.my-10 { + margin-top: 2.5rem !important; + margin-bottom: 2.5rem !important; } -.mt-3 { - margin-top: 0.75rem !important; +.my-11 { + margin-top: 2.75rem !important; + margin-bottom: 2.75rem !important; } -.mr-3 { - margin-right: 0.75rem !important; +.my-12 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; } -.mb-3 { - margin-bottom: 0.75rem !important; +.my-14 { + margin-top: 3.5rem !important; + margin-bottom: 3.5rem !important; } -.ml-3 { - margin-left: 0.75rem !important; +.my-16 { + margin-top: 4rem !important; + margin-bottom: 4rem !important; } -.mt-4 { - margin-top: 1rem !important; +.my-20 { + margin-top: 5rem !important; + margin-bottom: 5rem !important; } -.mr-4 { - margin-right: 1rem !important; +.my-24 { + margin-top: 6rem !important; + margin-bottom: 6rem !important; } -.mb-4 { - margin-bottom: 1rem !important; +.my-28 { + margin-top: 7rem !important; + margin-bottom: 7rem !important; } -.ml-4 { - margin-left: 1rem !important; +.my-32 { + margin-top: 8rem !important; + margin-bottom: 8rem !important; } -.mt-5 { - margin-top: 1.25rem !important; +.my-36 { + margin-top: 9rem !important; + margin-bottom: 9rem !important; } -.mr-5 { - margin-right: 1.25rem !important; +.my-40 { + margin-top: 10rem !important; + margin-bottom: 10rem !important; } -.mb-5 { - margin-bottom: 1.25rem !important; +.my-44 { + margin-top: 11rem !important; + margin-bottom: 11rem !important; } -.ml-5 { - margin-left: 1.25rem !important; +.my-48 { + margin-top: 12rem !important; + margin-bottom: 12rem !important; } -.mt-6 { - margin-top: 1.5rem !important; +.my-52 { + margin-top: 13rem !important; + margin-bottom: 13rem !important; } -.mr-6 { - margin-right: 1.5rem !important; +.my-56 { + margin-top: 14rem !important; + margin-bottom: 14rem !important; } -.mb-6 { - margin-bottom: 1.5rem !important; +.my-60 { + margin-top: 15rem !important; + margin-bottom: 15rem !important; } -.ml-6 { - margin-left: 1.5rem !important; +.my-64 { + margin-top: 16rem !important; + margin-bottom: 16rem !important; } -.mt-7 { - margin-top: 1.75rem !important; +.my-72 { + margin-top: 18rem !important; + margin-bottom: 18rem !important; } -.mr-7 { - margin-right: 1.75rem !important; +.my-80 { + margin-top: 20rem !important; + margin-bottom: 20rem !important; } -.mb-7 { - margin-bottom: 1.75rem !important; +.my-96 { + margin-top: 24rem !important; + margin-bottom: 24rem !important; } -.ml-7 { - margin-left: 1.75rem !important; +.my-auto { + margin-top: auto !important; + margin-bottom: auto !important; } -.mt-8 { - margin-top: 2rem !important; +.my-px { + margin-top: 1px !important; + margin-bottom: 1px !important; } -.mr-8 { - margin-right: 2rem !important; +.my-0\.5 { + margin-top: 0.125rem !important; + margin-bottom: 0.125rem !important; } -.mb-8 { - margin-bottom: 2rem !important; +.my-1\.5 { + margin-top: 0.375rem !important; + margin-bottom: 0.375rem !important; } -.ml-8 { - margin-left: 2rem !important; +.my-2\.5 { + margin-top: 0.625rem !important; + margin-bottom: 0.625rem !important; } -.mt-9 { - margin-top: 2.25rem !important; +.my-3\.5 { + margin-top: 0.875rem !important; + margin-bottom: 0.875rem !important; } -.mr-9 { - margin-right: 2.25rem !important; +.-my-0 { + margin-top: 0px !important; + margin-bottom: 0px !important; } -.mb-9 { - margin-bottom: 2.25rem !important; +.-my-1 { + margin-top: -0.25rem !important; + margin-bottom: -0.25rem !important; } -.ml-9 { - margin-left: 2.25rem !important; +.-my-2 { + margin-top: -0.5rem !important; + margin-bottom: -0.5rem !important; } -.mt-10 { - margin-top: 2.5rem !important; +.-my-3 { + margin-top: -0.75rem !important; + margin-bottom: -0.75rem !important; } -.mr-10 { - margin-right: 2.5rem !important; +.-my-4 { + margin-top: -1rem !important; + margin-bottom: -1rem !important; } -.mb-10 { - margin-bottom: 2.5rem !important; +.-my-5 { + margin-top: -1.25rem !important; + margin-bottom: -1.25rem !important; } -.ml-10 { - margin-left: 2.5rem !important; +.-my-6 { + margin-top: -1.5rem !important; + margin-bottom: -1.5rem !important; } -.mt-11 { - margin-top: 2.75rem !important; +.-my-7 { + margin-top: -1.75rem !important; + margin-bottom: -1.75rem !important; } -.mr-11 { - margin-right: 2.75rem !important; +.-my-8 { + margin-top: -2rem !important; + margin-bottom: -2rem !important; } -.mb-11 { - margin-bottom: 2.75rem !important; +.-my-9 { + margin-top: -2.25rem !important; + margin-bottom: -2.25rem !important; } -.ml-11 { - margin-left: 2.75rem !important; +.-my-10 { + margin-top: -2.5rem !important; + margin-bottom: -2.5rem !important; } -.mt-12 { - margin-top: 3rem !important; +.-my-11 { + margin-top: -2.75rem !important; + margin-bottom: -2.75rem !important; } -.mr-12 { - margin-right: 3rem !important; +.-my-12 { + margin-top: -3rem !important; + margin-bottom: -3rem !important; } -.mb-12 { - margin-bottom: 3rem !important; +.-my-14 { + margin-top: -3.5rem !important; + margin-bottom: -3.5rem !important; } -.ml-12 { - margin-left: 3rem !important; +.-my-16 { + margin-top: -4rem !important; + margin-bottom: -4rem !important; } -.mt-14 { - margin-top: 3.5rem !important; +.-my-20 { + margin-top: -5rem !important; + margin-bottom: -5rem !important; } -.mr-14 { - margin-right: 3.5rem !important; +.-my-24 { + margin-top: -6rem !important; + margin-bottom: -6rem !important; } -.mb-14 { - margin-bottom: 3.5rem !important; +.-my-28 { + margin-top: -7rem !important; + margin-bottom: -7rem !important; } -.ml-14 { - margin-left: 3.5rem !important; +.-my-32 { + margin-top: -8rem !important; + margin-bottom: -8rem !important; } -.mt-16 { - margin-top: 4rem !important; +.-my-36 { + margin-top: -9rem !important; + margin-bottom: -9rem !important; } -.mr-16 { - margin-right: 4rem !important; +.-my-40 { + margin-top: -10rem !important; + margin-bottom: -10rem !important; } -.mb-16 { - margin-bottom: 4rem !important; +.-my-44 { + margin-top: -11rem !important; + margin-bottom: -11rem !important; } -.ml-16 { - margin-left: 4rem !important; +.-my-48 { + margin-top: -12rem !important; + margin-bottom: -12rem !important; } -.mt-20 { - margin-top: 5rem !important; +.-my-52 { + margin-top: -13rem !important; + margin-bottom: -13rem !important; } -.mr-20 { - margin-right: 5rem !important; +.-my-56 { + margin-top: -14rem !important; + margin-bottom: -14rem !important; } -.mb-20 { - margin-bottom: 5rem !important; +.-my-60 { + margin-top: -15rem !important; + margin-bottom: -15rem !important; } -.ml-20 { - margin-left: 5rem !important; +.-my-64 { + margin-top: -16rem !important; + margin-bottom: -16rem !important; } -.mt-24 { - margin-top: 6rem !important; +.-my-72 { + margin-top: -18rem !important; + margin-bottom: -18rem !important; } -.mr-24 { - margin-right: 6rem !important; +.-my-80 { + margin-top: -20rem !important; + margin-bottom: -20rem !important; } -.mb-24 { - margin-bottom: 6rem !important; +.-my-96 { + margin-top: -24rem !important; + margin-bottom: -24rem !important; } -.ml-24 { - margin-left: 6rem !important; +.-my-px { + margin-top: -1px !important; + margin-bottom: -1px !important; } -.mt-28 { - margin-top: 7rem !important; +.-my-0\.5 { + margin-top: -0.125rem !important; + margin-bottom: -0.125rem !important; } -.mr-28 { - margin-right: 7rem !important; +.-my-1\.5 { + margin-top: -0.375rem !important; + margin-bottom: -0.375rem !important; } -.mb-28 { - margin-bottom: 7rem !important; +.-my-2\.5 { + margin-top: -0.625rem !important; + margin-bottom: -0.625rem !important; } -.ml-28 { - margin-left: 7rem !important; +.-my-3\.5 { + margin-top: -0.875rem !important; + margin-bottom: -0.875rem !important; } -.mt-32 { - margin-top: 8rem !important; +.mt-0 { + margin-top: 0px !important; } -.mr-32 { - margin-right: 8rem !important; +.mt-1 { + margin-top: 0.25rem !important; } -.mb-32 { - margin-bottom: 8rem !important; +.mt-2 { + margin-top: 0.5rem !important; } -.ml-32 { - margin-left: 8rem !important; +.mt-3 { + margin-top: 0.75rem !important; } -.mt-36 { - margin-top: 9rem !important; +.mt-4 { + margin-top: 1rem !important; } -.mr-36 { - margin-right: 9rem !important; +.mt-5 { + margin-top: 1.25rem !important; } -.mb-36 { - margin-bottom: 9rem !important; +.mt-6 { + margin-top: 1.5rem !important; } -.ml-36 { - margin-left: 9rem !important; +.mt-7 { + margin-top: 1.75rem !important; } -.mt-40 { - margin-top: 10rem !important; +.mt-8 { + margin-top: 2rem !important; } -.mr-40 { - margin-right: 10rem !important; +.mt-9 { + margin-top: 2.25rem !important; } -.mb-40 { - margin-bottom: 10rem !important; +.mt-10 { + margin-top: 2.5rem !important; } -.ml-40 { - margin-left: 10rem !important; +.mt-11 { + margin-top: 2.75rem !important; } -.mt-44 { - margin-top: 11rem !important; +.mt-12 { + margin-top: 3rem !important; } -.mr-44 { - margin-right: 11rem !important; +.mt-14 { + margin-top: 3.5rem !important; } -.mb-44 { - margin-bottom: 11rem !important; +.mt-16 { + margin-top: 4rem !important; } -.ml-44 { - margin-left: 11rem !important; +.mt-20 { + margin-top: 5rem !important; } -.mt-48 { - margin-top: 12rem !important; +.mt-24 { + margin-top: 6rem !important; } -.mr-48 { - margin-right: 12rem !important; +.mt-28 { + margin-top: 7rem !important; } -.mb-48 { - margin-bottom: 12rem !important; +.mt-32 { + margin-top: 8rem !important; } -.ml-48 { - margin-left: 12rem !important; +.mt-36 { + margin-top: 9rem !important; } -.mt-52 { - margin-top: 13rem !important; +.mt-40 { + margin-top: 10rem !important; } -.mr-52 { - margin-right: 13rem !important; +.mt-44 { + margin-top: 11rem !important; } -.mb-52 { - margin-bottom: 13rem !important; +.mt-48 { + margin-top: 12rem !important; } -.ml-52 { - margin-left: 13rem !important; +.mt-52 { + margin-top: 13rem !important; } .mt-56 { margin-top: 14rem !important; } -.mr-56 { - margin-right: 14rem !important; +.mt-60 { + margin-top: 15rem !important; } -.mb-56 { - margin-bottom: 14rem !important; +.mt-64 { + margin-top: 16rem !important; } -.ml-56 { - margin-left: 14rem !important; +.mt-72 { + margin-top: 18rem !important; } -.mt-60 { - margin-top: 15rem !important; +.mt-80 { + margin-top: 20rem !important; } -.mr-60 { - margin-right: 15rem !important; +.mt-96 { + margin-top: 24rem !important; } -.mb-60 { - margin-bottom: 15rem !important; +.mt-auto { + margin-top: auto !important; } -.ml-60 { - margin-left: 15rem !important; +.mt-px { + margin-top: 1px !important; } -.mt-64 { - margin-top: 16rem !important; +.mt-0\.5 { + margin-top: 0.125rem !important; } -.mr-64 { - margin-right: 16rem !important; +.mt-1\.5 { + margin-top: 0.375rem !important; } -.mb-64 { - margin-bottom: 16rem !important; +.mt-2\.5 { + margin-top: 0.625rem !important; } -.ml-64 { - margin-left: 16rem !important; +.mt-3\.5 { + margin-top: 0.875rem !important; } -.mt-72 { - margin-top: 18rem !important; +.-mt-0 { + margin-top: 0px !important; } -.mr-72 { - margin-right: 18rem !important; +.-mt-1 { + margin-top: -0.25rem !important; } -.mb-72 { - margin-bottom: 18rem !important; +.-mt-2 { + margin-top: -0.5rem !important; } -.ml-72 { - margin-left: 18rem !important; +.-mt-3 { + margin-top: -0.75rem !important; } -.mt-80 { - margin-top: 20rem !important; +.-mt-4 { + margin-top: -1rem !important; } -.mr-80 { - margin-right: 20rem !important; +.-mt-5 { + margin-top: -1.25rem !important; } -.mb-80 { - margin-bottom: 20rem !important; +.-mt-6 { + margin-top: -1.5rem !important; } -.ml-80 { - margin-left: 20rem !important; +.-mt-7 { + margin-top: -1.75rem !important; } -.mt-96 { - margin-top: 24rem !important; +.-mt-8 { + margin-top: -2rem !important; } -.mr-96 { - margin-right: 24rem !important; +.-mt-9 { + margin-top: -2.25rem !important; } -.mb-96 { - margin-bottom: 24rem !important; +.-mt-10 { + margin-top: -2.5rem !important; } -.ml-96 { - margin-left: 24rem !important; +.-mt-11 { + margin-top: -2.75rem !important; } -.mt-auto { - margin-top: auto !important; +.-mt-12 { + margin-top: -3rem !important; } -.mr-auto { - margin-right: auto !important; +.-mt-14 { + margin-top: -3.5rem !important; } -.mb-auto { - margin-bottom: auto !important; +.-mt-16 { + margin-top: -4rem !important; } -.ml-auto { - margin-left: auto !important; +.-mt-20 { + margin-top: -5rem !important; } -.mt-px { - margin-top: 1px !important; +.-mt-24 { + margin-top: -6rem !important; } -.mr-px { - margin-right: 1px !important; +.-mt-28 { + margin-top: -7rem !important; } -.mb-px { - margin-bottom: 1px !important; +.-mt-32 { + margin-top: -8rem !important; } -.ml-px { - margin-left: 1px !important; +.-mt-36 { + margin-top: -9rem !important; } -.mt-0\.5 { - margin-top: 0.125rem !important; +.-mt-40 { + margin-top: -10rem !important; } -.mr-0\.5 { - margin-right: 0.125rem !important; +.-mt-44 { + margin-top: -11rem !important; } -.mb-0\.5 { - margin-bottom: 0.125rem !important; +.-mt-48 { + margin-top: -12rem !important; } -.ml-0\.5 { - margin-left: 0.125rem !important; +.-mt-52 { + margin-top: -13rem !important; } -.mt-1\.5 { - margin-top: 0.375rem !important; +.-mt-56 { + margin-top: -14rem !important; } -.mr-1\.5 { - margin-right: 0.375rem !important; +.-mt-60 { + margin-top: -15rem !important; } -.mb-1\.5 { - margin-bottom: 0.375rem !important; +.-mt-64 { + margin-top: -16rem !important; } -.ml-1\.5 { - margin-left: 0.375rem !important; +.-mt-72 { + margin-top: -18rem !important; } -.mt-2\.5 { - margin-top: 0.625rem !important; +.-mt-80 { + margin-top: -20rem !important; } -.mr-2\.5 { - margin-right: 0.625rem !important; +.-mt-96 { + margin-top: -24rem !important; } -.mb-2\.5 { - margin-bottom: 0.625rem !important; +.-mt-px { + margin-top: -1px !important; } -.ml-2\.5 { - margin-left: 0.625rem !important; +.-mt-0\.5 { + margin-top: -0.125rem !important; } -.mt-3\.5 { - margin-top: 0.875rem !important; +.-mt-1\.5 { + margin-top: -0.375rem !important; } -.mr-3\.5 { - margin-right: 0.875rem !important; +.-mt-2\.5 { + margin-top: -0.625rem !important; } -.mb-3\.5 { - margin-bottom: 0.875rem !important; +.-mt-3\.5 { + margin-top: -0.875rem !important; } -.ml-3\.5 { - margin-left: 0.875rem !important; +.mr-0 { + margin-right: 0px !important; } -.-mt-0 { - margin-top: 0px !important; +.mr-1 { + margin-right: 0.25rem !important; } -.-mr-0 { - margin-right: 0px !important; +.mr-2 { + margin-right: 0.5rem !important; } -.-mb-0 { - margin-bottom: 0px !important; +.mr-3 { + margin-right: 0.75rem !important; } -.-ml-0 { - margin-left: 0px !important; +.mr-4 { + margin-right: 1rem !important; } -.-mt-1 { - margin-top: -0.25rem !important; +.mr-5 { + margin-right: 1.25rem !important; } -.-mr-1 { - margin-right: -0.25rem !important; +.mr-6 { + margin-right: 1.5rem !important; } -.-mb-1 { - margin-bottom: -0.25rem !important; +.mr-7 { + margin-right: 1.75rem !important; } -.-ml-1 { - margin-left: -0.25rem !important; +.mr-8 { + margin-right: 2rem !important; } -.-mt-2 { - margin-top: -0.5rem !important; +.mr-9 { + margin-right: 2.25rem !important; } -.-mr-2 { - margin-right: -0.5rem !important; +.mr-10 { + margin-right: 2.5rem !important; } -.-mb-2 { - margin-bottom: -0.5rem !important; +.mr-11 { + margin-right: 2.75rem !important; } -.-ml-2 { - margin-left: -0.5rem !important; +.mr-12 { + margin-right: 3rem !important; } -.-mt-3 { - margin-top: -0.75rem !important; +.mr-14 { + margin-right: 3.5rem !important; } -.-mr-3 { - margin-right: -0.75rem !important; +.mr-16 { + margin-right: 4rem !important; } -.-mb-3 { - margin-bottom: -0.75rem !important; +.mr-20 { + margin-right: 5rem !important; } -.-ml-3 { - margin-left: -0.75rem !important; +.mr-24 { + margin-right: 6rem !important; } -.-mt-4 { - margin-top: -1rem !important; +.mr-28 { + margin-right: 7rem !important; } -.-mr-4 { - margin-right: -1rem !important; +.mr-32 { + margin-right: 8rem !important; } -.-mb-4 { - margin-bottom: -1rem !important; +.mr-36 { + margin-right: 9rem !important; } -.-ml-4 { - margin-left: -1rem !important; +.mr-40 { + margin-right: 10rem !important; } -.-mt-5 { - margin-top: -1.25rem !important; +.mr-44 { + margin-right: 11rem !important; } -.-mr-5 { - margin-right: -1.25rem !important; +.mr-48 { + margin-right: 12rem !important; } -.-mb-5 { - margin-bottom: -1.25rem !important; +.mr-52 { + margin-right: 13rem !important; } -.-ml-5 { - margin-left: -1.25rem !important; +.mr-56 { + margin-right: 14rem !important; } -.-mt-6 { - margin-top: -1.5rem !important; +.mr-60 { + margin-right: 15rem !important; } -.-mr-6 { - margin-right: -1.5rem !important; +.mr-64 { + margin-right: 16rem !important; } -.-mb-6 { - margin-bottom: -1.5rem !important; +.mr-72 { + margin-right: 18rem !important; } -.-ml-6 { - margin-left: -1.5rem !important; +.mr-80 { + margin-right: 20rem !important; } -.-mt-7 { - margin-top: -1.75rem !important; +.mr-96 { + margin-right: 24rem !important; } -.-mr-7 { - margin-right: -1.75rem !important; +.mr-auto { + margin-right: auto !important; } -.-mb-7 { - margin-bottom: -1.75rem !important; +.mr-px { + margin-right: 1px !important; } -.-ml-7 { - margin-left: -1.75rem !important; +.mr-0\.5 { + margin-right: 0.125rem !important; } -.-mt-8 { - margin-top: -2rem !important; +.mr-1\.5 { + margin-right: 0.375rem !important; } -.-mr-8 { - margin-right: -2rem !important; +.mr-2\.5 { + margin-right: 0.625rem !important; } -.-mb-8 { - margin-bottom: -2rem !important; +.mr-3\.5 { + margin-right: 0.875rem !important; } -.-ml-8 { - margin-left: -2rem !important; +.-mr-0 { + margin-right: 0px !important; } -.-mt-9 { - margin-top: -2.25rem !important; +.-mr-1 { + margin-right: -0.25rem !important; } -.-mr-9 { - margin-right: -2.25rem !important; +.-mr-2 { + margin-right: -0.5rem !important; } -.-mb-9 { - margin-bottom: -2.25rem !important; +.-mr-3 { + margin-right: -0.75rem !important; } -.-ml-9 { - margin-left: -2.25rem !important; +.-mr-4 { + margin-right: -1rem !important; } -.-mt-10 { - margin-top: -2.5rem !important; +.-mr-5 { + margin-right: -1.25rem !important; } -.-mr-10 { - margin-right: -2.5rem !important; +.-mr-6 { + margin-right: -1.5rem !important; } -.-mb-10 { - margin-bottom: -2.5rem !important; +.-mr-7 { + margin-right: -1.75rem !important; } -.-ml-10 { - margin-left: -2.5rem !important; +.-mr-8 { + margin-right: -2rem !important; } -.-mt-11 { - margin-top: -2.75rem !important; +.-mr-9 { + margin-right: -2.25rem !important; +} + +.-mr-10 { + margin-right: -2.5rem !important; } .-mr-11 { margin-right: -2.75rem !important; } -.-mb-11 { - margin-bottom: -2.75rem !important; +.-mr-12 { + margin-right: -3rem !important; } -.-ml-11 { - margin-left: -2.75rem !important; +.-mr-14 { + margin-right: -3.5rem !important; } -.-mt-12 { - margin-top: -3rem !important; +.-mr-16 { + margin-right: -4rem !important; } -.-mr-12 { - margin-right: -3rem !important; +.-mr-20 { + margin-right: -5rem !important; } -.-mb-12 { - margin-bottom: -3rem !important; +.-mr-24 { + margin-right: -6rem !important; } -.-ml-12 { - margin-left: -3rem !important; +.-mr-28 { + margin-right: -7rem !important; } -.-mt-14 { - margin-top: -3.5rem !important; +.-mr-32 { + margin-right: -8rem !important; } -.-mr-14 { - margin-right: -3.5rem !important; +.-mr-36 { + margin-right: -9rem !important; } -.-mb-14 { - margin-bottom: -3.5rem !important; +.-mr-40 { + margin-right: -10rem !important; } -.-ml-14 { - margin-left: -3.5rem !important; +.-mr-44 { + margin-right: -11rem !important; } -.-mt-16 { - margin-top: -4rem !important; +.-mr-48 { + margin-right: -12rem !important; } -.-mr-16 { - margin-right: -4rem !important; +.-mr-52 { + margin-right: -13rem !important; } -.-mb-16 { - margin-bottom: -4rem !important; +.-mr-56 { + margin-right: -14rem !important; } -.-ml-16 { - margin-left: -4rem !important; +.-mr-60 { + margin-right: -15rem !important; } -.-mt-20 { - margin-top: -5rem !important; +.-mr-64 { + margin-right: -16rem !important; } -.-mr-20 { - margin-right: -5rem !important; +.-mr-72 { + margin-right: -18rem !important; } -.-mb-20 { - margin-bottom: -5rem !important; +.-mr-80 { + margin-right: -20rem !important; } -.-ml-20 { - margin-left: -5rem !important; +.-mr-96 { + margin-right: -24rem !important; } -.-mt-24 { - margin-top: -6rem !important; +.-mr-px { + margin-right: -1px !important; } -.-mr-24 { - margin-right: -6rem !important; +.-mr-0\.5 { + margin-right: -0.125rem !important; } -.-mb-24 { - margin-bottom: -6rem !important; +.-mr-1\.5 { + margin-right: -0.375rem !important; } -.-ml-24 { - margin-left: -6rem !important; +.-mr-2\.5 { + margin-right: -0.625rem !important; } -.-mt-28 { - margin-top: -7rem !important; +.-mr-3\.5 { + margin-right: -0.875rem !important; } -.-mr-28 { - margin-right: -7rem !important; +.mb-0 { + margin-bottom: 0px !important; } -.-mb-28 { - margin-bottom: -7rem !important; +.mb-1 { + margin-bottom: 0.25rem !important; } -.-ml-28 { - margin-left: -7rem !important; +.mb-2 { + margin-bottom: 0.5rem !important; } -.-mt-32 { - margin-top: -8rem !important; +.mb-3 { + margin-bottom: 0.75rem !important; } -.-mr-32 { - margin-right: -8rem !important; +.mb-4 { + margin-bottom: 1rem !important; } -.-mb-32 { - margin-bottom: -8rem !important; +.mb-5 { + margin-bottom: 1.25rem !important; } -.-ml-32 { - margin-left: -8rem !important; +.mb-6 { + margin-bottom: 1.5rem !important; } -.-mt-36 { - margin-top: -9rem !important; +.mb-7 { + margin-bottom: 1.75rem !important; } -.-mr-36 { - margin-right: -9rem !important; +.mb-8 { + margin-bottom: 2rem !important; } -.-mb-36 { - margin-bottom: -9rem !important; +.mb-9 { + margin-bottom: 2.25rem !important; } -.-ml-36 { - margin-left: -9rem !important; +.mb-10 { + margin-bottom: 2.5rem !important; } -.-mt-40 { - margin-top: -10rem !important; +.mb-11 { + margin-bottom: 2.75rem !important; } -.-mr-40 { - margin-right: -10rem !important; +.mb-12 { + margin-bottom: 3rem !important; } -.-mb-40 { - margin-bottom: -10rem !important; +.mb-14 { + margin-bottom: 3.5rem !important; } -.-ml-40 { - margin-left: -10rem !important; +.mb-16 { + margin-bottom: 4rem !important; } -.-mt-44 { - margin-top: -11rem !important; +.mb-20 { + margin-bottom: 5rem !important; } -.-mr-44 { - margin-right: -11rem !important; +.mb-24 { + margin-bottom: 6rem !important; } -.-mb-44 { - margin-bottom: -11rem !important; +.mb-28 { + margin-bottom: 7rem !important; } -.-ml-44 { - margin-left: -11rem !important; +.mb-32 { + margin-bottom: 8rem !important; } -.-mt-48 { - margin-top: -12rem !important; +.mb-36 { + margin-bottom: 9rem !important; } -.-mr-48 { - margin-right: -12rem !important; +.mb-40 { + margin-bottom: 10rem !important; } -.-mb-48 { - margin-bottom: -12rem !important; +.mb-44 { + margin-bottom: 11rem !important; } -.-ml-48 { - margin-left: -12rem !important; +.mb-48 { + margin-bottom: 12rem !important; } -.-mt-52 { - margin-top: -13rem !important; +.mb-52 { + margin-bottom: 13rem !important; } -.-mr-52 { - margin-right: -13rem !important; +.mb-56 { + margin-bottom: 14rem !important; } -.-mb-52 { - margin-bottom: -13rem !important; +.mb-60 { + margin-bottom: 15rem !important; } -.-ml-52 { - margin-left: -13rem !important; +.mb-64 { + margin-bottom: 16rem !important; } -.-mt-56 { - margin-top: -14rem !important; +.mb-72 { + margin-bottom: 18rem !important; } -.-mr-56 { - margin-right: -14rem !important; +.mb-80 { + margin-bottom: 20rem !important; } -.-mb-56 { - margin-bottom: -14rem !important; +.mb-96 { + margin-bottom: 24rem !important; } -.-ml-56 { - margin-left: -14rem !important; +.mb-auto { + margin-bottom: auto !important; } -.-mt-60 { - margin-top: -15rem !important; +.mb-px { + margin-bottom: 1px !important; } -.-mr-60 { - margin-right: -15rem !important; +.mb-0\.5 { + margin-bottom: 0.125rem !important; } -.-mb-60 { - margin-bottom: -15rem !important; +.mb-1\.5 { + margin-bottom: 0.375rem !important; } -.-ml-60 { - margin-left: -15rem !important; +.mb-2\.5 { + margin-bottom: 0.625rem !important; } -.-mt-64 { - margin-top: -16rem !important; +.mb-3\.5 { + margin-bottom: 0.875rem !important; } -.-mr-64 { - margin-right: -16rem !important; +.-mb-0 { + margin-bottom: 0px !important; } -.-mb-64 { - margin-bottom: -16rem !important; +.-mb-1 { + margin-bottom: -0.25rem !important; } -.-ml-64 { - margin-left: -16rem !important; +.-mb-2 { + margin-bottom: -0.5rem !important; } -.-mt-72 { - margin-top: -18rem !important; +.-mb-3 { + margin-bottom: -0.75rem !important; } -.-mr-72 { - margin-right: -18rem !important; +.-mb-4 { + margin-bottom: -1rem !important; } -.-mb-72 { - margin-bottom: -18rem !important; +.-mb-5 { + margin-bottom: -1.25rem !important; } -.-ml-72 { - margin-left: -18rem !important; +.-mb-6 { + margin-bottom: -1.5rem !important; } -.-mt-80 { - margin-top: -20rem !important; +.-mb-7 { + margin-bottom: -1.75rem !important; } -.-mr-80 { - margin-right: -20rem !important; +.-mb-8 { + margin-bottom: -2rem !important; } -.-mb-80 { - margin-bottom: -20rem !important; +.-mb-9 { + margin-bottom: -2.25rem !important; } -.-ml-80 { - margin-left: -20rem !important; +.-mb-10 { + margin-bottom: -2.5rem !important; } -.-mt-96 { - margin-top: -24rem !important; +.-mb-11 { + margin-bottom: -2.75rem !important; } -.-mr-96 { - margin-right: -24rem !important; +.-mb-12 { + margin-bottom: -3rem !important; } -.-mb-96 { - margin-bottom: -24rem !important; +.-mb-14 { + margin-bottom: -3.5rem !important; } -.-ml-96 { - margin-left: -24rem !important; +.-mb-16 { + margin-bottom: -4rem !important; } -.-mt-px { - margin-top: -1px !important; +.-mb-20 { + margin-bottom: -5rem !important; } -.-mr-px { - margin-right: -1px !important; +.-mb-24 { + margin-bottom: -6rem !important; } -.-mb-px { - margin-bottom: -1px !important; +.-mb-28 { + margin-bottom: -7rem !important; } -.-ml-px { - margin-left: -1px !important; +.-mb-32 { + margin-bottom: -8rem !important; } -.-mt-0\.5 { - margin-top: -0.125rem !important; +.-mb-36 { + margin-bottom: -9rem !important; } -.-mr-0\.5 { - margin-right: -0.125rem !important; +.-mb-40 { + margin-bottom: -10rem !important; } -.-mb-0\.5 { - margin-bottom: -0.125rem !important; +.-mb-44 { + margin-bottom: -11rem !important; } -.-ml-0\.5 { - margin-left: -0.125rem !important; +.-mb-48 { + margin-bottom: -12rem !important; } -.-mt-1\.5 { - margin-top: -0.375rem !important; +.-mb-52 { + margin-bottom: -13rem !important; } -.-mr-1\.5 { - margin-right: -0.375rem !important; +.-mb-56 { + margin-bottom: -14rem !important; } -.-mb-1\.5 { - margin-bottom: -0.375rem !important; +.-mb-60 { + margin-bottom: -15rem !important; } -.-ml-1\.5 { - margin-left: -0.375rem !important; +.-mb-64 { + margin-bottom: -16rem !important; } -.-mt-2\.5 { - margin-top: -0.625rem !important; +.-mb-72 { + margin-bottom: -18rem !important; } -.-mr-2\.5 { - margin-right: -0.625rem !important; +.-mb-80 { + margin-bottom: -20rem !important; } -.-mb-2\.5 { - margin-bottom: -0.625rem !important; +.-mb-96 { + margin-bottom: -24rem !important; } -.-ml-2\.5 { - margin-left: -0.625rem !important; +.-mb-px { + margin-bottom: -1px !important; } -.-mt-3\.5 { - margin-top: -0.875rem !important; +.-mb-0\.5 { + margin-bottom: -0.125rem !important; } -.-mr-3\.5 { - margin-right: -0.875rem !important; +.-mb-1\.5 { + margin-bottom: -0.375rem !important; +} + +.-mb-2\.5 { + margin-bottom: -0.625rem !important; } .-mb-3\.5 { margin-bottom: -0.875rem !important; } +.ml-0 { + margin-left: 0px !important; +} + +.ml-1 { + margin-left: 0.25rem !important; +} + +.ml-2 { + margin-left: 0.5rem !important; +} + +.ml-3 { + margin-left: 0.75rem !important; +} + +.ml-4 { + margin-left: 1rem !important; +} + +.ml-5 { + margin-left: 1.25rem !important; +} + +.ml-6 { + margin-left: 1.5rem !important; +} + +.ml-7 { + margin-left: 1.75rem !important; +} + +.ml-8 { + margin-left: 2rem !important; +} + +.ml-9 { + margin-left: 2.25rem !important; +} + +.ml-10 { + margin-left: 2.5rem !important; +} + +.ml-11 { + margin-left: 2.75rem !important; +} + +.ml-12 { + margin-left: 3rem !important; +} + +.ml-14 { + margin-left: 3.5rem !important; +} + +.ml-16 { + margin-left: 4rem !important; +} + +.ml-20 { + margin-left: 5rem !important; +} + +.ml-24 { + margin-left: 6rem !important; +} + +.ml-28 { + margin-left: 7rem !important; +} + +.ml-32 { + margin-left: 8rem !important; +} + +.ml-36 { + margin-left: 9rem !important; +} + +.ml-40 { + margin-left: 10rem !important; +} + +.ml-44 { + margin-left: 11rem !important; +} + +.ml-48 { + margin-left: 12rem !important; +} + +.ml-52 { + margin-left: 13rem !important; +} + +.ml-56 { + margin-left: 14rem !important; +} + +.ml-60 { + margin-left: 15rem !important; +} + +.ml-64 { + margin-left: 16rem !important; +} + +.ml-72 { + margin-left: 18rem !important; +} + +.ml-80 { + margin-left: 20rem !important; +} + +.ml-96 { + margin-left: 24rem !important; +} + +.ml-auto { + margin-left: auto !important; +} + +.ml-px { + margin-left: 1px !important; +} + +.ml-0\.5 { + margin-left: 0.125rem !important; +} + +.ml-1\.5 { + margin-left: 0.375rem !important; +} + +.ml-2\.5 { + margin-left: 0.625rem !important; +} + +.ml-3\.5 { + margin-left: 0.875rem !important; +} + +.-ml-0 { + margin-left: 0px !important; +} + +.-ml-1 { + margin-left: -0.25rem !important; +} + +.-ml-2 { + margin-left: -0.5rem !important; +} + +.-ml-3 { + margin-left: -0.75rem !important; +} + +.-ml-4 { + margin-left: -1rem !important; +} + +.-ml-5 { + margin-left: -1.25rem !important; +} + +.-ml-6 { + margin-left: -1.5rem !important; +} + +.-ml-7 { + margin-left: -1.75rem !important; +} + +.-ml-8 { + margin-left: -2rem !important; +} + +.-ml-9 { + margin-left: -2.25rem !important; +} + +.-ml-10 { + margin-left: -2.5rem !important; +} + +.-ml-11 { + margin-left: -2.75rem !important; +} + +.-ml-12 { + margin-left: -3rem !important; +} + +.-ml-14 { + margin-left: -3.5rem !important; +} + +.-ml-16 { + margin-left: -4rem !important; +} + +.-ml-20 { + margin-left: -5rem !important; +} + +.-ml-24 { + margin-left: -6rem !important; +} + +.-ml-28 { + margin-left: -7rem !important; +} + +.-ml-32 { + margin-left: -8rem !important; +} + +.-ml-36 { + margin-left: -9rem !important; +} + +.-ml-40 { + margin-left: -10rem !important; +} + +.-ml-44 { + margin-left: -11rem !important; +} + +.-ml-48 { + margin-left: -12rem !important; +} + +.-ml-52 { + margin-left: -13rem !important; +} + +.-ml-56 { + margin-left: -14rem !important; +} + +.-ml-60 { + margin-left: -15rem !important; +} + +.-ml-64 { + margin-left: -16rem !important; +} + +.-ml-72 { + margin-left: -18rem !important; +} + +.-ml-80 { + margin-left: -20rem !important; +} + +.-ml-96 { + margin-left: -24rem !important; +} + +.-ml-px { + margin-left: -1px !important; +} + +.-ml-0\.5 { + margin-left: -0.125rem !important; +} + +.-ml-1\.5 { + margin-left: -0.375rem !important; +} + +.-ml-2\.5 { + margin-left: -0.625rem !important; +} + .-ml-3\.5 { margin-left: -0.875rem !important; } @@ -41163,1848 +41163,1848 @@ video { margin: -0.875rem !important; } - .sm\:my-0 { - margin-top: 0px !important; - margin-bottom: 0px !important; - } - .sm\:mx-0 { margin-left: 0px !important; margin-right: 0px !important; } - .sm\:my-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; - } - .sm\:mx-1 { margin-left: 0.25rem !important; margin-right: 0.25rem !important; } - .sm\:my-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; - } - .sm\:mx-2 { margin-left: 0.5rem !important; margin-right: 0.5rem !important; } - .sm\:my-3 { - margin-top: 0.75rem !important; - margin-bottom: 0.75rem !important; - } - .sm\:mx-3 { margin-left: 0.75rem !important; margin-right: 0.75rem !important; } - .sm\:my-4 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; - } - .sm\:mx-4 { margin-left: 1rem !important; margin-right: 1rem !important; } - .sm\:my-5 { - margin-top: 1.25rem !important; - margin-bottom: 1.25rem !important; - } - .sm\:mx-5 { margin-left: 1.25rem !important; margin-right: 1.25rem !important; } - .sm\:my-6 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; - } - .sm\:mx-6 { margin-left: 1.5rem !important; margin-right: 1.5rem !important; } - .sm\:my-7 { - margin-top: 1.75rem !important; - margin-bottom: 1.75rem !important; - } - .sm\:mx-7 { margin-left: 1.75rem !important; margin-right: 1.75rem !important; } - .sm\:my-8 { - margin-top: 2rem !important; - margin-bottom: 2rem !important; - } - .sm\:mx-8 { margin-left: 2rem !important; margin-right: 2rem !important; } - .sm\:my-9 { - margin-top: 2.25rem !important; - margin-bottom: 2.25rem !important; - } - .sm\:mx-9 { margin-left: 2.25rem !important; margin-right: 2.25rem !important; } - .sm\:my-10 { - margin-top: 2.5rem !important; - margin-bottom: 2.5rem !important; - } - .sm\:mx-10 { margin-left: 2.5rem !important; margin-right: 2.5rem !important; } - .sm\:my-11 { - margin-top: 2.75rem !important; - margin-bottom: 2.75rem !important; - } - .sm\:mx-11 { margin-left: 2.75rem !important; margin-right: 2.75rem !important; } - .sm\:my-12 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; - } - .sm\:mx-12 { margin-left: 3rem !important; margin-right: 3rem !important; } - .sm\:my-14 { - margin-top: 3.5rem !important; - margin-bottom: 3.5rem !important; - } - .sm\:mx-14 { margin-left: 3.5rem !important; margin-right: 3.5rem !important; } - .sm\:my-16 { - margin-top: 4rem !important; - margin-bottom: 4rem !important; - } - .sm\:mx-16 { margin-left: 4rem !important; margin-right: 4rem !important; } - .sm\:my-20 { - margin-top: 5rem !important; - margin-bottom: 5rem !important; - } - .sm\:mx-20 { margin-left: 5rem !important; margin-right: 5rem !important; } - .sm\:my-24 { - margin-top: 6rem !important; - margin-bottom: 6rem !important; - } - .sm\:mx-24 { margin-left: 6rem !important; margin-right: 6rem !important; } - .sm\:my-28 { - margin-top: 7rem !important; - margin-bottom: 7rem !important; - } - .sm\:mx-28 { margin-left: 7rem !important; margin-right: 7rem !important; } - .sm\:my-32 { - margin-top: 8rem !important; - margin-bottom: 8rem !important; - } - .sm\:mx-32 { margin-left: 8rem !important; margin-right: 8rem !important; } - .sm\:my-36 { - margin-top: 9rem !important; - margin-bottom: 9rem !important; - } - .sm\:mx-36 { margin-left: 9rem !important; margin-right: 9rem !important; } - .sm\:my-40 { - margin-top: 10rem !important; - margin-bottom: 10rem !important; - } - .sm\:mx-40 { margin-left: 10rem !important; margin-right: 10rem !important; } - .sm\:my-44 { - margin-top: 11rem !important; - margin-bottom: 11rem !important; - } - .sm\:mx-44 { margin-left: 11rem !important; margin-right: 11rem !important; } - .sm\:my-48 { - margin-top: 12rem !important; - margin-bottom: 12rem !important; - } - .sm\:mx-48 { margin-left: 12rem !important; margin-right: 12rem !important; } - .sm\:my-52 { - margin-top: 13rem !important; - margin-bottom: 13rem !important; - } - .sm\:mx-52 { margin-left: 13rem !important; margin-right: 13rem !important; } - .sm\:my-56 { - margin-top: 14rem !important; - margin-bottom: 14rem !important; - } - .sm\:mx-56 { margin-left: 14rem !important; margin-right: 14rem !important; } - .sm\:my-60 { - margin-top: 15rem !important; - margin-bottom: 15rem !important; - } - .sm\:mx-60 { margin-left: 15rem !important; margin-right: 15rem !important; } - .sm\:my-64 { - margin-top: 16rem !important; - margin-bottom: 16rem !important; - } - .sm\:mx-64 { margin-left: 16rem !important; margin-right: 16rem !important; } - .sm\:my-72 { - margin-top: 18rem !important; - margin-bottom: 18rem !important; - } - .sm\:mx-72 { margin-left: 18rem !important; margin-right: 18rem !important; } - .sm\:my-80 { - margin-top: 20rem !important; - margin-bottom: 20rem !important; - } - .sm\:mx-80 { margin-left: 20rem !important; margin-right: 20rem !important; } - .sm\:my-96 { - margin-top: 24rem !important; - margin-bottom: 24rem !important; - } - .sm\:mx-96 { margin-left: 24rem !important; margin-right: 24rem !important; } - .sm\:my-auto { - margin-top: auto !important; - margin-bottom: auto !important; - } - .sm\:mx-auto { margin-left: auto !important; margin-right: auto !important; } - .sm\:my-px { - margin-top: 1px !important; - margin-bottom: 1px !important; - } - .sm\:mx-px { margin-left: 1px !important; margin-right: 1px !important; } - .sm\:my-0\.5 { - margin-top: 0.125rem !important; - margin-bottom: 0.125rem !important; - } - .sm\:mx-0\.5 { margin-left: 0.125rem !important; margin-right: 0.125rem !important; } - .sm\:my-1\.5 { - margin-top: 0.375rem !important; - margin-bottom: 0.375rem !important; - } - .sm\:mx-1\.5 { margin-left: 0.375rem !important; margin-right: 0.375rem !important; } - .sm\:my-2\.5 { - margin-top: 0.625rem !important; - margin-bottom: 0.625rem !important; - } - .sm\:mx-2\.5 { margin-left: 0.625rem !important; margin-right: 0.625rem !important; } - .sm\:my-3\.5 { - margin-top: 0.875rem !important; - margin-bottom: 0.875rem !important; - } - .sm\:mx-3\.5 { margin-left: 0.875rem !important; margin-right: 0.875rem !important; } - .sm\:-my-0 { - margin-top: 0px !important; - margin-bottom: 0px !important; - } - .sm\:-mx-0 { margin-left: 0px !important; margin-right: 0px !important; } - .sm\:-my-1 { - margin-top: -0.25rem !important; - margin-bottom: -0.25rem !important; - } - .sm\:-mx-1 { margin-left: -0.25rem !important; margin-right: -0.25rem !important; } - .sm\:-my-2 { - margin-top: -0.5rem !important; - margin-bottom: -0.5rem !important; - } - .sm\:-mx-2 { margin-left: -0.5rem !important; margin-right: -0.5rem !important; } - .sm\:-my-3 { - margin-top: -0.75rem !important; - margin-bottom: -0.75rem !important; - } - .sm\:-mx-3 { margin-left: -0.75rem !important; margin-right: -0.75rem !important; } - .sm\:-my-4 { - margin-top: -1rem !important; - margin-bottom: -1rem !important; - } - .sm\:-mx-4 { margin-left: -1rem !important; margin-right: -1rem !important; } - .sm\:-my-5 { - margin-top: -1.25rem !important; - margin-bottom: -1.25rem !important; - } - .sm\:-mx-5 { margin-left: -1.25rem !important; margin-right: -1.25rem !important; } - .sm\:-my-6 { - margin-top: -1.5rem !important; - margin-bottom: -1.5rem !important; - } - .sm\:-mx-6 { margin-left: -1.5rem !important; margin-right: -1.5rem !important; } - .sm\:-my-7 { - margin-top: -1.75rem !important; - margin-bottom: -1.75rem !important; - } - .sm\:-mx-7 { margin-left: -1.75rem !important; margin-right: -1.75rem !important; } - .sm\:-my-8 { - margin-top: -2rem !important; - margin-bottom: -2rem !important; - } - .sm\:-mx-8 { margin-left: -2rem !important; margin-right: -2rem !important; } - .sm\:-my-9 { - margin-top: -2.25rem !important; - margin-bottom: -2.25rem !important; - } - .sm\:-mx-9 { margin-left: -2.25rem !important; margin-right: -2.25rem !important; } - .sm\:-my-10 { - margin-top: -2.5rem !important; - margin-bottom: -2.5rem !important; - } - .sm\:-mx-10 { margin-left: -2.5rem !important; margin-right: -2.5rem !important; } - .sm\:-my-11 { - margin-top: -2.75rem !important; - margin-bottom: -2.75rem !important; - } - .sm\:-mx-11 { margin-left: -2.75rem !important; margin-right: -2.75rem !important; } - .sm\:-my-12 { - margin-top: -3rem !important; - margin-bottom: -3rem !important; - } - .sm\:-mx-12 { margin-left: -3rem !important; margin-right: -3rem !important; } - .sm\:-my-14 { - margin-top: -3.5rem !important; - margin-bottom: -3.5rem !important; - } - .sm\:-mx-14 { margin-left: -3.5rem !important; margin-right: -3.5rem !important; } - .sm\:-my-16 { - margin-top: -4rem !important; - margin-bottom: -4rem !important; - } - .sm\:-mx-16 { margin-left: -4rem !important; margin-right: -4rem !important; } - .sm\:-my-20 { - margin-top: -5rem !important; - margin-bottom: -5rem !important; - } - .sm\:-mx-20 { margin-left: -5rem !important; margin-right: -5rem !important; } - .sm\:-my-24 { - margin-top: -6rem !important; - margin-bottom: -6rem !important; - } - .sm\:-mx-24 { margin-left: -6rem !important; margin-right: -6rem !important; } - .sm\:-my-28 { - margin-top: -7rem !important; - margin-bottom: -7rem !important; - } - .sm\:-mx-28 { margin-left: -7rem !important; margin-right: -7rem !important; } - .sm\:-my-32 { - margin-top: -8rem !important; - margin-bottom: -8rem !important; - } - .sm\:-mx-32 { margin-left: -8rem !important; margin-right: -8rem !important; } - .sm\:-my-36 { - margin-top: -9rem !important; - margin-bottom: -9rem !important; - } - .sm\:-mx-36 { margin-left: -9rem !important; margin-right: -9rem !important; } - .sm\:-my-40 { - margin-top: -10rem !important; - margin-bottom: -10rem !important; - } - .sm\:-mx-40 { margin-left: -10rem !important; margin-right: -10rem !important; } - .sm\:-my-44 { - margin-top: -11rem !important; - margin-bottom: -11rem !important; - } - .sm\:-mx-44 { margin-left: -11rem !important; margin-right: -11rem !important; } - .sm\:-my-48 { - margin-top: -12rem !important; - margin-bottom: -12rem !important; - } - .sm\:-mx-48 { margin-left: -12rem !important; margin-right: -12rem !important; } - .sm\:-my-52 { - margin-top: -13rem !important; - margin-bottom: -13rem !important; - } - .sm\:-mx-52 { margin-left: -13rem !important; margin-right: -13rem !important; } - .sm\:-my-56 { - margin-top: -14rem !important; - margin-bottom: -14rem !important; - } - .sm\:-mx-56 { margin-left: -14rem !important; margin-right: -14rem !important; } - .sm\:-my-60 { - margin-top: -15rem !important; - margin-bottom: -15rem !important; - } - .sm\:-mx-60 { margin-left: -15rem !important; margin-right: -15rem !important; } - .sm\:-my-64 { - margin-top: -16rem !important; - margin-bottom: -16rem !important; - } - .sm\:-mx-64 { margin-left: -16rem !important; margin-right: -16rem !important; } - .sm\:-my-72 { - margin-top: -18rem !important; - margin-bottom: -18rem !important; - } - .sm\:-mx-72 { margin-left: -18rem !important; margin-right: -18rem !important; } - .sm\:-my-80 { - margin-top: -20rem !important; - margin-bottom: -20rem !important; - } - .sm\:-mx-80 { margin-left: -20rem !important; margin-right: -20rem !important; } - .sm\:-my-96 { - margin-top: -24rem !important; - margin-bottom: -24rem !important; - } - .sm\:-mx-96 { margin-left: -24rem !important; margin-right: -24rem !important; } - .sm\:-my-px { - margin-top: -1px !important; - margin-bottom: -1px !important; - } - .sm\:-mx-px { margin-left: -1px !important; margin-right: -1px !important; } - .sm\:-my-0\.5 { - margin-top: -0.125rem !important; - margin-bottom: -0.125rem !important; - } - .sm\:-mx-0\.5 { margin-left: -0.125rem !important; margin-right: -0.125rem !important; } - .sm\:-my-1\.5 { - margin-top: -0.375rem !important; - margin-bottom: -0.375rem !important; - } - .sm\:-mx-1\.5 { margin-left: -0.375rem !important; margin-right: -0.375rem !important; } - .sm\:-my-2\.5 { - margin-top: -0.625rem !important; - margin-bottom: -0.625rem !important; - } - .sm\:-mx-2\.5 { margin-left: -0.625rem !important; margin-right: -0.625rem !important; } - .sm\:-my-3\.5 { - margin-top: -0.875rem !important; - margin-bottom: -0.875rem !important; - } - .sm\:-mx-3\.5 { margin-left: -0.875rem !important; margin-right: -0.875rem !important; } - .sm\:mt-0 { + .sm\:my-0 { margin-top: 0px !important; + margin-bottom: 0px !important; } - .sm\:mr-0 { - margin-right: 0px !important; - } - - .sm\:mb-0 { - margin-bottom: 0px !important; + .sm\:my-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; } - .sm\:ml-0 { - margin-left: 0px !important; + .sm\:my-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; } - .sm\:mt-1 { - margin-top: 0.25rem !important; + .sm\:my-3 { + margin-top: 0.75rem !important; + margin-bottom: 0.75rem !important; } - .sm\:mr-1 { - margin-right: 0.25rem !important; + .sm\:my-4 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; } - .sm\:mb-1 { - margin-bottom: 0.25rem !important; + .sm\:my-5 { + margin-top: 1.25rem !important; + margin-bottom: 1.25rem !important; } - .sm\:ml-1 { - margin-left: 0.25rem !important; + .sm\:my-6 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; } - .sm\:mt-2 { - margin-top: 0.5rem !important; + .sm\:my-7 { + margin-top: 1.75rem !important; + margin-bottom: 1.75rem !important; } - .sm\:mr-2 { - margin-right: 0.5rem !important; + .sm\:my-8 { + margin-top: 2rem !important; + margin-bottom: 2rem !important; } - .sm\:mb-2 { - margin-bottom: 0.5rem !important; + .sm\:my-9 { + margin-top: 2.25rem !important; + margin-bottom: 2.25rem !important; } - .sm\:ml-2 { - margin-left: 0.5rem !important; + .sm\:my-10 { + margin-top: 2.5rem !important; + margin-bottom: 2.5rem !important; } - .sm\:mt-3 { - margin-top: 0.75rem !important; + .sm\:my-11 { + margin-top: 2.75rem !important; + margin-bottom: 2.75rem !important; } - .sm\:mr-3 { - margin-right: 0.75rem !important; + .sm\:my-12 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; } - .sm\:mb-3 { - margin-bottom: 0.75rem !important; + .sm\:my-14 { + margin-top: 3.5rem !important; + margin-bottom: 3.5rem !important; } - .sm\:ml-3 { - margin-left: 0.75rem !important; + .sm\:my-16 { + margin-top: 4rem !important; + margin-bottom: 4rem !important; } - .sm\:mt-4 { - margin-top: 1rem !important; + .sm\:my-20 { + margin-top: 5rem !important; + margin-bottom: 5rem !important; } - .sm\:mr-4 { - margin-right: 1rem !important; + .sm\:my-24 { + margin-top: 6rem !important; + margin-bottom: 6rem !important; } - .sm\:mb-4 { - margin-bottom: 1rem !important; + .sm\:my-28 { + margin-top: 7rem !important; + margin-bottom: 7rem !important; } - .sm\:ml-4 { - margin-left: 1rem !important; + .sm\:my-32 { + margin-top: 8rem !important; + margin-bottom: 8rem !important; } - .sm\:mt-5 { - margin-top: 1.25rem !important; + .sm\:my-36 { + margin-top: 9rem !important; + margin-bottom: 9rem !important; } - .sm\:mr-5 { - margin-right: 1.25rem !important; + .sm\:my-40 { + margin-top: 10rem !important; + margin-bottom: 10rem !important; } - .sm\:mb-5 { - margin-bottom: 1.25rem !important; + .sm\:my-44 { + margin-top: 11rem !important; + margin-bottom: 11rem !important; } - .sm\:ml-5 { - margin-left: 1.25rem !important; + .sm\:my-48 { + margin-top: 12rem !important; + margin-bottom: 12rem !important; } - .sm\:mt-6 { - margin-top: 1.5rem !important; + .sm\:my-52 { + margin-top: 13rem !important; + margin-bottom: 13rem !important; } - .sm\:mr-6 { - margin-right: 1.5rem !important; + .sm\:my-56 { + margin-top: 14rem !important; + margin-bottom: 14rem !important; } - .sm\:mb-6 { - margin-bottom: 1.5rem !important; + .sm\:my-60 { + margin-top: 15rem !important; + margin-bottom: 15rem !important; } - .sm\:ml-6 { - margin-left: 1.5rem !important; + .sm\:my-64 { + margin-top: 16rem !important; + margin-bottom: 16rem !important; } - .sm\:mt-7 { - margin-top: 1.75rem !important; + .sm\:my-72 { + margin-top: 18rem !important; + margin-bottom: 18rem !important; } - .sm\:mr-7 { - margin-right: 1.75rem !important; + .sm\:my-80 { + margin-top: 20rem !important; + margin-bottom: 20rem !important; } - .sm\:mb-7 { - margin-bottom: 1.75rem !important; + .sm\:my-96 { + margin-top: 24rem !important; + margin-bottom: 24rem !important; } - .sm\:ml-7 { - margin-left: 1.75rem !important; + .sm\:my-auto { + margin-top: auto !important; + margin-bottom: auto !important; } - .sm\:mt-8 { - margin-top: 2rem !important; + .sm\:my-px { + margin-top: 1px !important; + margin-bottom: 1px !important; } - .sm\:mr-8 { - margin-right: 2rem !important; + .sm\:my-0\.5 { + margin-top: 0.125rem !important; + margin-bottom: 0.125rem !important; } - .sm\:mb-8 { - margin-bottom: 2rem !important; + .sm\:my-1\.5 { + margin-top: 0.375rem !important; + margin-bottom: 0.375rem !important; } - .sm\:ml-8 { - margin-left: 2rem !important; + .sm\:my-2\.5 { + margin-top: 0.625rem !important; + margin-bottom: 0.625rem !important; } - .sm\:mt-9 { - margin-top: 2.25rem !important; + .sm\:my-3\.5 { + margin-top: 0.875rem !important; + margin-bottom: 0.875rem !important; } - .sm\:mr-9 { - margin-right: 2.25rem !important; + .sm\:-my-0 { + margin-top: 0px !important; + margin-bottom: 0px !important; } - .sm\:mb-9 { - margin-bottom: 2.25rem !important; + .sm\:-my-1 { + margin-top: -0.25rem !important; + margin-bottom: -0.25rem !important; } - .sm\:ml-9 { - margin-left: 2.25rem !important; + .sm\:-my-2 { + margin-top: -0.5rem !important; + margin-bottom: -0.5rem !important; } - .sm\:mt-10 { - margin-top: 2.5rem !important; + .sm\:-my-3 { + margin-top: -0.75rem !important; + margin-bottom: -0.75rem !important; } - .sm\:mr-10 { - margin-right: 2.5rem !important; + .sm\:-my-4 { + margin-top: -1rem !important; + margin-bottom: -1rem !important; } - .sm\:mb-10 { - margin-bottom: 2.5rem !important; + .sm\:-my-5 { + margin-top: -1.25rem !important; + margin-bottom: -1.25rem !important; } - .sm\:ml-10 { - margin-left: 2.5rem !important; + .sm\:-my-6 { + margin-top: -1.5rem !important; + margin-bottom: -1.5rem !important; } - .sm\:mt-11 { - margin-top: 2.75rem !important; + .sm\:-my-7 { + margin-top: -1.75rem !important; + margin-bottom: -1.75rem !important; } - .sm\:mr-11 { - margin-right: 2.75rem !important; + .sm\:-my-8 { + margin-top: -2rem !important; + margin-bottom: -2rem !important; } - .sm\:mb-11 { - margin-bottom: 2.75rem !important; + .sm\:-my-9 { + margin-top: -2.25rem !important; + margin-bottom: -2.25rem !important; } - .sm\:ml-11 { - margin-left: 2.75rem !important; + .sm\:-my-10 { + margin-top: -2.5rem !important; + margin-bottom: -2.5rem !important; } - .sm\:mt-12 { - margin-top: 3rem !important; + .sm\:-my-11 { + margin-top: -2.75rem !important; + margin-bottom: -2.75rem !important; } - .sm\:mr-12 { - margin-right: 3rem !important; + .sm\:-my-12 { + margin-top: -3rem !important; + margin-bottom: -3rem !important; } - .sm\:mb-12 { - margin-bottom: 3rem !important; + .sm\:-my-14 { + margin-top: -3.5rem !important; + margin-bottom: -3.5rem !important; } - .sm\:ml-12 { - margin-left: 3rem !important; + .sm\:-my-16 { + margin-top: -4rem !important; + margin-bottom: -4rem !important; } - .sm\:mt-14 { - margin-top: 3.5rem !important; + .sm\:-my-20 { + margin-top: -5rem !important; + margin-bottom: -5rem !important; } - .sm\:mr-14 { - margin-right: 3.5rem !important; + .sm\:-my-24 { + margin-top: -6rem !important; + margin-bottom: -6rem !important; } - .sm\:mb-14 { - margin-bottom: 3.5rem !important; + .sm\:-my-28 { + margin-top: -7rem !important; + margin-bottom: -7rem !important; } - .sm\:ml-14 { - margin-left: 3.5rem !important; + .sm\:-my-32 { + margin-top: -8rem !important; + margin-bottom: -8rem !important; } - .sm\:mt-16 { - margin-top: 4rem !important; + .sm\:-my-36 { + margin-top: -9rem !important; + margin-bottom: -9rem !important; } - .sm\:mr-16 { - margin-right: 4rem !important; + .sm\:-my-40 { + margin-top: -10rem !important; + margin-bottom: -10rem !important; } - .sm\:mb-16 { - margin-bottom: 4rem !important; + .sm\:-my-44 { + margin-top: -11rem !important; + margin-bottom: -11rem !important; } - .sm\:ml-16 { - margin-left: 4rem !important; + .sm\:-my-48 { + margin-top: -12rem !important; + margin-bottom: -12rem !important; } - .sm\:mt-20 { - margin-top: 5rem !important; + .sm\:-my-52 { + margin-top: -13rem !important; + margin-bottom: -13rem !important; } - .sm\:mr-20 { - margin-right: 5rem !important; + .sm\:-my-56 { + margin-top: -14rem !important; + margin-bottom: -14rem !important; } - .sm\:mb-20 { - margin-bottom: 5rem !important; + .sm\:-my-60 { + margin-top: -15rem !important; + margin-bottom: -15rem !important; } - .sm\:ml-20 { - margin-left: 5rem !important; + .sm\:-my-64 { + margin-top: -16rem !important; + margin-bottom: -16rem !important; } - .sm\:mt-24 { - margin-top: 6rem !important; + .sm\:-my-72 { + margin-top: -18rem !important; + margin-bottom: -18rem !important; } - .sm\:mr-24 { - margin-right: 6rem !important; + .sm\:-my-80 { + margin-top: -20rem !important; + margin-bottom: -20rem !important; } - .sm\:mb-24 { - margin-bottom: 6rem !important; + .sm\:-my-96 { + margin-top: -24rem !important; + margin-bottom: -24rem !important; } - .sm\:ml-24 { - margin-left: 6rem !important; + .sm\:-my-px { + margin-top: -1px !important; + margin-bottom: -1px !important; } - .sm\:mt-28 { - margin-top: 7rem !important; + .sm\:-my-0\.5 { + margin-top: -0.125rem !important; + margin-bottom: -0.125rem !important; } - .sm\:mr-28 { - margin-right: 7rem !important; + .sm\:-my-1\.5 { + margin-top: -0.375rem !important; + margin-bottom: -0.375rem !important; } - .sm\:mb-28 { - margin-bottom: 7rem !important; + .sm\:-my-2\.5 { + margin-top: -0.625rem !important; + margin-bottom: -0.625rem !important; } - .sm\:ml-28 { - margin-left: 7rem !important; + .sm\:-my-3\.5 { + margin-top: -0.875rem !important; + margin-bottom: -0.875rem !important; } - .sm\:mt-32 { - margin-top: 8rem !important; + .sm\:mt-0 { + margin-top: 0px !important; } - .sm\:mr-32 { - margin-right: 8rem !important; + .sm\:mt-1 { + margin-top: 0.25rem !important; } - .sm\:mb-32 { - margin-bottom: 8rem !important; + .sm\:mt-2 { + margin-top: 0.5rem !important; } - .sm\:ml-32 { - margin-left: 8rem !important; + .sm\:mt-3 { + margin-top: 0.75rem !important; } - .sm\:mt-36 { - margin-top: 9rem !important; + .sm\:mt-4 { + margin-top: 1rem !important; } - .sm\:mr-36 { - margin-right: 9rem !important; + .sm\:mt-5 { + margin-top: 1.25rem !important; } - .sm\:mb-36 { - margin-bottom: 9rem !important; + .sm\:mt-6 { + margin-top: 1.5rem !important; } - .sm\:ml-36 { - margin-left: 9rem !important; + .sm\:mt-7 { + margin-top: 1.75rem !important; } - .sm\:mt-40 { - margin-top: 10rem !important; + .sm\:mt-8 { + margin-top: 2rem !important; } - .sm\:mr-40 { - margin-right: 10rem !important; + .sm\:mt-9 { + margin-top: 2.25rem !important; } - .sm\:mb-40 { - margin-bottom: 10rem !important; + .sm\:mt-10 { + margin-top: 2.5rem !important; } - .sm\:ml-40 { - margin-left: 10rem !important; + .sm\:mt-11 { + margin-top: 2.75rem !important; } - .sm\:mt-44 { - margin-top: 11rem !important; + .sm\:mt-12 { + margin-top: 3rem !important; } - .sm\:mr-44 { - margin-right: 11rem !important; + .sm\:mt-14 { + margin-top: 3.5rem !important; } - .sm\:mb-44 { - margin-bottom: 11rem !important; + .sm\:mt-16 { + margin-top: 4rem !important; } - .sm\:ml-44 { - margin-left: 11rem !important; + .sm\:mt-20 { + margin-top: 5rem !important; } - .sm\:mt-48 { - margin-top: 12rem !important; + .sm\:mt-24 { + margin-top: 6rem !important; } - .sm\:mr-48 { - margin-right: 12rem !important; + .sm\:mt-28 { + margin-top: 7rem !important; } - .sm\:mb-48 { - margin-bottom: 12rem !important; + .sm\:mt-32 { + margin-top: 8rem !important; } - .sm\:ml-48 { - margin-left: 12rem !important; + .sm\:mt-36 { + margin-top: 9rem !important; } - .sm\:mt-52 { - margin-top: 13rem !important; + .sm\:mt-40 { + margin-top: 10rem !important; } - .sm\:mr-52 { - margin-right: 13rem !important; + .sm\:mt-44 { + margin-top: 11rem !important; } - .sm\:mb-52 { - margin-bottom: 13rem !important; + .sm\:mt-48 { + margin-top: 12rem !important; } - .sm\:ml-52 { - margin-left: 13rem !important; + .sm\:mt-52 { + margin-top: 13rem !important; } .sm\:mt-56 { margin-top: 14rem !important; } - .sm\:mr-56 { - margin-right: 14rem !important; + .sm\:mt-60 { + margin-top: 15rem !important; } - .sm\:mb-56 { - margin-bottom: 14rem !important; + .sm\:mt-64 { + margin-top: 16rem !important; } - .sm\:ml-56 { - margin-left: 14rem !important; + .sm\:mt-72 { + margin-top: 18rem !important; } - .sm\:mt-60 { - margin-top: 15rem !important; + .sm\:mt-80 { + margin-top: 20rem !important; } - .sm\:mr-60 { - margin-right: 15rem !important; + .sm\:mt-96 { + margin-top: 24rem !important; } - .sm\:mb-60 { - margin-bottom: 15rem !important; + .sm\:mt-auto { + margin-top: auto !important; } - .sm\:ml-60 { - margin-left: 15rem !important; + .sm\:mt-px { + margin-top: 1px !important; } - .sm\:mt-64 { - margin-top: 16rem !important; + .sm\:mt-0\.5 { + margin-top: 0.125rem !important; } - .sm\:mr-64 { - margin-right: 16rem !important; + .sm\:mt-1\.5 { + margin-top: 0.375rem !important; } - .sm\:mb-64 { - margin-bottom: 16rem !important; + .sm\:mt-2\.5 { + margin-top: 0.625rem !important; } - .sm\:ml-64 { - margin-left: 16rem !important; + .sm\:mt-3\.5 { + margin-top: 0.875rem !important; } - .sm\:mt-72 { - margin-top: 18rem !important; + .sm\:-mt-0 { + margin-top: 0px !important; } - .sm\:mr-72 { - margin-right: 18rem !important; + .sm\:-mt-1 { + margin-top: -0.25rem !important; } - .sm\:mb-72 { - margin-bottom: 18rem !important; + .sm\:-mt-2 { + margin-top: -0.5rem !important; } - .sm\:ml-72 { - margin-left: 18rem !important; + .sm\:-mt-3 { + margin-top: -0.75rem !important; } - .sm\:mt-80 { - margin-top: 20rem !important; + .sm\:-mt-4 { + margin-top: -1rem !important; } - .sm\:mr-80 { - margin-right: 20rem !important; + .sm\:-mt-5 { + margin-top: -1.25rem !important; } - .sm\:mb-80 { - margin-bottom: 20rem !important; + .sm\:-mt-6 { + margin-top: -1.5rem !important; } - .sm\:ml-80 { - margin-left: 20rem !important; + .sm\:-mt-7 { + margin-top: -1.75rem !important; } - .sm\:mt-96 { - margin-top: 24rem !important; + .sm\:-mt-8 { + margin-top: -2rem !important; } - .sm\:mr-96 { - margin-right: 24rem !important; + .sm\:-mt-9 { + margin-top: -2.25rem !important; } - .sm\:mb-96 { - margin-bottom: 24rem !important; + .sm\:-mt-10 { + margin-top: -2.5rem !important; } - .sm\:ml-96 { - margin-left: 24rem !important; + .sm\:-mt-11 { + margin-top: -2.75rem !important; } - .sm\:mt-auto { - margin-top: auto !important; + .sm\:-mt-12 { + margin-top: -3rem !important; } - .sm\:mr-auto { - margin-right: auto !important; + .sm\:-mt-14 { + margin-top: -3.5rem !important; } - .sm\:mb-auto { - margin-bottom: auto !important; + .sm\:-mt-16 { + margin-top: -4rem !important; } - .sm\:ml-auto { - margin-left: auto !important; + .sm\:-mt-20 { + margin-top: -5rem !important; } - .sm\:mt-px { - margin-top: 1px !important; + .sm\:-mt-24 { + margin-top: -6rem !important; } - .sm\:mr-px { - margin-right: 1px !important; + .sm\:-mt-28 { + margin-top: -7rem !important; } - .sm\:mb-px { - margin-bottom: 1px !important; + .sm\:-mt-32 { + margin-top: -8rem !important; } - .sm\:ml-px { - margin-left: 1px !important; + .sm\:-mt-36 { + margin-top: -9rem !important; } - .sm\:mt-0\.5 { - margin-top: 0.125rem !important; + .sm\:-mt-40 { + margin-top: -10rem !important; } - .sm\:mr-0\.5 { - margin-right: 0.125rem !important; + .sm\:-mt-44 { + margin-top: -11rem !important; } - .sm\:mb-0\.5 { - margin-bottom: 0.125rem !important; + .sm\:-mt-48 { + margin-top: -12rem !important; } - .sm\:ml-0\.5 { - margin-left: 0.125rem !important; + .sm\:-mt-52 { + margin-top: -13rem !important; } - .sm\:mt-1\.5 { - margin-top: 0.375rem !important; + .sm\:-mt-56 { + margin-top: -14rem !important; } - .sm\:mr-1\.5 { - margin-right: 0.375rem !important; + .sm\:-mt-60 { + margin-top: -15rem !important; } - .sm\:mb-1\.5 { - margin-bottom: 0.375rem !important; + .sm\:-mt-64 { + margin-top: -16rem !important; } - .sm\:ml-1\.5 { - margin-left: 0.375rem !important; + .sm\:-mt-72 { + margin-top: -18rem !important; } - .sm\:mt-2\.5 { - margin-top: 0.625rem !important; + .sm\:-mt-80 { + margin-top: -20rem !important; } - .sm\:mr-2\.5 { - margin-right: 0.625rem !important; + .sm\:-mt-96 { + margin-top: -24rem !important; } - .sm\:mb-2\.5 { - margin-bottom: 0.625rem !important; + .sm\:-mt-px { + margin-top: -1px !important; } - .sm\:ml-2\.5 { - margin-left: 0.625rem !important; + .sm\:-mt-0\.5 { + margin-top: -0.125rem !important; } - .sm\:mt-3\.5 { - margin-top: 0.875rem !important; + .sm\:-mt-1\.5 { + margin-top: -0.375rem !important; } - .sm\:mr-3\.5 { - margin-right: 0.875rem !important; + .sm\:-mt-2\.5 { + margin-top: -0.625rem !important; } - .sm\:mb-3\.5 { - margin-bottom: 0.875rem !important; + .sm\:-mt-3\.5 { + margin-top: -0.875rem !important; } - .sm\:ml-3\.5 { - margin-left: 0.875rem !important; + .sm\:mr-0 { + margin-right: 0px !important; } - .sm\:-mt-0 { - margin-top: 0px !important; + .sm\:mr-1 { + margin-right: 0.25rem !important; } - .sm\:-mr-0 { - margin-right: 0px !important; + .sm\:mr-2 { + margin-right: 0.5rem !important; } - .sm\:-mb-0 { - margin-bottom: 0px !important; + .sm\:mr-3 { + margin-right: 0.75rem !important; } - .sm\:-ml-0 { - margin-left: 0px !important; + .sm\:mr-4 { + margin-right: 1rem !important; } - .sm\:-mt-1 { - margin-top: -0.25rem !important; + .sm\:mr-5 { + margin-right: 1.25rem !important; } - .sm\:-mr-1 { - margin-right: -0.25rem !important; + .sm\:mr-6 { + margin-right: 1.5rem !important; } - .sm\:-mb-1 { - margin-bottom: -0.25rem !important; + .sm\:mr-7 { + margin-right: 1.75rem !important; } - .sm\:-ml-1 { - margin-left: -0.25rem !important; + .sm\:mr-8 { + margin-right: 2rem !important; } - .sm\:-mt-2 { - margin-top: -0.5rem !important; + .sm\:mr-9 { + margin-right: 2.25rem !important; } - .sm\:-mr-2 { - margin-right: -0.5rem !important; + .sm\:mr-10 { + margin-right: 2.5rem !important; } - .sm\:-mb-2 { - margin-bottom: -0.5rem !important; + .sm\:mr-11 { + margin-right: 2.75rem !important; } - .sm\:-ml-2 { - margin-left: -0.5rem !important; + .sm\:mr-12 { + margin-right: 3rem !important; } - .sm\:-mt-3 { - margin-top: -0.75rem !important; + .sm\:mr-14 { + margin-right: 3.5rem !important; } - .sm\:-mr-3 { - margin-right: -0.75rem !important; + .sm\:mr-16 { + margin-right: 4rem !important; } - .sm\:-mb-3 { - margin-bottom: -0.75rem !important; + .sm\:mr-20 { + margin-right: 5rem !important; } - .sm\:-ml-3 { - margin-left: -0.75rem !important; + .sm\:mr-24 { + margin-right: 6rem !important; } - .sm\:-mt-4 { - margin-top: -1rem !important; + .sm\:mr-28 { + margin-right: 7rem !important; } - .sm\:-mr-4 { - margin-right: -1rem !important; + .sm\:mr-32 { + margin-right: 8rem !important; } - .sm\:-mb-4 { - margin-bottom: -1rem !important; + .sm\:mr-36 { + margin-right: 9rem !important; } - .sm\:-ml-4 { - margin-left: -1rem !important; + .sm\:mr-40 { + margin-right: 10rem !important; } - .sm\:-mt-5 { - margin-top: -1.25rem !important; + .sm\:mr-44 { + margin-right: 11rem !important; } - .sm\:-mr-5 { - margin-right: -1.25rem !important; + .sm\:mr-48 { + margin-right: 12rem !important; } - .sm\:-mb-5 { - margin-bottom: -1.25rem !important; + .sm\:mr-52 { + margin-right: 13rem !important; } - .sm\:-ml-5 { - margin-left: -1.25rem !important; + .sm\:mr-56 { + margin-right: 14rem !important; } - .sm\:-mt-6 { - margin-top: -1.5rem !important; + .sm\:mr-60 { + margin-right: 15rem !important; } - .sm\:-mr-6 { - margin-right: -1.5rem !important; + .sm\:mr-64 { + margin-right: 16rem !important; } - .sm\:-mb-6 { - margin-bottom: -1.5rem !important; + .sm\:mr-72 { + margin-right: 18rem !important; } - .sm\:-ml-6 { - margin-left: -1.5rem !important; + .sm\:mr-80 { + margin-right: 20rem !important; } - .sm\:-mt-7 { - margin-top: -1.75rem !important; + .sm\:mr-96 { + margin-right: 24rem !important; } - .sm\:-mr-7 { - margin-right: -1.75rem !important; + .sm\:mr-auto { + margin-right: auto !important; } - .sm\:-mb-7 { - margin-bottom: -1.75rem !important; + .sm\:mr-px { + margin-right: 1px !important; } - .sm\:-ml-7 { - margin-left: -1.75rem !important; + .sm\:mr-0\.5 { + margin-right: 0.125rem !important; } - .sm\:-mt-8 { - margin-top: -2rem !important; + .sm\:mr-1\.5 { + margin-right: 0.375rem !important; } - .sm\:-mr-8 { - margin-right: -2rem !important; + .sm\:mr-2\.5 { + margin-right: 0.625rem !important; } - .sm\:-mb-8 { - margin-bottom: -2rem !important; + .sm\:mr-3\.5 { + margin-right: 0.875rem !important; } - .sm\:-ml-8 { - margin-left: -2rem !important; + .sm\:-mr-0 { + margin-right: 0px !important; } - .sm\:-mt-9 { - margin-top: -2.25rem !important; + .sm\:-mr-1 { + margin-right: -0.25rem !important; } - .sm\:-mr-9 { - margin-right: -2.25rem !important; + .sm\:-mr-2 { + margin-right: -0.5rem !important; } - .sm\:-mb-9 { - margin-bottom: -2.25rem !important; + .sm\:-mr-3 { + margin-right: -0.75rem !important; } - .sm\:-ml-9 { - margin-left: -2.25rem !important; + .sm\:-mr-4 { + margin-right: -1rem !important; } - .sm\:-mt-10 { - margin-top: -2.5rem !important; + .sm\:-mr-5 { + margin-right: -1.25rem !important; } - .sm\:-mr-10 { - margin-right: -2.5rem !important; + .sm\:-mr-6 { + margin-right: -1.5rem !important; } - .sm\:-mb-10 { - margin-bottom: -2.5rem !important; + .sm\:-mr-7 { + margin-right: -1.75rem !important; } - .sm\:-ml-10 { - margin-left: -2.5rem !important; + .sm\:-mr-8 { + margin-right: -2rem !important; } - .sm\:-mt-11 { - margin-top: -2.75rem !important; + .sm\:-mr-9 { + margin-right: -2.25rem !important; + } + + .sm\:-mr-10 { + margin-right: -2.5rem !important; } .sm\:-mr-11 { margin-right: -2.75rem !important; } - .sm\:-mb-11 { - margin-bottom: -2.75rem !important; + .sm\:-mr-12 { + margin-right: -3rem !important; } - .sm\:-ml-11 { - margin-left: -2.75rem !important; + .sm\:-mr-14 { + margin-right: -3.5rem !important; } - .sm\:-mt-12 { - margin-top: -3rem !important; + .sm\:-mr-16 { + margin-right: -4rem !important; } - .sm\:-mr-12 { - margin-right: -3rem !important; + .sm\:-mr-20 { + margin-right: -5rem !important; } - .sm\:-mb-12 { - margin-bottom: -3rem !important; + .sm\:-mr-24 { + margin-right: -6rem !important; } - .sm\:-ml-12 { - margin-left: -3rem !important; + .sm\:-mr-28 { + margin-right: -7rem !important; } - .sm\:-mt-14 { - margin-top: -3.5rem !important; + .sm\:-mr-32 { + margin-right: -8rem !important; } - .sm\:-mr-14 { - margin-right: -3.5rem !important; + .sm\:-mr-36 { + margin-right: -9rem !important; } - .sm\:-mb-14 { - margin-bottom: -3.5rem !important; + .sm\:-mr-40 { + margin-right: -10rem !important; } - .sm\:-ml-14 { - margin-left: -3.5rem !important; + .sm\:-mr-44 { + margin-right: -11rem !important; } - .sm\:-mt-16 { - margin-top: -4rem !important; + .sm\:-mr-48 { + margin-right: -12rem !important; } - .sm\:-mr-16 { - margin-right: -4rem !important; + .sm\:-mr-52 { + margin-right: -13rem !important; } - .sm\:-mb-16 { - margin-bottom: -4rem !important; + .sm\:-mr-56 { + margin-right: -14rem !important; } - .sm\:-ml-16 { - margin-left: -4rem !important; + .sm\:-mr-60 { + margin-right: -15rem !important; } - .sm\:-mt-20 { - margin-top: -5rem !important; + .sm\:-mr-64 { + margin-right: -16rem !important; } - .sm\:-mr-20 { - margin-right: -5rem !important; + .sm\:-mr-72 { + margin-right: -18rem !important; } - .sm\:-mb-20 { - margin-bottom: -5rem !important; + .sm\:-mr-80 { + margin-right: -20rem !important; } - .sm\:-ml-20 { - margin-left: -5rem !important; + .sm\:-mr-96 { + margin-right: -24rem !important; } - .sm\:-mt-24 { - margin-top: -6rem !important; + .sm\:-mr-px { + margin-right: -1px !important; } - .sm\:-mr-24 { - margin-right: -6rem !important; + .sm\:-mr-0\.5 { + margin-right: -0.125rem !important; } - .sm\:-mb-24 { - margin-bottom: -6rem !important; + .sm\:-mr-1\.5 { + margin-right: -0.375rem !important; } - .sm\:-ml-24 { - margin-left: -6rem !important; + .sm\:-mr-2\.5 { + margin-right: -0.625rem !important; } - .sm\:-mt-28 { - margin-top: -7rem !important; + .sm\:-mr-3\.5 { + margin-right: -0.875rem !important; } - .sm\:-mr-28 { - margin-right: -7rem !important; + .sm\:mb-0 { + margin-bottom: 0px !important; } - .sm\:-mb-28 { - margin-bottom: -7rem !important; + .sm\:mb-1 { + margin-bottom: 0.25rem !important; } - .sm\:-ml-28 { - margin-left: -7rem !important; + .sm\:mb-2 { + margin-bottom: 0.5rem !important; } - .sm\:-mt-32 { - margin-top: -8rem !important; + .sm\:mb-3 { + margin-bottom: 0.75rem !important; } - .sm\:-mr-32 { - margin-right: -8rem !important; + .sm\:mb-4 { + margin-bottom: 1rem !important; } - .sm\:-mb-32 { - margin-bottom: -8rem !important; + .sm\:mb-5 { + margin-bottom: 1.25rem !important; } - .sm\:-ml-32 { - margin-left: -8rem !important; + .sm\:mb-6 { + margin-bottom: 1.5rem !important; } - .sm\:-mt-36 { - margin-top: -9rem !important; + .sm\:mb-7 { + margin-bottom: 1.75rem !important; } - .sm\:-mr-36 { - margin-right: -9rem !important; + .sm\:mb-8 { + margin-bottom: 2rem !important; } - .sm\:-mb-36 { - margin-bottom: -9rem !important; + .sm\:mb-9 { + margin-bottom: 2.25rem !important; } - .sm\:-ml-36 { - margin-left: -9rem !important; + .sm\:mb-10 { + margin-bottom: 2.5rem !important; } - .sm\:-mt-40 { - margin-top: -10rem !important; + .sm\:mb-11 { + margin-bottom: 2.75rem !important; } - .sm\:-mr-40 { - margin-right: -10rem !important; + .sm\:mb-12 { + margin-bottom: 3rem !important; } - .sm\:-mb-40 { - margin-bottom: -10rem !important; + .sm\:mb-14 { + margin-bottom: 3.5rem !important; } - .sm\:-ml-40 { - margin-left: -10rem !important; + .sm\:mb-16 { + margin-bottom: 4rem !important; } - .sm\:-mt-44 { - margin-top: -11rem !important; + .sm\:mb-20 { + margin-bottom: 5rem !important; } - .sm\:-mr-44 { - margin-right: -11rem !important; + .sm\:mb-24 { + margin-bottom: 6rem !important; } - .sm\:-mb-44 { - margin-bottom: -11rem !important; + .sm\:mb-28 { + margin-bottom: 7rem !important; } - .sm\:-ml-44 { - margin-left: -11rem !important; + .sm\:mb-32 { + margin-bottom: 8rem !important; } - .sm\:-mt-48 { - margin-top: -12rem !important; + .sm\:mb-36 { + margin-bottom: 9rem !important; } - .sm\:-mr-48 { - margin-right: -12rem !important; + .sm\:mb-40 { + margin-bottom: 10rem !important; } - .sm\:-mb-48 { - margin-bottom: -12rem !important; + .sm\:mb-44 { + margin-bottom: 11rem !important; } - .sm\:-ml-48 { - margin-left: -12rem !important; + .sm\:mb-48 { + margin-bottom: 12rem !important; } - .sm\:-mt-52 { - margin-top: -13rem !important; + .sm\:mb-52 { + margin-bottom: 13rem !important; } - .sm\:-mr-52 { - margin-right: -13rem !important; + .sm\:mb-56 { + margin-bottom: 14rem !important; } - .sm\:-mb-52 { - margin-bottom: -13rem !important; + .sm\:mb-60 { + margin-bottom: 15rem !important; } - .sm\:-ml-52 { - margin-left: -13rem !important; + .sm\:mb-64 { + margin-bottom: 16rem !important; } - .sm\:-mt-56 { - margin-top: -14rem !important; + .sm\:mb-72 { + margin-bottom: 18rem !important; } - .sm\:-mr-56 { - margin-right: -14rem !important; + .sm\:mb-80 { + margin-bottom: 20rem !important; } - .sm\:-mb-56 { - margin-bottom: -14rem !important; + .sm\:mb-96 { + margin-bottom: 24rem !important; } - .sm\:-ml-56 { - margin-left: -14rem !important; + .sm\:mb-auto { + margin-bottom: auto !important; } - .sm\:-mt-60 { - margin-top: -15rem !important; + .sm\:mb-px { + margin-bottom: 1px !important; } - .sm\:-mr-60 { - margin-right: -15rem !important; + .sm\:mb-0\.5 { + margin-bottom: 0.125rem !important; } - .sm\:-mb-60 { - margin-bottom: -15rem !important; + .sm\:mb-1\.5 { + margin-bottom: 0.375rem !important; } - .sm\:-ml-60 { - margin-left: -15rem !important; + .sm\:mb-2\.5 { + margin-bottom: 0.625rem !important; } - .sm\:-mt-64 { - margin-top: -16rem !important; + .sm\:mb-3\.5 { + margin-bottom: 0.875rem !important; } - .sm\:-mr-64 { - margin-right: -16rem !important; + .sm\:-mb-0 { + margin-bottom: 0px !important; } - .sm\:-mb-64 { - margin-bottom: -16rem !important; + .sm\:-mb-1 { + margin-bottom: -0.25rem !important; } - .sm\:-ml-64 { - margin-left: -16rem !important; + .sm\:-mb-2 { + margin-bottom: -0.5rem !important; } - .sm\:-mt-72 { - margin-top: -18rem !important; + .sm\:-mb-3 { + margin-bottom: -0.75rem !important; } - .sm\:-mr-72 { - margin-right: -18rem !important; + .sm\:-mb-4 { + margin-bottom: -1rem !important; } - .sm\:-mb-72 { - margin-bottom: -18rem !important; + .sm\:-mb-5 { + margin-bottom: -1.25rem !important; } - .sm\:-ml-72 { - margin-left: -18rem !important; + .sm\:-mb-6 { + margin-bottom: -1.5rem !important; } - .sm\:-mt-80 { - margin-top: -20rem !important; + .sm\:-mb-7 { + margin-bottom: -1.75rem !important; } - .sm\:-mr-80 { - margin-right: -20rem !important; + .sm\:-mb-8 { + margin-bottom: -2rem !important; } - .sm\:-mb-80 { - margin-bottom: -20rem !important; + .sm\:-mb-9 { + margin-bottom: -2.25rem !important; } - .sm\:-ml-80 { - margin-left: -20rem !important; + .sm\:-mb-10 { + margin-bottom: -2.5rem !important; } - .sm\:-mt-96 { - margin-top: -24rem !important; + .sm\:-mb-11 { + margin-bottom: -2.75rem !important; } - .sm\:-mr-96 { - margin-right: -24rem !important; + .sm\:-mb-12 { + margin-bottom: -3rem !important; } - .sm\:-mb-96 { - margin-bottom: -24rem !important; + .sm\:-mb-14 { + margin-bottom: -3.5rem !important; } - .sm\:-ml-96 { - margin-left: -24rem !important; + .sm\:-mb-16 { + margin-bottom: -4rem !important; } - .sm\:-mt-px { - margin-top: -1px !important; + .sm\:-mb-20 { + margin-bottom: -5rem !important; } - .sm\:-mr-px { - margin-right: -1px !important; + .sm\:-mb-24 { + margin-bottom: -6rem !important; } - .sm\:-mb-px { - margin-bottom: -1px !important; + .sm\:-mb-28 { + margin-bottom: -7rem !important; } - .sm\:-ml-px { - margin-left: -1px !important; + .sm\:-mb-32 { + margin-bottom: -8rem !important; } - .sm\:-mt-0\.5 { - margin-top: -0.125rem !important; + .sm\:-mb-36 { + margin-bottom: -9rem !important; } - .sm\:-mr-0\.5 { - margin-right: -0.125rem !important; + .sm\:-mb-40 { + margin-bottom: -10rem !important; } - .sm\:-mb-0\.5 { - margin-bottom: -0.125rem !important; + .sm\:-mb-44 { + margin-bottom: -11rem !important; } - .sm\:-ml-0\.5 { - margin-left: -0.125rem !important; + .sm\:-mb-48 { + margin-bottom: -12rem !important; } - .sm\:-mt-1\.5 { - margin-top: -0.375rem !important; + .sm\:-mb-52 { + margin-bottom: -13rem !important; } - .sm\:-mr-1\.5 { - margin-right: -0.375rem !important; + .sm\:-mb-56 { + margin-bottom: -14rem !important; } - .sm\:-mb-1\.5 { - margin-bottom: -0.375rem !important; + .sm\:-mb-60 { + margin-bottom: -15rem !important; } - .sm\:-ml-1\.5 { - margin-left: -0.375rem !important; + .sm\:-mb-64 { + margin-bottom: -16rem !important; } - .sm\:-mt-2\.5 { - margin-top: -0.625rem !important; + .sm\:-mb-72 { + margin-bottom: -18rem !important; } - .sm\:-mr-2\.5 { - margin-right: -0.625rem !important; + .sm\:-mb-80 { + margin-bottom: -20rem !important; } - .sm\:-mb-2\.5 { - margin-bottom: -0.625rem !important; + .sm\:-mb-96 { + margin-bottom: -24rem !important; } - .sm\:-ml-2\.5 { - margin-left: -0.625rem !important; + .sm\:-mb-px { + margin-bottom: -1px !important; } - .sm\:-mt-3\.5 { - margin-top: -0.875rem !important; + .sm\:-mb-0\.5 { + margin-bottom: -0.125rem !important; } - .sm\:-mr-3\.5 { - margin-right: -0.875rem !important; + .sm\:-mb-1\.5 { + margin-bottom: -0.375rem !important; + } + + .sm\:-mb-2\.5 { + margin-bottom: -0.625rem !important; } .sm\:-mb-3\.5 { margin-bottom: -0.875rem !important; } + .sm\:ml-0 { + margin-left: 0px !important; + } + + .sm\:ml-1 { + margin-left: 0.25rem !important; + } + + .sm\:ml-2 { + margin-left: 0.5rem !important; + } + + .sm\:ml-3 { + margin-left: 0.75rem !important; + } + + .sm\:ml-4 { + margin-left: 1rem !important; + } + + .sm\:ml-5 { + margin-left: 1.25rem !important; + } + + .sm\:ml-6 { + margin-left: 1.5rem !important; + } + + .sm\:ml-7 { + margin-left: 1.75rem !important; + } + + .sm\:ml-8 { + margin-left: 2rem !important; + } + + .sm\:ml-9 { + margin-left: 2.25rem !important; + } + + .sm\:ml-10 { + margin-left: 2.5rem !important; + } + + .sm\:ml-11 { + margin-left: 2.75rem !important; + } + + .sm\:ml-12 { + margin-left: 3rem !important; + } + + .sm\:ml-14 { + margin-left: 3.5rem !important; + } + + .sm\:ml-16 { + margin-left: 4rem !important; + } + + .sm\:ml-20 { + margin-left: 5rem !important; + } + + .sm\:ml-24 { + margin-left: 6rem !important; + } + + .sm\:ml-28 { + margin-left: 7rem !important; + } + + .sm\:ml-32 { + margin-left: 8rem !important; + } + + .sm\:ml-36 { + margin-left: 9rem !important; + } + + .sm\:ml-40 { + margin-left: 10rem !important; + } + + .sm\:ml-44 { + margin-left: 11rem !important; + } + + .sm\:ml-48 { + margin-left: 12rem !important; + } + + .sm\:ml-52 { + margin-left: 13rem !important; + } + + .sm\:ml-56 { + margin-left: 14rem !important; + } + + .sm\:ml-60 { + margin-left: 15rem !important; + } + + .sm\:ml-64 { + margin-left: 16rem !important; + } + + .sm\:ml-72 { + margin-left: 18rem !important; + } + + .sm\:ml-80 { + margin-left: 20rem !important; + } + + .sm\:ml-96 { + margin-left: 24rem !important; + } + + .sm\:ml-auto { + margin-left: auto !important; + } + + .sm\:ml-px { + margin-left: 1px !important; + } + + .sm\:ml-0\.5 { + margin-left: 0.125rem !important; + } + + .sm\:ml-1\.5 { + margin-left: 0.375rem !important; + } + + .sm\:ml-2\.5 { + margin-left: 0.625rem !important; + } + + .sm\:ml-3\.5 { + margin-left: 0.875rem !important; + } + + .sm\:-ml-0 { + margin-left: 0px !important; + } + + .sm\:-ml-1 { + margin-left: -0.25rem !important; + } + + .sm\:-ml-2 { + margin-left: -0.5rem !important; + } + + .sm\:-ml-3 { + margin-left: -0.75rem !important; + } + + .sm\:-ml-4 { + margin-left: -1rem !important; + } + + .sm\:-ml-5 { + margin-left: -1.25rem !important; + } + + .sm\:-ml-6 { + margin-left: -1.5rem !important; + } + + .sm\:-ml-7 { + margin-left: -1.75rem !important; + } + + .sm\:-ml-8 { + margin-left: -2rem !important; + } + + .sm\:-ml-9 { + margin-left: -2.25rem !important; + } + + .sm\:-ml-10 { + margin-left: -2.5rem !important; + } + + .sm\:-ml-11 { + margin-left: -2.75rem !important; + } + + .sm\:-ml-12 { + margin-left: -3rem !important; + } + + .sm\:-ml-14 { + margin-left: -3.5rem !important; + } + + .sm\:-ml-16 { + margin-left: -4rem !important; + } + + .sm\:-ml-20 { + margin-left: -5rem !important; + } + + .sm\:-ml-24 { + margin-left: -6rem !important; + } + + .sm\:-ml-28 { + margin-left: -7rem !important; + } + + .sm\:-ml-32 { + margin-left: -8rem !important; + } + + .sm\:-ml-36 { + margin-left: -9rem !important; + } + + .sm\:-ml-40 { + margin-left: -10rem !important; + } + + .sm\:-ml-44 { + margin-left: -11rem !important; + } + + .sm\:-ml-48 { + margin-left: -12rem !important; + } + + .sm\:-ml-52 { + margin-left: -13rem !important; + } + + .sm\:-ml-56 { + margin-left: -14rem !important; + } + + .sm\:-ml-60 { + margin-left: -15rem !important; + } + + .sm\:-ml-64 { + margin-left: -16rem !important; + } + + .sm\:-ml-72 { + margin-left: -18rem !important; + } + + .sm\:-ml-80 { + margin-left: -20rem !important; + } + + .sm\:-ml-96 { + margin-left: -24rem !important; + } + + .sm\:-ml-px { + margin-left: -1px !important; + } + + .sm\:-ml-0\.5 { + margin-left: -0.125rem !important; + } + + .sm\:-ml-1\.5 { + margin-left: -0.375rem !important; + } + + .sm\:-ml-2\.5 { + margin-left: -0.625rem !important; + } + .sm\:-ml-3\.5 { margin-left: -0.875rem !important; } @@ -70286,1848 +70286,1848 @@ video { margin: -0.875rem !important; } - .md\:my-0 { - margin-top: 0px !important; - margin-bottom: 0px !important; - } - .md\:mx-0 { margin-left: 0px !important; margin-right: 0px !important; } - .md\:my-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; - } - .md\:mx-1 { margin-left: 0.25rem !important; margin-right: 0.25rem !important; } - .md\:my-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; - } - .md\:mx-2 { margin-left: 0.5rem !important; margin-right: 0.5rem !important; } - .md\:my-3 { - margin-top: 0.75rem !important; - margin-bottom: 0.75rem !important; - } - .md\:mx-3 { margin-left: 0.75rem !important; margin-right: 0.75rem !important; } - .md\:my-4 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; - } - .md\:mx-4 { margin-left: 1rem !important; margin-right: 1rem !important; } - .md\:my-5 { - margin-top: 1.25rem !important; - margin-bottom: 1.25rem !important; - } - .md\:mx-5 { margin-left: 1.25rem !important; margin-right: 1.25rem !important; } - .md\:my-6 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; - } - .md\:mx-6 { margin-left: 1.5rem !important; margin-right: 1.5rem !important; } - .md\:my-7 { - margin-top: 1.75rem !important; - margin-bottom: 1.75rem !important; - } - .md\:mx-7 { margin-left: 1.75rem !important; margin-right: 1.75rem !important; } - .md\:my-8 { - margin-top: 2rem !important; - margin-bottom: 2rem !important; - } - .md\:mx-8 { margin-left: 2rem !important; margin-right: 2rem !important; } - .md\:my-9 { - margin-top: 2.25rem !important; - margin-bottom: 2.25rem !important; - } - .md\:mx-9 { margin-left: 2.25rem !important; margin-right: 2.25rem !important; } - .md\:my-10 { - margin-top: 2.5rem !important; - margin-bottom: 2.5rem !important; - } - .md\:mx-10 { margin-left: 2.5rem !important; margin-right: 2.5rem !important; } - .md\:my-11 { - margin-top: 2.75rem !important; - margin-bottom: 2.75rem !important; - } - .md\:mx-11 { margin-left: 2.75rem !important; margin-right: 2.75rem !important; } - .md\:my-12 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; - } - .md\:mx-12 { margin-left: 3rem !important; margin-right: 3rem !important; } - .md\:my-14 { - margin-top: 3.5rem !important; - margin-bottom: 3.5rem !important; - } - .md\:mx-14 { margin-left: 3.5rem !important; margin-right: 3.5rem !important; } - .md\:my-16 { - margin-top: 4rem !important; - margin-bottom: 4rem !important; - } - .md\:mx-16 { margin-left: 4rem !important; margin-right: 4rem !important; } - .md\:my-20 { - margin-top: 5rem !important; - margin-bottom: 5rem !important; - } - .md\:mx-20 { margin-left: 5rem !important; margin-right: 5rem !important; } - .md\:my-24 { - margin-top: 6rem !important; - margin-bottom: 6rem !important; - } - .md\:mx-24 { margin-left: 6rem !important; margin-right: 6rem !important; } - .md\:my-28 { - margin-top: 7rem !important; - margin-bottom: 7rem !important; - } - .md\:mx-28 { margin-left: 7rem !important; margin-right: 7rem !important; } - .md\:my-32 { - margin-top: 8rem !important; - margin-bottom: 8rem !important; - } - .md\:mx-32 { margin-left: 8rem !important; margin-right: 8rem !important; } - .md\:my-36 { - margin-top: 9rem !important; - margin-bottom: 9rem !important; - } - .md\:mx-36 { margin-left: 9rem !important; margin-right: 9rem !important; } - .md\:my-40 { - margin-top: 10rem !important; - margin-bottom: 10rem !important; - } - .md\:mx-40 { margin-left: 10rem !important; margin-right: 10rem !important; } - .md\:my-44 { - margin-top: 11rem !important; - margin-bottom: 11rem !important; - } - .md\:mx-44 { margin-left: 11rem !important; margin-right: 11rem !important; } - .md\:my-48 { - margin-top: 12rem !important; - margin-bottom: 12rem !important; - } - .md\:mx-48 { margin-left: 12rem !important; margin-right: 12rem !important; } - .md\:my-52 { - margin-top: 13rem !important; - margin-bottom: 13rem !important; - } - .md\:mx-52 { margin-left: 13rem !important; margin-right: 13rem !important; } - .md\:my-56 { - margin-top: 14rem !important; - margin-bottom: 14rem !important; - } - .md\:mx-56 { margin-left: 14rem !important; margin-right: 14rem !important; } - .md\:my-60 { - margin-top: 15rem !important; - margin-bottom: 15rem !important; - } - .md\:mx-60 { margin-left: 15rem !important; margin-right: 15rem !important; } - .md\:my-64 { - margin-top: 16rem !important; - margin-bottom: 16rem !important; - } - .md\:mx-64 { margin-left: 16rem !important; margin-right: 16rem !important; } - .md\:my-72 { - margin-top: 18rem !important; - margin-bottom: 18rem !important; - } - .md\:mx-72 { margin-left: 18rem !important; margin-right: 18rem !important; } - .md\:my-80 { - margin-top: 20rem !important; - margin-bottom: 20rem !important; - } - .md\:mx-80 { margin-left: 20rem !important; margin-right: 20rem !important; } - .md\:my-96 { - margin-top: 24rem !important; - margin-bottom: 24rem !important; - } - .md\:mx-96 { margin-left: 24rem !important; margin-right: 24rem !important; } - .md\:my-auto { - margin-top: auto !important; - margin-bottom: auto !important; - } - .md\:mx-auto { margin-left: auto !important; margin-right: auto !important; } - .md\:my-px { - margin-top: 1px !important; - margin-bottom: 1px !important; - } - .md\:mx-px { margin-left: 1px !important; margin-right: 1px !important; } - .md\:my-0\.5 { - margin-top: 0.125rem !important; - margin-bottom: 0.125rem !important; - } - .md\:mx-0\.5 { margin-left: 0.125rem !important; margin-right: 0.125rem !important; } - .md\:my-1\.5 { - margin-top: 0.375rem !important; - margin-bottom: 0.375rem !important; - } - .md\:mx-1\.5 { margin-left: 0.375rem !important; margin-right: 0.375rem !important; } - .md\:my-2\.5 { - margin-top: 0.625rem !important; - margin-bottom: 0.625rem !important; - } - .md\:mx-2\.5 { margin-left: 0.625rem !important; margin-right: 0.625rem !important; } - .md\:my-3\.5 { - margin-top: 0.875rem !important; - margin-bottom: 0.875rem !important; - } - .md\:mx-3\.5 { margin-left: 0.875rem !important; margin-right: 0.875rem !important; } - .md\:-my-0 { - margin-top: 0px !important; - margin-bottom: 0px !important; - } - .md\:-mx-0 { margin-left: 0px !important; margin-right: 0px !important; } - .md\:-my-1 { - margin-top: -0.25rem !important; - margin-bottom: -0.25rem !important; - } - .md\:-mx-1 { margin-left: -0.25rem !important; margin-right: -0.25rem !important; } - .md\:-my-2 { - margin-top: -0.5rem !important; - margin-bottom: -0.5rem !important; - } - .md\:-mx-2 { margin-left: -0.5rem !important; margin-right: -0.5rem !important; } - .md\:-my-3 { - margin-top: -0.75rem !important; - margin-bottom: -0.75rem !important; - } - .md\:-mx-3 { margin-left: -0.75rem !important; margin-right: -0.75rem !important; } - .md\:-my-4 { - margin-top: -1rem !important; - margin-bottom: -1rem !important; - } - .md\:-mx-4 { margin-left: -1rem !important; margin-right: -1rem !important; } - .md\:-my-5 { - margin-top: -1.25rem !important; - margin-bottom: -1.25rem !important; - } - .md\:-mx-5 { margin-left: -1.25rem !important; margin-right: -1.25rem !important; } - .md\:-my-6 { - margin-top: -1.5rem !important; - margin-bottom: -1.5rem !important; - } - .md\:-mx-6 { margin-left: -1.5rem !important; margin-right: -1.5rem !important; } - .md\:-my-7 { - margin-top: -1.75rem !important; - margin-bottom: -1.75rem !important; - } - .md\:-mx-7 { margin-left: -1.75rem !important; margin-right: -1.75rem !important; } - .md\:-my-8 { - margin-top: -2rem !important; - margin-bottom: -2rem !important; - } - .md\:-mx-8 { margin-left: -2rem !important; margin-right: -2rem !important; } - .md\:-my-9 { - margin-top: -2.25rem !important; - margin-bottom: -2.25rem !important; - } - .md\:-mx-9 { margin-left: -2.25rem !important; margin-right: -2.25rem !important; } - .md\:-my-10 { - margin-top: -2.5rem !important; - margin-bottom: -2.5rem !important; - } - .md\:-mx-10 { margin-left: -2.5rem !important; margin-right: -2.5rem !important; } - .md\:-my-11 { - margin-top: -2.75rem !important; - margin-bottom: -2.75rem !important; - } - .md\:-mx-11 { margin-left: -2.75rem !important; margin-right: -2.75rem !important; } - .md\:-my-12 { - margin-top: -3rem !important; - margin-bottom: -3rem !important; - } - .md\:-mx-12 { margin-left: -3rem !important; margin-right: -3rem !important; } - .md\:-my-14 { - margin-top: -3.5rem !important; - margin-bottom: -3.5rem !important; - } - .md\:-mx-14 { margin-left: -3.5rem !important; margin-right: -3.5rem !important; } - .md\:-my-16 { - margin-top: -4rem !important; - margin-bottom: -4rem !important; - } - .md\:-mx-16 { margin-left: -4rem !important; margin-right: -4rem !important; } - .md\:-my-20 { - margin-top: -5rem !important; - margin-bottom: -5rem !important; - } - .md\:-mx-20 { margin-left: -5rem !important; margin-right: -5rem !important; } - .md\:-my-24 { - margin-top: -6rem !important; - margin-bottom: -6rem !important; - } - .md\:-mx-24 { margin-left: -6rem !important; margin-right: -6rem !important; } - .md\:-my-28 { - margin-top: -7rem !important; - margin-bottom: -7rem !important; - } - .md\:-mx-28 { margin-left: -7rem !important; margin-right: -7rem !important; } - .md\:-my-32 { - margin-top: -8rem !important; - margin-bottom: -8rem !important; - } - .md\:-mx-32 { margin-left: -8rem !important; margin-right: -8rem !important; } - .md\:-my-36 { - margin-top: -9rem !important; - margin-bottom: -9rem !important; - } - .md\:-mx-36 { margin-left: -9rem !important; margin-right: -9rem !important; } - .md\:-my-40 { - margin-top: -10rem !important; - margin-bottom: -10rem !important; - } - .md\:-mx-40 { margin-left: -10rem !important; margin-right: -10rem !important; } - .md\:-my-44 { - margin-top: -11rem !important; - margin-bottom: -11rem !important; - } - .md\:-mx-44 { margin-left: -11rem !important; margin-right: -11rem !important; } - .md\:-my-48 { - margin-top: -12rem !important; - margin-bottom: -12rem !important; - } - .md\:-mx-48 { margin-left: -12rem !important; margin-right: -12rem !important; } - .md\:-my-52 { - margin-top: -13rem !important; - margin-bottom: -13rem !important; - } - .md\:-mx-52 { margin-left: -13rem !important; margin-right: -13rem !important; } - .md\:-my-56 { - margin-top: -14rem !important; - margin-bottom: -14rem !important; - } - .md\:-mx-56 { margin-left: -14rem !important; margin-right: -14rem !important; } - .md\:-my-60 { - margin-top: -15rem !important; - margin-bottom: -15rem !important; - } - .md\:-mx-60 { margin-left: -15rem !important; margin-right: -15rem !important; } - .md\:-my-64 { - margin-top: -16rem !important; - margin-bottom: -16rem !important; - } - .md\:-mx-64 { margin-left: -16rem !important; margin-right: -16rem !important; } - .md\:-my-72 { - margin-top: -18rem !important; - margin-bottom: -18rem !important; - } - .md\:-mx-72 { margin-left: -18rem !important; margin-right: -18rem !important; } - .md\:-my-80 { - margin-top: -20rem !important; - margin-bottom: -20rem !important; - } - .md\:-mx-80 { margin-left: -20rem !important; margin-right: -20rem !important; } - .md\:-my-96 { - margin-top: -24rem !important; - margin-bottom: -24rem !important; - } - .md\:-mx-96 { margin-left: -24rem !important; margin-right: -24rem !important; } - .md\:-my-px { - margin-top: -1px !important; - margin-bottom: -1px !important; - } - .md\:-mx-px { margin-left: -1px !important; margin-right: -1px !important; } - .md\:-my-0\.5 { - margin-top: -0.125rem !important; - margin-bottom: -0.125rem !important; - } - .md\:-mx-0\.5 { margin-left: -0.125rem !important; margin-right: -0.125rem !important; } - .md\:-my-1\.5 { - margin-top: -0.375rem !important; - margin-bottom: -0.375rem !important; - } - .md\:-mx-1\.5 { margin-left: -0.375rem !important; margin-right: -0.375rem !important; } - .md\:-my-2\.5 { - margin-top: -0.625rem !important; - margin-bottom: -0.625rem !important; - } - .md\:-mx-2\.5 { margin-left: -0.625rem !important; margin-right: -0.625rem !important; } - .md\:-my-3\.5 { - margin-top: -0.875rem !important; - margin-bottom: -0.875rem !important; - } - .md\:-mx-3\.5 { margin-left: -0.875rem !important; margin-right: -0.875rem !important; } - .md\:mt-0 { + .md\:my-0 { margin-top: 0px !important; + margin-bottom: 0px !important; } - .md\:mr-0 { - margin-right: 0px !important; - } - - .md\:mb-0 { - margin-bottom: 0px !important; + .md\:my-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; } - .md\:ml-0 { - margin-left: 0px !important; + .md\:my-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; } - .md\:mt-1 { - margin-top: 0.25rem !important; + .md\:my-3 { + margin-top: 0.75rem !important; + margin-bottom: 0.75rem !important; } - .md\:mr-1 { - margin-right: 0.25rem !important; + .md\:my-4 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; } - .md\:mb-1 { - margin-bottom: 0.25rem !important; + .md\:my-5 { + margin-top: 1.25rem !important; + margin-bottom: 1.25rem !important; } - .md\:ml-1 { - margin-left: 0.25rem !important; + .md\:my-6 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; } - .md\:mt-2 { - margin-top: 0.5rem !important; + .md\:my-7 { + margin-top: 1.75rem !important; + margin-bottom: 1.75rem !important; } - .md\:mr-2 { - margin-right: 0.5rem !important; + .md\:my-8 { + margin-top: 2rem !important; + margin-bottom: 2rem !important; } - .md\:mb-2 { - margin-bottom: 0.5rem !important; + .md\:my-9 { + margin-top: 2.25rem !important; + margin-bottom: 2.25rem !important; } - .md\:ml-2 { - margin-left: 0.5rem !important; + .md\:my-10 { + margin-top: 2.5rem !important; + margin-bottom: 2.5rem !important; } - .md\:mt-3 { - margin-top: 0.75rem !important; + .md\:my-11 { + margin-top: 2.75rem !important; + margin-bottom: 2.75rem !important; } - .md\:mr-3 { - margin-right: 0.75rem !important; + .md\:my-12 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; } - .md\:mb-3 { - margin-bottom: 0.75rem !important; + .md\:my-14 { + margin-top: 3.5rem !important; + margin-bottom: 3.5rem !important; } - .md\:ml-3 { - margin-left: 0.75rem !important; + .md\:my-16 { + margin-top: 4rem !important; + margin-bottom: 4rem !important; } - .md\:mt-4 { - margin-top: 1rem !important; + .md\:my-20 { + margin-top: 5rem !important; + margin-bottom: 5rem !important; } - .md\:mr-4 { - margin-right: 1rem !important; + .md\:my-24 { + margin-top: 6rem !important; + margin-bottom: 6rem !important; } - .md\:mb-4 { - margin-bottom: 1rem !important; + .md\:my-28 { + margin-top: 7rem !important; + margin-bottom: 7rem !important; } - .md\:ml-4 { - margin-left: 1rem !important; + .md\:my-32 { + margin-top: 8rem !important; + margin-bottom: 8rem !important; } - .md\:mt-5 { - margin-top: 1.25rem !important; + .md\:my-36 { + margin-top: 9rem !important; + margin-bottom: 9rem !important; } - .md\:mr-5 { - margin-right: 1.25rem !important; + .md\:my-40 { + margin-top: 10rem !important; + margin-bottom: 10rem !important; } - .md\:mb-5 { - margin-bottom: 1.25rem !important; + .md\:my-44 { + margin-top: 11rem !important; + margin-bottom: 11rem !important; } - .md\:ml-5 { - margin-left: 1.25rem !important; + .md\:my-48 { + margin-top: 12rem !important; + margin-bottom: 12rem !important; } - .md\:mt-6 { - margin-top: 1.5rem !important; + .md\:my-52 { + margin-top: 13rem !important; + margin-bottom: 13rem !important; } - .md\:mr-6 { - margin-right: 1.5rem !important; + .md\:my-56 { + margin-top: 14rem !important; + margin-bottom: 14rem !important; } - .md\:mb-6 { - margin-bottom: 1.5rem !important; + .md\:my-60 { + margin-top: 15rem !important; + margin-bottom: 15rem !important; } - .md\:ml-6 { - margin-left: 1.5rem !important; + .md\:my-64 { + margin-top: 16rem !important; + margin-bottom: 16rem !important; } - .md\:mt-7 { - margin-top: 1.75rem !important; + .md\:my-72 { + margin-top: 18rem !important; + margin-bottom: 18rem !important; } - .md\:mr-7 { - margin-right: 1.75rem !important; + .md\:my-80 { + margin-top: 20rem !important; + margin-bottom: 20rem !important; } - .md\:mb-7 { - margin-bottom: 1.75rem !important; + .md\:my-96 { + margin-top: 24rem !important; + margin-bottom: 24rem !important; } - .md\:ml-7 { - margin-left: 1.75rem !important; + .md\:my-auto { + margin-top: auto !important; + margin-bottom: auto !important; } - .md\:mt-8 { - margin-top: 2rem !important; + .md\:my-px { + margin-top: 1px !important; + margin-bottom: 1px !important; } - .md\:mr-8 { - margin-right: 2rem !important; + .md\:my-0\.5 { + margin-top: 0.125rem !important; + margin-bottom: 0.125rem !important; } - .md\:mb-8 { - margin-bottom: 2rem !important; + .md\:my-1\.5 { + margin-top: 0.375rem !important; + margin-bottom: 0.375rem !important; } - .md\:ml-8 { - margin-left: 2rem !important; + .md\:my-2\.5 { + margin-top: 0.625rem !important; + margin-bottom: 0.625rem !important; } - .md\:mt-9 { - margin-top: 2.25rem !important; + .md\:my-3\.5 { + margin-top: 0.875rem !important; + margin-bottom: 0.875rem !important; } - .md\:mr-9 { - margin-right: 2.25rem !important; + .md\:-my-0 { + margin-top: 0px !important; + margin-bottom: 0px !important; } - .md\:mb-9 { - margin-bottom: 2.25rem !important; + .md\:-my-1 { + margin-top: -0.25rem !important; + margin-bottom: -0.25rem !important; } - .md\:ml-9 { - margin-left: 2.25rem !important; + .md\:-my-2 { + margin-top: -0.5rem !important; + margin-bottom: -0.5rem !important; } - .md\:mt-10 { - margin-top: 2.5rem !important; + .md\:-my-3 { + margin-top: -0.75rem !important; + margin-bottom: -0.75rem !important; } - .md\:mr-10 { - margin-right: 2.5rem !important; + .md\:-my-4 { + margin-top: -1rem !important; + margin-bottom: -1rem !important; } - .md\:mb-10 { - margin-bottom: 2.5rem !important; + .md\:-my-5 { + margin-top: -1.25rem !important; + margin-bottom: -1.25rem !important; } - .md\:ml-10 { - margin-left: 2.5rem !important; + .md\:-my-6 { + margin-top: -1.5rem !important; + margin-bottom: -1.5rem !important; } - .md\:mt-11 { - margin-top: 2.75rem !important; + .md\:-my-7 { + margin-top: -1.75rem !important; + margin-bottom: -1.75rem !important; } - .md\:mr-11 { - margin-right: 2.75rem !important; + .md\:-my-8 { + margin-top: -2rem !important; + margin-bottom: -2rem !important; } - .md\:mb-11 { - margin-bottom: 2.75rem !important; + .md\:-my-9 { + margin-top: -2.25rem !important; + margin-bottom: -2.25rem !important; } - .md\:ml-11 { - margin-left: 2.75rem !important; + .md\:-my-10 { + margin-top: -2.5rem !important; + margin-bottom: -2.5rem !important; } - .md\:mt-12 { - margin-top: 3rem !important; + .md\:-my-11 { + margin-top: -2.75rem !important; + margin-bottom: -2.75rem !important; } - .md\:mr-12 { - margin-right: 3rem !important; + .md\:-my-12 { + margin-top: -3rem !important; + margin-bottom: -3rem !important; } - .md\:mb-12 { - margin-bottom: 3rem !important; + .md\:-my-14 { + margin-top: -3.5rem !important; + margin-bottom: -3.5rem !important; } - .md\:ml-12 { - margin-left: 3rem !important; + .md\:-my-16 { + margin-top: -4rem !important; + margin-bottom: -4rem !important; } - .md\:mt-14 { - margin-top: 3.5rem !important; + .md\:-my-20 { + margin-top: -5rem !important; + margin-bottom: -5rem !important; } - .md\:mr-14 { - margin-right: 3.5rem !important; + .md\:-my-24 { + margin-top: -6rem !important; + margin-bottom: -6rem !important; } - .md\:mb-14 { - margin-bottom: 3.5rem !important; + .md\:-my-28 { + margin-top: -7rem !important; + margin-bottom: -7rem !important; } - .md\:ml-14 { - margin-left: 3.5rem !important; + .md\:-my-32 { + margin-top: -8rem !important; + margin-bottom: -8rem !important; } - .md\:mt-16 { - margin-top: 4rem !important; + .md\:-my-36 { + margin-top: -9rem !important; + margin-bottom: -9rem !important; } - .md\:mr-16 { - margin-right: 4rem !important; + .md\:-my-40 { + margin-top: -10rem !important; + margin-bottom: -10rem !important; } - .md\:mb-16 { - margin-bottom: 4rem !important; + .md\:-my-44 { + margin-top: -11rem !important; + margin-bottom: -11rem !important; } - .md\:ml-16 { - margin-left: 4rem !important; + .md\:-my-48 { + margin-top: -12rem !important; + margin-bottom: -12rem !important; } - .md\:mt-20 { - margin-top: 5rem !important; + .md\:-my-52 { + margin-top: -13rem !important; + margin-bottom: -13rem !important; } - .md\:mr-20 { - margin-right: 5rem !important; + .md\:-my-56 { + margin-top: -14rem !important; + margin-bottom: -14rem !important; } - .md\:mb-20 { - margin-bottom: 5rem !important; + .md\:-my-60 { + margin-top: -15rem !important; + margin-bottom: -15rem !important; } - .md\:ml-20 { - margin-left: 5rem !important; + .md\:-my-64 { + margin-top: -16rem !important; + margin-bottom: -16rem !important; } - .md\:mt-24 { - margin-top: 6rem !important; + .md\:-my-72 { + margin-top: -18rem !important; + margin-bottom: -18rem !important; } - .md\:mr-24 { - margin-right: 6rem !important; + .md\:-my-80 { + margin-top: -20rem !important; + margin-bottom: -20rem !important; } - .md\:mb-24 { - margin-bottom: 6rem !important; + .md\:-my-96 { + margin-top: -24rem !important; + margin-bottom: -24rem !important; } - .md\:ml-24 { - margin-left: 6rem !important; + .md\:-my-px { + margin-top: -1px !important; + margin-bottom: -1px !important; } - .md\:mt-28 { - margin-top: 7rem !important; + .md\:-my-0\.5 { + margin-top: -0.125rem !important; + margin-bottom: -0.125rem !important; } - .md\:mr-28 { - margin-right: 7rem !important; + .md\:-my-1\.5 { + margin-top: -0.375rem !important; + margin-bottom: -0.375rem !important; } - .md\:mb-28 { - margin-bottom: 7rem !important; + .md\:-my-2\.5 { + margin-top: -0.625rem !important; + margin-bottom: -0.625rem !important; } - .md\:ml-28 { - margin-left: 7rem !important; + .md\:-my-3\.5 { + margin-top: -0.875rem !important; + margin-bottom: -0.875rem !important; } - .md\:mt-32 { - margin-top: 8rem !important; + .md\:mt-0 { + margin-top: 0px !important; } - .md\:mr-32 { - margin-right: 8rem !important; + .md\:mt-1 { + margin-top: 0.25rem !important; } - .md\:mb-32 { - margin-bottom: 8rem !important; + .md\:mt-2 { + margin-top: 0.5rem !important; } - .md\:ml-32 { - margin-left: 8rem !important; + .md\:mt-3 { + margin-top: 0.75rem !important; } - .md\:mt-36 { - margin-top: 9rem !important; + .md\:mt-4 { + margin-top: 1rem !important; } - .md\:mr-36 { - margin-right: 9rem !important; + .md\:mt-5 { + margin-top: 1.25rem !important; } - .md\:mb-36 { - margin-bottom: 9rem !important; + .md\:mt-6 { + margin-top: 1.5rem !important; } - .md\:ml-36 { - margin-left: 9rem !important; + .md\:mt-7 { + margin-top: 1.75rem !important; } - .md\:mt-40 { - margin-top: 10rem !important; + .md\:mt-8 { + margin-top: 2rem !important; } - .md\:mr-40 { - margin-right: 10rem !important; + .md\:mt-9 { + margin-top: 2.25rem !important; } - .md\:mb-40 { - margin-bottom: 10rem !important; + .md\:mt-10 { + margin-top: 2.5rem !important; } - .md\:ml-40 { - margin-left: 10rem !important; + .md\:mt-11 { + margin-top: 2.75rem !important; } - .md\:mt-44 { - margin-top: 11rem !important; + .md\:mt-12 { + margin-top: 3rem !important; } - .md\:mr-44 { - margin-right: 11rem !important; + .md\:mt-14 { + margin-top: 3.5rem !important; } - .md\:mb-44 { - margin-bottom: 11rem !important; + .md\:mt-16 { + margin-top: 4rem !important; } - .md\:ml-44 { - margin-left: 11rem !important; + .md\:mt-20 { + margin-top: 5rem !important; } - .md\:mt-48 { - margin-top: 12rem !important; + .md\:mt-24 { + margin-top: 6rem !important; } - .md\:mr-48 { - margin-right: 12rem !important; + .md\:mt-28 { + margin-top: 7rem !important; } - .md\:mb-48 { - margin-bottom: 12rem !important; + .md\:mt-32 { + margin-top: 8rem !important; } - .md\:ml-48 { - margin-left: 12rem !important; + .md\:mt-36 { + margin-top: 9rem !important; } - .md\:mt-52 { - margin-top: 13rem !important; + .md\:mt-40 { + margin-top: 10rem !important; } - .md\:mr-52 { - margin-right: 13rem !important; + .md\:mt-44 { + margin-top: 11rem !important; } - .md\:mb-52 { - margin-bottom: 13rem !important; + .md\:mt-48 { + margin-top: 12rem !important; } - .md\:ml-52 { - margin-left: 13rem !important; + .md\:mt-52 { + margin-top: 13rem !important; } .md\:mt-56 { margin-top: 14rem !important; } - .md\:mr-56 { - margin-right: 14rem !important; + .md\:mt-60 { + margin-top: 15rem !important; } - .md\:mb-56 { - margin-bottom: 14rem !important; + .md\:mt-64 { + margin-top: 16rem !important; } - .md\:ml-56 { - margin-left: 14rem !important; + .md\:mt-72 { + margin-top: 18rem !important; } - .md\:mt-60 { - margin-top: 15rem !important; + .md\:mt-80 { + margin-top: 20rem !important; } - .md\:mr-60 { - margin-right: 15rem !important; + .md\:mt-96 { + margin-top: 24rem !important; } - .md\:mb-60 { - margin-bottom: 15rem !important; + .md\:mt-auto { + margin-top: auto !important; } - .md\:ml-60 { - margin-left: 15rem !important; + .md\:mt-px { + margin-top: 1px !important; } - .md\:mt-64 { - margin-top: 16rem !important; + .md\:mt-0\.5 { + margin-top: 0.125rem !important; } - .md\:mr-64 { - margin-right: 16rem !important; + .md\:mt-1\.5 { + margin-top: 0.375rem !important; } - .md\:mb-64 { - margin-bottom: 16rem !important; + .md\:mt-2\.5 { + margin-top: 0.625rem !important; } - .md\:ml-64 { - margin-left: 16rem !important; + .md\:mt-3\.5 { + margin-top: 0.875rem !important; } - .md\:mt-72 { - margin-top: 18rem !important; + .md\:-mt-0 { + margin-top: 0px !important; } - .md\:mr-72 { - margin-right: 18rem !important; + .md\:-mt-1 { + margin-top: -0.25rem !important; } - .md\:mb-72 { - margin-bottom: 18rem !important; + .md\:-mt-2 { + margin-top: -0.5rem !important; } - .md\:ml-72 { - margin-left: 18rem !important; + .md\:-mt-3 { + margin-top: -0.75rem !important; } - .md\:mt-80 { - margin-top: 20rem !important; + .md\:-mt-4 { + margin-top: -1rem !important; } - .md\:mr-80 { - margin-right: 20rem !important; + .md\:-mt-5 { + margin-top: -1.25rem !important; } - .md\:mb-80 { - margin-bottom: 20rem !important; + .md\:-mt-6 { + margin-top: -1.5rem !important; } - .md\:ml-80 { - margin-left: 20rem !important; + .md\:-mt-7 { + margin-top: -1.75rem !important; } - .md\:mt-96 { - margin-top: 24rem !important; + .md\:-mt-8 { + margin-top: -2rem !important; } - .md\:mr-96 { - margin-right: 24rem !important; + .md\:-mt-9 { + margin-top: -2.25rem !important; } - .md\:mb-96 { - margin-bottom: 24rem !important; + .md\:-mt-10 { + margin-top: -2.5rem !important; } - .md\:ml-96 { - margin-left: 24rem !important; + .md\:-mt-11 { + margin-top: -2.75rem !important; } - .md\:mt-auto { - margin-top: auto !important; + .md\:-mt-12 { + margin-top: -3rem !important; } - .md\:mr-auto { - margin-right: auto !important; + .md\:-mt-14 { + margin-top: -3.5rem !important; } - .md\:mb-auto { - margin-bottom: auto !important; + .md\:-mt-16 { + margin-top: -4rem !important; } - .md\:ml-auto { - margin-left: auto !important; + .md\:-mt-20 { + margin-top: -5rem !important; } - .md\:mt-px { - margin-top: 1px !important; + .md\:-mt-24 { + margin-top: -6rem !important; } - .md\:mr-px { - margin-right: 1px !important; + .md\:-mt-28 { + margin-top: -7rem !important; } - .md\:mb-px { - margin-bottom: 1px !important; + .md\:-mt-32 { + margin-top: -8rem !important; } - .md\:ml-px { - margin-left: 1px !important; + .md\:-mt-36 { + margin-top: -9rem !important; } - .md\:mt-0\.5 { - margin-top: 0.125rem !important; + .md\:-mt-40 { + margin-top: -10rem !important; } - .md\:mr-0\.5 { - margin-right: 0.125rem !important; + .md\:-mt-44 { + margin-top: -11rem !important; } - .md\:mb-0\.5 { - margin-bottom: 0.125rem !important; + .md\:-mt-48 { + margin-top: -12rem !important; } - .md\:ml-0\.5 { - margin-left: 0.125rem !important; + .md\:-mt-52 { + margin-top: -13rem !important; } - .md\:mt-1\.5 { - margin-top: 0.375rem !important; + .md\:-mt-56 { + margin-top: -14rem !important; } - .md\:mr-1\.5 { - margin-right: 0.375rem !important; + .md\:-mt-60 { + margin-top: -15rem !important; } - .md\:mb-1\.5 { - margin-bottom: 0.375rem !important; + .md\:-mt-64 { + margin-top: -16rem !important; } - .md\:ml-1\.5 { - margin-left: 0.375rem !important; + .md\:-mt-72 { + margin-top: -18rem !important; } - .md\:mt-2\.5 { - margin-top: 0.625rem !important; + .md\:-mt-80 { + margin-top: -20rem !important; } - .md\:mr-2\.5 { - margin-right: 0.625rem !important; + .md\:-mt-96 { + margin-top: -24rem !important; } - .md\:mb-2\.5 { - margin-bottom: 0.625rem !important; + .md\:-mt-px { + margin-top: -1px !important; } - .md\:ml-2\.5 { - margin-left: 0.625rem !important; + .md\:-mt-0\.5 { + margin-top: -0.125rem !important; } - .md\:mt-3\.5 { - margin-top: 0.875rem !important; + .md\:-mt-1\.5 { + margin-top: -0.375rem !important; } - .md\:mr-3\.5 { - margin-right: 0.875rem !important; + .md\:-mt-2\.5 { + margin-top: -0.625rem !important; } - .md\:mb-3\.5 { - margin-bottom: 0.875rem !important; + .md\:-mt-3\.5 { + margin-top: -0.875rem !important; } - .md\:ml-3\.5 { - margin-left: 0.875rem !important; + .md\:mr-0 { + margin-right: 0px !important; } - .md\:-mt-0 { - margin-top: 0px !important; + .md\:mr-1 { + margin-right: 0.25rem !important; } - .md\:-mr-0 { - margin-right: 0px !important; + .md\:mr-2 { + margin-right: 0.5rem !important; } - .md\:-mb-0 { - margin-bottom: 0px !important; + .md\:mr-3 { + margin-right: 0.75rem !important; } - .md\:-ml-0 { - margin-left: 0px !important; + .md\:mr-4 { + margin-right: 1rem !important; } - .md\:-mt-1 { - margin-top: -0.25rem !important; + .md\:mr-5 { + margin-right: 1.25rem !important; } - .md\:-mr-1 { - margin-right: -0.25rem !important; + .md\:mr-6 { + margin-right: 1.5rem !important; } - .md\:-mb-1 { - margin-bottom: -0.25rem !important; + .md\:mr-7 { + margin-right: 1.75rem !important; } - .md\:-ml-1 { - margin-left: -0.25rem !important; + .md\:mr-8 { + margin-right: 2rem !important; } - .md\:-mt-2 { - margin-top: -0.5rem !important; + .md\:mr-9 { + margin-right: 2.25rem !important; } - .md\:-mr-2 { - margin-right: -0.5rem !important; + .md\:mr-10 { + margin-right: 2.5rem !important; } - .md\:-mb-2 { - margin-bottom: -0.5rem !important; + .md\:mr-11 { + margin-right: 2.75rem !important; } - .md\:-ml-2 { - margin-left: -0.5rem !important; + .md\:mr-12 { + margin-right: 3rem !important; } - .md\:-mt-3 { - margin-top: -0.75rem !important; + .md\:mr-14 { + margin-right: 3.5rem !important; } - .md\:-mr-3 { - margin-right: -0.75rem !important; + .md\:mr-16 { + margin-right: 4rem !important; } - .md\:-mb-3 { - margin-bottom: -0.75rem !important; + .md\:mr-20 { + margin-right: 5rem !important; } - .md\:-ml-3 { - margin-left: -0.75rem !important; + .md\:mr-24 { + margin-right: 6rem !important; } - .md\:-mt-4 { - margin-top: -1rem !important; + .md\:mr-28 { + margin-right: 7rem !important; } - .md\:-mr-4 { - margin-right: -1rem !important; + .md\:mr-32 { + margin-right: 8rem !important; } - .md\:-mb-4 { - margin-bottom: -1rem !important; + .md\:mr-36 { + margin-right: 9rem !important; } - .md\:-ml-4 { - margin-left: -1rem !important; + .md\:mr-40 { + margin-right: 10rem !important; } - .md\:-mt-5 { - margin-top: -1.25rem !important; + .md\:mr-44 { + margin-right: 11rem !important; } - .md\:-mr-5 { - margin-right: -1.25rem !important; + .md\:mr-48 { + margin-right: 12rem !important; } - .md\:-mb-5 { - margin-bottom: -1.25rem !important; + .md\:mr-52 { + margin-right: 13rem !important; } - .md\:-ml-5 { - margin-left: -1.25rem !important; + .md\:mr-56 { + margin-right: 14rem !important; } - .md\:-mt-6 { - margin-top: -1.5rem !important; + .md\:mr-60 { + margin-right: 15rem !important; } - .md\:-mr-6 { - margin-right: -1.5rem !important; + .md\:mr-64 { + margin-right: 16rem !important; } - .md\:-mb-6 { - margin-bottom: -1.5rem !important; + .md\:mr-72 { + margin-right: 18rem !important; } - .md\:-ml-6 { - margin-left: -1.5rem !important; + .md\:mr-80 { + margin-right: 20rem !important; } - .md\:-mt-7 { - margin-top: -1.75rem !important; + .md\:mr-96 { + margin-right: 24rem !important; } - .md\:-mr-7 { - margin-right: -1.75rem !important; + .md\:mr-auto { + margin-right: auto !important; } - .md\:-mb-7 { - margin-bottom: -1.75rem !important; + .md\:mr-px { + margin-right: 1px !important; } - .md\:-ml-7 { - margin-left: -1.75rem !important; + .md\:mr-0\.5 { + margin-right: 0.125rem !important; } - .md\:-mt-8 { - margin-top: -2rem !important; + .md\:mr-1\.5 { + margin-right: 0.375rem !important; } - .md\:-mr-8 { - margin-right: -2rem !important; + .md\:mr-2\.5 { + margin-right: 0.625rem !important; } - .md\:-mb-8 { - margin-bottom: -2rem !important; + .md\:mr-3\.5 { + margin-right: 0.875rem !important; } - .md\:-ml-8 { - margin-left: -2rem !important; + .md\:-mr-0 { + margin-right: 0px !important; } - .md\:-mt-9 { - margin-top: -2.25rem !important; + .md\:-mr-1 { + margin-right: -0.25rem !important; } - .md\:-mr-9 { - margin-right: -2.25rem !important; + .md\:-mr-2 { + margin-right: -0.5rem !important; } - .md\:-mb-9 { - margin-bottom: -2.25rem !important; + .md\:-mr-3 { + margin-right: -0.75rem !important; } - .md\:-ml-9 { - margin-left: -2.25rem !important; + .md\:-mr-4 { + margin-right: -1rem !important; } - .md\:-mt-10 { - margin-top: -2.5rem !important; + .md\:-mr-5 { + margin-right: -1.25rem !important; } - .md\:-mr-10 { - margin-right: -2.5rem !important; + .md\:-mr-6 { + margin-right: -1.5rem !important; } - .md\:-mb-10 { - margin-bottom: -2.5rem !important; + .md\:-mr-7 { + margin-right: -1.75rem !important; } - .md\:-ml-10 { - margin-left: -2.5rem !important; + .md\:-mr-8 { + margin-right: -2rem !important; } - .md\:-mt-11 { - margin-top: -2.75rem !important; + .md\:-mr-9 { + margin-right: -2.25rem !important; + } + + .md\:-mr-10 { + margin-right: -2.5rem !important; } .md\:-mr-11 { margin-right: -2.75rem !important; } - .md\:-mb-11 { - margin-bottom: -2.75rem !important; + .md\:-mr-12 { + margin-right: -3rem !important; } - .md\:-ml-11 { - margin-left: -2.75rem !important; + .md\:-mr-14 { + margin-right: -3.5rem !important; } - .md\:-mt-12 { - margin-top: -3rem !important; + .md\:-mr-16 { + margin-right: -4rem !important; } - .md\:-mr-12 { - margin-right: -3rem !important; + .md\:-mr-20 { + margin-right: -5rem !important; } - .md\:-mb-12 { - margin-bottom: -3rem !important; + .md\:-mr-24 { + margin-right: -6rem !important; } - .md\:-ml-12 { - margin-left: -3rem !important; + .md\:-mr-28 { + margin-right: -7rem !important; } - .md\:-mt-14 { - margin-top: -3.5rem !important; + .md\:-mr-32 { + margin-right: -8rem !important; } - .md\:-mr-14 { - margin-right: -3.5rem !important; + .md\:-mr-36 { + margin-right: -9rem !important; } - .md\:-mb-14 { - margin-bottom: -3.5rem !important; + .md\:-mr-40 { + margin-right: -10rem !important; } - .md\:-ml-14 { - margin-left: -3.5rem !important; + .md\:-mr-44 { + margin-right: -11rem !important; } - .md\:-mt-16 { - margin-top: -4rem !important; + .md\:-mr-48 { + margin-right: -12rem !important; } - .md\:-mr-16 { - margin-right: -4rem !important; + .md\:-mr-52 { + margin-right: -13rem !important; } - .md\:-mb-16 { - margin-bottom: -4rem !important; + .md\:-mr-56 { + margin-right: -14rem !important; } - .md\:-ml-16 { - margin-left: -4rem !important; + .md\:-mr-60 { + margin-right: -15rem !important; } - .md\:-mt-20 { - margin-top: -5rem !important; + .md\:-mr-64 { + margin-right: -16rem !important; } - .md\:-mr-20 { - margin-right: -5rem !important; + .md\:-mr-72 { + margin-right: -18rem !important; } - .md\:-mb-20 { - margin-bottom: -5rem !important; + .md\:-mr-80 { + margin-right: -20rem !important; } - .md\:-ml-20 { - margin-left: -5rem !important; + .md\:-mr-96 { + margin-right: -24rem !important; } - .md\:-mt-24 { - margin-top: -6rem !important; + .md\:-mr-px { + margin-right: -1px !important; } - .md\:-mr-24 { - margin-right: -6rem !important; + .md\:-mr-0\.5 { + margin-right: -0.125rem !important; } - .md\:-mb-24 { - margin-bottom: -6rem !important; + .md\:-mr-1\.5 { + margin-right: -0.375rem !important; } - .md\:-ml-24 { - margin-left: -6rem !important; + .md\:-mr-2\.5 { + margin-right: -0.625rem !important; } - .md\:-mt-28 { - margin-top: -7rem !important; + .md\:-mr-3\.5 { + margin-right: -0.875rem !important; } - .md\:-mr-28 { - margin-right: -7rem !important; + .md\:mb-0 { + margin-bottom: 0px !important; } - .md\:-mb-28 { - margin-bottom: -7rem !important; + .md\:mb-1 { + margin-bottom: 0.25rem !important; } - .md\:-ml-28 { - margin-left: -7rem !important; + .md\:mb-2 { + margin-bottom: 0.5rem !important; } - .md\:-mt-32 { - margin-top: -8rem !important; + .md\:mb-3 { + margin-bottom: 0.75rem !important; } - .md\:-mr-32 { - margin-right: -8rem !important; + .md\:mb-4 { + margin-bottom: 1rem !important; } - .md\:-mb-32 { - margin-bottom: -8rem !important; + .md\:mb-5 { + margin-bottom: 1.25rem !important; } - .md\:-ml-32 { - margin-left: -8rem !important; + .md\:mb-6 { + margin-bottom: 1.5rem !important; } - .md\:-mt-36 { - margin-top: -9rem !important; + .md\:mb-7 { + margin-bottom: 1.75rem !important; } - .md\:-mr-36 { - margin-right: -9rem !important; + .md\:mb-8 { + margin-bottom: 2rem !important; } - .md\:-mb-36 { - margin-bottom: -9rem !important; + .md\:mb-9 { + margin-bottom: 2.25rem !important; } - .md\:-ml-36 { - margin-left: -9rem !important; + .md\:mb-10 { + margin-bottom: 2.5rem !important; } - .md\:-mt-40 { - margin-top: -10rem !important; + .md\:mb-11 { + margin-bottom: 2.75rem !important; } - .md\:-mr-40 { - margin-right: -10rem !important; + .md\:mb-12 { + margin-bottom: 3rem !important; } - .md\:-mb-40 { - margin-bottom: -10rem !important; + .md\:mb-14 { + margin-bottom: 3.5rem !important; } - .md\:-ml-40 { - margin-left: -10rem !important; + .md\:mb-16 { + margin-bottom: 4rem !important; } - .md\:-mt-44 { - margin-top: -11rem !important; + .md\:mb-20 { + margin-bottom: 5rem !important; } - .md\:-mr-44 { - margin-right: -11rem !important; + .md\:mb-24 { + margin-bottom: 6rem !important; } - .md\:-mb-44 { - margin-bottom: -11rem !important; + .md\:mb-28 { + margin-bottom: 7rem !important; } - .md\:-ml-44 { - margin-left: -11rem !important; + .md\:mb-32 { + margin-bottom: 8rem !important; } - .md\:-mt-48 { - margin-top: -12rem !important; + .md\:mb-36 { + margin-bottom: 9rem !important; } - .md\:-mr-48 { - margin-right: -12rem !important; + .md\:mb-40 { + margin-bottom: 10rem !important; } - .md\:-mb-48 { - margin-bottom: -12rem !important; + .md\:mb-44 { + margin-bottom: 11rem !important; } - .md\:-ml-48 { - margin-left: -12rem !important; + .md\:mb-48 { + margin-bottom: 12rem !important; } - .md\:-mt-52 { - margin-top: -13rem !important; + .md\:mb-52 { + margin-bottom: 13rem !important; } - .md\:-mr-52 { - margin-right: -13rem !important; + .md\:mb-56 { + margin-bottom: 14rem !important; } - .md\:-mb-52 { - margin-bottom: -13rem !important; + .md\:mb-60 { + margin-bottom: 15rem !important; } - .md\:-ml-52 { - margin-left: -13rem !important; + .md\:mb-64 { + margin-bottom: 16rem !important; } - .md\:-mt-56 { - margin-top: -14rem !important; + .md\:mb-72 { + margin-bottom: 18rem !important; } - .md\:-mr-56 { - margin-right: -14rem !important; + .md\:mb-80 { + margin-bottom: 20rem !important; } - .md\:-mb-56 { - margin-bottom: -14rem !important; + .md\:mb-96 { + margin-bottom: 24rem !important; } - .md\:-ml-56 { - margin-left: -14rem !important; + .md\:mb-auto { + margin-bottom: auto !important; } - .md\:-mt-60 { - margin-top: -15rem !important; + .md\:mb-px { + margin-bottom: 1px !important; } - .md\:-mr-60 { - margin-right: -15rem !important; + .md\:mb-0\.5 { + margin-bottom: 0.125rem !important; } - .md\:-mb-60 { - margin-bottom: -15rem !important; + .md\:mb-1\.5 { + margin-bottom: 0.375rem !important; } - .md\:-ml-60 { - margin-left: -15rem !important; + .md\:mb-2\.5 { + margin-bottom: 0.625rem !important; } - .md\:-mt-64 { - margin-top: -16rem !important; + .md\:mb-3\.5 { + margin-bottom: 0.875rem !important; } - .md\:-mr-64 { - margin-right: -16rem !important; + .md\:-mb-0 { + margin-bottom: 0px !important; } - .md\:-mb-64 { - margin-bottom: -16rem !important; + .md\:-mb-1 { + margin-bottom: -0.25rem !important; } - .md\:-ml-64 { - margin-left: -16rem !important; + .md\:-mb-2 { + margin-bottom: -0.5rem !important; } - .md\:-mt-72 { - margin-top: -18rem !important; + .md\:-mb-3 { + margin-bottom: -0.75rem !important; } - .md\:-mr-72 { - margin-right: -18rem !important; + .md\:-mb-4 { + margin-bottom: -1rem !important; } - .md\:-mb-72 { - margin-bottom: -18rem !important; + .md\:-mb-5 { + margin-bottom: -1.25rem !important; } - .md\:-ml-72 { - margin-left: -18rem !important; + .md\:-mb-6 { + margin-bottom: -1.5rem !important; } - .md\:-mt-80 { - margin-top: -20rem !important; + .md\:-mb-7 { + margin-bottom: -1.75rem !important; } - .md\:-mr-80 { - margin-right: -20rem !important; + .md\:-mb-8 { + margin-bottom: -2rem !important; } - .md\:-mb-80 { - margin-bottom: -20rem !important; + .md\:-mb-9 { + margin-bottom: -2.25rem !important; } - .md\:-ml-80 { - margin-left: -20rem !important; + .md\:-mb-10 { + margin-bottom: -2.5rem !important; } - .md\:-mt-96 { - margin-top: -24rem !important; + .md\:-mb-11 { + margin-bottom: -2.75rem !important; } - .md\:-mr-96 { - margin-right: -24rem !important; + .md\:-mb-12 { + margin-bottom: -3rem !important; } - .md\:-mb-96 { - margin-bottom: -24rem !important; + .md\:-mb-14 { + margin-bottom: -3.5rem !important; } - .md\:-ml-96 { - margin-left: -24rem !important; + .md\:-mb-16 { + margin-bottom: -4rem !important; } - .md\:-mt-px { - margin-top: -1px !important; + .md\:-mb-20 { + margin-bottom: -5rem !important; } - .md\:-mr-px { - margin-right: -1px !important; + .md\:-mb-24 { + margin-bottom: -6rem !important; } - .md\:-mb-px { - margin-bottom: -1px !important; + .md\:-mb-28 { + margin-bottom: -7rem !important; } - .md\:-ml-px { - margin-left: -1px !important; + .md\:-mb-32 { + margin-bottom: -8rem !important; } - .md\:-mt-0\.5 { - margin-top: -0.125rem !important; + .md\:-mb-36 { + margin-bottom: -9rem !important; } - .md\:-mr-0\.5 { - margin-right: -0.125rem !important; + .md\:-mb-40 { + margin-bottom: -10rem !important; } - .md\:-mb-0\.5 { - margin-bottom: -0.125rem !important; + .md\:-mb-44 { + margin-bottom: -11rem !important; } - .md\:-ml-0\.5 { - margin-left: -0.125rem !important; + .md\:-mb-48 { + margin-bottom: -12rem !important; } - .md\:-mt-1\.5 { - margin-top: -0.375rem !important; + .md\:-mb-52 { + margin-bottom: -13rem !important; } - .md\:-mr-1\.5 { - margin-right: -0.375rem !important; + .md\:-mb-56 { + margin-bottom: -14rem !important; } - .md\:-mb-1\.5 { - margin-bottom: -0.375rem !important; + .md\:-mb-60 { + margin-bottom: -15rem !important; } - .md\:-ml-1\.5 { - margin-left: -0.375rem !important; + .md\:-mb-64 { + margin-bottom: -16rem !important; } - .md\:-mt-2\.5 { - margin-top: -0.625rem !important; + .md\:-mb-72 { + margin-bottom: -18rem !important; } - .md\:-mr-2\.5 { - margin-right: -0.625rem !important; + .md\:-mb-80 { + margin-bottom: -20rem !important; } - .md\:-mb-2\.5 { - margin-bottom: -0.625rem !important; + .md\:-mb-96 { + margin-bottom: -24rem !important; } - .md\:-ml-2\.5 { - margin-left: -0.625rem !important; + .md\:-mb-px { + margin-bottom: -1px !important; } - .md\:-mt-3\.5 { - margin-top: -0.875rem !important; + .md\:-mb-0\.5 { + margin-bottom: -0.125rem !important; } - .md\:-mr-3\.5 { - margin-right: -0.875rem !important; + .md\:-mb-1\.5 { + margin-bottom: -0.375rem !important; + } + + .md\:-mb-2\.5 { + margin-bottom: -0.625rem !important; } .md\:-mb-3\.5 { margin-bottom: -0.875rem !important; } + .md\:ml-0 { + margin-left: 0px !important; + } + + .md\:ml-1 { + margin-left: 0.25rem !important; + } + + .md\:ml-2 { + margin-left: 0.5rem !important; + } + + .md\:ml-3 { + margin-left: 0.75rem !important; + } + + .md\:ml-4 { + margin-left: 1rem !important; + } + + .md\:ml-5 { + margin-left: 1.25rem !important; + } + + .md\:ml-6 { + margin-left: 1.5rem !important; + } + + .md\:ml-7 { + margin-left: 1.75rem !important; + } + + .md\:ml-8 { + margin-left: 2rem !important; + } + + .md\:ml-9 { + margin-left: 2.25rem !important; + } + + .md\:ml-10 { + margin-left: 2.5rem !important; + } + + .md\:ml-11 { + margin-left: 2.75rem !important; + } + + .md\:ml-12 { + margin-left: 3rem !important; + } + + .md\:ml-14 { + margin-left: 3.5rem !important; + } + + .md\:ml-16 { + margin-left: 4rem !important; + } + + .md\:ml-20 { + margin-left: 5rem !important; + } + + .md\:ml-24 { + margin-left: 6rem !important; + } + + .md\:ml-28 { + margin-left: 7rem !important; + } + + .md\:ml-32 { + margin-left: 8rem !important; + } + + .md\:ml-36 { + margin-left: 9rem !important; + } + + .md\:ml-40 { + margin-left: 10rem !important; + } + + .md\:ml-44 { + margin-left: 11rem !important; + } + + .md\:ml-48 { + margin-left: 12rem !important; + } + + .md\:ml-52 { + margin-left: 13rem !important; + } + + .md\:ml-56 { + margin-left: 14rem !important; + } + + .md\:ml-60 { + margin-left: 15rem !important; + } + + .md\:ml-64 { + margin-left: 16rem !important; + } + + .md\:ml-72 { + margin-left: 18rem !important; + } + + .md\:ml-80 { + margin-left: 20rem !important; + } + + .md\:ml-96 { + margin-left: 24rem !important; + } + + .md\:ml-auto { + margin-left: auto !important; + } + + .md\:ml-px { + margin-left: 1px !important; + } + + .md\:ml-0\.5 { + margin-left: 0.125rem !important; + } + + .md\:ml-1\.5 { + margin-left: 0.375rem !important; + } + + .md\:ml-2\.5 { + margin-left: 0.625rem !important; + } + + .md\:ml-3\.5 { + margin-left: 0.875rem !important; + } + + .md\:-ml-0 { + margin-left: 0px !important; + } + + .md\:-ml-1 { + margin-left: -0.25rem !important; + } + + .md\:-ml-2 { + margin-left: -0.5rem !important; + } + + .md\:-ml-3 { + margin-left: -0.75rem !important; + } + + .md\:-ml-4 { + margin-left: -1rem !important; + } + + .md\:-ml-5 { + margin-left: -1.25rem !important; + } + + .md\:-ml-6 { + margin-left: -1.5rem !important; + } + + .md\:-ml-7 { + margin-left: -1.75rem !important; + } + + .md\:-ml-8 { + margin-left: -2rem !important; + } + + .md\:-ml-9 { + margin-left: -2.25rem !important; + } + + .md\:-ml-10 { + margin-left: -2.5rem !important; + } + + .md\:-ml-11 { + margin-left: -2.75rem !important; + } + + .md\:-ml-12 { + margin-left: -3rem !important; + } + + .md\:-ml-14 { + margin-left: -3.5rem !important; + } + + .md\:-ml-16 { + margin-left: -4rem !important; + } + + .md\:-ml-20 { + margin-left: -5rem !important; + } + + .md\:-ml-24 { + margin-left: -6rem !important; + } + + .md\:-ml-28 { + margin-left: -7rem !important; + } + + .md\:-ml-32 { + margin-left: -8rem !important; + } + + .md\:-ml-36 { + margin-left: -9rem !important; + } + + .md\:-ml-40 { + margin-left: -10rem !important; + } + + .md\:-ml-44 { + margin-left: -11rem !important; + } + + .md\:-ml-48 { + margin-left: -12rem !important; + } + + .md\:-ml-52 { + margin-left: -13rem !important; + } + + .md\:-ml-56 { + margin-left: -14rem !important; + } + + .md\:-ml-60 { + margin-left: -15rem !important; + } + + .md\:-ml-64 { + margin-left: -16rem !important; + } + + .md\:-ml-72 { + margin-left: -18rem !important; + } + + .md\:-ml-80 { + margin-left: -20rem !important; + } + + .md\:-ml-96 { + margin-left: -24rem !important; + } + + .md\:-ml-px { + margin-left: -1px !important; + } + + .md\:-ml-0\.5 { + margin-left: -0.125rem !important; + } + + .md\:-ml-1\.5 { + margin-left: -0.375rem !important; + } + + .md\:-ml-2\.5 { + margin-left: -0.625rem !important; + } + .md\:-ml-3\.5 { margin-left: -0.875rem !important; } @@ -99409,1848 +99409,1848 @@ video { margin: -0.875rem !important; } - .lg\:my-0 { - margin-top: 0px !important; - margin-bottom: 0px !important; - } - .lg\:mx-0 { margin-left: 0px !important; margin-right: 0px !important; } - .lg\:my-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; - } - .lg\:mx-1 { margin-left: 0.25rem !important; margin-right: 0.25rem !important; } - .lg\:my-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; - } - .lg\:mx-2 { margin-left: 0.5rem !important; margin-right: 0.5rem !important; } - .lg\:my-3 { - margin-top: 0.75rem !important; - margin-bottom: 0.75rem !important; - } - .lg\:mx-3 { margin-left: 0.75rem !important; margin-right: 0.75rem !important; } - .lg\:my-4 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; - } - .lg\:mx-4 { margin-left: 1rem !important; margin-right: 1rem !important; } - .lg\:my-5 { - margin-top: 1.25rem !important; - margin-bottom: 1.25rem !important; - } - .lg\:mx-5 { margin-left: 1.25rem !important; margin-right: 1.25rem !important; } - .lg\:my-6 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; - } - .lg\:mx-6 { margin-left: 1.5rem !important; margin-right: 1.5rem !important; } - .lg\:my-7 { - margin-top: 1.75rem !important; - margin-bottom: 1.75rem !important; - } - .lg\:mx-7 { margin-left: 1.75rem !important; margin-right: 1.75rem !important; } - .lg\:my-8 { - margin-top: 2rem !important; - margin-bottom: 2rem !important; - } - .lg\:mx-8 { margin-left: 2rem !important; margin-right: 2rem !important; } - .lg\:my-9 { - margin-top: 2.25rem !important; - margin-bottom: 2.25rem !important; - } - .lg\:mx-9 { margin-left: 2.25rem !important; margin-right: 2.25rem !important; } - .lg\:my-10 { - margin-top: 2.5rem !important; - margin-bottom: 2.5rem !important; - } - .lg\:mx-10 { margin-left: 2.5rem !important; margin-right: 2.5rem !important; } - .lg\:my-11 { - margin-top: 2.75rem !important; - margin-bottom: 2.75rem !important; - } - .lg\:mx-11 { margin-left: 2.75rem !important; margin-right: 2.75rem !important; } - .lg\:my-12 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; - } - .lg\:mx-12 { margin-left: 3rem !important; margin-right: 3rem !important; } - .lg\:my-14 { - margin-top: 3.5rem !important; - margin-bottom: 3.5rem !important; - } - .lg\:mx-14 { margin-left: 3.5rem !important; margin-right: 3.5rem !important; } - .lg\:my-16 { - margin-top: 4rem !important; - margin-bottom: 4rem !important; - } - .lg\:mx-16 { margin-left: 4rem !important; margin-right: 4rem !important; } - .lg\:my-20 { - margin-top: 5rem !important; - margin-bottom: 5rem !important; - } - .lg\:mx-20 { margin-left: 5rem !important; margin-right: 5rem !important; } - .lg\:my-24 { - margin-top: 6rem !important; - margin-bottom: 6rem !important; - } - .lg\:mx-24 { margin-left: 6rem !important; margin-right: 6rem !important; } - .lg\:my-28 { - margin-top: 7rem !important; - margin-bottom: 7rem !important; - } - .lg\:mx-28 { margin-left: 7rem !important; margin-right: 7rem !important; } - .lg\:my-32 { - margin-top: 8rem !important; - margin-bottom: 8rem !important; - } - .lg\:mx-32 { margin-left: 8rem !important; margin-right: 8rem !important; } - .lg\:my-36 { - margin-top: 9rem !important; - margin-bottom: 9rem !important; - } - .lg\:mx-36 { margin-left: 9rem !important; margin-right: 9rem !important; } - .lg\:my-40 { - margin-top: 10rem !important; - margin-bottom: 10rem !important; - } - .lg\:mx-40 { margin-left: 10rem !important; margin-right: 10rem !important; } - .lg\:my-44 { - margin-top: 11rem !important; - margin-bottom: 11rem !important; - } - .lg\:mx-44 { margin-left: 11rem !important; margin-right: 11rem !important; } - .lg\:my-48 { - margin-top: 12rem !important; - margin-bottom: 12rem !important; - } - .lg\:mx-48 { margin-left: 12rem !important; margin-right: 12rem !important; } - .lg\:my-52 { - margin-top: 13rem !important; - margin-bottom: 13rem !important; - } - .lg\:mx-52 { margin-left: 13rem !important; margin-right: 13rem !important; } - .lg\:my-56 { - margin-top: 14rem !important; - margin-bottom: 14rem !important; - } - .lg\:mx-56 { margin-left: 14rem !important; margin-right: 14rem !important; } - .lg\:my-60 { - margin-top: 15rem !important; - margin-bottom: 15rem !important; - } - .lg\:mx-60 { margin-left: 15rem !important; margin-right: 15rem !important; } - .lg\:my-64 { - margin-top: 16rem !important; - margin-bottom: 16rem !important; - } - .lg\:mx-64 { margin-left: 16rem !important; margin-right: 16rem !important; } - .lg\:my-72 { - margin-top: 18rem !important; - margin-bottom: 18rem !important; - } - .lg\:mx-72 { margin-left: 18rem !important; margin-right: 18rem !important; } - .lg\:my-80 { - margin-top: 20rem !important; - margin-bottom: 20rem !important; - } - .lg\:mx-80 { margin-left: 20rem !important; margin-right: 20rem !important; } - .lg\:my-96 { - margin-top: 24rem !important; - margin-bottom: 24rem !important; - } - .lg\:mx-96 { margin-left: 24rem !important; margin-right: 24rem !important; } - .lg\:my-auto { - margin-top: auto !important; - margin-bottom: auto !important; - } - .lg\:mx-auto { margin-left: auto !important; margin-right: auto !important; } - .lg\:my-px { - margin-top: 1px !important; - margin-bottom: 1px !important; - } - .lg\:mx-px { margin-left: 1px !important; margin-right: 1px !important; } - .lg\:my-0\.5 { - margin-top: 0.125rem !important; - margin-bottom: 0.125rem !important; - } - .lg\:mx-0\.5 { margin-left: 0.125rem !important; margin-right: 0.125rem !important; } - .lg\:my-1\.5 { - margin-top: 0.375rem !important; - margin-bottom: 0.375rem !important; - } - .lg\:mx-1\.5 { margin-left: 0.375rem !important; margin-right: 0.375rem !important; } - .lg\:my-2\.5 { - margin-top: 0.625rem !important; - margin-bottom: 0.625rem !important; - } - .lg\:mx-2\.5 { margin-left: 0.625rem !important; margin-right: 0.625rem !important; } - .lg\:my-3\.5 { - margin-top: 0.875rem !important; - margin-bottom: 0.875rem !important; - } - .lg\:mx-3\.5 { margin-left: 0.875rem !important; margin-right: 0.875rem !important; } - .lg\:-my-0 { - margin-top: 0px !important; - margin-bottom: 0px !important; - } - .lg\:-mx-0 { margin-left: 0px !important; margin-right: 0px !important; } - .lg\:-my-1 { - margin-top: -0.25rem !important; - margin-bottom: -0.25rem !important; - } - .lg\:-mx-1 { margin-left: -0.25rem !important; margin-right: -0.25rem !important; } - .lg\:-my-2 { - margin-top: -0.5rem !important; - margin-bottom: -0.5rem !important; - } - .lg\:-mx-2 { margin-left: -0.5rem !important; margin-right: -0.5rem !important; } - .lg\:-my-3 { - margin-top: -0.75rem !important; - margin-bottom: -0.75rem !important; - } - .lg\:-mx-3 { margin-left: -0.75rem !important; margin-right: -0.75rem !important; } - .lg\:-my-4 { - margin-top: -1rem !important; - margin-bottom: -1rem !important; - } - .lg\:-mx-4 { margin-left: -1rem !important; margin-right: -1rem !important; } - .lg\:-my-5 { - margin-top: -1.25rem !important; - margin-bottom: -1.25rem !important; - } - .lg\:-mx-5 { margin-left: -1.25rem !important; margin-right: -1.25rem !important; } - .lg\:-my-6 { - margin-top: -1.5rem !important; - margin-bottom: -1.5rem !important; - } - .lg\:-mx-6 { margin-left: -1.5rem !important; margin-right: -1.5rem !important; } - .lg\:-my-7 { - margin-top: -1.75rem !important; - margin-bottom: -1.75rem !important; - } - .lg\:-mx-7 { margin-left: -1.75rem !important; margin-right: -1.75rem !important; } - .lg\:-my-8 { - margin-top: -2rem !important; - margin-bottom: -2rem !important; - } - .lg\:-mx-8 { margin-left: -2rem !important; margin-right: -2rem !important; } - .lg\:-my-9 { - margin-top: -2.25rem !important; - margin-bottom: -2.25rem !important; - } - .lg\:-mx-9 { margin-left: -2.25rem !important; margin-right: -2.25rem !important; } - .lg\:-my-10 { - margin-top: -2.5rem !important; - margin-bottom: -2.5rem !important; - } - .lg\:-mx-10 { margin-left: -2.5rem !important; margin-right: -2.5rem !important; } - .lg\:-my-11 { - margin-top: -2.75rem !important; - margin-bottom: -2.75rem !important; - } - .lg\:-mx-11 { margin-left: -2.75rem !important; margin-right: -2.75rem !important; } - .lg\:-my-12 { - margin-top: -3rem !important; - margin-bottom: -3rem !important; - } - .lg\:-mx-12 { margin-left: -3rem !important; margin-right: -3rem !important; } - .lg\:-my-14 { - margin-top: -3.5rem !important; - margin-bottom: -3.5rem !important; - } - .lg\:-mx-14 { margin-left: -3.5rem !important; margin-right: -3.5rem !important; } - .lg\:-my-16 { - margin-top: -4rem !important; - margin-bottom: -4rem !important; - } - .lg\:-mx-16 { margin-left: -4rem !important; margin-right: -4rem !important; } - .lg\:-my-20 { - margin-top: -5rem !important; - margin-bottom: -5rem !important; - } - .lg\:-mx-20 { margin-left: -5rem !important; margin-right: -5rem !important; } - .lg\:-my-24 { - margin-top: -6rem !important; - margin-bottom: -6rem !important; - } - .lg\:-mx-24 { margin-left: -6rem !important; margin-right: -6rem !important; } - .lg\:-my-28 { - margin-top: -7rem !important; - margin-bottom: -7rem !important; - } - .lg\:-mx-28 { margin-left: -7rem !important; margin-right: -7rem !important; } - .lg\:-my-32 { - margin-top: -8rem !important; - margin-bottom: -8rem !important; - } - .lg\:-mx-32 { margin-left: -8rem !important; margin-right: -8rem !important; } - .lg\:-my-36 { - margin-top: -9rem !important; - margin-bottom: -9rem !important; - } - .lg\:-mx-36 { margin-left: -9rem !important; margin-right: -9rem !important; } - .lg\:-my-40 { - margin-top: -10rem !important; - margin-bottom: -10rem !important; - } - .lg\:-mx-40 { margin-left: -10rem !important; margin-right: -10rem !important; } - .lg\:-my-44 { - margin-top: -11rem !important; - margin-bottom: -11rem !important; - } - .lg\:-mx-44 { margin-left: -11rem !important; margin-right: -11rem !important; } - .lg\:-my-48 { - margin-top: -12rem !important; - margin-bottom: -12rem !important; - } - .lg\:-mx-48 { margin-left: -12rem !important; margin-right: -12rem !important; } - .lg\:-my-52 { - margin-top: -13rem !important; - margin-bottom: -13rem !important; - } - .lg\:-mx-52 { margin-left: -13rem !important; margin-right: -13rem !important; } - .lg\:-my-56 { - margin-top: -14rem !important; - margin-bottom: -14rem !important; - } - .lg\:-mx-56 { margin-left: -14rem !important; margin-right: -14rem !important; } - .lg\:-my-60 { - margin-top: -15rem !important; - margin-bottom: -15rem !important; - } - .lg\:-mx-60 { margin-left: -15rem !important; margin-right: -15rem !important; } - .lg\:-my-64 { - margin-top: -16rem !important; - margin-bottom: -16rem !important; - } - .lg\:-mx-64 { margin-left: -16rem !important; margin-right: -16rem !important; } - .lg\:-my-72 { - margin-top: -18rem !important; - margin-bottom: -18rem !important; - } - .lg\:-mx-72 { margin-left: -18rem !important; margin-right: -18rem !important; } - .lg\:-my-80 { - margin-top: -20rem !important; - margin-bottom: -20rem !important; - } - .lg\:-mx-80 { margin-left: -20rem !important; margin-right: -20rem !important; } - .lg\:-my-96 { - margin-top: -24rem !important; - margin-bottom: -24rem !important; - } - .lg\:-mx-96 { margin-left: -24rem !important; margin-right: -24rem !important; } - .lg\:-my-px { - margin-top: -1px !important; - margin-bottom: -1px !important; - } - .lg\:-mx-px { margin-left: -1px !important; margin-right: -1px !important; } - .lg\:-my-0\.5 { - margin-top: -0.125rem !important; - margin-bottom: -0.125rem !important; - } - .lg\:-mx-0\.5 { margin-left: -0.125rem !important; margin-right: -0.125rem !important; } - .lg\:-my-1\.5 { - margin-top: -0.375rem !important; - margin-bottom: -0.375rem !important; - } - .lg\:-mx-1\.5 { margin-left: -0.375rem !important; margin-right: -0.375rem !important; } - .lg\:-my-2\.5 { - margin-top: -0.625rem !important; - margin-bottom: -0.625rem !important; - } - .lg\:-mx-2\.5 { margin-left: -0.625rem !important; margin-right: -0.625rem !important; } - .lg\:-my-3\.5 { - margin-top: -0.875rem !important; - margin-bottom: -0.875rem !important; - } - .lg\:-mx-3\.5 { margin-left: -0.875rem !important; margin-right: -0.875rem !important; } - .lg\:mt-0 { + .lg\:my-0 { margin-top: 0px !important; + margin-bottom: 0px !important; } - .lg\:mr-0 { - margin-right: 0px !important; - } - - .lg\:mb-0 { - margin-bottom: 0px !important; + .lg\:my-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; } - .lg\:ml-0 { - margin-left: 0px !important; + .lg\:my-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; } - .lg\:mt-1 { - margin-top: 0.25rem !important; + .lg\:my-3 { + margin-top: 0.75rem !important; + margin-bottom: 0.75rem !important; } - .lg\:mr-1 { - margin-right: 0.25rem !important; + .lg\:my-4 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; } - .lg\:mb-1 { - margin-bottom: 0.25rem !important; + .lg\:my-5 { + margin-top: 1.25rem !important; + margin-bottom: 1.25rem !important; } - .lg\:ml-1 { - margin-left: 0.25rem !important; + .lg\:my-6 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; } - .lg\:mt-2 { - margin-top: 0.5rem !important; + .lg\:my-7 { + margin-top: 1.75rem !important; + margin-bottom: 1.75rem !important; } - .lg\:mr-2 { - margin-right: 0.5rem !important; + .lg\:my-8 { + margin-top: 2rem !important; + margin-bottom: 2rem !important; } - .lg\:mb-2 { - margin-bottom: 0.5rem !important; + .lg\:my-9 { + margin-top: 2.25rem !important; + margin-bottom: 2.25rem !important; } - .lg\:ml-2 { - margin-left: 0.5rem !important; + .lg\:my-10 { + margin-top: 2.5rem !important; + margin-bottom: 2.5rem !important; } - .lg\:mt-3 { - margin-top: 0.75rem !important; + .lg\:my-11 { + margin-top: 2.75rem !important; + margin-bottom: 2.75rem !important; } - .lg\:mr-3 { - margin-right: 0.75rem !important; + .lg\:my-12 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; } - .lg\:mb-3 { - margin-bottom: 0.75rem !important; + .lg\:my-14 { + margin-top: 3.5rem !important; + margin-bottom: 3.5rem !important; } - .lg\:ml-3 { - margin-left: 0.75rem !important; + .lg\:my-16 { + margin-top: 4rem !important; + margin-bottom: 4rem !important; } - .lg\:mt-4 { - margin-top: 1rem !important; + .lg\:my-20 { + margin-top: 5rem !important; + margin-bottom: 5rem !important; } - .lg\:mr-4 { - margin-right: 1rem !important; + .lg\:my-24 { + margin-top: 6rem !important; + margin-bottom: 6rem !important; } - .lg\:mb-4 { - margin-bottom: 1rem !important; + .lg\:my-28 { + margin-top: 7rem !important; + margin-bottom: 7rem !important; } - .lg\:ml-4 { - margin-left: 1rem !important; + .lg\:my-32 { + margin-top: 8rem !important; + margin-bottom: 8rem !important; } - .lg\:mt-5 { - margin-top: 1.25rem !important; + .lg\:my-36 { + margin-top: 9rem !important; + margin-bottom: 9rem !important; } - .lg\:mr-5 { - margin-right: 1.25rem !important; + .lg\:my-40 { + margin-top: 10rem !important; + margin-bottom: 10rem !important; } - .lg\:mb-5 { - margin-bottom: 1.25rem !important; + .lg\:my-44 { + margin-top: 11rem !important; + margin-bottom: 11rem !important; } - .lg\:ml-5 { - margin-left: 1.25rem !important; + .lg\:my-48 { + margin-top: 12rem !important; + margin-bottom: 12rem !important; } - .lg\:mt-6 { - margin-top: 1.5rem !important; + .lg\:my-52 { + margin-top: 13rem !important; + margin-bottom: 13rem !important; } - .lg\:mr-6 { - margin-right: 1.5rem !important; + .lg\:my-56 { + margin-top: 14rem !important; + margin-bottom: 14rem !important; } - .lg\:mb-6 { - margin-bottom: 1.5rem !important; + .lg\:my-60 { + margin-top: 15rem !important; + margin-bottom: 15rem !important; } - .lg\:ml-6 { - margin-left: 1.5rem !important; + .lg\:my-64 { + margin-top: 16rem !important; + margin-bottom: 16rem !important; } - .lg\:mt-7 { - margin-top: 1.75rem !important; + .lg\:my-72 { + margin-top: 18rem !important; + margin-bottom: 18rem !important; } - .lg\:mr-7 { - margin-right: 1.75rem !important; + .lg\:my-80 { + margin-top: 20rem !important; + margin-bottom: 20rem !important; } - .lg\:mb-7 { - margin-bottom: 1.75rem !important; + .lg\:my-96 { + margin-top: 24rem !important; + margin-bottom: 24rem !important; } - .lg\:ml-7 { - margin-left: 1.75rem !important; + .lg\:my-auto { + margin-top: auto !important; + margin-bottom: auto !important; } - .lg\:mt-8 { - margin-top: 2rem !important; + .lg\:my-px { + margin-top: 1px !important; + margin-bottom: 1px !important; } - .lg\:mr-8 { - margin-right: 2rem !important; + .lg\:my-0\.5 { + margin-top: 0.125rem !important; + margin-bottom: 0.125rem !important; } - .lg\:mb-8 { - margin-bottom: 2rem !important; + .lg\:my-1\.5 { + margin-top: 0.375rem !important; + margin-bottom: 0.375rem !important; } - .lg\:ml-8 { - margin-left: 2rem !important; + .lg\:my-2\.5 { + margin-top: 0.625rem !important; + margin-bottom: 0.625rem !important; } - .lg\:mt-9 { - margin-top: 2.25rem !important; + .lg\:my-3\.5 { + margin-top: 0.875rem !important; + margin-bottom: 0.875rem !important; } - .lg\:mr-9 { - margin-right: 2.25rem !important; + .lg\:-my-0 { + margin-top: 0px !important; + margin-bottom: 0px !important; } - .lg\:mb-9 { - margin-bottom: 2.25rem !important; + .lg\:-my-1 { + margin-top: -0.25rem !important; + margin-bottom: -0.25rem !important; } - .lg\:ml-9 { - margin-left: 2.25rem !important; + .lg\:-my-2 { + margin-top: -0.5rem !important; + margin-bottom: -0.5rem !important; } - .lg\:mt-10 { - margin-top: 2.5rem !important; + .lg\:-my-3 { + margin-top: -0.75rem !important; + margin-bottom: -0.75rem !important; } - .lg\:mr-10 { - margin-right: 2.5rem !important; + .lg\:-my-4 { + margin-top: -1rem !important; + margin-bottom: -1rem !important; } - .lg\:mb-10 { - margin-bottom: 2.5rem !important; + .lg\:-my-5 { + margin-top: -1.25rem !important; + margin-bottom: -1.25rem !important; } - .lg\:ml-10 { - margin-left: 2.5rem !important; + .lg\:-my-6 { + margin-top: -1.5rem !important; + margin-bottom: -1.5rem !important; } - .lg\:mt-11 { - margin-top: 2.75rem !important; + .lg\:-my-7 { + margin-top: -1.75rem !important; + margin-bottom: -1.75rem !important; } - .lg\:mr-11 { - margin-right: 2.75rem !important; + .lg\:-my-8 { + margin-top: -2rem !important; + margin-bottom: -2rem !important; } - .lg\:mb-11 { - margin-bottom: 2.75rem !important; + .lg\:-my-9 { + margin-top: -2.25rem !important; + margin-bottom: -2.25rem !important; } - .lg\:ml-11 { - margin-left: 2.75rem !important; + .lg\:-my-10 { + margin-top: -2.5rem !important; + margin-bottom: -2.5rem !important; } - .lg\:mt-12 { - margin-top: 3rem !important; + .lg\:-my-11 { + margin-top: -2.75rem !important; + margin-bottom: -2.75rem !important; } - .lg\:mr-12 { - margin-right: 3rem !important; + .lg\:-my-12 { + margin-top: -3rem !important; + margin-bottom: -3rem !important; } - .lg\:mb-12 { - margin-bottom: 3rem !important; + .lg\:-my-14 { + margin-top: -3.5rem !important; + margin-bottom: -3.5rem !important; } - .lg\:ml-12 { - margin-left: 3rem !important; + .lg\:-my-16 { + margin-top: -4rem !important; + margin-bottom: -4rem !important; } - .lg\:mt-14 { - margin-top: 3.5rem !important; + .lg\:-my-20 { + margin-top: -5rem !important; + margin-bottom: -5rem !important; } - .lg\:mr-14 { - margin-right: 3.5rem !important; + .lg\:-my-24 { + margin-top: -6rem !important; + margin-bottom: -6rem !important; } - .lg\:mb-14 { - margin-bottom: 3.5rem !important; + .lg\:-my-28 { + margin-top: -7rem !important; + margin-bottom: -7rem !important; } - .lg\:ml-14 { - margin-left: 3.5rem !important; + .lg\:-my-32 { + margin-top: -8rem !important; + margin-bottom: -8rem !important; } - .lg\:mt-16 { - margin-top: 4rem !important; + .lg\:-my-36 { + margin-top: -9rem !important; + margin-bottom: -9rem !important; } - .lg\:mr-16 { - margin-right: 4rem !important; + .lg\:-my-40 { + margin-top: -10rem !important; + margin-bottom: -10rem !important; } - .lg\:mb-16 { - margin-bottom: 4rem !important; + .lg\:-my-44 { + margin-top: -11rem !important; + margin-bottom: -11rem !important; } - .lg\:ml-16 { - margin-left: 4rem !important; + .lg\:-my-48 { + margin-top: -12rem !important; + margin-bottom: -12rem !important; } - .lg\:mt-20 { - margin-top: 5rem !important; + .lg\:-my-52 { + margin-top: -13rem !important; + margin-bottom: -13rem !important; } - .lg\:mr-20 { - margin-right: 5rem !important; + .lg\:-my-56 { + margin-top: -14rem !important; + margin-bottom: -14rem !important; } - .lg\:mb-20 { - margin-bottom: 5rem !important; + .lg\:-my-60 { + margin-top: -15rem !important; + margin-bottom: -15rem !important; } - .lg\:ml-20 { - margin-left: 5rem !important; + .lg\:-my-64 { + margin-top: -16rem !important; + margin-bottom: -16rem !important; } - .lg\:mt-24 { - margin-top: 6rem !important; + .lg\:-my-72 { + margin-top: -18rem !important; + margin-bottom: -18rem !important; } - .lg\:mr-24 { - margin-right: 6rem !important; + .lg\:-my-80 { + margin-top: -20rem !important; + margin-bottom: -20rem !important; } - .lg\:mb-24 { - margin-bottom: 6rem !important; + .lg\:-my-96 { + margin-top: -24rem !important; + margin-bottom: -24rem !important; } - .lg\:ml-24 { - margin-left: 6rem !important; + .lg\:-my-px { + margin-top: -1px !important; + margin-bottom: -1px !important; } - .lg\:mt-28 { - margin-top: 7rem !important; + .lg\:-my-0\.5 { + margin-top: -0.125rem !important; + margin-bottom: -0.125rem !important; } - .lg\:mr-28 { - margin-right: 7rem !important; + .lg\:-my-1\.5 { + margin-top: -0.375rem !important; + margin-bottom: -0.375rem !important; } - .lg\:mb-28 { - margin-bottom: 7rem !important; + .lg\:-my-2\.5 { + margin-top: -0.625rem !important; + margin-bottom: -0.625rem !important; } - .lg\:ml-28 { - margin-left: 7rem !important; + .lg\:-my-3\.5 { + margin-top: -0.875rem !important; + margin-bottom: -0.875rem !important; } - .lg\:mt-32 { - margin-top: 8rem !important; + .lg\:mt-0 { + margin-top: 0px !important; } - .lg\:mr-32 { - margin-right: 8rem !important; + .lg\:mt-1 { + margin-top: 0.25rem !important; } - .lg\:mb-32 { - margin-bottom: 8rem !important; + .lg\:mt-2 { + margin-top: 0.5rem !important; } - .lg\:ml-32 { - margin-left: 8rem !important; + .lg\:mt-3 { + margin-top: 0.75rem !important; } - .lg\:mt-36 { - margin-top: 9rem !important; + .lg\:mt-4 { + margin-top: 1rem !important; } - .lg\:mr-36 { - margin-right: 9rem !important; + .lg\:mt-5 { + margin-top: 1.25rem !important; } - .lg\:mb-36 { - margin-bottom: 9rem !important; + .lg\:mt-6 { + margin-top: 1.5rem !important; } - .lg\:ml-36 { - margin-left: 9rem !important; + .lg\:mt-7 { + margin-top: 1.75rem !important; } - .lg\:mt-40 { - margin-top: 10rem !important; + .lg\:mt-8 { + margin-top: 2rem !important; } - .lg\:mr-40 { - margin-right: 10rem !important; + .lg\:mt-9 { + margin-top: 2.25rem !important; } - .lg\:mb-40 { - margin-bottom: 10rem !important; + .lg\:mt-10 { + margin-top: 2.5rem !important; } - .lg\:ml-40 { - margin-left: 10rem !important; + .lg\:mt-11 { + margin-top: 2.75rem !important; } - .lg\:mt-44 { - margin-top: 11rem !important; + .lg\:mt-12 { + margin-top: 3rem !important; } - .lg\:mr-44 { - margin-right: 11rem !important; + .lg\:mt-14 { + margin-top: 3.5rem !important; } - .lg\:mb-44 { - margin-bottom: 11rem !important; + .lg\:mt-16 { + margin-top: 4rem !important; } - .lg\:ml-44 { - margin-left: 11rem !important; + .lg\:mt-20 { + margin-top: 5rem !important; } - .lg\:mt-48 { - margin-top: 12rem !important; + .lg\:mt-24 { + margin-top: 6rem !important; } - .lg\:mr-48 { - margin-right: 12rem !important; + .lg\:mt-28 { + margin-top: 7rem !important; } - .lg\:mb-48 { - margin-bottom: 12rem !important; + .lg\:mt-32 { + margin-top: 8rem !important; } - .lg\:ml-48 { - margin-left: 12rem !important; + .lg\:mt-36 { + margin-top: 9rem !important; } - .lg\:mt-52 { - margin-top: 13rem !important; + .lg\:mt-40 { + margin-top: 10rem !important; } - .lg\:mr-52 { - margin-right: 13rem !important; + .lg\:mt-44 { + margin-top: 11rem !important; } - .lg\:mb-52 { - margin-bottom: 13rem !important; + .lg\:mt-48 { + margin-top: 12rem !important; } - .lg\:ml-52 { - margin-left: 13rem !important; + .lg\:mt-52 { + margin-top: 13rem !important; } .lg\:mt-56 { margin-top: 14rem !important; } - .lg\:mr-56 { - margin-right: 14rem !important; + .lg\:mt-60 { + margin-top: 15rem !important; } - .lg\:mb-56 { - margin-bottom: 14rem !important; + .lg\:mt-64 { + margin-top: 16rem !important; } - .lg\:ml-56 { - margin-left: 14rem !important; + .lg\:mt-72 { + margin-top: 18rem !important; } - .lg\:mt-60 { - margin-top: 15rem !important; + .lg\:mt-80 { + margin-top: 20rem !important; } - .lg\:mr-60 { - margin-right: 15rem !important; + .lg\:mt-96 { + margin-top: 24rem !important; } - .lg\:mb-60 { - margin-bottom: 15rem !important; + .lg\:mt-auto { + margin-top: auto !important; } - .lg\:ml-60 { - margin-left: 15rem !important; + .lg\:mt-px { + margin-top: 1px !important; } - .lg\:mt-64 { - margin-top: 16rem !important; + .lg\:mt-0\.5 { + margin-top: 0.125rem !important; } - .lg\:mr-64 { - margin-right: 16rem !important; + .lg\:mt-1\.5 { + margin-top: 0.375rem !important; } - .lg\:mb-64 { - margin-bottom: 16rem !important; + .lg\:mt-2\.5 { + margin-top: 0.625rem !important; } - .lg\:ml-64 { - margin-left: 16rem !important; + .lg\:mt-3\.5 { + margin-top: 0.875rem !important; } - .lg\:mt-72 { - margin-top: 18rem !important; + .lg\:-mt-0 { + margin-top: 0px !important; } - .lg\:mr-72 { - margin-right: 18rem !important; + .lg\:-mt-1 { + margin-top: -0.25rem !important; } - .lg\:mb-72 { - margin-bottom: 18rem !important; + .lg\:-mt-2 { + margin-top: -0.5rem !important; } - .lg\:ml-72 { - margin-left: 18rem !important; + .lg\:-mt-3 { + margin-top: -0.75rem !important; } - .lg\:mt-80 { - margin-top: 20rem !important; + .lg\:-mt-4 { + margin-top: -1rem !important; } - .lg\:mr-80 { - margin-right: 20rem !important; + .lg\:-mt-5 { + margin-top: -1.25rem !important; } - .lg\:mb-80 { - margin-bottom: 20rem !important; + .lg\:-mt-6 { + margin-top: -1.5rem !important; } - .lg\:ml-80 { - margin-left: 20rem !important; + .lg\:-mt-7 { + margin-top: -1.75rem !important; } - .lg\:mt-96 { - margin-top: 24rem !important; + .lg\:-mt-8 { + margin-top: -2rem !important; } - .lg\:mr-96 { - margin-right: 24rem !important; + .lg\:-mt-9 { + margin-top: -2.25rem !important; } - .lg\:mb-96 { - margin-bottom: 24rem !important; + .lg\:-mt-10 { + margin-top: -2.5rem !important; } - .lg\:ml-96 { - margin-left: 24rem !important; + .lg\:-mt-11 { + margin-top: -2.75rem !important; } - .lg\:mt-auto { - margin-top: auto !important; + .lg\:-mt-12 { + margin-top: -3rem !important; } - .lg\:mr-auto { - margin-right: auto !important; + .lg\:-mt-14 { + margin-top: -3.5rem !important; } - .lg\:mb-auto { - margin-bottom: auto !important; + .lg\:-mt-16 { + margin-top: -4rem !important; } - .lg\:ml-auto { - margin-left: auto !important; + .lg\:-mt-20 { + margin-top: -5rem !important; } - .lg\:mt-px { - margin-top: 1px !important; + .lg\:-mt-24 { + margin-top: -6rem !important; } - .lg\:mr-px { - margin-right: 1px !important; + .lg\:-mt-28 { + margin-top: -7rem !important; } - .lg\:mb-px { - margin-bottom: 1px !important; + .lg\:-mt-32 { + margin-top: -8rem !important; } - .lg\:ml-px { - margin-left: 1px !important; + .lg\:-mt-36 { + margin-top: -9rem !important; } - .lg\:mt-0\.5 { - margin-top: 0.125rem !important; + .lg\:-mt-40 { + margin-top: -10rem !important; } - .lg\:mr-0\.5 { - margin-right: 0.125rem !important; + .lg\:-mt-44 { + margin-top: -11rem !important; } - .lg\:mb-0\.5 { - margin-bottom: 0.125rem !important; + .lg\:-mt-48 { + margin-top: -12rem !important; } - .lg\:ml-0\.5 { - margin-left: 0.125rem !important; + .lg\:-mt-52 { + margin-top: -13rem !important; } - .lg\:mt-1\.5 { - margin-top: 0.375rem !important; + .lg\:-mt-56 { + margin-top: -14rem !important; } - .lg\:mr-1\.5 { - margin-right: 0.375rem !important; + .lg\:-mt-60 { + margin-top: -15rem !important; } - .lg\:mb-1\.5 { - margin-bottom: 0.375rem !important; + .lg\:-mt-64 { + margin-top: -16rem !important; } - .lg\:ml-1\.5 { - margin-left: 0.375rem !important; + .lg\:-mt-72 { + margin-top: -18rem !important; } - .lg\:mt-2\.5 { - margin-top: 0.625rem !important; + .lg\:-mt-80 { + margin-top: -20rem !important; } - .lg\:mr-2\.5 { - margin-right: 0.625rem !important; + .lg\:-mt-96 { + margin-top: -24rem !important; } - .lg\:mb-2\.5 { - margin-bottom: 0.625rem !important; + .lg\:-mt-px { + margin-top: -1px !important; } - .lg\:ml-2\.5 { - margin-left: 0.625rem !important; + .lg\:-mt-0\.5 { + margin-top: -0.125rem !important; } - .lg\:mt-3\.5 { - margin-top: 0.875rem !important; + .lg\:-mt-1\.5 { + margin-top: -0.375rem !important; } - .lg\:mr-3\.5 { - margin-right: 0.875rem !important; + .lg\:-mt-2\.5 { + margin-top: -0.625rem !important; } - .lg\:mb-3\.5 { - margin-bottom: 0.875rem !important; + .lg\:-mt-3\.5 { + margin-top: -0.875rem !important; } - .lg\:ml-3\.5 { - margin-left: 0.875rem !important; + .lg\:mr-0 { + margin-right: 0px !important; } - .lg\:-mt-0 { - margin-top: 0px !important; + .lg\:mr-1 { + margin-right: 0.25rem !important; } - .lg\:-mr-0 { - margin-right: 0px !important; + .lg\:mr-2 { + margin-right: 0.5rem !important; } - .lg\:-mb-0 { - margin-bottom: 0px !important; + .lg\:mr-3 { + margin-right: 0.75rem !important; } - .lg\:-ml-0 { - margin-left: 0px !important; + .lg\:mr-4 { + margin-right: 1rem !important; } - .lg\:-mt-1 { - margin-top: -0.25rem !important; + .lg\:mr-5 { + margin-right: 1.25rem !important; } - .lg\:-mr-1 { - margin-right: -0.25rem !important; + .lg\:mr-6 { + margin-right: 1.5rem !important; } - .lg\:-mb-1 { - margin-bottom: -0.25rem !important; + .lg\:mr-7 { + margin-right: 1.75rem !important; } - .lg\:-ml-1 { - margin-left: -0.25rem !important; + .lg\:mr-8 { + margin-right: 2rem !important; } - .lg\:-mt-2 { - margin-top: -0.5rem !important; + .lg\:mr-9 { + margin-right: 2.25rem !important; } - .lg\:-mr-2 { - margin-right: -0.5rem !important; + .lg\:mr-10 { + margin-right: 2.5rem !important; } - .lg\:-mb-2 { - margin-bottom: -0.5rem !important; + .lg\:mr-11 { + margin-right: 2.75rem !important; } - .lg\:-ml-2 { - margin-left: -0.5rem !important; + .lg\:mr-12 { + margin-right: 3rem !important; } - .lg\:-mt-3 { - margin-top: -0.75rem !important; + .lg\:mr-14 { + margin-right: 3.5rem !important; } - .lg\:-mr-3 { - margin-right: -0.75rem !important; + .lg\:mr-16 { + margin-right: 4rem !important; } - .lg\:-mb-3 { - margin-bottom: -0.75rem !important; + .lg\:mr-20 { + margin-right: 5rem !important; } - .lg\:-ml-3 { - margin-left: -0.75rem !important; + .lg\:mr-24 { + margin-right: 6rem !important; } - .lg\:-mt-4 { - margin-top: -1rem !important; + .lg\:mr-28 { + margin-right: 7rem !important; } - .lg\:-mr-4 { - margin-right: -1rem !important; + .lg\:mr-32 { + margin-right: 8rem !important; } - .lg\:-mb-4 { - margin-bottom: -1rem !important; + .lg\:mr-36 { + margin-right: 9rem !important; } - .lg\:-ml-4 { - margin-left: -1rem !important; + .lg\:mr-40 { + margin-right: 10rem !important; } - .lg\:-mt-5 { - margin-top: -1.25rem !important; + .lg\:mr-44 { + margin-right: 11rem !important; } - .lg\:-mr-5 { - margin-right: -1.25rem !important; + .lg\:mr-48 { + margin-right: 12rem !important; } - .lg\:-mb-5 { - margin-bottom: -1.25rem !important; + .lg\:mr-52 { + margin-right: 13rem !important; } - .lg\:-ml-5 { - margin-left: -1.25rem !important; + .lg\:mr-56 { + margin-right: 14rem !important; } - .lg\:-mt-6 { - margin-top: -1.5rem !important; + .lg\:mr-60 { + margin-right: 15rem !important; } - .lg\:-mr-6 { - margin-right: -1.5rem !important; + .lg\:mr-64 { + margin-right: 16rem !important; } - .lg\:-mb-6 { - margin-bottom: -1.5rem !important; + .lg\:mr-72 { + margin-right: 18rem !important; } - .lg\:-ml-6 { - margin-left: -1.5rem !important; + .lg\:mr-80 { + margin-right: 20rem !important; } - .lg\:-mt-7 { - margin-top: -1.75rem !important; + .lg\:mr-96 { + margin-right: 24rem !important; } - .lg\:-mr-7 { - margin-right: -1.75rem !important; + .lg\:mr-auto { + margin-right: auto !important; } - .lg\:-mb-7 { - margin-bottom: -1.75rem !important; + .lg\:mr-px { + margin-right: 1px !important; } - .lg\:-ml-7 { - margin-left: -1.75rem !important; + .lg\:mr-0\.5 { + margin-right: 0.125rem !important; } - .lg\:-mt-8 { - margin-top: -2rem !important; + .lg\:mr-1\.5 { + margin-right: 0.375rem !important; } - .lg\:-mr-8 { - margin-right: -2rem !important; + .lg\:mr-2\.5 { + margin-right: 0.625rem !important; } - .lg\:-mb-8 { - margin-bottom: -2rem !important; + .lg\:mr-3\.5 { + margin-right: 0.875rem !important; } - .lg\:-ml-8 { - margin-left: -2rem !important; + .lg\:-mr-0 { + margin-right: 0px !important; } - .lg\:-mt-9 { - margin-top: -2.25rem !important; + .lg\:-mr-1 { + margin-right: -0.25rem !important; } - .lg\:-mr-9 { - margin-right: -2.25rem !important; + .lg\:-mr-2 { + margin-right: -0.5rem !important; } - .lg\:-mb-9 { - margin-bottom: -2.25rem !important; + .lg\:-mr-3 { + margin-right: -0.75rem !important; } - .lg\:-ml-9 { - margin-left: -2.25rem !important; + .lg\:-mr-4 { + margin-right: -1rem !important; } - .lg\:-mt-10 { - margin-top: -2.5rem !important; + .lg\:-mr-5 { + margin-right: -1.25rem !important; } - .lg\:-mr-10 { - margin-right: -2.5rem !important; + .lg\:-mr-6 { + margin-right: -1.5rem !important; } - .lg\:-mb-10 { - margin-bottom: -2.5rem !important; + .lg\:-mr-7 { + margin-right: -1.75rem !important; } - .lg\:-ml-10 { - margin-left: -2.5rem !important; + .lg\:-mr-8 { + margin-right: -2rem !important; } - .lg\:-mt-11 { - margin-top: -2.75rem !important; + .lg\:-mr-9 { + margin-right: -2.25rem !important; + } + + .lg\:-mr-10 { + margin-right: -2.5rem !important; } .lg\:-mr-11 { margin-right: -2.75rem !important; } - .lg\:-mb-11 { - margin-bottom: -2.75rem !important; + .lg\:-mr-12 { + margin-right: -3rem !important; } - .lg\:-ml-11 { - margin-left: -2.75rem !important; + .lg\:-mr-14 { + margin-right: -3.5rem !important; } - .lg\:-mt-12 { - margin-top: -3rem !important; + .lg\:-mr-16 { + margin-right: -4rem !important; } - .lg\:-mr-12 { - margin-right: -3rem !important; + .lg\:-mr-20 { + margin-right: -5rem !important; } - .lg\:-mb-12 { - margin-bottom: -3rem !important; + .lg\:-mr-24 { + margin-right: -6rem !important; } - .lg\:-ml-12 { - margin-left: -3rem !important; + .lg\:-mr-28 { + margin-right: -7rem !important; } - .lg\:-mt-14 { - margin-top: -3.5rem !important; + .lg\:-mr-32 { + margin-right: -8rem !important; } - .lg\:-mr-14 { - margin-right: -3.5rem !important; + .lg\:-mr-36 { + margin-right: -9rem !important; } - .lg\:-mb-14 { - margin-bottom: -3.5rem !important; + .lg\:-mr-40 { + margin-right: -10rem !important; } - .lg\:-ml-14 { - margin-left: -3.5rem !important; + .lg\:-mr-44 { + margin-right: -11rem !important; } - .lg\:-mt-16 { - margin-top: -4rem !important; + .lg\:-mr-48 { + margin-right: -12rem !important; } - .lg\:-mr-16 { - margin-right: -4rem !important; + .lg\:-mr-52 { + margin-right: -13rem !important; } - .lg\:-mb-16 { - margin-bottom: -4rem !important; + .lg\:-mr-56 { + margin-right: -14rem !important; } - .lg\:-ml-16 { - margin-left: -4rem !important; + .lg\:-mr-60 { + margin-right: -15rem !important; } - .lg\:-mt-20 { - margin-top: -5rem !important; + .lg\:-mr-64 { + margin-right: -16rem !important; } - .lg\:-mr-20 { - margin-right: -5rem !important; + .lg\:-mr-72 { + margin-right: -18rem !important; } - .lg\:-mb-20 { - margin-bottom: -5rem !important; + .lg\:-mr-80 { + margin-right: -20rem !important; } - .lg\:-ml-20 { - margin-left: -5rem !important; + .lg\:-mr-96 { + margin-right: -24rem !important; } - .lg\:-mt-24 { - margin-top: -6rem !important; + .lg\:-mr-px { + margin-right: -1px !important; } - .lg\:-mr-24 { - margin-right: -6rem !important; + .lg\:-mr-0\.5 { + margin-right: -0.125rem !important; } - .lg\:-mb-24 { - margin-bottom: -6rem !important; + .lg\:-mr-1\.5 { + margin-right: -0.375rem !important; } - .lg\:-ml-24 { - margin-left: -6rem !important; + .lg\:-mr-2\.5 { + margin-right: -0.625rem !important; } - .lg\:-mt-28 { - margin-top: -7rem !important; + .lg\:-mr-3\.5 { + margin-right: -0.875rem !important; } - .lg\:-mr-28 { - margin-right: -7rem !important; + .lg\:mb-0 { + margin-bottom: 0px !important; } - .lg\:-mb-28 { - margin-bottom: -7rem !important; + .lg\:mb-1 { + margin-bottom: 0.25rem !important; } - .lg\:-ml-28 { - margin-left: -7rem !important; + .lg\:mb-2 { + margin-bottom: 0.5rem !important; } - .lg\:-mt-32 { - margin-top: -8rem !important; + .lg\:mb-3 { + margin-bottom: 0.75rem !important; } - .lg\:-mr-32 { - margin-right: -8rem !important; + .lg\:mb-4 { + margin-bottom: 1rem !important; } - .lg\:-mb-32 { - margin-bottom: -8rem !important; + .lg\:mb-5 { + margin-bottom: 1.25rem !important; } - .lg\:-ml-32 { - margin-left: -8rem !important; + .lg\:mb-6 { + margin-bottom: 1.5rem !important; } - .lg\:-mt-36 { - margin-top: -9rem !important; + .lg\:mb-7 { + margin-bottom: 1.75rem !important; } - .lg\:-mr-36 { - margin-right: -9rem !important; + .lg\:mb-8 { + margin-bottom: 2rem !important; } - .lg\:-mb-36 { - margin-bottom: -9rem !important; + .lg\:mb-9 { + margin-bottom: 2.25rem !important; } - .lg\:-ml-36 { - margin-left: -9rem !important; + .lg\:mb-10 { + margin-bottom: 2.5rem !important; } - .lg\:-mt-40 { - margin-top: -10rem !important; + .lg\:mb-11 { + margin-bottom: 2.75rem !important; } - .lg\:-mr-40 { - margin-right: -10rem !important; + .lg\:mb-12 { + margin-bottom: 3rem !important; } - .lg\:-mb-40 { - margin-bottom: -10rem !important; + .lg\:mb-14 { + margin-bottom: 3.5rem !important; } - .lg\:-ml-40 { - margin-left: -10rem !important; + .lg\:mb-16 { + margin-bottom: 4rem !important; } - .lg\:-mt-44 { - margin-top: -11rem !important; + .lg\:mb-20 { + margin-bottom: 5rem !important; } - .lg\:-mr-44 { - margin-right: -11rem !important; + .lg\:mb-24 { + margin-bottom: 6rem !important; } - .lg\:-mb-44 { - margin-bottom: -11rem !important; + .lg\:mb-28 { + margin-bottom: 7rem !important; } - .lg\:-ml-44 { - margin-left: -11rem !important; + .lg\:mb-32 { + margin-bottom: 8rem !important; } - .lg\:-mt-48 { - margin-top: -12rem !important; + .lg\:mb-36 { + margin-bottom: 9rem !important; } - .lg\:-mr-48 { - margin-right: -12rem !important; + .lg\:mb-40 { + margin-bottom: 10rem !important; } - .lg\:-mb-48 { - margin-bottom: -12rem !important; + .lg\:mb-44 { + margin-bottom: 11rem !important; } - .lg\:-ml-48 { - margin-left: -12rem !important; + .lg\:mb-48 { + margin-bottom: 12rem !important; } - .lg\:-mt-52 { - margin-top: -13rem !important; + .lg\:mb-52 { + margin-bottom: 13rem !important; } - .lg\:-mr-52 { - margin-right: -13rem !important; + .lg\:mb-56 { + margin-bottom: 14rem !important; } - .lg\:-mb-52 { - margin-bottom: -13rem !important; + .lg\:mb-60 { + margin-bottom: 15rem !important; } - .lg\:-ml-52 { - margin-left: -13rem !important; + .lg\:mb-64 { + margin-bottom: 16rem !important; } - .lg\:-mt-56 { - margin-top: -14rem !important; + .lg\:mb-72 { + margin-bottom: 18rem !important; } - .lg\:-mr-56 { - margin-right: -14rem !important; + .lg\:mb-80 { + margin-bottom: 20rem !important; } - .lg\:-mb-56 { - margin-bottom: -14rem !important; + .lg\:mb-96 { + margin-bottom: 24rem !important; } - .lg\:-ml-56 { - margin-left: -14rem !important; + .lg\:mb-auto { + margin-bottom: auto !important; } - .lg\:-mt-60 { - margin-top: -15rem !important; + .lg\:mb-px { + margin-bottom: 1px !important; } - .lg\:-mr-60 { - margin-right: -15rem !important; + .lg\:mb-0\.5 { + margin-bottom: 0.125rem !important; } - .lg\:-mb-60 { - margin-bottom: -15rem !important; + .lg\:mb-1\.5 { + margin-bottom: 0.375rem !important; } - .lg\:-ml-60 { - margin-left: -15rem !important; + .lg\:mb-2\.5 { + margin-bottom: 0.625rem !important; } - .lg\:-mt-64 { - margin-top: -16rem !important; + .lg\:mb-3\.5 { + margin-bottom: 0.875rem !important; } - .lg\:-mr-64 { - margin-right: -16rem !important; + .lg\:-mb-0 { + margin-bottom: 0px !important; } - .lg\:-mb-64 { - margin-bottom: -16rem !important; + .lg\:-mb-1 { + margin-bottom: -0.25rem !important; } - .lg\:-ml-64 { - margin-left: -16rem !important; + .lg\:-mb-2 { + margin-bottom: -0.5rem !important; } - .lg\:-mt-72 { - margin-top: -18rem !important; + .lg\:-mb-3 { + margin-bottom: -0.75rem !important; } - .lg\:-mr-72 { - margin-right: -18rem !important; + .lg\:-mb-4 { + margin-bottom: -1rem !important; } - .lg\:-mb-72 { - margin-bottom: -18rem !important; + .lg\:-mb-5 { + margin-bottom: -1.25rem !important; } - .lg\:-ml-72 { - margin-left: -18rem !important; + .lg\:-mb-6 { + margin-bottom: -1.5rem !important; } - .lg\:-mt-80 { - margin-top: -20rem !important; + .lg\:-mb-7 { + margin-bottom: -1.75rem !important; } - .lg\:-mr-80 { - margin-right: -20rem !important; + .lg\:-mb-8 { + margin-bottom: -2rem !important; } - .lg\:-mb-80 { - margin-bottom: -20rem !important; + .lg\:-mb-9 { + margin-bottom: -2.25rem !important; } - .lg\:-ml-80 { - margin-left: -20rem !important; + .lg\:-mb-10 { + margin-bottom: -2.5rem !important; } - .lg\:-mt-96 { - margin-top: -24rem !important; + .lg\:-mb-11 { + margin-bottom: -2.75rem !important; } - .lg\:-mr-96 { - margin-right: -24rem !important; + .lg\:-mb-12 { + margin-bottom: -3rem !important; } - .lg\:-mb-96 { - margin-bottom: -24rem !important; + .lg\:-mb-14 { + margin-bottom: -3.5rem !important; } - .lg\:-ml-96 { - margin-left: -24rem !important; + .lg\:-mb-16 { + margin-bottom: -4rem !important; } - .lg\:-mt-px { - margin-top: -1px !important; + .lg\:-mb-20 { + margin-bottom: -5rem !important; } - .lg\:-mr-px { - margin-right: -1px !important; + .lg\:-mb-24 { + margin-bottom: -6rem !important; } - .lg\:-mb-px { - margin-bottom: -1px !important; + .lg\:-mb-28 { + margin-bottom: -7rem !important; } - .lg\:-ml-px { - margin-left: -1px !important; + .lg\:-mb-32 { + margin-bottom: -8rem !important; } - .lg\:-mt-0\.5 { - margin-top: -0.125rem !important; + .lg\:-mb-36 { + margin-bottom: -9rem !important; } - .lg\:-mr-0\.5 { - margin-right: -0.125rem !important; + .lg\:-mb-40 { + margin-bottom: -10rem !important; } - .lg\:-mb-0\.5 { - margin-bottom: -0.125rem !important; + .lg\:-mb-44 { + margin-bottom: -11rem !important; } - .lg\:-ml-0\.5 { - margin-left: -0.125rem !important; + .lg\:-mb-48 { + margin-bottom: -12rem !important; } - .lg\:-mt-1\.5 { - margin-top: -0.375rem !important; + .lg\:-mb-52 { + margin-bottom: -13rem !important; } - .lg\:-mr-1\.5 { - margin-right: -0.375rem !important; + .lg\:-mb-56 { + margin-bottom: -14rem !important; } - .lg\:-mb-1\.5 { - margin-bottom: -0.375rem !important; + .lg\:-mb-60 { + margin-bottom: -15rem !important; } - .lg\:-ml-1\.5 { - margin-left: -0.375rem !important; + .lg\:-mb-64 { + margin-bottom: -16rem !important; } - .lg\:-mt-2\.5 { - margin-top: -0.625rem !important; + .lg\:-mb-72 { + margin-bottom: -18rem !important; } - .lg\:-mr-2\.5 { - margin-right: -0.625rem !important; + .lg\:-mb-80 { + margin-bottom: -20rem !important; } - .lg\:-mb-2\.5 { - margin-bottom: -0.625rem !important; + .lg\:-mb-96 { + margin-bottom: -24rem !important; } - .lg\:-ml-2\.5 { - margin-left: -0.625rem !important; + .lg\:-mb-px { + margin-bottom: -1px !important; } - .lg\:-mt-3\.5 { - margin-top: -0.875rem !important; + .lg\:-mb-0\.5 { + margin-bottom: -0.125rem !important; } - .lg\:-mr-3\.5 { - margin-right: -0.875rem !important; + .lg\:-mb-1\.5 { + margin-bottom: -0.375rem !important; + } + + .lg\:-mb-2\.5 { + margin-bottom: -0.625rem !important; } .lg\:-mb-3\.5 { margin-bottom: -0.875rem !important; } + .lg\:ml-0 { + margin-left: 0px !important; + } + + .lg\:ml-1 { + margin-left: 0.25rem !important; + } + + .lg\:ml-2 { + margin-left: 0.5rem !important; + } + + .lg\:ml-3 { + margin-left: 0.75rem !important; + } + + .lg\:ml-4 { + margin-left: 1rem !important; + } + + .lg\:ml-5 { + margin-left: 1.25rem !important; + } + + .lg\:ml-6 { + margin-left: 1.5rem !important; + } + + .lg\:ml-7 { + margin-left: 1.75rem !important; + } + + .lg\:ml-8 { + margin-left: 2rem !important; + } + + .lg\:ml-9 { + margin-left: 2.25rem !important; + } + + .lg\:ml-10 { + margin-left: 2.5rem !important; + } + + .lg\:ml-11 { + margin-left: 2.75rem !important; + } + + .lg\:ml-12 { + margin-left: 3rem !important; + } + + .lg\:ml-14 { + margin-left: 3.5rem !important; + } + + .lg\:ml-16 { + margin-left: 4rem !important; + } + + .lg\:ml-20 { + margin-left: 5rem !important; + } + + .lg\:ml-24 { + margin-left: 6rem !important; + } + + .lg\:ml-28 { + margin-left: 7rem !important; + } + + .lg\:ml-32 { + margin-left: 8rem !important; + } + + .lg\:ml-36 { + margin-left: 9rem !important; + } + + .lg\:ml-40 { + margin-left: 10rem !important; + } + + .lg\:ml-44 { + margin-left: 11rem !important; + } + + .lg\:ml-48 { + margin-left: 12rem !important; + } + + .lg\:ml-52 { + margin-left: 13rem !important; + } + + .lg\:ml-56 { + margin-left: 14rem !important; + } + + .lg\:ml-60 { + margin-left: 15rem !important; + } + + .lg\:ml-64 { + margin-left: 16rem !important; + } + + .lg\:ml-72 { + margin-left: 18rem !important; + } + + .lg\:ml-80 { + margin-left: 20rem !important; + } + + .lg\:ml-96 { + margin-left: 24rem !important; + } + + .lg\:ml-auto { + margin-left: auto !important; + } + + .lg\:ml-px { + margin-left: 1px !important; + } + + .lg\:ml-0\.5 { + margin-left: 0.125rem !important; + } + + .lg\:ml-1\.5 { + margin-left: 0.375rem !important; + } + + .lg\:ml-2\.5 { + margin-left: 0.625rem !important; + } + + .lg\:ml-3\.5 { + margin-left: 0.875rem !important; + } + + .lg\:-ml-0 { + margin-left: 0px !important; + } + + .lg\:-ml-1 { + margin-left: -0.25rem !important; + } + + .lg\:-ml-2 { + margin-left: -0.5rem !important; + } + + .lg\:-ml-3 { + margin-left: -0.75rem !important; + } + + .lg\:-ml-4 { + margin-left: -1rem !important; + } + + .lg\:-ml-5 { + margin-left: -1.25rem !important; + } + + .lg\:-ml-6 { + margin-left: -1.5rem !important; + } + + .lg\:-ml-7 { + margin-left: -1.75rem !important; + } + + .lg\:-ml-8 { + margin-left: -2rem !important; + } + + .lg\:-ml-9 { + margin-left: -2.25rem !important; + } + + .lg\:-ml-10 { + margin-left: -2.5rem !important; + } + + .lg\:-ml-11 { + margin-left: -2.75rem !important; + } + + .lg\:-ml-12 { + margin-left: -3rem !important; + } + + .lg\:-ml-14 { + margin-left: -3.5rem !important; + } + + .lg\:-ml-16 { + margin-left: -4rem !important; + } + + .lg\:-ml-20 { + margin-left: -5rem !important; + } + + .lg\:-ml-24 { + margin-left: -6rem !important; + } + + .lg\:-ml-28 { + margin-left: -7rem !important; + } + + .lg\:-ml-32 { + margin-left: -8rem !important; + } + + .lg\:-ml-36 { + margin-left: -9rem !important; + } + + .lg\:-ml-40 { + margin-left: -10rem !important; + } + + .lg\:-ml-44 { + margin-left: -11rem !important; + } + + .lg\:-ml-48 { + margin-left: -12rem !important; + } + + .lg\:-ml-52 { + margin-left: -13rem !important; + } + + .lg\:-ml-56 { + margin-left: -14rem !important; + } + + .lg\:-ml-60 { + margin-left: -15rem !important; + } + + .lg\:-ml-64 { + margin-left: -16rem !important; + } + + .lg\:-ml-72 { + margin-left: -18rem !important; + } + + .lg\:-ml-80 { + margin-left: -20rem !important; + } + + .lg\:-ml-96 { + margin-left: -24rem !important; + } + + .lg\:-ml-px { + margin-left: -1px !important; + } + + .lg\:-ml-0\.5 { + margin-left: -0.125rem !important; + } + + .lg\:-ml-1\.5 { + margin-left: -0.375rem !important; + } + + .lg\:-ml-2\.5 { + margin-left: -0.625rem !important; + } + .lg\:-ml-3\.5 { margin-left: -0.875rem !important; } @@ -128532,1848 +128532,1848 @@ video { margin: -0.875rem !important; } - .xl\:my-0 { - margin-top: 0px !important; - margin-bottom: 0px !important; - } - .xl\:mx-0 { margin-left: 0px !important; margin-right: 0px !important; } - .xl\:my-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; - } - .xl\:mx-1 { margin-left: 0.25rem !important; margin-right: 0.25rem !important; } - .xl\:my-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; - } - .xl\:mx-2 { margin-left: 0.5rem !important; margin-right: 0.5rem !important; } - .xl\:my-3 { - margin-top: 0.75rem !important; - margin-bottom: 0.75rem !important; - } - .xl\:mx-3 { margin-left: 0.75rem !important; margin-right: 0.75rem !important; } - .xl\:my-4 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; - } - .xl\:mx-4 { margin-left: 1rem !important; margin-right: 1rem !important; } - .xl\:my-5 { - margin-top: 1.25rem !important; - margin-bottom: 1.25rem !important; - } - .xl\:mx-5 { margin-left: 1.25rem !important; margin-right: 1.25rem !important; } - .xl\:my-6 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; - } - .xl\:mx-6 { margin-left: 1.5rem !important; margin-right: 1.5rem !important; } - .xl\:my-7 { - margin-top: 1.75rem !important; - margin-bottom: 1.75rem !important; - } - .xl\:mx-7 { margin-left: 1.75rem !important; margin-right: 1.75rem !important; } - .xl\:my-8 { - margin-top: 2rem !important; - margin-bottom: 2rem !important; - } - .xl\:mx-8 { margin-left: 2rem !important; margin-right: 2rem !important; } - .xl\:my-9 { - margin-top: 2.25rem !important; - margin-bottom: 2.25rem !important; - } - .xl\:mx-9 { margin-left: 2.25rem !important; margin-right: 2.25rem !important; } - .xl\:my-10 { - margin-top: 2.5rem !important; - margin-bottom: 2.5rem !important; - } - .xl\:mx-10 { margin-left: 2.5rem !important; margin-right: 2.5rem !important; } - .xl\:my-11 { - margin-top: 2.75rem !important; - margin-bottom: 2.75rem !important; - } - .xl\:mx-11 { margin-left: 2.75rem !important; margin-right: 2.75rem !important; } - .xl\:my-12 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; - } - .xl\:mx-12 { margin-left: 3rem !important; margin-right: 3rem !important; } - .xl\:my-14 { - margin-top: 3.5rem !important; - margin-bottom: 3.5rem !important; - } - .xl\:mx-14 { margin-left: 3.5rem !important; margin-right: 3.5rem !important; } - .xl\:my-16 { - margin-top: 4rem !important; - margin-bottom: 4rem !important; - } - .xl\:mx-16 { margin-left: 4rem !important; margin-right: 4rem !important; } - .xl\:my-20 { - margin-top: 5rem !important; - margin-bottom: 5rem !important; - } - .xl\:mx-20 { margin-left: 5rem !important; margin-right: 5rem !important; } - .xl\:my-24 { - margin-top: 6rem !important; - margin-bottom: 6rem !important; - } - .xl\:mx-24 { margin-left: 6rem !important; margin-right: 6rem !important; } - .xl\:my-28 { - margin-top: 7rem !important; - margin-bottom: 7rem !important; - } - .xl\:mx-28 { margin-left: 7rem !important; margin-right: 7rem !important; } - .xl\:my-32 { - margin-top: 8rem !important; - margin-bottom: 8rem !important; - } - .xl\:mx-32 { margin-left: 8rem !important; margin-right: 8rem !important; } - .xl\:my-36 { - margin-top: 9rem !important; - margin-bottom: 9rem !important; - } - .xl\:mx-36 { margin-left: 9rem !important; margin-right: 9rem !important; } - .xl\:my-40 { - margin-top: 10rem !important; - margin-bottom: 10rem !important; - } - .xl\:mx-40 { margin-left: 10rem !important; margin-right: 10rem !important; } - .xl\:my-44 { - margin-top: 11rem !important; - margin-bottom: 11rem !important; - } - .xl\:mx-44 { margin-left: 11rem !important; margin-right: 11rem !important; } - .xl\:my-48 { - margin-top: 12rem !important; - margin-bottom: 12rem !important; - } - .xl\:mx-48 { margin-left: 12rem !important; margin-right: 12rem !important; } - .xl\:my-52 { - margin-top: 13rem !important; - margin-bottom: 13rem !important; - } - .xl\:mx-52 { margin-left: 13rem !important; margin-right: 13rem !important; } - .xl\:my-56 { - margin-top: 14rem !important; - margin-bottom: 14rem !important; - } - .xl\:mx-56 { margin-left: 14rem !important; margin-right: 14rem !important; } - .xl\:my-60 { - margin-top: 15rem !important; - margin-bottom: 15rem !important; - } - .xl\:mx-60 { margin-left: 15rem !important; margin-right: 15rem !important; } - .xl\:my-64 { - margin-top: 16rem !important; - margin-bottom: 16rem !important; - } - .xl\:mx-64 { margin-left: 16rem !important; margin-right: 16rem !important; } - .xl\:my-72 { - margin-top: 18rem !important; - margin-bottom: 18rem !important; - } - .xl\:mx-72 { margin-left: 18rem !important; margin-right: 18rem !important; } - .xl\:my-80 { - margin-top: 20rem !important; - margin-bottom: 20rem !important; - } - .xl\:mx-80 { margin-left: 20rem !important; margin-right: 20rem !important; } - .xl\:my-96 { - margin-top: 24rem !important; - margin-bottom: 24rem !important; - } - .xl\:mx-96 { margin-left: 24rem !important; margin-right: 24rem !important; } - .xl\:my-auto { - margin-top: auto !important; - margin-bottom: auto !important; - } - .xl\:mx-auto { margin-left: auto !important; margin-right: auto !important; } - .xl\:my-px { - margin-top: 1px !important; - margin-bottom: 1px !important; - } - .xl\:mx-px { margin-left: 1px !important; margin-right: 1px !important; } - .xl\:my-0\.5 { - margin-top: 0.125rem !important; - margin-bottom: 0.125rem !important; - } - .xl\:mx-0\.5 { margin-left: 0.125rem !important; margin-right: 0.125rem !important; } - .xl\:my-1\.5 { - margin-top: 0.375rem !important; - margin-bottom: 0.375rem !important; - } - .xl\:mx-1\.5 { margin-left: 0.375rem !important; margin-right: 0.375rem !important; } - .xl\:my-2\.5 { - margin-top: 0.625rem !important; - margin-bottom: 0.625rem !important; - } - .xl\:mx-2\.5 { margin-left: 0.625rem !important; margin-right: 0.625rem !important; } - .xl\:my-3\.5 { - margin-top: 0.875rem !important; - margin-bottom: 0.875rem !important; - } - .xl\:mx-3\.5 { margin-left: 0.875rem !important; margin-right: 0.875rem !important; } - .xl\:-my-0 { - margin-top: 0px !important; - margin-bottom: 0px !important; - } - .xl\:-mx-0 { margin-left: 0px !important; margin-right: 0px !important; } - .xl\:-my-1 { - margin-top: -0.25rem !important; - margin-bottom: -0.25rem !important; - } - .xl\:-mx-1 { margin-left: -0.25rem !important; margin-right: -0.25rem !important; } - .xl\:-my-2 { - margin-top: -0.5rem !important; - margin-bottom: -0.5rem !important; - } - .xl\:-mx-2 { margin-left: -0.5rem !important; margin-right: -0.5rem !important; } - .xl\:-my-3 { - margin-top: -0.75rem !important; - margin-bottom: -0.75rem !important; - } - .xl\:-mx-3 { margin-left: -0.75rem !important; margin-right: -0.75rem !important; } - .xl\:-my-4 { - margin-top: -1rem !important; - margin-bottom: -1rem !important; - } - .xl\:-mx-4 { margin-left: -1rem !important; margin-right: -1rem !important; } - .xl\:-my-5 { - margin-top: -1.25rem !important; - margin-bottom: -1.25rem !important; - } - .xl\:-mx-5 { margin-left: -1.25rem !important; margin-right: -1.25rem !important; } - .xl\:-my-6 { - margin-top: -1.5rem !important; - margin-bottom: -1.5rem !important; - } - .xl\:-mx-6 { margin-left: -1.5rem !important; margin-right: -1.5rem !important; } - .xl\:-my-7 { - margin-top: -1.75rem !important; - margin-bottom: -1.75rem !important; - } - .xl\:-mx-7 { margin-left: -1.75rem !important; margin-right: -1.75rem !important; } - .xl\:-my-8 { - margin-top: -2rem !important; - margin-bottom: -2rem !important; - } - .xl\:-mx-8 { margin-left: -2rem !important; margin-right: -2rem !important; } - .xl\:-my-9 { - margin-top: -2.25rem !important; - margin-bottom: -2.25rem !important; - } - .xl\:-mx-9 { margin-left: -2.25rem !important; margin-right: -2.25rem !important; } - .xl\:-my-10 { - margin-top: -2.5rem !important; - margin-bottom: -2.5rem !important; - } - .xl\:-mx-10 { margin-left: -2.5rem !important; margin-right: -2.5rem !important; } - .xl\:-my-11 { - margin-top: -2.75rem !important; - margin-bottom: -2.75rem !important; - } - .xl\:-mx-11 { margin-left: -2.75rem !important; margin-right: -2.75rem !important; } - .xl\:-my-12 { - margin-top: -3rem !important; - margin-bottom: -3rem !important; - } - .xl\:-mx-12 { margin-left: -3rem !important; margin-right: -3rem !important; } - .xl\:-my-14 { - margin-top: -3.5rem !important; - margin-bottom: -3.5rem !important; - } - .xl\:-mx-14 { margin-left: -3.5rem !important; margin-right: -3.5rem !important; } - .xl\:-my-16 { - margin-top: -4rem !important; - margin-bottom: -4rem !important; - } - .xl\:-mx-16 { margin-left: -4rem !important; margin-right: -4rem !important; } - .xl\:-my-20 { - margin-top: -5rem !important; - margin-bottom: -5rem !important; - } - .xl\:-mx-20 { margin-left: -5rem !important; margin-right: -5rem !important; } - .xl\:-my-24 { - margin-top: -6rem !important; - margin-bottom: -6rem !important; - } - .xl\:-mx-24 { margin-left: -6rem !important; margin-right: -6rem !important; } - .xl\:-my-28 { - margin-top: -7rem !important; - margin-bottom: -7rem !important; - } - .xl\:-mx-28 { margin-left: -7rem !important; margin-right: -7rem !important; } - .xl\:-my-32 { - margin-top: -8rem !important; - margin-bottom: -8rem !important; - } - .xl\:-mx-32 { margin-left: -8rem !important; margin-right: -8rem !important; } - .xl\:-my-36 { - margin-top: -9rem !important; - margin-bottom: -9rem !important; - } - .xl\:-mx-36 { margin-left: -9rem !important; margin-right: -9rem !important; } - .xl\:-my-40 { - margin-top: -10rem !important; - margin-bottom: -10rem !important; - } - .xl\:-mx-40 { margin-left: -10rem !important; margin-right: -10rem !important; } - .xl\:-my-44 { - margin-top: -11rem !important; - margin-bottom: -11rem !important; - } - .xl\:-mx-44 { margin-left: -11rem !important; margin-right: -11rem !important; } - .xl\:-my-48 { - margin-top: -12rem !important; - margin-bottom: -12rem !important; - } - .xl\:-mx-48 { margin-left: -12rem !important; margin-right: -12rem !important; } - .xl\:-my-52 { - margin-top: -13rem !important; - margin-bottom: -13rem !important; - } - .xl\:-mx-52 { margin-left: -13rem !important; margin-right: -13rem !important; } - .xl\:-my-56 { - margin-top: -14rem !important; - margin-bottom: -14rem !important; - } - .xl\:-mx-56 { margin-left: -14rem !important; margin-right: -14rem !important; } - .xl\:-my-60 { - margin-top: -15rem !important; - margin-bottom: -15rem !important; - } - .xl\:-mx-60 { margin-left: -15rem !important; margin-right: -15rem !important; } - .xl\:-my-64 { - margin-top: -16rem !important; - margin-bottom: -16rem !important; - } - .xl\:-mx-64 { margin-left: -16rem !important; margin-right: -16rem !important; } - .xl\:-my-72 { - margin-top: -18rem !important; - margin-bottom: -18rem !important; - } - .xl\:-mx-72 { margin-left: -18rem !important; margin-right: -18rem !important; } - .xl\:-my-80 { - margin-top: -20rem !important; - margin-bottom: -20rem !important; - } - .xl\:-mx-80 { margin-left: -20rem !important; margin-right: -20rem !important; } - .xl\:-my-96 { - margin-top: -24rem !important; - margin-bottom: -24rem !important; - } - .xl\:-mx-96 { margin-left: -24rem !important; margin-right: -24rem !important; } - .xl\:-my-px { - margin-top: -1px !important; - margin-bottom: -1px !important; - } - .xl\:-mx-px { margin-left: -1px !important; margin-right: -1px !important; } - .xl\:-my-0\.5 { - margin-top: -0.125rem !important; - margin-bottom: -0.125rem !important; - } - .xl\:-mx-0\.5 { margin-left: -0.125rem !important; margin-right: -0.125rem !important; } - .xl\:-my-1\.5 { - margin-top: -0.375rem !important; - margin-bottom: -0.375rem !important; - } - .xl\:-mx-1\.5 { margin-left: -0.375rem !important; margin-right: -0.375rem !important; } - .xl\:-my-2\.5 { - margin-top: -0.625rem !important; - margin-bottom: -0.625rem !important; - } - .xl\:-mx-2\.5 { margin-left: -0.625rem !important; margin-right: -0.625rem !important; } - .xl\:-my-3\.5 { - margin-top: -0.875rem !important; - margin-bottom: -0.875rem !important; - } - .xl\:-mx-3\.5 { margin-left: -0.875rem !important; margin-right: -0.875rem !important; } - .xl\:mt-0 { + .xl\:my-0 { margin-top: 0px !important; + margin-bottom: 0px !important; } - .xl\:mr-0 { - margin-right: 0px !important; - } - - .xl\:mb-0 { - margin-bottom: 0px !important; + .xl\:my-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; } - .xl\:ml-0 { - margin-left: 0px !important; + .xl\:my-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; } - .xl\:mt-1 { - margin-top: 0.25rem !important; + .xl\:my-3 { + margin-top: 0.75rem !important; + margin-bottom: 0.75rem !important; } - .xl\:mr-1 { - margin-right: 0.25rem !important; + .xl\:my-4 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; } - .xl\:mb-1 { - margin-bottom: 0.25rem !important; + .xl\:my-5 { + margin-top: 1.25rem !important; + margin-bottom: 1.25rem !important; } - .xl\:ml-1 { - margin-left: 0.25rem !important; + .xl\:my-6 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; } - .xl\:mt-2 { - margin-top: 0.5rem !important; + .xl\:my-7 { + margin-top: 1.75rem !important; + margin-bottom: 1.75rem !important; } - .xl\:mr-2 { - margin-right: 0.5rem !important; + .xl\:my-8 { + margin-top: 2rem !important; + margin-bottom: 2rem !important; } - .xl\:mb-2 { - margin-bottom: 0.5rem !important; + .xl\:my-9 { + margin-top: 2.25rem !important; + margin-bottom: 2.25rem !important; } - .xl\:ml-2 { - margin-left: 0.5rem !important; + .xl\:my-10 { + margin-top: 2.5rem !important; + margin-bottom: 2.5rem !important; } - .xl\:mt-3 { - margin-top: 0.75rem !important; + .xl\:my-11 { + margin-top: 2.75rem !important; + margin-bottom: 2.75rem !important; } - .xl\:mr-3 { - margin-right: 0.75rem !important; + .xl\:my-12 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; } - .xl\:mb-3 { - margin-bottom: 0.75rem !important; + .xl\:my-14 { + margin-top: 3.5rem !important; + margin-bottom: 3.5rem !important; } - .xl\:ml-3 { - margin-left: 0.75rem !important; + .xl\:my-16 { + margin-top: 4rem !important; + margin-bottom: 4rem !important; } - .xl\:mt-4 { - margin-top: 1rem !important; + .xl\:my-20 { + margin-top: 5rem !important; + margin-bottom: 5rem !important; } - .xl\:mr-4 { - margin-right: 1rem !important; + .xl\:my-24 { + margin-top: 6rem !important; + margin-bottom: 6rem !important; } - .xl\:mb-4 { - margin-bottom: 1rem !important; + .xl\:my-28 { + margin-top: 7rem !important; + margin-bottom: 7rem !important; } - .xl\:ml-4 { - margin-left: 1rem !important; + .xl\:my-32 { + margin-top: 8rem !important; + margin-bottom: 8rem !important; } - .xl\:mt-5 { - margin-top: 1.25rem !important; + .xl\:my-36 { + margin-top: 9rem !important; + margin-bottom: 9rem !important; } - .xl\:mr-5 { - margin-right: 1.25rem !important; + .xl\:my-40 { + margin-top: 10rem !important; + margin-bottom: 10rem !important; } - .xl\:mb-5 { - margin-bottom: 1.25rem !important; + .xl\:my-44 { + margin-top: 11rem !important; + margin-bottom: 11rem !important; } - .xl\:ml-5 { - margin-left: 1.25rem !important; + .xl\:my-48 { + margin-top: 12rem !important; + margin-bottom: 12rem !important; } - .xl\:mt-6 { - margin-top: 1.5rem !important; + .xl\:my-52 { + margin-top: 13rem !important; + margin-bottom: 13rem !important; } - .xl\:mr-6 { - margin-right: 1.5rem !important; + .xl\:my-56 { + margin-top: 14rem !important; + margin-bottom: 14rem !important; } - .xl\:mb-6 { - margin-bottom: 1.5rem !important; + .xl\:my-60 { + margin-top: 15rem !important; + margin-bottom: 15rem !important; } - .xl\:ml-6 { - margin-left: 1.5rem !important; + .xl\:my-64 { + margin-top: 16rem !important; + margin-bottom: 16rem !important; } - .xl\:mt-7 { - margin-top: 1.75rem !important; + .xl\:my-72 { + margin-top: 18rem !important; + margin-bottom: 18rem !important; } - .xl\:mr-7 { - margin-right: 1.75rem !important; + .xl\:my-80 { + margin-top: 20rem !important; + margin-bottom: 20rem !important; } - .xl\:mb-7 { - margin-bottom: 1.75rem !important; + .xl\:my-96 { + margin-top: 24rem !important; + margin-bottom: 24rem !important; } - .xl\:ml-7 { - margin-left: 1.75rem !important; + .xl\:my-auto { + margin-top: auto !important; + margin-bottom: auto !important; } - .xl\:mt-8 { - margin-top: 2rem !important; + .xl\:my-px { + margin-top: 1px !important; + margin-bottom: 1px !important; } - .xl\:mr-8 { - margin-right: 2rem !important; + .xl\:my-0\.5 { + margin-top: 0.125rem !important; + margin-bottom: 0.125rem !important; } - .xl\:mb-8 { - margin-bottom: 2rem !important; + .xl\:my-1\.5 { + margin-top: 0.375rem !important; + margin-bottom: 0.375rem !important; } - .xl\:ml-8 { - margin-left: 2rem !important; + .xl\:my-2\.5 { + margin-top: 0.625rem !important; + margin-bottom: 0.625rem !important; } - .xl\:mt-9 { - margin-top: 2.25rem !important; + .xl\:my-3\.5 { + margin-top: 0.875rem !important; + margin-bottom: 0.875rem !important; } - .xl\:mr-9 { - margin-right: 2.25rem !important; + .xl\:-my-0 { + margin-top: 0px !important; + margin-bottom: 0px !important; } - .xl\:mb-9 { - margin-bottom: 2.25rem !important; + .xl\:-my-1 { + margin-top: -0.25rem !important; + margin-bottom: -0.25rem !important; } - .xl\:ml-9 { - margin-left: 2.25rem !important; + .xl\:-my-2 { + margin-top: -0.5rem !important; + margin-bottom: -0.5rem !important; } - .xl\:mt-10 { - margin-top: 2.5rem !important; + .xl\:-my-3 { + margin-top: -0.75rem !important; + margin-bottom: -0.75rem !important; } - .xl\:mr-10 { - margin-right: 2.5rem !important; + .xl\:-my-4 { + margin-top: -1rem !important; + margin-bottom: -1rem !important; } - .xl\:mb-10 { - margin-bottom: 2.5rem !important; + .xl\:-my-5 { + margin-top: -1.25rem !important; + margin-bottom: -1.25rem !important; } - .xl\:ml-10 { - margin-left: 2.5rem !important; + .xl\:-my-6 { + margin-top: -1.5rem !important; + margin-bottom: -1.5rem !important; } - .xl\:mt-11 { - margin-top: 2.75rem !important; + .xl\:-my-7 { + margin-top: -1.75rem !important; + margin-bottom: -1.75rem !important; } - .xl\:mr-11 { - margin-right: 2.75rem !important; + .xl\:-my-8 { + margin-top: -2rem !important; + margin-bottom: -2rem !important; } - .xl\:mb-11 { - margin-bottom: 2.75rem !important; + .xl\:-my-9 { + margin-top: -2.25rem !important; + margin-bottom: -2.25rem !important; } - .xl\:ml-11 { - margin-left: 2.75rem !important; + .xl\:-my-10 { + margin-top: -2.5rem !important; + margin-bottom: -2.5rem !important; } - .xl\:mt-12 { - margin-top: 3rem !important; + .xl\:-my-11 { + margin-top: -2.75rem !important; + margin-bottom: -2.75rem !important; } - .xl\:mr-12 { - margin-right: 3rem !important; + .xl\:-my-12 { + margin-top: -3rem !important; + margin-bottom: -3rem !important; } - .xl\:mb-12 { - margin-bottom: 3rem !important; + .xl\:-my-14 { + margin-top: -3.5rem !important; + margin-bottom: -3.5rem !important; } - .xl\:ml-12 { - margin-left: 3rem !important; + .xl\:-my-16 { + margin-top: -4rem !important; + margin-bottom: -4rem !important; } - .xl\:mt-14 { - margin-top: 3.5rem !important; + .xl\:-my-20 { + margin-top: -5rem !important; + margin-bottom: -5rem !important; } - .xl\:mr-14 { - margin-right: 3.5rem !important; + .xl\:-my-24 { + margin-top: -6rem !important; + margin-bottom: -6rem !important; } - .xl\:mb-14 { - margin-bottom: 3.5rem !important; + .xl\:-my-28 { + margin-top: -7rem !important; + margin-bottom: -7rem !important; } - .xl\:ml-14 { - margin-left: 3.5rem !important; + .xl\:-my-32 { + margin-top: -8rem !important; + margin-bottom: -8rem !important; } - .xl\:mt-16 { - margin-top: 4rem !important; + .xl\:-my-36 { + margin-top: -9rem !important; + margin-bottom: -9rem !important; } - .xl\:mr-16 { - margin-right: 4rem !important; + .xl\:-my-40 { + margin-top: -10rem !important; + margin-bottom: -10rem !important; } - .xl\:mb-16 { - margin-bottom: 4rem !important; + .xl\:-my-44 { + margin-top: -11rem !important; + margin-bottom: -11rem !important; } - .xl\:ml-16 { - margin-left: 4rem !important; + .xl\:-my-48 { + margin-top: -12rem !important; + margin-bottom: -12rem !important; } - .xl\:mt-20 { - margin-top: 5rem !important; + .xl\:-my-52 { + margin-top: -13rem !important; + margin-bottom: -13rem !important; } - .xl\:mr-20 { - margin-right: 5rem !important; + .xl\:-my-56 { + margin-top: -14rem !important; + margin-bottom: -14rem !important; } - .xl\:mb-20 { - margin-bottom: 5rem !important; + .xl\:-my-60 { + margin-top: -15rem !important; + margin-bottom: -15rem !important; } - .xl\:ml-20 { - margin-left: 5rem !important; + .xl\:-my-64 { + margin-top: -16rem !important; + margin-bottom: -16rem !important; } - .xl\:mt-24 { - margin-top: 6rem !important; + .xl\:-my-72 { + margin-top: -18rem !important; + margin-bottom: -18rem !important; } - .xl\:mr-24 { - margin-right: 6rem !important; + .xl\:-my-80 { + margin-top: -20rem !important; + margin-bottom: -20rem !important; } - .xl\:mb-24 { - margin-bottom: 6rem !important; + .xl\:-my-96 { + margin-top: -24rem !important; + margin-bottom: -24rem !important; } - .xl\:ml-24 { - margin-left: 6rem !important; + .xl\:-my-px { + margin-top: -1px !important; + margin-bottom: -1px !important; } - .xl\:mt-28 { - margin-top: 7rem !important; + .xl\:-my-0\.5 { + margin-top: -0.125rem !important; + margin-bottom: -0.125rem !important; } - .xl\:mr-28 { - margin-right: 7rem !important; + .xl\:-my-1\.5 { + margin-top: -0.375rem !important; + margin-bottom: -0.375rem !important; } - .xl\:mb-28 { - margin-bottom: 7rem !important; + .xl\:-my-2\.5 { + margin-top: -0.625rem !important; + margin-bottom: -0.625rem !important; } - .xl\:ml-28 { - margin-left: 7rem !important; + .xl\:-my-3\.5 { + margin-top: -0.875rem !important; + margin-bottom: -0.875rem !important; } - .xl\:mt-32 { - margin-top: 8rem !important; + .xl\:mt-0 { + margin-top: 0px !important; } - .xl\:mr-32 { - margin-right: 8rem !important; + .xl\:mt-1 { + margin-top: 0.25rem !important; } - .xl\:mb-32 { - margin-bottom: 8rem !important; + .xl\:mt-2 { + margin-top: 0.5rem !important; } - .xl\:ml-32 { - margin-left: 8rem !important; + .xl\:mt-3 { + margin-top: 0.75rem !important; } - .xl\:mt-36 { - margin-top: 9rem !important; + .xl\:mt-4 { + margin-top: 1rem !important; } - .xl\:mr-36 { - margin-right: 9rem !important; + .xl\:mt-5 { + margin-top: 1.25rem !important; } - .xl\:mb-36 { - margin-bottom: 9rem !important; + .xl\:mt-6 { + margin-top: 1.5rem !important; } - .xl\:ml-36 { - margin-left: 9rem !important; + .xl\:mt-7 { + margin-top: 1.75rem !important; } - .xl\:mt-40 { - margin-top: 10rem !important; + .xl\:mt-8 { + margin-top: 2rem !important; } - .xl\:mr-40 { - margin-right: 10rem !important; + .xl\:mt-9 { + margin-top: 2.25rem !important; } - .xl\:mb-40 { - margin-bottom: 10rem !important; + .xl\:mt-10 { + margin-top: 2.5rem !important; } - .xl\:ml-40 { - margin-left: 10rem !important; + .xl\:mt-11 { + margin-top: 2.75rem !important; } - .xl\:mt-44 { - margin-top: 11rem !important; + .xl\:mt-12 { + margin-top: 3rem !important; } - .xl\:mr-44 { - margin-right: 11rem !important; + .xl\:mt-14 { + margin-top: 3.5rem !important; } - .xl\:mb-44 { - margin-bottom: 11rem !important; + .xl\:mt-16 { + margin-top: 4rem !important; } - .xl\:ml-44 { - margin-left: 11rem !important; + .xl\:mt-20 { + margin-top: 5rem !important; } - .xl\:mt-48 { - margin-top: 12rem !important; + .xl\:mt-24 { + margin-top: 6rem !important; } - .xl\:mr-48 { - margin-right: 12rem !important; + .xl\:mt-28 { + margin-top: 7rem !important; } - .xl\:mb-48 { - margin-bottom: 12rem !important; + .xl\:mt-32 { + margin-top: 8rem !important; } - .xl\:ml-48 { - margin-left: 12rem !important; + .xl\:mt-36 { + margin-top: 9rem !important; } - .xl\:mt-52 { - margin-top: 13rem !important; + .xl\:mt-40 { + margin-top: 10rem !important; } - .xl\:mr-52 { - margin-right: 13rem !important; + .xl\:mt-44 { + margin-top: 11rem !important; } - .xl\:mb-52 { - margin-bottom: 13rem !important; + .xl\:mt-48 { + margin-top: 12rem !important; } - .xl\:ml-52 { - margin-left: 13rem !important; + .xl\:mt-52 { + margin-top: 13rem !important; } .xl\:mt-56 { margin-top: 14rem !important; } - .xl\:mr-56 { - margin-right: 14rem !important; + .xl\:mt-60 { + margin-top: 15rem !important; } - .xl\:mb-56 { - margin-bottom: 14rem !important; + .xl\:mt-64 { + margin-top: 16rem !important; } - .xl\:ml-56 { - margin-left: 14rem !important; + .xl\:mt-72 { + margin-top: 18rem !important; } - .xl\:mt-60 { - margin-top: 15rem !important; + .xl\:mt-80 { + margin-top: 20rem !important; } - .xl\:mr-60 { - margin-right: 15rem !important; + .xl\:mt-96 { + margin-top: 24rem !important; } - .xl\:mb-60 { - margin-bottom: 15rem !important; + .xl\:mt-auto { + margin-top: auto !important; } - .xl\:ml-60 { - margin-left: 15rem !important; + .xl\:mt-px { + margin-top: 1px !important; } - .xl\:mt-64 { - margin-top: 16rem !important; + .xl\:mt-0\.5 { + margin-top: 0.125rem !important; } - .xl\:mr-64 { - margin-right: 16rem !important; + .xl\:mt-1\.5 { + margin-top: 0.375rem !important; } - .xl\:mb-64 { - margin-bottom: 16rem !important; + .xl\:mt-2\.5 { + margin-top: 0.625rem !important; } - .xl\:ml-64 { - margin-left: 16rem !important; + .xl\:mt-3\.5 { + margin-top: 0.875rem !important; } - .xl\:mt-72 { - margin-top: 18rem !important; + .xl\:-mt-0 { + margin-top: 0px !important; } - .xl\:mr-72 { - margin-right: 18rem !important; + .xl\:-mt-1 { + margin-top: -0.25rem !important; } - .xl\:mb-72 { - margin-bottom: 18rem !important; + .xl\:-mt-2 { + margin-top: -0.5rem !important; } - .xl\:ml-72 { - margin-left: 18rem !important; + .xl\:-mt-3 { + margin-top: -0.75rem !important; } - .xl\:mt-80 { - margin-top: 20rem !important; + .xl\:-mt-4 { + margin-top: -1rem !important; } - .xl\:mr-80 { - margin-right: 20rem !important; + .xl\:-mt-5 { + margin-top: -1.25rem !important; } - .xl\:mb-80 { - margin-bottom: 20rem !important; + .xl\:-mt-6 { + margin-top: -1.5rem !important; } - .xl\:ml-80 { - margin-left: 20rem !important; + .xl\:-mt-7 { + margin-top: -1.75rem !important; } - .xl\:mt-96 { - margin-top: 24rem !important; + .xl\:-mt-8 { + margin-top: -2rem !important; } - .xl\:mr-96 { - margin-right: 24rem !important; + .xl\:-mt-9 { + margin-top: -2.25rem !important; } - .xl\:mb-96 { - margin-bottom: 24rem !important; + .xl\:-mt-10 { + margin-top: -2.5rem !important; } - .xl\:ml-96 { - margin-left: 24rem !important; + .xl\:-mt-11 { + margin-top: -2.75rem !important; } - .xl\:mt-auto { - margin-top: auto !important; + .xl\:-mt-12 { + margin-top: -3rem !important; } - .xl\:mr-auto { - margin-right: auto !important; + .xl\:-mt-14 { + margin-top: -3.5rem !important; } - .xl\:mb-auto { - margin-bottom: auto !important; + .xl\:-mt-16 { + margin-top: -4rem !important; } - .xl\:ml-auto { - margin-left: auto !important; + .xl\:-mt-20 { + margin-top: -5rem !important; } - .xl\:mt-px { - margin-top: 1px !important; + .xl\:-mt-24 { + margin-top: -6rem !important; } - .xl\:mr-px { - margin-right: 1px !important; + .xl\:-mt-28 { + margin-top: -7rem !important; } - .xl\:mb-px { - margin-bottom: 1px !important; + .xl\:-mt-32 { + margin-top: -8rem !important; } - .xl\:ml-px { - margin-left: 1px !important; + .xl\:-mt-36 { + margin-top: -9rem !important; } - .xl\:mt-0\.5 { - margin-top: 0.125rem !important; + .xl\:-mt-40 { + margin-top: -10rem !important; } - .xl\:mr-0\.5 { - margin-right: 0.125rem !important; + .xl\:-mt-44 { + margin-top: -11rem !important; } - .xl\:mb-0\.5 { - margin-bottom: 0.125rem !important; + .xl\:-mt-48 { + margin-top: -12rem !important; } - .xl\:ml-0\.5 { - margin-left: 0.125rem !important; + .xl\:-mt-52 { + margin-top: -13rem !important; } - .xl\:mt-1\.5 { - margin-top: 0.375rem !important; + .xl\:-mt-56 { + margin-top: -14rem !important; } - .xl\:mr-1\.5 { - margin-right: 0.375rem !important; + .xl\:-mt-60 { + margin-top: -15rem !important; } - .xl\:mb-1\.5 { - margin-bottom: 0.375rem !important; + .xl\:-mt-64 { + margin-top: -16rem !important; } - .xl\:ml-1\.5 { - margin-left: 0.375rem !important; + .xl\:-mt-72 { + margin-top: -18rem !important; } - .xl\:mt-2\.5 { - margin-top: 0.625rem !important; + .xl\:-mt-80 { + margin-top: -20rem !important; } - .xl\:mr-2\.5 { - margin-right: 0.625rem !important; + .xl\:-mt-96 { + margin-top: -24rem !important; } - .xl\:mb-2\.5 { - margin-bottom: 0.625rem !important; + .xl\:-mt-px { + margin-top: -1px !important; } - .xl\:ml-2\.5 { - margin-left: 0.625rem !important; + .xl\:-mt-0\.5 { + margin-top: -0.125rem !important; } - .xl\:mt-3\.5 { - margin-top: 0.875rem !important; + .xl\:-mt-1\.5 { + margin-top: -0.375rem !important; } - .xl\:mr-3\.5 { - margin-right: 0.875rem !important; + .xl\:-mt-2\.5 { + margin-top: -0.625rem !important; } - .xl\:mb-3\.5 { - margin-bottom: 0.875rem !important; + .xl\:-mt-3\.5 { + margin-top: -0.875rem !important; } - .xl\:ml-3\.5 { - margin-left: 0.875rem !important; + .xl\:mr-0 { + margin-right: 0px !important; } - .xl\:-mt-0 { - margin-top: 0px !important; + .xl\:mr-1 { + margin-right: 0.25rem !important; } - .xl\:-mr-0 { - margin-right: 0px !important; + .xl\:mr-2 { + margin-right: 0.5rem !important; } - .xl\:-mb-0 { - margin-bottom: 0px !important; + .xl\:mr-3 { + margin-right: 0.75rem !important; } - .xl\:-ml-0 { - margin-left: 0px !important; + .xl\:mr-4 { + margin-right: 1rem !important; } - .xl\:-mt-1 { - margin-top: -0.25rem !important; + .xl\:mr-5 { + margin-right: 1.25rem !important; } - .xl\:-mr-1 { - margin-right: -0.25rem !important; + .xl\:mr-6 { + margin-right: 1.5rem !important; } - .xl\:-mb-1 { - margin-bottom: -0.25rem !important; + .xl\:mr-7 { + margin-right: 1.75rem !important; } - .xl\:-ml-1 { - margin-left: -0.25rem !important; + .xl\:mr-8 { + margin-right: 2rem !important; } - .xl\:-mt-2 { - margin-top: -0.5rem !important; + .xl\:mr-9 { + margin-right: 2.25rem !important; } - .xl\:-mr-2 { - margin-right: -0.5rem !important; + .xl\:mr-10 { + margin-right: 2.5rem !important; } - .xl\:-mb-2 { - margin-bottom: -0.5rem !important; + .xl\:mr-11 { + margin-right: 2.75rem !important; } - .xl\:-ml-2 { - margin-left: -0.5rem !important; + .xl\:mr-12 { + margin-right: 3rem !important; } - .xl\:-mt-3 { - margin-top: -0.75rem !important; + .xl\:mr-14 { + margin-right: 3.5rem !important; } - .xl\:-mr-3 { - margin-right: -0.75rem !important; + .xl\:mr-16 { + margin-right: 4rem !important; } - .xl\:-mb-3 { - margin-bottom: -0.75rem !important; + .xl\:mr-20 { + margin-right: 5rem !important; } - .xl\:-ml-3 { - margin-left: -0.75rem !important; + .xl\:mr-24 { + margin-right: 6rem !important; } - .xl\:-mt-4 { - margin-top: -1rem !important; + .xl\:mr-28 { + margin-right: 7rem !important; } - .xl\:-mr-4 { - margin-right: -1rem !important; + .xl\:mr-32 { + margin-right: 8rem !important; } - .xl\:-mb-4 { - margin-bottom: -1rem !important; + .xl\:mr-36 { + margin-right: 9rem !important; } - .xl\:-ml-4 { - margin-left: -1rem !important; + .xl\:mr-40 { + margin-right: 10rem !important; } - .xl\:-mt-5 { - margin-top: -1.25rem !important; + .xl\:mr-44 { + margin-right: 11rem !important; } - .xl\:-mr-5 { - margin-right: -1.25rem !important; + .xl\:mr-48 { + margin-right: 12rem !important; } - .xl\:-mb-5 { - margin-bottom: -1.25rem !important; + .xl\:mr-52 { + margin-right: 13rem !important; } - .xl\:-ml-5 { - margin-left: -1.25rem !important; + .xl\:mr-56 { + margin-right: 14rem !important; } - .xl\:-mt-6 { - margin-top: -1.5rem !important; + .xl\:mr-60 { + margin-right: 15rem !important; } - .xl\:-mr-6 { - margin-right: -1.5rem !important; + .xl\:mr-64 { + margin-right: 16rem !important; } - .xl\:-mb-6 { - margin-bottom: -1.5rem !important; + .xl\:mr-72 { + margin-right: 18rem !important; } - .xl\:-ml-6 { - margin-left: -1.5rem !important; + .xl\:mr-80 { + margin-right: 20rem !important; } - .xl\:-mt-7 { - margin-top: -1.75rem !important; + .xl\:mr-96 { + margin-right: 24rem !important; } - .xl\:-mr-7 { - margin-right: -1.75rem !important; + .xl\:mr-auto { + margin-right: auto !important; } - .xl\:-mb-7 { - margin-bottom: -1.75rem !important; + .xl\:mr-px { + margin-right: 1px !important; } - .xl\:-ml-7 { - margin-left: -1.75rem !important; + .xl\:mr-0\.5 { + margin-right: 0.125rem !important; } - .xl\:-mt-8 { - margin-top: -2rem !important; + .xl\:mr-1\.5 { + margin-right: 0.375rem !important; } - .xl\:-mr-8 { - margin-right: -2rem !important; + .xl\:mr-2\.5 { + margin-right: 0.625rem !important; } - .xl\:-mb-8 { - margin-bottom: -2rem !important; + .xl\:mr-3\.5 { + margin-right: 0.875rem !important; } - .xl\:-ml-8 { - margin-left: -2rem !important; + .xl\:-mr-0 { + margin-right: 0px !important; } - .xl\:-mt-9 { - margin-top: -2.25rem !important; + .xl\:-mr-1 { + margin-right: -0.25rem !important; } - .xl\:-mr-9 { - margin-right: -2.25rem !important; + .xl\:-mr-2 { + margin-right: -0.5rem !important; } - .xl\:-mb-9 { - margin-bottom: -2.25rem !important; + .xl\:-mr-3 { + margin-right: -0.75rem !important; } - .xl\:-ml-9 { - margin-left: -2.25rem !important; + .xl\:-mr-4 { + margin-right: -1rem !important; } - .xl\:-mt-10 { - margin-top: -2.5rem !important; + .xl\:-mr-5 { + margin-right: -1.25rem !important; } - .xl\:-mr-10 { - margin-right: -2.5rem !important; + .xl\:-mr-6 { + margin-right: -1.5rem !important; } - .xl\:-mb-10 { - margin-bottom: -2.5rem !important; + .xl\:-mr-7 { + margin-right: -1.75rem !important; } - .xl\:-ml-10 { - margin-left: -2.5rem !important; + .xl\:-mr-8 { + margin-right: -2rem !important; } - .xl\:-mt-11 { - margin-top: -2.75rem !important; + .xl\:-mr-9 { + margin-right: -2.25rem !important; + } + + .xl\:-mr-10 { + margin-right: -2.5rem !important; } .xl\:-mr-11 { margin-right: -2.75rem !important; } - .xl\:-mb-11 { - margin-bottom: -2.75rem !important; + .xl\:-mr-12 { + margin-right: -3rem !important; } - .xl\:-ml-11 { - margin-left: -2.75rem !important; + .xl\:-mr-14 { + margin-right: -3.5rem !important; } - .xl\:-mt-12 { - margin-top: -3rem !important; + .xl\:-mr-16 { + margin-right: -4rem !important; } - .xl\:-mr-12 { - margin-right: -3rem !important; + .xl\:-mr-20 { + margin-right: -5rem !important; } - .xl\:-mb-12 { - margin-bottom: -3rem !important; + .xl\:-mr-24 { + margin-right: -6rem !important; } - .xl\:-ml-12 { - margin-left: -3rem !important; + .xl\:-mr-28 { + margin-right: -7rem !important; } - .xl\:-mt-14 { - margin-top: -3.5rem !important; + .xl\:-mr-32 { + margin-right: -8rem !important; } - .xl\:-mr-14 { - margin-right: -3.5rem !important; + .xl\:-mr-36 { + margin-right: -9rem !important; } - .xl\:-mb-14 { - margin-bottom: -3.5rem !important; + .xl\:-mr-40 { + margin-right: -10rem !important; } - .xl\:-ml-14 { - margin-left: -3.5rem !important; + .xl\:-mr-44 { + margin-right: -11rem !important; } - .xl\:-mt-16 { - margin-top: -4rem !important; + .xl\:-mr-48 { + margin-right: -12rem !important; } - .xl\:-mr-16 { - margin-right: -4rem !important; + .xl\:-mr-52 { + margin-right: -13rem !important; } - .xl\:-mb-16 { - margin-bottom: -4rem !important; + .xl\:-mr-56 { + margin-right: -14rem !important; } - .xl\:-ml-16 { - margin-left: -4rem !important; + .xl\:-mr-60 { + margin-right: -15rem !important; } - .xl\:-mt-20 { - margin-top: -5rem !important; + .xl\:-mr-64 { + margin-right: -16rem !important; } - .xl\:-mr-20 { - margin-right: -5rem !important; + .xl\:-mr-72 { + margin-right: -18rem !important; } - .xl\:-mb-20 { - margin-bottom: -5rem !important; + .xl\:-mr-80 { + margin-right: -20rem !important; } - .xl\:-ml-20 { - margin-left: -5rem !important; + .xl\:-mr-96 { + margin-right: -24rem !important; } - .xl\:-mt-24 { - margin-top: -6rem !important; + .xl\:-mr-px { + margin-right: -1px !important; } - .xl\:-mr-24 { - margin-right: -6rem !important; + .xl\:-mr-0\.5 { + margin-right: -0.125rem !important; } - .xl\:-mb-24 { - margin-bottom: -6rem !important; + .xl\:-mr-1\.5 { + margin-right: -0.375rem !important; } - .xl\:-ml-24 { - margin-left: -6rem !important; + .xl\:-mr-2\.5 { + margin-right: -0.625rem !important; } - .xl\:-mt-28 { - margin-top: -7rem !important; + .xl\:-mr-3\.5 { + margin-right: -0.875rem !important; } - .xl\:-mr-28 { - margin-right: -7rem !important; + .xl\:mb-0 { + margin-bottom: 0px !important; } - .xl\:-mb-28 { - margin-bottom: -7rem !important; + .xl\:mb-1 { + margin-bottom: 0.25rem !important; } - .xl\:-ml-28 { - margin-left: -7rem !important; + .xl\:mb-2 { + margin-bottom: 0.5rem !important; } - .xl\:-mt-32 { - margin-top: -8rem !important; + .xl\:mb-3 { + margin-bottom: 0.75rem !important; } - .xl\:-mr-32 { - margin-right: -8rem !important; + .xl\:mb-4 { + margin-bottom: 1rem !important; } - .xl\:-mb-32 { - margin-bottom: -8rem !important; + .xl\:mb-5 { + margin-bottom: 1.25rem !important; } - .xl\:-ml-32 { - margin-left: -8rem !important; + .xl\:mb-6 { + margin-bottom: 1.5rem !important; } - .xl\:-mt-36 { - margin-top: -9rem !important; + .xl\:mb-7 { + margin-bottom: 1.75rem !important; } - .xl\:-mr-36 { - margin-right: -9rem !important; + .xl\:mb-8 { + margin-bottom: 2rem !important; } - .xl\:-mb-36 { - margin-bottom: -9rem !important; + .xl\:mb-9 { + margin-bottom: 2.25rem !important; } - .xl\:-ml-36 { - margin-left: -9rem !important; + .xl\:mb-10 { + margin-bottom: 2.5rem !important; } - .xl\:-mt-40 { - margin-top: -10rem !important; + .xl\:mb-11 { + margin-bottom: 2.75rem !important; } - .xl\:-mr-40 { - margin-right: -10rem !important; + .xl\:mb-12 { + margin-bottom: 3rem !important; } - .xl\:-mb-40 { - margin-bottom: -10rem !important; + .xl\:mb-14 { + margin-bottom: 3.5rem !important; } - .xl\:-ml-40 { - margin-left: -10rem !important; + .xl\:mb-16 { + margin-bottom: 4rem !important; } - .xl\:-mt-44 { - margin-top: -11rem !important; + .xl\:mb-20 { + margin-bottom: 5rem !important; } - .xl\:-mr-44 { - margin-right: -11rem !important; + .xl\:mb-24 { + margin-bottom: 6rem !important; } - .xl\:-mb-44 { - margin-bottom: -11rem !important; + .xl\:mb-28 { + margin-bottom: 7rem !important; } - .xl\:-ml-44 { - margin-left: -11rem !important; + .xl\:mb-32 { + margin-bottom: 8rem !important; } - .xl\:-mt-48 { - margin-top: -12rem !important; + .xl\:mb-36 { + margin-bottom: 9rem !important; } - .xl\:-mr-48 { - margin-right: -12rem !important; + .xl\:mb-40 { + margin-bottom: 10rem !important; } - .xl\:-mb-48 { - margin-bottom: -12rem !important; + .xl\:mb-44 { + margin-bottom: 11rem !important; } - .xl\:-ml-48 { - margin-left: -12rem !important; + .xl\:mb-48 { + margin-bottom: 12rem !important; } - .xl\:-mt-52 { - margin-top: -13rem !important; + .xl\:mb-52 { + margin-bottom: 13rem !important; } - .xl\:-mr-52 { - margin-right: -13rem !important; + .xl\:mb-56 { + margin-bottom: 14rem !important; } - .xl\:-mb-52 { - margin-bottom: -13rem !important; + .xl\:mb-60 { + margin-bottom: 15rem !important; } - .xl\:-ml-52 { - margin-left: -13rem !important; + .xl\:mb-64 { + margin-bottom: 16rem !important; } - .xl\:-mt-56 { - margin-top: -14rem !important; + .xl\:mb-72 { + margin-bottom: 18rem !important; } - .xl\:-mr-56 { - margin-right: -14rem !important; + .xl\:mb-80 { + margin-bottom: 20rem !important; } - .xl\:-mb-56 { - margin-bottom: -14rem !important; + .xl\:mb-96 { + margin-bottom: 24rem !important; } - .xl\:-ml-56 { - margin-left: -14rem !important; + .xl\:mb-auto { + margin-bottom: auto !important; } - .xl\:-mt-60 { - margin-top: -15rem !important; + .xl\:mb-px { + margin-bottom: 1px !important; } - .xl\:-mr-60 { - margin-right: -15rem !important; + .xl\:mb-0\.5 { + margin-bottom: 0.125rem !important; } - .xl\:-mb-60 { - margin-bottom: -15rem !important; + .xl\:mb-1\.5 { + margin-bottom: 0.375rem !important; } - .xl\:-ml-60 { - margin-left: -15rem !important; + .xl\:mb-2\.5 { + margin-bottom: 0.625rem !important; } - .xl\:-mt-64 { - margin-top: -16rem !important; + .xl\:mb-3\.5 { + margin-bottom: 0.875rem !important; } - .xl\:-mr-64 { - margin-right: -16rem !important; + .xl\:-mb-0 { + margin-bottom: 0px !important; } - .xl\:-mb-64 { - margin-bottom: -16rem !important; + .xl\:-mb-1 { + margin-bottom: -0.25rem !important; } - .xl\:-ml-64 { - margin-left: -16rem !important; + .xl\:-mb-2 { + margin-bottom: -0.5rem !important; } - .xl\:-mt-72 { - margin-top: -18rem !important; + .xl\:-mb-3 { + margin-bottom: -0.75rem !important; } - .xl\:-mr-72 { - margin-right: -18rem !important; + .xl\:-mb-4 { + margin-bottom: -1rem !important; } - .xl\:-mb-72 { - margin-bottom: -18rem !important; + .xl\:-mb-5 { + margin-bottom: -1.25rem !important; } - .xl\:-ml-72 { - margin-left: -18rem !important; + .xl\:-mb-6 { + margin-bottom: -1.5rem !important; } - .xl\:-mt-80 { - margin-top: -20rem !important; + .xl\:-mb-7 { + margin-bottom: -1.75rem !important; } - .xl\:-mr-80 { - margin-right: -20rem !important; + .xl\:-mb-8 { + margin-bottom: -2rem !important; } - .xl\:-mb-80 { - margin-bottom: -20rem !important; + .xl\:-mb-9 { + margin-bottom: -2.25rem !important; } - .xl\:-ml-80 { - margin-left: -20rem !important; + .xl\:-mb-10 { + margin-bottom: -2.5rem !important; } - .xl\:-mt-96 { - margin-top: -24rem !important; + .xl\:-mb-11 { + margin-bottom: -2.75rem !important; } - .xl\:-mr-96 { - margin-right: -24rem !important; + .xl\:-mb-12 { + margin-bottom: -3rem !important; } - .xl\:-mb-96 { - margin-bottom: -24rem !important; + .xl\:-mb-14 { + margin-bottom: -3.5rem !important; } - .xl\:-ml-96 { - margin-left: -24rem !important; + .xl\:-mb-16 { + margin-bottom: -4rem !important; } - .xl\:-mt-px { - margin-top: -1px !important; + .xl\:-mb-20 { + margin-bottom: -5rem !important; } - .xl\:-mr-px { - margin-right: -1px !important; + .xl\:-mb-24 { + margin-bottom: -6rem !important; } - .xl\:-mb-px { - margin-bottom: -1px !important; + .xl\:-mb-28 { + margin-bottom: -7rem !important; } - .xl\:-ml-px { - margin-left: -1px !important; + .xl\:-mb-32 { + margin-bottom: -8rem !important; } - .xl\:-mt-0\.5 { - margin-top: -0.125rem !important; + .xl\:-mb-36 { + margin-bottom: -9rem !important; } - .xl\:-mr-0\.5 { - margin-right: -0.125rem !important; + .xl\:-mb-40 { + margin-bottom: -10rem !important; } - .xl\:-mb-0\.5 { - margin-bottom: -0.125rem !important; + .xl\:-mb-44 { + margin-bottom: -11rem !important; } - .xl\:-ml-0\.5 { - margin-left: -0.125rem !important; + .xl\:-mb-48 { + margin-bottom: -12rem !important; } - .xl\:-mt-1\.5 { - margin-top: -0.375rem !important; + .xl\:-mb-52 { + margin-bottom: -13rem !important; } - .xl\:-mr-1\.5 { - margin-right: -0.375rem !important; + .xl\:-mb-56 { + margin-bottom: -14rem !important; } - .xl\:-mb-1\.5 { - margin-bottom: -0.375rem !important; + .xl\:-mb-60 { + margin-bottom: -15rem !important; } - .xl\:-ml-1\.5 { - margin-left: -0.375rem !important; + .xl\:-mb-64 { + margin-bottom: -16rem !important; } - .xl\:-mt-2\.5 { - margin-top: -0.625rem !important; + .xl\:-mb-72 { + margin-bottom: -18rem !important; } - .xl\:-mr-2\.5 { - margin-right: -0.625rem !important; + .xl\:-mb-80 { + margin-bottom: -20rem !important; } - .xl\:-mb-2\.5 { - margin-bottom: -0.625rem !important; + .xl\:-mb-96 { + margin-bottom: -24rem !important; } - .xl\:-ml-2\.5 { - margin-left: -0.625rem !important; + .xl\:-mb-px { + margin-bottom: -1px !important; } - .xl\:-mt-3\.5 { - margin-top: -0.875rem !important; + .xl\:-mb-0\.5 { + margin-bottom: -0.125rem !important; } - .xl\:-mr-3\.5 { - margin-right: -0.875rem !important; + .xl\:-mb-1\.5 { + margin-bottom: -0.375rem !important; + } + + .xl\:-mb-2\.5 { + margin-bottom: -0.625rem !important; } .xl\:-mb-3\.5 { margin-bottom: -0.875rem !important; } + .xl\:ml-0 { + margin-left: 0px !important; + } + + .xl\:ml-1 { + margin-left: 0.25rem !important; + } + + .xl\:ml-2 { + margin-left: 0.5rem !important; + } + + .xl\:ml-3 { + margin-left: 0.75rem !important; + } + + .xl\:ml-4 { + margin-left: 1rem !important; + } + + .xl\:ml-5 { + margin-left: 1.25rem !important; + } + + .xl\:ml-6 { + margin-left: 1.5rem !important; + } + + .xl\:ml-7 { + margin-left: 1.75rem !important; + } + + .xl\:ml-8 { + margin-left: 2rem !important; + } + + .xl\:ml-9 { + margin-left: 2.25rem !important; + } + + .xl\:ml-10 { + margin-left: 2.5rem !important; + } + + .xl\:ml-11 { + margin-left: 2.75rem !important; + } + + .xl\:ml-12 { + margin-left: 3rem !important; + } + + .xl\:ml-14 { + margin-left: 3.5rem !important; + } + + .xl\:ml-16 { + margin-left: 4rem !important; + } + + .xl\:ml-20 { + margin-left: 5rem !important; + } + + .xl\:ml-24 { + margin-left: 6rem !important; + } + + .xl\:ml-28 { + margin-left: 7rem !important; + } + + .xl\:ml-32 { + margin-left: 8rem !important; + } + + .xl\:ml-36 { + margin-left: 9rem !important; + } + + .xl\:ml-40 { + margin-left: 10rem !important; + } + + .xl\:ml-44 { + margin-left: 11rem !important; + } + + .xl\:ml-48 { + margin-left: 12rem !important; + } + + .xl\:ml-52 { + margin-left: 13rem !important; + } + + .xl\:ml-56 { + margin-left: 14rem !important; + } + + .xl\:ml-60 { + margin-left: 15rem !important; + } + + .xl\:ml-64 { + margin-left: 16rem !important; + } + + .xl\:ml-72 { + margin-left: 18rem !important; + } + + .xl\:ml-80 { + margin-left: 20rem !important; + } + + .xl\:ml-96 { + margin-left: 24rem !important; + } + + .xl\:ml-auto { + margin-left: auto !important; + } + + .xl\:ml-px { + margin-left: 1px !important; + } + + .xl\:ml-0\.5 { + margin-left: 0.125rem !important; + } + + .xl\:ml-1\.5 { + margin-left: 0.375rem !important; + } + + .xl\:ml-2\.5 { + margin-left: 0.625rem !important; + } + + .xl\:ml-3\.5 { + margin-left: 0.875rem !important; + } + + .xl\:-ml-0 { + margin-left: 0px !important; + } + + .xl\:-ml-1 { + margin-left: -0.25rem !important; + } + + .xl\:-ml-2 { + margin-left: -0.5rem !important; + } + + .xl\:-ml-3 { + margin-left: -0.75rem !important; + } + + .xl\:-ml-4 { + margin-left: -1rem !important; + } + + .xl\:-ml-5 { + margin-left: -1.25rem !important; + } + + .xl\:-ml-6 { + margin-left: -1.5rem !important; + } + + .xl\:-ml-7 { + margin-left: -1.75rem !important; + } + + .xl\:-ml-8 { + margin-left: -2rem !important; + } + + .xl\:-ml-9 { + margin-left: -2.25rem !important; + } + + .xl\:-ml-10 { + margin-left: -2.5rem !important; + } + + .xl\:-ml-11 { + margin-left: -2.75rem !important; + } + + .xl\:-ml-12 { + margin-left: -3rem !important; + } + + .xl\:-ml-14 { + margin-left: -3.5rem !important; + } + + .xl\:-ml-16 { + margin-left: -4rem !important; + } + + .xl\:-ml-20 { + margin-left: -5rem !important; + } + + .xl\:-ml-24 { + margin-left: -6rem !important; + } + + .xl\:-ml-28 { + margin-left: -7rem !important; + } + + .xl\:-ml-32 { + margin-left: -8rem !important; + } + + .xl\:-ml-36 { + margin-left: -9rem !important; + } + + .xl\:-ml-40 { + margin-left: -10rem !important; + } + + .xl\:-ml-44 { + margin-left: -11rem !important; + } + + .xl\:-ml-48 { + margin-left: -12rem !important; + } + + .xl\:-ml-52 { + margin-left: -13rem !important; + } + + .xl\:-ml-56 { + margin-left: -14rem !important; + } + + .xl\:-ml-60 { + margin-left: -15rem !important; + } + + .xl\:-ml-64 { + margin-left: -16rem !important; + } + + .xl\:-ml-72 { + margin-left: -18rem !important; + } + + .xl\:-ml-80 { + margin-left: -20rem !important; + } + + .xl\:-ml-96 { + margin-left: -24rem !important; + } + + .xl\:-ml-px { + margin-left: -1px !important; + } + + .xl\:-ml-0\.5 { + margin-left: -0.125rem !important; + } + + .xl\:-ml-1\.5 { + margin-left: -0.375rem !important; + } + + .xl\:-ml-2\.5 { + margin-left: -0.625rem !important; + } + .xl\:-ml-3\.5 { margin-left: -0.875rem !important; } @@ -157655,1846 +157655,1846 @@ video { margin: -0.875rem !important; } - .\32xl\:my-0 { - margin-top: 0px !important; - margin-bottom: 0px !important; - } - .\32xl\:mx-0 { margin-left: 0px !important; margin-right: 0px !important; } - .\32xl\:my-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; - } - .\32xl\:mx-1 { margin-left: 0.25rem !important; margin-right: 0.25rem !important; } - .\32xl\:my-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; - } - .\32xl\:mx-2 { margin-left: 0.5rem !important; margin-right: 0.5rem !important; } - .\32xl\:my-3 { - margin-top: 0.75rem !important; - margin-bottom: 0.75rem !important; - } - .\32xl\:mx-3 { margin-left: 0.75rem !important; margin-right: 0.75rem !important; } - .\32xl\:my-4 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; - } - .\32xl\:mx-4 { margin-left: 1rem !important; margin-right: 1rem !important; } - .\32xl\:my-5 { - margin-top: 1.25rem !important; - margin-bottom: 1.25rem !important; - } - .\32xl\:mx-5 { margin-left: 1.25rem !important; margin-right: 1.25rem !important; } - .\32xl\:my-6 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; - } - .\32xl\:mx-6 { margin-left: 1.5rem !important; margin-right: 1.5rem !important; } - .\32xl\:my-7 { - margin-top: 1.75rem !important; - margin-bottom: 1.75rem !important; - } - .\32xl\:mx-7 { margin-left: 1.75rem !important; margin-right: 1.75rem !important; } - .\32xl\:my-8 { - margin-top: 2rem !important; - margin-bottom: 2rem !important; - } - .\32xl\:mx-8 { margin-left: 2rem !important; margin-right: 2rem !important; } - .\32xl\:my-9 { - margin-top: 2.25rem !important; - margin-bottom: 2.25rem !important; - } - .\32xl\:mx-9 { margin-left: 2.25rem !important; margin-right: 2.25rem !important; } - .\32xl\:my-10 { - margin-top: 2.5rem !important; - margin-bottom: 2.5rem !important; - } - .\32xl\:mx-10 { margin-left: 2.5rem !important; margin-right: 2.5rem !important; } - .\32xl\:my-11 { - margin-top: 2.75rem !important; - margin-bottom: 2.75rem !important; - } - .\32xl\:mx-11 { margin-left: 2.75rem !important; margin-right: 2.75rem !important; } - .\32xl\:my-12 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; - } - .\32xl\:mx-12 { margin-left: 3rem !important; margin-right: 3rem !important; } - .\32xl\:my-14 { - margin-top: 3.5rem !important; - margin-bottom: 3.5rem !important; - } - .\32xl\:mx-14 { margin-left: 3.5rem !important; margin-right: 3.5rem !important; } - .\32xl\:my-16 { - margin-top: 4rem !important; - margin-bottom: 4rem !important; - } - .\32xl\:mx-16 { margin-left: 4rem !important; margin-right: 4rem !important; } - .\32xl\:my-20 { - margin-top: 5rem !important; - margin-bottom: 5rem !important; - } - .\32xl\:mx-20 { margin-left: 5rem !important; margin-right: 5rem !important; } - .\32xl\:my-24 { - margin-top: 6rem !important; - margin-bottom: 6rem !important; - } - .\32xl\:mx-24 { margin-left: 6rem !important; margin-right: 6rem !important; } - .\32xl\:my-28 { - margin-top: 7rem !important; - margin-bottom: 7rem !important; - } - .\32xl\:mx-28 { margin-left: 7rem !important; margin-right: 7rem !important; } - .\32xl\:my-32 { - margin-top: 8rem !important; - margin-bottom: 8rem !important; - } - .\32xl\:mx-32 { margin-left: 8rem !important; margin-right: 8rem !important; } - .\32xl\:my-36 { - margin-top: 9rem !important; - margin-bottom: 9rem !important; - } - .\32xl\:mx-36 { margin-left: 9rem !important; margin-right: 9rem !important; } - .\32xl\:my-40 { - margin-top: 10rem !important; - margin-bottom: 10rem !important; - } - .\32xl\:mx-40 { margin-left: 10rem !important; margin-right: 10rem !important; } - .\32xl\:my-44 { - margin-top: 11rem !important; - margin-bottom: 11rem !important; - } - .\32xl\:mx-44 { margin-left: 11rem !important; margin-right: 11rem !important; } - .\32xl\:my-48 { - margin-top: 12rem !important; - margin-bottom: 12rem !important; - } - .\32xl\:mx-48 { margin-left: 12rem !important; margin-right: 12rem !important; } - .\32xl\:my-52 { - margin-top: 13rem !important; - margin-bottom: 13rem !important; - } - .\32xl\:mx-52 { margin-left: 13rem !important; margin-right: 13rem !important; } - .\32xl\:my-56 { - margin-top: 14rem !important; - margin-bottom: 14rem !important; - } - .\32xl\:mx-56 { margin-left: 14rem !important; margin-right: 14rem !important; } - .\32xl\:my-60 { - margin-top: 15rem !important; - margin-bottom: 15rem !important; - } - .\32xl\:mx-60 { margin-left: 15rem !important; margin-right: 15rem !important; } - .\32xl\:my-64 { - margin-top: 16rem !important; - margin-bottom: 16rem !important; - } - .\32xl\:mx-64 { margin-left: 16rem !important; margin-right: 16rem !important; } - .\32xl\:my-72 { - margin-top: 18rem !important; - margin-bottom: 18rem !important; - } - .\32xl\:mx-72 { margin-left: 18rem !important; margin-right: 18rem !important; } - .\32xl\:my-80 { - margin-top: 20rem !important; - margin-bottom: 20rem !important; - } - .\32xl\:mx-80 { margin-left: 20rem !important; margin-right: 20rem !important; } - .\32xl\:my-96 { - margin-top: 24rem !important; - margin-bottom: 24rem !important; - } - .\32xl\:mx-96 { margin-left: 24rem !important; margin-right: 24rem !important; } - .\32xl\:my-auto { - margin-top: auto !important; - margin-bottom: auto !important; - } - .\32xl\:mx-auto { margin-left: auto !important; margin-right: auto !important; } - .\32xl\:my-px { - margin-top: 1px !important; - margin-bottom: 1px !important; - } - .\32xl\:mx-px { margin-left: 1px !important; margin-right: 1px !important; } - .\32xl\:my-0\.5 { - margin-top: 0.125rem !important; - margin-bottom: 0.125rem !important; - } - .\32xl\:mx-0\.5 { margin-left: 0.125rem !important; margin-right: 0.125rem !important; } - .\32xl\:my-1\.5 { - margin-top: 0.375rem !important; - margin-bottom: 0.375rem !important; - } - .\32xl\:mx-1\.5 { margin-left: 0.375rem !important; margin-right: 0.375rem !important; } - .\32xl\:my-2\.5 { - margin-top: 0.625rem !important; - margin-bottom: 0.625rem !important; - } - .\32xl\:mx-2\.5 { margin-left: 0.625rem !important; margin-right: 0.625rem !important; } - .\32xl\:my-3\.5 { - margin-top: 0.875rem !important; - margin-bottom: 0.875rem !important; - } - .\32xl\:mx-3\.5 { margin-left: 0.875rem !important; margin-right: 0.875rem !important; } - .\32xl\:-my-0 { - margin-top: 0px !important; - margin-bottom: 0px !important; - } - .\32xl\:-mx-0 { margin-left: 0px !important; margin-right: 0px !important; } - .\32xl\:-my-1 { - margin-top: -0.25rem !important; - margin-bottom: -0.25rem !important; - } - .\32xl\:-mx-1 { margin-left: -0.25rem !important; margin-right: -0.25rem !important; } - .\32xl\:-my-2 { - margin-top: -0.5rem !important; - margin-bottom: -0.5rem !important; - } - .\32xl\:-mx-2 { margin-left: -0.5rem !important; margin-right: -0.5rem !important; } - .\32xl\:-my-3 { - margin-top: -0.75rem !important; - margin-bottom: -0.75rem !important; - } - .\32xl\:-mx-3 { margin-left: -0.75rem !important; margin-right: -0.75rem !important; } - .\32xl\:-my-4 { - margin-top: -1rem !important; - margin-bottom: -1rem !important; - } - .\32xl\:-mx-4 { margin-left: -1rem !important; margin-right: -1rem !important; } - .\32xl\:-my-5 { - margin-top: -1.25rem !important; - margin-bottom: -1.25rem !important; - } - .\32xl\:-mx-5 { margin-left: -1.25rem !important; margin-right: -1.25rem !important; } - .\32xl\:-my-6 { - margin-top: -1.5rem !important; - margin-bottom: -1.5rem !important; - } - .\32xl\:-mx-6 { margin-left: -1.5rem !important; margin-right: -1.5rem !important; } - .\32xl\:-my-7 { - margin-top: -1.75rem !important; - margin-bottom: -1.75rem !important; - } - .\32xl\:-mx-7 { margin-left: -1.75rem !important; margin-right: -1.75rem !important; } - .\32xl\:-my-8 { - margin-top: -2rem !important; - margin-bottom: -2rem !important; - } - .\32xl\:-mx-8 { margin-left: -2rem !important; margin-right: -2rem !important; } - .\32xl\:-my-9 { - margin-top: -2.25rem !important; - margin-bottom: -2.25rem !important; - } - .\32xl\:-mx-9 { margin-left: -2.25rem !important; margin-right: -2.25rem !important; } - .\32xl\:-my-10 { - margin-top: -2.5rem !important; - margin-bottom: -2.5rem !important; - } - .\32xl\:-mx-10 { margin-left: -2.5rem !important; margin-right: -2.5rem !important; } - .\32xl\:-my-11 { - margin-top: -2.75rem !important; - margin-bottom: -2.75rem !important; - } - .\32xl\:-mx-11 { margin-left: -2.75rem !important; margin-right: -2.75rem !important; } - .\32xl\:-my-12 { - margin-top: -3rem !important; - margin-bottom: -3rem !important; - } - .\32xl\:-mx-12 { margin-left: -3rem !important; margin-right: -3rem !important; } - .\32xl\:-my-14 { - margin-top: -3.5rem !important; - margin-bottom: -3.5rem !important; - } - .\32xl\:-mx-14 { margin-left: -3.5rem !important; margin-right: -3.5rem !important; } - .\32xl\:-my-16 { - margin-top: -4rem !important; - margin-bottom: -4rem !important; - } - .\32xl\:-mx-16 { margin-left: -4rem !important; margin-right: -4rem !important; } - .\32xl\:-my-20 { - margin-top: -5rem !important; - margin-bottom: -5rem !important; - } - .\32xl\:-mx-20 { margin-left: -5rem !important; margin-right: -5rem !important; } - .\32xl\:-my-24 { - margin-top: -6rem !important; - margin-bottom: -6rem !important; - } - .\32xl\:-mx-24 { margin-left: -6rem !important; margin-right: -6rem !important; } - .\32xl\:-my-28 { - margin-top: -7rem !important; - margin-bottom: -7rem !important; - } - .\32xl\:-mx-28 { margin-left: -7rem !important; margin-right: -7rem !important; } - .\32xl\:-my-32 { - margin-top: -8rem !important; - margin-bottom: -8rem !important; - } - .\32xl\:-mx-32 { margin-left: -8rem !important; margin-right: -8rem !important; } - .\32xl\:-my-36 { - margin-top: -9rem !important; - margin-bottom: -9rem !important; - } - .\32xl\:-mx-36 { margin-left: -9rem !important; margin-right: -9rem !important; } - .\32xl\:-my-40 { - margin-top: -10rem !important; - margin-bottom: -10rem !important; - } - .\32xl\:-mx-40 { margin-left: -10rem !important; margin-right: -10rem !important; } - .\32xl\:-my-44 { - margin-top: -11rem !important; - margin-bottom: -11rem !important; - } - .\32xl\:-mx-44 { margin-left: -11rem !important; margin-right: -11rem !important; } - .\32xl\:-my-48 { - margin-top: -12rem !important; - margin-bottom: -12rem !important; - } - .\32xl\:-mx-48 { margin-left: -12rem !important; margin-right: -12rem !important; } - .\32xl\:-my-52 { - margin-top: -13rem !important; - margin-bottom: -13rem !important; - } - .\32xl\:-mx-52 { margin-left: -13rem !important; margin-right: -13rem !important; } - .\32xl\:-my-56 { - margin-top: -14rem !important; - margin-bottom: -14rem !important; - } - .\32xl\:-mx-56 { margin-left: -14rem !important; margin-right: -14rem !important; } - .\32xl\:-my-60 { - margin-top: -15rem !important; - margin-bottom: -15rem !important; - } - .\32xl\:-mx-60 { margin-left: -15rem !important; margin-right: -15rem !important; } - .\32xl\:-my-64 { - margin-top: -16rem !important; - margin-bottom: -16rem !important; - } - .\32xl\:-mx-64 { margin-left: -16rem !important; margin-right: -16rem !important; } - .\32xl\:-my-72 { - margin-top: -18rem !important; - margin-bottom: -18rem !important; - } - .\32xl\:-mx-72 { margin-left: -18rem !important; margin-right: -18rem !important; } - .\32xl\:-my-80 { - margin-top: -20rem !important; - margin-bottom: -20rem !important; - } - .\32xl\:-mx-80 { margin-left: -20rem !important; margin-right: -20rem !important; } - .\32xl\:-my-96 { - margin-top: -24rem !important; - margin-bottom: -24rem !important; - } - .\32xl\:-mx-96 { margin-left: -24rem !important; margin-right: -24rem !important; } - .\32xl\:-my-px { - margin-top: -1px !important; - margin-bottom: -1px !important; - } - .\32xl\:-mx-px { margin-left: -1px !important; margin-right: -1px !important; } - .\32xl\:-my-0\.5 { - margin-top: -0.125rem !important; - margin-bottom: -0.125rem !important; - } - .\32xl\:-mx-0\.5 { margin-left: -0.125rem !important; margin-right: -0.125rem !important; } - .\32xl\:-my-1\.5 { - margin-top: -0.375rem !important; - margin-bottom: -0.375rem !important; - } - .\32xl\:-mx-1\.5 { margin-left: -0.375rem !important; margin-right: -0.375rem !important; } - .\32xl\:-my-2\.5 { - margin-top: -0.625rem !important; - margin-bottom: -0.625rem !important; - } - .\32xl\:-mx-2\.5 { margin-left: -0.625rem !important; margin-right: -0.625rem !important; } - .\32xl\:-my-3\.5 { - margin-top: -0.875rem !important; - margin-bottom: -0.875rem !important; - } - .\32xl\:-mx-3\.5 { margin-left: -0.875rem !important; margin-right: -0.875rem !important; } - .\32xl\:mt-0 { + .\32xl\:my-0 { margin-top: 0px !important; + margin-bottom: 0px !important; } - .\32xl\:mr-0 { - margin-right: 0px !important; + .\32xl\:my-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; } - .\32xl\:mb-0 { + .\32xl\:my-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + + .\32xl\:my-3 { + margin-top: 0.75rem !important; + margin-bottom: 0.75rem !important; + } + + .\32xl\:my-4 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + + .\32xl\:my-5 { + margin-top: 1.25rem !important; + margin-bottom: 1.25rem !important; + } + + .\32xl\:my-6 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + + .\32xl\:my-7 { + margin-top: 1.75rem !important; + margin-bottom: 1.75rem !important; + } + + .\32xl\:my-8 { + margin-top: 2rem !important; + margin-bottom: 2rem !important; + } + + .\32xl\:my-9 { + margin-top: 2.25rem !important; + margin-bottom: 2.25rem !important; + } + + .\32xl\:my-10 { + margin-top: 2.5rem !important; + margin-bottom: 2.5rem !important; + } + + .\32xl\:my-11 { + margin-top: 2.75rem !important; + margin-bottom: 2.75rem !important; + } + + .\32xl\:my-12 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + + .\32xl\:my-14 { + margin-top: 3.5rem !important; + margin-bottom: 3.5rem !important; + } + + .\32xl\:my-16 { + margin-top: 4rem !important; + margin-bottom: 4rem !important; + } + + .\32xl\:my-20 { + margin-top: 5rem !important; + margin-bottom: 5rem !important; + } + + .\32xl\:my-24 { + margin-top: 6rem !important; + margin-bottom: 6rem !important; + } + + .\32xl\:my-28 { + margin-top: 7rem !important; + margin-bottom: 7rem !important; + } + + .\32xl\:my-32 { + margin-top: 8rem !important; + margin-bottom: 8rem !important; + } + + .\32xl\:my-36 { + margin-top: 9rem !important; + margin-bottom: 9rem !important; + } + + .\32xl\:my-40 { + margin-top: 10rem !important; + margin-bottom: 10rem !important; + } + + .\32xl\:my-44 { + margin-top: 11rem !important; + margin-bottom: 11rem !important; + } + + .\32xl\:my-48 { + margin-top: 12rem !important; + margin-bottom: 12rem !important; + } + + .\32xl\:my-52 { + margin-top: 13rem !important; + margin-bottom: 13rem !important; + } + + .\32xl\:my-56 { + margin-top: 14rem !important; + margin-bottom: 14rem !important; + } + + .\32xl\:my-60 { + margin-top: 15rem !important; + margin-bottom: 15rem !important; + } + + .\32xl\:my-64 { + margin-top: 16rem !important; + margin-bottom: 16rem !important; + } + + .\32xl\:my-72 { + margin-top: 18rem !important; + margin-bottom: 18rem !important; + } + + .\32xl\:my-80 { + margin-top: 20rem !important; + margin-bottom: 20rem !important; + } + + .\32xl\:my-96 { + margin-top: 24rem !important; + margin-bottom: 24rem !important; + } + + .\32xl\:my-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + + .\32xl\:my-px { + margin-top: 1px !important; + margin-bottom: 1px !important; + } + + .\32xl\:my-0\.5 { + margin-top: 0.125rem !important; + margin-bottom: 0.125rem !important; + } + + .\32xl\:my-1\.5 { + margin-top: 0.375rem !important; + margin-bottom: 0.375rem !important; + } + + .\32xl\:my-2\.5 { + margin-top: 0.625rem !important; + margin-bottom: 0.625rem !important; + } + + .\32xl\:my-3\.5 { + margin-top: 0.875rem !important; + margin-bottom: 0.875rem !important; + } + + .\32xl\:-my-0 { + margin-top: 0px !important; margin-bottom: 0px !important; } - .\32xl\:ml-0 { - margin-left: 0px !important; + .\32xl\:-my-1 { + margin-top: -0.25rem !important; + margin-bottom: -0.25rem !important; } - .\32xl\:mt-1 { - margin-top: 0.25rem !important; + .\32xl\:-my-2 { + margin-top: -0.5rem !important; + margin-bottom: -0.5rem !important; } - .\32xl\:mr-1 { - margin-right: 0.25rem !important; + .\32xl\:-my-3 { + margin-top: -0.75rem !important; + margin-bottom: -0.75rem !important; } - .\32xl\:mb-1 { - margin-bottom: 0.25rem !important; + .\32xl\:-my-4 { + margin-top: -1rem !important; + margin-bottom: -1rem !important; } - .\32xl\:ml-1 { - margin-left: 0.25rem !important; + .\32xl\:-my-5 { + margin-top: -1.25rem !important; + margin-bottom: -1.25rem !important; } - .\32xl\:mt-2 { - margin-top: 0.5rem !important; + .\32xl\:-my-6 { + margin-top: -1.5rem !important; + margin-bottom: -1.5rem !important; } - .\32xl\:mr-2 { - margin-right: 0.5rem !important; + .\32xl\:-my-7 { + margin-top: -1.75rem !important; + margin-bottom: -1.75rem !important; } - .\32xl\:mb-2 { - margin-bottom: 0.5rem !important; + .\32xl\:-my-8 { + margin-top: -2rem !important; + margin-bottom: -2rem !important; } - .\32xl\:ml-2 { - margin-left: 0.5rem !important; + .\32xl\:-my-9 { + margin-top: -2.25rem !important; + margin-bottom: -2.25rem !important; } - .\32xl\:mt-3 { - margin-top: 0.75rem !important; + .\32xl\:-my-10 { + margin-top: -2.5rem !important; + margin-bottom: -2.5rem !important; } - .\32xl\:mr-3 { - margin-right: 0.75rem !important; + .\32xl\:-my-11 { + margin-top: -2.75rem !important; + margin-bottom: -2.75rem !important; } - .\32xl\:mb-3 { - margin-bottom: 0.75rem !important; + .\32xl\:-my-12 { + margin-top: -3rem !important; + margin-bottom: -3rem !important; } - .\32xl\:ml-3 { - margin-left: 0.75rem !important; + .\32xl\:-my-14 { + margin-top: -3.5rem !important; + margin-bottom: -3.5rem !important; } - .\32xl\:mt-4 { - margin-top: 1rem !important; + .\32xl\:-my-16 { + margin-top: -4rem !important; + margin-bottom: -4rem !important; } - .\32xl\:mr-4 { - margin-right: 1rem !important; + .\32xl\:-my-20 { + margin-top: -5rem !important; + margin-bottom: -5rem !important; } - .\32xl\:mb-4 { - margin-bottom: 1rem !important; + .\32xl\:-my-24 { + margin-top: -6rem !important; + margin-bottom: -6rem !important; } - .\32xl\:ml-4 { - margin-left: 1rem !important; + .\32xl\:-my-28 { + margin-top: -7rem !important; + margin-bottom: -7rem !important; } - .\32xl\:mt-5 { - margin-top: 1.25rem !important; + .\32xl\:-my-32 { + margin-top: -8rem !important; + margin-bottom: -8rem !important; } - .\32xl\:mr-5 { - margin-right: 1.25rem !important; + .\32xl\:-my-36 { + margin-top: -9rem !important; + margin-bottom: -9rem !important; } - .\32xl\:mb-5 { - margin-bottom: 1.25rem !important; + .\32xl\:-my-40 { + margin-top: -10rem !important; + margin-bottom: -10rem !important; } - .\32xl\:ml-5 { - margin-left: 1.25rem !important; + .\32xl\:-my-44 { + margin-top: -11rem !important; + margin-bottom: -11rem !important; } - .\32xl\:mt-6 { - margin-top: 1.5rem !important; + .\32xl\:-my-48 { + margin-top: -12rem !important; + margin-bottom: -12rem !important; } - .\32xl\:mr-6 { - margin-right: 1.5rem !important; + .\32xl\:-my-52 { + margin-top: -13rem !important; + margin-bottom: -13rem !important; } - .\32xl\:mb-6 { - margin-bottom: 1.5rem !important; + .\32xl\:-my-56 { + margin-top: -14rem !important; + margin-bottom: -14rem !important; } - .\32xl\:ml-6 { - margin-left: 1.5rem !important; + .\32xl\:-my-60 { + margin-top: -15rem !important; + margin-bottom: -15rem !important; } - .\32xl\:mt-7 { - margin-top: 1.75rem !important; + .\32xl\:-my-64 { + margin-top: -16rem !important; + margin-bottom: -16rem !important; } - .\32xl\:mr-7 { - margin-right: 1.75rem !important; + .\32xl\:-my-72 { + margin-top: -18rem !important; + margin-bottom: -18rem !important; } - .\32xl\:mb-7 { - margin-bottom: 1.75rem !important; + .\32xl\:-my-80 { + margin-top: -20rem !important; + margin-bottom: -20rem !important; } - .\32xl\:ml-7 { - margin-left: 1.75rem !important; + .\32xl\:-my-96 { + margin-top: -24rem !important; + margin-bottom: -24rem !important; } - .\32xl\:mt-8 { - margin-top: 2rem !important; + .\32xl\:-my-px { + margin-top: -1px !important; + margin-bottom: -1px !important; } - .\32xl\:mr-8 { - margin-right: 2rem !important; + .\32xl\:-my-0\.5 { + margin-top: -0.125rem !important; + margin-bottom: -0.125rem !important; } - .\32xl\:mb-8 { - margin-bottom: 2rem !important; + .\32xl\:-my-1\.5 { + margin-top: -0.375rem !important; + margin-bottom: -0.375rem !important; } - .\32xl\:ml-8 { - margin-left: 2rem !important; + .\32xl\:-my-2\.5 { + margin-top: -0.625rem !important; + margin-bottom: -0.625rem !important; } - .\32xl\:mt-9 { - margin-top: 2.25rem !important; + .\32xl\:-my-3\.5 { + margin-top: -0.875rem !important; + margin-bottom: -0.875rem !important; } - .\32xl\:mr-9 { - margin-right: 2.25rem !important; + .\32xl\:mt-0 { + margin-top: 0px !important; } - .\32xl\:mb-9 { - margin-bottom: 2.25rem !important; + .\32xl\:mt-1 { + margin-top: 0.25rem !important; } - .\32xl\:ml-9 { - margin-left: 2.25rem !important; + .\32xl\:mt-2 { + margin-top: 0.5rem !important; } - .\32xl\:mt-10 { - margin-top: 2.5rem !important; + .\32xl\:mt-3 { + margin-top: 0.75rem !important; } - .\32xl\:mr-10 { - margin-right: 2.5rem !important; + .\32xl\:mt-4 { + margin-top: 1rem !important; } - .\32xl\:mb-10 { - margin-bottom: 2.5rem !important; + .\32xl\:mt-5 { + margin-top: 1.25rem !important; } - .\32xl\:ml-10 { - margin-left: 2.5rem !important; + .\32xl\:mt-6 { + margin-top: 1.5rem !important; } - .\32xl\:mt-11 { - margin-top: 2.75rem !important; + .\32xl\:mt-7 { + margin-top: 1.75rem !important; } - .\32xl\:mr-11 { - margin-right: 2.75rem !important; + .\32xl\:mt-8 { + margin-top: 2rem !important; } - .\32xl\:mb-11 { - margin-bottom: 2.75rem !important; + .\32xl\:mt-9 { + margin-top: 2.25rem !important; } - .\32xl\:ml-11 { - margin-left: 2.75rem !important; + .\32xl\:mt-10 { + margin-top: 2.5rem !important; + } + + .\32xl\:mt-11 { + margin-top: 2.75rem !important; } .\32xl\:mt-12 { margin-top: 3rem !important; } - .\32xl\:mr-12 { - margin-right: 3rem !important; + .\32xl\:mt-14 { + margin-top: 3.5rem !important; } - .\32xl\:mb-12 { - margin-bottom: 3rem !important; + .\32xl\:mt-16 { + margin-top: 4rem !important; } - .\32xl\:ml-12 { - margin-left: 3rem !important; + .\32xl\:mt-20 { + margin-top: 5rem !important; } - .\32xl\:mt-14 { - margin-top: 3.5rem !important; + .\32xl\:mt-24 { + margin-top: 6rem !important; } - .\32xl\:mr-14 { - margin-right: 3.5rem !important; + .\32xl\:mt-28 { + margin-top: 7rem !important; } - .\32xl\:mb-14 { - margin-bottom: 3.5rem !important; + .\32xl\:mt-32 { + margin-top: 8rem !important; } - .\32xl\:ml-14 { - margin-left: 3.5rem !important; + .\32xl\:mt-36 { + margin-top: 9rem !important; } - .\32xl\:mt-16 { - margin-top: 4rem !important; + .\32xl\:mt-40 { + margin-top: 10rem !important; } - .\32xl\:mr-16 { - margin-right: 4rem !important; + .\32xl\:mt-44 { + margin-top: 11rem !important; } - .\32xl\:mb-16 { - margin-bottom: 4rem !important; + .\32xl\:mt-48 { + margin-top: 12rem !important; } - .\32xl\:ml-16 { - margin-left: 4rem !important; + .\32xl\:mt-52 { + margin-top: 13rem !important; } - .\32xl\:mt-20 { - margin-top: 5rem !important; + .\32xl\:mt-56 { + margin-top: 14rem !important; } - .\32xl\:mr-20 { - margin-right: 5rem !important; + .\32xl\:mt-60 { + margin-top: 15rem !important; } - .\32xl\:mb-20 { - margin-bottom: 5rem !important; + .\32xl\:mt-64 { + margin-top: 16rem !important; } - .\32xl\:ml-20 { - margin-left: 5rem !important; + .\32xl\:mt-72 { + margin-top: 18rem !important; } - .\32xl\:mt-24 { - margin-top: 6rem !important; + .\32xl\:mt-80 { + margin-top: 20rem !important; } - .\32xl\:mr-24 { - margin-right: 6rem !important; + .\32xl\:mt-96 { + margin-top: 24rem !important; } - .\32xl\:mb-24 { - margin-bottom: 6rem !important; + .\32xl\:mt-auto { + margin-top: auto !important; } - .\32xl\:ml-24 { - margin-left: 6rem !important; + .\32xl\:mt-px { + margin-top: 1px !important; } - .\32xl\:mt-28 { - margin-top: 7rem !important; + .\32xl\:mt-0\.5 { + margin-top: 0.125rem !important; } - .\32xl\:mr-28 { - margin-right: 7rem !important; + .\32xl\:mt-1\.5 { + margin-top: 0.375rem !important; } - .\32xl\:mb-28 { - margin-bottom: 7rem !important; + .\32xl\:mt-2\.5 { + margin-top: 0.625rem !important; } - .\32xl\:ml-28 { - margin-left: 7rem !important; + .\32xl\:mt-3\.5 { + margin-top: 0.875rem !important; } - .\32xl\:mt-32 { - margin-top: 8rem !important; + .\32xl\:-mt-0 { + margin-top: 0px !important; } - .\32xl\:mr-32 { - margin-right: 8rem !important; + .\32xl\:-mt-1 { + margin-top: -0.25rem !important; } - .\32xl\:mb-32 { - margin-bottom: 8rem !important; + .\32xl\:-mt-2 { + margin-top: -0.5rem !important; } - .\32xl\:ml-32 { - margin-left: 8rem !important; + .\32xl\:-mt-3 { + margin-top: -0.75rem !important; } - .\32xl\:mt-36 { - margin-top: 9rem !important; + .\32xl\:-mt-4 { + margin-top: -1rem !important; } - .\32xl\:mr-36 { - margin-right: 9rem !important; + .\32xl\:-mt-5 { + margin-top: -1.25rem !important; } - .\32xl\:mb-36 { - margin-bottom: 9rem !important; + .\32xl\:-mt-6 { + margin-top: -1.5rem !important; } - .\32xl\:ml-36 { - margin-left: 9rem !important; + .\32xl\:-mt-7 { + margin-top: -1.75rem !important; } - .\32xl\:mt-40 { - margin-top: 10rem !important; + .\32xl\:-mt-8 { + margin-top: -2rem !important; } - .\32xl\:mr-40 { - margin-right: 10rem !important; + .\32xl\:-mt-9 { + margin-top: -2.25rem !important; } - .\32xl\:mb-40 { - margin-bottom: 10rem !important; + .\32xl\:-mt-10 { + margin-top: -2.5rem !important; } - .\32xl\:ml-40 { - margin-left: 10rem !important; + .\32xl\:-mt-11 { + margin-top: -2.75rem !important; } - .\32xl\:mt-44 { - margin-top: 11rem !important; + .\32xl\:-mt-12 { + margin-top: -3rem !important; } - .\32xl\:mr-44 { - margin-right: 11rem !important; + .\32xl\:-mt-14 { + margin-top: -3.5rem !important; } - .\32xl\:mb-44 { - margin-bottom: 11rem !important; + .\32xl\:-mt-16 { + margin-top: -4rem !important; } - .\32xl\:ml-44 { - margin-left: 11rem !important; + .\32xl\:-mt-20 { + margin-top: -5rem !important; } - .\32xl\:mt-48 { - margin-top: 12rem !important; + .\32xl\:-mt-24 { + margin-top: -6rem !important; } - .\32xl\:mr-48 { - margin-right: 12rem !important; + .\32xl\:-mt-28 { + margin-top: -7rem !important; } - .\32xl\:mb-48 { - margin-bottom: 12rem !important; + .\32xl\:-mt-32 { + margin-top: -8rem !important; } - .\32xl\:ml-48 { - margin-left: 12rem !important; + .\32xl\:-mt-36 { + margin-top: -9rem !important; } - .\32xl\:mt-52 { - margin-top: 13rem !important; + .\32xl\:-mt-40 { + margin-top: -10rem !important; } - .\32xl\:mr-52 { - margin-right: 13rem !important; + .\32xl\:-mt-44 { + margin-top: -11rem !important; } - .\32xl\:mb-52 { - margin-bottom: 13rem !important; + .\32xl\:-mt-48 { + margin-top: -12rem !important; } - .\32xl\:ml-52 { - margin-left: 13rem !important; + .\32xl\:-mt-52 { + margin-top: -13rem !important; } - .\32xl\:mt-56 { - margin-top: 14rem !important; + .\32xl\:-mt-56 { + margin-top: -14rem !important; } - .\32xl\:mr-56 { - margin-right: 14rem !important; + .\32xl\:-mt-60 { + margin-top: -15rem !important; } - .\32xl\:mb-56 { - margin-bottom: 14rem !important; + .\32xl\:-mt-64 { + margin-top: -16rem !important; } - .\32xl\:ml-56 { - margin-left: 14rem !important; + .\32xl\:-mt-72 { + margin-top: -18rem !important; } - .\32xl\:mt-60 { - margin-top: 15rem !important; + .\32xl\:-mt-80 { + margin-top: -20rem !important; } - .\32xl\:mr-60 { - margin-right: 15rem !important; + .\32xl\:-mt-96 { + margin-top: -24rem !important; } - .\32xl\:mb-60 { - margin-bottom: 15rem !important; + .\32xl\:-mt-px { + margin-top: -1px !important; } - .\32xl\:ml-60 { - margin-left: 15rem !important; + .\32xl\:-mt-0\.5 { + margin-top: -0.125rem !important; } - .\32xl\:mt-64 { - margin-top: 16rem !important; + .\32xl\:-mt-1\.5 { + margin-top: -0.375rem !important; } - .\32xl\:mr-64 { - margin-right: 16rem !important; + .\32xl\:-mt-2\.5 { + margin-top: -0.625rem !important; } - .\32xl\:mb-64 { - margin-bottom: 16rem !important; + .\32xl\:-mt-3\.5 { + margin-top: -0.875rem !important; } - .\32xl\:ml-64 { - margin-left: 16rem !important; + .\32xl\:mr-0 { + margin-right: 0px !important; } - .\32xl\:mt-72 { - margin-top: 18rem !important; + .\32xl\:mr-1 { + margin-right: 0.25rem !important; } - .\32xl\:mr-72 { - margin-right: 18rem !important; + .\32xl\:mr-2 { + margin-right: 0.5rem !important; } - .\32xl\:mb-72 { - margin-bottom: 18rem !important; + .\32xl\:mr-3 { + margin-right: 0.75rem !important; } - .\32xl\:ml-72 { - margin-left: 18rem !important; + .\32xl\:mr-4 { + margin-right: 1rem !important; } - .\32xl\:mt-80 { - margin-top: 20rem !important; + .\32xl\:mr-5 { + margin-right: 1.25rem !important; } - .\32xl\:mr-80 { - margin-right: 20rem !important; + .\32xl\:mr-6 { + margin-right: 1.5rem !important; } - .\32xl\:mb-80 { - margin-bottom: 20rem !important; + .\32xl\:mr-7 { + margin-right: 1.75rem !important; } - .\32xl\:ml-80 { - margin-left: 20rem !important; + .\32xl\:mr-8 { + margin-right: 2rem !important; } - .\32xl\:mt-96 { - margin-top: 24rem !important; + .\32xl\:mr-9 { + margin-right: 2.25rem !important; } - .\32xl\:mr-96 { - margin-right: 24rem !important; + .\32xl\:mr-10 { + margin-right: 2.5rem !important; } - .\32xl\:mb-96 { - margin-bottom: 24rem !important; + .\32xl\:mr-11 { + margin-right: 2.75rem !important; } - .\32xl\:ml-96 { - margin-left: 24rem !important; + .\32xl\:mr-12 { + margin-right: 3rem !important; } - .\32xl\:mt-auto { - margin-top: auto !important; + .\32xl\:mr-14 { + margin-right: 3.5rem !important; } - .\32xl\:mr-auto { - margin-right: auto !important; + .\32xl\:mr-16 { + margin-right: 4rem !important; } - .\32xl\:mb-auto { - margin-bottom: auto !important; + .\32xl\:mr-20 { + margin-right: 5rem !important; } - .\32xl\:ml-auto { - margin-left: auto !important; + .\32xl\:mr-24 { + margin-right: 6rem !important; } - .\32xl\:mt-px { - margin-top: 1px !important; + .\32xl\:mr-28 { + margin-right: 7rem !important; } - .\32xl\:mr-px { - margin-right: 1px !important; + .\32xl\:mr-32 { + margin-right: 8rem !important; } - .\32xl\:mb-px { - margin-bottom: 1px !important; + .\32xl\:mr-36 { + margin-right: 9rem !important; } - .\32xl\:ml-px { - margin-left: 1px !important; + .\32xl\:mr-40 { + margin-right: 10rem !important; } - .\32xl\:mt-0\.5 { - margin-top: 0.125rem !important; + .\32xl\:mr-44 { + margin-right: 11rem !important; } - .\32xl\:mr-0\.5 { - margin-right: 0.125rem !important; + .\32xl\:mr-48 { + margin-right: 12rem !important; } - .\32xl\:mb-0\.5 { - margin-bottom: 0.125rem !important; + .\32xl\:mr-52 { + margin-right: 13rem !important; } - .\32xl\:ml-0\.5 { - margin-left: 0.125rem !important; + .\32xl\:mr-56 { + margin-right: 14rem !important; } - .\32xl\:mt-1\.5 { - margin-top: 0.375rem !important; + .\32xl\:mr-60 { + margin-right: 15rem !important; } - .\32xl\:mr-1\.5 { - margin-right: 0.375rem !important; + .\32xl\:mr-64 { + margin-right: 16rem !important; } - .\32xl\:mb-1\.5 { - margin-bottom: 0.375rem !important; + .\32xl\:mr-72 { + margin-right: 18rem !important; } - .\32xl\:ml-1\.5 { - margin-left: 0.375rem !important; + .\32xl\:mr-80 { + margin-right: 20rem !important; } - .\32xl\:mt-2\.5 { - margin-top: 0.625rem !important; + .\32xl\:mr-96 { + margin-right: 24rem !important; } - .\32xl\:mr-2\.5 { - margin-right: 0.625rem !important; + .\32xl\:mr-auto { + margin-right: auto !important; } - .\32xl\:mb-2\.5 { - margin-bottom: 0.625rem !important; + .\32xl\:mr-px { + margin-right: 1px !important; } - .\32xl\:ml-2\.5 { - margin-left: 0.625rem !important; + .\32xl\:mr-0\.5 { + margin-right: 0.125rem !important; } - .\32xl\:mt-3\.5 { - margin-top: 0.875rem !important; + .\32xl\:mr-1\.5 { + margin-right: 0.375rem !important; + } + + .\32xl\:mr-2\.5 { + margin-right: 0.625rem !important; } .\32xl\:mr-3\.5 { margin-right: 0.875rem !important; } - .\32xl\:mb-3\.5 { - margin-bottom: 0.875rem !important; + .\32xl\:-mr-0 { + margin-right: 0px !important; } - .\32xl\:ml-3\.5 { - margin-left: 0.875rem !important; + .\32xl\:-mr-1 { + margin-right: -0.25rem !important; } - .\32xl\:-mt-0 { - margin-top: 0px !important; + .\32xl\:-mr-2 { + margin-right: -0.5rem !important; } - .\32xl\:-mr-0 { - margin-right: 0px !important; + .\32xl\:-mr-3 { + margin-right: -0.75rem !important; } - .\32xl\:-mb-0 { + .\32xl\:-mr-4 { + margin-right: -1rem !important; + } + + .\32xl\:-mr-5 { + margin-right: -1.25rem !important; + } + + .\32xl\:-mr-6 { + margin-right: -1.5rem !important; + } + + .\32xl\:-mr-7 { + margin-right: -1.75rem !important; + } + + .\32xl\:-mr-8 { + margin-right: -2rem !important; + } + + .\32xl\:-mr-9 { + margin-right: -2.25rem !important; + } + + .\32xl\:-mr-10 { + margin-right: -2.5rem !important; + } + + .\32xl\:-mr-11 { + margin-right: -2.75rem !important; + } + + .\32xl\:-mr-12 { + margin-right: -3rem !important; + } + + .\32xl\:-mr-14 { + margin-right: -3.5rem !important; + } + + .\32xl\:-mr-16 { + margin-right: -4rem !important; + } + + .\32xl\:-mr-20 { + margin-right: -5rem !important; + } + + .\32xl\:-mr-24 { + margin-right: -6rem !important; + } + + .\32xl\:-mr-28 { + margin-right: -7rem !important; + } + + .\32xl\:-mr-32 { + margin-right: -8rem !important; + } + + .\32xl\:-mr-36 { + margin-right: -9rem !important; + } + + .\32xl\:-mr-40 { + margin-right: -10rem !important; + } + + .\32xl\:-mr-44 { + margin-right: -11rem !important; + } + + .\32xl\:-mr-48 { + margin-right: -12rem !important; + } + + .\32xl\:-mr-52 { + margin-right: -13rem !important; + } + + .\32xl\:-mr-56 { + margin-right: -14rem !important; + } + + .\32xl\:-mr-60 { + margin-right: -15rem !important; + } + + .\32xl\:-mr-64 { + margin-right: -16rem !important; + } + + .\32xl\:-mr-72 { + margin-right: -18rem !important; + } + + .\32xl\:-mr-80 { + margin-right: -20rem !important; + } + + .\32xl\:-mr-96 { + margin-right: -24rem !important; + } + + .\32xl\:-mr-px { + margin-right: -1px !important; + } + + .\32xl\:-mr-0\.5 { + margin-right: -0.125rem !important; + } + + .\32xl\:-mr-1\.5 { + margin-right: -0.375rem !important; + } + + .\32xl\:-mr-2\.5 { + margin-right: -0.625rem !important; + } + + .\32xl\:-mr-3\.5 { + margin-right: -0.875rem !important; + } + + .\32xl\:mb-0 { margin-bottom: 0px !important; } - .\32xl\:-ml-0 { - margin-left: 0px !important; + .\32xl\:mb-1 { + margin-bottom: 0.25rem !important; } - .\32xl\:-mt-1 { - margin-top: -0.25rem !important; + .\32xl\:mb-2 { + margin-bottom: 0.5rem !important; } - .\32xl\:-mr-1 { - margin-right: -0.25rem !important; + .\32xl\:mb-3 { + margin-bottom: 0.75rem !important; } - .\32xl\:-mb-1 { - margin-bottom: -0.25rem !important; + .\32xl\:mb-4 { + margin-bottom: 1rem !important; } - .\32xl\:-ml-1 { - margin-left: -0.25rem !important; + .\32xl\:mb-5 { + margin-bottom: 1.25rem !important; } - .\32xl\:-mt-2 { - margin-top: -0.5rem !important; + .\32xl\:mb-6 { + margin-bottom: 1.5rem !important; } - .\32xl\:-mr-2 { - margin-right: -0.5rem !important; + .\32xl\:mb-7 { + margin-bottom: 1.75rem !important; } - .\32xl\:-mb-2 { - margin-bottom: -0.5rem !important; + .\32xl\:mb-8 { + margin-bottom: 2rem !important; } - .\32xl\:-ml-2 { - margin-left: -0.5rem !important; + .\32xl\:mb-9 { + margin-bottom: 2.25rem !important; } - .\32xl\:-mt-3 { - margin-top: -0.75rem !important; + .\32xl\:mb-10 { + margin-bottom: 2.5rem !important; } - .\32xl\:-mr-3 { - margin-right: -0.75rem !important; + .\32xl\:mb-11 { + margin-bottom: 2.75rem !important; } - .\32xl\:-mb-3 { - margin-bottom: -0.75rem !important; + .\32xl\:mb-12 { + margin-bottom: 3rem !important; } - .\32xl\:-ml-3 { - margin-left: -0.75rem !important; + .\32xl\:mb-14 { + margin-bottom: 3.5rem !important; } - .\32xl\:-mt-4 { - margin-top: -1rem !important; + .\32xl\:mb-16 { + margin-bottom: 4rem !important; } - .\32xl\:-mr-4 { - margin-right: -1rem !important; + .\32xl\:mb-20 { + margin-bottom: 5rem !important; } - .\32xl\:-mb-4 { - margin-bottom: -1rem !important; + .\32xl\:mb-24 { + margin-bottom: 6rem !important; } - .\32xl\:-ml-4 { - margin-left: -1rem !important; + .\32xl\:mb-28 { + margin-bottom: 7rem !important; } - .\32xl\:-mt-5 { - margin-top: -1.25rem !important; + .\32xl\:mb-32 { + margin-bottom: 8rem !important; } - .\32xl\:-mr-5 { - margin-right: -1.25rem !important; + .\32xl\:mb-36 { + margin-bottom: 9rem !important; } - .\32xl\:-mb-5 { - margin-bottom: -1.25rem !important; + .\32xl\:mb-40 { + margin-bottom: 10rem !important; } - .\32xl\:-ml-5 { - margin-left: -1.25rem !important; + .\32xl\:mb-44 { + margin-bottom: 11rem !important; } - .\32xl\:-mt-6 { - margin-top: -1.5rem !important; + .\32xl\:mb-48 { + margin-bottom: 12rem !important; } - .\32xl\:-mr-6 { - margin-right: -1.5rem !important; + .\32xl\:mb-52 { + margin-bottom: 13rem !important; } - .\32xl\:-mb-6 { - margin-bottom: -1.5rem !important; + .\32xl\:mb-56 { + margin-bottom: 14rem !important; } - .\32xl\:-ml-6 { - margin-left: -1.5rem !important; + .\32xl\:mb-60 { + margin-bottom: 15rem !important; } - .\32xl\:-mt-7 { - margin-top: -1.75rem !important; + .\32xl\:mb-64 { + margin-bottom: 16rem !important; } - .\32xl\:-mr-7 { - margin-right: -1.75rem !important; + .\32xl\:mb-72 { + margin-bottom: 18rem !important; } - .\32xl\:-mb-7 { - margin-bottom: -1.75rem !important; + .\32xl\:mb-80 { + margin-bottom: 20rem !important; } - .\32xl\:-ml-7 { - margin-left: -1.75rem !important; + .\32xl\:mb-96 { + margin-bottom: 24rem !important; } - .\32xl\:-mt-8 { - margin-top: -2rem !important; + .\32xl\:mb-auto { + margin-bottom: auto !important; } - .\32xl\:-mr-8 { - margin-right: -2rem !important; + .\32xl\:mb-px { + margin-bottom: 1px !important; } - .\32xl\:-mb-8 { - margin-bottom: -2rem !important; + .\32xl\:mb-0\.5 { + margin-bottom: 0.125rem !important; } - .\32xl\:-ml-8 { - margin-left: -2rem !important; + .\32xl\:mb-1\.5 { + margin-bottom: 0.375rem !important; } - .\32xl\:-mt-9 { - margin-top: -2.25rem !important; + .\32xl\:mb-2\.5 { + margin-bottom: 0.625rem !important; } - .\32xl\:-mr-9 { - margin-right: -2.25rem !important; + .\32xl\:mb-3\.5 { + margin-bottom: 0.875rem !important; } - .\32xl\:-mb-9 { - margin-bottom: -2.25rem !important; + .\32xl\:-mb-0 { + margin-bottom: 0px !important; } - .\32xl\:-ml-9 { - margin-left: -2.25rem !important; + .\32xl\:-mb-1 { + margin-bottom: -0.25rem !important; } - .\32xl\:-mt-10 { - margin-top: -2.5rem !important; + .\32xl\:-mb-2 { + margin-bottom: -0.5rem !important; } - .\32xl\:-mr-10 { - margin-right: -2.5rem !important; + .\32xl\:-mb-3 { + margin-bottom: -0.75rem !important; } - .\32xl\:-mb-10 { - margin-bottom: -2.5rem !important; + .\32xl\:-mb-4 { + margin-bottom: -1rem !important; } - .\32xl\:-ml-10 { - margin-left: -2.5rem !important; + .\32xl\:-mb-5 { + margin-bottom: -1.25rem !important; } - .\32xl\:-mt-11 { - margin-top: -2.75rem !important; + .\32xl\:-mb-6 { + margin-bottom: -1.5rem !important; } - .\32xl\:-mr-11 { - margin-right: -2.75rem !important; + .\32xl\:-mb-7 { + margin-bottom: -1.75rem !important; } - .\32xl\:-mb-11 { - margin-bottom: -2.75rem !important; + .\32xl\:-mb-8 { + margin-bottom: -2rem !important; } - .\32xl\:-ml-11 { - margin-left: -2.75rem !important; + .\32xl\:-mb-9 { + margin-bottom: -2.25rem !important; } - .\32xl\:-mt-12 { - margin-top: -3rem !important; + .\32xl\:-mb-10 { + margin-bottom: -2.5rem !important; } - .\32xl\:-mr-12 { - margin-right: -3rem !important; + .\32xl\:-mb-11 { + margin-bottom: -2.75rem !important; } .\32xl\:-mb-12 { margin-bottom: -3rem !important; } - .\32xl\:-ml-12 { - margin-left: -3rem !important; + .\32xl\:-mb-14 { + margin-bottom: -3.5rem !important; } - .\32xl\:-mt-14 { - margin-top: -3.5rem !important; + .\32xl\:-mb-16 { + margin-bottom: -4rem !important; } - .\32xl\:-mr-14 { - margin-right: -3.5rem !important; + .\32xl\:-mb-20 { + margin-bottom: -5rem !important; } - .\32xl\:-mb-14 { - margin-bottom: -3.5rem !important; + .\32xl\:-mb-24 { + margin-bottom: -6rem !important; } - .\32xl\:-ml-14 { - margin-left: -3.5rem !important; + .\32xl\:-mb-28 { + margin-bottom: -7rem !important; } - .\32xl\:-mt-16 { - margin-top: -4rem !important; + .\32xl\:-mb-32 { + margin-bottom: -8rem !important; } - .\32xl\:-mr-16 { - margin-right: -4rem !important; + .\32xl\:-mb-36 { + margin-bottom: -9rem !important; } - .\32xl\:-mb-16 { - margin-bottom: -4rem !important; + .\32xl\:-mb-40 { + margin-bottom: -10rem !important; } - .\32xl\:-ml-16 { - margin-left: -4rem !important; + .\32xl\:-mb-44 { + margin-bottom: -11rem !important; } - .\32xl\:-mt-20 { - margin-top: -5rem !important; + .\32xl\:-mb-48 { + margin-bottom: -12rem !important; } - .\32xl\:-mr-20 { - margin-right: -5rem !important; + .\32xl\:-mb-52 { + margin-bottom: -13rem !important; } - .\32xl\:-mb-20 { - margin-bottom: -5rem !important; + .\32xl\:-mb-56 { + margin-bottom: -14rem !important; } - .\32xl\:-ml-20 { - margin-left: -5rem !important; + .\32xl\:-mb-60 { + margin-bottom: -15rem !important; } - .\32xl\:-mt-24 { - margin-top: -6rem !important; + .\32xl\:-mb-64 { + margin-bottom: -16rem !important; } - .\32xl\:-mr-24 { - margin-right: -6rem !important; + .\32xl\:-mb-72 { + margin-bottom: -18rem !important; } - .\32xl\:-mb-24 { - margin-bottom: -6rem !important; + .\32xl\:-mb-80 { + margin-bottom: -20rem !important; } - .\32xl\:-ml-24 { - margin-left: -6rem !important; + .\32xl\:-mb-96 { + margin-bottom: -24rem !important; } - .\32xl\:-mt-28 { - margin-top: -7rem !important; + .\32xl\:-mb-px { + margin-bottom: -1px !important; } - .\32xl\:-mr-28 { - margin-right: -7rem !important; + .\32xl\:-mb-0\.5 { + margin-bottom: -0.125rem !important; } - .\32xl\:-mb-28 { - margin-bottom: -7rem !important; + .\32xl\:-mb-1\.5 { + margin-bottom: -0.375rem !important; } - .\32xl\:-ml-28 { - margin-left: -7rem !important; + .\32xl\:-mb-2\.5 { + margin-bottom: -0.625rem !important; } - .\32xl\:-mt-32 { - margin-top: -8rem !important; + .\32xl\:-mb-3\.5 { + margin-bottom: -0.875rem !important; } - .\32xl\:-mr-32 { - margin-right: -8rem !important; + .\32xl\:ml-0 { + margin-left: 0px !important; } - .\32xl\:-mb-32 { - margin-bottom: -8rem !important; + .\32xl\:ml-1 { + margin-left: 0.25rem !important; } - .\32xl\:-ml-32 { - margin-left: -8rem !important; + .\32xl\:ml-2 { + margin-left: 0.5rem !important; } - .\32xl\:-mt-36 { - margin-top: -9rem !important; + .\32xl\:ml-3 { + margin-left: 0.75rem !important; } - .\32xl\:-mr-36 { - margin-right: -9rem !important; + .\32xl\:ml-4 { + margin-left: 1rem !important; } - .\32xl\:-mb-36 { - margin-bottom: -9rem !important; + .\32xl\:ml-5 { + margin-left: 1.25rem !important; } - .\32xl\:-ml-36 { - margin-left: -9rem !important; + .\32xl\:ml-6 { + margin-left: 1.5rem !important; } - .\32xl\:-mt-40 { - margin-top: -10rem !important; + .\32xl\:ml-7 { + margin-left: 1.75rem !important; } - .\32xl\:-mr-40 { - margin-right: -10rem !important; + .\32xl\:ml-8 { + margin-left: 2rem !important; } - .\32xl\:-mb-40 { - margin-bottom: -10rem !important; + .\32xl\:ml-9 { + margin-left: 2.25rem !important; } - .\32xl\:-ml-40 { - margin-left: -10rem !important; + .\32xl\:ml-10 { + margin-left: 2.5rem !important; } - .\32xl\:-mt-44 { - margin-top: -11rem !important; + .\32xl\:ml-11 { + margin-left: 2.75rem !important; } - .\32xl\:-mr-44 { - margin-right: -11rem !important; + .\32xl\:ml-12 { + margin-left: 3rem !important; } - .\32xl\:-mb-44 { - margin-bottom: -11rem !important; + .\32xl\:ml-14 { + margin-left: 3.5rem !important; } - .\32xl\:-ml-44 { - margin-left: -11rem !important; + .\32xl\:ml-16 { + margin-left: 4rem !important; } - .\32xl\:-mt-48 { - margin-top: -12rem !important; + .\32xl\:ml-20 { + margin-left: 5rem !important; } - .\32xl\:-mr-48 { - margin-right: -12rem !important; + .\32xl\:ml-24 { + margin-left: 6rem !important; } - .\32xl\:-mb-48 { - margin-bottom: -12rem !important; + .\32xl\:ml-28 { + margin-left: 7rem !important; } - .\32xl\:-ml-48 { - margin-left: -12rem !important; + .\32xl\:ml-32 { + margin-left: 8rem !important; } - .\32xl\:-mt-52 { - margin-top: -13rem !important; + .\32xl\:ml-36 { + margin-left: 9rem !important; } - .\32xl\:-mr-52 { - margin-right: -13rem !important; + .\32xl\:ml-40 { + margin-left: 10rem !important; } - .\32xl\:-mb-52 { - margin-bottom: -13rem !important; + .\32xl\:ml-44 { + margin-left: 11rem !important; } - .\32xl\:-ml-52 { - margin-left: -13rem !important; + .\32xl\:ml-48 { + margin-left: 12rem !important; } - .\32xl\:-mt-56 { - margin-top: -14rem !important; + .\32xl\:ml-52 { + margin-left: 13rem !important; } - .\32xl\:-mr-56 { - margin-right: -14rem !important; + .\32xl\:ml-56 { + margin-left: 14rem !important; } - .\32xl\:-mb-56 { - margin-bottom: -14rem !important; + .\32xl\:ml-60 { + margin-left: 15rem !important; } - .\32xl\:-ml-56 { - margin-left: -14rem !important; + .\32xl\:ml-64 { + margin-left: 16rem !important; } - .\32xl\:-mt-60 { - margin-top: -15rem !important; + .\32xl\:ml-72 { + margin-left: 18rem !important; } - .\32xl\:-mr-60 { - margin-right: -15rem !important; + .\32xl\:ml-80 { + margin-left: 20rem !important; } - .\32xl\:-mb-60 { - margin-bottom: -15rem !important; + .\32xl\:ml-96 { + margin-left: 24rem !important; } - .\32xl\:-ml-60 { - margin-left: -15rem !important; + .\32xl\:ml-auto { + margin-left: auto !important; } - .\32xl\:-mt-64 { - margin-top: -16rem !important; + .\32xl\:ml-px { + margin-left: 1px !important; } - .\32xl\:-mr-64 { - margin-right: -16rem !important; + .\32xl\:ml-0\.5 { + margin-left: 0.125rem !important; } - .\32xl\:-mb-64 { - margin-bottom: -16rem !important; + .\32xl\:ml-1\.5 { + margin-left: 0.375rem !important; } - .\32xl\:-ml-64 { - margin-left: -16rem !important; + .\32xl\:ml-2\.5 { + margin-left: 0.625rem !important; } - .\32xl\:-mt-72 { - margin-top: -18rem !important; + .\32xl\:ml-3\.5 { + margin-left: 0.875rem !important; } - .\32xl\:-mr-72 { - margin-right: -18rem !important; + .\32xl\:-ml-0 { + margin-left: 0px !important; } - .\32xl\:-mb-72 { - margin-bottom: -18rem !important; + .\32xl\:-ml-1 { + margin-left: -0.25rem !important; } - .\32xl\:-ml-72 { - margin-left: -18rem !important; + .\32xl\:-ml-2 { + margin-left: -0.5rem !important; } - .\32xl\:-mt-80 { - margin-top: -20rem !important; + .\32xl\:-ml-3 { + margin-left: -0.75rem !important; } - .\32xl\:-mr-80 { - margin-right: -20rem !important; + .\32xl\:-ml-4 { + margin-left: -1rem !important; } - .\32xl\:-mb-80 { - margin-bottom: -20rem !important; + .\32xl\:-ml-5 { + margin-left: -1.25rem !important; } - .\32xl\:-ml-80 { - margin-left: -20rem !important; + .\32xl\:-ml-6 { + margin-left: -1.5rem !important; } - .\32xl\:-mt-96 { - margin-top: -24rem !important; + .\32xl\:-ml-7 { + margin-left: -1.75rem !important; } - .\32xl\:-mr-96 { - margin-right: -24rem !important; + .\32xl\:-ml-8 { + margin-left: -2rem !important; } - .\32xl\:-mb-96 { - margin-bottom: -24rem !important; + .\32xl\:-ml-9 { + margin-left: -2.25rem !important; } - .\32xl\:-ml-96 { - margin-left: -24rem !important; + .\32xl\:-ml-10 { + margin-left: -2.5rem !important; } - .\32xl\:-mt-px { - margin-top: -1px !important; + .\32xl\:-ml-11 { + margin-left: -2.75rem !important; } - .\32xl\:-mr-px { - margin-right: -1px !important; + .\32xl\:-ml-12 { + margin-left: -3rem !important; } - .\32xl\:-mb-px { - margin-bottom: -1px !important; + .\32xl\:-ml-14 { + margin-left: -3.5rem !important; } - .\32xl\:-ml-px { - margin-left: -1px !important; + .\32xl\:-ml-16 { + margin-left: -4rem !important; } - .\32xl\:-mt-0\.5 { - margin-top: -0.125rem !important; + .\32xl\:-ml-20 { + margin-left: -5rem !important; } - .\32xl\:-mr-0\.5 { - margin-right: -0.125rem !important; + .\32xl\:-ml-24 { + margin-left: -6rem !important; } - .\32xl\:-mb-0\.5 { - margin-bottom: -0.125rem !important; + .\32xl\:-ml-28 { + margin-left: -7rem !important; } - .\32xl\:-ml-0\.5 { - margin-left: -0.125rem !important; + .\32xl\:-ml-32 { + margin-left: -8rem !important; } - .\32xl\:-mt-1\.5 { - margin-top: -0.375rem !important; + .\32xl\:-ml-36 { + margin-left: -9rem !important; } - .\32xl\:-mr-1\.5 { - margin-right: -0.375rem !important; + .\32xl\:-ml-40 { + margin-left: -10rem !important; } - .\32xl\:-mb-1\.5 { - margin-bottom: -0.375rem !important; + .\32xl\:-ml-44 { + margin-left: -11rem !important; } - .\32xl\:-ml-1\.5 { - margin-left: -0.375rem !important; + .\32xl\:-ml-48 { + margin-left: -12rem !important; } - .\32xl\:-mt-2\.5 { - margin-top: -0.625rem !important; + .\32xl\:-ml-52 { + margin-left: -13rem !important; } - .\32xl\:-mr-2\.5 { - margin-right: -0.625rem !important; + .\32xl\:-ml-56 { + margin-left: -14rem !important; } - .\32xl\:-mb-2\.5 { - margin-bottom: -0.625rem !important; + .\32xl\:-ml-60 { + margin-left: -15rem !important; } - .\32xl\:-ml-2\.5 { - margin-left: -0.625rem !important; + .\32xl\:-ml-64 { + margin-left: -16rem !important; } - .\32xl\:-mt-3\.5 { - margin-top: -0.875rem !important; + .\32xl\:-ml-72 { + margin-left: -18rem !important; } - .\32xl\:-mr-3\.5 { - margin-right: -0.875rem !important; + .\32xl\:-ml-80 { + margin-left: -20rem !important; } - .\32xl\:-mb-3\.5 { - margin-bottom: -0.875rem !important; + .\32xl\:-ml-96 { + margin-left: -24rem !important; + } + + .\32xl\:-ml-px { + margin-left: -1px !important; + } + + .\32xl\:-ml-0\.5 { + margin-left: -0.125rem !important; + } + + .\32xl\:-ml-1\.5 { + margin-left: -0.375rem !important; + } + + .\32xl\:-ml-2\.5 { + margin-left: -0.625rem !important; } .\32xl\:-ml-3\.5 { diff --git a/__tests__/fixtures/tailwind-output-no-color-opacity.css b/__tests__/fixtures/tailwind-output-no-color-opacity.css index 445fdd057bbb..f6d870cff72f 100644 --- a/__tests__/fixtures/tailwind-output-no-color-opacity.css +++ b/__tests__/fixtures/tailwind-output-no-color-opacity.css @@ -10343,1848 +10343,1848 @@ video { margin: -0.875rem; } -.my-0 { - margin-top: 0px; - margin-bottom: 0px; -} - .mx-0 { margin-left: 0px; margin-right: 0px; } -.my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; -} - .mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; } -.my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; -} - .mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; } -.my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; -} - .mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; } -.my-4 { - margin-top: 1rem; - margin-bottom: 1rem; -} - .mx-4 { margin-left: 1rem; margin-right: 1rem; } -.my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; -} - .mx-5 { margin-left: 1.25rem; margin-right: 1.25rem; } -.my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; -} - .mx-6 { margin-left: 1.5rem; margin-right: 1.5rem; } -.my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; -} - .mx-7 { margin-left: 1.75rem; margin-right: 1.75rem; } -.my-8 { - margin-top: 2rem; - margin-bottom: 2rem; -} - .mx-8 { margin-left: 2rem; margin-right: 2rem; } -.my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; -} - .mx-9 { margin-left: 2.25rem; margin-right: 2.25rem; } -.my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; -} - .mx-10 { margin-left: 2.5rem; margin-right: 2.5rem; } -.my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; -} - .mx-11 { margin-left: 2.75rem; margin-right: 2.75rem; } -.my-12 { - margin-top: 3rem; - margin-bottom: 3rem; -} - .mx-12 { margin-left: 3rem; margin-right: 3rem; } -.my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; -} - .mx-14 { margin-left: 3.5rem; margin-right: 3.5rem; } -.my-16 { - margin-top: 4rem; - margin-bottom: 4rem; -} - .mx-16 { margin-left: 4rem; margin-right: 4rem; } -.my-20 { - margin-top: 5rem; - margin-bottom: 5rem; -} - .mx-20 { margin-left: 5rem; margin-right: 5rem; } -.my-24 { - margin-top: 6rem; - margin-bottom: 6rem; -} - .mx-24 { margin-left: 6rem; margin-right: 6rem; } -.my-28 { - margin-top: 7rem; - margin-bottom: 7rem; -} - .mx-28 { margin-left: 7rem; margin-right: 7rem; } -.my-32 { - margin-top: 8rem; - margin-bottom: 8rem; -} - .mx-32 { margin-left: 8rem; margin-right: 8rem; } -.my-36 { - margin-top: 9rem; - margin-bottom: 9rem; -} - .mx-36 { margin-left: 9rem; margin-right: 9rem; } -.my-40 { - margin-top: 10rem; - margin-bottom: 10rem; -} - .mx-40 { margin-left: 10rem; margin-right: 10rem; } -.my-44 { - margin-top: 11rem; - margin-bottom: 11rem; -} - .mx-44 { margin-left: 11rem; margin-right: 11rem; } -.my-48 { - margin-top: 12rem; - margin-bottom: 12rem; -} - .mx-48 { margin-left: 12rem; margin-right: 12rem; } -.my-52 { - margin-top: 13rem; - margin-bottom: 13rem; -} - .mx-52 { margin-left: 13rem; margin-right: 13rem; } -.my-56 { - margin-top: 14rem; - margin-bottom: 14rem; -} - .mx-56 { margin-left: 14rem; margin-right: 14rem; } -.my-60 { - margin-top: 15rem; - margin-bottom: 15rem; -} - .mx-60 { margin-left: 15rem; margin-right: 15rem; } -.my-64 { - margin-top: 16rem; - margin-bottom: 16rem; -} - .mx-64 { margin-left: 16rem; margin-right: 16rem; } -.my-72 { - margin-top: 18rem; - margin-bottom: 18rem; -} - .mx-72 { margin-left: 18rem; margin-right: 18rem; } -.my-80 { - margin-top: 20rem; - margin-bottom: 20rem; -} - .mx-80 { margin-left: 20rem; margin-right: 20rem; } -.my-96 { - margin-top: 24rem; - margin-bottom: 24rem; -} - .mx-96 { margin-left: 24rem; margin-right: 24rem; } -.my-auto { - margin-top: auto; - margin-bottom: auto; -} - .mx-auto { margin-left: auto; margin-right: auto; } -.my-px { - margin-top: 1px; - margin-bottom: 1px; -} - .mx-px { margin-left: 1px; margin-right: 1px; } -.my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; -} - .mx-0\.5 { margin-left: 0.125rem; margin-right: 0.125rem; } -.my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; -} - .mx-1\.5 { margin-left: 0.375rem; margin-right: 0.375rem; } -.my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; -} - .mx-2\.5 { margin-left: 0.625rem; margin-right: 0.625rem; } -.my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; -} - .mx-3\.5 { margin-left: 0.875rem; margin-right: 0.875rem; } -.-my-0 { - margin-top: 0px; - margin-bottom: 0px; -} - .-mx-0 { margin-left: 0px; margin-right: 0px; } -.-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; -} - .-mx-1 { margin-left: -0.25rem; margin-right: -0.25rem; } -.-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; -} - .-mx-2 { margin-left: -0.5rem; margin-right: -0.5rem; } -.-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; -} - .-mx-3 { margin-left: -0.75rem; margin-right: -0.75rem; } -.-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; -} - .-mx-4 { margin-left: -1rem; margin-right: -1rem; } -.-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; -} - .-mx-5 { margin-left: -1.25rem; margin-right: -1.25rem; } -.-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; -} - .-mx-6 { margin-left: -1.5rem; margin-right: -1.5rem; } -.-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; -} - .-mx-7 { margin-left: -1.75rem; margin-right: -1.75rem; } -.-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; -} - .-mx-8 { margin-left: -2rem; margin-right: -2rem; } -.-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; -} - .-mx-9 { margin-left: -2.25rem; margin-right: -2.25rem; } -.-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; -} - .-mx-10 { margin-left: -2.5rem; margin-right: -2.5rem; } -.-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; -} - .-mx-11 { margin-left: -2.75rem; margin-right: -2.75rem; } -.-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; -} - .-mx-12 { margin-left: -3rem; margin-right: -3rem; } -.-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; -} - .-mx-14 { margin-left: -3.5rem; margin-right: -3.5rem; } -.-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; -} - .-mx-16 { margin-left: -4rem; margin-right: -4rem; } -.-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; -} - .-mx-20 { margin-left: -5rem; margin-right: -5rem; } -.-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; -} - .-mx-24 { margin-left: -6rem; margin-right: -6rem; } -.-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; -} - .-mx-28 { margin-left: -7rem; margin-right: -7rem; } -.-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; -} - .-mx-32 { margin-left: -8rem; margin-right: -8rem; } -.-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; -} - .-mx-36 { margin-left: -9rem; margin-right: -9rem; } -.-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; -} - .-mx-40 { margin-left: -10rem; margin-right: -10rem; } -.-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; -} - .-mx-44 { margin-left: -11rem; margin-right: -11rem; } -.-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; -} - .-mx-48 { margin-left: -12rem; margin-right: -12rem; } -.-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; -} - .-mx-52 { margin-left: -13rem; margin-right: -13rem; } -.-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; -} - .-mx-56 { margin-left: -14rem; margin-right: -14rem; } -.-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; -} - .-mx-60 { margin-left: -15rem; margin-right: -15rem; } -.-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; -} - .-mx-64 { margin-left: -16rem; margin-right: -16rem; } -.-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; -} - .-mx-72 { margin-left: -18rem; margin-right: -18rem; } -.-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; -} - .-mx-80 { margin-left: -20rem; margin-right: -20rem; } -.-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; -} - .-mx-96 { margin-left: -24rem; margin-right: -24rem; } -.-my-px { - margin-top: -1px; - margin-bottom: -1px; -} - .-mx-px { margin-left: -1px; margin-right: -1px; } -.-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; -} - .-mx-0\.5 { margin-left: -0.125rem; margin-right: -0.125rem; } -.-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; -} - .-mx-1\.5 { margin-left: -0.375rem; margin-right: -0.375rem; } -.-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; -} - .-mx-2\.5 { margin-left: -0.625rem; margin-right: -0.625rem; } -.-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; -} - .-mx-3\.5 { margin-left: -0.875rem; margin-right: -0.875rem; } -.mt-0 { +.my-0 { margin-top: 0px; + margin-bottom: 0px; } -.mr-0 { - margin-right: 0px; -} - -.mb-0 { - margin-bottom: 0px; +.my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } -.ml-0 { - margin-left: 0px; +.my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; } -.mt-1 { - margin-top: 0.25rem; +.my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; } -.mr-1 { - margin-right: 0.25rem; +.my-4 { + margin-top: 1rem; + margin-bottom: 1rem; } -.mb-1 { - margin-bottom: 0.25rem; +.my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; } -.ml-1 { - margin-left: 0.25rem; +.my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; } -.mt-2 { - margin-top: 0.5rem; +.my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; } -.mr-2 { - margin-right: 0.5rem; +.my-8 { + margin-top: 2rem; + margin-bottom: 2rem; } -.mb-2 { - margin-bottom: 0.5rem; +.my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; } -.ml-2 { - margin-left: 0.5rem; +.my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; } -.mt-3 { - margin-top: 0.75rem; +.my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; } -.mr-3 { - margin-right: 0.75rem; +.my-12 { + margin-top: 3rem; + margin-bottom: 3rem; } -.mb-3 { - margin-bottom: 0.75rem; +.my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; } -.ml-3 { - margin-left: 0.75rem; +.my-16 { + margin-top: 4rem; + margin-bottom: 4rem; } -.mt-4 { - margin-top: 1rem; +.my-20 { + margin-top: 5rem; + margin-bottom: 5rem; } -.mr-4 { - margin-right: 1rem; +.my-24 { + margin-top: 6rem; + margin-bottom: 6rem; } -.mb-4 { - margin-bottom: 1rem; +.my-28 { + margin-top: 7rem; + margin-bottom: 7rem; } -.ml-4 { - margin-left: 1rem; +.my-32 { + margin-top: 8rem; + margin-bottom: 8rem; } -.mt-5 { - margin-top: 1.25rem; +.my-36 { + margin-top: 9rem; + margin-bottom: 9rem; } -.mr-5 { - margin-right: 1.25rem; +.my-40 { + margin-top: 10rem; + margin-bottom: 10rem; } -.mb-5 { - margin-bottom: 1.25rem; +.my-44 { + margin-top: 11rem; + margin-bottom: 11rem; } -.ml-5 { - margin-left: 1.25rem; +.my-48 { + margin-top: 12rem; + margin-bottom: 12rem; } -.mt-6 { - margin-top: 1.5rem; +.my-52 { + margin-top: 13rem; + margin-bottom: 13rem; } -.mr-6 { - margin-right: 1.5rem; +.my-56 { + margin-top: 14rem; + margin-bottom: 14rem; } -.mb-6 { - margin-bottom: 1.5rem; +.my-60 { + margin-top: 15rem; + margin-bottom: 15rem; } -.ml-6 { - margin-left: 1.5rem; +.my-64 { + margin-top: 16rem; + margin-bottom: 16rem; } -.mt-7 { - margin-top: 1.75rem; +.my-72 { + margin-top: 18rem; + margin-bottom: 18rem; } -.mr-7 { - margin-right: 1.75rem; +.my-80 { + margin-top: 20rem; + margin-bottom: 20rem; } -.mb-7 { - margin-bottom: 1.75rem; +.my-96 { + margin-top: 24rem; + margin-bottom: 24rem; } -.ml-7 { - margin-left: 1.75rem; +.my-auto { + margin-top: auto; + margin-bottom: auto; } -.mt-8 { - margin-top: 2rem; +.my-px { + margin-top: 1px; + margin-bottom: 1px; } -.mr-8 { - margin-right: 2rem; +.my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; } -.mb-8 { - margin-bottom: 2rem; +.my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; } -.ml-8 { - margin-left: 2rem; +.my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; } -.mt-9 { - margin-top: 2.25rem; +.my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; } -.mr-9 { - margin-right: 2.25rem; +.-my-0 { + margin-top: 0px; + margin-bottom: 0px; } -.mb-9 { - margin-bottom: 2.25rem; +.-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } -.ml-9 { - margin-left: 2.25rem; +.-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } -.mt-10 { - margin-top: 2.5rem; +.-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } -.mr-10 { - margin-right: 2.5rem; +.-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } -.mb-10 { - margin-bottom: 2.5rem; +.-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } -.ml-10 { - margin-left: 2.5rem; +.-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } -.mt-11 { - margin-top: 2.75rem; +.-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } -.mr-11 { - margin-right: 2.75rem; +.-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } -.mb-11 { - margin-bottom: 2.75rem; +.-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } -.ml-11 { - margin-left: 2.75rem; +.-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } -.mt-12 { - margin-top: 3rem; +.-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } -.mr-12 { - margin-right: 3rem; +.-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } -.mb-12 { - margin-bottom: 3rem; +.-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } -.ml-12 { - margin-left: 3rem; +.-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } -.mt-14 { - margin-top: 3.5rem; +.-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } -.mr-14 { - margin-right: 3.5rem; +.-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } -.mb-14 { - margin-bottom: 3.5rem; +.-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } -.ml-14 { - margin-left: 3.5rem; +.-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } -.mt-16 { - margin-top: 4rem; +.-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } -.mr-16 { - margin-right: 4rem; +.-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } -.mb-16 { - margin-bottom: 4rem; +.-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } -.ml-16 { - margin-left: 4rem; +.-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } -.mt-20 { - margin-top: 5rem; +.-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } -.mr-20 { - margin-right: 5rem; +.-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } -.mb-20 { - margin-bottom: 5rem; +.-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } -.ml-20 { - margin-left: 5rem; +.-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } -.mt-24 { - margin-top: 6rem; +.-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } -.mr-24 { - margin-right: 6rem; +.-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } -.mb-24 { - margin-bottom: 6rem; +.-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } -.ml-24 { - margin-left: 6rem; +.-my-px { + margin-top: -1px; + margin-bottom: -1px; } -.mt-28 { - margin-top: 7rem; +.-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } -.mr-28 { - margin-right: 7rem; +.-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } -.mb-28 { - margin-bottom: 7rem; +.-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } -.ml-28 { - margin-left: 7rem; +.-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } -.mt-32 { - margin-top: 8rem; +.mt-0 { + margin-top: 0px; } -.mr-32 { - margin-right: 8rem; +.mt-1 { + margin-top: 0.25rem; } -.mb-32 { - margin-bottom: 8rem; +.mt-2 { + margin-top: 0.5rem; } -.ml-32 { - margin-left: 8rem; +.mt-3 { + margin-top: 0.75rem; } -.mt-36 { - margin-top: 9rem; +.mt-4 { + margin-top: 1rem; } -.mr-36 { - margin-right: 9rem; +.mt-5 { + margin-top: 1.25rem; } -.mb-36 { - margin-bottom: 9rem; +.mt-6 { + margin-top: 1.5rem; } -.ml-36 { - margin-left: 9rem; +.mt-7 { + margin-top: 1.75rem; } -.mt-40 { - margin-top: 10rem; +.mt-8 { + margin-top: 2rem; } -.mr-40 { - margin-right: 10rem; +.mt-9 { + margin-top: 2.25rem; } -.mb-40 { - margin-bottom: 10rem; +.mt-10 { + margin-top: 2.5rem; } -.ml-40 { - margin-left: 10rem; +.mt-11 { + margin-top: 2.75rem; } -.mt-44 { - margin-top: 11rem; +.mt-12 { + margin-top: 3rem; } -.mr-44 { - margin-right: 11rem; +.mt-14 { + margin-top: 3.5rem; } -.mb-44 { - margin-bottom: 11rem; +.mt-16 { + margin-top: 4rem; } -.ml-44 { - margin-left: 11rem; +.mt-20 { + margin-top: 5rem; } -.mt-48 { - margin-top: 12rem; +.mt-24 { + margin-top: 6rem; } -.mr-48 { - margin-right: 12rem; +.mt-28 { + margin-top: 7rem; } -.mb-48 { - margin-bottom: 12rem; +.mt-32 { + margin-top: 8rem; } -.ml-48 { - margin-left: 12rem; +.mt-36 { + margin-top: 9rem; } -.mt-52 { - margin-top: 13rem; +.mt-40 { + margin-top: 10rem; } -.mr-52 { - margin-right: 13rem; +.mt-44 { + margin-top: 11rem; } -.mb-52 { - margin-bottom: 13rem; +.mt-48 { + margin-top: 12rem; } -.ml-52 { - margin-left: 13rem; +.mt-52 { + margin-top: 13rem; } .mt-56 { margin-top: 14rem; } -.mr-56 { - margin-right: 14rem; +.mt-60 { + margin-top: 15rem; } -.mb-56 { - margin-bottom: 14rem; +.mt-64 { + margin-top: 16rem; } -.ml-56 { - margin-left: 14rem; +.mt-72 { + margin-top: 18rem; } -.mt-60 { - margin-top: 15rem; +.mt-80 { + margin-top: 20rem; } -.mr-60 { - margin-right: 15rem; +.mt-96 { + margin-top: 24rem; } -.mb-60 { - margin-bottom: 15rem; +.mt-auto { + margin-top: auto; } -.ml-60 { - margin-left: 15rem; +.mt-px { + margin-top: 1px; } -.mt-64 { - margin-top: 16rem; +.mt-0\.5 { + margin-top: 0.125rem; } -.mr-64 { - margin-right: 16rem; +.mt-1\.5 { + margin-top: 0.375rem; } -.mb-64 { - margin-bottom: 16rem; +.mt-2\.5 { + margin-top: 0.625rem; } -.ml-64 { - margin-left: 16rem; +.mt-3\.5 { + margin-top: 0.875rem; } -.mt-72 { - margin-top: 18rem; +.-mt-0 { + margin-top: 0px; } -.mr-72 { - margin-right: 18rem; +.-mt-1 { + margin-top: -0.25rem; } -.mb-72 { - margin-bottom: 18rem; +.-mt-2 { + margin-top: -0.5rem; } -.ml-72 { - margin-left: 18rem; +.-mt-3 { + margin-top: -0.75rem; } -.mt-80 { - margin-top: 20rem; +.-mt-4 { + margin-top: -1rem; } -.mr-80 { - margin-right: 20rem; +.-mt-5 { + margin-top: -1.25rem; } -.mb-80 { - margin-bottom: 20rem; +.-mt-6 { + margin-top: -1.5rem; } -.ml-80 { - margin-left: 20rem; +.-mt-7 { + margin-top: -1.75rem; } -.mt-96 { - margin-top: 24rem; +.-mt-8 { + margin-top: -2rem; } -.mr-96 { - margin-right: 24rem; +.-mt-9 { + margin-top: -2.25rem; } -.mb-96 { - margin-bottom: 24rem; +.-mt-10 { + margin-top: -2.5rem; } -.ml-96 { - margin-left: 24rem; +.-mt-11 { + margin-top: -2.75rem; } -.mt-auto { - margin-top: auto; +.-mt-12 { + margin-top: -3rem; } -.mr-auto { - margin-right: auto; +.-mt-14 { + margin-top: -3.5rem; } -.mb-auto { - margin-bottom: auto; +.-mt-16 { + margin-top: -4rem; } -.ml-auto { - margin-left: auto; +.-mt-20 { + margin-top: -5rem; } -.mt-px { - margin-top: 1px; +.-mt-24 { + margin-top: -6rem; } -.mr-px { - margin-right: 1px; +.-mt-28 { + margin-top: -7rem; } -.mb-px { - margin-bottom: 1px; +.-mt-32 { + margin-top: -8rem; } -.ml-px { - margin-left: 1px; +.-mt-36 { + margin-top: -9rem; } -.mt-0\.5 { - margin-top: 0.125rem; +.-mt-40 { + margin-top: -10rem; } -.mr-0\.5 { - margin-right: 0.125rem; +.-mt-44 { + margin-top: -11rem; } -.mb-0\.5 { - margin-bottom: 0.125rem; +.-mt-48 { + margin-top: -12rem; } -.ml-0\.5 { - margin-left: 0.125rem; +.-mt-52 { + margin-top: -13rem; } -.mt-1\.5 { - margin-top: 0.375rem; +.-mt-56 { + margin-top: -14rem; } -.mr-1\.5 { - margin-right: 0.375rem; +.-mt-60 { + margin-top: -15rem; } -.mb-1\.5 { - margin-bottom: 0.375rem; +.-mt-64 { + margin-top: -16rem; } -.ml-1\.5 { - margin-left: 0.375rem; +.-mt-72 { + margin-top: -18rem; } -.mt-2\.5 { - margin-top: 0.625rem; +.-mt-80 { + margin-top: -20rem; } -.mr-2\.5 { - margin-right: 0.625rem; +.-mt-96 { + margin-top: -24rem; } -.mb-2\.5 { - margin-bottom: 0.625rem; +.-mt-px { + margin-top: -1px; } -.ml-2\.5 { - margin-left: 0.625rem; +.-mt-0\.5 { + margin-top: -0.125rem; } -.mt-3\.5 { - margin-top: 0.875rem; +.-mt-1\.5 { + margin-top: -0.375rem; } -.mr-3\.5 { - margin-right: 0.875rem; +.-mt-2\.5 { + margin-top: -0.625rem; } -.mb-3\.5 { - margin-bottom: 0.875rem; +.-mt-3\.5 { + margin-top: -0.875rem; } -.ml-3\.5 { - margin-left: 0.875rem; +.mr-0 { + margin-right: 0px; } -.-mt-0 { - margin-top: 0px; +.mr-1 { + margin-right: 0.25rem; } -.-mr-0 { - margin-right: 0px; +.mr-2 { + margin-right: 0.5rem; } -.-mb-0 { - margin-bottom: 0px; +.mr-3 { + margin-right: 0.75rem; } -.-ml-0 { - margin-left: 0px; +.mr-4 { + margin-right: 1rem; } -.-mt-1 { - margin-top: -0.25rem; +.mr-5 { + margin-right: 1.25rem; } -.-mr-1 { - margin-right: -0.25rem; +.mr-6 { + margin-right: 1.5rem; } -.-mb-1 { - margin-bottom: -0.25rem; +.mr-7 { + margin-right: 1.75rem; } -.-ml-1 { - margin-left: -0.25rem; +.mr-8 { + margin-right: 2rem; } -.-mt-2 { - margin-top: -0.5rem; +.mr-9 { + margin-right: 2.25rem; } -.-mr-2 { - margin-right: -0.5rem; +.mr-10 { + margin-right: 2.5rem; } -.-mb-2 { - margin-bottom: -0.5rem; +.mr-11 { + margin-right: 2.75rem; } -.-ml-2 { - margin-left: -0.5rem; +.mr-12 { + margin-right: 3rem; } -.-mt-3 { - margin-top: -0.75rem; +.mr-14 { + margin-right: 3.5rem; } -.-mr-3 { - margin-right: -0.75rem; +.mr-16 { + margin-right: 4rem; } -.-mb-3 { - margin-bottom: -0.75rem; +.mr-20 { + margin-right: 5rem; } -.-ml-3 { - margin-left: -0.75rem; +.mr-24 { + margin-right: 6rem; } -.-mt-4 { - margin-top: -1rem; +.mr-28 { + margin-right: 7rem; } -.-mr-4 { - margin-right: -1rem; +.mr-32 { + margin-right: 8rem; } -.-mb-4 { - margin-bottom: -1rem; +.mr-36 { + margin-right: 9rem; } -.-ml-4 { - margin-left: -1rem; +.mr-40 { + margin-right: 10rem; } -.-mt-5 { - margin-top: -1.25rem; +.mr-44 { + margin-right: 11rem; } -.-mr-5 { - margin-right: -1.25rem; +.mr-48 { + margin-right: 12rem; } -.-mb-5 { - margin-bottom: -1.25rem; +.mr-52 { + margin-right: 13rem; } -.-ml-5 { - margin-left: -1.25rem; +.mr-56 { + margin-right: 14rem; } -.-mt-6 { - margin-top: -1.5rem; +.mr-60 { + margin-right: 15rem; } -.-mr-6 { - margin-right: -1.5rem; +.mr-64 { + margin-right: 16rem; } -.-mb-6 { - margin-bottom: -1.5rem; +.mr-72 { + margin-right: 18rem; } -.-ml-6 { - margin-left: -1.5rem; +.mr-80 { + margin-right: 20rem; } -.-mt-7 { - margin-top: -1.75rem; +.mr-96 { + margin-right: 24rem; } -.-mr-7 { - margin-right: -1.75rem; +.mr-auto { + margin-right: auto; } -.-mb-7 { - margin-bottom: -1.75rem; +.mr-px { + margin-right: 1px; } -.-ml-7 { - margin-left: -1.75rem; +.mr-0\.5 { + margin-right: 0.125rem; } -.-mt-8 { - margin-top: -2rem; +.mr-1\.5 { + margin-right: 0.375rem; } -.-mr-8 { - margin-right: -2rem; +.mr-2\.5 { + margin-right: 0.625rem; } -.-mb-8 { - margin-bottom: -2rem; +.mr-3\.5 { + margin-right: 0.875rem; } -.-ml-8 { - margin-left: -2rem; +.-mr-0 { + margin-right: 0px; } -.-mt-9 { - margin-top: -2.25rem; +.-mr-1 { + margin-right: -0.25rem; } -.-mr-9 { - margin-right: -2.25rem; +.-mr-2 { + margin-right: -0.5rem; } -.-mb-9 { - margin-bottom: -2.25rem; +.-mr-3 { + margin-right: -0.75rem; } -.-ml-9 { - margin-left: -2.25rem; +.-mr-4 { + margin-right: -1rem; } -.-mt-10 { - margin-top: -2.5rem; +.-mr-5 { + margin-right: -1.25rem; } -.-mr-10 { - margin-right: -2.5rem; +.-mr-6 { + margin-right: -1.5rem; } -.-mb-10 { - margin-bottom: -2.5rem; +.-mr-7 { + margin-right: -1.75rem; } -.-ml-10 { - margin-left: -2.5rem; +.-mr-8 { + margin-right: -2rem; } -.-mt-11 { - margin-top: -2.75rem; +.-mr-9 { + margin-right: -2.25rem; +} + +.-mr-10 { + margin-right: -2.5rem; } .-mr-11 { margin-right: -2.75rem; } -.-mb-11 { - margin-bottom: -2.75rem; +.-mr-12 { + margin-right: -3rem; } -.-ml-11 { - margin-left: -2.75rem; +.-mr-14 { + margin-right: -3.5rem; } -.-mt-12 { - margin-top: -3rem; +.-mr-16 { + margin-right: -4rem; } -.-mr-12 { - margin-right: -3rem; +.-mr-20 { + margin-right: -5rem; } -.-mb-12 { - margin-bottom: -3rem; +.-mr-24 { + margin-right: -6rem; } -.-ml-12 { - margin-left: -3rem; +.-mr-28 { + margin-right: -7rem; } -.-mt-14 { - margin-top: -3.5rem; +.-mr-32 { + margin-right: -8rem; } -.-mr-14 { - margin-right: -3.5rem; +.-mr-36 { + margin-right: -9rem; } -.-mb-14 { - margin-bottom: -3.5rem; +.-mr-40 { + margin-right: -10rem; } -.-ml-14 { - margin-left: -3.5rem; +.-mr-44 { + margin-right: -11rem; } -.-mt-16 { - margin-top: -4rem; +.-mr-48 { + margin-right: -12rem; } -.-mr-16 { - margin-right: -4rem; +.-mr-52 { + margin-right: -13rem; } -.-mb-16 { - margin-bottom: -4rem; +.-mr-56 { + margin-right: -14rem; } -.-ml-16 { - margin-left: -4rem; +.-mr-60 { + margin-right: -15rem; } -.-mt-20 { - margin-top: -5rem; +.-mr-64 { + margin-right: -16rem; } -.-mr-20 { - margin-right: -5rem; +.-mr-72 { + margin-right: -18rem; } -.-mb-20 { - margin-bottom: -5rem; +.-mr-80 { + margin-right: -20rem; } -.-ml-20 { - margin-left: -5rem; +.-mr-96 { + margin-right: -24rem; } -.-mt-24 { - margin-top: -6rem; +.-mr-px { + margin-right: -1px; } -.-mr-24 { - margin-right: -6rem; +.-mr-0\.5 { + margin-right: -0.125rem; } -.-mb-24 { - margin-bottom: -6rem; +.-mr-1\.5 { + margin-right: -0.375rem; } -.-ml-24 { - margin-left: -6rem; +.-mr-2\.5 { + margin-right: -0.625rem; } -.-mt-28 { - margin-top: -7rem; +.-mr-3\.5 { + margin-right: -0.875rem; } -.-mr-28 { - margin-right: -7rem; +.mb-0 { + margin-bottom: 0px; } -.-mb-28 { - margin-bottom: -7rem; +.mb-1 { + margin-bottom: 0.25rem; } -.-ml-28 { - margin-left: -7rem; +.mb-2 { + margin-bottom: 0.5rem; } -.-mt-32 { - margin-top: -8rem; +.mb-3 { + margin-bottom: 0.75rem; } -.-mr-32 { - margin-right: -8rem; +.mb-4 { + margin-bottom: 1rem; } -.-mb-32 { - margin-bottom: -8rem; +.mb-5 { + margin-bottom: 1.25rem; } -.-ml-32 { - margin-left: -8rem; +.mb-6 { + margin-bottom: 1.5rem; } -.-mt-36 { - margin-top: -9rem; +.mb-7 { + margin-bottom: 1.75rem; } -.-mr-36 { - margin-right: -9rem; +.mb-8 { + margin-bottom: 2rem; } -.-mb-36 { - margin-bottom: -9rem; +.mb-9 { + margin-bottom: 2.25rem; } -.-ml-36 { - margin-left: -9rem; +.mb-10 { + margin-bottom: 2.5rem; } -.-mt-40 { - margin-top: -10rem; +.mb-11 { + margin-bottom: 2.75rem; } -.-mr-40 { - margin-right: -10rem; +.mb-12 { + margin-bottom: 3rem; } -.-mb-40 { - margin-bottom: -10rem; +.mb-14 { + margin-bottom: 3.5rem; } -.-ml-40 { - margin-left: -10rem; +.mb-16 { + margin-bottom: 4rem; } -.-mt-44 { - margin-top: -11rem; +.mb-20 { + margin-bottom: 5rem; } -.-mr-44 { - margin-right: -11rem; +.mb-24 { + margin-bottom: 6rem; } -.-mb-44 { - margin-bottom: -11rem; +.mb-28 { + margin-bottom: 7rem; } -.-ml-44 { - margin-left: -11rem; +.mb-32 { + margin-bottom: 8rem; } -.-mt-48 { - margin-top: -12rem; +.mb-36 { + margin-bottom: 9rem; } -.-mr-48 { - margin-right: -12rem; +.mb-40 { + margin-bottom: 10rem; } -.-mb-48 { - margin-bottom: -12rem; +.mb-44 { + margin-bottom: 11rem; } -.-ml-48 { - margin-left: -12rem; +.mb-48 { + margin-bottom: 12rem; } -.-mt-52 { - margin-top: -13rem; +.mb-52 { + margin-bottom: 13rem; } -.-mr-52 { - margin-right: -13rem; +.mb-56 { + margin-bottom: 14rem; } -.-mb-52 { - margin-bottom: -13rem; +.mb-60 { + margin-bottom: 15rem; } -.-ml-52 { - margin-left: -13rem; +.mb-64 { + margin-bottom: 16rem; } -.-mt-56 { - margin-top: -14rem; +.mb-72 { + margin-bottom: 18rem; } -.-mr-56 { - margin-right: -14rem; +.mb-80 { + margin-bottom: 20rem; } -.-mb-56 { - margin-bottom: -14rem; +.mb-96 { + margin-bottom: 24rem; } -.-ml-56 { - margin-left: -14rem; +.mb-auto { + margin-bottom: auto; } -.-mt-60 { - margin-top: -15rem; +.mb-px { + margin-bottom: 1px; } -.-mr-60 { - margin-right: -15rem; +.mb-0\.5 { + margin-bottom: 0.125rem; } -.-mb-60 { - margin-bottom: -15rem; +.mb-1\.5 { + margin-bottom: 0.375rem; } -.-ml-60 { - margin-left: -15rem; +.mb-2\.5 { + margin-bottom: 0.625rem; } -.-mt-64 { - margin-top: -16rem; +.mb-3\.5 { + margin-bottom: 0.875rem; } -.-mr-64 { - margin-right: -16rem; +.-mb-0 { + margin-bottom: 0px; } -.-mb-64 { - margin-bottom: -16rem; +.-mb-1 { + margin-bottom: -0.25rem; } -.-ml-64 { - margin-left: -16rem; +.-mb-2 { + margin-bottom: -0.5rem; } -.-mt-72 { - margin-top: -18rem; +.-mb-3 { + margin-bottom: -0.75rem; } -.-mr-72 { - margin-right: -18rem; +.-mb-4 { + margin-bottom: -1rem; } -.-mb-72 { - margin-bottom: -18rem; +.-mb-5 { + margin-bottom: -1.25rem; } -.-ml-72 { - margin-left: -18rem; +.-mb-6 { + margin-bottom: -1.5rem; } -.-mt-80 { - margin-top: -20rem; +.-mb-7 { + margin-bottom: -1.75rem; } -.-mr-80 { - margin-right: -20rem; +.-mb-8 { + margin-bottom: -2rem; } -.-mb-80 { - margin-bottom: -20rem; +.-mb-9 { + margin-bottom: -2.25rem; } -.-ml-80 { - margin-left: -20rem; +.-mb-10 { + margin-bottom: -2.5rem; } -.-mt-96 { - margin-top: -24rem; +.-mb-11 { + margin-bottom: -2.75rem; } -.-mr-96 { - margin-right: -24rem; +.-mb-12 { + margin-bottom: -3rem; } -.-mb-96 { - margin-bottom: -24rem; +.-mb-14 { + margin-bottom: -3.5rem; } -.-ml-96 { - margin-left: -24rem; +.-mb-16 { + margin-bottom: -4rem; } -.-mt-px { - margin-top: -1px; +.-mb-20 { + margin-bottom: -5rem; } -.-mr-px { - margin-right: -1px; +.-mb-24 { + margin-bottom: -6rem; } -.-mb-px { - margin-bottom: -1px; +.-mb-28 { + margin-bottom: -7rem; } -.-ml-px { - margin-left: -1px; +.-mb-32 { + margin-bottom: -8rem; } -.-mt-0\.5 { - margin-top: -0.125rem; +.-mb-36 { + margin-bottom: -9rem; } -.-mr-0\.5 { - margin-right: -0.125rem; +.-mb-40 { + margin-bottom: -10rem; } -.-mb-0\.5 { - margin-bottom: -0.125rem; +.-mb-44 { + margin-bottom: -11rem; } -.-ml-0\.5 { - margin-left: -0.125rem; +.-mb-48 { + margin-bottom: -12rem; } -.-mt-1\.5 { - margin-top: -0.375rem; +.-mb-52 { + margin-bottom: -13rem; } -.-mr-1\.5 { - margin-right: -0.375rem; +.-mb-56 { + margin-bottom: -14rem; } -.-mb-1\.5 { - margin-bottom: -0.375rem; +.-mb-60 { + margin-bottom: -15rem; } -.-ml-1\.5 { - margin-left: -0.375rem; +.-mb-64 { + margin-bottom: -16rem; } -.-mt-2\.5 { - margin-top: -0.625rem; +.-mb-72 { + margin-bottom: -18rem; } -.-mr-2\.5 { - margin-right: -0.625rem; +.-mb-80 { + margin-bottom: -20rem; } -.-mb-2\.5 { - margin-bottom: -0.625rem; +.-mb-96 { + margin-bottom: -24rem; } -.-ml-2\.5 { - margin-left: -0.625rem; +.-mb-px { + margin-bottom: -1px; } -.-mt-3\.5 { - margin-top: -0.875rem; +.-mb-0\.5 { + margin-bottom: -0.125rem; } -.-mr-3\.5 { - margin-right: -0.875rem; +.-mb-1\.5 { + margin-bottom: -0.375rem; +} + +.-mb-2\.5 { + margin-bottom: -0.625rem; } .-mb-3\.5 { margin-bottom: -0.875rem; } +.ml-0 { + margin-left: 0px; +} + +.ml-1 { + margin-left: 0.25rem; +} + +.ml-2 { + margin-left: 0.5rem; +} + +.ml-3 { + margin-left: 0.75rem; +} + +.ml-4 { + margin-left: 1rem; +} + +.ml-5 { + margin-left: 1.25rem; +} + +.ml-6 { + margin-left: 1.5rem; +} + +.ml-7 { + margin-left: 1.75rem; +} + +.ml-8 { + margin-left: 2rem; +} + +.ml-9 { + margin-left: 2.25rem; +} + +.ml-10 { + margin-left: 2.5rem; +} + +.ml-11 { + margin-left: 2.75rem; +} + +.ml-12 { + margin-left: 3rem; +} + +.ml-14 { + margin-left: 3.5rem; +} + +.ml-16 { + margin-left: 4rem; +} + +.ml-20 { + margin-left: 5rem; +} + +.ml-24 { + margin-left: 6rem; +} + +.ml-28 { + margin-left: 7rem; +} + +.ml-32 { + margin-left: 8rem; +} + +.ml-36 { + margin-left: 9rem; +} + +.ml-40 { + margin-left: 10rem; +} + +.ml-44 { + margin-left: 11rem; +} + +.ml-48 { + margin-left: 12rem; +} + +.ml-52 { + margin-left: 13rem; +} + +.ml-56 { + margin-left: 14rem; +} + +.ml-60 { + margin-left: 15rem; +} + +.ml-64 { + margin-left: 16rem; +} + +.ml-72 { + margin-left: 18rem; +} + +.ml-80 { + margin-left: 20rem; +} + +.ml-96 { + margin-left: 24rem; +} + +.ml-auto { + margin-left: auto; +} + +.ml-px { + margin-left: 1px; +} + +.ml-0\.5 { + margin-left: 0.125rem; +} + +.ml-1\.5 { + margin-left: 0.375rem; +} + +.ml-2\.5 { + margin-left: 0.625rem; +} + +.ml-3\.5 { + margin-left: 0.875rem; +} + +.-ml-0 { + margin-left: 0px; +} + +.-ml-1 { + margin-left: -0.25rem; +} + +.-ml-2 { + margin-left: -0.5rem; +} + +.-ml-3 { + margin-left: -0.75rem; +} + +.-ml-4 { + margin-left: -1rem; +} + +.-ml-5 { + margin-left: -1.25rem; +} + +.-ml-6 { + margin-left: -1.5rem; +} + +.-ml-7 { + margin-left: -1.75rem; +} + +.-ml-8 { + margin-left: -2rem; +} + +.-ml-9 { + margin-left: -2.25rem; +} + +.-ml-10 { + margin-left: -2.5rem; +} + +.-ml-11 { + margin-left: -2.75rem; +} + +.-ml-12 { + margin-left: -3rem; +} + +.-ml-14 { + margin-left: -3.5rem; +} + +.-ml-16 { + margin-left: -4rem; +} + +.-ml-20 { + margin-left: -5rem; +} + +.-ml-24 { + margin-left: -6rem; +} + +.-ml-28 { + margin-left: -7rem; +} + +.-ml-32 { + margin-left: -8rem; +} + +.-ml-36 { + margin-left: -9rem; +} + +.-ml-40 { + margin-left: -10rem; +} + +.-ml-44 { + margin-left: -11rem; +} + +.-ml-48 { + margin-left: -12rem; +} + +.-ml-52 { + margin-left: -13rem; +} + +.-ml-56 { + margin-left: -14rem; +} + +.-ml-60 { + margin-left: -15rem; +} + +.-ml-64 { + margin-left: -16rem; +} + +.-ml-72 { + margin-left: -18rem; +} + +.-ml-80 { + margin-left: -20rem; +} + +.-ml-96 { + margin-left: -24rem; +} + +.-ml-px { + margin-left: -1px; +} + +.-ml-0\.5 { + margin-left: -0.125rem; +} + +.-ml-1\.5 { + margin-left: -0.375rem; +} + +.-ml-2\.5 { + margin-left: -0.625rem; +} + .-ml-3\.5 { margin-left: -0.875rem; } @@ -37045,1848 +37045,1848 @@ video { margin: -0.875rem; } - .sm\:my-0 { - margin-top: 0px; - margin-bottom: 0px; - } - .sm\:mx-0 { margin-left: 0px; margin-right: 0px; } - .sm\:my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; - } - .sm\:mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; } - .sm\:my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; - } - .sm\:mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; } - .sm\:my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; - } - .sm\:mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; } - .sm\:my-4 { - margin-top: 1rem; - margin-bottom: 1rem; - } - .sm\:mx-4 { margin-left: 1rem; margin-right: 1rem; } - .sm\:my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; - } - .sm\:mx-5 { margin-left: 1.25rem; margin-right: 1.25rem; } - .sm\:my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; - } - .sm\:mx-6 { margin-left: 1.5rem; margin-right: 1.5rem; } - .sm\:my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; - } - .sm\:mx-7 { margin-left: 1.75rem; margin-right: 1.75rem; } - .sm\:my-8 { - margin-top: 2rem; - margin-bottom: 2rem; - } - .sm\:mx-8 { margin-left: 2rem; margin-right: 2rem; } - .sm\:my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; - } - .sm\:mx-9 { margin-left: 2.25rem; margin-right: 2.25rem; } - .sm\:my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; - } - .sm\:mx-10 { margin-left: 2.5rem; margin-right: 2.5rem; } - .sm\:my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; - } - .sm\:mx-11 { margin-left: 2.75rem; margin-right: 2.75rem; } - .sm\:my-12 { - margin-top: 3rem; - margin-bottom: 3rem; - } - .sm\:mx-12 { margin-left: 3rem; margin-right: 3rem; } - .sm\:my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; - } - .sm\:mx-14 { margin-left: 3.5rem; margin-right: 3.5rem; } - .sm\:my-16 { - margin-top: 4rem; - margin-bottom: 4rem; - } - .sm\:mx-16 { margin-left: 4rem; margin-right: 4rem; } - .sm\:my-20 { - margin-top: 5rem; - margin-bottom: 5rem; - } - .sm\:mx-20 { margin-left: 5rem; margin-right: 5rem; } - .sm\:my-24 { - margin-top: 6rem; - margin-bottom: 6rem; - } - .sm\:mx-24 { margin-left: 6rem; margin-right: 6rem; } - .sm\:my-28 { - margin-top: 7rem; - margin-bottom: 7rem; - } - .sm\:mx-28 { margin-left: 7rem; margin-right: 7rem; } - .sm\:my-32 { - margin-top: 8rem; - margin-bottom: 8rem; - } - .sm\:mx-32 { margin-left: 8rem; margin-right: 8rem; } - .sm\:my-36 { - margin-top: 9rem; - margin-bottom: 9rem; - } - .sm\:mx-36 { margin-left: 9rem; margin-right: 9rem; } - .sm\:my-40 { - margin-top: 10rem; - margin-bottom: 10rem; - } - .sm\:mx-40 { margin-left: 10rem; margin-right: 10rem; } - .sm\:my-44 { - margin-top: 11rem; - margin-bottom: 11rem; - } - .sm\:mx-44 { margin-left: 11rem; margin-right: 11rem; } - .sm\:my-48 { - margin-top: 12rem; - margin-bottom: 12rem; - } - .sm\:mx-48 { margin-left: 12rem; margin-right: 12rem; } - .sm\:my-52 { - margin-top: 13rem; - margin-bottom: 13rem; - } - .sm\:mx-52 { margin-left: 13rem; margin-right: 13rem; } - .sm\:my-56 { - margin-top: 14rem; - margin-bottom: 14rem; - } - .sm\:mx-56 { margin-left: 14rem; margin-right: 14rem; } - .sm\:my-60 { - margin-top: 15rem; - margin-bottom: 15rem; - } - .sm\:mx-60 { margin-left: 15rem; margin-right: 15rem; } - .sm\:my-64 { - margin-top: 16rem; - margin-bottom: 16rem; - } - .sm\:mx-64 { margin-left: 16rem; margin-right: 16rem; } - .sm\:my-72 { - margin-top: 18rem; - margin-bottom: 18rem; - } - .sm\:mx-72 { margin-left: 18rem; margin-right: 18rem; } - .sm\:my-80 { - margin-top: 20rem; - margin-bottom: 20rem; - } - .sm\:mx-80 { margin-left: 20rem; margin-right: 20rem; } - .sm\:my-96 { - margin-top: 24rem; - margin-bottom: 24rem; - } - .sm\:mx-96 { margin-left: 24rem; margin-right: 24rem; } - .sm\:my-auto { - margin-top: auto; - margin-bottom: auto; - } - .sm\:mx-auto { margin-left: auto; margin-right: auto; } - .sm\:my-px { - margin-top: 1px; - margin-bottom: 1px; - } - .sm\:mx-px { margin-left: 1px; margin-right: 1px; } - .sm\:my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; - } - .sm\:mx-0\.5 { margin-left: 0.125rem; margin-right: 0.125rem; } - .sm\:my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; - } - .sm\:mx-1\.5 { margin-left: 0.375rem; margin-right: 0.375rem; } - .sm\:my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; - } - .sm\:mx-2\.5 { margin-left: 0.625rem; margin-right: 0.625rem; } - .sm\:my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; - } - .sm\:mx-3\.5 { margin-left: 0.875rem; margin-right: 0.875rem; } - .sm\:-my-0 { - margin-top: 0px; - margin-bottom: 0px; - } - .sm\:-mx-0 { margin-left: 0px; margin-right: 0px; } - .sm\:-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; - } - .sm\:-mx-1 { margin-left: -0.25rem; margin-right: -0.25rem; } - .sm\:-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; - } - .sm\:-mx-2 { margin-left: -0.5rem; margin-right: -0.5rem; } - .sm\:-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; - } - .sm\:-mx-3 { margin-left: -0.75rem; margin-right: -0.75rem; } - .sm\:-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; - } - .sm\:-mx-4 { margin-left: -1rem; margin-right: -1rem; } - .sm\:-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; - } - .sm\:-mx-5 { margin-left: -1.25rem; margin-right: -1.25rem; } - .sm\:-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; - } - .sm\:-mx-6 { margin-left: -1.5rem; margin-right: -1.5rem; } - .sm\:-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; - } - .sm\:-mx-7 { margin-left: -1.75rem; margin-right: -1.75rem; } - .sm\:-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; - } - .sm\:-mx-8 { margin-left: -2rem; margin-right: -2rem; } - .sm\:-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; - } - .sm\:-mx-9 { margin-left: -2.25rem; margin-right: -2.25rem; } - .sm\:-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; - } - .sm\:-mx-10 { margin-left: -2.5rem; margin-right: -2.5rem; } - .sm\:-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; - } - .sm\:-mx-11 { margin-left: -2.75rem; margin-right: -2.75rem; } - .sm\:-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; - } - .sm\:-mx-12 { margin-left: -3rem; margin-right: -3rem; } - .sm\:-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; - } - .sm\:-mx-14 { margin-left: -3.5rem; margin-right: -3.5rem; } - .sm\:-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; - } - .sm\:-mx-16 { margin-left: -4rem; margin-right: -4rem; } - .sm\:-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; - } - .sm\:-mx-20 { margin-left: -5rem; margin-right: -5rem; } - .sm\:-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; - } - .sm\:-mx-24 { margin-left: -6rem; margin-right: -6rem; } - .sm\:-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; - } - .sm\:-mx-28 { margin-left: -7rem; margin-right: -7rem; } - .sm\:-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; - } - .sm\:-mx-32 { margin-left: -8rem; margin-right: -8rem; } - .sm\:-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; - } - .sm\:-mx-36 { margin-left: -9rem; margin-right: -9rem; } - .sm\:-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; - } - .sm\:-mx-40 { margin-left: -10rem; margin-right: -10rem; } - .sm\:-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; - } - .sm\:-mx-44 { margin-left: -11rem; margin-right: -11rem; } - .sm\:-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; - } - .sm\:-mx-48 { margin-left: -12rem; margin-right: -12rem; } - .sm\:-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; - } - .sm\:-mx-52 { margin-left: -13rem; margin-right: -13rem; } - .sm\:-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; - } - .sm\:-mx-56 { margin-left: -14rem; margin-right: -14rem; } - .sm\:-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; - } - .sm\:-mx-60 { margin-left: -15rem; margin-right: -15rem; } - .sm\:-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; - } - .sm\:-mx-64 { margin-left: -16rem; margin-right: -16rem; } - .sm\:-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; - } - .sm\:-mx-72 { margin-left: -18rem; margin-right: -18rem; } - .sm\:-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; - } - .sm\:-mx-80 { margin-left: -20rem; margin-right: -20rem; } - .sm\:-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; - } - .sm\:-mx-96 { margin-left: -24rem; margin-right: -24rem; } - .sm\:-my-px { - margin-top: -1px; - margin-bottom: -1px; - } - .sm\:-mx-px { margin-left: -1px; margin-right: -1px; } - .sm\:-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; - } - .sm\:-mx-0\.5 { margin-left: -0.125rem; margin-right: -0.125rem; } - .sm\:-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; - } - .sm\:-mx-1\.5 { margin-left: -0.375rem; margin-right: -0.375rem; } - .sm\:-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; - } - .sm\:-mx-2\.5 { margin-left: -0.625rem; margin-right: -0.625rem; } - .sm\:-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; - } - .sm\:-mx-3\.5 { margin-left: -0.875rem; margin-right: -0.875rem; } - .sm\:mt-0 { + .sm\:my-0 { margin-top: 0px; + margin-bottom: 0px; } - .sm\:mr-0 { - margin-right: 0px; - } - - .sm\:mb-0 { - margin-bottom: 0px; + .sm\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } - .sm\:ml-0 { - margin-left: 0px; + .sm\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; } - .sm\:mt-1 { - margin-top: 0.25rem; + .sm\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; } - .sm\:mr-1 { - margin-right: 0.25rem; + .sm\:my-4 { + margin-top: 1rem; + margin-bottom: 1rem; } - .sm\:mb-1 { - margin-bottom: 0.25rem; + .sm\:my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; } - .sm\:ml-1 { - margin-left: 0.25rem; + .sm\:my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; } - .sm\:mt-2 { - margin-top: 0.5rem; + .sm\:my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; } - .sm\:mr-2 { - margin-right: 0.5rem; + .sm\:my-8 { + margin-top: 2rem; + margin-bottom: 2rem; } - .sm\:mb-2 { - margin-bottom: 0.5rem; + .sm\:my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; } - .sm\:ml-2 { - margin-left: 0.5rem; + .sm\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; } - .sm\:mt-3 { - margin-top: 0.75rem; + .sm\:my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; } - .sm\:mr-3 { - margin-right: 0.75rem; + .sm\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; } - .sm\:mb-3 { - margin-bottom: 0.75rem; + .sm\:my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; } - .sm\:ml-3 { - margin-left: 0.75rem; + .sm\:my-16 { + margin-top: 4rem; + margin-bottom: 4rem; } - .sm\:mt-4 { - margin-top: 1rem; + .sm\:my-20 { + margin-top: 5rem; + margin-bottom: 5rem; } - .sm\:mr-4 { - margin-right: 1rem; + .sm\:my-24 { + margin-top: 6rem; + margin-bottom: 6rem; } - .sm\:mb-4 { - margin-bottom: 1rem; + .sm\:my-28 { + margin-top: 7rem; + margin-bottom: 7rem; } - .sm\:ml-4 { - margin-left: 1rem; + .sm\:my-32 { + margin-top: 8rem; + margin-bottom: 8rem; } - .sm\:mt-5 { - margin-top: 1.25rem; + .sm\:my-36 { + margin-top: 9rem; + margin-bottom: 9rem; } - .sm\:mr-5 { - margin-right: 1.25rem; + .sm\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; } - .sm\:mb-5 { - margin-bottom: 1.25rem; + .sm\:my-44 { + margin-top: 11rem; + margin-bottom: 11rem; } - .sm\:ml-5 { - margin-left: 1.25rem; + .sm\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; } - .sm\:mt-6 { - margin-top: 1.5rem; + .sm\:my-52 { + margin-top: 13rem; + margin-bottom: 13rem; } - .sm\:mr-6 { - margin-right: 1.5rem; + .sm\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; } - .sm\:mb-6 { - margin-bottom: 1.5rem; + .sm\:my-60 { + margin-top: 15rem; + margin-bottom: 15rem; } - .sm\:ml-6 { - margin-left: 1.5rem; + .sm\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; } - .sm\:mt-7 { - margin-top: 1.75rem; + .sm\:my-72 { + margin-top: 18rem; + margin-bottom: 18rem; } - .sm\:mr-7 { - margin-right: 1.75rem; + .sm\:my-80 { + margin-top: 20rem; + margin-bottom: 20rem; } - .sm\:mb-7 { - margin-bottom: 1.75rem; + .sm\:my-96 { + margin-top: 24rem; + margin-bottom: 24rem; } - .sm\:ml-7 { - margin-left: 1.75rem; + .sm\:my-auto { + margin-top: auto; + margin-bottom: auto; } - .sm\:mt-8 { - margin-top: 2rem; + .sm\:my-px { + margin-top: 1px; + margin-bottom: 1px; } - .sm\:mr-8 { - margin-right: 2rem; + .sm\:my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; } - .sm\:mb-8 { - margin-bottom: 2rem; + .sm\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; } - .sm\:ml-8 { - margin-left: 2rem; + .sm\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; } - .sm\:mt-9 { - margin-top: 2.25rem; + .sm\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; } - .sm\:mr-9 { - margin-right: 2.25rem; + .sm\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .sm\:mb-9 { - margin-bottom: 2.25rem; + .sm\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } - .sm\:ml-9 { - margin-left: 2.25rem; + .sm\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } - .sm\:mt-10 { - margin-top: 2.5rem; + .sm\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } - .sm\:mr-10 { - margin-right: 2.5rem; + .sm\:-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } - .sm\:mb-10 { - margin-bottom: 2.5rem; + .sm\:-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } - .sm\:ml-10 { - margin-left: 2.5rem; + .sm\:-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } - .sm\:mt-11 { - margin-top: 2.75rem; + .sm\:-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } - .sm\:mr-11 { - margin-right: 2.75rem; + .sm\:-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } - .sm\:mb-11 { - margin-bottom: 2.75rem; + .sm\:-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } - .sm\:ml-11 { - margin-left: 2.75rem; + .sm\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } - .sm\:mt-12 { - margin-top: 3rem; + .sm\:-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } - .sm\:mr-12 { - margin-right: 3rem; + .sm\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } - .sm\:mb-12 { - margin-bottom: 3rem; + .sm\:-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } - .sm\:ml-12 { - margin-left: 3rem; + .sm\:-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } - .sm\:mt-14 { - margin-top: 3.5rem; + .sm\:-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } - .sm\:mr-14 { - margin-right: 3.5rem; + .sm\:-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } - .sm\:mb-14 { - margin-bottom: 3.5rem; + .sm\:-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } - .sm\:ml-14 { - margin-left: 3.5rem; + .sm\:-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } - .sm\:mt-16 { - margin-top: 4rem; + .sm\:-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } - .sm\:mr-16 { - margin-right: 4rem; + .sm\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } - .sm\:mb-16 { - margin-bottom: 4rem; + .sm\:-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } - .sm\:ml-16 { - margin-left: 4rem; + .sm\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } - .sm\:mt-20 { - margin-top: 5rem; + .sm\:-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } - .sm\:mr-20 { - margin-right: 5rem; + .sm\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } - .sm\:mb-20 { - margin-bottom: 5rem; + .sm\:-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } - .sm\:ml-20 { - margin-left: 5rem; + .sm\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } - .sm\:mt-24 { - margin-top: 6rem; + .sm\:-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } - .sm\:mr-24 { - margin-right: 6rem; + .sm\:-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } - .sm\:mb-24 { - margin-bottom: 6rem; + .sm\:-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } - .sm\:ml-24 { - margin-left: 6rem; + .sm\:-my-px { + margin-top: -1px; + margin-bottom: -1px; } - .sm\:mt-28 { - margin-top: 7rem; + .sm\:-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } - .sm\:mr-28 { - margin-right: 7rem; + .sm\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } - .sm\:mb-28 { - margin-bottom: 7rem; + .sm\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } - .sm\:ml-28 { - margin-left: 7rem; + .sm\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } - .sm\:mt-32 { - margin-top: 8rem; + .sm\:mt-0 { + margin-top: 0px; } - .sm\:mr-32 { - margin-right: 8rem; + .sm\:mt-1 { + margin-top: 0.25rem; } - .sm\:mb-32 { - margin-bottom: 8rem; + .sm\:mt-2 { + margin-top: 0.5rem; } - .sm\:ml-32 { - margin-left: 8rem; + .sm\:mt-3 { + margin-top: 0.75rem; } - .sm\:mt-36 { - margin-top: 9rem; + .sm\:mt-4 { + margin-top: 1rem; } - .sm\:mr-36 { - margin-right: 9rem; + .sm\:mt-5 { + margin-top: 1.25rem; } - .sm\:mb-36 { - margin-bottom: 9rem; + .sm\:mt-6 { + margin-top: 1.5rem; } - .sm\:ml-36 { - margin-left: 9rem; + .sm\:mt-7 { + margin-top: 1.75rem; } - .sm\:mt-40 { - margin-top: 10rem; + .sm\:mt-8 { + margin-top: 2rem; } - .sm\:mr-40 { - margin-right: 10rem; + .sm\:mt-9 { + margin-top: 2.25rem; } - .sm\:mb-40 { - margin-bottom: 10rem; + .sm\:mt-10 { + margin-top: 2.5rem; } - .sm\:ml-40 { - margin-left: 10rem; + .sm\:mt-11 { + margin-top: 2.75rem; } - .sm\:mt-44 { - margin-top: 11rem; + .sm\:mt-12 { + margin-top: 3rem; } - .sm\:mr-44 { - margin-right: 11rem; + .sm\:mt-14 { + margin-top: 3.5rem; } - .sm\:mb-44 { - margin-bottom: 11rem; + .sm\:mt-16 { + margin-top: 4rem; } - .sm\:ml-44 { - margin-left: 11rem; + .sm\:mt-20 { + margin-top: 5rem; } - .sm\:mt-48 { - margin-top: 12rem; + .sm\:mt-24 { + margin-top: 6rem; } - .sm\:mr-48 { - margin-right: 12rem; + .sm\:mt-28 { + margin-top: 7rem; } - .sm\:mb-48 { - margin-bottom: 12rem; + .sm\:mt-32 { + margin-top: 8rem; } - .sm\:ml-48 { - margin-left: 12rem; + .sm\:mt-36 { + margin-top: 9rem; } - .sm\:mt-52 { - margin-top: 13rem; + .sm\:mt-40 { + margin-top: 10rem; } - .sm\:mr-52 { - margin-right: 13rem; + .sm\:mt-44 { + margin-top: 11rem; } - .sm\:mb-52 { - margin-bottom: 13rem; + .sm\:mt-48 { + margin-top: 12rem; } - .sm\:ml-52 { - margin-left: 13rem; + .sm\:mt-52 { + margin-top: 13rem; } .sm\:mt-56 { margin-top: 14rem; } - .sm\:mr-56 { - margin-right: 14rem; + .sm\:mt-60 { + margin-top: 15rem; } - .sm\:mb-56 { - margin-bottom: 14rem; + .sm\:mt-64 { + margin-top: 16rem; } - .sm\:ml-56 { - margin-left: 14rem; + .sm\:mt-72 { + margin-top: 18rem; } - .sm\:mt-60 { - margin-top: 15rem; + .sm\:mt-80 { + margin-top: 20rem; } - .sm\:mr-60 { - margin-right: 15rem; + .sm\:mt-96 { + margin-top: 24rem; } - .sm\:mb-60 { - margin-bottom: 15rem; + .sm\:mt-auto { + margin-top: auto; } - .sm\:ml-60 { - margin-left: 15rem; + .sm\:mt-px { + margin-top: 1px; } - .sm\:mt-64 { - margin-top: 16rem; + .sm\:mt-0\.5 { + margin-top: 0.125rem; } - .sm\:mr-64 { - margin-right: 16rem; + .sm\:mt-1\.5 { + margin-top: 0.375rem; } - .sm\:mb-64 { - margin-bottom: 16rem; + .sm\:mt-2\.5 { + margin-top: 0.625rem; } - .sm\:ml-64 { - margin-left: 16rem; + .sm\:mt-3\.5 { + margin-top: 0.875rem; } - .sm\:mt-72 { - margin-top: 18rem; + .sm\:-mt-0 { + margin-top: 0px; } - .sm\:mr-72 { - margin-right: 18rem; + .sm\:-mt-1 { + margin-top: -0.25rem; } - .sm\:mb-72 { - margin-bottom: 18rem; + .sm\:-mt-2 { + margin-top: -0.5rem; } - .sm\:ml-72 { - margin-left: 18rem; + .sm\:-mt-3 { + margin-top: -0.75rem; } - .sm\:mt-80 { - margin-top: 20rem; + .sm\:-mt-4 { + margin-top: -1rem; } - .sm\:mr-80 { - margin-right: 20rem; + .sm\:-mt-5 { + margin-top: -1.25rem; } - .sm\:mb-80 { - margin-bottom: 20rem; + .sm\:-mt-6 { + margin-top: -1.5rem; } - .sm\:ml-80 { - margin-left: 20rem; + .sm\:-mt-7 { + margin-top: -1.75rem; } - .sm\:mt-96 { - margin-top: 24rem; + .sm\:-mt-8 { + margin-top: -2rem; } - .sm\:mr-96 { - margin-right: 24rem; + .sm\:-mt-9 { + margin-top: -2.25rem; } - .sm\:mb-96 { - margin-bottom: 24rem; + .sm\:-mt-10 { + margin-top: -2.5rem; } - .sm\:ml-96 { - margin-left: 24rem; + .sm\:-mt-11 { + margin-top: -2.75rem; } - .sm\:mt-auto { - margin-top: auto; + .sm\:-mt-12 { + margin-top: -3rem; } - .sm\:mr-auto { - margin-right: auto; + .sm\:-mt-14 { + margin-top: -3.5rem; } - .sm\:mb-auto { - margin-bottom: auto; + .sm\:-mt-16 { + margin-top: -4rem; } - .sm\:ml-auto { - margin-left: auto; + .sm\:-mt-20 { + margin-top: -5rem; } - .sm\:mt-px { - margin-top: 1px; + .sm\:-mt-24 { + margin-top: -6rem; } - .sm\:mr-px { - margin-right: 1px; + .sm\:-mt-28 { + margin-top: -7rem; } - .sm\:mb-px { - margin-bottom: 1px; + .sm\:-mt-32 { + margin-top: -8rem; } - .sm\:ml-px { - margin-left: 1px; + .sm\:-mt-36 { + margin-top: -9rem; } - .sm\:mt-0\.5 { - margin-top: 0.125rem; + .sm\:-mt-40 { + margin-top: -10rem; } - .sm\:mr-0\.5 { - margin-right: 0.125rem; + .sm\:-mt-44 { + margin-top: -11rem; } - .sm\:mb-0\.5 { - margin-bottom: 0.125rem; + .sm\:-mt-48 { + margin-top: -12rem; } - .sm\:ml-0\.5 { - margin-left: 0.125rem; + .sm\:-mt-52 { + margin-top: -13rem; } - .sm\:mt-1\.5 { - margin-top: 0.375rem; + .sm\:-mt-56 { + margin-top: -14rem; } - .sm\:mr-1\.5 { - margin-right: 0.375rem; + .sm\:-mt-60 { + margin-top: -15rem; } - .sm\:mb-1\.5 { - margin-bottom: 0.375rem; + .sm\:-mt-64 { + margin-top: -16rem; } - .sm\:ml-1\.5 { - margin-left: 0.375rem; + .sm\:-mt-72 { + margin-top: -18rem; } - .sm\:mt-2\.5 { - margin-top: 0.625rem; + .sm\:-mt-80 { + margin-top: -20rem; } - .sm\:mr-2\.5 { - margin-right: 0.625rem; + .sm\:-mt-96 { + margin-top: -24rem; } - .sm\:mb-2\.5 { - margin-bottom: 0.625rem; + .sm\:-mt-px { + margin-top: -1px; } - .sm\:ml-2\.5 { - margin-left: 0.625rem; + .sm\:-mt-0\.5 { + margin-top: -0.125rem; } - .sm\:mt-3\.5 { - margin-top: 0.875rem; + .sm\:-mt-1\.5 { + margin-top: -0.375rem; } - .sm\:mr-3\.5 { - margin-right: 0.875rem; + .sm\:-mt-2\.5 { + margin-top: -0.625rem; } - .sm\:mb-3\.5 { - margin-bottom: 0.875rem; + .sm\:-mt-3\.5 { + margin-top: -0.875rem; } - .sm\:ml-3\.5 { - margin-left: 0.875rem; + .sm\:mr-0 { + margin-right: 0px; } - .sm\:-mt-0 { - margin-top: 0px; + .sm\:mr-1 { + margin-right: 0.25rem; } - .sm\:-mr-0 { - margin-right: 0px; + .sm\:mr-2 { + margin-right: 0.5rem; } - .sm\:-mb-0 { - margin-bottom: 0px; + .sm\:mr-3 { + margin-right: 0.75rem; } - .sm\:-ml-0 { - margin-left: 0px; + .sm\:mr-4 { + margin-right: 1rem; } - .sm\:-mt-1 { - margin-top: -0.25rem; + .sm\:mr-5 { + margin-right: 1.25rem; } - .sm\:-mr-1 { - margin-right: -0.25rem; + .sm\:mr-6 { + margin-right: 1.5rem; } - .sm\:-mb-1 { - margin-bottom: -0.25rem; + .sm\:mr-7 { + margin-right: 1.75rem; } - .sm\:-ml-1 { - margin-left: -0.25rem; + .sm\:mr-8 { + margin-right: 2rem; } - .sm\:-mt-2 { - margin-top: -0.5rem; + .sm\:mr-9 { + margin-right: 2.25rem; } - .sm\:-mr-2 { - margin-right: -0.5rem; + .sm\:mr-10 { + margin-right: 2.5rem; } - .sm\:-mb-2 { - margin-bottom: -0.5rem; + .sm\:mr-11 { + margin-right: 2.75rem; } - .sm\:-ml-2 { - margin-left: -0.5rem; + .sm\:mr-12 { + margin-right: 3rem; } - .sm\:-mt-3 { - margin-top: -0.75rem; + .sm\:mr-14 { + margin-right: 3.5rem; } - .sm\:-mr-3 { - margin-right: -0.75rem; + .sm\:mr-16 { + margin-right: 4rem; } - .sm\:-mb-3 { - margin-bottom: -0.75rem; + .sm\:mr-20 { + margin-right: 5rem; } - .sm\:-ml-3 { - margin-left: -0.75rem; + .sm\:mr-24 { + margin-right: 6rem; } - .sm\:-mt-4 { - margin-top: -1rem; + .sm\:mr-28 { + margin-right: 7rem; } - .sm\:-mr-4 { - margin-right: -1rem; + .sm\:mr-32 { + margin-right: 8rem; } - .sm\:-mb-4 { - margin-bottom: -1rem; + .sm\:mr-36 { + margin-right: 9rem; } - .sm\:-ml-4 { - margin-left: -1rem; + .sm\:mr-40 { + margin-right: 10rem; } - .sm\:-mt-5 { - margin-top: -1.25rem; + .sm\:mr-44 { + margin-right: 11rem; } - .sm\:-mr-5 { - margin-right: -1.25rem; + .sm\:mr-48 { + margin-right: 12rem; } - .sm\:-mb-5 { - margin-bottom: -1.25rem; + .sm\:mr-52 { + margin-right: 13rem; } - .sm\:-ml-5 { - margin-left: -1.25rem; + .sm\:mr-56 { + margin-right: 14rem; } - .sm\:-mt-6 { - margin-top: -1.5rem; + .sm\:mr-60 { + margin-right: 15rem; } - .sm\:-mr-6 { - margin-right: -1.5rem; + .sm\:mr-64 { + margin-right: 16rem; } - .sm\:-mb-6 { - margin-bottom: -1.5rem; + .sm\:mr-72 { + margin-right: 18rem; } - .sm\:-ml-6 { - margin-left: -1.5rem; + .sm\:mr-80 { + margin-right: 20rem; } - .sm\:-mt-7 { - margin-top: -1.75rem; + .sm\:mr-96 { + margin-right: 24rem; } - .sm\:-mr-7 { - margin-right: -1.75rem; + .sm\:mr-auto { + margin-right: auto; } - .sm\:-mb-7 { - margin-bottom: -1.75rem; + .sm\:mr-px { + margin-right: 1px; } - .sm\:-ml-7 { - margin-left: -1.75rem; + .sm\:mr-0\.5 { + margin-right: 0.125rem; } - .sm\:-mt-8 { - margin-top: -2rem; + .sm\:mr-1\.5 { + margin-right: 0.375rem; } - .sm\:-mr-8 { - margin-right: -2rem; + .sm\:mr-2\.5 { + margin-right: 0.625rem; } - .sm\:-mb-8 { - margin-bottom: -2rem; + .sm\:mr-3\.5 { + margin-right: 0.875rem; } - .sm\:-ml-8 { - margin-left: -2rem; + .sm\:-mr-0 { + margin-right: 0px; } - .sm\:-mt-9 { - margin-top: -2.25rem; + .sm\:-mr-1 { + margin-right: -0.25rem; } - .sm\:-mr-9 { - margin-right: -2.25rem; + .sm\:-mr-2 { + margin-right: -0.5rem; } - .sm\:-mb-9 { - margin-bottom: -2.25rem; + .sm\:-mr-3 { + margin-right: -0.75rem; } - .sm\:-ml-9 { - margin-left: -2.25rem; + .sm\:-mr-4 { + margin-right: -1rem; } - .sm\:-mt-10 { - margin-top: -2.5rem; + .sm\:-mr-5 { + margin-right: -1.25rem; } - .sm\:-mr-10 { - margin-right: -2.5rem; + .sm\:-mr-6 { + margin-right: -1.5rem; } - .sm\:-mb-10 { - margin-bottom: -2.5rem; + .sm\:-mr-7 { + margin-right: -1.75rem; } - .sm\:-ml-10 { - margin-left: -2.5rem; + .sm\:-mr-8 { + margin-right: -2rem; } - .sm\:-mt-11 { - margin-top: -2.75rem; + .sm\:-mr-9 { + margin-right: -2.25rem; + } + + .sm\:-mr-10 { + margin-right: -2.5rem; } .sm\:-mr-11 { margin-right: -2.75rem; } - .sm\:-mb-11 { - margin-bottom: -2.75rem; + .sm\:-mr-12 { + margin-right: -3rem; } - .sm\:-ml-11 { - margin-left: -2.75rem; + .sm\:-mr-14 { + margin-right: -3.5rem; } - .sm\:-mt-12 { - margin-top: -3rem; + .sm\:-mr-16 { + margin-right: -4rem; } - .sm\:-mr-12 { - margin-right: -3rem; + .sm\:-mr-20 { + margin-right: -5rem; } - .sm\:-mb-12 { - margin-bottom: -3rem; + .sm\:-mr-24 { + margin-right: -6rem; } - .sm\:-ml-12 { - margin-left: -3rem; + .sm\:-mr-28 { + margin-right: -7rem; } - .sm\:-mt-14 { - margin-top: -3.5rem; + .sm\:-mr-32 { + margin-right: -8rem; } - .sm\:-mr-14 { - margin-right: -3.5rem; + .sm\:-mr-36 { + margin-right: -9rem; } - .sm\:-mb-14 { - margin-bottom: -3.5rem; + .sm\:-mr-40 { + margin-right: -10rem; } - .sm\:-ml-14 { - margin-left: -3.5rem; + .sm\:-mr-44 { + margin-right: -11rem; } - .sm\:-mt-16 { - margin-top: -4rem; + .sm\:-mr-48 { + margin-right: -12rem; } - .sm\:-mr-16 { - margin-right: -4rem; + .sm\:-mr-52 { + margin-right: -13rem; } - .sm\:-mb-16 { - margin-bottom: -4rem; + .sm\:-mr-56 { + margin-right: -14rem; } - .sm\:-ml-16 { - margin-left: -4rem; + .sm\:-mr-60 { + margin-right: -15rem; } - .sm\:-mt-20 { - margin-top: -5rem; + .sm\:-mr-64 { + margin-right: -16rem; } - .sm\:-mr-20 { - margin-right: -5rem; + .sm\:-mr-72 { + margin-right: -18rem; } - .sm\:-mb-20 { - margin-bottom: -5rem; + .sm\:-mr-80 { + margin-right: -20rem; } - .sm\:-ml-20 { - margin-left: -5rem; + .sm\:-mr-96 { + margin-right: -24rem; } - .sm\:-mt-24 { - margin-top: -6rem; + .sm\:-mr-px { + margin-right: -1px; } - .sm\:-mr-24 { - margin-right: -6rem; + .sm\:-mr-0\.5 { + margin-right: -0.125rem; } - .sm\:-mb-24 { - margin-bottom: -6rem; + .sm\:-mr-1\.5 { + margin-right: -0.375rem; } - .sm\:-ml-24 { - margin-left: -6rem; + .sm\:-mr-2\.5 { + margin-right: -0.625rem; } - .sm\:-mt-28 { - margin-top: -7rem; + .sm\:-mr-3\.5 { + margin-right: -0.875rem; } - .sm\:-mr-28 { - margin-right: -7rem; + .sm\:mb-0 { + margin-bottom: 0px; } - .sm\:-mb-28 { - margin-bottom: -7rem; + .sm\:mb-1 { + margin-bottom: 0.25rem; } - .sm\:-ml-28 { - margin-left: -7rem; + .sm\:mb-2 { + margin-bottom: 0.5rem; } - .sm\:-mt-32 { - margin-top: -8rem; + .sm\:mb-3 { + margin-bottom: 0.75rem; } - .sm\:-mr-32 { - margin-right: -8rem; + .sm\:mb-4 { + margin-bottom: 1rem; } - .sm\:-mb-32 { - margin-bottom: -8rem; + .sm\:mb-5 { + margin-bottom: 1.25rem; } - .sm\:-ml-32 { - margin-left: -8rem; + .sm\:mb-6 { + margin-bottom: 1.5rem; } - .sm\:-mt-36 { - margin-top: -9rem; + .sm\:mb-7 { + margin-bottom: 1.75rem; } - .sm\:-mr-36 { - margin-right: -9rem; + .sm\:mb-8 { + margin-bottom: 2rem; } - .sm\:-mb-36 { - margin-bottom: -9rem; + .sm\:mb-9 { + margin-bottom: 2.25rem; } - .sm\:-ml-36 { - margin-left: -9rem; + .sm\:mb-10 { + margin-bottom: 2.5rem; } - .sm\:-mt-40 { - margin-top: -10rem; + .sm\:mb-11 { + margin-bottom: 2.75rem; } - .sm\:-mr-40 { - margin-right: -10rem; + .sm\:mb-12 { + margin-bottom: 3rem; } - .sm\:-mb-40 { - margin-bottom: -10rem; + .sm\:mb-14 { + margin-bottom: 3.5rem; } - .sm\:-ml-40 { - margin-left: -10rem; + .sm\:mb-16 { + margin-bottom: 4rem; } - .sm\:-mt-44 { - margin-top: -11rem; + .sm\:mb-20 { + margin-bottom: 5rem; } - .sm\:-mr-44 { - margin-right: -11rem; + .sm\:mb-24 { + margin-bottom: 6rem; } - .sm\:-mb-44 { - margin-bottom: -11rem; + .sm\:mb-28 { + margin-bottom: 7rem; } - .sm\:-ml-44 { - margin-left: -11rem; + .sm\:mb-32 { + margin-bottom: 8rem; } - .sm\:-mt-48 { - margin-top: -12rem; + .sm\:mb-36 { + margin-bottom: 9rem; } - .sm\:-mr-48 { - margin-right: -12rem; + .sm\:mb-40 { + margin-bottom: 10rem; } - .sm\:-mb-48 { - margin-bottom: -12rem; + .sm\:mb-44 { + margin-bottom: 11rem; } - .sm\:-ml-48 { - margin-left: -12rem; + .sm\:mb-48 { + margin-bottom: 12rem; } - .sm\:-mt-52 { - margin-top: -13rem; + .sm\:mb-52 { + margin-bottom: 13rem; } - .sm\:-mr-52 { - margin-right: -13rem; + .sm\:mb-56 { + margin-bottom: 14rem; } - .sm\:-mb-52 { - margin-bottom: -13rem; + .sm\:mb-60 { + margin-bottom: 15rem; } - .sm\:-ml-52 { - margin-left: -13rem; + .sm\:mb-64 { + margin-bottom: 16rem; } - .sm\:-mt-56 { - margin-top: -14rem; + .sm\:mb-72 { + margin-bottom: 18rem; } - .sm\:-mr-56 { - margin-right: -14rem; + .sm\:mb-80 { + margin-bottom: 20rem; } - .sm\:-mb-56 { - margin-bottom: -14rem; + .sm\:mb-96 { + margin-bottom: 24rem; } - .sm\:-ml-56 { - margin-left: -14rem; + .sm\:mb-auto { + margin-bottom: auto; } - .sm\:-mt-60 { - margin-top: -15rem; + .sm\:mb-px { + margin-bottom: 1px; } - .sm\:-mr-60 { - margin-right: -15rem; + .sm\:mb-0\.5 { + margin-bottom: 0.125rem; } - .sm\:-mb-60 { - margin-bottom: -15rem; + .sm\:mb-1\.5 { + margin-bottom: 0.375rem; } - .sm\:-ml-60 { - margin-left: -15rem; + .sm\:mb-2\.5 { + margin-bottom: 0.625rem; } - .sm\:-mt-64 { - margin-top: -16rem; + .sm\:mb-3\.5 { + margin-bottom: 0.875rem; } - .sm\:-mr-64 { - margin-right: -16rem; + .sm\:-mb-0 { + margin-bottom: 0px; } - .sm\:-mb-64 { - margin-bottom: -16rem; + .sm\:-mb-1 { + margin-bottom: -0.25rem; } - .sm\:-ml-64 { - margin-left: -16rem; + .sm\:-mb-2 { + margin-bottom: -0.5rem; } - .sm\:-mt-72 { - margin-top: -18rem; + .sm\:-mb-3 { + margin-bottom: -0.75rem; } - .sm\:-mr-72 { - margin-right: -18rem; + .sm\:-mb-4 { + margin-bottom: -1rem; } - .sm\:-mb-72 { - margin-bottom: -18rem; + .sm\:-mb-5 { + margin-bottom: -1.25rem; } - .sm\:-ml-72 { - margin-left: -18rem; + .sm\:-mb-6 { + margin-bottom: -1.5rem; } - .sm\:-mt-80 { - margin-top: -20rem; + .sm\:-mb-7 { + margin-bottom: -1.75rem; } - .sm\:-mr-80 { - margin-right: -20rem; + .sm\:-mb-8 { + margin-bottom: -2rem; } - .sm\:-mb-80 { - margin-bottom: -20rem; + .sm\:-mb-9 { + margin-bottom: -2.25rem; } - .sm\:-ml-80 { - margin-left: -20rem; + .sm\:-mb-10 { + margin-bottom: -2.5rem; } - .sm\:-mt-96 { - margin-top: -24rem; + .sm\:-mb-11 { + margin-bottom: -2.75rem; } - .sm\:-mr-96 { - margin-right: -24rem; + .sm\:-mb-12 { + margin-bottom: -3rem; } - .sm\:-mb-96 { - margin-bottom: -24rem; + .sm\:-mb-14 { + margin-bottom: -3.5rem; } - .sm\:-ml-96 { - margin-left: -24rem; + .sm\:-mb-16 { + margin-bottom: -4rem; } - .sm\:-mt-px { - margin-top: -1px; + .sm\:-mb-20 { + margin-bottom: -5rem; } - .sm\:-mr-px { - margin-right: -1px; + .sm\:-mb-24 { + margin-bottom: -6rem; } - .sm\:-mb-px { - margin-bottom: -1px; + .sm\:-mb-28 { + margin-bottom: -7rem; } - .sm\:-ml-px { - margin-left: -1px; + .sm\:-mb-32 { + margin-bottom: -8rem; } - .sm\:-mt-0\.5 { - margin-top: -0.125rem; + .sm\:-mb-36 { + margin-bottom: -9rem; } - .sm\:-mr-0\.5 { - margin-right: -0.125rem; + .sm\:-mb-40 { + margin-bottom: -10rem; } - .sm\:-mb-0\.5 { - margin-bottom: -0.125rem; + .sm\:-mb-44 { + margin-bottom: -11rem; } - .sm\:-ml-0\.5 { - margin-left: -0.125rem; + .sm\:-mb-48 { + margin-bottom: -12rem; } - .sm\:-mt-1\.5 { - margin-top: -0.375rem; + .sm\:-mb-52 { + margin-bottom: -13rem; } - .sm\:-mr-1\.5 { - margin-right: -0.375rem; + .sm\:-mb-56 { + margin-bottom: -14rem; } - .sm\:-mb-1\.5 { - margin-bottom: -0.375rem; + .sm\:-mb-60 { + margin-bottom: -15rem; } - .sm\:-ml-1\.5 { - margin-left: -0.375rem; + .sm\:-mb-64 { + margin-bottom: -16rem; } - .sm\:-mt-2\.5 { - margin-top: -0.625rem; + .sm\:-mb-72 { + margin-bottom: -18rem; } - .sm\:-mr-2\.5 { - margin-right: -0.625rem; + .sm\:-mb-80 { + margin-bottom: -20rem; } - .sm\:-mb-2\.5 { - margin-bottom: -0.625rem; + .sm\:-mb-96 { + margin-bottom: -24rem; } - .sm\:-ml-2\.5 { - margin-left: -0.625rem; + .sm\:-mb-px { + margin-bottom: -1px; } - .sm\:-mt-3\.5 { - margin-top: -0.875rem; + .sm\:-mb-0\.5 { + margin-bottom: -0.125rem; } - .sm\:-mr-3\.5 { - margin-right: -0.875rem; + .sm\:-mb-1\.5 { + margin-bottom: -0.375rem; + } + + .sm\:-mb-2\.5 { + margin-bottom: -0.625rem; } .sm\:-mb-3\.5 { margin-bottom: -0.875rem; } + .sm\:ml-0 { + margin-left: 0px; + } + + .sm\:ml-1 { + margin-left: 0.25rem; + } + + .sm\:ml-2 { + margin-left: 0.5rem; + } + + .sm\:ml-3 { + margin-left: 0.75rem; + } + + .sm\:ml-4 { + margin-left: 1rem; + } + + .sm\:ml-5 { + margin-left: 1.25rem; + } + + .sm\:ml-6 { + margin-left: 1.5rem; + } + + .sm\:ml-7 { + margin-left: 1.75rem; + } + + .sm\:ml-8 { + margin-left: 2rem; + } + + .sm\:ml-9 { + margin-left: 2.25rem; + } + + .sm\:ml-10 { + margin-left: 2.5rem; + } + + .sm\:ml-11 { + margin-left: 2.75rem; + } + + .sm\:ml-12 { + margin-left: 3rem; + } + + .sm\:ml-14 { + margin-left: 3.5rem; + } + + .sm\:ml-16 { + margin-left: 4rem; + } + + .sm\:ml-20 { + margin-left: 5rem; + } + + .sm\:ml-24 { + margin-left: 6rem; + } + + .sm\:ml-28 { + margin-left: 7rem; + } + + .sm\:ml-32 { + margin-left: 8rem; + } + + .sm\:ml-36 { + margin-left: 9rem; + } + + .sm\:ml-40 { + margin-left: 10rem; + } + + .sm\:ml-44 { + margin-left: 11rem; + } + + .sm\:ml-48 { + margin-left: 12rem; + } + + .sm\:ml-52 { + margin-left: 13rem; + } + + .sm\:ml-56 { + margin-left: 14rem; + } + + .sm\:ml-60 { + margin-left: 15rem; + } + + .sm\:ml-64 { + margin-left: 16rem; + } + + .sm\:ml-72 { + margin-left: 18rem; + } + + .sm\:ml-80 { + margin-left: 20rem; + } + + .sm\:ml-96 { + margin-left: 24rem; + } + + .sm\:ml-auto { + margin-left: auto; + } + + .sm\:ml-px { + margin-left: 1px; + } + + .sm\:ml-0\.5 { + margin-left: 0.125rem; + } + + .sm\:ml-1\.5 { + margin-left: 0.375rem; + } + + .sm\:ml-2\.5 { + margin-left: 0.625rem; + } + + .sm\:ml-3\.5 { + margin-left: 0.875rem; + } + + .sm\:-ml-0 { + margin-left: 0px; + } + + .sm\:-ml-1 { + margin-left: -0.25rem; + } + + .sm\:-ml-2 { + margin-left: -0.5rem; + } + + .sm\:-ml-3 { + margin-left: -0.75rem; + } + + .sm\:-ml-4 { + margin-left: -1rem; + } + + .sm\:-ml-5 { + margin-left: -1.25rem; + } + + .sm\:-ml-6 { + margin-left: -1.5rem; + } + + .sm\:-ml-7 { + margin-left: -1.75rem; + } + + .sm\:-ml-8 { + margin-left: -2rem; + } + + .sm\:-ml-9 { + margin-left: -2.25rem; + } + + .sm\:-ml-10 { + margin-left: -2.5rem; + } + + .sm\:-ml-11 { + margin-left: -2.75rem; + } + + .sm\:-ml-12 { + margin-left: -3rem; + } + + .sm\:-ml-14 { + margin-left: -3.5rem; + } + + .sm\:-ml-16 { + margin-left: -4rem; + } + + .sm\:-ml-20 { + margin-left: -5rem; + } + + .sm\:-ml-24 { + margin-left: -6rem; + } + + .sm\:-ml-28 { + margin-left: -7rem; + } + + .sm\:-ml-32 { + margin-left: -8rem; + } + + .sm\:-ml-36 { + margin-left: -9rem; + } + + .sm\:-ml-40 { + margin-left: -10rem; + } + + .sm\:-ml-44 { + margin-left: -11rem; + } + + .sm\:-ml-48 { + margin-left: -12rem; + } + + .sm\:-ml-52 { + margin-left: -13rem; + } + + .sm\:-ml-56 { + margin-left: -14rem; + } + + .sm\:-ml-60 { + margin-left: -15rem; + } + + .sm\:-ml-64 { + margin-left: -16rem; + } + + .sm\:-ml-72 { + margin-left: -18rem; + } + + .sm\:-ml-80 { + margin-left: -20rem; + } + + .sm\:-ml-96 { + margin-left: -24rem; + } + + .sm\:-ml-px { + margin-left: -1px; + } + + .sm\:-ml-0\.5 { + margin-left: -0.125rem; + } + + .sm\:-ml-1\.5 { + margin-left: -0.375rem; + } + + .sm\:-ml-2\.5 { + margin-left: -0.625rem; + } + .sm\:-ml-3\.5 { margin-left: -0.875rem; } @@ -63612,1848 +63612,1848 @@ video { margin: -0.875rem; } - .md\:my-0 { - margin-top: 0px; - margin-bottom: 0px; - } - .md\:mx-0 { margin-left: 0px; margin-right: 0px; } - .md\:my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; - } - .md\:mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; } - .md\:my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; - } - .md\:mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; } - .md\:my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; - } - .md\:mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; } - .md\:my-4 { - margin-top: 1rem; - margin-bottom: 1rem; - } - .md\:mx-4 { margin-left: 1rem; margin-right: 1rem; } - .md\:my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; - } - .md\:mx-5 { margin-left: 1.25rem; margin-right: 1.25rem; } - .md\:my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; - } - .md\:mx-6 { margin-left: 1.5rem; margin-right: 1.5rem; } - .md\:my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; - } - .md\:mx-7 { margin-left: 1.75rem; margin-right: 1.75rem; } - .md\:my-8 { - margin-top: 2rem; - margin-bottom: 2rem; - } - .md\:mx-8 { margin-left: 2rem; margin-right: 2rem; } - .md\:my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; - } - .md\:mx-9 { margin-left: 2.25rem; margin-right: 2.25rem; } - .md\:my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; - } - .md\:mx-10 { margin-left: 2.5rem; margin-right: 2.5rem; } - .md\:my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; - } - .md\:mx-11 { margin-left: 2.75rem; margin-right: 2.75rem; } - .md\:my-12 { - margin-top: 3rem; - margin-bottom: 3rem; - } - .md\:mx-12 { margin-left: 3rem; margin-right: 3rem; } - .md\:my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; - } - .md\:mx-14 { margin-left: 3.5rem; margin-right: 3.5rem; } - .md\:my-16 { - margin-top: 4rem; - margin-bottom: 4rem; - } - .md\:mx-16 { margin-left: 4rem; margin-right: 4rem; } - .md\:my-20 { - margin-top: 5rem; - margin-bottom: 5rem; - } - .md\:mx-20 { margin-left: 5rem; margin-right: 5rem; } - .md\:my-24 { - margin-top: 6rem; - margin-bottom: 6rem; - } - .md\:mx-24 { margin-left: 6rem; margin-right: 6rem; } - .md\:my-28 { - margin-top: 7rem; - margin-bottom: 7rem; - } - .md\:mx-28 { margin-left: 7rem; margin-right: 7rem; } - .md\:my-32 { - margin-top: 8rem; - margin-bottom: 8rem; - } - .md\:mx-32 { margin-left: 8rem; margin-right: 8rem; } - .md\:my-36 { - margin-top: 9rem; - margin-bottom: 9rem; - } - .md\:mx-36 { margin-left: 9rem; margin-right: 9rem; } - .md\:my-40 { - margin-top: 10rem; - margin-bottom: 10rem; - } - .md\:mx-40 { margin-left: 10rem; margin-right: 10rem; } - .md\:my-44 { - margin-top: 11rem; - margin-bottom: 11rem; - } - .md\:mx-44 { margin-left: 11rem; margin-right: 11rem; } - .md\:my-48 { - margin-top: 12rem; - margin-bottom: 12rem; - } - .md\:mx-48 { margin-left: 12rem; margin-right: 12rem; } - .md\:my-52 { - margin-top: 13rem; - margin-bottom: 13rem; - } - .md\:mx-52 { margin-left: 13rem; margin-right: 13rem; } - .md\:my-56 { - margin-top: 14rem; - margin-bottom: 14rem; - } - .md\:mx-56 { margin-left: 14rem; margin-right: 14rem; } - .md\:my-60 { - margin-top: 15rem; - margin-bottom: 15rem; - } - .md\:mx-60 { margin-left: 15rem; margin-right: 15rem; } - .md\:my-64 { - margin-top: 16rem; - margin-bottom: 16rem; - } - .md\:mx-64 { margin-left: 16rem; margin-right: 16rem; } - .md\:my-72 { - margin-top: 18rem; - margin-bottom: 18rem; - } - .md\:mx-72 { margin-left: 18rem; margin-right: 18rem; } - .md\:my-80 { - margin-top: 20rem; - margin-bottom: 20rem; - } - .md\:mx-80 { margin-left: 20rem; margin-right: 20rem; } - .md\:my-96 { - margin-top: 24rem; - margin-bottom: 24rem; - } - .md\:mx-96 { margin-left: 24rem; margin-right: 24rem; } - .md\:my-auto { - margin-top: auto; - margin-bottom: auto; - } - .md\:mx-auto { margin-left: auto; margin-right: auto; } - .md\:my-px { - margin-top: 1px; - margin-bottom: 1px; - } - .md\:mx-px { margin-left: 1px; margin-right: 1px; } - .md\:my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; - } - .md\:mx-0\.5 { margin-left: 0.125rem; margin-right: 0.125rem; } - .md\:my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; - } - .md\:mx-1\.5 { margin-left: 0.375rem; margin-right: 0.375rem; } - .md\:my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; - } - .md\:mx-2\.5 { margin-left: 0.625rem; margin-right: 0.625rem; } - .md\:my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; - } - .md\:mx-3\.5 { margin-left: 0.875rem; margin-right: 0.875rem; } - .md\:-my-0 { - margin-top: 0px; - margin-bottom: 0px; - } - .md\:-mx-0 { margin-left: 0px; margin-right: 0px; } - .md\:-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; - } - .md\:-mx-1 { margin-left: -0.25rem; margin-right: -0.25rem; } - .md\:-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; - } - .md\:-mx-2 { margin-left: -0.5rem; margin-right: -0.5rem; } - .md\:-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; - } - .md\:-mx-3 { margin-left: -0.75rem; margin-right: -0.75rem; } - .md\:-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; - } - .md\:-mx-4 { margin-left: -1rem; margin-right: -1rem; } - .md\:-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; - } - .md\:-mx-5 { margin-left: -1.25rem; margin-right: -1.25rem; } - .md\:-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; - } - .md\:-mx-6 { margin-left: -1.5rem; margin-right: -1.5rem; } - .md\:-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; - } - .md\:-mx-7 { margin-left: -1.75rem; margin-right: -1.75rem; } - .md\:-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; - } - .md\:-mx-8 { margin-left: -2rem; margin-right: -2rem; } - .md\:-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; - } - .md\:-mx-9 { margin-left: -2.25rem; margin-right: -2.25rem; } - .md\:-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; - } - .md\:-mx-10 { margin-left: -2.5rem; margin-right: -2.5rem; } - .md\:-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; - } - .md\:-mx-11 { margin-left: -2.75rem; margin-right: -2.75rem; } - .md\:-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; - } - .md\:-mx-12 { margin-left: -3rem; margin-right: -3rem; } - .md\:-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; - } - .md\:-mx-14 { margin-left: -3.5rem; margin-right: -3.5rem; } - .md\:-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; - } - .md\:-mx-16 { margin-left: -4rem; margin-right: -4rem; } - .md\:-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; - } - .md\:-mx-20 { margin-left: -5rem; margin-right: -5rem; } - .md\:-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; - } - .md\:-mx-24 { margin-left: -6rem; margin-right: -6rem; } - .md\:-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; - } - .md\:-mx-28 { margin-left: -7rem; margin-right: -7rem; } - .md\:-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; - } - .md\:-mx-32 { margin-left: -8rem; margin-right: -8rem; } - .md\:-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; - } - .md\:-mx-36 { margin-left: -9rem; margin-right: -9rem; } - .md\:-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; - } - .md\:-mx-40 { margin-left: -10rem; margin-right: -10rem; } - .md\:-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; - } - .md\:-mx-44 { margin-left: -11rem; margin-right: -11rem; } - .md\:-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; - } - .md\:-mx-48 { margin-left: -12rem; margin-right: -12rem; } - .md\:-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; - } - .md\:-mx-52 { margin-left: -13rem; margin-right: -13rem; } - .md\:-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; - } - .md\:-mx-56 { margin-left: -14rem; margin-right: -14rem; } - .md\:-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; - } - .md\:-mx-60 { margin-left: -15rem; margin-right: -15rem; } - .md\:-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; - } - .md\:-mx-64 { margin-left: -16rem; margin-right: -16rem; } - .md\:-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; - } - .md\:-mx-72 { margin-left: -18rem; margin-right: -18rem; } - .md\:-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; - } - .md\:-mx-80 { margin-left: -20rem; margin-right: -20rem; } - .md\:-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; - } - .md\:-mx-96 { margin-left: -24rem; margin-right: -24rem; } - .md\:-my-px { - margin-top: -1px; - margin-bottom: -1px; - } - .md\:-mx-px { margin-left: -1px; margin-right: -1px; } - .md\:-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; - } - .md\:-mx-0\.5 { margin-left: -0.125rem; margin-right: -0.125rem; } - .md\:-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; - } - .md\:-mx-1\.5 { margin-left: -0.375rem; margin-right: -0.375rem; } - .md\:-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; - } - .md\:-mx-2\.5 { margin-left: -0.625rem; margin-right: -0.625rem; } - .md\:-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; - } - .md\:-mx-3\.5 { margin-left: -0.875rem; margin-right: -0.875rem; } - .md\:mt-0 { + .md\:my-0 { margin-top: 0px; + margin-bottom: 0px; } - .md\:mr-0 { - margin-right: 0px; - } - - .md\:mb-0 { - margin-bottom: 0px; + .md\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } - .md\:ml-0 { - margin-left: 0px; + .md\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; } - .md\:mt-1 { - margin-top: 0.25rem; + .md\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; } - .md\:mr-1 { - margin-right: 0.25rem; + .md\:my-4 { + margin-top: 1rem; + margin-bottom: 1rem; } - .md\:mb-1 { - margin-bottom: 0.25rem; + .md\:my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; } - .md\:ml-1 { - margin-left: 0.25rem; + .md\:my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; } - .md\:mt-2 { - margin-top: 0.5rem; + .md\:my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; } - .md\:mr-2 { - margin-right: 0.5rem; + .md\:my-8 { + margin-top: 2rem; + margin-bottom: 2rem; } - .md\:mb-2 { - margin-bottom: 0.5rem; + .md\:my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; } - .md\:ml-2 { - margin-left: 0.5rem; + .md\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; } - .md\:mt-3 { - margin-top: 0.75rem; + .md\:my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; } - .md\:mr-3 { - margin-right: 0.75rem; + .md\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; } - .md\:mb-3 { - margin-bottom: 0.75rem; + .md\:my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; } - .md\:ml-3 { - margin-left: 0.75rem; + .md\:my-16 { + margin-top: 4rem; + margin-bottom: 4rem; } - .md\:mt-4 { - margin-top: 1rem; + .md\:my-20 { + margin-top: 5rem; + margin-bottom: 5rem; } - .md\:mr-4 { - margin-right: 1rem; + .md\:my-24 { + margin-top: 6rem; + margin-bottom: 6rem; } - .md\:mb-4 { - margin-bottom: 1rem; + .md\:my-28 { + margin-top: 7rem; + margin-bottom: 7rem; } - .md\:ml-4 { - margin-left: 1rem; + .md\:my-32 { + margin-top: 8rem; + margin-bottom: 8rem; } - .md\:mt-5 { - margin-top: 1.25rem; + .md\:my-36 { + margin-top: 9rem; + margin-bottom: 9rem; } - .md\:mr-5 { - margin-right: 1.25rem; + .md\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; } - .md\:mb-5 { - margin-bottom: 1.25rem; + .md\:my-44 { + margin-top: 11rem; + margin-bottom: 11rem; } - .md\:ml-5 { - margin-left: 1.25rem; + .md\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; } - .md\:mt-6 { - margin-top: 1.5rem; + .md\:my-52 { + margin-top: 13rem; + margin-bottom: 13rem; } - .md\:mr-6 { - margin-right: 1.5rem; + .md\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; } - .md\:mb-6 { - margin-bottom: 1.5rem; + .md\:my-60 { + margin-top: 15rem; + margin-bottom: 15rem; } - .md\:ml-6 { - margin-left: 1.5rem; + .md\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; } - .md\:mt-7 { - margin-top: 1.75rem; + .md\:my-72 { + margin-top: 18rem; + margin-bottom: 18rem; } - .md\:mr-7 { - margin-right: 1.75rem; + .md\:my-80 { + margin-top: 20rem; + margin-bottom: 20rem; } - .md\:mb-7 { - margin-bottom: 1.75rem; + .md\:my-96 { + margin-top: 24rem; + margin-bottom: 24rem; } - .md\:ml-7 { - margin-left: 1.75rem; + .md\:my-auto { + margin-top: auto; + margin-bottom: auto; } - .md\:mt-8 { - margin-top: 2rem; + .md\:my-px { + margin-top: 1px; + margin-bottom: 1px; } - .md\:mr-8 { - margin-right: 2rem; + .md\:my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; } - .md\:mb-8 { - margin-bottom: 2rem; + .md\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; } - .md\:ml-8 { - margin-left: 2rem; + .md\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; } - .md\:mt-9 { - margin-top: 2.25rem; + .md\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; } - .md\:mr-9 { - margin-right: 2.25rem; + .md\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .md\:mb-9 { - margin-bottom: 2.25rem; + .md\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } - .md\:ml-9 { - margin-left: 2.25rem; + .md\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } - .md\:mt-10 { - margin-top: 2.5rem; + .md\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } - .md\:mr-10 { - margin-right: 2.5rem; + .md\:-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } - .md\:mb-10 { - margin-bottom: 2.5rem; + .md\:-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } - .md\:ml-10 { - margin-left: 2.5rem; + .md\:-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } - .md\:mt-11 { - margin-top: 2.75rem; + .md\:-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } - .md\:mr-11 { - margin-right: 2.75rem; + .md\:-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } - .md\:mb-11 { - margin-bottom: 2.75rem; + .md\:-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } - .md\:ml-11 { - margin-left: 2.75rem; + .md\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } - .md\:mt-12 { - margin-top: 3rem; + .md\:-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } - .md\:mr-12 { - margin-right: 3rem; + .md\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } - .md\:mb-12 { - margin-bottom: 3rem; + .md\:-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } - .md\:ml-12 { - margin-left: 3rem; + .md\:-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } - .md\:mt-14 { - margin-top: 3.5rem; + .md\:-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } - .md\:mr-14 { - margin-right: 3.5rem; + .md\:-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } - .md\:mb-14 { - margin-bottom: 3.5rem; + .md\:-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } - .md\:ml-14 { - margin-left: 3.5rem; + .md\:-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } - .md\:mt-16 { - margin-top: 4rem; + .md\:-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } - .md\:mr-16 { - margin-right: 4rem; + .md\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } - .md\:mb-16 { - margin-bottom: 4rem; + .md\:-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } - .md\:ml-16 { - margin-left: 4rem; + .md\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } - .md\:mt-20 { - margin-top: 5rem; + .md\:-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } - .md\:mr-20 { - margin-right: 5rem; + .md\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } - .md\:mb-20 { - margin-bottom: 5rem; + .md\:-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } - .md\:ml-20 { - margin-left: 5rem; + .md\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } - .md\:mt-24 { - margin-top: 6rem; + .md\:-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } - .md\:mr-24 { - margin-right: 6rem; + .md\:-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } - .md\:mb-24 { - margin-bottom: 6rem; + .md\:-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } - .md\:ml-24 { - margin-left: 6rem; + .md\:-my-px { + margin-top: -1px; + margin-bottom: -1px; } - .md\:mt-28 { - margin-top: 7rem; + .md\:-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } - .md\:mr-28 { - margin-right: 7rem; + .md\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } - .md\:mb-28 { - margin-bottom: 7rem; + .md\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } - .md\:ml-28 { - margin-left: 7rem; + .md\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } - .md\:mt-32 { - margin-top: 8rem; + .md\:mt-0 { + margin-top: 0px; } - .md\:mr-32 { - margin-right: 8rem; + .md\:mt-1 { + margin-top: 0.25rem; } - .md\:mb-32 { - margin-bottom: 8rem; + .md\:mt-2 { + margin-top: 0.5rem; } - .md\:ml-32 { - margin-left: 8rem; + .md\:mt-3 { + margin-top: 0.75rem; } - .md\:mt-36 { - margin-top: 9rem; + .md\:mt-4 { + margin-top: 1rem; } - .md\:mr-36 { - margin-right: 9rem; + .md\:mt-5 { + margin-top: 1.25rem; } - .md\:mb-36 { - margin-bottom: 9rem; + .md\:mt-6 { + margin-top: 1.5rem; } - .md\:ml-36 { - margin-left: 9rem; + .md\:mt-7 { + margin-top: 1.75rem; } - .md\:mt-40 { - margin-top: 10rem; + .md\:mt-8 { + margin-top: 2rem; } - .md\:mr-40 { - margin-right: 10rem; + .md\:mt-9 { + margin-top: 2.25rem; } - .md\:mb-40 { - margin-bottom: 10rem; + .md\:mt-10 { + margin-top: 2.5rem; } - .md\:ml-40 { - margin-left: 10rem; + .md\:mt-11 { + margin-top: 2.75rem; } - .md\:mt-44 { - margin-top: 11rem; + .md\:mt-12 { + margin-top: 3rem; } - .md\:mr-44 { - margin-right: 11rem; + .md\:mt-14 { + margin-top: 3.5rem; } - .md\:mb-44 { - margin-bottom: 11rem; + .md\:mt-16 { + margin-top: 4rem; } - .md\:ml-44 { - margin-left: 11rem; + .md\:mt-20 { + margin-top: 5rem; } - .md\:mt-48 { - margin-top: 12rem; + .md\:mt-24 { + margin-top: 6rem; } - .md\:mr-48 { - margin-right: 12rem; + .md\:mt-28 { + margin-top: 7rem; } - .md\:mb-48 { - margin-bottom: 12rem; + .md\:mt-32 { + margin-top: 8rem; } - .md\:ml-48 { - margin-left: 12rem; + .md\:mt-36 { + margin-top: 9rem; } - .md\:mt-52 { - margin-top: 13rem; + .md\:mt-40 { + margin-top: 10rem; } - .md\:mr-52 { - margin-right: 13rem; + .md\:mt-44 { + margin-top: 11rem; } - .md\:mb-52 { - margin-bottom: 13rem; + .md\:mt-48 { + margin-top: 12rem; } - .md\:ml-52 { - margin-left: 13rem; + .md\:mt-52 { + margin-top: 13rem; } .md\:mt-56 { margin-top: 14rem; } - .md\:mr-56 { - margin-right: 14rem; + .md\:mt-60 { + margin-top: 15rem; } - .md\:mb-56 { - margin-bottom: 14rem; + .md\:mt-64 { + margin-top: 16rem; } - .md\:ml-56 { - margin-left: 14rem; + .md\:mt-72 { + margin-top: 18rem; } - .md\:mt-60 { - margin-top: 15rem; + .md\:mt-80 { + margin-top: 20rem; } - .md\:mr-60 { - margin-right: 15rem; + .md\:mt-96 { + margin-top: 24rem; } - .md\:mb-60 { - margin-bottom: 15rem; + .md\:mt-auto { + margin-top: auto; } - .md\:ml-60 { - margin-left: 15rem; + .md\:mt-px { + margin-top: 1px; } - .md\:mt-64 { - margin-top: 16rem; + .md\:mt-0\.5 { + margin-top: 0.125rem; } - .md\:mr-64 { - margin-right: 16rem; + .md\:mt-1\.5 { + margin-top: 0.375rem; } - .md\:mb-64 { - margin-bottom: 16rem; + .md\:mt-2\.5 { + margin-top: 0.625rem; } - .md\:ml-64 { - margin-left: 16rem; + .md\:mt-3\.5 { + margin-top: 0.875rem; } - .md\:mt-72 { - margin-top: 18rem; + .md\:-mt-0 { + margin-top: 0px; } - .md\:mr-72 { - margin-right: 18rem; + .md\:-mt-1 { + margin-top: -0.25rem; } - .md\:mb-72 { - margin-bottom: 18rem; + .md\:-mt-2 { + margin-top: -0.5rem; } - .md\:ml-72 { - margin-left: 18rem; + .md\:-mt-3 { + margin-top: -0.75rem; } - .md\:mt-80 { - margin-top: 20rem; + .md\:-mt-4 { + margin-top: -1rem; } - .md\:mr-80 { - margin-right: 20rem; + .md\:-mt-5 { + margin-top: -1.25rem; } - .md\:mb-80 { - margin-bottom: 20rem; + .md\:-mt-6 { + margin-top: -1.5rem; } - .md\:ml-80 { - margin-left: 20rem; + .md\:-mt-7 { + margin-top: -1.75rem; } - .md\:mt-96 { - margin-top: 24rem; + .md\:-mt-8 { + margin-top: -2rem; } - .md\:mr-96 { - margin-right: 24rem; + .md\:-mt-9 { + margin-top: -2.25rem; } - .md\:mb-96 { - margin-bottom: 24rem; + .md\:-mt-10 { + margin-top: -2.5rem; } - .md\:ml-96 { - margin-left: 24rem; + .md\:-mt-11 { + margin-top: -2.75rem; } - .md\:mt-auto { - margin-top: auto; + .md\:-mt-12 { + margin-top: -3rem; } - .md\:mr-auto { - margin-right: auto; + .md\:-mt-14 { + margin-top: -3.5rem; } - .md\:mb-auto { - margin-bottom: auto; + .md\:-mt-16 { + margin-top: -4rem; } - .md\:ml-auto { - margin-left: auto; + .md\:-mt-20 { + margin-top: -5rem; } - .md\:mt-px { - margin-top: 1px; + .md\:-mt-24 { + margin-top: -6rem; } - .md\:mr-px { - margin-right: 1px; + .md\:-mt-28 { + margin-top: -7rem; } - .md\:mb-px { - margin-bottom: 1px; + .md\:-mt-32 { + margin-top: -8rem; } - .md\:ml-px { - margin-left: 1px; + .md\:-mt-36 { + margin-top: -9rem; } - .md\:mt-0\.5 { - margin-top: 0.125rem; + .md\:-mt-40 { + margin-top: -10rem; } - .md\:mr-0\.5 { - margin-right: 0.125rem; + .md\:-mt-44 { + margin-top: -11rem; } - .md\:mb-0\.5 { - margin-bottom: 0.125rem; + .md\:-mt-48 { + margin-top: -12rem; } - .md\:ml-0\.5 { - margin-left: 0.125rem; + .md\:-mt-52 { + margin-top: -13rem; } - .md\:mt-1\.5 { - margin-top: 0.375rem; + .md\:-mt-56 { + margin-top: -14rem; } - .md\:mr-1\.5 { - margin-right: 0.375rem; + .md\:-mt-60 { + margin-top: -15rem; } - .md\:mb-1\.5 { - margin-bottom: 0.375rem; + .md\:-mt-64 { + margin-top: -16rem; } - .md\:ml-1\.5 { - margin-left: 0.375rem; + .md\:-mt-72 { + margin-top: -18rem; } - .md\:mt-2\.5 { - margin-top: 0.625rem; + .md\:-mt-80 { + margin-top: -20rem; } - .md\:mr-2\.5 { - margin-right: 0.625rem; + .md\:-mt-96 { + margin-top: -24rem; } - .md\:mb-2\.5 { - margin-bottom: 0.625rem; + .md\:-mt-px { + margin-top: -1px; } - .md\:ml-2\.5 { - margin-left: 0.625rem; + .md\:-mt-0\.5 { + margin-top: -0.125rem; } - .md\:mt-3\.5 { - margin-top: 0.875rem; + .md\:-mt-1\.5 { + margin-top: -0.375rem; } - .md\:mr-3\.5 { - margin-right: 0.875rem; + .md\:-mt-2\.5 { + margin-top: -0.625rem; } - .md\:mb-3\.5 { - margin-bottom: 0.875rem; + .md\:-mt-3\.5 { + margin-top: -0.875rem; } - .md\:ml-3\.5 { - margin-left: 0.875rem; + .md\:mr-0 { + margin-right: 0px; } - .md\:-mt-0 { - margin-top: 0px; + .md\:mr-1 { + margin-right: 0.25rem; } - .md\:-mr-0 { - margin-right: 0px; + .md\:mr-2 { + margin-right: 0.5rem; } - .md\:-mb-0 { - margin-bottom: 0px; + .md\:mr-3 { + margin-right: 0.75rem; } - .md\:-ml-0 { - margin-left: 0px; + .md\:mr-4 { + margin-right: 1rem; } - .md\:-mt-1 { - margin-top: -0.25rem; + .md\:mr-5 { + margin-right: 1.25rem; } - .md\:-mr-1 { - margin-right: -0.25rem; + .md\:mr-6 { + margin-right: 1.5rem; } - .md\:-mb-1 { - margin-bottom: -0.25rem; + .md\:mr-7 { + margin-right: 1.75rem; } - .md\:-ml-1 { - margin-left: -0.25rem; + .md\:mr-8 { + margin-right: 2rem; } - .md\:-mt-2 { - margin-top: -0.5rem; + .md\:mr-9 { + margin-right: 2.25rem; } - .md\:-mr-2 { - margin-right: -0.5rem; + .md\:mr-10 { + margin-right: 2.5rem; } - .md\:-mb-2 { - margin-bottom: -0.5rem; + .md\:mr-11 { + margin-right: 2.75rem; } - .md\:-ml-2 { - margin-left: -0.5rem; + .md\:mr-12 { + margin-right: 3rem; } - .md\:-mt-3 { - margin-top: -0.75rem; + .md\:mr-14 { + margin-right: 3.5rem; } - .md\:-mr-3 { - margin-right: -0.75rem; + .md\:mr-16 { + margin-right: 4rem; } - .md\:-mb-3 { - margin-bottom: -0.75rem; + .md\:mr-20 { + margin-right: 5rem; } - .md\:-ml-3 { - margin-left: -0.75rem; + .md\:mr-24 { + margin-right: 6rem; } - .md\:-mt-4 { - margin-top: -1rem; + .md\:mr-28 { + margin-right: 7rem; } - .md\:-mr-4 { - margin-right: -1rem; + .md\:mr-32 { + margin-right: 8rem; } - .md\:-mb-4 { - margin-bottom: -1rem; + .md\:mr-36 { + margin-right: 9rem; } - .md\:-ml-4 { - margin-left: -1rem; + .md\:mr-40 { + margin-right: 10rem; } - .md\:-mt-5 { - margin-top: -1.25rem; + .md\:mr-44 { + margin-right: 11rem; } - .md\:-mr-5 { - margin-right: -1.25rem; + .md\:mr-48 { + margin-right: 12rem; } - .md\:-mb-5 { - margin-bottom: -1.25rem; + .md\:mr-52 { + margin-right: 13rem; } - .md\:-ml-5 { - margin-left: -1.25rem; + .md\:mr-56 { + margin-right: 14rem; } - .md\:-mt-6 { - margin-top: -1.5rem; + .md\:mr-60 { + margin-right: 15rem; } - .md\:-mr-6 { - margin-right: -1.5rem; + .md\:mr-64 { + margin-right: 16rem; } - .md\:-mb-6 { - margin-bottom: -1.5rem; + .md\:mr-72 { + margin-right: 18rem; } - .md\:-ml-6 { - margin-left: -1.5rem; + .md\:mr-80 { + margin-right: 20rem; } - .md\:-mt-7 { - margin-top: -1.75rem; + .md\:mr-96 { + margin-right: 24rem; } - .md\:-mr-7 { - margin-right: -1.75rem; + .md\:mr-auto { + margin-right: auto; } - .md\:-mb-7 { - margin-bottom: -1.75rem; + .md\:mr-px { + margin-right: 1px; } - .md\:-ml-7 { - margin-left: -1.75rem; + .md\:mr-0\.5 { + margin-right: 0.125rem; } - .md\:-mt-8 { - margin-top: -2rem; + .md\:mr-1\.5 { + margin-right: 0.375rem; } - .md\:-mr-8 { - margin-right: -2rem; + .md\:mr-2\.5 { + margin-right: 0.625rem; } - .md\:-mb-8 { - margin-bottom: -2rem; + .md\:mr-3\.5 { + margin-right: 0.875rem; } - .md\:-ml-8 { - margin-left: -2rem; + .md\:-mr-0 { + margin-right: 0px; } - .md\:-mt-9 { - margin-top: -2.25rem; + .md\:-mr-1 { + margin-right: -0.25rem; } - .md\:-mr-9 { - margin-right: -2.25rem; + .md\:-mr-2 { + margin-right: -0.5rem; } - .md\:-mb-9 { - margin-bottom: -2.25rem; + .md\:-mr-3 { + margin-right: -0.75rem; } - .md\:-ml-9 { - margin-left: -2.25rem; + .md\:-mr-4 { + margin-right: -1rem; } - .md\:-mt-10 { - margin-top: -2.5rem; + .md\:-mr-5 { + margin-right: -1.25rem; } - .md\:-mr-10 { - margin-right: -2.5rem; + .md\:-mr-6 { + margin-right: -1.5rem; } - .md\:-mb-10 { - margin-bottom: -2.5rem; + .md\:-mr-7 { + margin-right: -1.75rem; } - .md\:-ml-10 { - margin-left: -2.5rem; + .md\:-mr-8 { + margin-right: -2rem; } - .md\:-mt-11 { - margin-top: -2.75rem; + .md\:-mr-9 { + margin-right: -2.25rem; + } + + .md\:-mr-10 { + margin-right: -2.5rem; } .md\:-mr-11 { margin-right: -2.75rem; } - .md\:-mb-11 { - margin-bottom: -2.75rem; + .md\:-mr-12 { + margin-right: -3rem; } - .md\:-ml-11 { - margin-left: -2.75rem; + .md\:-mr-14 { + margin-right: -3.5rem; } - .md\:-mt-12 { - margin-top: -3rem; + .md\:-mr-16 { + margin-right: -4rem; } - .md\:-mr-12 { - margin-right: -3rem; + .md\:-mr-20 { + margin-right: -5rem; } - .md\:-mb-12 { - margin-bottom: -3rem; + .md\:-mr-24 { + margin-right: -6rem; } - .md\:-ml-12 { - margin-left: -3rem; + .md\:-mr-28 { + margin-right: -7rem; } - .md\:-mt-14 { - margin-top: -3.5rem; + .md\:-mr-32 { + margin-right: -8rem; } - .md\:-mr-14 { - margin-right: -3.5rem; + .md\:-mr-36 { + margin-right: -9rem; } - .md\:-mb-14 { - margin-bottom: -3.5rem; + .md\:-mr-40 { + margin-right: -10rem; } - .md\:-ml-14 { - margin-left: -3.5rem; + .md\:-mr-44 { + margin-right: -11rem; } - .md\:-mt-16 { - margin-top: -4rem; + .md\:-mr-48 { + margin-right: -12rem; } - .md\:-mr-16 { - margin-right: -4rem; + .md\:-mr-52 { + margin-right: -13rem; } - .md\:-mb-16 { - margin-bottom: -4rem; + .md\:-mr-56 { + margin-right: -14rem; } - .md\:-ml-16 { - margin-left: -4rem; + .md\:-mr-60 { + margin-right: -15rem; } - .md\:-mt-20 { - margin-top: -5rem; + .md\:-mr-64 { + margin-right: -16rem; } - .md\:-mr-20 { - margin-right: -5rem; + .md\:-mr-72 { + margin-right: -18rem; } - .md\:-mb-20 { - margin-bottom: -5rem; + .md\:-mr-80 { + margin-right: -20rem; } - .md\:-ml-20 { - margin-left: -5rem; + .md\:-mr-96 { + margin-right: -24rem; } - .md\:-mt-24 { - margin-top: -6rem; + .md\:-mr-px { + margin-right: -1px; } - .md\:-mr-24 { - margin-right: -6rem; + .md\:-mr-0\.5 { + margin-right: -0.125rem; } - .md\:-mb-24 { - margin-bottom: -6rem; + .md\:-mr-1\.5 { + margin-right: -0.375rem; } - .md\:-ml-24 { - margin-left: -6rem; + .md\:-mr-2\.5 { + margin-right: -0.625rem; } - .md\:-mt-28 { - margin-top: -7rem; + .md\:-mr-3\.5 { + margin-right: -0.875rem; } - .md\:-mr-28 { - margin-right: -7rem; + .md\:mb-0 { + margin-bottom: 0px; } - .md\:-mb-28 { - margin-bottom: -7rem; + .md\:mb-1 { + margin-bottom: 0.25rem; } - .md\:-ml-28 { - margin-left: -7rem; + .md\:mb-2 { + margin-bottom: 0.5rem; } - .md\:-mt-32 { - margin-top: -8rem; + .md\:mb-3 { + margin-bottom: 0.75rem; } - .md\:-mr-32 { - margin-right: -8rem; + .md\:mb-4 { + margin-bottom: 1rem; } - .md\:-mb-32 { - margin-bottom: -8rem; + .md\:mb-5 { + margin-bottom: 1.25rem; } - .md\:-ml-32 { - margin-left: -8rem; + .md\:mb-6 { + margin-bottom: 1.5rem; } - .md\:-mt-36 { - margin-top: -9rem; + .md\:mb-7 { + margin-bottom: 1.75rem; } - .md\:-mr-36 { - margin-right: -9rem; + .md\:mb-8 { + margin-bottom: 2rem; } - .md\:-mb-36 { - margin-bottom: -9rem; + .md\:mb-9 { + margin-bottom: 2.25rem; } - .md\:-ml-36 { - margin-left: -9rem; + .md\:mb-10 { + margin-bottom: 2.5rem; } - .md\:-mt-40 { - margin-top: -10rem; + .md\:mb-11 { + margin-bottom: 2.75rem; } - .md\:-mr-40 { - margin-right: -10rem; + .md\:mb-12 { + margin-bottom: 3rem; } - .md\:-mb-40 { - margin-bottom: -10rem; + .md\:mb-14 { + margin-bottom: 3.5rem; } - .md\:-ml-40 { - margin-left: -10rem; + .md\:mb-16 { + margin-bottom: 4rem; } - .md\:-mt-44 { - margin-top: -11rem; + .md\:mb-20 { + margin-bottom: 5rem; } - .md\:-mr-44 { - margin-right: -11rem; + .md\:mb-24 { + margin-bottom: 6rem; } - .md\:-mb-44 { - margin-bottom: -11rem; + .md\:mb-28 { + margin-bottom: 7rem; } - .md\:-ml-44 { - margin-left: -11rem; + .md\:mb-32 { + margin-bottom: 8rem; } - .md\:-mt-48 { - margin-top: -12rem; + .md\:mb-36 { + margin-bottom: 9rem; } - .md\:-mr-48 { - margin-right: -12rem; + .md\:mb-40 { + margin-bottom: 10rem; } - .md\:-mb-48 { - margin-bottom: -12rem; + .md\:mb-44 { + margin-bottom: 11rem; } - .md\:-ml-48 { - margin-left: -12rem; + .md\:mb-48 { + margin-bottom: 12rem; } - .md\:-mt-52 { - margin-top: -13rem; + .md\:mb-52 { + margin-bottom: 13rem; } - .md\:-mr-52 { - margin-right: -13rem; + .md\:mb-56 { + margin-bottom: 14rem; } - .md\:-mb-52 { - margin-bottom: -13rem; + .md\:mb-60 { + margin-bottom: 15rem; } - .md\:-ml-52 { - margin-left: -13rem; + .md\:mb-64 { + margin-bottom: 16rem; } - .md\:-mt-56 { - margin-top: -14rem; + .md\:mb-72 { + margin-bottom: 18rem; } - .md\:-mr-56 { - margin-right: -14rem; + .md\:mb-80 { + margin-bottom: 20rem; } - .md\:-mb-56 { - margin-bottom: -14rem; + .md\:mb-96 { + margin-bottom: 24rem; } - .md\:-ml-56 { - margin-left: -14rem; + .md\:mb-auto { + margin-bottom: auto; } - .md\:-mt-60 { - margin-top: -15rem; + .md\:mb-px { + margin-bottom: 1px; } - .md\:-mr-60 { - margin-right: -15rem; + .md\:mb-0\.5 { + margin-bottom: 0.125rem; } - .md\:-mb-60 { - margin-bottom: -15rem; + .md\:mb-1\.5 { + margin-bottom: 0.375rem; } - .md\:-ml-60 { - margin-left: -15rem; + .md\:mb-2\.5 { + margin-bottom: 0.625rem; } - .md\:-mt-64 { - margin-top: -16rem; + .md\:mb-3\.5 { + margin-bottom: 0.875rem; } - .md\:-mr-64 { - margin-right: -16rem; + .md\:-mb-0 { + margin-bottom: 0px; } - .md\:-mb-64 { - margin-bottom: -16rem; + .md\:-mb-1 { + margin-bottom: -0.25rem; } - .md\:-ml-64 { - margin-left: -16rem; + .md\:-mb-2 { + margin-bottom: -0.5rem; } - .md\:-mt-72 { - margin-top: -18rem; + .md\:-mb-3 { + margin-bottom: -0.75rem; } - .md\:-mr-72 { - margin-right: -18rem; + .md\:-mb-4 { + margin-bottom: -1rem; } - .md\:-mb-72 { - margin-bottom: -18rem; + .md\:-mb-5 { + margin-bottom: -1.25rem; } - .md\:-ml-72 { - margin-left: -18rem; + .md\:-mb-6 { + margin-bottom: -1.5rem; } - .md\:-mt-80 { - margin-top: -20rem; + .md\:-mb-7 { + margin-bottom: -1.75rem; } - .md\:-mr-80 { - margin-right: -20rem; + .md\:-mb-8 { + margin-bottom: -2rem; } - .md\:-mb-80 { - margin-bottom: -20rem; + .md\:-mb-9 { + margin-bottom: -2.25rem; } - .md\:-ml-80 { - margin-left: -20rem; + .md\:-mb-10 { + margin-bottom: -2.5rem; } - .md\:-mt-96 { - margin-top: -24rem; + .md\:-mb-11 { + margin-bottom: -2.75rem; } - .md\:-mr-96 { - margin-right: -24rem; + .md\:-mb-12 { + margin-bottom: -3rem; } - .md\:-mb-96 { - margin-bottom: -24rem; + .md\:-mb-14 { + margin-bottom: -3.5rem; } - .md\:-ml-96 { - margin-left: -24rem; + .md\:-mb-16 { + margin-bottom: -4rem; } - .md\:-mt-px { - margin-top: -1px; + .md\:-mb-20 { + margin-bottom: -5rem; } - .md\:-mr-px { - margin-right: -1px; + .md\:-mb-24 { + margin-bottom: -6rem; } - .md\:-mb-px { - margin-bottom: -1px; + .md\:-mb-28 { + margin-bottom: -7rem; } - .md\:-ml-px { - margin-left: -1px; + .md\:-mb-32 { + margin-bottom: -8rem; } - .md\:-mt-0\.5 { - margin-top: -0.125rem; + .md\:-mb-36 { + margin-bottom: -9rem; } - .md\:-mr-0\.5 { - margin-right: -0.125rem; + .md\:-mb-40 { + margin-bottom: -10rem; } - .md\:-mb-0\.5 { - margin-bottom: -0.125rem; + .md\:-mb-44 { + margin-bottom: -11rem; } - .md\:-ml-0\.5 { - margin-left: -0.125rem; + .md\:-mb-48 { + margin-bottom: -12rem; } - .md\:-mt-1\.5 { - margin-top: -0.375rem; + .md\:-mb-52 { + margin-bottom: -13rem; } - .md\:-mr-1\.5 { - margin-right: -0.375rem; + .md\:-mb-56 { + margin-bottom: -14rem; } - .md\:-mb-1\.5 { - margin-bottom: -0.375rem; + .md\:-mb-60 { + margin-bottom: -15rem; } - .md\:-ml-1\.5 { - margin-left: -0.375rem; + .md\:-mb-64 { + margin-bottom: -16rem; } - .md\:-mt-2\.5 { - margin-top: -0.625rem; + .md\:-mb-72 { + margin-bottom: -18rem; } - .md\:-mr-2\.5 { - margin-right: -0.625rem; + .md\:-mb-80 { + margin-bottom: -20rem; } - .md\:-mb-2\.5 { - margin-bottom: -0.625rem; + .md\:-mb-96 { + margin-bottom: -24rem; } - .md\:-ml-2\.5 { - margin-left: -0.625rem; + .md\:-mb-px { + margin-bottom: -1px; } - .md\:-mt-3\.5 { - margin-top: -0.875rem; + .md\:-mb-0\.5 { + margin-bottom: -0.125rem; } - .md\:-mr-3\.5 { - margin-right: -0.875rem; + .md\:-mb-1\.5 { + margin-bottom: -0.375rem; + } + + .md\:-mb-2\.5 { + margin-bottom: -0.625rem; } .md\:-mb-3\.5 { margin-bottom: -0.875rem; } + .md\:ml-0 { + margin-left: 0px; + } + + .md\:ml-1 { + margin-left: 0.25rem; + } + + .md\:ml-2 { + margin-left: 0.5rem; + } + + .md\:ml-3 { + margin-left: 0.75rem; + } + + .md\:ml-4 { + margin-left: 1rem; + } + + .md\:ml-5 { + margin-left: 1.25rem; + } + + .md\:ml-6 { + margin-left: 1.5rem; + } + + .md\:ml-7 { + margin-left: 1.75rem; + } + + .md\:ml-8 { + margin-left: 2rem; + } + + .md\:ml-9 { + margin-left: 2.25rem; + } + + .md\:ml-10 { + margin-left: 2.5rem; + } + + .md\:ml-11 { + margin-left: 2.75rem; + } + + .md\:ml-12 { + margin-left: 3rem; + } + + .md\:ml-14 { + margin-left: 3.5rem; + } + + .md\:ml-16 { + margin-left: 4rem; + } + + .md\:ml-20 { + margin-left: 5rem; + } + + .md\:ml-24 { + margin-left: 6rem; + } + + .md\:ml-28 { + margin-left: 7rem; + } + + .md\:ml-32 { + margin-left: 8rem; + } + + .md\:ml-36 { + margin-left: 9rem; + } + + .md\:ml-40 { + margin-left: 10rem; + } + + .md\:ml-44 { + margin-left: 11rem; + } + + .md\:ml-48 { + margin-left: 12rem; + } + + .md\:ml-52 { + margin-left: 13rem; + } + + .md\:ml-56 { + margin-left: 14rem; + } + + .md\:ml-60 { + margin-left: 15rem; + } + + .md\:ml-64 { + margin-left: 16rem; + } + + .md\:ml-72 { + margin-left: 18rem; + } + + .md\:ml-80 { + margin-left: 20rem; + } + + .md\:ml-96 { + margin-left: 24rem; + } + + .md\:ml-auto { + margin-left: auto; + } + + .md\:ml-px { + margin-left: 1px; + } + + .md\:ml-0\.5 { + margin-left: 0.125rem; + } + + .md\:ml-1\.5 { + margin-left: 0.375rem; + } + + .md\:ml-2\.5 { + margin-left: 0.625rem; + } + + .md\:ml-3\.5 { + margin-left: 0.875rem; + } + + .md\:-ml-0 { + margin-left: 0px; + } + + .md\:-ml-1 { + margin-left: -0.25rem; + } + + .md\:-ml-2 { + margin-left: -0.5rem; + } + + .md\:-ml-3 { + margin-left: -0.75rem; + } + + .md\:-ml-4 { + margin-left: -1rem; + } + + .md\:-ml-5 { + margin-left: -1.25rem; + } + + .md\:-ml-6 { + margin-left: -1.5rem; + } + + .md\:-ml-7 { + margin-left: -1.75rem; + } + + .md\:-ml-8 { + margin-left: -2rem; + } + + .md\:-ml-9 { + margin-left: -2.25rem; + } + + .md\:-ml-10 { + margin-left: -2.5rem; + } + + .md\:-ml-11 { + margin-left: -2.75rem; + } + + .md\:-ml-12 { + margin-left: -3rem; + } + + .md\:-ml-14 { + margin-left: -3.5rem; + } + + .md\:-ml-16 { + margin-left: -4rem; + } + + .md\:-ml-20 { + margin-left: -5rem; + } + + .md\:-ml-24 { + margin-left: -6rem; + } + + .md\:-ml-28 { + margin-left: -7rem; + } + + .md\:-ml-32 { + margin-left: -8rem; + } + + .md\:-ml-36 { + margin-left: -9rem; + } + + .md\:-ml-40 { + margin-left: -10rem; + } + + .md\:-ml-44 { + margin-left: -11rem; + } + + .md\:-ml-48 { + margin-left: -12rem; + } + + .md\:-ml-52 { + margin-left: -13rem; + } + + .md\:-ml-56 { + margin-left: -14rem; + } + + .md\:-ml-60 { + margin-left: -15rem; + } + + .md\:-ml-64 { + margin-left: -16rem; + } + + .md\:-ml-72 { + margin-left: -18rem; + } + + .md\:-ml-80 { + margin-left: -20rem; + } + + .md\:-ml-96 { + margin-left: -24rem; + } + + .md\:-ml-px { + margin-left: -1px; + } + + .md\:-ml-0\.5 { + margin-left: -0.125rem; + } + + .md\:-ml-1\.5 { + margin-left: -0.375rem; + } + + .md\:-ml-2\.5 { + margin-left: -0.625rem; + } + .md\:-ml-3\.5 { margin-left: -0.875rem; } @@ -90179,1848 +90179,1848 @@ video { margin: -0.875rem; } - .lg\:my-0 { - margin-top: 0px; - margin-bottom: 0px; - } - .lg\:mx-0 { margin-left: 0px; margin-right: 0px; } - .lg\:my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; - } - .lg\:mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; } - .lg\:my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; - } - .lg\:mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; } - .lg\:my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; - } - .lg\:mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; } - .lg\:my-4 { - margin-top: 1rem; - margin-bottom: 1rem; - } - .lg\:mx-4 { margin-left: 1rem; margin-right: 1rem; } - .lg\:my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; - } - .lg\:mx-5 { margin-left: 1.25rem; margin-right: 1.25rem; } - .lg\:my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; - } - .lg\:mx-6 { margin-left: 1.5rem; margin-right: 1.5rem; } - .lg\:my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; - } - .lg\:mx-7 { margin-left: 1.75rem; margin-right: 1.75rem; } - .lg\:my-8 { - margin-top: 2rem; - margin-bottom: 2rem; - } - .lg\:mx-8 { margin-left: 2rem; margin-right: 2rem; } - .lg\:my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; - } - .lg\:mx-9 { margin-left: 2.25rem; margin-right: 2.25rem; } - .lg\:my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; - } - .lg\:mx-10 { margin-left: 2.5rem; margin-right: 2.5rem; } - .lg\:my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; - } - .lg\:mx-11 { margin-left: 2.75rem; margin-right: 2.75rem; } - .lg\:my-12 { - margin-top: 3rem; - margin-bottom: 3rem; - } - .lg\:mx-12 { margin-left: 3rem; margin-right: 3rem; } - .lg\:my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; - } - .lg\:mx-14 { margin-left: 3.5rem; margin-right: 3.5rem; } - .lg\:my-16 { - margin-top: 4rem; - margin-bottom: 4rem; - } - .lg\:mx-16 { margin-left: 4rem; margin-right: 4rem; } - .lg\:my-20 { - margin-top: 5rem; - margin-bottom: 5rem; - } - .lg\:mx-20 { margin-left: 5rem; margin-right: 5rem; } - .lg\:my-24 { - margin-top: 6rem; - margin-bottom: 6rem; - } - .lg\:mx-24 { margin-left: 6rem; margin-right: 6rem; } - .lg\:my-28 { - margin-top: 7rem; - margin-bottom: 7rem; - } - .lg\:mx-28 { margin-left: 7rem; margin-right: 7rem; } - .lg\:my-32 { - margin-top: 8rem; - margin-bottom: 8rem; - } - .lg\:mx-32 { margin-left: 8rem; margin-right: 8rem; } - .lg\:my-36 { - margin-top: 9rem; - margin-bottom: 9rem; - } - .lg\:mx-36 { margin-left: 9rem; margin-right: 9rem; } - .lg\:my-40 { - margin-top: 10rem; - margin-bottom: 10rem; - } - .lg\:mx-40 { margin-left: 10rem; margin-right: 10rem; } - .lg\:my-44 { - margin-top: 11rem; - margin-bottom: 11rem; - } - .lg\:mx-44 { margin-left: 11rem; margin-right: 11rem; } - .lg\:my-48 { - margin-top: 12rem; - margin-bottom: 12rem; - } - .lg\:mx-48 { margin-left: 12rem; margin-right: 12rem; } - .lg\:my-52 { - margin-top: 13rem; - margin-bottom: 13rem; - } - .lg\:mx-52 { margin-left: 13rem; margin-right: 13rem; } - .lg\:my-56 { - margin-top: 14rem; - margin-bottom: 14rem; - } - .lg\:mx-56 { margin-left: 14rem; margin-right: 14rem; } - .lg\:my-60 { - margin-top: 15rem; - margin-bottom: 15rem; - } - .lg\:mx-60 { margin-left: 15rem; margin-right: 15rem; } - .lg\:my-64 { - margin-top: 16rem; - margin-bottom: 16rem; - } - .lg\:mx-64 { margin-left: 16rem; margin-right: 16rem; } - .lg\:my-72 { - margin-top: 18rem; - margin-bottom: 18rem; - } - .lg\:mx-72 { margin-left: 18rem; margin-right: 18rem; } - .lg\:my-80 { - margin-top: 20rem; - margin-bottom: 20rem; - } - .lg\:mx-80 { margin-left: 20rem; margin-right: 20rem; } - .lg\:my-96 { - margin-top: 24rem; - margin-bottom: 24rem; - } - .lg\:mx-96 { margin-left: 24rem; margin-right: 24rem; } - .lg\:my-auto { - margin-top: auto; - margin-bottom: auto; - } - .lg\:mx-auto { margin-left: auto; margin-right: auto; } - .lg\:my-px { - margin-top: 1px; - margin-bottom: 1px; - } - .lg\:mx-px { margin-left: 1px; margin-right: 1px; } - .lg\:my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; - } - .lg\:mx-0\.5 { margin-left: 0.125rem; margin-right: 0.125rem; } - .lg\:my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; - } - .lg\:mx-1\.5 { margin-left: 0.375rem; margin-right: 0.375rem; } - .lg\:my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; - } - .lg\:mx-2\.5 { margin-left: 0.625rem; margin-right: 0.625rem; } - .lg\:my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; - } - .lg\:mx-3\.5 { margin-left: 0.875rem; margin-right: 0.875rem; } - .lg\:-my-0 { - margin-top: 0px; - margin-bottom: 0px; - } - .lg\:-mx-0 { margin-left: 0px; margin-right: 0px; } - .lg\:-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; - } - .lg\:-mx-1 { margin-left: -0.25rem; margin-right: -0.25rem; } - .lg\:-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; - } - .lg\:-mx-2 { margin-left: -0.5rem; margin-right: -0.5rem; } - .lg\:-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; - } - .lg\:-mx-3 { margin-left: -0.75rem; margin-right: -0.75rem; } - .lg\:-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; - } - .lg\:-mx-4 { margin-left: -1rem; margin-right: -1rem; } - .lg\:-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; - } - .lg\:-mx-5 { margin-left: -1.25rem; margin-right: -1.25rem; } - .lg\:-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; - } - .lg\:-mx-6 { margin-left: -1.5rem; margin-right: -1.5rem; } - .lg\:-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; - } - .lg\:-mx-7 { margin-left: -1.75rem; margin-right: -1.75rem; } - .lg\:-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; - } - .lg\:-mx-8 { margin-left: -2rem; margin-right: -2rem; } - .lg\:-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; - } - .lg\:-mx-9 { margin-left: -2.25rem; margin-right: -2.25rem; } - .lg\:-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; - } - .lg\:-mx-10 { margin-left: -2.5rem; margin-right: -2.5rem; } - .lg\:-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; - } - .lg\:-mx-11 { margin-left: -2.75rem; margin-right: -2.75rem; } - .lg\:-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; - } - .lg\:-mx-12 { margin-left: -3rem; margin-right: -3rem; } - .lg\:-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; - } - .lg\:-mx-14 { margin-left: -3.5rem; margin-right: -3.5rem; } - .lg\:-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; - } - .lg\:-mx-16 { margin-left: -4rem; margin-right: -4rem; } - .lg\:-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; - } - .lg\:-mx-20 { margin-left: -5rem; margin-right: -5rem; } - .lg\:-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; - } - .lg\:-mx-24 { margin-left: -6rem; margin-right: -6rem; } - .lg\:-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; - } - .lg\:-mx-28 { margin-left: -7rem; margin-right: -7rem; } - .lg\:-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; - } - .lg\:-mx-32 { margin-left: -8rem; margin-right: -8rem; } - .lg\:-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; - } - .lg\:-mx-36 { margin-left: -9rem; margin-right: -9rem; } - .lg\:-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; - } - .lg\:-mx-40 { margin-left: -10rem; margin-right: -10rem; } - .lg\:-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; - } - .lg\:-mx-44 { margin-left: -11rem; margin-right: -11rem; } - .lg\:-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; - } - .lg\:-mx-48 { margin-left: -12rem; margin-right: -12rem; } - .lg\:-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; - } - .lg\:-mx-52 { margin-left: -13rem; margin-right: -13rem; } - .lg\:-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; - } - .lg\:-mx-56 { margin-left: -14rem; margin-right: -14rem; } - .lg\:-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; - } - .lg\:-mx-60 { margin-left: -15rem; margin-right: -15rem; } - .lg\:-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; - } - .lg\:-mx-64 { margin-left: -16rem; margin-right: -16rem; } - .lg\:-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; - } - .lg\:-mx-72 { margin-left: -18rem; margin-right: -18rem; } - .lg\:-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; - } - .lg\:-mx-80 { margin-left: -20rem; margin-right: -20rem; } - .lg\:-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; - } - .lg\:-mx-96 { margin-left: -24rem; margin-right: -24rem; } - .lg\:-my-px { - margin-top: -1px; - margin-bottom: -1px; - } - .lg\:-mx-px { margin-left: -1px; margin-right: -1px; } - .lg\:-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; - } - .lg\:-mx-0\.5 { margin-left: -0.125rem; margin-right: -0.125rem; } - .lg\:-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; - } - .lg\:-mx-1\.5 { margin-left: -0.375rem; margin-right: -0.375rem; } - .lg\:-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; - } - .lg\:-mx-2\.5 { margin-left: -0.625rem; margin-right: -0.625rem; } - .lg\:-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; - } - .lg\:-mx-3\.5 { margin-left: -0.875rem; margin-right: -0.875rem; } - .lg\:mt-0 { + .lg\:my-0 { margin-top: 0px; + margin-bottom: 0px; } - .lg\:mr-0 { - margin-right: 0px; - } - - .lg\:mb-0 { - margin-bottom: 0px; + .lg\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } - .lg\:ml-0 { - margin-left: 0px; + .lg\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; } - .lg\:mt-1 { - margin-top: 0.25rem; + .lg\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; } - .lg\:mr-1 { - margin-right: 0.25rem; + .lg\:my-4 { + margin-top: 1rem; + margin-bottom: 1rem; } - .lg\:mb-1 { - margin-bottom: 0.25rem; + .lg\:my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; } - .lg\:ml-1 { - margin-left: 0.25rem; + .lg\:my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; } - .lg\:mt-2 { - margin-top: 0.5rem; + .lg\:my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; } - .lg\:mr-2 { - margin-right: 0.5rem; + .lg\:my-8 { + margin-top: 2rem; + margin-bottom: 2rem; } - .lg\:mb-2 { - margin-bottom: 0.5rem; + .lg\:my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; } - .lg\:ml-2 { - margin-left: 0.5rem; + .lg\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; } - .lg\:mt-3 { - margin-top: 0.75rem; + .lg\:my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; } - .lg\:mr-3 { - margin-right: 0.75rem; + .lg\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; } - .lg\:mb-3 { - margin-bottom: 0.75rem; + .lg\:my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; } - .lg\:ml-3 { - margin-left: 0.75rem; + .lg\:my-16 { + margin-top: 4rem; + margin-bottom: 4rem; } - .lg\:mt-4 { - margin-top: 1rem; + .lg\:my-20 { + margin-top: 5rem; + margin-bottom: 5rem; } - .lg\:mr-4 { - margin-right: 1rem; + .lg\:my-24 { + margin-top: 6rem; + margin-bottom: 6rem; } - .lg\:mb-4 { - margin-bottom: 1rem; + .lg\:my-28 { + margin-top: 7rem; + margin-bottom: 7rem; } - .lg\:ml-4 { - margin-left: 1rem; + .lg\:my-32 { + margin-top: 8rem; + margin-bottom: 8rem; } - .lg\:mt-5 { - margin-top: 1.25rem; + .lg\:my-36 { + margin-top: 9rem; + margin-bottom: 9rem; } - .lg\:mr-5 { - margin-right: 1.25rem; + .lg\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; } - .lg\:mb-5 { - margin-bottom: 1.25rem; + .lg\:my-44 { + margin-top: 11rem; + margin-bottom: 11rem; } - .lg\:ml-5 { - margin-left: 1.25rem; + .lg\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; } - .lg\:mt-6 { - margin-top: 1.5rem; + .lg\:my-52 { + margin-top: 13rem; + margin-bottom: 13rem; } - .lg\:mr-6 { - margin-right: 1.5rem; + .lg\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; } - .lg\:mb-6 { - margin-bottom: 1.5rem; + .lg\:my-60 { + margin-top: 15rem; + margin-bottom: 15rem; } - .lg\:ml-6 { - margin-left: 1.5rem; + .lg\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; } - .lg\:mt-7 { - margin-top: 1.75rem; + .lg\:my-72 { + margin-top: 18rem; + margin-bottom: 18rem; } - .lg\:mr-7 { - margin-right: 1.75rem; + .lg\:my-80 { + margin-top: 20rem; + margin-bottom: 20rem; } - .lg\:mb-7 { - margin-bottom: 1.75rem; + .lg\:my-96 { + margin-top: 24rem; + margin-bottom: 24rem; } - .lg\:ml-7 { - margin-left: 1.75rem; + .lg\:my-auto { + margin-top: auto; + margin-bottom: auto; } - .lg\:mt-8 { - margin-top: 2rem; + .lg\:my-px { + margin-top: 1px; + margin-bottom: 1px; } - .lg\:mr-8 { - margin-right: 2rem; + .lg\:my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; } - .lg\:mb-8 { - margin-bottom: 2rem; + .lg\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; } - .lg\:ml-8 { - margin-left: 2rem; + .lg\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; } - .lg\:mt-9 { - margin-top: 2.25rem; + .lg\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; } - .lg\:mr-9 { - margin-right: 2.25rem; + .lg\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .lg\:mb-9 { - margin-bottom: 2.25rem; + .lg\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } - .lg\:ml-9 { - margin-left: 2.25rem; + .lg\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } - .lg\:mt-10 { - margin-top: 2.5rem; + .lg\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } - .lg\:mr-10 { - margin-right: 2.5rem; + .lg\:-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } - .lg\:mb-10 { - margin-bottom: 2.5rem; + .lg\:-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } - .lg\:ml-10 { - margin-left: 2.5rem; + .lg\:-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } - .lg\:mt-11 { - margin-top: 2.75rem; + .lg\:-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } - .lg\:mr-11 { - margin-right: 2.75rem; + .lg\:-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } - .lg\:mb-11 { - margin-bottom: 2.75rem; + .lg\:-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } - .lg\:ml-11 { - margin-left: 2.75rem; + .lg\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } - .lg\:mt-12 { - margin-top: 3rem; + .lg\:-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } - .lg\:mr-12 { - margin-right: 3rem; + .lg\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } - .lg\:mb-12 { - margin-bottom: 3rem; + .lg\:-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } - .lg\:ml-12 { - margin-left: 3rem; + .lg\:-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } - .lg\:mt-14 { - margin-top: 3.5rem; + .lg\:-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } - .lg\:mr-14 { - margin-right: 3.5rem; + .lg\:-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } - .lg\:mb-14 { - margin-bottom: 3.5rem; + .lg\:-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } - .lg\:ml-14 { - margin-left: 3.5rem; + .lg\:-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } - .lg\:mt-16 { - margin-top: 4rem; + .lg\:-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } - .lg\:mr-16 { - margin-right: 4rem; + .lg\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } - .lg\:mb-16 { - margin-bottom: 4rem; + .lg\:-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } - .lg\:ml-16 { - margin-left: 4rem; + .lg\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } - .lg\:mt-20 { - margin-top: 5rem; + .lg\:-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } - .lg\:mr-20 { - margin-right: 5rem; + .lg\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } - .lg\:mb-20 { - margin-bottom: 5rem; + .lg\:-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } - .lg\:ml-20 { - margin-left: 5rem; + .lg\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } - .lg\:mt-24 { - margin-top: 6rem; + .lg\:-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } - .lg\:mr-24 { - margin-right: 6rem; + .lg\:-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } - .lg\:mb-24 { - margin-bottom: 6rem; + .lg\:-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } - .lg\:ml-24 { - margin-left: 6rem; + .lg\:-my-px { + margin-top: -1px; + margin-bottom: -1px; } - .lg\:mt-28 { - margin-top: 7rem; + .lg\:-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } - .lg\:mr-28 { - margin-right: 7rem; + .lg\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } - .lg\:mb-28 { - margin-bottom: 7rem; + .lg\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } - .lg\:ml-28 { - margin-left: 7rem; + .lg\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } - .lg\:mt-32 { - margin-top: 8rem; + .lg\:mt-0 { + margin-top: 0px; } - .lg\:mr-32 { - margin-right: 8rem; + .lg\:mt-1 { + margin-top: 0.25rem; } - .lg\:mb-32 { - margin-bottom: 8rem; + .lg\:mt-2 { + margin-top: 0.5rem; } - .lg\:ml-32 { - margin-left: 8rem; + .lg\:mt-3 { + margin-top: 0.75rem; } - .lg\:mt-36 { - margin-top: 9rem; + .lg\:mt-4 { + margin-top: 1rem; } - .lg\:mr-36 { - margin-right: 9rem; + .lg\:mt-5 { + margin-top: 1.25rem; } - .lg\:mb-36 { - margin-bottom: 9rem; + .lg\:mt-6 { + margin-top: 1.5rem; } - .lg\:ml-36 { - margin-left: 9rem; + .lg\:mt-7 { + margin-top: 1.75rem; } - .lg\:mt-40 { - margin-top: 10rem; + .lg\:mt-8 { + margin-top: 2rem; } - .lg\:mr-40 { - margin-right: 10rem; + .lg\:mt-9 { + margin-top: 2.25rem; } - .lg\:mb-40 { - margin-bottom: 10rem; + .lg\:mt-10 { + margin-top: 2.5rem; } - .lg\:ml-40 { - margin-left: 10rem; + .lg\:mt-11 { + margin-top: 2.75rem; } - .lg\:mt-44 { - margin-top: 11rem; + .lg\:mt-12 { + margin-top: 3rem; } - .lg\:mr-44 { - margin-right: 11rem; + .lg\:mt-14 { + margin-top: 3.5rem; } - .lg\:mb-44 { - margin-bottom: 11rem; + .lg\:mt-16 { + margin-top: 4rem; } - .lg\:ml-44 { - margin-left: 11rem; + .lg\:mt-20 { + margin-top: 5rem; } - .lg\:mt-48 { - margin-top: 12rem; + .lg\:mt-24 { + margin-top: 6rem; } - .lg\:mr-48 { - margin-right: 12rem; + .lg\:mt-28 { + margin-top: 7rem; } - .lg\:mb-48 { - margin-bottom: 12rem; + .lg\:mt-32 { + margin-top: 8rem; } - .lg\:ml-48 { - margin-left: 12rem; + .lg\:mt-36 { + margin-top: 9rem; } - .lg\:mt-52 { - margin-top: 13rem; + .lg\:mt-40 { + margin-top: 10rem; } - .lg\:mr-52 { - margin-right: 13rem; + .lg\:mt-44 { + margin-top: 11rem; } - .lg\:mb-52 { - margin-bottom: 13rem; + .lg\:mt-48 { + margin-top: 12rem; } - .lg\:ml-52 { - margin-left: 13rem; + .lg\:mt-52 { + margin-top: 13rem; } .lg\:mt-56 { margin-top: 14rem; } - .lg\:mr-56 { - margin-right: 14rem; + .lg\:mt-60 { + margin-top: 15rem; } - .lg\:mb-56 { - margin-bottom: 14rem; + .lg\:mt-64 { + margin-top: 16rem; } - .lg\:ml-56 { - margin-left: 14rem; + .lg\:mt-72 { + margin-top: 18rem; } - .lg\:mt-60 { - margin-top: 15rem; + .lg\:mt-80 { + margin-top: 20rem; } - .lg\:mr-60 { - margin-right: 15rem; + .lg\:mt-96 { + margin-top: 24rem; } - .lg\:mb-60 { - margin-bottom: 15rem; + .lg\:mt-auto { + margin-top: auto; } - .lg\:ml-60 { - margin-left: 15rem; + .lg\:mt-px { + margin-top: 1px; } - .lg\:mt-64 { - margin-top: 16rem; + .lg\:mt-0\.5 { + margin-top: 0.125rem; } - .lg\:mr-64 { - margin-right: 16rem; + .lg\:mt-1\.5 { + margin-top: 0.375rem; } - .lg\:mb-64 { - margin-bottom: 16rem; + .lg\:mt-2\.5 { + margin-top: 0.625rem; } - .lg\:ml-64 { - margin-left: 16rem; + .lg\:mt-3\.5 { + margin-top: 0.875rem; } - .lg\:mt-72 { - margin-top: 18rem; + .lg\:-mt-0 { + margin-top: 0px; } - .lg\:mr-72 { - margin-right: 18rem; + .lg\:-mt-1 { + margin-top: -0.25rem; } - .lg\:mb-72 { - margin-bottom: 18rem; + .lg\:-mt-2 { + margin-top: -0.5rem; } - .lg\:ml-72 { - margin-left: 18rem; + .lg\:-mt-3 { + margin-top: -0.75rem; } - .lg\:mt-80 { - margin-top: 20rem; + .lg\:-mt-4 { + margin-top: -1rem; } - .lg\:mr-80 { - margin-right: 20rem; + .lg\:-mt-5 { + margin-top: -1.25rem; } - .lg\:mb-80 { - margin-bottom: 20rem; + .lg\:-mt-6 { + margin-top: -1.5rem; } - .lg\:ml-80 { - margin-left: 20rem; + .lg\:-mt-7 { + margin-top: -1.75rem; } - .lg\:mt-96 { - margin-top: 24rem; + .lg\:-mt-8 { + margin-top: -2rem; } - .lg\:mr-96 { - margin-right: 24rem; + .lg\:-mt-9 { + margin-top: -2.25rem; } - .lg\:mb-96 { - margin-bottom: 24rem; + .lg\:-mt-10 { + margin-top: -2.5rem; } - .lg\:ml-96 { - margin-left: 24rem; + .lg\:-mt-11 { + margin-top: -2.75rem; } - .lg\:mt-auto { - margin-top: auto; + .lg\:-mt-12 { + margin-top: -3rem; } - .lg\:mr-auto { - margin-right: auto; + .lg\:-mt-14 { + margin-top: -3.5rem; } - .lg\:mb-auto { - margin-bottom: auto; + .lg\:-mt-16 { + margin-top: -4rem; } - .lg\:ml-auto { - margin-left: auto; + .lg\:-mt-20 { + margin-top: -5rem; } - .lg\:mt-px { - margin-top: 1px; + .lg\:-mt-24 { + margin-top: -6rem; } - .lg\:mr-px { - margin-right: 1px; + .lg\:-mt-28 { + margin-top: -7rem; } - .lg\:mb-px { - margin-bottom: 1px; + .lg\:-mt-32 { + margin-top: -8rem; } - .lg\:ml-px { - margin-left: 1px; + .lg\:-mt-36 { + margin-top: -9rem; } - .lg\:mt-0\.5 { - margin-top: 0.125rem; + .lg\:-mt-40 { + margin-top: -10rem; } - .lg\:mr-0\.5 { - margin-right: 0.125rem; + .lg\:-mt-44 { + margin-top: -11rem; } - .lg\:mb-0\.5 { - margin-bottom: 0.125rem; + .lg\:-mt-48 { + margin-top: -12rem; } - .lg\:ml-0\.5 { - margin-left: 0.125rem; + .lg\:-mt-52 { + margin-top: -13rem; } - .lg\:mt-1\.5 { - margin-top: 0.375rem; + .lg\:-mt-56 { + margin-top: -14rem; } - .lg\:mr-1\.5 { - margin-right: 0.375rem; + .lg\:-mt-60 { + margin-top: -15rem; } - .lg\:mb-1\.5 { - margin-bottom: 0.375rem; + .lg\:-mt-64 { + margin-top: -16rem; } - .lg\:ml-1\.5 { - margin-left: 0.375rem; + .lg\:-mt-72 { + margin-top: -18rem; } - .lg\:mt-2\.5 { - margin-top: 0.625rem; + .lg\:-mt-80 { + margin-top: -20rem; } - .lg\:mr-2\.5 { - margin-right: 0.625rem; + .lg\:-mt-96 { + margin-top: -24rem; } - .lg\:mb-2\.5 { - margin-bottom: 0.625rem; + .lg\:-mt-px { + margin-top: -1px; } - .lg\:ml-2\.5 { - margin-left: 0.625rem; + .lg\:-mt-0\.5 { + margin-top: -0.125rem; } - .lg\:mt-3\.5 { - margin-top: 0.875rem; + .lg\:-mt-1\.5 { + margin-top: -0.375rem; } - .lg\:mr-3\.5 { - margin-right: 0.875rem; + .lg\:-mt-2\.5 { + margin-top: -0.625rem; } - .lg\:mb-3\.5 { - margin-bottom: 0.875rem; + .lg\:-mt-3\.5 { + margin-top: -0.875rem; } - .lg\:ml-3\.5 { - margin-left: 0.875rem; + .lg\:mr-0 { + margin-right: 0px; } - .lg\:-mt-0 { - margin-top: 0px; + .lg\:mr-1 { + margin-right: 0.25rem; } - .lg\:-mr-0 { - margin-right: 0px; + .lg\:mr-2 { + margin-right: 0.5rem; } - .lg\:-mb-0 { - margin-bottom: 0px; + .lg\:mr-3 { + margin-right: 0.75rem; } - .lg\:-ml-0 { - margin-left: 0px; + .lg\:mr-4 { + margin-right: 1rem; } - .lg\:-mt-1 { - margin-top: -0.25rem; + .lg\:mr-5 { + margin-right: 1.25rem; } - .lg\:-mr-1 { - margin-right: -0.25rem; + .lg\:mr-6 { + margin-right: 1.5rem; } - .lg\:-mb-1 { - margin-bottom: -0.25rem; + .lg\:mr-7 { + margin-right: 1.75rem; } - .lg\:-ml-1 { - margin-left: -0.25rem; + .lg\:mr-8 { + margin-right: 2rem; } - .lg\:-mt-2 { - margin-top: -0.5rem; + .lg\:mr-9 { + margin-right: 2.25rem; } - .lg\:-mr-2 { - margin-right: -0.5rem; + .lg\:mr-10 { + margin-right: 2.5rem; } - .lg\:-mb-2 { - margin-bottom: -0.5rem; + .lg\:mr-11 { + margin-right: 2.75rem; } - .lg\:-ml-2 { - margin-left: -0.5rem; + .lg\:mr-12 { + margin-right: 3rem; } - .lg\:-mt-3 { - margin-top: -0.75rem; + .lg\:mr-14 { + margin-right: 3.5rem; } - .lg\:-mr-3 { - margin-right: -0.75rem; + .lg\:mr-16 { + margin-right: 4rem; } - .lg\:-mb-3 { - margin-bottom: -0.75rem; + .lg\:mr-20 { + margin-right: 5rem; } - .lg\:-ml-3 { - margin-left: -0.75rem; + .lg\:mr-24 { + margin-right: 6rem; } - .lg\:-mt-4 { - margin-top: -1rem; + .lg\:mr-28 { + margin-right: 7rem; } - .lg\:-mr-4 { - margin-right: -1rem; + .lg\:mr-32 { + margin-right: 8rem; } - .lg\:-mb-4 { - margin-bottom: -1rem; + .lg\:mr-36 { + margin-right: 9rem; } - .lg\:-ml-4 { - margin-left: -1rem; + .lg\:mr-40 { + margin-right: 10rem; } - .lg\:-mt-5 { - margin-top: -1.25rem; + .lg\:mr-44 { + margin-right: 11rem; } - .lg\:-mr-5 { - margin-right: -1.25rem; + .lg\:mr-48 { + margin-right: 12rem; } - .lg\:-mb-5 { - margin-bottom: -1.25rem; + .lg\:mr-52 { + margin-right: 13rem; } - .lg\:-ml-5 { - margin-left: -1.25rem; + .lg\:mr-56 { + margin-right: 14rem; } - .lg\:-mt-6 { - margin-top: -1.5rem; + .lg\:mr-60 { + margin-right: 15rem; } - .lg\:-mr-6 { - margin-right: -1.5rem; + .lg\:mr-64 { + margin-right: 16rem; } - .lg\:-mb-6 { - margin-bottom: -1.5rem; + .lg\:mr-72 { + margin-right: 18rem; } - .lg\:-ml-6 { - margin-left: -1.5rem; + .lg\:mr-80 { + margin-right: 20rem; } - .lg\:-mt-7 { - margin-top: -1.75rem; + .lg\:mr-96 { + margin-right: 24rem; } - .lg\:-mr-7 { - margin-right: -1.75rem; + .lg\:mr-auto { + margin-right: auto; } - .lg\:-mb-7 { - margin-bottom: -1.75rem; + .lg\:mr-px { + margin-right: 1px; } - .lg\:-ml-7 { - margin-left: -1.75rem; + .lg\:mr-0\.5 { + margin-right: 0.125rem; } - .lg\:-mt-8 { - margin-top: -2rem; + .lg\:mr-1\.5 { + margin-right: 0.375rem; } - .lg\:-mr-8 { - margin-right: -2rem; + .lg\:mr-2\.5 { + margin-right: 0.625rem; } - .lg\:-mb-8 { - margin-bottom: -2rem; + .lg\:mr-3\.5 { + margin-right: 0.875rem; } - .lg\:-ml-8 { - margin-left: -2rem; + .lg\:-mr-0 { + margin-right: 0px; } - .lg\:-mt-9 { - margin-top: -2.25rem; + .lg\:-mr-1 { + margin-right: -0.25rem; } - .lg\:-mr-9 { - margin-right: -2.25rem; + .lg\:-mr-2 { + margin-right: -0.5rem; } - .lg\:-mb-9 { - margin-bottom: -2.25rem; + .lg\:-mr-3 { + margin-right: -0.75rem; } - .lg\:-ml-9 { - margin-left: -2.25rem; + .lg\:-mr-4 { + margin-right: -1rem; } - .lg\:-mt-10 { - margin-top: -2.5rem; + .lg\:-mr-5 { + margin-right: -1.25rem; } - .lg\:-mr-10 { - margin-right: -2.5rem; + .lg\:-mr-6 { + margin-right: -1.5rem; } - .lg\:-mb-10 { - margin-bottom: -2.5rem; + .lg\:-mr-7 { + margin-right: -1.75rem; } - .lg\:-ml-10 { - margin-left: -2.5rem; + .lg\:-mr-8 { + margin-right: -2rem; } - .lg\:-mt-11 { - margin-top: -2.75rem; + .lg\:-mr-9 { + margin-right: -2.25rem; + } + + .lg\:-mr-10 { + margin-right: -2.5rem; } .lg\:-mr-11 { margin-right: -2.75rem; } - .lg\:-mb-11 { - margin-bottom: -2.75rem; + .lg\:-mr-12 { + margin-right: -3rem; } - .lg\:-ml-11 { - margin-left: -2.75rem; + .lg\:-mr-14 { + margin-right: -3.5rem; } - .lg\:-mt-12 { - margin-top: -3rem; + .lg\:-mr-16 { + margin-right: -4rem; } - .lg\:-mr-12 { - margin-right: -3rem; + .lg\:-mr-20 { + margin-right: -5rem; } - .lg\:-mb-12 { - margin-bottom: -3rem; + .lg\:-mr-24 { + margin-right: -6rem; } - .lg\:-ml-12 { - margin-left: -3rem; + .lg\:-mr-28 { + margin-right: -7rem; } - .lg\:-mt-14 { - margin-top: -3.5rem; + .lg\:-mr-32 { + margin-right: -8rem; } - .lg\:-mr-14 { - margin-right: -3.5rem; + .lg\:-mr-36 { + margin-right: -9rem; } - .lg\:-mb-14 { - margin-bottom: -3.5rem; + .lg\:-mr-40 { + margin-right: -10rem; } - .lg\:-ml-14 { - margin-left: -3.5rem; + .lg\:-mr-44 { + margin-right: -11rem; } - .lg\:-mt-16 { - margin-top: -4rem; + .lg\:-mr-48 { + margin-right: -12rem; } - .lg\:-mr-16 { - margin-right: -4rem; + .lg\:-mr-52 { + margin-right: -13rem; } - .lg\:-mb-16 { - margin-bottom: -4rem; + .lg\:-mr-56 { + margin-right: -14rem; } - .lg\:-ml-16 { - margin-left: -4rem; + .lg\:-mr-60 { + margin-right: -15rem; } - .lg\:-mt-20 { - margin-top: -5rem; + .lg\:-mr-64 { + margin-right: -16rem; } - .lg\:-mr-20 { - margin-right: -5rem; + .lg\:-mr-72 { + margin-right: -18rem; } - .lg\:-mb-20 { - margin-bottom: -5rem; + .lg\:-mr-80 { + margin-right: -20rem; } - .lg\:-ml-20 { - margin-left: -5rem; + .lg\:-mr-96 { + margin-right: -24rem; } - .lg\:-mt-24 { - margin-top: -6rem; + .lg\:-mr-px { + margin-right: -1px; } - .lg\:-mr-24 { - margin-right: -6rem; + .lg\:-mr-0\.5 { + margin-right: -0.125rem; } - .lg\:-mb-24 { - margin-bottom: -6rem; + .lg\:-mr-1\.5 { + margin-right: -0.375rem; } - .lg\:-ml-24 { - margin-left: -6rem; + .lg\:-mr-2\.5 { + margin-right: -0.625rem; } - .lg\:-mt-28 { - margin-top: -7rem; + .lg\:-mr-3\.5 { + margin-right: -0.875rem; } - .lg\:-mr-28 { - margin-right: -7rem; + .lg\:mb-0 { + margin-bottom: 0px; } - .lg\:-mb-28 { - margin-bottom: -7rem; + .lg\:mb-1 { + margin-bottom: 0.25rem; } - .lg\:-ml-28 { - margin-left: -7rem; + .lg\:mb-2 { + margin-bottom: 0.5rem; } - .lg\:-mt-32 { - margin-top: -8rem; + .lg\:mb-3 { + margin-bottom: 0.75rem; } - .lg\:-mr-32 { - margin-right: -8rem; + .lg\:mb-4 { + margin-bottom: 1rem; } - .lg\:-mb-32 { - margin-bottom: -8rem; + .lg\:mb-5 { + margin-bottom: 1.25rem; } - .lg\:-ml-32 { - margin-left: -8rem; + .lg\:mb-6 { + margin-bottom: 1.5rem; } - .lg\:-mt-36 { - margin-top: -9rem; + .lg\:mb-7 { + margin-bottom: 1.75rem; } - .lg\:-mr-36 { - margin-right: -9rem; + .lg\:mb-8 { + margin-bottom: 2rem; } - .lg\:-mb-36 { - margin-bottom: -9rem; + .lg\:mb-9 { + margin-bottom: 2.25rem; } - .lg\:-ml-36 { - margin-left: -9rem; + .lg\:mb-10 { + margin-bottom: 2.5rem; } - .lg\:-mt-40 { - margin-top: -10rem; + .lg\:mb-11 { + margin-bottom: 2.75rem; } - .lg\:-mr-40 { - margin-right: -10rem; + .lg\:mb-12 { + margin-bottom: 3rem; } - .lg\:-mb-40 { - margin-bottom: -10rem; + .lg\:mb-14 { + margin-bottom: 3.5rem; } - .lg\:-ml-40 { - margin-left: -10rem; + .lg\:mb-16 { + margin-bottom: 4rem; } - .lg\:-mt-44 { - margin-top: -11rem; + .lg\:mb-20 { + margin-bottom: 5rem; } - .lg\:-mr-44 { - margin-right: -11rem; + .lg\:mb-24 { + margin-bottom: 6rem; } - .lg\:-mb-44 { - margin-bottom: -11rem; + .lg\:mb-28 { + margin-bottom: 7rem; } - .lg\:-ml-44 { - margin-left: -11rem; + .lg\:mb-32 { + margin-bottom: 8rem; } - .lg\:-mt-48 { - margin-top: -12rem; + .lg\:mb-36 { + margin-bottom: 9rem; } - .lg\:-mr-48 { - margin-right: -12rem; + .lg\:mb-40 { + margin-bottom: 10rem; } - .lg\:-mb-48 { - margin-bottom: -12rem; + .lg\:mb-44 { + margin-bottom: 11rem; } - .lg\:-ml-48 { - margin-left: -12rem; + .lg\:mb-48 { + margin-bottom: 12rem; } - .lg\:-mt-52 { - margin-top: -13rem; + .lg\:mb-52 { + margin-bottom: 13rem; } - .lg\:-mr-52 { - margin-right: -13rem; + .lg\:mb-56 { + margin-bottom: 14rem; } - .lg\:-mb-52 { - margin-bottom: -13rem; + .lg\:mb-60 { + margin-bottom: 15rem; } - .lg\:-ml-52 { - margin-left: -13rem; + .lg\:mb-64 { + margin-bottom: 16rem; } - .lg\:-mt-56 { - margin-top: -14rem; + .lg\:mb-72 { + margin-bottom: 18rem; } - .lg\:-mr-56 { - margin-right: -14rem; + .lg\:mb-80 { + margin-bottom: 20rem; } - .lg\:-mb-56 { - margin-bottom: -14rem; + .lg\:mb-96 { + margin-bottom: 24rem; } - .lg\:-ml-56 { - margin-left: -14rem; + .lg\:mb-auto { + margin-bottom: auto; } - .lg\:-mt-60 { - margin-top: -15rem; + .lg\:mb-px { + margin-bottom: 1px; } - .lg\:-mr-60 { - margin-right: -15rem; + .lg\:mb-0\.5 { + margin-bottom: 0.125rem; } - .lg\:-mb-60 { - margin-bottom: -15rem; + .lg\:mb-1\.5 { + margin-bottom: 0.375rem; } - .lg\:-ml-60 { - margin-left: -15rem; + .lg\:mb-2\.5 { + margin-bottom: 0.625rem; } - .lg\:-mt-64 { - margin-top: -16rem; + .lg\:mb-3\.5 { + margin-bottom: 0.875rem; } - .lg\:-mr-64 { - margin-right: -16rem; + .lg\:-mb-0 { + margin-bottom: 0px; } - .lg\:-mb-64 { - margin-bottom: -16rem; + .lg\:-mb-1 { + margin-bottom: -0.25rem; } - .lg\:-ml-64 { - margin-left: -16rem; + .lg\:-mb-2 { + margin-bottom: -0.5rem; } - .lg\:-mt-72 { - margin-top: -18rem; + .lg\:-mb-3 { + margin-bottom: -0.75rem; } - .lg\:-mr-72 { - margin-right: -18rem; + .lg\:-mb-4 { + margin-bottom: -1rem; } - .lg\:-mb-72 { - margin-bottom: -18rem; + .lg\:-mb-5 { + margin-bottom: -1.25rem; } - .lg\:-ml-72 { - margin-left: -18rem; + .lg\:-mb-6 { + margin-bottom: -1.5rem; } - .lg\:-mt-80 { - margin-top: -20rem; + .lg\:-mb-7 { + margin-bottom: -1.75rem; } - .lg\:-mr-80 { - margin-right: -20rem; + .lg\:-mb-8 { + margin-bottom: -2rem; } - .lg\:-mb-80 { - margin-bottom: -20rem; + .lg\:-mb-9 { + margin-bottom: -2.25rem; } - .lg\:-ml-80 { - margin-left: -20rem; + .lg\:-mb-10 { + margin-bottom: -2.5rem; } - .lg\:-mt-96 { - margin-top: -24rem; + .lg\:-mb-11 { + margin-bottom: -2.75rem; } - .lg\:-mr-96 { - margin-right: -24rem; + .lg\:-mb-12 { + margin-bottom: -3rem; } - .lg\:-mb-96 { - margin-bottom: -24rem; + .lg\:-mb-14 { + margin-bottom: -3.5rem; } - .lg\:-ml-96 { - margin-left: -24rem; + .lg\:-mb-16 { + margin-bottom: -4rem; } - .lg\:-mt-px { - margin-top: -1px; + .lg\:-mb-20 { + margin-bottom: -5rem; } - .lg\:-mr-px { - margin-right: -1px; + .lg\:-mb-24 { + margin-bottom: -6rem; } - .lg\:-mb-px { - margin-bottom: -1px; + .lg\:-mb-28 { + margin-bottom: -7rem; } - .lg\:-ml-px { - margin-left: -1px; + .lg\:-mb-32 { + margin-bottom: -8rem; } - .lg\:-mt-0\.5 { - margin-top: -0.125rem; + .lg\:-mb-36 { + margin-bottom: -9rem; } - .lg\:-mr-0\.5 { - margin-right: -0.125rem; + .lg\:-mb-40 { + margin-bottom: -10rem; } - .lg\:-mb-0\.5 { - margin-bottom: -0.125rem; + .lg\:-mb-44 { + margin-bottom: -11rem; } - .lg\:-ml-0\.5 { - margin-left: -0.125rem; + .lg\:-mb-48 { + margin-bottom: -12rem; } - .lg\:-mt-1\.5 { - margin-top: -0.375rem; + .lg\:-mb-52 { + margin-bottom: -13rem; } - .lg\:-mr-1\.5 { - margin-right: -0.375rem; + .lg\:-mb-56 { + margin-bottom: -14rem; } - .lg\:-mb-1\.5 { - margin-bottom: -0.375rem; + .lg\:-mb-60 { + margin-bottom: -15rem; } - .lg\:-ml-1\.5 { - margin-left: -0.375rem; + .lg\:-mb-64 { + margin-bottom: -16rem; } - .lg\:-mt-2\.5 { - margin-top: -0.625rem; + .lg\:-mb-72 { + margin-bottom: -18rem; } - .lg\:-mr-2\.5 { - margin-right: -0.625rem; + .lg\:-mb-80 { + margin-bottom: -20rem; } - .lg\:-mb-2\.5 { - margin-bottom: -0.625rem; + .lg\:-mb-96 { + margin-bottom: -24rem; } - .lg\:-ml-2\.5 { - margin-left: -0.625rem; + .lg\:-mb-px { + margin-bottom: -1px; } - .lg\:-mt-3\.5 { - margin-top: -0.875rem; + .lg\:-mb-0\.5 { + margin-bottom: -0.125rem; } - .lg\:-mr-3\.5 { - margin-right: -0.875rem; + .lg\:-mb-1\.5 { + margin-bottom: -0.375rem; + } + + .lg\:-mb-2\.5 { + margin-bottom: -0.625rem; } .lg\:-mb-3\.5 { margin-bottom: -0.875rem; } + .lg\:ml-0 { + margin-left: 0px; + } + + .lg\:ml-1 { + margin-left: 0.25rem; + } + + .lg\:ml-2 { + margin-left: 0.5rem; + } + + .lg\:ml-3 { + margin-left: 0.75rem; + } + + .lg\:ml-4 { + margin-left: 1rem; + } + + .lg\:ml-5 { + margin-left: 1.25rem; + } + + .lg\:ml-6 { + margin-left: 1.5rem; + } + + .lg\:ml-7 { + margin-left: 1.75rem; + } + + .lg\:ml-8 { + margin-left: 2rem; + } + + .lg\:ml-9 { + margin-left: 2.25rem; + } + + .lg\:ml-10 { + margin-left: 2.5rem; + } + + .lg\:ml-11 { + margin-left: 2.75rem; + } + + .lg\:ml-12 { + margin-left: 3rem; + } + + .lg\:ml-14 { + margin-left: 3.5rem; + } + + .lg\:ml-16 { + margin-left: 4rem; + } + + .lg\:ml-20 { + margin-left: 5rem; + } + + .lg\:ml-24 { + margin-left: 6rem; + } + + .lg\:ml-28 { + margin-left: 7rem; + } + + .lg\:ml-32 { + margin-left: 8rem; + } + + .lg\:ml-36 { + margin-left: 9rem; + } + + .lg\:ml-40 { + margin-left: 10rem; + } + + .lg\:ml-44 { + margin-left: 11rem; + } + + .lg\:ml-48 { + margin-left: 12rem; + } + + .lg\:ml-52 { + margin-left: 13rem; + } + + .lg\:ml-56 { + margin-left: 14rem; + } + + .lg\:ml-60 { + margin-left: 15rem; + } + + .lg\:ml-64 { + margin-left: 16rem; + } + + .lg\:ml-72 { + margin-left: 18rem; + } + + .lg\:ml-80 { + margin-left: 20rem; + } + + .lg\:ml-96 { + margin-left: 24rem; + } + + .lg\:ml-auto { + margin-left: auto; + } + + .lg\:ml-px { + margin-left: 1px; + } + + .lg\:ml-0\.5 { + margin-left: 0.125rem; + } + + .lg\:ml-1\.5 { + margin-left: 0.375rem; + } + + .lg\:ml-2\.5 { + margin-left: 0.625rem; + } + + .lg\:ml-3\.5 { + margin-left: 0.875rem; + } + + .lg\:-ml-0 { + margin-left: 0px; + } + + .lg\:-ml-1 { + margin-left: -0.25rem; + } + + .lg\:-ml-2 { + margin-left: -0.5rem; + } + + .lg\:-ml-3 { + margin-left: -0.75rem; + } + + .lg\:-ml-4 { + margin-left: -1rem; + } + + .lg\:-ml-5 { + margin-left: -1.25rem; + } + + .lg\:-ml-6 { + margin-left: -1.5rem; + } + + .lg\:-ml-7 { + margin-left: -1.75rem; + } + + .lg\:-ml-8 { + margin-left: -2rem; + } + + .lg\:-ml-9 { + margin-left: -2.25rem; + } + + .lg\:-ml-10 { + margin-left: -2.5rem; + } + + .lg\:-ml-11 { + margin-left: -2.75rem; + } + + .lg\:-ml-12 { + margin-left: -3rem; + } + + .lg\:-ml-14 { + margin-left: -3.5rem; + } + + .lg\:-ml-16 { + margin-left: -4rem; + } + + .lg\:-ml-20 { + margin-left: -5rem; + } + + .lg\:-ml-24 { + margin-left: -6rem; + } + + .lg\:-ml-28 { + margin-left: -7rem; + } + + .lg\:-ml-32 { + margin-left: -8rem; + } + + .lg\:-ml-36 { + margin-left: -9rem; + } + + .lg\:-ml-40 { + margin-left: -10rem; + } + + .lg\:-ml-44 { + margin-left: -11rem; + } + + .lg\:-ml-48 { + margin-left: -12rem; + } + + .lg\:-ml-52 { + margin-left: -13rem; + } + + .lg\:-ml-56 { + margin-left: -14rem; + } + + .lg\:-ml-60 { + margin-left: -15rem; + } + + .lg\:-ml-64 { + margin-left: -16rem; + } + + .lg\:-ml-72 { + margin-left: -18rem; + } + + .lg\:-ml-80 { + margin-left: -20rem; + } + + .lg\:-ml-96 { + margin-left: -24rem; + } + + .lg\:-ml-px { + margin-left: -1px; + } + + .lg\:-ml-0\.5 { + margin-left: -0.125rem; + } + + .lg\:-ml-1\.5 { + margin-left: -0.375rem; + } + + .lg\:-ml-2\.5 { + margin-left: -0.625rem; + } + .lg\:-ml-3\.5 { margin-left: -0.875rem; } @@ -116746,1848 +116746,1848 @@ video { margin: -0.875rem; } - .xl\:my-0 { - margin-top: 0px; - margin-bottom: 0px; - } - .xl\:mx-0 { margin-left: 0px; margin-right: 0px; } - .xl\:my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; - } - .xl\:mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; } - .xl\:my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; - } - .xl\:mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; } - .xl\:my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; - } - .xl\:mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; } - .xl\:my-4 { - margin-top: 1rem; - margin-bottom: 1rem; - } - .xl\:mx-4 { margin-left: 1rem; margin-right: 1rem; } - .xl\:my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; - } - .xl\:mx-5 { margin-left: 1.25rem; margin-right: 1.25rem; } - .xl\:my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; - } - .xl\:mx-6 { margin-left: 1.5rem; margin-right: 1.5rem; } - .xl\:my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; - } - .xl\:mx-7 { margin-left: 1.75rem; margin-right: 1.75rem; } - .xl\:my-8 { - margin-top: 2rem; - margin-bottom: 2rem; - } - .xl\:mx-8 { margin-left: 2rem; margin-right: 2rem; } - .xl\:my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; - } - .xl\:mx-9 { margin-left: 2.25rem; margin-right: 2.25rem; } - .xl\:my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; - } - .xl\:mx-10 { margin-left: 2.5rem; margin-right: 2.5rem; } - .xl\:my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; - } - .xl\:mx-11 { margin-left: 2.75rem; margin-right: 2.75rem; } - .xl\:my-12 { - margin-top: 3rem; - margin-bottom: 3rem; - } - .xl\:mx-12 { margin-left: 3rem; margin-right: 3rem; } - .xl\:my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; - } - .xl\:mx-14 { margin-left: 3.5rem; margin-right: 3.5rem; } - .xl\:my-16 { - margin-top: 4rem; - margin-bottom: 4rem; - } - .xl\:mx-16 { margin-left: 4rem; margin-right: 4rem; } - .xl\:my-20 { - margin-top: 5rem; - margin-bottom: 5rem; - } - .xl\:mx-20 { margin-left: 5rem; margin-right: 5rem; } - .xl\:my-24 { - margin-top: 6rem; - margin-bottom: 6rem; - } - .xl\:mx-24 { margin-left: 6rem; margin-right: 6rem; } - .xl\:my-28 { - margin-top: 7rem; - margin-bottom: 7rem; - } - .xl\:mx-28 { margin-left: 7rem; margin-right: 7rem; } - .xl\:my-32 { - margin-top: 8rem; - margin-bottom: 8rem; - } - .xl\:mx-32 { margin-left: 8rem; margin-right: 8rem; } - .xl\:my-36 { - margin-top: 9rem; - margin-bottom: 9rem; - } - .xl\:mx-36 { margin-left: 9rem; margin-right: 9rem; } - .xl\:my-40 { - margin-top: 10rem; - margin-bottom: 10rem; - } - .xl\:mx-40 { margin-left: 10rem; margin-right: 10rem; } - .xl\:my-44 { - margin-top: 11rem; - margin-bottom: 11rem; - } - .xl\:mx-44 { margin-left: 11rem; margin-right: 11rem; } - .xl\:my-48 { - margin-top: 12rem; - margin-bottom: 12rem; - } - .xl\:mx-48 { margin-left: 12rem; margin-right: 12rem; } - .xl\:my-52 { - margin-top: 13rem; - margin-bottom: 13rem; - } - .xl\:mx-52 { margin-left: 13rem; margin-right: 13rem; } - .xl\:my-56 { - margin-top: 14rem; - margin-bottom: 14rem; - } - .xl\:mx-56 { margin-left: 14rem; margin-right: 14rem; } - .xl\:my-60 { - margin-top: 15rem; - margin-bottom: 15rem; - } - .xl\:mx-60 { margin-left: 15rem; margin-right: 15rem; } - .xl\:my-64 { - margin-top: 16rem; - margin-bottom: 16rem; - } - .xl\:mx-64 { margin-left: 16rem; margin-right: 16rem; } - .xl\:my-72 { - margin-top: 18rem; - margin-bottom: 18rem; - } - .xl\:mx-72 { margin-left: 18rem; margin-right: 18rem; } - .xl\:my-80 { - margin-top: 20rem; - margin-bottom: 20rem; - } - .xl\:mx-80 { margin-left: 20rem; margin-right: 20rem; } - .xl\:my-96 { - margin-top: 24rem; - margin-bottom: 24rem; - } - .xl\:mx-96 { margin-left: 24rem; margin-right: 24rem; } - .xl\:my-auto { - margin-top: auto; - margin-bottom: auto; - } - .xl\:mx-auto { margin-left: auto; margin-right: auto; } - .xl\:my-px { - margin-top: 1px; - margin-bottom: 1px; - } - .xl\:mx-px { margin-left: 1px; margin-right: 1px; } - .xl\:my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; - } - .xl\:mx-0\.5 { margin-left: 0.125rem; margin-right: 0.125rem; } - .xl\:my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; - } - .xl\:mx-1\.5 { margin-left: 0.375rem; margin-right: 0.375rem; } - .xl\:my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; - } - .xl\:mx-2\.5 { margin-left: 0.625rem; margin-right: 0.625rem; } - .xl\:my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; - } - .xl\:mx-3\.5 { margin-left: 0.875rem; margin-right: 0.875rem; } - .xl\:-my-0 { - margin-top: 0px; - margin-bottom: 0px; - } - .xl\:-mx-0 { margin-left: 0px; margin-right: 0px; } - .xl\:-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; - } - .xl\:-mx-1 { margin-left: -0.25rem; margin-right: -0.25rem; } - .xl\:-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; - } - .xl\:-mx-2 { margin-left: -0.5rem; margin-right: -0.5rem; } - .xl\:-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; - } - .xl\:-mx-3 { margin-left: -0.75rem; margin-right: -0.75rem; } - .xl\:-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; - } - .xl\:-mx-4 { margin-left: -1rem; margin-right: -1rem; } - .xl\:-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; - } - .xl\:-mx-5 { margin-left: -1.25rem; margin-right: -1.25rem; } - .xl\:-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; - } - .xl\:-mx-6 { margin-left: -1.5rem; margin-right: -1.5rem; } - .xl\:-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; - } - .xl\:-mx-7 { margin-left: -1.75rem; margin-right: -1.75rem; } - .xl\:-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; - } - .xl\:-mx-8 { margin-left: -2rem; margin-right: -2rem; } - .xl\:-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; - } - .xl\:-mx-9 { margin-left: -2.25rem; margin-right: -2.25rem; } - .xl\:-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; - } - .xl\:-mx-10 { margin-left: -2.5rem; margin-right: -2.5rem; } - .xl\:-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; - } - .xl\:-mx-11 { margin-left: -2.75rem; margin-right: -2.75rem; } - .xl\:-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; - } - .xl\:-mx-12 { margin-left: -3rem; margin-right: -3rem; } - .xl\:-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; - } - .xl\:-mx-14 { margin-left: -3.5rem; margin-right: -3.5rem; } - .xl\:-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; - } - .xl\:-mx-16 { margin-left: -4rem; margin-right: -4rem; } - .xl\:-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; - } - .xl\:-mx-20 { margin-left: -5rem; margin-right: -5rem; } - .xl\:-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; - } - .xl\:-mx-24 { margin-left: -6rem; margin-right: -6rem; } - .xl\:-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; - } - .xl\:-mx-28 { margin-left: -7rem; margin-right: -7rem; } - .xl\:-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; - } - .xl\:-mx-32 { margin-left: -8rem; margin-right: -8rem; } - .xl\:-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; - } - .xl\:-mx-36 { margin-left: -9rem; margin-right: -9rem; } - .xl\:-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; - } - .xl\:-mx-40 { margin-left: -10rem; margin-right: -10rem; } - .xl\:-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; - } - .xl\:-mx-44 { margin-left: -11rem; margin-right: -11rem; } - .xl\:-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; - } - .xl\:-mx-48 { margin-left: -12rem; margin-right: -12rem; } - .xl\:-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; - } - .xl\:-mx-52 { margin-left: -13rem; margin-right: -13rem; } - .xl\:-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; - } - .xl\:-mx-56 { margin-left: -14rem; margin-right: -14rem; } - .xl\:-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; - } - .xl\:-mx-60 { margin-left: -15rem; margin-right: -15rem; } - .xl\:-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; - } - .xl\:-mx-64 { margin-left: -16rem; margin-right: -16rem; } - .xl\:-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; - } - .xl\:-mx-72 { margin-left: -18rem; margin-right: -18rem; } - .xl\:-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; - } - .xl\:-mx-80 { margin-left: -20rem; margin-right: -20rem; } - .xl\:-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; - } - .xl\:-mx-96 { margin-left: -24rem; margin-right: -24rem; } - .xl\:-my-px { - margin-top: -1px; - margin-bottom: -1px; - } - .xl\:-mx-px { margin-left: -1px; margin-right: -1px; } - .xl\:-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; - } - .xl\:-mx-0\.5 { margin-left: -0.125rem; margin-right: -0.125rem; } - .xl\:-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; - } - .xl\:-mx-1\.5 { margin-left: -0.375rem; margin-right: -0.375rem; } - .xl\:-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; - } - .xl\:-mx-2\.5 { margin-left: -0.625rem; margin-right: -0.625rem; } - .xl\:-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; - } - .xl\:-mx-3\.5 { margin-left: -0.875rem; margin-right: -0.875rem; } - .xl\:mt-0 { + .xl\:my-0 { margin-top: 0px; + margin-bottom: 0px; } - .xl\:mr-0 { - margin-right: 0px; - } - - .xl\:mb-0 { - margin-bottom: 0px; + .xl\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } - .xl\:ml-0 { - margin-left: 0px; + .xl\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; } - .xl\:mt-1 { - margin-top: 0.25rem; + .xl\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; } - .xl\:mr-1 { - margin-right: 0.25rem; + .xl\:my-4 { + margin-top: 1rem; + margin-bottom: 1rem; } - .xl\:mb-1 { - margin-bottom: 0.25rem; + .xl\:my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; } - .xl\:ml-1 { - margin-left: 0.25rem; + .xl\:my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; } - .xl\:mt-2 { - margin-top: 0.5rem; + .xl\:my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; } - .xl\:mr-2 { - margin-right: 0.5rem; + .xl\:my-8 { + margin-top: 2rem; + margin-bottom: 2rem; } - .xl\:mb-2 { - margin-bottom: 0.5rem; + .xl\:my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; } - .xl\:ml-2 { - margin-left: 0.5rem; + .xl\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; } - .xl\:mt-3 { - margin-top: 0.75rem; + .xl\:my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; } - .xl\:mr-3 { - margin-right: 0.75rem; + .xl\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; } - .xl\:mb-3 { - margin-bottom: 0.75rem; + .xl\:my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; } - .xl\:ml-3 { - margin-left: 0.75rem; + .xl\:my-16 { + margin-top: 4rem; + margin-bottom: 4rem; } - .xl\:mt-4 { - margin-top: 1rem; + .xl\:my-20 { + margin-top: 5rem; + margin-bottom: 5rem; } - .xl\:mr-4 { - margin-right: 1rem; + .xl\:my-24 { + margin-top: 6rem; + margin-bottom: 6rem; } - .xl\:mb-4 { - margin-bottom: 1rem; + .xl\:my-28 { + margin-top: 7rem; + margin-bottom: 7rem; } - .xl\:ml-4 { - margin-left: 1rem; + .xl\:my-32 { + margin-top: 8rem; + margin-bottom: 8rem; } - .xl\:mt-5 { - margin-top: 1.25rem; + .xl\:my-36 { + margin-top: 9rem; + margin-bottom: 9rem; } - .xl\:mr-5 { - margin-right: 1.25rem; + .xl\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; } - .xl\:mb-5 { - margin-bottom: 1.25rem; + .xl\:my-44 { + margin-top: 11rem; + margin-bottom: 11rem; } - .xl\:ml-5 { - margin-left: 1.25rem; + .xl\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; } - .xl\:mt-6 { - margin-top: 1.5rem; + .xl\:my-52 { + margin-top: 13rem; + margin-bottom: 13rem; } - .xl\:mr-6 { - margin-right: 1.5rem; + .xl\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; } - .xl\:mb-6 { - margin-bottom: 1.5rem; + .xl\:my-60 { + margin-top: 15rem; + margin-bottom: 15rem; } - .xl\:ml-6 { - margin-left: 1.5rem; + .xl\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; } - .xl\:mt-7 { - margin-top: 1.75rem; + .xl\:my-72 { + margin-top: 18rem; + margin-bottom: 18rem; } - .xl\:mr-7 { - margin-right: 1.75rem; + .xl\:my-80 { + margin-top: 20rem; + margin-bottom: 20rem; } - .xl\:mb-7 { - margin-bottom: 1.75rem; + .xl\:my-96 { + margin-top: 24rem; + margin-bottom: 24rem; } - .xl\:ml-7 { - margin-left: 1.75rem; + .xl\:my-auto { + margin-top: auto; + margin-bottom: auto; } - .xl\:mt-8 { - margin-top: 2rem; + .xl\:my-px { + margin-top: 1px; + margin-bottom: 1px; } - .xl\:mr-8 { - margin-right: 2rem; + .xl\:my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; } - .xl\:mb-8 { - margin-bottom: 2rem; + .xl\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; } - .xl\:ml-8 { - margin-left: 2rem; + .xl\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; } - .xl\:mt-9 { - margin-top: 2.25rem; + .xl\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; } - .xl\:mr-9 { - margin-right: 2.25rem; + .xl\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .xl\:mb-9 { - margin-bottom: 2.25rem; + .xl\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } - .xl\:ml-9 { - margin-left: 2.25rem; + .xl\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } - .xl\:mt-10 { - margin-top: 2.5rem; + .xl\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } - .xl\:mr-10 { - margin-right: 2.5rem; + .xl\:-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } - .xl\:mb-10 { - margin-bottom: 2.5rem; + .xl\:-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } - .xl\:ml-10 { - margin-left: 2.5rem; + .xl\:-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } - .xl\:mt-11 { - margin-top: 2.75rem; + .xl\:-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } - .xl\:mr-11 { - margin-right: 2.75rem; + .xl\:-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } - .xl\:mb-11 { - margin-bottom: 2.75rem; + .xl\:-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } - .xl\:ml-11 { - margin-left: 2.75rem; + .xl\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } - .xl\:mt-12 { - margin-top: 3rem; + .xl\:-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } - .xl\:mr-12 { - margin-right: 3rem; + .xl\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } - .xl\:mb-12 { - margin-bottom: 3rem; + .xl\:-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } - .xl\:ml-12 { - margin-left: 3rem; + .xl\:-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } - .xl\:mt-14 { - margin-top: 3.5rem; + .xl\:-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } - .xl\:mr-14 { - margin-right: 3.5rem; + .xl\:-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } - .xl\:mb-14 { - margin-bottom: 3.5rem; + .xl\:-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } - .xl\:ml-14 { - margin-left: 3.5rem; + .xl\:-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } - .xl\:mt-16 { - margin-top: 4rem; + .xl\:-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } - .xl\:mr-16 { - margin-right: 4rem; + .xl\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } - .xl\:mb-16 { - margin-bottom: 4rem; + .xl\:-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } - .xl\:ml-16 { - margin-left: 4rem; + .xl\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } - .xl\:mt-20 { - margin-top: 5rem; + .xl\:-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } - .xl\:mr-20 { - margin-right: 5rem; + .xl\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } - .xl\:mb-20 { - margin-bottom: 5rem; + .xl\:-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } - .xl\:ml-20 { - margin-left: 5rem; + .xl\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } - .xl\:mt-24 { - margin-top: 6rem; + .xl\:-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } - .xl\:mr-24 { - margin-right: 6rem; + .xl\:-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } - .xl\:mb-24 { - margin-bottom: 6rem; + .xl\:-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } - .xl\:ml-24 { - margin-left: 6rem; + .xl\:-my-px { + margin-top: -1px; + margin-bottom: -1px; } - .xl\:mt-28 { - margin-top: 7rem; + .xl\:-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } - .xl\:mr-28 { - margin-right: 7rem; + .xl\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } - .xl\:mb-28 { - margin-bottom: 7rem; + .xl\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } - .xl\:ml-28 { - margin-left: 7rem; + .xl\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } - .xl\:mt-32 { - margin-top: 8rem; + .xl\:mt-0 { + margin-top: 0px; } - .xl\:mr-32 { - margin-right: 8rem; + .xl\:mt-1 { + margin-top: 0.25rem; } - .xl\:mb-32 { - margin-bottom: 8rem; + .xl\:mt-2 { + margin-top: 0.5rem; } - .xl\:ml-32 { - margin-left: 8rem; + .xl\:mt-3 { + margin-top: 0.75rem; } - .xl\:mt-36 { - margin-top: 9rem; + .xl\:mt-4 { + margin-top: 1rem; } - .xl\:mr-36 { - margin-right: 9rem; + .xl\:mt-5 { + margin-top: 1.25rem; } - .xl\:mb-36 { - margin-bottom: 9rem; + .xl\:mt-6 { + margin-top: 1.5rem; } - .xl\:ml-36 { - margin-left: 9rem; + .xl\:mt-7 { + margin-top: 1.75rem; } - .xl\:mt-40 { - margin-top: 10rem; + .xl\:mt-8 { + margin-top: 2rem; } - .xl\:mr-40 { - margin-right: 10rem; + .xl\:mt-9 { + margin-top: 2.25rem; } - .xl\:mb-40 { - margin-bottom: 10rem; + .xl\:mt-10 { + margin-top: 2.5rem; } - .xl\:ml-40 { - margin-left: 10rem; + .xl\:mt-11 { + margin-top: 2.75rem; } - .xl\:mt-44 { - margin-top: 11rem; + .xl\:mt-12 { + margin-top: 3rem; } - .xl\:mr-44 { - margin-right: 11rem; + .xl\:mt-14 { + margin-top: 3.5rem; } - .xl\:mb-44 { - margin-bottom: 11rem; + .xl\:mt-16 { + margin-top: 4rem; } - .xl\:ml-44 { - margin-left: 11rem; + .xl\:mt-20 { + margin-top: 5rem; } - .xl\:mt-48 { - margin-top: 12rem; + .xl\:mt-24 { + margin-top: 6rem; } - .xl\:mr-48 { - margin-right: 12rem; + .xl\:mt-28 { + margin-top: 7rem; } - .xl\:mb-48 { - margin-bottom: 12rem; + .xl\:mt-32 { + margin-top: 8rem; } - .xl\:ml-48 { - margin-left: 12rem; + .xl\:mt-36 { + margin-top: 9rem; } - .xl\:mt-52 { - margin-top: 13rem; + .xl\:mt-40 { + margin-top: 10rem; } - .xl\:mr-52 { - margin-right: 13rem; + .xl\:mt-44 { + margin-top: 11rem; } - .xl\:mb-52 { - margin-bottom: 13rem; + .xl\:mt-48 { + margin-top: 12rem; } - .xl\:ml-52 { - margin-left: 13rem; + .xl\:mt-52 { + margin-top: 13rem; } .xl\:mt-56 { margin-top: 14rem; } - .xl\:mr-56 { - margin-right: 14rem; + .xl\:mt-60 { + margin-top: 15rem; } - .xl\:mb-56 { - margin-bottom: 14rem; + .xl\:mt-64 { + margin-top: 16rem; } - .xl\:ml-56 { - margin-left: 14rem; + .xl\:mt-72 { + margin-top: 18rem; } - .xl\:mt-60 { - margin-top: 15rem; + .xl\:mt-80 { + margin-top: 20rem; } - .xl\:mr-60 { - margin-right: 15rem; + .xl\:mt-96 { + margin-top: 24rem; } - .xl\:mb-60 { - margin-bottom: 15rem; + .xl\:mt-auto { + margin-top: auto; } - .xl\:ml-60 { - margin-left: 15rem; + .xl\:mt-px { + margin-top: 1px; } - .xl\:mt-64 { - margin-top: 16rem; + .xl\:mt-0\.5 { + margin-top: 0.125rem; } - .xl\:mr-64 { - margin-right: 16rem; + .xl\:mt-1\.5 { + margin-top: 0.375rem; } - .xl\:mb-64 { - margin-bottom: 16rem; + .xl\:mt-2\.5 { + margin-top: 0.625rem; } - .xl\:ml-64 { - margin-left: 16rem; + .xl\:mt-3\.5 { + margin-top: 0.875rem; } - .xl\:mt-72 { - margin-top: 18rem; + .xl\:-mt-0 { + margin-top: 0px; } - .xl\:mr-72 { - margin-right: 18rem; + .xl\:-mt-1 { + margin-top: -0.25rem; } - .xl\:mb-72 { - margin-bottom: 18rem; + .xl\:-mt-2 { + margin-top: -0.5rem; } - .xl\:ml-72 { - margin-left: 18rem; + .xl\:-mt-3 { + margin-top: -0.75rem; } - .xl\:mt-80 { - margin-top: 20rem; + .xl\:-mt-4 { + margin-top: -1rem; } - .xl\:mr-80 { - margin-right: 20rem; + .xl\:-mt-5 { + margin-top: -1.25rem; } - .xl\:mb-80 { - margin-bottom: 20rem; + .xl\:-mt-6 { + margin-top: -1.5rem; } - .xl\:ml-80 { - margin-left: 20rem; + .xl\:-mt-7 { + margin-top: -1.75rem; } - .xl\:mt-96 { - margin-top: 24rem; + .xl\:-mt-8 { + margin-top: -2rem; } - .xl\:mr-96 { - margin-right: 24rem; + .xl\:-mt-9 { + margin-top: -2.25rem; } - .xl\:mb-96 { - margin-bottom: 24rem; + .xl\:-mt-10 { + margin-top: -2.5rem; } - .xl\:ml-96 { - margin-left: 24rem; + .xl\:-mt-11 { + margin-top: -2.75rem; } - .xl\:mt-auto { - margin-top: auto; + .xl\:-mt-12 { + margin-top: -3rem; } - .xl\:mr-auto { - margin-right: auto; + .xl\:-mt-14 { + margin-top: -3.5rem; } - .xl\:mb-auto { - margin-bottom: auto; + .xl\:-mt-16 { + margin-top: -4rem; } - .xl\:ml-auto { - margin-left: auto; + .xl\:-mt-20 { + margin-top: -5rem; } - .xl\:mt-px { - margin-top: 1px; + .xl\:-mt-24 { + margin-top: -6rem; } - .xl\:mr-px { - margin-right: 1px; + .xl\:-mt-28 { + margin-top: -7rem; } - .xl\:mb-px { - margin-bottom: 1px; + .xl\:-mt-32 { + margin-top: -8rem; } - .xl\:ml-px { - margin-left: 1px; + .xl\:-mt-36 { + margin-top: -9rem; } - .xl\:mt-0\.5 { - margin-top: 0.125rem; + .xl\:-mt-40 { + margin-top: -10rem; } - .xl\:mr-0\.5 { - margin-right: 0.125rem; + .xl\:-mt-44 { + margin-top: -11rem; } - .xl\:mb-0\.5 { - margin-bottom: 0.125rem; + .xl\:-mt-48 { + margin-top: -12rem; } - .xl\:ml-0\.5 { - margin-left: 0.125rem; + .xl\:-mt-52 { + margin-top: -13rem; } - .xl\:mt-1\.5 { - margin-top: 0.375rem; + .xl\:-mt-56 { + margin-top: -14rem; } - .xl\:mr-1\.5 { - margin-right: 0.375rem; + .xl\:-mt-60 { + margin-top: -15rem; } - .xl\:mb-1\.5 { - margin-bottom: 0.375rem; + .xl\:-mt-64 { + margin-top: -16rem; } - .xl\:ml-1\.5 { - margin-left: 0.375rem; + .xl\:-mt-72 { + margin-top: -18rem; } - .xl\:mt-2\.5 { - margin-top: 0.625rem; + .xl\:-mt-80 { + margin-top: -20rem; } - .xl\:mr-2\.5 { - margin-right: 0.625rem; + .xl\:-mt-96 { + margin-top: -24rem; } - .xl\:mb-2\.5 { - margin-bottom: 0.625rem; + .xl\:-mt-px { + margin-top: -1px; } - .xl\:ml-2\.5 { - margin-left: 0.625rem; + .xl\:-mt-0\.5 { + margin-top: -0.125rem; } - .xl\:mt-3\.5 { - margin-top: 0.875rem; + .xl\:-mt-1\.5 { + margin-top: -0.375rem; } - .xl\:mr-3\.5 { - margin-right: 0.875rem; + .xl\:-mt-2\.5 { + margin-top: -0.625rem; } - .xl\:mb-3\.5 { - margin-bottom: 0.875rem; + .xl\:-mt-3\.5 { + margin-top: -0.875rem; } - .xl\:ml-3\.5 { - margin-left: 0.875rem; + .xl\:mr-0 { + margin-right: 0px; } - .xl\:-mt-0 { - margin-top: 0px; + .xl\:mr-1 { + margin-right: 0.25rem; } - .xl\:-mr-0 { - margin-right: 0px; + .xl\:mr-2 { + margin-right: 0.5rem; } - .xl\:-mb-0 { - margin-bottom: 0px; + .xl\:mr-3 { + margin-right: 0.75rem; } - .xl\:-ml-0 { - margin-left: 0px; + .xl\:mr-4 { + margin-right: 1rem; } - .xl\:-mt-1 { - margin-top: -0.25rem; + .xl\:mr-5 { + margin-right: 1.25rem; } - .xl\:-mr-1 { - margin-right: -0.25rem; + .xl\:mr-6 { + margin-right: 1.5rem; } - .xl\:-mb-1 { - margin-bottom: -0.25rem; + .xl\:mr-7 { + margin-right: 1.75rem; } - .xl\:-ml-1 { - margin-left: -0.25rem; + .xl\:mr-8 { + margin-right: 2rem; } - .xl\:-mt-2 { - margin-top: -0.5rem; + .xl\:mr-9 { + margin-right: 2.25rem; } - .xl\:-mr-2 { - margin-right: -0.5rem; + .xl\:mr-10 { + margin-right: 2.5rem; } - .xl\:-mb-2 { - margin-bottom: -0.5rem; + .xl\:mr-11 { + margin-right: 2.75rem; } - .xl\:-ml-2 { - margin-left: -0.5rem; + .xl\:mr-12 { + margin-right: 3rem; } - .xl\:-mt-3 { - margin-top: -0.75rem; + .xl\:mr-14 { + margin-right: 3.5rem; } - .xl\:-mr-3 { - margin-right: -0.75rem; + .xl\:mr-16 { + margin-right: 4rem; } - .xl\:-mb-3 { - margin-bottom: -0.75rem; + .xl\:mr-20 { + margin-right: 5rem; } - .xl\:-ml-3 { - margin-left: -0.75rem; + .xl\:mr-24 { + margin-right: 6rem; } - .xl\:-mt-4 { - margin-top: -1rem; + .xl\:mr-28 { + margin-right: 7rem; } - .xl\:-mr-4 { - margin-right: -1rem; + .xl\:mr-32 { + margin-right: 8rem; } - .xl\:-mb-4 { - margin-bottom: -1rem; + .xl\:mr-36 { + margin-right: 9rem; } - .xl\:-ml-4 { - margin-left: -1rem; + .xl\:mr-40 { + margin-right: 10rem; } - .xl\:-mt-5 { - margin-top: -1.25rem; + .xl\:mr-44 { + margin-right: 11rem; } - .xl\:-mr-5 { - margin-right: -1.25rem; + .xl\:mr-48 { + margin-right: 12rem; } - .xl\:-mb-5 { - margin-bottom: -1.25rem; + .xl\:mr-52 { + margin-right: 13rem; } - .xl\:-ml-5 { - margin-left: -1.25rem; + .xl\:mr-56 { + margin-right: 14rem; } - .xl\:-mt-6 { - margin-top: -1.5rem; + .xl\:mr-60 { + margin-right: 15rem; } - .xl\:-mr-6 { - margin-right: -1.5rem; + .xl\:mr-64 { + margin-right: 16rem; } - .xl\:-mb-6 { - margin-bottom: -1.5rem; + .xl\:mr-72 { + margin-right: 18rem; } - .xl\:-ml-6 { - margin-left: -1.5rem; + .xl\:mr-80 { + margin-right: 20rem; } - .xl\:-mt-7 { - margin-top: -1.75rem; + .xl\:mr-96 { + margin-right: 24rem; } - .xl\:-mr-7 { - margin-right: -1.75rem; + .xl\:mr-auto { + margin-right: auto; } - .xl\:-mb-7 { - margin-bottom: -1.75rem; + .xl\:mr-px { + margin-right: 1px; } - .xl\:-ml-7 { - margin-left: -1.75rem; + .xl\:mr-0\.5 { + margin-right: 0.125rem; } - .xl\:-mt-8 { - margin-top: -2rem; + .xl\:mr-1\.5 { + margin-right: 0.375rem; } - .xl\:-mr-8 { - margin-right: -2rem; + .xl\:mr-2\.5 { + margin-right: 0.625rem; } - .xl\:-mb-8 { - margin-bottom: -2rem; + .xl\:mr-3\.5 { + margin-right: 0.875rem; } - .xl\:-ml-8 { - margin-left: -2rem; + .xl\:-mr-0 { + margin-right: 0px; } - .xl\:-mt-9 { - margin-top: -2.25rem; + .xl\:-mr-1 { + margin-right: -0.25rem; } - .xl\:-mr-9 { - margin-right: -2.25rem; + .xl\:-mr-2 { + margin-right: -0.5rem; } - .xl\:-mb-9 { - margin-bottom: -2.25rem; + .xl\:-mr-3 { + margin-right: -0.75rem; } - .xl\:-ml-9 { - margin-left: -2.25rem; + .xl\:-mr-4 { + margin-right: -1rem; } - .xl\:-mt-10 { - margin-top: -2.5rem; + .xl\:-mr-5 { + margin-right: -1.25rem; } - .xl\:-mr-10 { - margin-right: -2.5rem; + .xl\:-mr-6 { + margin-right: -1.5rem; } - .xl\:-mb-10 { - margin-bottom: -2.5rem; + .xl\:-mr-7 { + margin-right: -1.75rem; } - .xl\:-ml-10 { - margin-left: -2.5rem; + .xl\:-mr-8 { + margin-right: -2rem; } - .xl\:-mt-11 { - margin-top: -2.75rem; + .xl\:-mr-9 { + margin-right: -2.25rem; + } + + .xl\:-mr-10 { + margin-right: -2.5rem; } .xl\:-mr-11 { margin-right: -2.75rem; } - .xl\:-mb-11 { - margin-bottom: -2.75rem; + .xl\:-mr-12 { + margin-right: -3rem; } - .xl\:-ml-11 { - margin-left: -2.75rem; + .xl\:-mr-14 { + margin-right: -3.5rem; } - .xl\:-mt-12 { - margin-top: -3rem; + .xl\:-mr-16 { + margin-right: -4rem; } - .xl\:-mr-12 { - margin-right: -3rem; + .xl\:-mr-20 { + margin-right: -5rem; } - .xl\:-mb-12 { - margin-bottom: -3rem; + .xl\:-mr-24 { + margin-right: -6rem; } - .xl\:-ml-12 { - margin-left: -3rem; + .xl\:-mr-28 { + margin-right: -7rem; } - .xl\:-mt-14 { - margin-top: -3.5rem; + .xl\:-mr-32 { + margin-right: -8rem; } - .xl\:-mr-14 { - margin-right: -3.5rem; + .xl\:-mr-36 { + margin-right: -9rem; } - .xl\:-mb-14 { - margin-bottom: -3.5rem; + .xl\:-mr-40 { + margin-right: -10rem; } - .xl\:-ml-14 { - margin-left: -3.5rem; + .xl\:-mr-44 { + margin-right: -11rem; } - .xl\:-mt-16 { - margin-top: -4rem; + .xl\:-mr-48 { + margin-right: -12rem; } - .xl\:-mr-16 { - margin-right: -4rem; + .xl\:-mr-52 { + margin-right: -13rem; } - .xl\:-mb-16 { - margin-bottom: -4rem; + .xl\:-mr-56 { + margin-right: -14rem; } - .xl\:-ml-16 { - margin-left: -4rem; + .xl\:-mr-60 { + margin-right: -15rem; } - .xl\:-mt-20 { - margin-top: -5rem; + .xl\:-mr-64 { + margin-right: -16rem; } - .xl\:-mr-20 { - margin-right: -5rem; + .xl\:-mr-72 { + margin-right: -18rem; } - .xl\:-mb-20 { - margin-bottom: -5rem; + .xl\:-mr-80 { + margin-right: -20rem; } - .xl\:-ml-20 { - margin-left: -5rem; + .xl\:-mr-96 { + margin-right: -24rem; } - .xl\:-mt-24 { - margin-top: -6rem; + .xl\:-mr-px { + margin-right: -1px; } - .xl\:-mr-24 { - margin-right: -6rem; + .xl\:-mr-0\.5 { + margin-right: -0.125rem; } - .xl\:-mb-24 { - margin-bottom: -6rem; + .xl\:-mr-1\.5 { + margin-right: -0.375rem; } - .xl\:-ml-24 { - margin-left: -6rem; + .xl\:-mr-2\.5 { + margin-right: -0.625rem; } - .xl\:-mt-28 { - margin-top: -7rem; + .xl\:-mr-3\.5 { + margin-right: -0.875rem; } - .xl\:-mr-28 { - margin-right: -7rem; + .xl\:mb-0 { + margin-bottom: 0px; } - .xl\:-mb-28 { - margin-bottom: -7rem; + .xl\:mb-1 { + margin-bottom: 0.25rem; } - .xl\:-ml-28 { - margin-left: -7rem; + .xl\:mb-2 { + margin-bottom: 0.5rem; } - .xl\:-mt-32 { - margin-top: -8rem; + .xl\:mb-3 { + margin-bottom: 0.75rem; } - .xl\:-mr-32 { - margin-right: -8rem; + .xl\:mb-4 { + margin-bottom: 1rem; } - .xl\:-mb-32 { - margin-bottom: -8rem; + .xl\:mb-5 { + margin-bottom: 1.25rem; } - .xl\:-ml-32 { - margin-left: -8rem; + .xl\:mb-6 { + margin-bottom: 1.5rem; } - .xl\:-mt-36 { - margin-top: -9rem; + .xl\:mb-7 { + margin-bottom: 1.75rem; } - .xl\:-mr-36 { - margin-right: -9rem; + .xl\:mb-8 { + margin-bottom: 2rem; } - .xl\:-mb-36 { - margin-bottom: -9rem; + .xl\:mb-9 { + margin-bottom: 2.25rem; } - .xl\:-ml-36 { - margin-left: -9rem; + .xl\:mb-10 { + margin-bottom: 2.5rem; } - .xl\:-mt-40 { - margin-top: -10rem; + .xl\:mb-11 { + margin-bottom: 2.75rem; } - .xl\:-mr-40 { - margin-right: -10rem; + .xl\:mb-12 { + margin-bottom: 3rem; } - .xl\:-mb-40 { - margin-bottom: -10rem; + .xl\:mb-14 { + margin-bottom: 3.5rem; } - .xl\:-ml-40 { - margin-left: -10rem; + .xl\:mb-16 { + margin-bottom: 4rem; } - .xl\:-mt-44 { - margin-top: -11rem; + .xl\:mb-20 { + margin-bottom: 5rem; } - .xl\:-mr-44 { - margin-right: -11rem; + .xl\:mb-24 { + margin-bottom: 6rem; } - .xl\:-mb-44 { - margin-bottom: -11rem; + .xl\:mb-28 { + margin-bottom: 7rem; } - .xl\:-ml-44 { - margin-left: -11rem; + .xl\:mb-32 { + margin-bottom: 8rem; } - .xl\:-mt-48 { - margin-top: -12rem; + .xl\:mb-36 { + margin-bottom: 9rem; } - .xl\:-mr-48 { - margin-right: -12rem; + .xl\:mb-40 { + margin-bottom: 10rem; } - .xl\:-mb-48 { - margin-bottom: -12rem; + .xl\:mb-44 { + margin-bottom: 11rem; } - .xl\:-ml-48 { - margin-left: -12rem; + .xl\:mb-48 { + margin-bottom: 12rem; } - .xl\:-mt-52 { - margin-top: -13rem; + .xl\:mb-52 { + margin-bottom: 13rem; } - .xl\:-mr-52 { - margin-right: -13rem; + .xl\:mb-56 { + margin-bottom: 14rem; } - .xl\:-mb-52 { - margin-bottom: -13rem; + .xl\:mb-60 { + margin-bottom: 15rem; } - .xl\:-ml-52 { - margin-left: -13rem; + .xl\:mb-64 { + margin-bottom: 16rem; } - .xl\:-mt-56 { - margin-top: -14rem; + .xl\:mb-72 { + margin-bottom: 18rem; } - .xl\:-mr-56 { - margin-right: -14rem; + .xl\:mb-80 { + margin-bottom: 20rem; } - .xl\:-mb-56 { - margin-bottom: -14rem; + .xl\:mb-96 { + margin-bottom: 24rem; } - .xl\:-ml-56 { - margin-left: -14rem; + .xl\:mb-auto { + margin-bottom: auto; } - .xl\:-mt-60 { - margin-top: -15rem; + .xl\:mb-px { + margin-bottom: 1px; } - .xl\:-mr-60 { - margin-right: -15rem; + .xl\:mb-0\.5 { + margin-bottom: 0.125rem; } - .xl\:-mb-60 { - margin-bottom: -15rem; + .xl\:mb-1\.5 { + margin-bottom: 0.375rem; } - .xl\:-ml-60 { - margin-left: -15rem; + .xl\:mb-2\.5 { + margin-bottom: 0.625rem; } - .xl\:-mt-64 { - margin-top: -16rem; + .xl\:mb-3\.5 { + margin-bottom: 0.875rem; } - .xl\:-mr-64 { - margin-right: -16rem; + .xl\:-mb-0 { + margin-bottom: 0px; } - .xl\:-mb-64 { - margin-bottom: -16rem; + .xl\:-mb-1 { + margin-bottom: -0.25rem; } - .xl\:-ml-64 { - margin-left: -16rem; + .xl\:-mb-2 { + margin-bottom: -0.5rem; } - .xl\:-mt-72 { - margin-top: -18rem; + .xl\:-mb-3 { + margin-bottom: -0.75rem; } - .xl\:-mr-72 { - margin-right: -18rem; + .xl\:-mb-4 { + margin-bottom: -1rem; } - .xl\:-mb-72 { - margin-bottom: -18rem; + .xl\:-mb-5 { + margin-bottom: -1.25rem; } - .xl\:-ml-72 { - margin-left: -18rem; + .xl\:-mb-6 { + margin-bottom: -1.5rem; } - .xl\:-mt-80 { - margin-top: -20rem; + .xl\:-mb-7 { + margin-bottom: -1.75rem; } - .xl\:-mr-80 { - margin-right: -20rem; + .xl\:-mb-8 { + margin-bottom: -2rem; } - .xl\:-mb-80 { - margin-bottom: -20rem; + .xl\:-mb-9 { + margin-bottom: -2.25rem; } - .xl\:-ml-80 { - margin-left: -20rem; + .xl\:-mb-10 { + margin-bottom: -2.5rem; } - .xl\:-mt-96 { - margin-top: -24rem; + .xl\:-mb-11 { + margin-bottom: -2.75rem; } - .xl\:-mr-96 { - margin-right: -24rem; + .xl\:-mb-12 { + margin-bottom: -3rem; } - .xl\:-mb-96 { - margin-bottom: -24rem; + .xl\:-mb-14 { + margin-bottom: -3.5rem; } - .xl\:-ml-96 { - margin-left: -24rem; + .xl\:-mb-16 { + margin-bottom: -4rem; } - .xl\:-mt-px { - margin-top: -1px; + .xl\:-mb-20 { + margin-bottom: -5rem; } - .xl\:-mr-px { - margin-right: -1px; + .xl\:-mb-24 { + margin-bottom: -6rem; } - .xl\:-mb-px { - margin-bottom: -1px; + .xl\:-mb-28 { + margin-bottom: -7rem; } - .xl\:-ml-px { - margin-left: -1px; + .xl\:-mb-32 { + margin-bottom: -8rem; } - .xl\:-mt-0\.5 { - margin-top: -0.125rem; + .xl\:-mb-36 { + margin-bottom: -9rem; } - .xl\:-mr-0\.5 { - margin-right: -0.125rem; + .xl\:-mb-40 { + margin-bottom: -10rem; } - .xl\:-mb-0\.5 { - margin-bottom: -0.125rem; + .xl\:-mb-44 { + margin-bottom: -11rem; } - .xl\:-ml-0\.5 { - margin-left: -0.125rem; + .xl\:-mb-48 { + margin-bottom: -12rem; } - .xl\:-mt-1\.5 { - margin-top: -0.375rem; + .xl\:-mb-52 { + margin-bottom: -13rem; } - .xl\:-mr-1\.5 { - margin-right: -0.375rem; + .xl\:-mb-56 { + margin-bottom: -14rem; } - .xl\:-mb-1\.5 { - margin-bottom: -0.375rem; + .xl\:-mb-60 { + margin-bottom: -15rem; } - .xl\:-ml-1\.5 { - margin-left: -0.375rem; + .xl\:-mb-64 { + margin-bottom: -16rem; } - .xl\:-mt-2\.5 { - margin-top: -0.625rem; + .xl\:-mb-72 { + margin-bottom: -18rem; } - .xl\:-mr-2\.5 { - margin-right: -0.625rem; + .xl\:-mb-80 { + margin-bottom: -20rem; } - .xl\:-mb-2\.5 { - margin-bottom: -0.625rem; + .xl\:-mb-96 { + margin-bottom: -24rem; } - .xl\:-ml-2\.5 { - margin-left: -0.625rem; + .xl\:-mb-px { + margin-bottom: -1px; } - .xl\:-mt-3\.5 { - margin-top: -0.875rem; + .xl\:-mb-0\.5 { + margin-bottom: -0.125rem; } - .xl\:-mr-3\.5 { - margin-right: -0.875rem; + .xl\:-mb-1\.5 { + margin-bottom: -0.375rem; + } + + .xl\:-mb-2\.5 { + margin-bottom: -0.625rem; } .xl\:-mb-3\.5 { margin-bottom: -0.875rem; } + .xl\:ml-0 { + margin-left: 0px; + } + + .xl\:ml-1 { + margin-left: 0.25rem; + } + + .xl\:ml-2 { + margin-left: 0.5rem; + } + + .xl\:ml-3 { + margin-left: 0.75rem; + } + + .xl\:ml-4 { + margin-left: 1rem; + } + + .xl\:ml-5 { + margin-left: 1.25rem; + } + + .xl\:ml-6 { + margin-left: 1.5rem; + } + + .xl\:ml-7 { + margin-left: 1.75rem; + } + + .xl\:ml-8 { + margin-left: 2rem; + } + + .xl\:ml-9 { + margin-left: 2.25rem; + } + + .xl\:ml-10 { + margin-left: 2.5rem; + } + + .xl\:ml-11 { + margin-left: 2.75rem; + } + + .xl\:ml-12 { + margin-left: 3rem; + } + + .xl\:ml-14 { + margin-left: 3.5rem; + } + + .xl\:ml-16 { + margin-left: 4rem; + } + + .xl\:ml-20 { + margin-left: 5rem; + } + + .xl\:ml-24 { + margin-left: 6rem; + } + + .xl\:ml-28 { + margin-left: 7rem; + } + + .xl\:ml-32 { + margin-left: 8rem; + } + + .xl\:ml-36 { + margin-left: 9rem; + } + + .xl\:ml-40 { + margin-left: 10rem; + } + + .xl\:ml-44 { + margin-left: 11rem; + } + + .xl\:ml-48 { + margin-left: 12rem; + } + + .xl\:ml-52 { + margin-left: 13rem; + } + + .xl\:ml-56 { + margin-left: 14rem; + } + + .xl\:ml-60 { + margin-left: 15rem; + } + + .xl\:ml-64 { + margin-left: 16rem; + } + + .xl\:ml-72 { + margin-left: 18rem; + } + + .xl\:ml-80 { + margin-left: 20rem; + } + + .xl\:ml-96 { + margin-left: 24rem; + } + + .xl\:ml-auto { + margin-left: auto; + } + + .xl\:ml-px { + margin-left: 1px; + } + + .xl\:ml-0\.5 { + margin-left: 0.125rem; + } + + .xl\:ml-1\.5 { + margin-left: 0.375rem; + } + + .xl\:ml-2\.5 { + margin-left: 0.625rem; + } + + .xl\:ml-3\.5 { + margin-left: 0.875rem; + } + + .xl\:-ml-0 { + margin-left: 0px; + } + + .xl\:-ml-1 { + margin-left: -0.25rem; + } + + .xl\:-ml-2 { + margin-left: -0.5rem; + } + + .xl\:-ml-3 { + margin-left: -0.75rem; + } + + .xl\:-ml-4 { + margin-left: -1rem; + } + + .xl\:-ml-5 { + margin-left: -1.25rem; + } + + .xl\:-ml-6 { + margin-left: -1.5rem; + } + + .xl\:-ml-7 { + margin-left: -1.75rem; + } + + .xl\:-ml-8 { + margin-left: -2rem; + } + + .xl\:-ml-9 { + margin-left: -2.25rem; + } + + .xl\:-ml-10 { + margin-left: -2.5rem; + } + + .xl\:-ml-11 { + margin-left: -2.75rem; + } + + .xl\:-ml-12 { + margin-left: -3rem; + } + + .xl\:-ml-14 { + margin-left: -3.5rem; + } + + .xl\:-ml-16 { + margin-left: -4rem; + } + + .xl\:-ml-20 { + margin-left: -5rem; + } + + .xl\:-ml-24 { + margin-left: -6rem; + } + + .xl\:-ml-28 { + margin-left: -7rem; + } + + .xl\:-ml-32 { + margin-left: -8rem; + } + + .xl\:-ml-36 { + margin-left: -9rem; + } + + .xl\:-ml-40 { + margin-left: -10rem; + } + + .xl\:-ml-44 { + margin-left: -11rem; + } + + .xl\:-ml-48 { + margin-left: -12rem; + } + + .xl\:-ml-52 { + margin-left: -13rem; + } + + .xl\:-ml-56 { + margin-left: -14rem; + } + + .xl\:-ml-60 { + margin-left: -15rem; + } + + .xl\:-ml-64 { + margin-left: -16rem; + } + + .xl\:-ml-72 { + margin-left: -18rem; + } + + .xl\:-ml-80 { + margin-left: -20rem; + } + + .xl\:-ml-96 { + margin-left: -24rem; + } + + .xl\:-ml-px { + margin-left: -1px; + } + + .xl\:-ml-0\.5 { + margin-left: -0.125rem; + } + + .xl\:-ml-1\.5 { + margin-left: -0.375rem; + } + + .xl\:-ml-2\.5 { + margin-left: -0.625rem; + } + .xl\:-ml-3\.5 { margin-left: -0.875rem; } @@ -143313,1846 +143313,1846 @@ video { margin: -0.875rem; } - .\32xl\:my-0 { - margin-top: 0px; - margin-bottom: 0px; - } - .\32xl\:mx-0 { margin-left: 0px; margin-right: 0px; } - .\32xl\:my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; - } - .\32xl\:mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; } - .\32xl\:my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; - } - .\32xl\:mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; } - .\32xl\:my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; - } - .\32xl\:mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; } - .\32xl\:my-4 { - margin-top: 1rem; - margin-bottom: 1rem; - } - .\32xl\:mx-4 { margin-left: 1rem; margin-right: 1rem; } - .\32xl\:my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; - } - .\32xl\:mx-5 { margin-left: 1.25rem; margin-right: 1.25rem; } - .\32xl\:my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; - } - .\32xl\:mx-6 { margin-left: 1.5rem; margin-right: 1.5rem; } - .\32xl\:my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; - } - .\32xl\:mx-7 { margin-left: 1.75rem; margin-right: 1.75rem; } - .\32xl\:my-8 { - margin-top: 2rem; - margin-bottom: 2rem; - } - .\32xl\:mx-8 { margin-left: 2rem; margin-right: 2rem; } - .\32xl\:my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; - } - .\32xl\:mx-9 { margin-left: 2.25rem; margin-right: 2.25rem; } - .\32xl\:my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; - } - .\32xl\:mx-10 { margin-left: 2.5rem; margin-right: 2.5rem; } - .\32xl\:my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; - } - .\32xl\:mx-11 { margin-left: 2.75rem; margin-right: 2.75rem; } - .\32xl\:my-12 { - margin-top: 3rem; - margin-bottom: 3rem; - } - .\32xl\:mx-12 { margin-left: 3rem; margin-right: 3rem; } - .\32xl\:my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; - } - .\32xl\:mx-14 { margin-left: 3.5rem; margin-right: 3.5rem; } - .\32xl\:my-16 { - margin-top: 4rem; - margin-bottom: 4rem; - } - .\32xl\:mx-16 { margin-left: 4rem; margin-right: 4rem; } - .\32xl\:my-20 { - margin-top: 5rem; - margin-bottom: 5rem; - } - .\32xl\:mx-20 { margin-left: 5rem; margin-right: 5rem; } - .\32xl\:my-24 { - margin-top: 6rem; - margin-bottom: 6rem; - } - .\32xl\:mx-24 { margin-left: 6rem; margin-right: 6rem; } - .\32xl\:my-28 { - margin-top: 7rem; - margin-bottom: 7rem; - } - .\32xl\:mx-28 { margin-left: 7rem; margin-right: 7rem; } - .\32xl\:my-32 { - margin-top: 8rem; - margin-bottom: 8rem; - } - .\32xl\:mx-32 { margin-left: 8rem; margin-right: 8rem; } - .\32xl\:my-36 { - margin-top: 9rem; - margin-bottom: 9rem; - } - .\32xl\:mx-36 { margin-left: 9rem; margin-right: 9rem; } - .\32xl\:my-40 { - margin-top: 10rem; - margin-bottom: 10rem; - } - .\32xl\:mx-40 { margin-left: 10rem; margin-right: 10rem; } - .\32xl\:my-44 { - margin-top: 11rem; - margin-bottom: 11rem; - } - .\32xl\:mx-44 { margin-left: 11rem; margin-right: 11rem; } - .\32xl\:my-48 { - margin-top: 12rem; - margin-bottom: 12rem; - } - .\32xl\:mx-48 { margin-left: 12rem; margin-right: 12rem; } - .\32xl\:my-52 { - margin-top: 13rem; - margin-bottom: 13rem; - } - .\32xl\:mx-52 { margin-left: 13rem; margin-right: 13rem; } - .\32xl\:my-56 { - margin-top: 14rem; - margin-bottom: 14rem; - } - .\32xl\:mx-56 { margin-left: 14rem; margin-right: 14rem; } - .\32xl\:my-60 { - margin-top: 15rem; - margin-bottom: 15rem; - } - .\32xl\:mx-60 { margin-left: 15rem; margin-right: 15rem; } - .\32xl\:my-64 { - margin-top: 16rem; - margin-bottom: 16rem; - } - .\32xl\:mx-64 { margin-left: 16rem; margin-right: 16rem; } - .\32xl\:my-72 { - margin-top: 18rem; - margin-bottom: 18rem; - } - .\32xl\:mx-72 { margin-left: 18rem; margin-right: 18rem; } - .\32xl\:my-80 { - margin-top: 20rem; - margin-bottom: 20rem; - } - .\32xl\:mx-80 { margin-left: 20rem; margin-right: 20rem; } - .\32xl\:my-96 { - margin-top: 24rem; - margin-bottom: 24rem; - } - .\32xl\:mx-96 { margin-left: 24rem; margin-right: 24rem; } - .\32xl\:my-auto { - margin-top: auto; - margin-bottom: auto; - } - .\32xl\:mx-auto { margin-left: auto; margin-right: auto; } - .\32xl\:my-px { - margin-top: 1px; - margin-bottom: 1px; - } - .\32xl\:mx-px { margin-left: 1px; margin-right: 1px; } - .\32xl\:my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; - } - .\32xl\:mx-0\.5 { margin-left: 0.125rem; margin-right: 0.125rem; } - .\32xl\:my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; - } - .\32xl\:mx-1\.5 { margin-left: 0.375rem; margin-right: 0.375rem; } - .\32xl\:my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; - } - .\32xl\:mx-2\.5 { margin-left: 0.625rem; margin-right: 0.625rem; } - .\32xl\:my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; - } - .\32xl\:mx-3\.5 { margin-left: 0.875rem; margin-right: 0.875rem; } - .\32xl\:-my-0 { - margin-top: 0px; - margin-bottom: 0px; - } - .\32xl\:-mx-0 { margin-left: 0px; margin-right: 0px; } - .\32xl\:-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; - } - .\32xl\:-mx-1 { margin-left: -0.25rem; margin-right: -0.25rem; } - .\32xl\:-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; - } - .\32xl\:-mx-2 { margin-left: -0.5rem; margin-right: -0.5rem; } - .\32xl\:-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; - } - .\32xl\:-mx-3 { margin-left: -0.75rem; margin-right: -0.75rem; } - .\32xl\:-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; - } - .\32xl\:-mx-4 { margin-left: -1rem; margin-right: -1rem; } - .\32xl\:-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; - } - .\32xl\:-mx-5 { margin-left: -1.25rem; margin-right: -1.25rem; } - .\32xl\:-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; - } - .\32xl\:-mx-6 { margin-left: -1.5rem; margin-right: -1.5rem; } - .\32xl\:-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; - } - .\32xl\:-mx-7 { margin-left: -1.75rem; margin-right: -1.75rem; } - .\32xl\:-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; - } - .\32xl\:-mx-8 { margin-left: -2rem; margin-right: -2rem; } - .\32xl\:-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; - } - .\32xl\:-mx-9 { margin-left: -2.25rem; margin-right: -2.25rem; } - .\32xl\:-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; - } - .\32xl\:-mx-10 { margin-left: -2.5rem; margin-right: -2.5rem; } - .\32xl\:-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; - } - .\32xl\:-mx-11 { margin-left: -2.75rem; margin-right: -2.75rem; } - .\32xl\:-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; - } - .\32xl\:-mx-12 { margin-left: -3rem; margin-right: -3rem; } - .\32xl\:-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; - } - .\32xl\:-mx-14 { margin-left: -3.5rem; margin-right: -3.5rem; } - .\32xl\:-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; - } - .\32xl\:-mx-16 { margin-left: -4rem; margin-right: -4rem; } - .\32xl\:-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; - } - .\32xl\:-mx-20 { margin-left: -5rem; margin-right: -5rem; } - .\32xl\:-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; - } - .\32xl\:-mx-24 { margin-left: -6rem; margin-right: -6rem; } - .\32xl\:-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; - } - .\32xl\:-mx-28 { margin-left: -7rem; margin-right: -7rem; } - .\32xl\:-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; - } - .\32xl\:-mx-32 { margin-left: -8rem; margin-right: -8rem; } - .\32xl\:-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; - } - .\32xl\:-mx-36 { margin-left: -9rem; margin-right: -9rem; } - .\32xl\:-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; - } - .\32xl\:-mx-40 { margin-left: -10rem; margin-right: -10rem; } - .\32xl\:-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; - } - .\32xl\:-mx-44 { margin-left: -11rem; margin-right: -11rem; } - .\32xl\:-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; - } - .\32xl\:-mx-48 { margin-left: -12rem; margin-right: -12rem; } - .\32xl\:-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; - } - .\32xl\:-mx-52 { margin-left: -13rem; margin-right: -13rem; } - .\32xl\:-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; - } - .\32xl\:-mx-56 { margin-left: -14rem; margin-right: -14rem; } - .\32xl\:-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; - } - .\32xl\:-mx-60 { margin-left: -15rem; margin-right: -15rem; } - .\32xl\:-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; - } - .\32xl\:-mx-64 { margin-left: -16rem; margin-right: -16rem; } - .\32xl\:-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; - } - .\32xl\:-mx-72 { margin-left: -18rem; margin-right: -18rem; } - .\32xl\:-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; - } - .\32xl\:-mx-80 { margin-left: -20rem; margin-right: -20rem; } - .\32xl\:-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; - } - .\32xl\:-mx-96 { margin-left: -24rem; margin-right: -24rem; } - .\32xl\:-my-px { - margin-top: -1px; - margin-bottom: -1px; - } - .\32xl\:-mx-px { margin-left: -1px; margin-right: -1px; } - .\32xl\:-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; - } - .\32xl\:-mx-0\.5 { margin-left: -0.125rem; margin-right: -0.125rem; } - .\32xl\:-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; - } - .\32xl\:-mx-1\.5 { margin-left: -0.375rem; margin-right: -0.375rem; } - .\32xl\:-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; - } - .\32xl\:-mx-2\.5 { margin-left: -0.625rem; margin-right: -0.625rem; } - .\32xl\:-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; - } - .\32xl\:-mx-3\.5 { margin-left: -0.875rem; margin-right: -0.875rem; } - .\32xl\:mt-0 { + .\32xl\:my-0 { margin-top: 0px; + margin-bottom: 0px; } - .\32xl\:mr-0 { - margin-right: 0px; + .\32xl\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } - .\32xl\:mb-0 { + .\32xl\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; + } + + .\32xl\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; + } + + .\32xl\:my-4 { + margin-top: 1rem; + margin-bottom: 1rem; + } + + .\32xl\:my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; + } + + .\32xl\:my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; + } + + .\32xl\:my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; + } + + .\32xl\:my-8 { + margin-top: 2rem; + margin-bottom: 2rem; + } + + .\32xl\:my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; + } + + .\32xl\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; + } + + .\32xl\:my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; + } + + .\32xl\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; + } + + .\32xl\:my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; + } + + .\32xl\:my-16 { + margin-top: 4rem; + margin-bottom: 4rem; + } + + .\32xl\:my-20 { + margin-top: 5rem; + margin-bottom: 5rem; + } + + .\32xl\:my-24 { + margin-top: 6rem; + margin-bottom: 6rem; + } + + .\32xl\:my-28 { + margin-top: 7rem; + margin-bottom: 7rem; + } + + .\32xl\:my-32 { + margin-top: 8rem; + margin-bottom: 8rem; + } + + .\32xl\:my-36 { + margin-top: 9rem; + margin-bottom: 9rem; + } + + .\32xl\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; + } + + .\32xl\:my-44 { + margin-top: 11rem; + margin-bottom: 11rem; + } + + .\32xl\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; + } + + .\32xl\:my-52 { + margin-top: 13rem; + margin-bottom: 13rem; + } + + .\32xl\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; + } + + .\32xl\:my-60 { + margin-top: 15rem; + margin-bottom: 15rem; + } + + .\32xl\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; + } + + .\32xl\:my-72 { + margin-top: 18rem; + margin-bottom: 18rem; + } + + .\32xl\:my-80 { + margin-top: 20rem; + margin-bottom: 20rem; + } + + .\32xl\:my-96 { + margin-top: 24rem; + margin-bottom: 24rem; + } + + .\32xl\:my-auto { + margin-top: auto; + margin-bottom: auto; + } + + .\32xl\:my-px { + margin-top: 1px; + margin-bottom: 1px; + } + + .\32xl\:my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; + } + + .\32xl\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; + } + + .\32xl\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; + } + + .\32xl\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; + } + + .\32xl\:-my-0 { + margin-top: 0px; margin-bottom: 0px; } - .\32xl\:ml-0 { - margin-left: 0px; + .\32xl\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } - .\32xl\:mt-1 { - margin-top: 0.25rem; + .\32xl\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } - .\32xl\:mr-1 { - margin-right: 0.25rem; + .\32xl\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } - .\32xl\:mb-1 { - margin-bottom: 0.25rem; + .\32xl\:-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } - .\32xl\:ml-1 { - margin-left: 0.25rem; + .\32xl\:-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } - .\32xl\:mt-2 { - margin-top: 0.5rem; + .\32xl\:-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } - .\32xl\:mr-2 { - margin-right: 0.5rem; + .\32xl\:-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } - .\32xl\:mb-2 { - margin-bottom: 0.5rem; + .\32xl\:-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } - .\32xl\:ml-2 { - margin-left: 0.5rem; + .\32xl\:-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } - .\32xl\:mt-3 { - margin-top: 0.75rem; + .\32xl\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } - .\32xl\:mr-3 { - margin-right: 0.75rem; + .\32xl\:-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } - .\32xl\:mb-3 { - margin-bottom: 0.75rem; + .\32xl\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } - .\32xl\:ml-3 { - margin-left: 0.75rem; + .\32xl\:-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } - .\32xl\:mt-4 { - margin-top: 1rem; + .\32xl\:-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } - .\32xl\:mr-4 { - margin-right: 1rem; + .\32xl\:-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } - .\32xl\:mb-4 { - margin-bottom: 1rem; + .\32xl\:-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } - .\32xl\:ml-4 { - margin-left: 1rem; + .\32xl\:-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } - .\32xl\:mt-5 { - margin-top: 1.25rem; + .\32xl\:-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } - .\32xl\:mr-5 { - margin-right: 1.25rem; + .\32xl\:-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } - .\32xl\:mb-5 { - margin-bottom: 1.25rem; + .\32xl\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } - .\32xl\:ml-5 { - margin-left: 1.25rem; + .\32xl\:-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } - .\32xl\:mt-6 { - margin-top: 1.5rem; + .\32xl\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } - .\32xl\:mr-6 { - margin-right: 1.5rem; + .\32xl\:-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } - .\32xl\:mb-6 { - margin-bottom: 1.5rem; + .\32xl\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } - .\32xl\:ml-6 { - margin-left: 1.5rem; + .\32xl\:-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } - .\32xl\:mt-7 { - margin-top: 1.75rem; + .\32xl\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } - .\32xl\:mr-7 { - margin-right: 1.75rem; + .\32xl\:-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } - .\32xl\:mb-7 { - margin-bottom: 1.75rem; + .\32xl\:-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } - .\32xl\:ml-7 { - margin-left: 1.75rem; + .\32xl\:-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } - .\32xl\:mt-8 { - margin-top: 2rem; + .\32xl\:-my-px { + margin-top: -1px; + margin-bottom: -1px; } - .\32xl\:mr-8 { - margin-right: 2rem; + .\32xl\:-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } - .\32xl\:mb-8 { - margin-bottom: 2rem; + .\32xl\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } - .\32xl\:ml-8 { - margin-left: 2rem; + .\32xl\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } - .\32xl\:mt-9 { - margin-top: 2.25rem; + .\32xl\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } - .\32xl\:mr-9 { - margin-right: 2.25rem; + .\32xl\:mt-0 { + margin-top: 0px; } - .\32xl\:mb-9 { - margin-bottom: 2.25rem; + .\32xl\:mt-1 { + margin-top: 0.25rem; } - .\32xl\:ml-9 { - margin-left: 2.25rem; + .\32xl\:mt-2 { + margin-top: 0.5rem; } - .\32xl\:mt-10 { - margin-top: 2.5rem; + .\32xl\:mt-3 { + margin-top: 0.75rem; } - .\32xl\:mr-10 { - margin-right: 2.5rem; + .\32xl\:mt-4 { + margin-top: 1rem; } - .\32xl\:mb-10 { - margin-bottom: 2.5rem; + .\32xl\:mt-5 { + margin-top: 1.25rem; } - .\32xl\:ml-10 { - margin-left: 2.5rem; + .\32xl\:mt-6 { + margin-top: 1.5rem; } - .\32xl\:mt-11 { - margin-top: 2.75rem; + .\32xl\:mt-7 { + margin-top: 1.75rem; } - .\32xl\:mr-11 { - margin-right: 2.75rem; + .\32xl\:mt-8 { + margin-top: 2rem; } - .\32xl\:mb-11 { - margin-bottom: 2.75rem; + .\32xl\:mt-9 { + margin-top: 2.25rem; } - .\32xl\:ml-11 { - margin-left: 2.75rem; + .\32xl\:mt-10 { + margin-top: 2.5rem; + } + + .\32xl\:mt-11 { + margin-top: 2.75rem; } .\32xl\:mt-12 { margin-top: 3rem; } - .\32xl\:mr-12 { - margin-right: 3rem; + .\32xl\:mt-14 { + margin-top: 3.5rem; } - .\32xl\:mb-12 { - margin-bottom: 3rem; + .\32xl\:mt-16 { + margin-top: 4rem; } - .\32xl\:ml-12 { - margin-left: 3rem; + .\32xl\:mt-20 { + margin-top: 5rem; } - .\32xl\:mt-14 { - margin-top: 3.5rem; + .\32xl\:mt-24 { + margin-top: 6rem; } - .\32xl\:mr-14 { - margin-right: 3.5rem; + .\32xl\:mt-28 { + margin-top: 7rem; } - .\32xl\:mb-14 { - margin-bottom: 3.5rem; + .\32xl\:mt-32 { + margin-top: 8rem; } - .\32xl\:ml-14 { - margin-left: 3.5rem; + .\32xl\:mt-36 { + margin-top: 9rem; } - .\32xl\:mt-16 { - margin-top: 4rem; + .\32xl\:mt-40 { + margin-top: 10rem; } - .\32xl\:mr-16 { - margin-right: 4rem; + .\32xl\:mt-44 { + margin-top: 11rem; } - .\32xl\:mb-16 { - margin-bottom: 4rem; + .\32xl\:mt-48 { + margin-top: 12rem; } - .\32xl\:ml-16 { - margin-left: 4rem; + .\32xl\:mt-52 { + margin-top: 13rem; } - .\32xl\:mt-20 { - margin-top: 5rem; + .\32xl\:mt-56 { + margin-top: 14rem; } - .\32xl\:mr-20 { - margin-right: 5rem; + .\32xl\:mt-60 { + margin-top: 15rem; } - .\32xl\:mb-20 { - margin-bottom: 5rem; + .\32xl\:mt-64 { + margin-top: 16rem; } - .\32xl\:ml-20 { - margin-left: 5rem; + .\32xl\:mt-72 { + margin-top: 18rem; } - .\32xl\:mt-24 { - margin-top: 6rem; + .\32xl\:mt-80 { + margin-top: 20rem; } - .\32xl\:mr-24 { - margin-right: 6rem; + .\32xl\:mt-96 { + margin-top: 24rem; } - .\32xl\:mb-24 { - margin-bottom: 6rem; + .\32xl\:mt-auto { + margin-top: auto; } - .\32xl\:ml-24 { - margin-left: 6rem; + .\32xl\:mt-px { + margin-top: 1px; } - .\32xl\:mt-28 { - margin-top: 7rem; + .\32xl\:mt-0\.5 { + margin-top: 0.125rem; } - .\32xl\:mr-28 { - margin-right: 7rem; + .\32xl\:mt-1\.5 { + margin-top: 0.375rem; } - .\32xl\:mb-28 { - margin-bottom: 7rem; + .\32xl\:mt-2\.5 { + margin-top: 0.625rem; } - .\32xl\:ml-28 { - margin-left: 7rem; + .\32xl\:mt-3\.5 { + margin-top: 0.875rem; } - .\32xl\:mt-32 { - margin-top: 8rem; + .\32xl\:-mt-0 { + margin-top: 0px; } - .\32xl\:mr-32 { - margin-right: 8rem; + .\32xl\:-mt-1 { + margin-top: -0.25rem; } - .\32xl\:mb-32 { - margin-bottom: 8rem; + .\32xl\:-mt-2 { + margin-top: -0.5rem; } - .\32xl\:ml-32 { - margin-left: 8rem; + .\32xl\:-mt-3 { + margin-top: -0.75rem; } - .\32xl\:mt-36 { - margin-top: 9rem; + .\32xl\:-mt-4 { + margin-top: -1rem; } - .\32xl\:mr-36 { - margin-right: 9rem; + .\32xl\:-mt-5 { + margin-top: -1.25rem; } - .\32xl\:mb-36 { - margin-bottom: 9rem; + .\32xl\:-mt-6 { + margin-top: -1.5rem; } - .\32xl\:ml-36 { - margin-left: 9rem; + .\32xl\:-mt-7 { + margin-top: -1.75rem; } - .\32xl\:mt-40 { - margin-top: 10rem; + .\32xl\:-mt-8 { + margin-top: -2rem; } - .\32xl\:mr-40 { - margin-right: 10rem; + .\32xl\:-mt-9 { + margin-top: -2.25rem; } - .\32xl\:mb-40 { - margin-bottom: 10rem; + .\32xl\:-mt-10 { + margin-top: -2.5rem; } - .\32xl\:ml-40 { - margin-left: 10rem; + .\32xl\:-mt-11 { + margin-top: -2.75rem; } - .\32xl\:mt-44 { - margin-top: 11rem; + .\32xl\:-mt-12 { + margin-top: -3rem; } - .\32xl\:mr-44 { - margin-right: 11rem; + .\32xl\:-mt-14 { + margin-top: -3.5rem; } - .\32xl\:mb-44 { - margin-bottom: 11rem; + .\32xl\:-mt-16 { + margin-top: -4rem; } - .\32xl\:ml-44 { - margin-left: 11rem; + .\32xl\:-mt-20 { + margin-top: -5rem; } - .\32xl\:mt-48 { - margin-top: 12rem; + .\32xl\:-mt-24 { + margin-top: -6rem; } - .\32xl\:mr-48 { - margin-right: 12rem; + .\32xl\:-mt-28 { + margin-top: -7rem; } - .\32xl\:mb-48 { - margin-bottom: 12rem; + .\32xl\:-mt-32 { + margin-top: -8rem; } - .\32xl\:ml-48 { - margin-left: 12rem; + .\32xl\:-mt-36 { + margin-top: -9rem; } - .\32xl\:mt-52 { - margin-top: 13rem; + .\32xl\:-mt-40 { + margin-top: -10rem; } - .\32xl\:mr-52 { - margin-right: 13rem; + .\32xl\:-mt-44 { + margin-top: -11rem; } - .\32xl\:mb-52 { - margin-bottom: 13rem; + .\32xl\:-mt-48 { + margin-top: -12rem; } - .\32xl\:ml-52 { - margin-left: 13rem; + .\32xl\:-mt-52 { + margin-top: -13rem; } - .\32xl\:mt-56 { - margin-top: 14rem; + .\32xl\:-mt-56 { + margin-top: -14rem; } - .\32xl\:mr-56 { - margin-right: 14rem; + .\32xl\:-mt-60 { + margin-top: -15rem; } - .\32xl\:mb-56 { - margin-bottom: 14rem; + .\32xl\:-mt-64 { + margin-top: -16rem; } - .\32xl\:ml-56 { - margin-left: 14rem; + .\32xl\:-mt-72 { + margin-top: -18rem; } - .\32xl\:mt-60 { - margin-top: 15rem; + .\32xl\:-mt-80 { + margin-top: -20rem; } - .\32xl\:mr-60 { - margin-right: 15rem; + .\32xl\:-mt-96 { + margin-top: -24rem; } - .\32xl\:mb-60 { - margin-bottom: 15rem; + .\32xl\:-mt-px { + margin-top: -1px; } - .\32xl\:ml-60 { - margin-left: 15rem; + .\32xl\:-mt-0\.5 { + margin-top: -0.125rem; } - .\32xl\:mt-64 { - margin-top: 16rem; + .\32xl\:-mt-1\.5 { + margin-top: -0.375rem; } - .\32xl\:mr-64 { - margin-right: 16rem; + .\32xl\:-mt-2\.5 { + margin-top: -0.625rem; } - .\32xl\:mb-64 { - margin-bottom: 16rem; + .\32xl\:-mt-3\.5 { + margin-top: -0.875rem; } - .\32xl\:ml-64 { - margin-left: 16rem; + .\32xl\:mr-0 { + margin-right: 0px; } - .\32xl\:mt-72 { - margin-top: 18rem; + .\32xl\:mr-1 { + margin-right: 0.25rem; } - .\32xl\:mr-72 { - margin-right: 18rem; + .\32xl\:mr-2 { + margin-right: 0.5rem; } - .\32xl\:mb-72 { - margin-bottom: 18rem; + .\32xl\:mr-3 { + margin-right: 0.75rem; } - .\32xl\:ml-72 { - margin-left: 18rem; + .\32xl\:mr-4 { + margin-right: 1rem; } - .\32xl\:mt-80 { - margin-top: 20rem; + .\32xl\:mr-5 { + margin-right: 1.25rem; } - .\32xl\:mr-80 { - margin-right: 20rem; + .\32xl\:mr-6 { + margin-right: 1.5rem; } - .\32xl\:mb-80 { - margin-bottom: 20rem; + .\32xl\:mr-7 { + margin-right: 1.75rem; } - .\32xl\:ml-80 { - margin-left: 20rem; + .\32xl\:mr-8 { + margin-right: 2rem; } - .\32xl\:mt-96 { - margin-top: 24rem; + .\32xl\:mr-9 { + margin-right: 2.25rem; } - .\32xl\:mr-96 { - margin-right: 24rem; + .\32xl\:mr-10 { + margin-right: 2.5rem; } - .\32xl\:mb-96 { - margin-bottom: 24rem; + .\32xl\:mr-11 { + margin-right: 2.75rem; } - .\32xl\:ml-96 { - margin-left: 24rem; + .\32xl\:mr-12 { + margin-right: 3rem; } - .\32xl\:mt-auto { - margin-top: auto; + .\32xl\:mr-14 { + margin-right: 3.5rem; } - .\32xl\:mr-auto { - margin-right: auto; + .\32xl\:mr-16 { + margin-right: 4rem; } - .\32xl\:mb-auto { - margin-bottom: auto; + .\32xl\:mr-20 { + margin-right: 5rem; } - .\32xl\:ml-auto { - margin-left: auto; + .\32xl\:mr-24 { + margin-right: 6rem; } - .\32xl\:mt-px { - margin-top: 1px; + .\32xl\:mr-28 { + margin-right: 7rem; } - .\32xl\:mr-px { - margin-right: 1px; + .\32xl\:mr-32 { + margin-right: 8rem; } - .\32xl\:mb-px { - margin-bottom: 1px; + .\32xl\:mr-36 { + margin-right: 9rem; } - .\32xl\:ml-px { - margin-left: 1px; + .\32xl\:mr-40 { + margin-right: 10rem; } - .\32xl\:mt-0\.5 { - margin-top: 0.125rem; + .\32xl\:mr-44 { + margin-right: 11rem; } - .\32xl\:mr-0\.5 { - margin-right: 0.125rem; + .\32xl\:mr-48 { + margin-right: 12rem; } - .\32xl\:mb-0\.5 { - margin-bottom: 0.125rem; + .\32xl\:mr-52 { + margin-right: 13rem; } - .\32xl\:ml-0\.5 { - margin-left: 0.125rem; + .\32xl\:mr-56 { + margin-right: 14rem; } - .\32xl\:mt-1\.5 { - margin-top: 0.375rem; + .\32xl\:mr-60 { + margin-right: 15rem; } - .\32xl\:mr-1\.5 { - margin-right: 0.375rem; + .\32xl\:mr-64 { + margin-right: 16rem; } - .\32xl\:mb-1\.5 { - margin-bottom: 0.375rem; + .\32xl\:mr-72 { + margin-right: 18rem; } - .\32xl\:ml-1\.5 { - margin-left: 0.375rem; + .\32xl\:mr-80 { + margin-right: 20rem; } - .\32xl\:mt-2\.5 { - margin-top: 0.625rem; + .\32xl\:mr-96 { + margin-right: 24rem; } - .\32xl\:mr-2\.5 { - margin-right: 0.625rem; + .\32xl\:mr-auto { + margin-right: auto; } - .\32xl\:mb-2\.5 { - margin-bottom: 0.625rem; + .\32xl\:mr-px { + margin-right: 1px; } - .\32xl\:ml-2\.5 { - margin-left: 0.625rem; + .\32xl\:mr-0\.5 { + margin-right: 0.125rem; } - .\32xl\:mt-3\.5 { - margin-top: 0.875rem; + .\32xl\:mr-1\.5 { + margin-right: 0.375rem; + } + + .\32xl\:mr-2\.5 { + margin-right: 0.625rem; } .\32xl\:mr-3\.5 { margin-right: 0.875rem; } - .\32xl\:mb-3\.5 { - margin-bottom: 0.875rem; + .\32xl\:-mr-0 { + margin-right: 0px; } - .\32xl\:ml-3\.5 { - margin-left: 0.875rem; + .\32xl\:-mr-1 { + margin-right: -0.25rem; } - .\32xl\:-mt-0 { - margin-top: 0px; + .\32xl\:-mr-2 { + margin-right: -0.5rem; } - .\32xl\:-mr-0 { - margin-right: 0px; + .\32xl\:-mr-3 { + margin-right: -0.75rem; } - .\32xl\:-mb-0 { + .\32xl\:-mr-4 { + margin-right: -1rem; + } + + .\32xl\:-mr-5 { + margin-right: -1.25rem; + } + + .\32xl\:-mr-6 { + margin-right: -1.5rem; + } + + .\32xl\:-mr-7 { + margin-right: -1.75rem; + } + + .\32xl\:-mr-8 { + margin-right: -2rem; + } + + .\32xl\:-mr-9 { + margin-right: -2.25rem; + } + + .\32xl\:-mr-10 { + margin-right: -2.5rem; + } + + .\32xl\:-mr-11 { + margin-right: -2.75rem; + } + + .\32xl\:-mr-12 { + margin-right: -3rem; + } + + .\32xl\:-mr-14 { + margin-right: -3.5rem; + } + + .\32xl\:-mr-16 { + margin-right: -4rem; + } + + .\32xl\:-mr-20 { + margin-right: -5rem; + } + + .\32xl\:-mr-24 { + margin-right: -6rem; + } + + .\32xl\:-mr-28 { + margin-right: -7rem; + } + + .\32xl\:-mr-32 { + margin-right: -8rem; + } + + .\32xl\:-mr-36 { + margin-right: -9rem; + } + + .\32xl\:-mr-40 { + margin-right: -10rem; + } + + .\32xl\:-mr-44 { + margin-right: -11rem; + } + + .\32xl\:-mr-48 { + margin-right: -12rem; + } + + .\32xl\:-mr-52 { + margin-right: -13rem; + } + + .\32xl\:-mr-56 { + margin-right: -14rem; + } + + .\32xl\:-mr-60 { + margin-right: -15rem; + } + + .\32xl\:-mr-64 { + margin-right: -16rem; + } + + .\32xl\:-mr-72 { + margin-right: -18rem; + } + + .\32xl\:-mr-80 { + margin-right: -20rem; + } + + .\32xl\:-mr-96 { + margin-right: -24rem; + } + + .\32xl\:-mr-px { + margin-right: -1px; + } + + .\32xl\:-mr-0\.5 { + margin-right: -0.125rem; + } + + .\32xl\:-mr-1\.5 { + margin-right: -0.375rem; + } + + .\32xl\:-mr-2\.5 { + margin-right: -0.625rem; + } + + .\32xl\:-mr-3\.5 { + margin-right: -0.875rem; + } + + .\32xl\:mb-0 { margin-bottom: 0px; } - .\32xl\:-ml-0 { - margin-left: 0px; + .\32xl\:mb-1 { + margin-bottom: 0.25rem; } - .\32xl\:-mt-1 { - margin-top: -0.25rem; + .\32xl\:mb-2 { + margin-bottom: 0.5rem; } - .\32xl\:-mr-1 { - margin-right: -0.25rem; + .\32xl\:mb-3 { + margin-bottom: 0.75rem; } - .\32xl\:-mb-1 { - margin-bottom: -0.25rem; + .\32xl\:mb-4 { + margin-bottom: 1rem; } - .\32xl\:-ml-1 { - margin-left: -0.25rem; + .\32xl\:mb-5 { + margin-bottom: 1.25rem; } - .\32xl\:-mt-2 { - margin-top: -0.5rem; + .\32xl\:mb-6 { + margin-bottom: 1.5rem; } - .\32xl\:-mr-2 { - margin-right: -0.5rem; + .\32xl\:mb-7 { + margin-bottom: 1.75rem; } - .\32xl\:-mb-2 { - margin-bottom: -0.5rem; + .\32xl\:mb-8 { + margin-bottom: 2rem; } - .\32xl\:-ml-2 { - margin-left: -0.5rem; + .\32xl\:mb-9 { + margin-bottom: 2.25rem; } - .\32xl\:-mt-3 { - margin-top: -0.75rem; + .\32xl\:mb-10 { + margin-bottom: 2.5rem; } - .\32xl\:-mr-3 { - margin-right: -0.75rem; + .\32xl\:mb-11 { + margin-bottom: 2.75rem; } - .\32xl\:-mb-3 { - margin-bottom: -0.75rem; + .\32xl\:mb-12 { + margin-bottom: 3rem; } - .\32xl\:-ml-3 { - margin-left: -0.75rem; + .\32xl\:mb-14 { + margin-bottom: 3.5rem; } - .\32xl\:-mt-4 { - margin-top: -1rem; + .\32xl\:mb-16 { + margin-bottom: 4rem; } - .\32xl\:-mr-4 { - margin-right: -1rem; + .\32xl\:mb-20 { + margin-bottom: 5rem; } - .\32xl\:-mb-4 { - margin-bottom: -1rem; + .\32xl\:mb-24 { + margin-bottom: 6rem; } - .\32xl\:-ml-4 { - margin-left: -1rem; + .\32xl\:mb-28 { + margin-bottom: 7rem; } - .\32xl\:-mt-5 { - margin-top: -1.25rem; + .\32xl\:mb-32 { + margin-bottom: 8rem; } - .\32xl\:-mr-5 { - margin-right: -1.25rem; + .\32xl\:mb-36 { + margin-bottom: 9rem; } - .\32xl\:-mb-5 { - margin-bottom: -1.25rem; + .\32xl\:mb-40 { + margin-bottom: 10rem; } - .\32xl\:-ml-5 { - margin-left: -1.25rem; + .\32xl\:mb-44 { + margin-bottom: 11rem; } - .\32xl\:-mt-6 { - margin-top: -1.5rem; + .\32xl\:mb-48 { + margin-bottom: 12rem; } - .\32xl\:-mr-6 { - margin-right: -1.5rem; + .\32xl\:mb-52 { + margin-bottom: 13rem; } - .\32xl\:-mb-6 { - margin-bottom: -1.5rem; + .\32xl\:mb-56 { + margin-bottom: 14rem; } - .\32xl\:-ml-6 { - margin-left: -1.5rem; + .\32xl\:mb-60 { + margin-bottom: 15rem; } - .\32xl\:-mt-7 { - margin-top: -1.75rem; + .\32xl\:mb-64 { + margin-bottom: 16rem; } - .\32xl\:-mr-7 { - margin-right: -1.75rem; + .\32xl\:mb-72 { + margin-bottom: 18rem; } - .\32xl\:-mb-7 { - margin-bottom: -1.75rem; + .\32xl\:mb-80 { + margin-bottom: 20rem; } - .\32xl\:-ml-7 { - margin-left: -1.75rem; + .\32xl\:mb-96 { + margin-bottom: 24rem; } - .\32xl\:-mt-8 { - margin-top: -2rem; + .\32xl\:mb-auto { + margin-bottom: auto; } - .\32xl\:-mr-8 { - margin-right: -2rem; + .\32xl\:mb-px { + margin-bottom: 1px; } - .\32xl\:-mb-8 { - margin-bottom: -2rem; + .\32xl\:mb-0\.5 { + margin-bottom: 0.125rem; } - .\32xl\:-ml-8 { - margin-left: -2rem; + .\32xl\:mb-1\.5 { + margin-bottom: 0.375rem; } - .\32xl\:-mt-9 { - margin-top: -2.25rem; + .\32xl\:mb-2\.5 { + margin-bottom: 0.625rem; } - .\32xl\:-mr-9 { - margin-right: -2.25rem; + .\32xl\:mb-3\.5 { + margin-bottom: 0.875rem; } - .\32xl\:-mb-9 { - margin-bottom: -2.25rem; + .\32xl\:-mb-0 { + margin-bottom: 0px; } - .\32xl\:-ml-9 { - margin-left: -2.25rem; + .\32xl\:-mb-1 { + margin-bottom: -0.25rem; } - .\32xl\:-mt-10 { - margin-top: -2.5rem; + .\32xl\:-mb-2 { + margin-bottom: -0.5rem; } - .\32xl\:-mr-10 { - margin-right: -2.5rem; + .\32xl\:-mb-3 { + margin-bottom: -0.75rem; } - .\32xl\:-mb-10 { - margin-bottom: -2.5rem; + .\32xl\:-mb-4 { + margin-bottom: -1rem; } - .\32xl\:-ml-10 { - margin-left: -2.5rem; + .\32xl\:-mb-5 { + margin-bottom: -1.25rem; } - .\32xl\:-mt-11 { - margin-top: -2.75rem; + .\32xl\:-mb-6 { + margin-bottom: -1.5rem; } - .\32xl\:-mr-11 { - margin-right: -2.75rem; + .\32xl\:-mb-7 { + margin-bottom: -1.75rem; } - .\32xl\:-mb-11 { - margin-bottom: -2.75rem; + .\32xl\:-mb-8 { + margin-bottom: -2rem; } - .\32xl\:-ml-11 { - margin-left: -2.75rem; + .\32xl\:-mb-9 { + margin-bottom: -2.25rem; } - .\32xl\:-mt-12 { - margin-top: -3rem; + .\32xl\:-mb-10 { + margin-bottom: -2.5rem; } - .\32xl\:-mr-12 { - margin-right: -3rem; + .\32xl\:-mb-11 { + margin-bottom: -2.75rem; } .\32xl\:-mb-12 { margin-bottom: -3rem; } - .\32xl\:-ml-12 { - margin-left: -3rem; + .\32xl\:-mb-14 { + margin-bottom: -3.5rem; } - .\32xl\:-mt-14 { - margin-top: -3.5rem; + .\32xl\:-mb-16 { + margin-bottom: -4rem; } - .\32xl\:-mr-14 { - margin-right: -3.5rem; + .\32xl\:-mb-20 { + margin-bottom: -5rem; } - .\32xl\:-mb-14 { - margin-bottom: -3.5rem; + .\32xl\:-mb-24 { + margin-bottom: -6rem; } - .\32xl\:-ml-14 { - margin-left: -3.5rem; + .\32xl\:-mb-28 { + margin-bottom: -7rem; } - .\32xl\:-mt-16 { - margin-top: -4rem; + .\32xl\:-mb-32 { + margin-bottom: -8rem; } - .\32xl\:-mr-16 { - margin-right: -4rem; + .\32xl\:-mb-36 { + margin-bottom: -9rem; } - .\32xl\:-mb-16 { - margin-bottom: -4rem; + .\32xl\:-mb-40 { + margin-bottom: -10rem; } - .\32xl\:-ml-16 { - margin-left: -4rem; + .\32xl\:-mb-44 { + margin-bottom: -11rem; } - .\32xl\:-mt-20 { - margin-top: -5rem; + .\32xl\:-mb-48 { + margin-bottom: -12rem; } - .\32xl\:-mr-20 { - margin-right: -5rem; + .\32xl\:-mb-52 { + margin-bottom: -13rem; } - .\32xl\:-mb-20 { - margin-bottom: -5rem; + .\32xl\:-mb-56 { + margin-bottom: -14rem; } - .\32xl\:-ml-20 { - margin-left: -5rem; + .\32xl\:-mb-60 { + margin-bottom: -15rem; } - .\32xl\:-mt-24 { - margin-top: -6rem; + .\32xl\:-mb-64 { + margin-bottom: -16rem; } - .\32xl\:-mr-24 { - margin-right: -6rem; + .\32xl\:-mb-72 { + margin-bottom: -18rem; } - .\32xl\:-mb-24 { - margin-bottom: -6rem; + .\32xl\:-mb-80 { + margin-bottom: -20rem; } - .\32xl\:-ml-24 { - margin-left: -6rem; + .\32xl\:-mb-96 { + margin-bottom: -24rem; } - .\32xl\:-mt-28 { - margin-top: -7rem; + .\32xl\:-mb-px { + margin-bottom: -1px; } - .\32xl\:-mr-28 { - margin-right: -7rem; + .\32xl\:-mb-0\.5 { + margin-bottom: -0.125rem; } - .\32xl\:-mb-28 { - margin-bottom: -7rem; + .\32xl\:-mb-1\.5 { + margin-bottom: -0.375rem; } - .\32xl\:-ml-28 { - margin-left: -7rem; + .\32xl\:-mb-2\.5 { + margin-bottom: -0.625rem; } - .\32xl\:-mt-32 { - margin-top: -8rem; + .\32xl\:-mb-3\.5 { + margin-bottom: -0.875rem; } - .\32xl\:-mr-32 { - margin-right: -8rem; + .\32xl\:ml-0 { + margin-left: 0px; } - .\32xl\:-mb-32 { - margin-bottom: -8rem; + .\32xl\:ml-1 { + margin-left: 0.25rem; } - .\32xl\:-ml-32 { - margin-left: -8rem; + .\32xl\:ml-2 { + margin-left: 0.5rem; } - .\32xl\:-mt-36 { - margin-top: -9rem; + .\32xl\:ml-3 { + margin-left: 0.75rem; } - .\32xl\:-mr-36 { - margin-right: -9rem; + .\32xl\:ml-4 { + margin-left: 1rem; } - .\32xl\:-mb-36 { - margin-bottom: -9rem; + .\32xl\:ml-5 { + margin-left: 1.25rem; } - .\32xl\:-ml-36 { - margin-left: -9rem; + .\32xl\:ml-6 { + margin-left: 1.5rem; } - .\32xl\:-mt-40 { - margin-top: -10rem; + .\32xl\:ml-7 { + margin-left: 1.75rem; } - .\32xl\:-mr-40 { - margin-right: -10rem; + .\32xl\:ml-8 { + margin-left: 2rem; } - .\32xl\:-mb-40 { - margin-bottom: -10rem; + .\32xl\:ml-9 { + margin-left: 2.25rem; } - .\32xl\:-ml-40 { - margin-left: -10rem; + .\32xl\:ml-10 { + margin-left: 2.5rem; } - .\32xl\:-mt-44 { - margin-top: -11rem; + .\32xl\:ml-11 { + margin-left: 2.75rem; } - .\32xl\:-mr-44 { - margin-right: -11rem; + .\32xl\:ml-12 { + margin-left: 3rem; } - .\32xl\:-mb-44 { - margin-bottom: -11rem; + .\32xl\:ml-14 { + margin-left: 3.5rem; } - .\32xl\:-ml-44 { - margin-left: -11rem; + .\32xl\:ml-16 { + margin-left: 4rem; } - .\32xl\:-mt-48 { - margin-top: -12rem; + .\32xl\:ml-20 { + margin-left: 5rem; } - .\32xl\:-mr-48 { - margin-right: -12rem; + .\32xl\:ml-24 { + margin-left: 6rem; } - .\32xl\:-mb-48 { - margin-bottom: -12rem; + .\32xl\:ml-28 { + margin-left: 7rem; } - .\32xl\:-ml-48 { - margin-left: -12rem; + .\32xl\:ml-32 { + margin-left: 8rem; } - .\32xl\:-mt-52 { - margin-top: -13rem; + .\32xl\:ml-36 { + margin-left: 9rem; } - .\32xl\:-mr-52 { - margin-right: -13rem; + .\32xl\:ml-40 { + margin-left: 10rem; } - .\32xl\:-mb-52 { - margin-bottom: -13rem; + .\32xl\:ml-44 { + margin-left: 11rem; } - .\32xl\:-ml-52 { - margin-left: -13rem; + .\32xl\:ml-48 { + margin-left: 12rem; } - .\32xl\:-mt-56 { - margin-top: -14rem; + .\32xl\:ml-52 { + margin-left: 13rem; } - .\32xl\:-mr-56 { - margin-right: -14rem; + .\32xl\:ml-56 { + margin-left: 14rem; } - .\32xl\:-mb-56 { - margin-bottom: -14rem; + .\32xl\:ml-60 { + margin-left: 15rem; } - .\32xl\:-ml-56 { - margin-left: -14rem; + .\32xl\:ml-64 { + margin-left: 16rem; } - .\32xl\:-mt-60 { - margin-top: -15rem; + .\32xl\:ml-72 { + margin-left: 18rem; } - .\32xl\:-mr-60 { - margin-right: -15rem; + .\32xl\:ml-80 { + margin-left: 20rem; } - .\32xl\:-mb-60 { - margin-bottom: -15rem; + .\32xl\:ml-96 { + margin-left: 24rem; } - .\32xl\:-ml-60 { - margin-left: -15rem; + .\32xl\:ml-auto { + margin-left: auto; } - .\32xl\:-mt-64 { - margin-top: -16rem; + .\32xl\:ml-px { + margin-left: 1px; } - .\32xl\:-mr-64 { - margin-right: -16rem; + .\32xl\:ml-0\.5 { + margin-left: 0.125rem; } - .\32xl\:-mb-64 { - margin-bottom: -16rem; + .\32xl\:ml-1\.5 { + margin-left: 0.375rem; } - .\32xl\:-ml-64 { - margin-left: -16rem; + .\32xl\:ml-2\.5 { + margin-left: 0.625rem; } - .\32xl\:-mt-72 { - margin-top: -18rem; + .\32xl\:ml-3\.5 { + margin-left: 0.875rem; } - .\32xl\:-mr-72 { - margin-right: -18rem; + .\32xl\:-ml-0 { + margin-left: 0px; } - .\32xl\:-mb-72 { - margin-bottom: -18rem; + .\32xl\:-ml-1 { + margin-left: -0.25rem; } - .\32xl\:-ml-72 { - margin-left: -18rem; + .\32xl\:-ml-2 { + margin-left: -0.5rem; } - .\32xl\:-mt-80 { - margin-top: -20rem; + .\32xl\:-ml-3 { + margin-left: -0.75rem; } - .\32xl\:-mr-80 { - margin-right: -20rem; + .\32xl\:-ml-4 { + margin-left: -1rem; } - .\32xl\:-mb-80 { - margin-bottom: -20rem; + .\32xl\:-ml-5 { + margin-left: -1.25rem; } - .\32xl\:-ml-80 { - margin-left: -20rem; + .\32xl\:-ml-6 { + margin-left: -1.5rem; } - .\32xl\:-mt-96 { - margin-top: -24rem; + .\32xl\:-ml-7 { + margin-left: -1.75rem; } - .\32xl\:-mr-96 { - margin-right: -24rem; + .\32xl\:-ml-8 { + margin-left: -2rem; } - .\32xl\:-mb-96 { - margin-bottom: -24rem; + .\32xl\:-ml-9 { + margin-left: -2.25rem; } - .\32xl\:-ml-96 { - margin-left: -24rem; + .\32xl\:-ml-10 { + margin-left: -2.5rem; } - .\32xl\:-mt-px { - margin-top: -1px; + .\32xl\:-ml-11 { + margin-left: -2.75rem; } - .\32xl\:-mr-px { - margin-right: -1px; + .\32xl\:-ml-12 { + margin-left: -3rem; } - .\32xl\:-mb-px { - margin-bottom: -1px; + .\32xl\:-ml-14 { + margin-left: -3.5rem; } - .\32xl\:-ml-px { - margin-left: -1px; + .\32xl\:-ml-16 { + margin-left: -4rem; } - .\32xl\:-mt-0\.5 { - margin-top: -0.125rem; + .\32xl\:-ml-20 { + margin-left: -5rem; } - .\32xl\:-mr-0\.5 { - margin-right: -0.125rem; + .\32xl\:-ml-24 { + margin-left: -6rem; } - .\32xl\:-mb-0\.5 { - margin-bottom: -0.125rem; + .\32xl\:-ml-28 { + margin-left: -7rem; } - .\32xl\:-ml-0\.5 { - margin-left: -0.125rem; + .\32xl\:-ml-32 { + margin-left: -8rem; } - .\32xl\:-mt-1\.5 { - margin-top: -0.375rem; + .\32xl\:-ml-36 { + margin-left: -9rem; } - .\32xl\:-mr-1\.5 { - margin-right: -0.375rem; + .\32xl\:-ml-40 { + margin-left: -10rem; } - .\32xl\:-mb-1\.5 { - margin-bottom: -0.375rem; + .\32xl\:-ml-44 { + margin-left: -11rem; } - .\32xl\:-ml-1\.5 { - margin-left: -0.375rem; + .\32xl\:-ml-48 { + margin-left: -12rem; } - .\32xl\:-mt-2\.5 { - margin-top: -0.625rem; + .\32xl\:-ml-52 { + margin-left: -13rem; } - .\32xl\:-mr-2\.5 { - margin-right: -0.625rem; + .\32xl\:-ml-56 { + margin-left: -14rem; } - .\32xl\:-mb-2\.5 { - margin-bottom: -0.625rem; + .\32xl\:-ml-60 { + margin-left: -15rem; } - .\32xl\:-ml-2\.5 { - margin-left: -0.625rem; + .\32xl\:-ml-64 { + margin-left: -16rem; } - .\32xl\:-mt-3\.5 { - margin-top: -0.875rem; + .\32xl\:-ml-72 { + margin-left: -18rem; } - .\32xl\:-mr-3\.5 { - margin-right: -0.875rem; + .\32xl\:-ml-80 { + margin-left: -20rem; } - .\32xl\:-mb-3\.5 { - margin-bottom: -0.875rem; + .\32xl\:-ml-96 { + margin-left: -24rem; + } + + .\32xl\:-ml-px { + margin-left: -1px; + } + + .\32xl\:-ml-0\.5 { + margin-left: -0.125rem; + } + + .\32xl\:-ml-1\.5 { + margin-left: -0.375rem; + } + + .\32xl\:-ml-2\.5 { + margin-left: -0.625rem; } .\32xl\:-ml-3\.5 { diff --git a/__tests__/fixtures/tailwind-output.css b/__tests__/fixtures/tailwind-output.css index 02c2ca013c6f..fdf525ddec3c 100644 --- a/__tests__/fixtures/tailwind-output.css +++ b/__tests__/fixtures/tailwind-output.css @@ -11905,1848 +11905,1848 @@ video { margin: -0.875rem; } -.my-0 { - margin-top: 0px; - margin-bottom: 0px; -} - .mx-0 { margin-left: 0px; margin-right: 0px; } -.my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; -} - .mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; } -.my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; -} - .mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; } -.my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; -} - .mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; } -.my-4 { - margin-top: 1rem; - margin-bottom: 1rem; -} - .mx-4 { margin-left: 1rem; margin-right: 1rem; } -.my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; -} - .mx-5 { margin-left: 1.25rem; margin-right: 1.25rem; } -.my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; -} - .mx-6 { margin-left: 1.5rem; margin-right: 1.5rem; } -.my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; -} - .mx-7 { margin-left: 1.75rem; margin-right: 1.75rem; } -.my-8 { - margin-top: 2rem; - margin-bottom: 2rem; -} - .mx-8 { margin-left: 2rem; margin-right: 2rem; } -.my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; -} - .mx-9 { margin-left: 2.25rem; margin-right: 2.25rem; } -.my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; -} - .mx-10 { margin-left: 2.5rem; margin-right: 2.5rem; } -.my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; -} - .mx-11 { margin-left: 2.75rem; margin-right: 2.75rem; } -.my-12 { - margin-top: 3rem; - margin-bottom: 3rem; -} - .mx-12 { margin-left: 3rem; margin-right: 3rem; } -.my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; -} - .mx-14 { margin-left: 3.5rem; margin-right: 3.5rem; } -.my-16 { - margin-top: 4rem; - margin-bottom: 4rem; -} - .mx-16 { margin-left: 4rem; margin-right: 4rem; } -.my-20 { - margin-top: 5rem; - margin-bottom: 5rem; -} - .mx-20 { margin-left: 5rem; margin-right: 5rem; } -.my-24 { - margin-top: 6rem; - margin-bottom: 6rem; -} - .mx-24 { margin-left: 6rem; margin-right: 6rem; } -.my-28 { - margin-top: 7rem; - margin-bottom: 7rem; -} - .mx-28 { margin-left: 7rem; margin-right: 7rem; } -.my-32 { - margin-top: 8rem; - margin-bottom: 8rem; -} - .mx-32 { margin-left: 8rem; margin-right: 8rem; } -.my-36 { - margin-top: 9rem; - margin-bottom: 9rem; -} - .mx-36 { margin-left: 9rem; margin-right: 9rem; } -.my-40 { - margin-top: 10rem; - margin-bottom: 10rem; -} - .mx-40 { margin-left: 10rem; margin-right: 10rem; } -.my-44 { - margin-top: 11rem; - margin-bottom: 11rem; -} - .mx-44 { margin-left: 11rem; margin-right: 11rem; } -.my-48 { - margin-top: 12rem; - margin-bottom: 12rem; -} - .mx-48 { margin-left: 12rem; margin-right: 12rem; } -.my-52 { - margin-top: 13rem; - margin-bottom: 13rem; -} - .mx-52 { margin-left: 13rem; margin-right: 13rem; } -.my-56 { - margin-top: 14rem; - margin-bottom: 14rem; -} - .mx-56 { margin-left: 14rem; margin-right: 14rem; } -.my-60 { - margin-top: 15rem; - margin-bottom: 15rem; -} - .mx-60 { margin-left: 15rem; margin-right: 15rem; } -.my-64 { - margin-top: 16rem; - margin-bottom: 16rem; -} - .mx-64 { margin-left: 16rem; margin-right: 16rem; } -.my-72 { - margin-top: 18rem; - margin-bottom: 18rem; -} - .mx-72 { margin-left: 18rem; margin-right: 18rem; } -.my-80 { - margin-top: 20rem; - margin-bottom: 20rem; -} - .mx-80 { margin-left: 20rem; margin-right: 20rem; } -.my-96 { - margin-top: 24rem; - margin-bottom: 24rem; -} - .mx-96 { margin-left: 24rem; margin-right: 24rem; } -.my-auto { - margin-top: auto; - margin-bottom: auto; -} - .mx-auto { margin-left: auto; margin-right: auto; } -.my-px { - margin-top: 1px; - margin-bottom: 1px; -} - .mx-px { margin-left: 1px; margin-right: 1px; } -.my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; -} - .mx-0\.5 { margin-left: 0.125rem; margin-right: 0.125rem; } -.my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; -} - .mx-1\.5 { margin-left: 0.375rem; margin-right: 0.375rem; } -.my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; -} - .mx-2\.5 { margin-left: 0.625rem; margin-right: 0.625rem; } -.my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; -} - .mx-3\.5 { margin-left: 0.875rem; margin-right: 0.875rem; } -.-my-0 { - margin-top: 0px; - margin-bottom: 0px; -} - .-mx-0 { margin-left: 0px; margin-right: 0px; } -.-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; -} - .-mx-1 { margin-left: -0.25rem; margin-right: -0.25rem; } -.-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; -} - .-mx-2 { margin-left: -0.5rem; margin-right: -0.5rem; } -.-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; -} - .-mx-3 { margin-left: -0.75rem; margin-right: -0.75rem; } -.-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; -} - .-mx-4 { margin-left: -1rem; margin-right: -1rem; } -.-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; -} - .-mx-5 { margin-left: -1.25rem; margin-right: -1.25rem; } -.-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; -} - .-mx-6 { margin-left: -1.5rem; margin-right: -1.5rem; } -.-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; -} - .-mx-7 { margin-left: -1.75rem; margin-right: -1.75rem; } -.-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; -} - .-mx-8 { margin-left: -2rem; margin-right: -2rem; } -.-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; -} - .-mx-9 { margin-left: -2.25rem; margin-right: -2.25rem; } -.-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; -} - .-mx-10 { margin-left: -2.5rem; margin-right: -2.5rem; } -.-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; -} - .-mx-11 { margin-left: -2.75rem; margin-right: -2.75rem; } -.-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; -} - .-mx-12 { margin-left: -3rem; margin-right: -3rem; } -.-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; -} - .-mx-14 { margin-left: -3.5rem; margin-right: -3.5rem; } -.-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; -} - .-mx-16 { margin-left: -4rem; margin-right: -4rem; } -.-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; -} - .-mx-20 { margin-left: -5rem; margin-right: -5rem; } -.-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; -} - .-mx-24 { margin-left: -6rem; margin-right: -6rem; } -.-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; -} - .-mx-28 { margin-left: -7rem; margin-right: -7rem; } -.-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; -} - .-mx-32 { margin-left: -8rem; margin-right: -8rem; } -.-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; -} - .-mx-36 { margin-left: -9rem; margin-right: -9rem; } -.-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; -} - .-mx-40 { margin-left: -10rem; margin-right: -10rem; } -.-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; -} - .-mx-44 { margin-left: -11rem; margin-right: -11rem; } -.-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; -} - .-mx-48 { margin-left: -12rem; margin-right: -12rem; } -.-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; -} - .-mx-52 { margin-left: -13rem; margin-right: -13rem; } -.-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; -} - .-mx-56 { margin-left: -14rem; margin-right: -14rem; } -.-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; -} - .-mx-60 { margin-left: -15rem; margin-right: -15rem; } -.-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; -} - .-mx-64 { margin-left: -16rem; margin-right: -16rem; } -.-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; -} - .-mx-72 { margin-left: -18rem; margin-right: -18rem; } -.-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; -} - .-mx-80 { margin-left: -20rem; margin-right: -20rem; } -.-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; -} - .-mx-96 { margin-left: -24rem; margin-right: -24rem; } -.-my-px { - margin-top: -1px; - margin-bottom: -1px; -} - .-mx-px { margin-left: -1px; margin-right: -1px; } -.-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; -} - .-mx-0\.5 { margin-left: -0.125rem; margin-right: -0.125rem; } -.-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; -} - .-mx-1\.5 { margin-left: -0.375rem; margin-right: -0.375rem; } -.-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; -} - .-mx-2\.5 { margin-left: -0.625rem; margin-right: -0.625rem; } -.-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; -} - .-mx-3\.5 { margin-left: -0.875rem; margin-right: -0.875rem; } -.mt-0 { +.my-0 { margin-top: 0px; + margin-bottom: 0px; } -.mr-0 { - margin-right: 0px; -} - -.mb-0 { - margin-bottom: 0px; +.my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } -.ml-0 { - margin-left: 0px; +.my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; } -.mt-1 { - margin-top: 0.25rem; +.my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; } -.mr-1 { - margin-right: 0.25rem; +.my-4 { + margin-top: 1rem; + margin-bottom: 1rem; } -.mb-1 { - margin-bottom: 0.25rem; +.my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; } -.ml-1 { - margin-left: 0.25rem; +.my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; } -.mt-2 { - margin-top: 0.5rem; +.my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; } -.mr-2 { - margin-right: 0.5rem; +.my-8 { + margin-top: 2rem; + margin-bottom: 2rem; } -.mb-2 { - margin-bottom: 0.5rem; +.my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; } -.ml-2 { - margin-left: 0.5rem; +.my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; } -.mt-3 { - margin-top: 0.75rem; +.my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; } -.mr-3 { - margin-right: 0.75rem; +.my-12 { + margin-top: 3rem; + margin-bottom: 3rem; } -.mb-3 { - margin-bottom: 0.75rem; +.my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; } -.ml-3 { - margin-left: 0.75rem; +.my-16 { + margin-top: 4rem; + margin-bottom: 4rem; } -.mt-4 { - margin-top: 1rem; +.my-20 { + margin-top: 5rem; + margin-bottom: 5rem; } -.mr-4 { - margin-right: 1rem; +.my-24 { + margin-top: 6rem; + margin-bottom: 6rem; } -.mb-4 { - margin-bottom: 1rem; +.my-28 { + margin-top: 7rem; + margin-bottom: 7rem; } -.ml-4 { - margin-left: 1rem; +.my-32 { + margin-top: 8rem; + margin-bottom: 8rem; } -.mt-5 { - margin-top: 1.25rem; +.my-36 { + margin-top: 9rem; + margin-bottom: 9rem; } -.mr-5 { - margin-right: 1.25rem; +.my-40 { + margin-top: 10rem; + margin-bottom: 10rem; } -.mb-5 { - margin-bottom: 1.25rem; +.my-44 { + margin-top: 11rem; + margin-bottom: 11rem; } -.ml-5 { - margin-left: 1.25rem; +.my-48 { + margin-top: 12rem; + margin-bottom: 12rem; } -.mt-6 { - margin-top: 1.5rem; +.my-52 { + margin-top: 13rem; + margin-bottom: 13rem; } -.mr-6 { - margin-right: 1.5rem; +.my-56 { + margin-top: 14rem; + margin-bottom: 14rem; } -.mb-6 { - margin-bottom: 1.5rem; +.my-60 { + margin-top: 15rem; + margin-bottom: 15rem; } -.ml-6 { - margin-left: 1.5rem; +.my-64 { + margin-top: 16rem; + margin-bottom: 16rem; } -.mt-7 { - margin-top: 1.75rem; +.my-72 { + margin-top: 18rem; + margin-bottom: 18rem; } -.mr-7 { - margin-right: 1.75rem; +.my-80 { + margin-top: 20rem; + margin-bottom: 20rem; } -.mb-7 { - margin-bottom: 1.75rem; +.my-96 { + margin-top: 24rem; + margin-bottom: 24rem; } -.ml-7 { - margin-left: 1.75rem; +.my-auto { + margin-top: auto; + margin-bottom: auto; } -.mt-8 { - margin-top: 2rem; +.my-px { + margin-top: 1px; + margin-bottom: 1px; } -.mr-8 { - margin-right: 2rem; +.my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; } -.mb-8 { - margin-bottom: 2rem; +.my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; } -.ml-8 { - margin-left: 2rem; +.my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; } -.mt-9 { - margin-top: 2.25rem; +.my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; } -.mr-9 { - margin-right: 2.25rem; +.-my-0 { + margin-top: 0px; + margin-bottom: 0px; } -.mb-9 { - margin-bottom: 2.25rem; +.-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } -.ml-9 { - margin-left: 2.25rem; +.-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } -.mt-10 { - margin-top: 2.5rem; +.-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } -.mr-10 { - margin-right: 2.5rem; +.-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } -.mb-10 { - margin-bottom: 2.5rem; +.-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } -.ml-10 { - margin-left: 2.5rem; +.-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } -.mt-11 { - margin-top: 2.75rem; +.-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } -.mr-11 { - margin-right: 2.75rem; +.-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } -.mb-11 { - margin-bottom: 2.75rem; +.-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } -.ml-11 { - margin-left: 2.75rem; +.-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } -.mt-12 { - margin-top: 3rem; +.-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } -.mr-12 { - margin-right: 3rem; +.-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } -.mb-12 { - margin-bottom: 3rem; +.-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } -.ml-12 { - margin-left: 3rem; +.-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } -.mt-14 { - margin-top: 3.5rem; +.-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } -.mr-14 { - margin-right: 3.5rem; +.-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } -.mb-14 { - margin-bottom: 3.5rem; +.-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } -.ml-14 { - margin-left: 3.5rem; +.-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } -.mt-16 { - margin-top: 4rem; +.-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } -.mr-16 { - margin-right: 4rem; +.-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } -.mb-16 { - margin-bottom: 4rem; +.-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } -.ml-16 { - margin-left: 4rem; +.-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } -.mt-20 { - margin-top: 5rem; +.-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } -.mr-20 { - margin-right: 5rem; +.-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } -.mb-20 { - margin-bottom: 5rem; +.-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } -.ml-20 { - margin-left: 5rem; +.-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } -.mt-24 { - margin-top: 6rem; +.-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } -.mr-24 { - margin-right: 6rem; +.-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } -.mb-24 { - margin-bottom: 6rem; +.-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } -.ml-24 { - margin-left: 6rem; +.-my-px { + margin-top: -1px; + margin-bottom: -1px; } -.mt-28 { - margin-top: 7rem; +.-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } -.mr-28 { - margin-right: 7rem; +.-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } -.mb-28 { - margin-bottom: 7rem; +.-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } -.ml-28 { - margin-left: 7rem; +.-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } -.mt-32 { - margin-top: 8rem; +.mt-0 { + margin-top: 0px; } -.mr-32 { - margin-right: 8rem; +.mt-1 { + margin-top: 0.25rem; } -.mb-32 { - margin-bottom: 8rem; +.mt-2 { + margin-top: 0.5rem; } -.ml-32 { - margin-left: 8rem; +.mt-3 { + margin-top: 0.75rem; } -.mt-36 { - margin-top: 9rem; +.mt-4 { + margin-top: 1rem; } -.mr-36 { - margin-right: 9rem; +.mt-5 { + margin-top: 1.25rem; } -.mb-36 { - margin-bottom: 9rem; +.mt-6 { + margin-top: 1.5rem; } -.ml-36 { - margin-left: 9rem; +.mt-7 { + margin-top: 1.75rem; } -.mt-40 { - margin-top: 10rem; +.mt-8 { + margin-top: 2rem; } -.mr-40 { - margin-right: 10rem; +.mt-9 { + margin-top: 2.25rem; } -.mb-40 { - margin-bottom: 10rem; +.mt-10 { + margin-top: 2.5rem; } -.ml-40 { - margin-left: 10rem; +.mt-11 { + margin-top: 2.75rem; } -.mt-44 { - margin-top: 11rem; +.mt-12 { + margin-top: 3rem; } -.mr-44 { - margin-right: 11rem; +.mt-14 { + margin-top: 3.5rem; } -.mb-44 { - margin-bottom: 11rem; +.mt-16 { + margin-top: 4rem; } -.ml-44 { - margin-left: 11rem; +.mt-20 { + margin-top: 5rem; } -.mt-48 { - margin-top: 12rem; +.mt-24 { + margin-top: 6rem; } -.mr-48 { - margin-right: 12rem; +.mt-28 { + margin-top: 7rem; } -.mb-48 { - margin-bottom: 12rem; +.mt-32 { + margin-top: 8rem; } -.ml-48 { - margin-left: 12rem; +.mt-36 { + margin-top: 9rem; } -.mt-52 { - margin-top: 13rem; +.mt-40 { + margin-top: 10rem; } -.mr-52 { - margin-right: 13rem; +.mt-44 { + margin-top: 11rem; } -.mb-52 { - margin-bottom: 13rem; +.mt-48 { + margin-top: 12rem; } -.ml-52 { - margin-left: 13rem; +.mt-52 { + margin-top: 13rem; } .mt-56 { margin-top: 14rem; } -.mr-56 { - margin-right: 14rem; +.mt-60 { + margin-top: 15rem; } -.mb-56 { - margin-bottom: 14rem; +.mt-64 { + margin-top: 16rem; } -.ml-56 { - margin-left: 14rem; +.mt-72 { + margin-top: 18rem; } -.mt-60 { - margin-top: 15rem; +.mt-80 { + margin-top: 20rem; } -.mr-60 { - margin-right: 15rem; +.mt-96 { + margin-top: 24rem; } -.mb-60 { - margin-bottom: 15rem; +.mt-auto { + margin-top: auto; } -.ml-60 { - margin-left: 15rem; +.mt-px { + margin-top: 1px; } -.mt-64 { - margin-top: 16rem; +.mt-0\.5 { + margin-top: 0.125rem; } -.mr-64 { - margin-right: 16rem; +.mt-1\.5 { + margin-top: 0.375rem; } -.mb-64 { - margin-bottom: 16rem; +.mt-2\.5 { + margin-top: 0.625rem; } -.ml-64 { - margin-left: 16rem; +.mt-3\.5 { + margin-top: 0.875rem; } -.mt-72 { - margin-top: 18rem; +.-mt-0 { + margin-top: 0px; } -.mr-72 { - margin-right: 18rem; +.-mt-1 { + margin-top: -0.25rem; } -.mb-72 { - margin-bottom: 18rem; +.-mt-2 { + margin-top: -0.5rem; } -.ml-72 { - margin-left: 18rem; +.-mt-3 { + margin-top: -0.75rem; } -.mt-80 { - margin-top: 20rem; +.-mt-4 { + margin-top: -1rem; } -.mr-80 { - margin-right: 20rem; +.-mt-5 { + margin-top: -1.25rem; } -.mb-80 { - margin-bottom: 20rem; +.-mt-6 { + margin-top: -1.5rem; } -.ml-80 { - margin-left: 20rem; +.-mt-7 { + margin-top: -1.75rem; } -.mt-96 { - margin-top: 24rem; +.-mt-8 { + margin-top: -2rem; } -.mr-96 { - margin-right: 24rem; +.-mt-9 { + margin-top: -2.25rem; } -.mb-96 { - margin-bottom: 24rem; +.-mt-10 { + margin-top: -2.5rem; } -.ml-96 { - margin-left: 24rem; +.-mt-11 { + margin-top: -2.75rem; } -.mt-auto { - margin-top: auto; +.-mt-12 { + margin-top: -3rem; } -.mr-auto { - margin-right: auto; +.-mt-14 { + margin-top: -3.5rem; } -.mb-auto { - margin-bottom: auto; +.-mt-16 { + margin-top: -4rem; } -.ml-auto { - margin-left: auto; +.-mt-20 { + margin-top: -5rem; } -.mt-px { - margin-top: 1px; +.-mt-24 { + margin-top: -6rem; } -.mr-px { - margin-right: 1px; +.-mt-28 { + margin-top: -7rem; } -.mb-px { - margin-bottom: 1px; +.-mt-32 { + margin-top: -8rem; } -.ml-px { - margin-left: 1px; +.-mt-36 { + margin-top: -9rem; } -.mt-0\.5 { - margin-top: 0.125rem; +.-mt-40 { + margin-top: -10rem; } -.mr-0\.5 { - margin-right: 0.125rem; +.-mt-44 { + margin-top: -11rem; } -.mb-0\.5 { - margin-bottom: 0.125rem; +.-mt-48 { + margin-top: -12rem; } -.ml-0\.5 { - margin-left: 0.125rem; +.-mt-52 { + margin-top: -13rem; } -.mt-1\.5 { - margin-top: 0.375rem; +.-mt-56 { + margin-top: -14rem; } -.mr-1\.5 { - margin-right: 0.375rem; +.-mt-60 { + margin-top: -15rem; } -.mb-1\.5 { - margin-bottom: 0.375rem; +.-mt-64 { + margin-top: -16rem; } -.ml-1\.5 { - margin-left: 0.375rem; +.-mt-72 { + margin-top: -18rem; } -.mt-2\.5 { - margin-top: 0.625rem; +.-mt-80 { + margin-top: -20rem; } -.mr-2\.5 { - margin-right: 0.625rem; +.-mt-96 { + margin-top: -24rem; } -.mb-2\.5 { - margin-bottom: 0.625rem; +.-mt-px { + margin-top: -1px; } -.ml-2\.5 { - margin-left: 0.625rem; +.-mt-0\.5 { + margin-top: -0.125rem; } -.mt-3\.5 { - margin-top: 0.875rem; +.-mt-1\.5 { + margin-top: -0.375rem; } -.mr-3\.5 { - margin-right: 0.875rem; +.-mt-2\.5 { + margin-top: -0.625rem; } -.mb-3\.5 { - margin-bottom: 0.875rem; +.-mt-3\.5 { + margin-top: -0.875rem; } -.ml-3\.5 { - margin-left: 0.875rem; +.mr-0 { + margin-right: 0px; } -.-mt-0 { - margin-top: 0px; +.mr-1 { + margin-right: 0.25rem; } -.-mr-0 { - margin-right: 0px; +.mr-2 { + margin-right: 0.5rem; } -.-mb-0 { - margin-bottom: 0px; +.mr-3 { + margin-right: 0.75rem; } -.-ml-0 { - margin-left: 0px; +.mr-4 { + margin-right: 1rem; } -.-mt-1 { - margin-top: -0.25rem; +.mr-5 { + margin-right: 1.25rem; } -.-mr-1 { - margin-right: -0.25rem; +.mr-6 { + margin-right: 1.5rem; } -.-mb-1 { - margin-bottom: -0.25rem; +.mr-7 { + margin-right: 1.75rem; } -.-ml-1 { - margin-left: -0.25rem; +.mr-8 { + margin-right: 2rem; } -.-mt-2 { - margin-top: -0.5rem; +.mr-9 { + margin-right: 2.25rem; } -.-mr-2 { - margin-right: -0.5rem; +.mr-10 { + margin-right: 2.5rem; } -.-mb-2 { - margin-bottom: -0.5rem; +.mr-11 { + margin-right: 2.75rem; } -.-ml-2 { - margin-left: -0.5rem; +.mr-12 { + margin-right: 3rem; } -.-mt-3 { - margin-top: -0.75rem; +.mr-14 { + margin-right: 3.5rem; } -.-mr-3 { - margin-right: -0.75rem; +.mr-16 { + margin-right: 4rem; } -.-mb-3 { - margin-bottom: -0.75rem; +.mr-20 { + margin-right: 5rem; } -.-ml-3 { - margin-left: -0.75rem; +.mr-24 { + margin-right: 6rem; } -.-mt-4 { - margin-top: -1rem; +.mr-28 { + margin-right: 7rem; } -.-mr-4 { - margin-right: -1rem; +.mr-32 { + margin-right: 8rem; } -.-mb-4 { - margin-bottom: -1rem; +.mr-36 { + margin-right: 9rem; } -.-ml-4 { - margin-left: -1rem; +.mr-40 { + margin-right: 10rem; } -.-mt-5 { - margin-top: -1.25rem; +.mr-44 { + margin-right: 11rem; } -.-mr-5 { - margin-right: -1.25rem; +.mr-48 { + margin-right: 12rem; } -.-mb-5 { - margin-bottom: -1.25rem; +.mr-52 { + margin-right: 13rem; } -.-ml-5 { - margin-left: -1.25rem; +.mr-56 { + margin-right: 14rem; } -.-mt-6 { - margin-top: -1.5rem; +.mr-60 { + margin-right: 15rem; } -.-mr-6 { - margin-right: -1.5rem; +.mr-64 { + margin-right: 16rem; } -.-mb-6 { - margin-bottom: -1.5rem; +.mr-72 { + margin-right: 18rem; } -.-ml-6 { - margin-left: -1.5rem; +.mr-80 { + margin-right: 20rem; } -.-mt-7 { - margin-top: -1.75rem; +.mr-96 { + margin-right: 24rem; } -.-mr-7 { - margin-right: -1.75rem; +.mr-auto { + margin-right: auto; } -.-mb-7 { - margin-bottom: -1.75rem; +.mr-px { + margin-right: 1px; } -.-ml-7 { - margin-left: -1.75rem; +.mr-0\.5 { + margin-right: 0.125rem; } -.-mt-8 { - margin-top: -2rem; +.mr-1\.5 { + margin-right: 0.375rem; } -.-mr-8 { - margin-right: -2rem; +.mr-2\.5 { + margin-right: 0.625rem; } -.-mb-8 { - margin-bottom: -2rem; +.mr-3\.5 { + margin-right: 0.875rem; } -.-ml-8 { - margin-left: -2rem; +.-mr-0 { + margin-right: 0px; } -.-mt-9 { - margin-top: -2.25rem; +.-mr-1 { + margin-right: -0.25rem; } -.-mr-9 { - margin-right: -2.25rem; +.-mr-2 { + margin-right: -0.5rem; } -.-mb-9 { - margin-bottom: -2.25rem; +.-mr-3 { + margin-right: -0.75rem; } -.-ml-9 { - margin-left: -2.25rem; +.-mr-4 { + margin-right: -1rem; } -.-mt-10 { - margin-top: -2.5rem; +.-mr-5 { + margin-right: -1.25rem; } -.-mr-10 { - margin-right: -2.5rem; +.-mr-6 { + margin-right: -1.5rem; } -.-mb-10 { - margin-bottom: -2.5rem; +.-mr-7 { + margin-right: -1.75rem; } -.-ml-10 { - margin-left: -2.5rem; +.-mr-8 { + margin-right: -2rem; } -.-mt-11 { - margin-top: -2.75rem; +.-mr-9 { + margin-right: -2.25rem; +} + +.-mr-10 { + margin-right: -2.5rem; } .-mr-11 { margin-right: -2.75rem; } -.-mb-11 { - margin-bottom: -2.75rem; +.-mr-12 { + margin-right: -3rem; } -.-ml-11 { - margin-left: -2.75rem; +.-mr-14 { + margin-right: -3.5rem; } -.-mt-12 { - margin-top: -3rem; +.-mr-16 { + margin-right: -4rem; } -.-mr-12 { - margin-right: -3rem; +.-mr-20 { + margin-right: -5rem; } -.-mb-12 { - margin-bottom: -3rem; +.-mr-24 { + margin-right: -6rem; } -.-ml-12 { - margin-left: -3rem; +.-mr-28 { + margin-right: -7rem; } -.-mt-14 { - margin-top: -3.5rem; +.-mr-32 { + margin-right: -8rem; } -.-mr-14 { - margin-right: -3.5rem; +.-mr-36 { + margin-right: -9rem; } -.-mb-14 { - margin-bottom: -3.5rem; +.-mr-40 { + margin-right: -10rem; } -.-ml-14 { - margin-left: -3.5rem; +.-mr-44 { + margin-right: -11rem; } -.-mt-16 { - margin-top: -4rem; +.-mr-48 { + margin-right: -12rem; } -.-mr-16 { - margin-right: -4rem; +.-mr-52 { + margin-right: -13rem; } -.-mb-16 { - margin-bottom: -4rem; +.-mr-56 { + margin-right: -14rem; } -.-ml-16 { - margin-left: -4rem; +.-mr-60 { + margin-right: -15rem; } -.-mt-20 { - margin-top: -5rem; +.-mr-64 { + margin-right: -16rem; } -.-mr-20 { - margin-right: -5rem; +.-mr-72 { + margin-right: -18rem; } -.-mb-20 { - margin-bottom: -5rem; +.-mr-80 { + margin-right: -20rem; } -.-ml-20 { - margin-left: -5rem; +.-mr-96 { + margin-right: -24rem; } -.-mt-24 { - margin-top: -6rem; +.-mr-px { + margin-right: -1px; } -.-mr-24 { - margin-right: -6rem; +.-mr-0\.5 { + margin-right: -0.125rem; } -.-mb-24 { - margin-bottom: -6rem; +.-mr-1\.5 { + margin-right: -0.375rem; } -.-ml-24 { - margin-left: -6rem; +.-mr-2\.5 { + margin-right: -0.625rem; } -.-mt-28 { - margin-top: -7rem; +.-mr-3\.5 { + margin-right: -0.875rem; } -.-mr-28 { - margin-right: -7rem; +.mb-0 { + margin-bottom: 0px; } -.-mb-28 { - margin-bottom: -7rem; +.mb-1 { + margin-bottom: 0.25rem; } -.-ml-28 { - margin-left: -7rem; +.mb-2 { + margin-bottom: 0.5rem; } -.-mt-32 { - margin-top: -8rem; +.mb-3 { + margin-bottom: 0.75rem; } -.-mr-32 { - margin-right: -8rem; +.mb-4 { + margin-bottom: 1rem; } -.-mb-32 { - margin-bottom: -8rem; +.mb-5 { + margin-bottom: 1.25rem; } -.-ml-32 { - margin-left: -8rem; +.mb-6 { + margin-bottom: 1.5rem; } -.-mt-36 { - margin-top: -9rem; +.mb-7 { + margin-bottom: 1.75rem; } -.-mr-36 { - margin-right: -9rem; +.mb-8 { + margin-bottom: 2rem; } -.-mb-36 { - margin-bottom: -9rem; +.mb-9 { + margin-bottom: 2.25rem; } -.-ml-36 { - margin-left: -9rem; +.mb-10 { + margin-bottom: 2.5rem; } -.-mt-40 { - margin-top: -10rem; +.mb-11 { + margin-bottom: 2.75rem; } -.-mr-40 { - margin-right: -10rem; +.mb-12 { + margin-bottom: 3rem; } -.-mb-40 { - margin-bottom: -10rem; +.mb-14 { + margin-bottom: 3.5rem; } -.-ml-40 { - margin-left: -10rem; +.mb-16 { + margin-bottom: 4rem; } -.-mt-44 { - margin-top: -11rem; +.mb-20 { + margin-bottom: 5rem; } -.-mr-44 { - margin-right: -11rem; +.mb-24 { + margin-bottom: 6rem; } -.-mb-44 { - margin-bottom: -11rem; +.mb-28 { + margin-bottom: 7rem; } -.-ml-44 { - margin-left: -11rem; +.mb-32 { + margin-bottom: 8rem; } -.-mt-48 { - margin-top: -12rem; +.mb-36 { + margin-bottom: 9rem; } -.-mr-48 { - margin-right: -12rem; +.mb-40 { + margin-bottom: 10rem; } -.-mb-48 { - margin-bottom: -12rem; +.mb-44 { + margin-bottom: 11rem; } -.-ml-48 { - margin-left: -12rem; +.mb-48 { + margin-bottom: 12rem; } -.-mt-52 { - margin-top: -13rem; +.mb-52 { + margin-bottom: 13rem; } -.-mr-52 { - margin-right: -13rem; +.mb-56 { + margin-bottom: 14rem; } -.-mb-52 { - margin-bottom: -13rem; +.mb-60 { + margin-bottom: 15rem; } -.-ml-52 { - margin-left: -13rem; +.mb-64 { + margin-bottom: 16rem; } -.-mt-56 { - margin-top: -14rem; +.mb-72 { + margin-bottom: 18rem; } -.-mr-56 { - margin-right: -14rem; +.mb-80 { + margin-bottom: 20rem; } -.-mb-56 { - margin-bottom: -14rem; +.mb-96 { + margin-bottom: 24rem; } -.-ml-56 { - margin-left: -14rem; +.mb-auto { + margin-bottom: auto; } -.-mt-60 { - margin-top: -15rem; +.mb-px { + margin-bottom: 1px; } -.-mr-60 { - margin-right: -15rem; +.mb-0\.5 { + margin-bottom: 0.125rem; } -.-mb-60 { - margin-bottom: -15rem; +.mb-1\.5 { + margin-bottom: 0.375rem; } -.-ml-60 { - margin-left: -15rem; +.mb-2\.5 { + margin-bottom: 0.625rem; } -.-mt-64 { - margin-top: -16rem; +.mb-3\.5 { + margin-bottom: 0.875rem; } -.-mr-64 { - margin-right: -16rem; +.-mb-0 { + margin-bottom: 0px; } -.-mb-64 { - margin-bottom: -16rem; +.-mb-1 { + margin-bottom: -0.25rem; } -.-ml-64 { - margin-left: -16rem; +.-mb-2 { + margin-bottom: -0.5rem; } -.-mt-72 { - margin-top: -18rem; +.-mb-3 { + margin-bottom: -0.75rem; } -.-mr-72 { - margin-right: -18rem; +.-mb-4 { + margin-bottom: -1rem; } -.-mb-72 { - margin-bottom: -18rem; +.-mb-5 { + margin-bottom: -1.25rem; } -.-ml-72 { - margin-left: -18rem; +.-mb-6 { + margin-bottom: -1.5rem; } -.-mt-80 { - margin-top: -20rem; +.-mb-7 { + margin-bottom: -1.75rem; } -.-mr-80 { - margin-right: -20rem; +.-mb-8 { + margin-bottom: -2rem; } -.-mb-80 { - margin-bottom: -20rem; +.-mb-9 { + margin-bottom: -2.25rem; } -.-ml-80 { - margin-left: -20rem; +.-mb-10 { + margin-bottom: -2.5rem; } -.-mt-96 { - margin-top: -24rem; +.-mb-11 { + margin-bottom: -2.75rem; } -.-mr-96 { - margin-right: -24rem; +.-mb-12 { + margin-bottom: -3rem; } -.-mb-96 { - margin-bottom: -24rem; +.-mb-14 { + margin-bottom: -3.5rem; } -.-ml-96 { - margin-left: -24rem; +.-mb-16 { + margin-bottom: -4rem; } -.-mt-px { - margin-top: -1px; +.-mb-20 { + margin-bottom: -5rem; } -.-mr-px { - margin-right: -1px; +.-mb-24 { + margin-bottom: -6rem; } -.-mb-px { - margin-bottom: -1px; +.-mb-28 { + margin-bottom: -7rem; } -.-ml-px { - margin-left: -1px; +.-mb-32 { + margin-bottom: -8rem; } -.-mt-0\.5 { - margin-top: -0.125rem; +.-mb-36 { + margin-bottom: -9rem; } -.-mr-0\.5 { - margin-right: -0.125rem; +.-mb-40 { + margin-bottom: -10rem; } -.-mb-0\.5 { - margin-bottom: -0.125rem; +.-mb-44 { + margin-bottom: -11rem; } -.-ml-0\.5 { - margin-left: -0.125rem; +.-mb-48 { + margin-bottom: -12rem; } -.-mt-1\.5 { - margin-top: -0.375rem; +.-mb-52 { + margin-bottom: -13rem; } -.-mr-1\.5 { - margin-right: -0.375rem; +.-mb-56 { + margin-bottom: -14rem; } -.-mb-1\.5 { - margin-bottom: -0.375rem; +.-mb-60 { + margin-bottom: -15rem; } -.-ml-1\.5 { - margin-left: -0.375rem; +.-mb-64 { + margin-bottom: -16rem; } -.-mt-2\.5 { - margin-top: -0.625rem; +.-mb-72 { + margin-bottom: -18rem; } -.-mr-2\.5 { - margin-right: -0.625rem; +.-mb-80 { + margin-bottom: -20rem; } -.-mb-2\.5 { - margin-bottom: -0.625rem; +.-mb-96 { + margin-bottom: -24rem; } -.-ml-2\.5 { - margin-left: -0.625rem; +.-mb-px { + margin-bottom: -1px; } -.-mt-3\.5 { - margin-top: -0.875rem; +.-mb-0\.5 { + margin-bottom: -0.125rem; } -.-mr-3\.5 { - margin-right: -0.875rem; +.-mb-1\.5 { + margin-bottom: -0.375rem; +} + +.-mb-2\.5 { + margin-bottom: -0.625rem; } .-mb-3\.5 { margin-bottom: -0.875rem; } +.ml-0 { + margin-left: 0px; +} + +.ml-1 { + margin-left: 0.25rem; +} + +.ml-2 { + margin-left: 0.5rem; +} + +.ml-3 { + margin-left: 0.75rem; +} + +.ml-4 { + margin-left: 1rem; +} + +.ml-5 { + margin-left: 1.25rem; +} + +.ml-6 { + margin-left: 1.5rem; +} + +.ml-7 { + margin-left: 1.75rem; +} + +.ml-8 { + margin-left: 2rem; +} + +.ml-9 { + margin-left: 2.25rem; +} + +.ml-10 { + margin-left: 2.5rem; +} + +.ml-11 { + margin-left: 2.75rem; +} + +.ml-12 { + margin-left: 3rem; +} + +.ml-14 { + margin-left: 3.5rem; +} + +.ml-16 { + margin-left: 4rem; +} + +.ml-20 { + margin-left: 5rem; +} + +.ml-24 { + margin-left: 6rem; +} + +.ml-28 { + margin-left: 7rem; +} + +.ml-32 { + margin-left: 8rem; +} + +.ml-36 { + margin-left: 9rem; +} + +.ml-40 { + margin-left: 10rem; +} + +.ml-44 { + margin-left: 11rem; +} + +.ml-48 { + margin-left: 12rem; +} + +.ml-52 { + margin-left: 13rem; +} + +.ml-56 { + margin-left: 14rem; +} + +.ml-60 { + margin-left: 15rem; +} + +.ml-64 { + margin-left: 16rem; +} + +.ml-72 { + margin-left: 18rem; +} + +.ml-80 { + margin-left: 20rem; +} + +.ml-96 { + margin-left: 24rem; +} + +.ml-auto { + margin-left: auto; +} + +.ml-px { + margin-left: 1px; +} + +.ml-0\.5 { + margin-left: 0.125rem; +} + +.ml-1\.5 { + margin-left: 0.375rem; +} + +.ml-2\.5 { + margin-left: 0.625rem; +} + +.ml-3\.5 { + margin-left: 0.875rem; +} + +.-ml-0 { + margin-left: 0px; +} + +.-ml-1 { + margin-left: -0.25rem; +} + +.-ml-2 { + margin-left: -0.5rem; +} + +.-ml-3 { + margin-left: -0.75rem; +} + +.-ml-4 { + margin-left: -1rem; +} + +.-ml-5 { + margin-left: -1.25rem; +} + +.-ml-6 { + margin-left: -1.5rem; +} + +.-ml-7 { + margin-left: -1.75rem; +} + +.-ml-8 { + margin-left: -2rem; +} + +.-ml-9 { + margin-left: -2.25rem; +} + +.-ml-10 { + margin-left: -2.5rem; +} + +.-ml-11 { + margin-left: -2.75rem; +} + +.-ml-12 { + margin-left: -3rem; +} + +.-ml-14 { + margin-left: -3.5rem; +} + +.-ml-16 { + margin-left: -4rem; +} + +.-ml-20 { + margin-left: -5rem; +} + +.-ml-24 { + margin-left: -6rem; +} + +.-ml-28 { + margin-left: -7rem; +} + +.-ml-32 { + margin-left: -8rem; +} + +.-ml-36 { + margin-left: -9rem; +} + +.-ml-40 { + margin-left: -10rem; +} + +.-ml-44 { + margin-left: -11rem; +} + +.-ml-48 { + margin-left: -12rem; +} + +.-ml-52 { + margin-left: -13rem; +} + +.-ml-56 { + margin-left: -14rem; +} + +.-ml-60 { + margin-left: -15rem; +} + +.-ml-64 { + margin-left: -16rem; +} + +.-ml-72 { + margin-left: -18rem; +} + +.-ml-80 { + margin-left: -20rem; +} + +.-ml-96 { + margin-left: -24rem; +} + +.-ml-px { + margin-left: -1px; +} + +.-ml-0\.5 { + margin-left: -0.125rem; +} + +.-ml-1\.5 { + margin-left: -0.375rem; +} + +.-ml-2\.5 { + margin-left: -0.625rem; +} + .-ml-3\.5 { margin-left: -0.875rem; } @@ -41163,1848 +41163,1848 @@ video { margin: -0.875rem; } - .sm\:my-0 { - margin-top: 0px; - margin-bottom: 0px; - } - .sm\:mx-0 { margin-left: 0px; margin-right: 0px; } - .sm\:my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; - } - .sm\:mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; } - .sm\:my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; - } - .sm\:mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; } - .sm\:my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; - } - .sm\:mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; } - .sm\:my-4 { - margin-top: 1rem; - margin-bottom: 1rem; - } - .sm\:mx-4 { margin-left: 1rem; margin-right: 1rem; } - .sm\:my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; - } - .sm\:mx-5 { margin-left: 1.25rem; margin-right: 1.25rem; } - .sm\:my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; - } - .sm\:mx-6 { margin-left: 1.5rem; margin-right: 1.5rem; } - .sm\:my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; - } - .sm\:mx-7 { margin-left: 1.75rem; margin-right: 1.75rem; } - .sm\:my-8 { - margin-top: 2rem; - margin-bottom: 2rem; - } - .sm\:mx-8 { margin-left: 2rem; margin-right: 2rem; } - .sm\:my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; - } - .sm\:mx-9 { margin-left: 2.25rem; margin-right: 2.25rem; } - .sm\:my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; - } - .sm\:mx-10 { margin-left: 2.5rem; margin-right: 2.5rem; } - .sm\:my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; - } - .sm\:mx-11 { margin-left: 2.75rem; margin-right: 2.75rem; } - .sm\:my-12 { - margin-top: 3rem; - margin-bottom: 3rem; - } - .sm\:mx-12 { margin-left: 3rem; margin-right: 3rem; } - .sm\:my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; - } - .sm\:mx-14 { margin-left: 3.5rem; margin-right: 3.5rem; } - .sm\:my-16 { - margin-top: 4rem; - margin-bottom: 4rem; - } - .sm\:mx-16 { margin-left: 4rem; margin-right: 4rem; } - .sm\:my-20 { - margin-top: 5rem; - margin-bottom: 5rem; - } - .sm\:mx-20 { margin-left: 5rem; margin-right: 5rem; } - .sm\:my-24 { - margin-top: 6rem; - margin-bottom: 6rem; - } - .sm\:mx-24 { margin-left: 6rem; margin-right: 6rem; } - .sm\:my-28 { - margin-top: 7rem; - margin-bottom: 7rem; - } - .sm\:mx-28 { margin-left: 7rem; margin-right: 7rem; } - .sm\:my-32 { - margin-top: 8rem; - margin-bottom: 8rem; - } - .sm\:mx-32 { margin-left: 8rem; margin-right: 8rem; } - .sm\:my-36 { - margin-top: 9rem; - margin-bottom: 9rem; - } - .sm\:mx-36 { margin-left: 9rem; margin-right: 9rem; } - .sm\:my-40 { - margin-top: 10rem; - margin-bottom: 10rem; - } - .sm\:mx-40 { margin-left: 10rem; margin-right: 10rem; } - .sm\:my-44 { - margin-top: 11rem; - margin-bottom: 11rem; - } - .sm\:mx-44 { margin-left: 11rem; margin-right: 11rem; } - .sm\:my-48 { - margin-top: 12rem; - margin-bottom: 12rem; - } - .sm\:mx-48 { margin-left: 12rem; margin-right: 12rem; } - .sm\:my-52 { - margin-top: 13rem; - margin-bottom: 13rem; - } - .sm\:mx-52 { margin-left: 13rem; margin-right: 13rem; } - .sm\:my-56 { - margin-top: 14rem; - margin-bottom: 14rem; - } - .sm\:mx-56 { margin-left: 14rem; margin-right: 14rem; } - .sm\:my-60 { - margin-top: 15rem; - margin-bottom: 15rem; - } - .sm\:mx-60 { margin-left: 15rem; margin-right: 15rem; } - .sm\:my-64 { - margin-top: 16rem; - margin-bottom: 16rem; - } - .sm\:mx-64 { margin-left: 16rem; margin-right: 16rem; } - .sm\:my-72 { - margin-top: 18rem; - margin-bottom: 18rem; - } - .sm\:mx-72 { margin-left: 18rem; margin-right: 18rem; } - .sm\:my-80 { - margin-top: 20rem; - margin-bottom: 20rem; - } - .sm\:mx-80 { margin-left: 20rem; margin-right: 20rem; } - .sm\:my-96 { - margin-top: 24rem; - margin-bottom: 24rem; - } - .sm\:mx-96 { margin-left: 24rem; margin-right: 24rem; } - .sm\:my-auto { - margin-top: auto; - margin-bottom: auto; - } - .sm\:mx-auto { margin-left: auto; margin-right: auto; } - .sm\:my-px { - margin-top: 1px; - margin-bottom: 1px; - } - .sm\:mx-px { margin-left: 1px; margin-right: 1px; } - .sm\:my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; - } - .sm\:mx-0\.5 { margin-left: 0.125rem; margin-right: 0.125rem; } - .sm\:my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; - } - .sm\:mx-1\.5 { margin-left: 0.375rem; margin-right: 0.375rem; } - .sm\:my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; - } - .sm\:mx-2\.5 { margin-left: 0.625rem; margin-right: 0.625rem; } - .sm\:my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; - } - .sm\:mx-3\.5 { margin-left: 0.875rem; margin-right: 0.875rem; } - .sm\:-my-0 { - margin-top: 0px; - margin-bottom: 0px; - } - .sm\:-mx-0 { margin-left: 0px; margin-right: 0px; } - .sm\:-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; - } - .sm\:-mx-1 { margin-left: -0.25rem; margin-right: -0.25rem; } - .sm\:-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; - } - .sm\:-mx-2 { margin-left: -0.5rem; margin-right: -0.5rem; } - .sm\:-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; - } - .sm\:-mx-3 { margin-left: -0.75rem; margin-right: -0.75rem; } - .sm\:-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; - } - .sm\:-mx-4 { margin-left: -1rem; margin-right: -1rem; } - .sm\:-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; - } - .sm\:-mx-5 { margin-left: -1.25rem; margin-right: -1.25rem; } - .sm\:-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; - } - .sm\:-mx-6 { margin-left: -1.5rem; margin-right: -1.5rem; } - .sm\:-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; - } - .sm\:-mx-7 { margin-left: -1.75rem; margin-right: -1.75rem; } - .sm\:-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; - } - .sm\:-mx-8 { margin-left: -2rem; margin-right: -2rem; } - .sm\:-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; - } - .sm\:-mx-9 { margin-left: -2.25rem; margin-right: -2.25rem; } - .sm\:-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; - } - .sm\:-mx-10 { margin-left: -2.5rem; margin-right: -2.5rem; } - .sm\:-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; - } - .sm\:-mx-11 { margin-left: -2.75rem; margin-right: -2.75rem; } - .sm\:-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; - } - .sm\:-mx-12 { margin-left: -3rem; margin-right: -3rem; } - .sm\:-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; - } - .sm\:-mx-14 { margin-left: -3.5rem; margin-right: -3.5rem; } - .sm\:-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; - } - .sm\:-mx-16 { margin-left: -4rem; margin-right: -4rem; } - .sm\:-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; - } - .sm\:-mx-20 { margin-left: -5rem; margin-right: -5rem; } - .sm\:-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; - } - .sm\:-mx-24 { margin-left: -6rem; margin-right: -6rem; } - .sm\:-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; - } - .sm\:-mx-28 { margin-left: -7rem; margin-right: -7rem; } - .sm\:-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; - } - .sm\:-mx-32 { margin-left: -8rem; margin-right: -8rem; } - .sm\:-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; - } - .sm\:-mx-36 { margin-left: -9rem; margin-right: -9rem; } - .sm\:-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; - } - .sm\:-mx-40 { margin-left: -10rem; margin-right: -10rem; } - .sm\:-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; - } - .sm\:-mx-44 { margin-left: -11rem; margin-right: -11rem; } - .sm\:-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; - } - .sm\:-mx-48 { margin-left: -12rem; margin-right: -12rem; } - .sm\:-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; - } - .sm\:-mx-52 { margin-left: -13rem; margin-right: -13rem; } - .sm\:-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; - } - .sm\:-mx-56 { margin-left: -14rem; margin-right: -14rem; } - .sm\:-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; - } - .sm\:-mx-60 { margin-left: -15rem; margin-right: -15rem; } - .sm\:-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; - } - .sm\:-mx-64 { margin-left: -16rem; margin-right: -16rem; } - .sm\:-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; - } - .sm\:-mx-72 { margin-left: -18rem; margin-right: -18rem; } - .sm\:-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; - } - .sm\:-mx-80 { margin-left: -20rem; margin-right: -20rem; } - .sm\:-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; - } - .sm\:-mx-96 { margin-left: -24rem; margin-right: -24rem; } - .sm\:-my-px { - margin-top: -1px; - margin-bottom: -1px; - } - .sm\:-mx-px { margin-left: -1px; margin-right: -1px; } - .sm\:-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; - } - .sm\:-mx-0\.5 { margin-left: -0.125rem; margin-right: -0.125rem; } - .sm\:-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; - } - .sm\:-mx-1\.5 { margin-left: -0.375rem; margin-right: -0.375rem; } - .sm\:-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; - } - .sm\:-mx-2\.5 { margin-left: -0.625rem; margin-right: -0.625rem; } - .sm\:-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; - } - .sm\:-mx-3\.5 { margin-left: -0.875rem; margin-right: -0.875rem; } - .sm\:mt-0 { + .sm\:my-0 { margin-top: 0px; + margin-bottom: 0px; } - .sm\:mr-0 { - margin-right: 0px; - } - - .sm\:mb-0 { - margin-bottom: 0px; + .sm\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } - .sm\:ml-0 { - margin-left: 0px; + .sm\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; } - .sm\:mt-1 { - margin-top: 0.25rem; + .sm\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; } - .sm\:mr-1 { - margin-right: 0.25rem; + .sm\:my-4 { + margin-top: 1rem; + margin-bottom: 1rem; } - .sm\:mb-1 { - margin-bottom: 0.25rem; + .sm\:my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; } - .sm\:ml-1 { - margin-left: 0.25rem; + .sm\:my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; } - .sm\:mt-2 { - margin-top: 0.5rem; + .sm\:my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; } - .sm\:mr-2 { - margin-right: 0.5rem; + .sm\:my-8 { + margin-top: 2rem; + margin-bottom: 2rem; } - .sm\:mb-2 { - margin-bottom: 0.5rem; + .sm\:my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; } - .sm\:ml-2 { - margin-left: 0.5rem; + .sm\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; } - .sm\:mt-3 { - margin-top: 0.75rem; + .sm\:my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; } - .sm\:mr-3 { - margin-right: 0.75rem; + .sm\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; } - .sm\:mb-3 { - margin-bottom: 0.75rem; + .sm\:my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; } - .sm\:ml-3 { - margin-left: 0.75rem; + .sm\:my-16 { + margin-top: 4rem; + margin-bottom: 4rem; } - .sm\:mt-4 { - margin-top: 1rem; + .sm\:my-20 { + margin-top: 5rem; + margin-bottom: 5rem; } - .sm\:mr-4 { - margin-right: 1rem; + .sm\:my-24 { + margin-top: 6rem; + margin-bottom: 6rem; } - .sm\:mb-4 { - margin-bottom: 1rem; + .sm\:my-28 { + margin-top: 7rem; + margin-bottom: 7rem; } - .sm\:ml-4 { - margin-left: 1rem; + .sm\:my-32 { + margin-top: 8rem; + margin-bottom: 8rem; } - .sm\:mt-5 { - margin-top: 1.25rem; + .sm\:my-36 { + margin-top: 9rem; + margin-bottom: 9rem; } - .sm\:mr-5 { - margin-right: 1.25rem; + .sm\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; } - .sm\:mb-5 { - margin-bottom: 1.25rem; + .sm\:my-44 { + margin-top: 11rem; + margin-bottom: 11rem; } - .sm\:ml-5 { - margin-left: 1.25rem; + .sm\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; } - .sm\:mt-6 { - margin-top: 1.5rem; + .sm\:my-52 { + margin-top: 13rem; + margin-bottom: 13rem; } - .sm\:mr-6 { - margin-right: 1.5rem; + .sm\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; } - .sm\:mb-6 { - margin-bottom: 1.5rem; + .sm\:my-60 { + margin-top: 15rem; + margin-bottom: 15rem; } - .sm\:ml-6 { - margin-left: 1.5rem; + .sm\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; } - .sm\:mt-7 { - margin-top: 1.75rem; + .sm\:my-72 { + margin-top: 18rem; + margin-bottom: 18rem; } - .sm\:mr-7 { - margin-right: 1.75rem; + .sm\:my-80 { + margin-top: 20rem; + margin-bottom: 20rem; } - .sm\:mb-7 { - margin-bottom: 1.75rem; + .sm\:my-96 { + margin-top: 24rem; + margin-bottom: 24rem; } - .sm\:ml-7 { - margin-left: 1.75rem; + .sm\:my-auto { + margin-top: auto; + margin-bottom: auto; } - .sm\:mt-8 { - margin-top: 2rem; + .sm\:my-px { + margin-top: 1px; + margin-bottom: 1px; } - .sm\:mr-8 { - margin-right: 2rem; + .sm\:my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; } - .sm\:mb-8 { - margin-bottom: 2rem; + .sm\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; } - .sm\:ml-8 { - margin-left: 2rem; + .sm\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; } - .sm\:mt-9 { - margin-top: 2.25rem; + .sm\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; } - .sm\:mr-9 { - margin-right: 2.25rem; + .sm\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .sm\:mb-9 { - margin-bottom: 2.25rem; + .sm\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } - .sm\:ml-9 { - margin-left: 2.25rem; + .sm\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } - .sm\:mt-10 { - margin-top: 2.5rem; + .sm\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } - .sm\:mr-10 { - margin-right: 2.5rem; + .sm\:-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } - .sm\:mb-10 { - margin-bottom: 2.5rem; + .sm\:-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } - .sm\:ml-10 { - margin-left: 2.5rem; + .sm\:-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } - .sm\:mt-11 { - margin-top: 2.75rem; + .sm\:-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } - .sm\:mr-11 { - margin-right: 2.75rem; + .sm\:-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } - .sm\:mb-11 { - margin-bottom: 2.75rem; + .sm\:-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } - .sm\:ml-11 { - margin-left: 2.75rem; + .sm\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } - .sm\:mt-12 { - margin-top: 3rem; + .sm\:-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } - .sm\:mr-12 { - margin-right: 3rem; + .sm\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } - .sm\:mb-12 { - margin-bottom: 3rem; + .sm\:-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } - .sm\:ml-12 { - margin-left: 3rem; + .sm\:-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } - .sm\:mt-14 { - margin-top: 3.5rem; + .sm\:-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } - .sm\:mr-14 { - margin-right: 3.5rem; + .sm\:-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } - .sm\:mb-14 { - margin-bottom: 3.5rem; + .sm\:-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } - .sm\:ml-14 { - margin-left: 3.5rem; + .sm\:-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } - .sm\:mt-16 { - margin-top: 4rem; + .sm\:-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } - .sm\:mr-16 { - margin-right: 4rem; + .sm\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } - .sm\:mb-16 { - margin-bottom: 4rem; + .sm\:-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } - .sm\:ml-16 { - margin-left: 4rem; + .sm\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } - .sm\:mt-20 { - margin-top: 5rem; + .sm\:-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } - .sm\:mr-20 { - margin-right: 5rem; + .sm\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } - .sm\:mb-20 { - margin-bottom: 5rem; + .sm\:-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } - .sm\:ml-20 { - margin-left: 5rem; + .sm\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } - .sm\:mt-24 { - margin-top: 6rem; + .sm\:-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } - .sm\:mr-24 { - margin-right: 6rem; + .sm\:-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } - .sm\:mb-24 { - margin-bottom: 6rem; + .sm\:-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } - .sm\:ml-24 { - margin-left: 6rem; + .sm\:-my-px { + margin-top: -1px; + margin-bottom: -1px; } - .sm\:mt-28 { - margin-top: 7rem; + .sm\:-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } - .sm\:mr-28 { - margin-right: 7rem; + .sm\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } - .sm\:mb-28 { - margin-bottom: 7rem; + .sm\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } - .sm\:ml-28 { - margin-left: 7rem; + .sm\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } - .sm\:mt-32 { - margin-top: 8rem; + .sm\:mt-0 { + margin-top: 0px; } - .sm\:mr-32 { - margin-right: 8rem; + .sm\:mt-1 { + margin-top: 0.25rem; } - .sm\:mb-32 { - margin-bottom: 8rem; + .sm\:mt-2 { + margin-top: 0.5rem; } - .sm\:ml-32 { - margin-left: 8rem; + .sm\:mt-3 { + margin-top: 0.75rem; } - .sm\:mt-36 { - margin-top: 9rem; + .sm\:mt-4 { + margin-top: 1rem; } - .sm\:mr-36 { - margin-right: 9rem; + .sm\:mt-5 { + margin-top: 1.25rem; } - .sm\:mb-36 { - margin-bottom: 9rem; + .sm\:mt-6 { + margin-top: 1.5rem; } - .sm\:ml-36 { - margin-left: 9rem; + .sm\:mt-7 { + margin-top: 1.75rem; } - .sm\:mt-40 { - margin-top: 10rem; + .sm\:mt-8 { + margin-top: 2rem; } - .sm\:mr-40 { - margin-right: 10rem; + .sm\:mt-9 { + margin-top: 2.25rem; } - .sm\:mb-40 { - margin-bottom: 10rem; + .sm\:mt-10 { + margin-top: 2.5rem; } - .sm\:ml-40 { - margin-left: 10rem; + .sm\:mt-11 { + margin-top: 2.75rem; } - .sm\:mt-44 { - margin-top: 11rem; + .sm\:mt-12 { + margin-top: 3rem; } - .sm\:mr-44 { - margin-right: 11rem; + .sm\:mt-14 { + margin-top: 3.5rem; } - .sm\:mb-44 { - margin-bottom: 11rem; + .sm\:mt-16 { + margin-top: 4rem; } - .sm\:ml-44 { - margin-left: 11rem; + .sm\:mt-20 { + margin-top: 5rem; } - .sm\:mt-48 { - margin-top: 12rem; + .sm\:mt-24 { + margin-top: 6rem; } - .sm\:mr-48 { - margin-right: 12rem; + .sm\:mt-28 { + margin-top: 7rem; } - .sm\:mb-48 { - margin-bottom: 12rem; + .sm\:mt-32 { + margin-top: 8rem; } - .sm\:ml-48 { - margin-left: 12rem; + .sm\:mt-36 { + margin-top: 9rem; } - .sm\:mt-52 { - margin-top: 13rem; + .sm\:mt-40 { + margin-top: 10rem; } - .sm\:mr-52 { - margin-right: 13rem; + .sm\:mt-44 { + margin-top: 11rem; } - .sm\:mb-52 { - margin-bottom: 13rem; + .sm\:mt-48 { + margin-top: 12rem; } - .sm\:ml-52 { - margin-left: 13rem; + .sm\:mt-52 { + margin-top: 13rem; } .sm\:mt-56 { margin-top: 14rem; } - .sm\:mr-56 { - margin-right: 14rem; + .sm\:mt-60 { + margin-top: 15rem; } - .sm\:mb-56 { - margin-bottom: 14rem; + .sm\:mt-64 { + margin-top: 16rem; } - .sm\:ml-56 { - margin-left: 14rem; + .sm\:mt-72 { + margin-top: 18rem; } - .sm\:mt-60 { - margin-top: 15rem; + .sm\:mt-80 { + margin-top: 20rem; } - .sm\:mr-60 { - margin-right: 15rem; + .sm\:mt-96 { + margin-top: 24rem; } - .sm\:mb-60 { - margin-bottom: 15rem; + .sm\:mt-auto { + margin-top: auto; } - .sm\:ml-60 { - margin-left: 15rem; + .sm\:mt-px { + margin-top: 1px; } - .sm\:mt-64 { - margin-top: 16rem; + .sm\:mt-0\.5 { + margin-top: 0.125rem; } - .sm\:mr-64 { - margin-right: 16rem; + .sm\:mt-1\.5 { + margin-top: 0.375rem; } - .sm\:mb-64 { - margin-bottom: 16rem; + .sm\:mt-2\.5 { + margin-top: 0.625rem; } - .sm\:ml-64 { - margin-left: 16rem; + .sm\:mt-3\.5 { + margin-top: 0.875rem; } - .sm\:mt-72 { - margin-top: 18rem; + .sm\:-mt-0 { + margin-top: 0px; } - .sm\:mr-72 { - margin-right: 18rem; + .sm\:-mt-1 { + margin-top: -0.25rem; } - .sm\:mb-72 { - margin-bottom: 18rem; + .sm\:-mt-2 { + margin-top: -0.5rem; } - .sm\:ml-72 { - margin-left: 18rem; + .sm\:-mt-3 { + margin-top: -0.75rem; } - .sm\:mt-80 { - margin-top: 20rem; + .sm\:-mt-4 { + margin-top: -1rem; } - .sm\:mr-80 { - margin-right: 20rem; + .sm\:-mt-5 { + margin-top: -1.25rem; } - .sm\:mb-80 { - margin-bottom: 20rem; + .sm\:-mt-6 { + margin-top: -1.5rem; } - .sm\:ml-80 { - margin-left: 20rem; + .sm\:-mt-7 { + margin-top: -1.75rem; } - .sm\:mt-96 { - margin-top: 24rem; + .sm\:-mt-8 { + margin-top: -2rem; } - .sm\:mr-96 { - margin-right: 24rem; + .sm\:-mt-9 { + margin-top: -2.25rem; } - .sm\:mb-96 { - margin-bottom: 24rem; + .sm\:-mt-10 { + margin-top: -2.5rem; } - .sm\:ml-96 { - margin-left: 24rem; + .sm\:-mt-11 { + margin-top: -2.75rem; } - .sm\:mt-auto { - margin-top: auto; + .sm\:-mt-12 { + margin-top: -3rem; } - .sm\:mr-auto { - margin-right: auto; + .sm\:-mt-14 { + margin-top: -3.5rem; } - .sm\:mb-auto { - margin-bottom: auto; + .sm\:-mt-16 { + margin-top: -4rem; } - .sm\:ml-auto { - margin-left: auto; + .sm\:-mt-20 { + margin-top: -5rem; } - .sm\:mt-px { - margin-top: 1px; + .sm\:-mt-24 { + margin-top: -6rem; } - .sm\:mr-px { - margin-right: 1px; + .sm\:-mt-28 { + margin-top: -7rem; } - .sm\:mb-px { - margin-bottom: 1px; + .sm\:-mt-32 { + margin-top: -8rem; } - .sm\:ml-px { - margin-left: 1px; + .sm\:-mt-36 { + margin-top: -9rem; } - .sm\:mt-0\.5 { - margin-top: 0.125rem; + .sm\:-mt-40 { + margin-top: -10rem; } - .sm\:mr-0\.5 { - margin-right: 0.125rem; + .sm\:-mt-44 { + margin-top: -11rem; } - .sm\:mb-0\.5 { - margin-bottom: 0.125rem; + .sm\:-mt-48 { + margin-top: -12rem; } - .sm\:ml-0\.5 { - margin-left: 0.125rem; + .sm\:-mt-52 { + margin-top: -13rem; } - .sm\:mt-1\.5 { - margin-top: 0.375rem; + .sm\:-mt-56 { + margin-top: -14rem; } - .sm\:mr-1\.5 { - margin-right: 0.375rem; + .sm\:-mt-60 { + margin-top: -15rem; } - .sm\:mb-1\.5 { - margin-bottom: 0.375rem; + .sm\:-mt-64 { + margin-top: -16rem; } - .sm\:ml-1\.5 { - margin-left: 0.375rem; + .sm\:-mt-72 { + margin-top: -18rem; } - .sm\:mt-2\.5 { - margin-top: 0.625rem; + .sm\:-mt-80 { + margin-top: -20rem; } - .sm\:mr-2\.5 { - margin-right: 0.625rem; + .sm\:-mt-96 { + margin-top: -24rem; } - .sm\:mb-2\.5 { - margin-bottom: 0.625rem; + .sm\:-mt-px { + margin-top: -1px; } - .sm\:ml-2\.5 { - margin-left: 0.625rem; + .sm\:-mt-0\.5 { + margin-top: -0.125rem; } - .sm\:mt-3\.5 { - margin-top: 0.875rem; + .sm\:-mt-1\.5 { + margin-top: -0.375rem; } - .sm\:mr-3\.5 { - margin-right: 0.875rem; + .sm\:-mt-2\.5 { + margin-top: -0.625rem; } - .sm\:mb-3\.5 { - margin-bottom: 0.875rem; + .sm\:-mt-3\.5 { + margin-top: -0.875rem; } - .sm\:ml-3\.5 { - margin-left: 0.875rem; + .sm\:mr-0 { + margin-right: 0px; } - .sm\:-mt-0 { - margin-top: 0px; + .sm\:mr-1 { + margin-right: 0.25rem; } - .sm\:-mr-0 { - margin-right: 0px; + .sm\:mr-2 { + margin-right: 0.5rem; } - .sm\:-mb-0 { - margin-bottom: 0px; + .sm\:mr-3 { + margin-right: 0.75rem; } - .sm\:-ml-0 { - margin-left: 0px; + .sm\:mr-4 { + margin-right: 1rem; } - .sm\:-mt-1 { - margin-top: -0.25rem; + .sm\:mr-5 { + margin-right: 1.25rem; } - .sm\:-mr-1 { - margin-right: -0.25rem; + .sm\:mr-6 { + margin-right: 1.5rem; } - .sm\:-mb-1 { - margin-bottom: -0.25rem; + .sm\:mr-7 { + margin-right: 1.75rem; } - .sm\:-ml-1 { - margin-left: -0.25rem; + .sm\:mr-8 { + margin-right: 2rem; } - .sm\:-mt-2 { - margin-top: -0.5rem; + .sm\:mr-9 { + margin-right: 2.25rem; } - .sm\:-mr-2 { - margin-right: -0.5rem; + .sm\:mr-10 { + margin-right: 2.5rem; } - .sm\:-mb-2 { - margin-bottom: -0.5rem; + .sm\:mr-11 { + margin-right: 2.75rem; } - .sm\:-ml-2 { - margin-left: -0.5rem; + .sm\:mr-12 { + margin-right: 3rem; } - .sm\:-mt-3 { - margin-top: -0.75rem; + .sm\:mr-14 { + margin-right: 3.5rem; } - .sm\:-mr-3 { - margin-right: -0.75rem; + .sm\:mr-16 { + margin-right: 4rem; } - .sm\:-mb-3 { - margin-bottom: -0.75rem; + .sm\:mr-20 { + margin-right: 5rem; } - .sm\:-ml-3 { - margin-left: -0.75rem; + .sm\:mr-24 { + margin-right: 6rem; } - .sm\:-mt-4 { - margin-top: -1rem; + .sm\:mr-28 { + margin-right: 7rem; } - .sm\:-mr-4 { - margin-right: -1rem; + .sm\:mr-32 { + margin-right: 8rem; } - .sm\:-mb-4 { - margin-bottom: -1rem; + .sm\:mr-36 { + margin-right: 9rem; } - .sm\:-ml-4 { - margin-left: -1rem; + .sm\:mr-40 { + margin-right: 10rem; } - .sm\:-mt-5 { - margin-top: -1.25rem; + .sm\:mr-44 { + margin-right: 11rem; } - .sm\:-mr-5 { - margin-right: -1.25rem; + .sm\:mr-48 { + margin-right: 12rem; } - .sm\:-mb-5 { - margin-bottom: -1.25rem; + .sm\:mr-52 { + margin-right: 13rem; } - .sm\:-ml-5 { - margin-left: -1.25rem; + .sm\:mr-56 { + margin-right: 14rem; } - .sm\:-mt-6 { - margin-top: -1.5rem; + .sm\:mr-60 { + margin-right: 15rem; } - .sm\:-mr-6 { - margin-right: -1.5rem; + .sm\:mr-64 { + margin-right: 16rem; } - .sm\:-mb-6 { - margin-bottom: -1.5rem; + .sm\:mr-72 { + margin-right: 18rem; } - .sm\:-ml-6 { - margin-left: -1.5rem; + .sm\:mr-80 { + margin-right: 20rem; } - .sm\:-mt-7 { - margin-top: -1.75rem; + .sm\:mr-96 { + margin-right: 24rem; } - .sm\:-mr-7 { - margin-right: -1.75rem; + .sm\:mr-auto { + margin-right: auto; } - .sm\:-mb-7 { - margin-bottom: -1.75rem; + .sm\:mr-px { + margin-right: 1px; } - .sm\:-ml-7 { - margin-left: -1.75rem; + .sm\:mr-0\.5 { + margin-right: 0.125rem; } - .sm\:-mt-8 { - margin-top: -2rem; + .sm\:mr-1\.5 { + margin-right: 0.375rem; } - .sm\:-mr-8 { - margin-right: -2rem; + .sm\:mr-2\.5 { + margin-right: 0.625rem; } - .sm\:-mb-8 { - margin-bottom: -2rem; + .sm\:mr-3\.5 { + margin-right: 0.875rem; } - .sm\:-ml-8 { - margin-left: -2rem; + .sm\:-mr-0 { + margin-right: 0px; } - .sm\:-mt-9 { - margin-top: -2.25rem; + .sm\:-mr-1 { + margin-right: -0.25rem; } - .sm\:-mr-9 { - margin-right: -2.25rem; + .sm\:-mr-2 { + margin-right: -0.5rem; } - .sm\:-mb-9 { - margin-bottom: -2.25rem; + .sm\:-mr-3 { + margin-right: -0.75rem; } - .sm\:-ml-9 { - margin-left: -2.25rem; + .sm\:-mr-4 { + margin-right: -1rem; } - .sm\:-mt-10 { - margin-top: -2.5rem; + .sm\:-mr-5 { + margin-right: -1.25rem; } - .sm\:-mr-10 { - margin-right: -2.5rem; + .sm\:-mr-6 { + margin-right: -1.5rem; } - .sm\:-mb-10 { - margin-bottom: -2.5rem; + .sm\:-mr-7 { + margin-right: -1.75rem; } - .sm\:-ml-10 { - margin-left: -2.5rem; + .sm\:-mr-8 { + margin-right: -2rem; } - .sm\:-mt-11 { - margin-top: -2.75rem; + .sm\:-mr-9 { + margin-right: -2.25rem; + } + + .sm\:-mr-10 { + margin-right: -2.5rem; } .sm\:-mr-11 { margin-right: -2.75rem; } - .sm\:-mb-11 { - margin-bottom: -2.75rem; + .sm\:-mr-12 { + margin-right: -3rem; } - .sm\:-ml-11 { - margin-left: -2.75rem; + .sm\:-mr-14 { + margin-right: -3.5rem; } - .sm\:-mt-12 { - margin-top: -3rem; + .sm\:-mr-16 { + margin-right: -4rem; } - .sm\:-mr-12 { - margin-right: -3rem; + .sm\:-mr-20 { + margin-right: -5rem; } - .sm\:-mb-12 { - margin-bottom: -3rem; + .sm\:-mr-24 { + margin-right: -6rem; } - .sm\:-ml-12 { - margin-left: -3rem; + .sm\:-mr-28 { + margin-right: -7rem; } - .sm\:-mt-14 { - margin-top: -3.5rem; + .sm\:-mr-32 { + margin-right: -8rem; } - .sm\:-mr-14 { - margin-right: -3.5rem; + .sm\:-mr-36 { + margin-right: -9rem; } - .sm\:-mb-14 { - margin-bottom: -3.5rem; + .sm\:-mr-40 { + margin-right: -10rem; } - .sm\:-ml-14 { - margin-left: -3.5rem; + .sm\:-mr-44 { + margin-right: -11rem; } - .sm\:-mt-16 { - margin-top: -4rem; + .sm\:-mr-48 { + margin-right: -12rem; } - .sm\:-mr-16 { - margin-right: -4rem; + .sm\:-mr-52 { + margin-right: -13rem; } - .sm\:-mb-16 { - margin-bottom: -4rem; + .sm\:-mr-56 { + margin-right: -14rem; } - .sm\:-ml-16 { - margin-left: -4rem; + .sm\:-mr-60 { + margin-right: -15rem; } - .sm\:-mt-20 { - margin-top: -5rem; + .sm\:-mr-64 { + margin-right: -16rem; } - .sm\:-mr-20 { - margin-right: -5rem; + .sm\:-mr-72 { + margin-right: -18rem; } - .sm\:-mb-20 { - margin-bottom: -5rem; + .sm\:-mr-80 { + margin-right: -20rem; } - .sm\:-ml-20 { - margin-left: -5rem; + .sm\:-mr-96 { + margin-right: -24rem; } - .sm\:-mt-24 { - margin-top: -6rem; + .sm\:-mr-px { + margin-right: -1px; } - .sm\:-mr-24 { - margin-right: -6rem; + .sm\:-mr-0\.5 { + margin-right: -0.125rem; } - .sm\:-mb-24 { - margin-bottom: -6rem; + .sm\:-mr-1\.5 { + margin-right: -0.375rem; } - .sm\:-ml-24 { - margin-left: -6rem; + .sm\:-mr-2\.5 { + margin-right: -0.625rem; } - .sm\:-mt-28 { - margin-top: -7rem; + .sm\:-mr-3\.5 { + margin-right: -0.875rem; } - .sm\:-mr-28 { - margin-right: -7rem; + .sm\:mb-0 { + margin-bottom: 0px; } - .sm\:-mb-28 { - margin-bottom: -7rem; + .sm\:mb-1 { + margin-bottom: 0.25rem; } - .sm\:-ml-28 { - margin-left: -7rem; + .sm\:mb-2 { + margin-bottom: 0.5rem; } - .sm\:-mt-32 { - margin-top: -8rem; + .sm\:mb-3 { + margin-bottom: 0.75rem; } - .sm\:-mr-32 { - margin-right: -8rem; + .sm\:mb-4 { + margin-bottom: 1rem; } - .sm\:-mb-32 { - margin-bottom: -8rem; + .sm\:mb-5 { + margin-bottom: 1.25rem; } - .sm\:-ml-32 { - margin-left: -8rem; + .sm\:mb-6 { + margin-bottom: 1.5rem; } - .sm\:-mt-36 { - margin-top: -9rem; + .sm\:mb-7 { + margin-bottom: 1.75rem; } - .sm\:-mr-36 { - margin-right: -9rem; + .sm\:mb-8 { + margin-bottom: 2rem; } - .sm\:-mb-36 { - margin-bottom: -9rem; + .sm\:mb-9 { + margin-bottom: 2.25rem; } - .sm\:-ml-36 { - margin-left: -9rem; + .sm\:mb-10 { + margin-bottom: 2.5rem; } - .sm\:-mt-40 { - margin-top: -10rem; + .sm\:mb-11 { + margin-bottom: 2.75rem; } - .sm\:-mr-40 { - margin-right: -10rem; + .sm\:mb-12 { + margin-bottom: 3rem; } - .sm\:-mb-40 { - margin-bottom: -10rem; + .sm\:mb-14 { + margin-bottom: 3.5rem; } - .sm\:-ml-40 { - margin-left: -10rem; + .sm\:mb-16 { + margin-bottom: 4rem; } - .sm\:-mt-44 { - margin-top: -11rem; + .sm\:mb-20 { + margin-bottom: 5rem; } - .sm\:-mr-44 { - margin-right: -11rem; + .sm\:mb-24 { + margin-bottom: 6rem; } - .sm\:-mb-44 { - margin-bottom: -11rem; + .sm\:mb-28 { + margin-bottom: 7rem; } - .sm\:-ml-44 { - margin-left: -11rem; + .sm\:mb-32 { + margin-bottom: 8rem; } - .sm\:-mt-48 { - margin-top: -12rem; + .sm\:mb-36 { + margin-bottom: 9rem; } - .sm\:-mr-48 { - margin-right: -12rem; + .sm\:mb-40 { + margin-bottom: 10rem; } - .sm\:-mb-48 { - margin-bottom: -12rem; + .sm\:mb-44 { + margin-bottom: 11rem; } - .sm\:-ml-48 { - margin-left: -12rem; + .sm\:mb-48 { + margin-bottom: 12rem; } - .sm\:-mt-52 { - margin-top: -13rem; + .sm\:mb-52 { + margin-bottom: 13rem; } - .sm\:-mr-52 { - margin-right: -13rem; + .sm\:mb-56 { + margin-bottom: 14rem; } - .sm\:-mb-52 { - margin-bottom: -13rem; + .sm\:mb-60 { + margin-bottom: 15rem; } - .sm\:-ml-52 { - margin-left: -13rem; + .sm\:mb-64 { + margin-bottom: 16rem; } - .sm\:-mt-56 { - margin-top: -14rem; + .sm\:mb-72 { + margin-bottom: 18rem; } - .sm\:-mr-56 { - margin-right: -14rem; + .sm\:mb-80 { + margin-bottom: 20rem; } - .sm\:-mb-56 { - margin-bottom: -14rem; + .sm\:mb-96 { + margin-bottom: 24rem; } - .sm\:-ml-56 { - margin-left: -14rem; + .sm\:mb-auto { + margin-bottom: auto; } - .sm\:-mt-60 { - margin-top: -15rem; + .sm\:mb-px { + margin-bottom: 1px; } - .sm\:-mr-60 { - margin-right: -15rem; + .sm\:mb-0\.5 { + margin-bottom: 0.125rem; } - .sm\:-mb-60 { - margin-bottom: -15rem; + .sm\:mb-1\.5 { + margin-bottom: 0.375rem; } - .sm\:-ml-60 { - margin-left: -15rem; + .sm\:mb-2\.5 { + margin-bottom: 0.625rem; } - .sm\:-mt-64 { - margin-top: -16rem; + .sm\:mb-3\.5 { + margin-bottom: 0.875rem; } - .sm\:-mr-64 { - margin-right: -16rem; + .sm\:-mb-0 { + margin-bottom: 0px; } - .sm\:-mb-64 { - margin-bottom: -16rem; + .sm\:-mb-1 { + margin-bottom: -0.25rem; } - .sm\:-ml-64 { - margin-left: -16rem; + .sm\:-mb-2 { + margin-bottom: -0.5rem; } - .sm\:-mt-72 { - margin-top: -18rem; + .sm\:-mb-3 { + margin-bottom: -0.75rem; } - .sm\:-mr-72 { - margin-right: -18rem; + .sm\:-mb-4 { + margin-bottom: -1rem; } - .sm\:-mb-72 { - margin-bottom: -18rem; + .sm\:-mb-5 { + margin-bottom: -1.25rem; } - .sm\:-ml-72 { - margin-left: -18rem; + .sm\:-mb-6 { + margin-bottom: -1.5rem; } - .sm\:-mt-80 { - margin-top: -20rem; + .sm\:-mb-7 { + margin-bottom: -1.75rem; } - .sm\:-mr-80 { - margin-right: -20rem; + .sm\:-mb-8 { + margin-bottom: -2rem; } - .sm\:-mb-80 { - margin-bottom: -20rem; + .sm\:-mb-9 { + margin-bottom: -2.25rem; } - .sm\:-ml-80 { - margin-left: -20rem; + .sm\:-mb-10 { + margin-bottom: -2.5rem; } - .sm\:-mt-96 { - margin-top: -24rem; + .sm\:-mb-11 { + margin-bottom: -2.75rem; } - .sm\:-mr-96 { - margin-right: -24rem; + .sm\:-mb-12 { + margin-bottom: -3rem; } - .sm\:-mb-96 { - margin-bottom: -24rem; + .sm\:-mb-14 { + margin-bottom: -3.5rem; } - .sm\:-ml-96 { - margin-left: -24rem; + .sm\:-mb-16 { + margin-bottom: -4rem; } - .sm\:-mt-px { - margin-top: -1px; + .sm\:-mb-20 { + margin-bottom: -5rem; } - .sm\:-mr-px { - margin-right: -1px; + .sm\:-mb-24 { + margin-bottom: -6rem; } - .sm\:-mb-px { - margin-bottom: -1px; + .sm\:-mb-28 { + margin-bottom: -7rem; } - .sm\:-ml-px { - margin-left: -1px; + .sm\:-mb-32 { + margin-bottom: -8rem; } - .sm\:-mt-0\.5 { - margin-top: -0.125rem; + .sm\:-mb-36 { + margin-bottom: -9rem; } - .sm\:-mr-0\.5 { - margin-right: -0.125rem; + .sm\:-mb-40 { + margin-bottom: -10rem; } - .sm\:-mb-0\.5 { - margin-bottom: -0.125rem; + .sm\:-mb-44 { + margin-bottom: -11rem; } - .sm\:-ml-0\.5 { - margin-left: -0.125rem; + .sm\:-mb-48 { + margin-bottom: -12rem; } - .sm\:-mt-1\.5 { - margin-top: -0.375rem; + .sm\:-mb-52 { + margin-bottom: -13rem; } - .sm\:-mr-1\.5 { - margin-right: -0.375rem; + .sm\:-mb-56 { + margin-bottom: -14rem; } - .sm\:-mb-1\.5 { - margin-bottom: -0.375rem; + .sm\:-mb-60 { + margin-bottom: -15rem; } - .sm\:-ml-1\.5 { - margin-left: -0.375rem; + .sm\:-mb-64 { + margin-bottom: -16rem; } - .sm\:-mt-2\.5 { - margin-top: -0.625rem; + .sm\:-mb-72 { + margin-bottom: -18rem; } - .sm\:-mr-2\.5 { - margin-right: -0.625rem; + .sm\:-mb-80 { + margin-bottom: -20rem; } - .sm\:-mb-2\.5 { - margin-bottom: -0.625rem; + .sm\:-mb-96 { + margin-bottom: -24rem; } - .sm\:-ml-2\.5 { - margin-left: -0.625rem; + .sm\:-mb-px { + margin-bottom: -1px; } - .sm\:-mt-3\.5 { - margin-top: -0.875rem; + .sm\:-mb-0\.5 { + margin-bottom: -0.125rem; } - .sm\:-mr-3\.5 { - margin-right: -0.875rem; + .sm\:-mb-1\.5 { + margin-bottom: -0.375rem; + } + + .sm\:-mb-2\.5 { + margin-bottom: -0.625rem; } .sm\:-mb-3\.5 { margin-bottom: -0.875rem; } + .sm\:ml-0 { + margin-left: 0px; + } + + .sm\:ml-1 { + margin-left: 0.25rem; + } + + .sm\:ml-2 { + margin-left: 0.5rem; + } + + .sm\:ml-3 { + margin-left: 0.75rem; + } + + .sm\:ml-4 { + margin-left: 1rem; + } + + .sm\:ml-5 { + margin-left: 1.25rem; + } + + .sm\:ml-6 { + margin-left: 1.5rem; + } + + .sm\:ml-7 { + margin-left: 1.75rem; + } + + .sm\:ml-8 { + margin-left: 2rem; + } + + .sm\:ml-9 { + margin-left: 2.25rem; + } + + .sm\:ml-10 { + margin-left: 2.5rem; + } + + .sm\:ml-11 { + margin-left: 2.75rem; + } + + .sm\:ml-12 { + margin-left: 3rem; + } + + .sm\:ml-14 { + margin-left: 3.5rem; + } + + .sm\:ml-16 { + margin-left: 4rem; + } + + .sm\:ml-20 { + margin-left: 5rem; + } + + .sm\:ml-24 { + margin-left: 6rem; + } + + .sm\:ml-28 { + margin-left: 7rem; + } + + .sm\:ml-32 { + margin-left: 8rem; + } + + .sm\:ml-36 { + margin-left: 9rem; + } + + .sm\:ml-40 { + margin-left: 10rem; + } + + .sm\:ml-44 { + margin-left: 11rem; + } + + .sm\:ml-48 { + margin-left: 12rem; + } + + .sm\:ml-52 { + margin-left: 13rem; + } + + .sm\:ml-56 { + margin-left: 14rem; + } + + .sm\:ml-60 { + margin-left: 15rem; + } + + .sm\:ml-64 { + margin-left: 16rem; + } + + .sm\:ml-72 { + margin-left: 18rem; + } + + .sm\:ml-80 { + margin-left: 20rem; + } + + .sm\:ml-96 { + margin-left: 24rem; + } + + .sm\:ml-auto { + margin-left: auto; + } + + .sm\:ml-px { + margin-left: 1px; + } + + .sm\:ml-0\.5 { + margin-left: 0.125rem; + } + + .sm\:ml-1\.5 { + margin-left: 0.375rem; + } + + .sm\:ml-2\.5 { + margin-left: 0.625rem; + } + + .sm\:ml-3\.5 { + margin-left: 0.875rem; + } + + .sm\:-ml-0 { + margin-left: 0px; + } + + .sm\:-ml-1 { + margin-left: -0.25rem; + } + + .sm\:-ml-2 { + margin-left: -0.5rem; + } + + .sm\:-ml-3 { + margin-left: -0.75rem; + } + + .sm\:-ml-4 { + margin-left: -1rem; + } + + .sm\:-ml-5 { + margin-left: -1.25rem; + } + + .sm\:-ml-6 { + margin-left: -1.5rem; + } + + .sm\:-ml-7 { + margin-left: -1.75rem; + } + + .sm\:-ml-8 { + margin-left: -2rem; + } + + .sm\:-ml-9 { + margin-left: -2.25rem; + } + + .sm\:-ml-10 { + margin-left: -2.5rem; + } + + .sm\:-ml-11 { + margin-left: -2.75rem; + } + + .sm\:-ml-12 { + margin-left: -3rem; + } + + .sm\:-ml-14 { + margin-left: -3.5rem; + } + + .sm\:-ml-16 { + margin-left: -4rem; + } + + .sm\:-ml-20 { + margin-left: -5rem; + } + + .sm\:-ml-24 { + margin-left: -6rem; + } + + .sm\:-ml-28 { + margin-left: -7rem; + } + + .sm\:-ml-32 { + margin-left: -8rem; + } + + .sm\:-ml-36 { + margin-left: -9rem; + } + + .sm\:-ml-40 { + margin-left: -10rem; + } + + .sm\:-ml-44 { + margin-left: -11rem; + } + + .sm\:-ml-48 { + margin-left: -12rem; + } + + .sm\:-ml-52 { + margin-left: -13rem; + } + + .sm\:-ml-56 { + margin-left: -14rem; + } + + .sm\:-ml-60 { + margin-left: -15rem; + } + + .sm\:-ml-64 { + margin-left: -16rem; + } + + .sm\:-ml-72 { + margin-left: -18rem; + } + + .sm\:-ml-80 { + margin-left: -20rem; + } + + .sm\:-ml-96 { + margin-left: -24rem; + } + + .sm\:-ml-px { + margin-left: -1px; + } + + .sm\:-ml-0\.5 { + margin-left: -0.125rem; + } + + .sm\:-ml-1\.5 { + margin-left: -0.375rem; + } + + .sm\:-ml-2\.5 { + margin-left: -0.625rem; + } + .sm\:-ml-3\.5 { margin-left: -0.875rem; } @@ -70286,1848 +70286,1848 @@ video { margin: -0.875rem; } - .md\:my-0 { - margin-top: 0px; - margin-bottom: 0px; - } - .md\:mx-0 { margin-left: 0px; margin-right: 0px; } - .md\:my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; - } - .md\:mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; } - .md\:my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; - } - .md\:mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; } - .md\:my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; - } - .md\:mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; } - .md\:my-4 { - margin-top: 1rem; - margin-bottom: 1rem; - } - .md\:mx-4 { margin-left: 1rem; margin-right: 1rem; } - .md\:my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; - } - .md\:mx-5 { margin-left: 1.25rem; margin-right: 1.25rem; } - .md\:my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; - } - .md\:mx-6 { margin-left: 1.5rem; margin-right: 1.5rem; } - .md\:my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; - } - .md\:mx-7 { margin-left: 1.75rem; margin-right: 1.75rem; } - .md\:my-8 { - margin-top: 2rem; - margin-bottom: 2rem; - } - .md\:mx-8 { margin-left: 2rem; margin-right: 2rem; } - .md\:my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; - } - .md\:mx-9 { margin-left: 2.25rem; margin-right: 2.25rem; } - .md\:my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; - } - .md\:mx-10 { margin-left: 2.5rem; margin-right: 2.5rem; } - .md\:my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; - } - .md\:mx-11 { margin-left: 2.75rem; margin-right: 2.75rem; } - .md\:my-12 { - margin-top: 3rem; - margin-bottom: 3rem; - } - .md\:mx-12 { margin-left: 3rem; margin-right: 3rem; } - .md\:my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; - } - .md\:mx-14 { margin-left: 3.5rem; margin-right: 3.5rem; } - .md\:my-16 { - margin-top: 4rem; - margin-bottom: 4rem; - } - .md\:mx-16 { margin-left: 4rem; margin-right: 4rem; } - .md\:my-20 { - margin-top: 5rem; - margin-bottom: 5rem; - } - .md\:mx-20 { margin-left: 5rem; margin-right: 5rem; } - .md\:my-24 { - margin-top: 6rem; - margin-bottom: 6rem; - } - .md\:mx-24 { margin-left: 6rem; margin-right: 6rem; } - .md\:my-28 { - margin-top: 7rem; - margin-bottom: 7rem; - } - .md\:mx-28 { margin-left: 7rem; margin-right: 7rem; } - .md\:my-32 { - margin-top: 8rem; - margin-bottom: 8rem; - } - .md\:mx-32 { margin-left: 8rem; margin-right: 8rem; } - .md\:my-36 { - margin-top: 9rem; - margin-bottom: 9rem; - } - .md\:mx-36 { margin-left: 9rem; margin-right: 9rem; } - .md\:my-40 { - margin-top: 10rem; - margin-bottom: 10rem; - } - .md\:mx-40 { margin-left: 10rem; margin-right: 10rem; } - .md\:my-44 { - margin-top: 11rem; - margin-bottom: 11rem; - } - .md\:mx-44 { margin-left: 11rem; margin-right: 11rem; } - .md\:my-48 { - margin-top: 12rem; - margin-bottom: 12rem; - } - .md\:mx-48 { margin-left: 12rem; margin-right: 12rem; } - .md\:my-52 { - margin-top: 13rem; - margin-bottom: 13rem; - } - .md\:mx-52 { margin-left: 13rem; margin-right: 13rem; } - .md\:my-56 { - margin-top: 14rem; - margin-bottom: 14rem; - } - .md\:mx-56 { margin-left: 14rem; margin-right: 14rem; } - .md\:my-60 { - margin-top: 15rem; - margin-bottom: 15rem; - } - .md\:mx-60 { margin-left: 15rem; margin-right: 15rem; } - .md\:my-64 { - margin-top: 16rem; - margin-bottom: 16rem; - } - .md\:mx-64 { margin-left: 16rem; margin-right: 16rem; } - .md\:my-72 { - margin-top: 18rem; - margin-bottom: 18rem; - } - .md\:mx-72 { margin-left: 18rem; margin-right: 18rem; } - .md\:my-80 { - margin-top: 20rem; - margin-bottom: 20rem; - } - .md\:mx-80 { margin-left: 20rem; margin-right: 20rem; } - .md\:my-96 { - margin-top: 24rem; - margin-bottom: 24rem; - } - .md\:mx-96 { margin-left: 24rem; margin-right: 24rem; } - .md\:my-auto { - margin-top: auto; - margin-bottom: auto; - } - .md\:mx-auto { margin-left: auto; margin-right: auto; } - .md\:my-px { - margin-top: 1px; - margin-bottom: 1px; - } - .md\:mx-px { margin-left: 1px; margin-right: 1px; } - .md\:my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; - } - .md\:mx-0\.5 { margin-left: 0.125rem; margin-right: 0.125rem; } - .md\:my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; - } - .md\:mx-1\.5 { margin-left: 0.375rem; margin-right: 0.375rem; } - .md\:my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; - } - .md\:mx-2\.5 { margin-left: 0.625rem; margin-right: 0.625rem; } - .md\:my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; - } - .md\:mx-3\.5 { margin-left: 0.875rem; margin-right: 0.875rem; } - .md\:-my-0 { - margin-top: 0px; - margin-bottom: 0px; - } - .md\:-mx-0 { margin-left: 0px; margin-right: 0px; } - .md\:-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; - } - .md\:-mx-1 { margin-left: -0.25rem; margin-right: -0.25rem; } - .md\:-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; - } - .md\:-mx-2 { margin-left: -0.5rem; margin-right: -0.5rem; } - .md\:-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; - } - .md\:-mx-3 { margin-left: -0.75rem; margin-right: -0.75rem; } - .md\:-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; - } - .md\:-mx-4 { margin-left: -1rem; margin-right: -1rem; } - .md\:-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; - } - .md\:-mx-5 { margin-left: -1.25rem; margin-right: -1.25rem; } - .md\:-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; - } - .md\:-mx-6 { margin-left: -1.5rem; margin-right: -1.5rem; } - .md\:-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; - } - .md\:-mx-7 { margin-left: -1.75rem; margin-right: -1.75rem; } - .md\:-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; - } - .md\:-mx-8 { margin-left: -2rem; margin-right: -2rem; } - .md\:-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; - } - .md\:-mx-9 { margin-left: -2.25rem; margin-right: -2.25rem; } - .md\:-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; - } - .md\:-mx-10 { margin-left: -2.5rem; margin-right: -2.5rem; } - .md\:-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; - } - .md\:-mx-11 { margin-left: -2.75rem; margin-right: -2.75rem; } - .md\:-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; - } - .md\:-mx-12 { margin-left: -3rem; margin-right: -3rem; } - .md\:-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; - } - .md\:-mx-14 { margin-left: -3.5rem; margin-right: -3.5rem; } - .md\:-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; - } - .md\:-mx-16 { margin-left: -4rem; margin-right: -4rem; } - .md\:-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; - } - .md\:-mx-20 { margin-left: -5rem; margin-right: -5rem; } - .md\:-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; - } - .md\:-mx-24 { margin-left: -6rem; margin-right: -6rem; } - .md\:-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; - } - .md\:-mx-28 { margin-left: -7rem; margin-right: -7rem; } - .md\:-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; - } - .md\:-mx-32 { margin-left: -8rem; margin-right: -8rem; } - .md\:-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; - } - .md\:-mx-36 { margin-left: -9rem; margin-right: -9rem; } - .md\:-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; - } - .md\:-mx-40 { margin-left: -10rem; margin-right: -10rem; } - .md\:-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; - } - .md\:-mx-44 { margin-left: -11rem; margin-right: -11rem; } - .md\:-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; - } - .md\:-mx-48 { margin-left: -12rem; margin-right: -12rem; } - .md\:-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; - } - .md\:-mx-52 { margin-left: -13rem; margin-right: -13rem; } - .md\:-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; - } - .md\:-mx-56 { margin-left: -14rem; margin-right: -14rem; } - .md\:-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; - } - .md\:-mx-60 { margin-left: -15rem; margin-right: -15rem; } - .md\:-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; - } - .md\:-mx-64 { margin-left: -16rem; margin-right: -16rem; } - .md\:-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; - } - .md\:-mx-72 { margin-left: -18rem; margin-right: -18rem; } - .md\:-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; - } - .md\:-mx-80 { margin-left: -20rem; margin-right: -20rem; } - .md\:-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; - } - .md\:-mx-96 { margin-left: -24rem; margin-right: -24rem; } - .md\:-my-px { - margin-top: -1px; - margin-bottom: -1px; - } - .md\:-mx-px { margin-left: -1px; margin-right: -1px; } - .md\:-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; - } - .md\:-mx-0\.5 { margin-left: -0.125rem; margin-right: -0.125rem; } - .md\:-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; - } - .md\:-mx-1\.5 { margin-left: -0.375rem; margin-right: -0.375rem; } - .md\:-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; - } - .md\:-mx-2\.5 { margin-left: -0.625rem; margin-right: -0.625rem; } - .md\:-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; - } - .md\:-mx-3\.5 { margin-left: -0.875rem; margin-right: -0.875rem; } - .md\:mt-0 { + .md\:my-0 { margin-top: 0px; + margin-bottom: 0px; } - .md\:mr-0 { - margin-right: 0px; - } - - .md\:mb-0 { - margin-bottom: 0px; + .md\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } - .md\:ml-0 { - margin-left: 0px; + .md\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; } - .md\:mt-1 { - margin-top: 0.25rem; + .md\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; } - .md\:mr-1 { - margin-right: 0.25rem; + .md\:my-4 { + margin-top: 1rem; + margin-bottom: 1rem; } - .md\:mb-1 { - margin-bottom: 0.25rem; + .md\:my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; } - .md\:ml-1 { - margin-left: 0.25rem; + .md\:my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; } - .md\:mt-2 { - margin-top: 0.5rem; + .md\:my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; } - .md\:mr-2 { - margin-right: 0.5rem; + .md\:my-8 { + margin-top: 2rem; + margin-bottom: 2rem; } - .md\:mb-2 { - margin-bottom: 0.5rem; + .md\:my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; } - .md\:ml-2 { - margin-left: 0.5rem; + .md\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; } - .md\:mt-3 { - margin-top: 0.75rem; + .md\:my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; } - .md\:mr-3 { - margin-right: 0.75rem; + .md\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; } - .md\:mb-3 { - margin-bottom: 0.75rem; + .md\:my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; } - .md\:ml-3 { - margin-left: 0.75rem; + .md\:my-16 { + margin-top: 4rem; + margin-bottom: 4rem; } - .md\:mt-4 { - margin-top: 1rem; + .md\:my-20 { + margin-top: 5rem; + margin-bottom: 5rem; } - .md\:mr-4 { - margin-right: 1rem; + .md\:my-24 { + margin-top: 6rem; + margin-bottom: 6rem; } - .md\:mb-4 { - margin-bottom: 1rem; + .md\:my-28 { + margin-top: 7rem; + margin-bottom: 7rem; } - .md\:ml-4 { - margin-left: 1rem; + .md\:my-32 { + margin-top: 8rem; + margin-bottom: 8rem; } - .md\:mt-5 { - margin-top: 1.25rem; + .md\:my-36 { + margin-top: 9rem; + margin-bottom: 9rem; } - .md\:mr-5 { - margin-right: 1.25rem; + .md\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; } - .md\:mb-5 { - margin-bottom: 1.25rem; + .md\:my-44 { + margin-top: 11rem; + margin-bottom: 11rem; } - .md\:ml-5 { - margin-left: 1.25rem; + .md\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; } - .md\:mt-6 { - margin-top: 1.5rem; + .md\:my-52 { + margin-top: 13rem; + margin-bottom: 13rem; } - .md\:mr-6 { - margin-right: 1.5rem; + .md\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; } - .md\:mb-6 { - margin-bottom: 1.5rem; + .md\:my-60 { + margin-top: 15rem; + margin-bottom: 15rem; } - .md\:ml-6 { - margin-left: 1.5rem; + .md\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; } - .md\:mt-7 { - margin-top: 1.75rem; + .md\:my-72 { + margin-top: 18rem; + margin-bottom: 18rem; } - .md\:mr-7 { - margin-right: 1.75rem; + .md\:my-80 { + margin-top: 20rem; + margin-bottom: 20rem; } - .md\:mb-7 { - margin-bottom: 1.75rem; + .md\:my-96 { + margin-top: 24rem; + margin-bottom: 24rem; } - .md\:ml-7 { - margin-left: 1.75rem; + .md\:my-auto { + margin-top: auto; + margin-bottom: auto; } - .md\:mt-8 { - margin-top: 2rem; + .md\:my-px { + margin-top: 1px; + margin-bottom: 1px; } - .md\:mr-8 { - margin-right: 2rem; + .md\:my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; } - .md\:mb-8 { - margin-bottom: 2rem; + .md\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; } - .md\:ml-8 { - margin-left: 2rem; + .md\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; } - .md\:mt-9 { - margin-top: 2.25rem; + .md\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; } - .md\:mr-9 { - margin-right: 2.25rem; + .md\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .md\:mb-9 { - margin-bottom: 2.25rem; + .md\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } - .md\:ml-9 { - margin-left: 2.25rem; + .md\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } - .md\:mt-10 { - margin-top: 2.5rem; + .md\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } - .md\:mr-10 { - margin-right: 2.5rem; + .md\:-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } - .md\:mb-10 { - margin-bottom: 2.5rem; + .md\:-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } - .md\:ml-10 { - margin-left: 2.5rem; + .md\:-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } - .md\:mt-11 { - margin-top: 2.75rem; + .md\:-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } - .md\:mr-11 { - margin-right: 2.75rem; + .md\:-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } - .md\:mb-11 { - margin-bottom: 2.75rem; + .md\:-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } - .md\:ml-11 { - margin-left: 2.75rem; + .md\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } - .md\:mt-12 { - margin-top: 3rem; + .md\:-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } - .md\:mr-12 { - margin-right: 3rem; + .md\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } - .md\:mb-12 { - margin-bottom: 3rem; + .md\:-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } - .md\:ml-12 { - margin-left: 3rem; + .md\:-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } - .md\:mt-14 { - margin-top: 3.5rem; + .md\:-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } - .md\:mr-14 { - margin-right: 3.5rem; + .md\:-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } - .md\:mb-14 { - margin-bottom: 3.5rem; + .md\:-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } - .md\:ml-14 { - margin-left: 3.5rem; + .md\:-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } - .md\:mt-16 { - margin-top: 4rem; + .md\:-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } - .md\:mr-16 { - margin-right: 4rem; + .md\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } - .md\:mb-16 { - margin-bottom: 4rem; + .md\:-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } - .md\:ml-16 { - margin-left: 4rem; + .md\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } - .md\:mt-20 { - margin-top: 5rem; + .md\:-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } - .md\:mr-20 { - margin-right: 5rem; + .md\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } - .md\:mb-20 { - margin-bottom: 5rem; + .md\:-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } - .md\:ml-20 { - margin-left: 5rem; + .md\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } - .md\:mt-24 { - margin-top: 6rem; + .md\:-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } - .md\:mr-24 { - margin-right: 6rem; + .md\:-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } - .md\:mb-24 { - margin-bottom: 6rem; + .md\:-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } - .md\:ml-24 { - margin-left: 6rem; + .md\:-my-px { + margin-top: -1px; + margin-bottom: -1px; } - .md\:mt-28 { - margin-top: 7rem; + .md\:-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } - .md\:mr-28 { - margin-right: 7rem; + .md\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } - .md\:mb-28 { - margin-bottom: 7rem; + .md\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } - .md\:ml-28 { - margin-left: 7rem; + .md\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } - .md\:mt-32 { - margin-top: 8rem; + .md\:mt-0 { + margin-top: 0px; } - .md\:mr-32 { - margin-right: 8rem; + .md\:mt-1 { + margin-top: 0.25rem; } - .md\:mb-32 { - margin-bottom: 8rem; + .md\:mt-2 { + margin-top: 0.5rem; } - .md\:ml-32 { - margin-left: 8rem; + .md\:mt-3 { + margin-top: 0.75rem; } - .md\:mt-36 { - margin-top: 9rem; + .md\:mt-4 { + margin-top: 1rem; } - .md\:mr-36 { - margin-right: 9rem; + .md\:mt-5 { + margin-top: 1.25rem; } - .md\:mb-36 { - margin-bottom: 9rem; + .md\:mt-6 { + margin-top: 1.5rem; } - .md\:ml-36 { - margin-left: 9rem; + .md\:mt-7 { + margin-top: 1.75rem; } - .md\:mt-40 { - margin-top: 10rem; + .md\:mt-8 { + margin-top: 2rem; } - .md\:mr-40 { - margin-right: 10rem; + .md\:mt-9 { + margin-top: 2.25rem; } - .md\:mb-40 { - margin-bottom: 10rem; + .md\:mt-10 { + margin-top: 2.5rem; } - .md\:ml-40 { - margin-left: 10rem; + .md\:mt-11 { + margin-top: 2.75rem; } - .md\:mt-44 { - margin-top: 11rem; + .md\:mt-12 { + margin-top: 3rem; } - .md\:mr-44 { - margin-right: 11rem; + .md\:mt-14 { + margin-top: 3.5rem; } - .md\:mb-44 { - margin-bottom: 11rem; + .md\:mt-16 { + margin-top: 4rem; } - .md\:ml-44 { - margin-left: 11rem; + .md\:mt-20 { + margin-top: 5rem; } - .md\:mt-48 { - margin-top: 12rem; + .md\:mt-24 { + margin-top: 6rem; } - .md\:mr-48 { - margin-right: 12rem; + .md\:mt-28 { + margin-top: 7rem; } - .md\:mb-48 { - margin-bottom: 12rem; + .md\:mt-32 { + margin-top: 8rem; } - .md\:ml-48 { - margin-left: 12rem; + .md\:mt-36 { + margin-top: 9rem; } - .md\:mt-52 { - margin-top: 13rem; + .md\:mt-40 { + margin-top: 10rem; } - .md\:mr-52 { - margin-right: 13rem; + .md\:mt-44 { + margin-top: 11rem; } - .md\:mb-52 { - margin-bottom: 13rem; + .md\:mt-48 { + margin-top: 12rem; } - .md\:ml-52 { - margin-left: 13rem; + .md\:mt-52 { + margin-top: 13rem; } .md\:mt-56 { margin-top: 14rem; } - .md\:mr-56 { - margin-right: 14rem; + .md\:mt-60 { + margin-top: 15rem; } - .md\:mb-56 { - margin-bottom: 14rem; + .md\:mt-64 { + margin-top: 16rem; } - .md\:ml-56 { - margin-left: 14rem; + .md\:mt-72 { + margin-top: 18rem; } - .md\:mt-60 { - margin-top: 15rem; + .md\:mt-80 { + margin-top: 20rem; } - .md\:mr-60 { - margin-right: 15rem; + .md\:mt-96 { + margin-top: 24rem; } - .md\:mb-60 { - margin-bottom: 15rem; + .md\:mt-auto { + margin-top: auto; } - .md\:ml-60 { - margin-left: 15rem; + .md\:mt-px { + margin-top: 1px; } - .md\:mt-64 { - margin-top: 16rem; + .md\:mt-0\.5 { + margin-top: 0.125rem; } - .md\:mr-64 { - margin-right: 16rem; + .md\:mt-1\.5 { + margin-top: 0.375rem; } - .md\:mb-64 { - margin-bottom: 16rem; + .md\:mt-2\.5 { + margin-top: 0.625rem; } - .md\:ml-64 { - margin-left: 16rem; + .md\:mt-3\.5 { + margin-top: 0.875rem; } - .md\:mt-72 { - margin-top: 18rem; + .md\:-mt-0 { + margin-top: 0px; } - .md\:mr-72 { - margin-right: 18rem; + .md\:-mt-1 { + margin-top: -0.25rem; } - .md\:mb-72 { - margin-bottom: 18rem; + .md\:-mt-2 { + margin-top: -0.5rem; } - .md\:ml-72 { - margin-left: 18rem; + .md\:-mt-3 { + margin-top: -0.75rem; } - .md\:mt-80 { - margin-top: 20rem; + .md\:-mt-4 { + margin-top: -1rem; } - .md\:mr-80 { - margin-right: 20rem; + .md\:-mt-5 { + margin-top: -1.25rem; } - .md\:mb-80 { - margin-bottom: 20rem; + .md\:-mt-6 { + margin-top: -1.5rem; } - .md\:ml-80 { - margin-left: 20rem; + .md\:-mt-7 { + margin-top: -1.75rem; } - .md\:mt-96 { - margin-top: 24rem; + .md\:-mt-8 { + margin-top: -2rem; } - .md\:mr-96 { - margin-right: 24rem; + .md\:-mt-9 { + margin-top: -2.25rem; } - .md\:mb-96 { - margin-bottom: 24rem; + .md\:-mt-10 { + margin-top: -2.5rem; } - .md\:ml-96 { - margin-left: 24rem; + .md\:-mt-11 { + margin-top: -2.75rem; } - .md\:mt-auto { - margin-top: auto; + .md\:-mt-12 { + margin-top: -3rem; } - .md\:mr-auto { - margin-right: auto; + .md\:-mt-14 { + margin-top: -3.5rem; } - .md\:mb-auto { - margin-bottom: auto; + .md\:-mt-16 { + margin-top: -4rem; } - .md\:ml-auto { - margin-left: auto; + .md\:-mt-20 { + margin-top: -5rem; } - .md\:mt-px { - margin-top: 1px; + .md\:-mt-24 { + margin-top: -6rem; } - .md\:mr-px { - margin-right: 1px; + .md\:-mt-28 { + margin-top: -7rem; } - .md\:mb-px { - margin-bottom: 1px; + .md\:-mt-32 { + margin-top: -8rem; } - .md\:ml-px { - margin-left: 1px; + .md\:-mt-36 { + margin-top: -9rem; } - .md\:mt-0\.5 { - margin-top: 0.125rem; + .md\:-mt-40 { + margin-top: -10rem; } - .md\:mr-0\.5 { - margin-right: 0.125rem; + .md\:-mt-44 { + margin-top: -11rem; } - .md\:mb-0\.5 { - margin-bottom: 0.125rem; + .md\:-mt-48 { + margin-top: -12rem; } - .md\:ml-0\.5 { - margin-left: 0.125rem; + .md\:-mt-52 { + margin-top: -13rem; } - .md\:mt-1\.5 { - margin-top: 0.375rem; + .md\:-mt-56 { + margin-top: -14rem; } - .md\:mr-1\.5 { - margin-right: 0.375rem; + .md\:-mt-60 { + margin-top: -15rem; } - .md\:mb-1\.5 { - margin-bottom: 0.375rem; + .md\:-mt-64 { + margin-top: -16rem; } - .md\:ml-1\.5 { - margin-left: 0.375rem; + .md\:-mt-72 { + margin-top: -18rem; } - .md\:mt-2\.5 { - margin-top: 0.625rem; + .md\:-mt-80 { + margin-top: -20rem; } - .md\:mr-2\.5 { - margin-right: 0.625rem; + .md\:-mt-96 { + margin-top: -24rem; } - .md\:mb-2\.5 { - margin-bottom: 0.625rem; + .md\:-mt-px { + margin-top: -1px; } - .md\:ml-2\.5 { - margin-left: 0.625rem; + .md\:-mt-0\.5 { + margin-top: -0.125rem; } - .md\:mt-3\.5 { - margin-top: 0.875rem; + .md\:-mt-1\.5 { + margin-top: -0.375rem; } - .md\:mr-3\.5 { - margin-right: 0.875rem; + .md\:-mt-2\.5 { + margin-top: -0.625rem; } - .md\:mb-3\.5 { - margin-bottom: 0.875rem; + .md\:-mt-3\.5 { + margin-top: -0.875rem; } - .md\:ml-3\.5 { - margin-left: 0.875rem; + .md\:mr-0 { + margin-right: 0px; } - .md\:-mt-0 { - margin-top: 0px; + .md\:mr-1 { + margin-right: 0.25rem; } - .md\:-mr-0 { - margin-right: 0px; + .md\:mr-2 { + margin-right: 0.5rem; } - .md\:-mb-0 { - margin-bottom: 0px; + .md\:mr-3 { + margin-right: 0.75rem; } - .md\:-ml-0 { - margin-left: 0px; + .md\:mr-4 { + margin-right: 1rem; } - .md\:-mt-1 { - margin-top: -0.25rem; + .md\:mr-5 { + margin-right: 1.25rem; } - .md\:-mr-1 { - margin-right: -0.25rem; + .md\:mr-6 { + margin-right: 1.5rem; } - .md\:-mb-1 { - margin-bottom: -0.25rem; + .md\:mr-7 { + margin-right: 1.75rem; } - .md\:-ml-1 { - margin-left: -0.25rem; + .md\:mr-8 { + margin-right: 2rem; } - .md\:-mt-2 { - margin-top: -0.5rem; + .md\:mr-9 { + margin-right: 2.25rem; } - .md\:-mr-2 { - margin-right: -0.5rem; + .md\:mr-10 { + margin-right: 2.5rem; } - .md\:-mb-2 { - margin-bottom: -0.5rem; + .md\:mr-11 { + margin-right: 2.75rem; } - .md\:-ml-2 { - margin-left: -0.5rem; + .md\:mr-12 { + margin-right: 3rem; } - .md\:-mt-3 { - margin-top: -0.75rem; + .md\:mr-14 { + margin-right: 3.5rem; } - .md\:-mr-3 { - margin-right: -0.75rem; + .md\:mr-16 { + margin-right: 4rem; } - .md\:-mb-3 { - margin-bottom: -0.75rem; + .md\:mr-20 { + margin-right: 5rem; } - .md\:-ml-3 { - margin-left: -0.75rem; + .md\:mr-24 { + margin-right: 6rem; } - .md\:-mt-4 { - margin-top: -1rem; + .md\:mr-28 { + margin-right: 7rem; } - .md\:-mr-4 { - margin-right: -1rem; + .md\:mr-32 { + margin-right: 8rem; } - .md\:-mb-4 { - margin-bottom: -1rem; + .md\:mr-36 { + margin-right: 9rem; } - .md\:-ml-4 { - margin-left: -1rem; + .md\:mr-40 { + margin-right: 10rem; } - .md\:-mt-5 { - margin-top: -1.25rem; + .md\:mr-44 { + margin-right: 11rem; } - .md\:-mr-5 { - margin-right: -1.25rem; + .md\:mr-48 { + margin-right: 12rem; } - .md\:-mb-5 { - margin-bottom: -1.25rem; + .md\:mr-52 { + margin-right: 13rem; } - .md\:-ml-5 { - margin-left: -1.25rem; + .md\:mr-56 { + margin-right: 14rem; } - .md\:-mt-6 { - margin-top: -1.5rem; + .md\:mr-60 { + margin-right: 15rem; } - .md\:-mr-6 { - margin-right: -1.5rem; + .md\:mr-64 { + margin-right: 16rem; } - .md\:-mb-6 { - margin-bottom: -1.5rem; + .md\:mr-72 { + margin-right: 18rem; } - .md\:-ml-6 { - margin-left: -1.5rem; + .md\:mr-80 { + margin-right: 20rem; } - .md\:-mt-7 { - margin-top: -1.75rem; + .md\:mr-96 { + margin-right: 24rem; } - .md\:-mr-7 { - margin-right: -1.75rem; + .md\:mr-auto { + margin-right: auto; } - .md\:-mb-7 { - margin-bottom: -1.75rem; + .md\:mr-px { + margin-right: 1px; } - .md\:-ml-7 { - margin-left: -1.75rem; + .md\:mr-0\.5 { + margin-right: 0.125rem; } - .md\:-mt-8 { - margin-top: -2rem; + .md\:mr-1\.5 { + margin-right: 0.375rem; } - .md\:-mr-8 { - margin-right: -2rem; + .md\:mr-2\.5 { + margin-right: 0.625rem; } - .md\:-mb-8 { - margin-bottom: -2rem; + .md\:mr-3\.5 { + margin-right: 0.875rem; } - .md\:-ml-8 { - margin-left: -2rem; + .md\:-mr-0 { + margin-right: 0px; } - .md\:-mt-9 { - margin-top: -2.25rem; + .md\:-mr-1 { + margin-right: -0.25rem; } - .md\:-mr-9 { - margin-right: -2.25rem; + .md\:-mr-2 { + margin-right: -0.5rem; } - .md\:-mb-9 { - margin-bottom: -2.25rem; + .md\:-mr-3 { + margin-right: -0.75rem; } - .md\:-ml-9 { - margin-left: -2.25rem; + .md\:-mr-4 { + margin-right: -1rem; } - .md\:-mt-10 { - margin-top: -2.5rem; + .md\:-mr-5 { + margin-right: -1.25rem; } - .md\:-mr-10 { - margin-right: -2.5rem; + .md\:-mr-6 { + margin-right: -1.5rem; } - .md\:-mb-10 { - margin-bottom: -2.5rem; + .md\:-mr-7 { + margin-right: -1.75rem; } - .md\:-ml-10 { - margin-left: -2.5rem; + .md\:-mr-8 { + margin-right: -2rem; } - .md\:-mt-11 { - margin-top: -2.75rem; + .md\:-mr-9 { + margin-right: -2.25rem; + } + + .md\:-mr-10 { + margin-right: -2.5rem; } .md\:-mr-11 { margin-right: -2.75rem; } - .md\:-mb-11 { - margin-bottom: -2.75rem; + .md\:-mr-12 { + margin-right: -3rem; } - .md\:-ml-11 { - margin-left: -2.75rem; + .md\:-mr-14 { + margin-right: -3.5rem; } - .md\:-mt-12 { - margin-top: -3rem; + .md\:-mr-16 { + margin-right: -4rem; } - .md\:-mr-12 { - margin-right: -3rem; + .md\:-mr-20 { + margin-right: -5rem; } - .md\:-mb-12 { - margin-bottom: -3rem; + .md\:-mr-24 { + margin-right: -6rem; } - .md\:-ml-12 { - margin-left: -3rem; + .md\:-mr-28 { + margin-right: -7rem; } - .md\:-mt-14 { - margin-top: -3.5rem; + .md\:-mr-32 { + margin-right: -8rem; } - .md\:-mr-14 { - margin-right: -3.5rem; + .md\:-mr-36 { + margin-right: -9rem; } - .md\:-mb-14 { - margin-bottom: -3.5rem; + .md\:-mr-40 { + margin-right: -10rem; } - .md\:-ml-14 { - margin-left: -3.5rem; + .md\:-mr-44 { + margin-right: -11rem; } - .md\:-mt-16 { - margin-top: -4rem; + .md\:-mr-48 { + margin-right: -12rem; } - .md\:-mr-16 { - margin-right: -4rem; + .md\:-mr-52 { + margin-right: -13rem; } - .md\:-mb-16 { - margin-bottom: -4rem; + .md\:-mr-56 { + margin-right: -14rem; } - .md\:-ml-16 { - margin-left: -4rem; + .md\:-mr-60 { + margin-right: -15rem; } - .md\:-mt-20 { - margin-top: -5rem; + .md\:-mr-64 { + margin-right: -16rem; } - .md\:-mr-20 { - margin-right: -5rem; + .md\:-mr-72 { + margin-right: -18rem; } - .md\:-mb-20 { - margin-bottom: -5rem; + .md\:-mr-80 { + margin-right: -20rem; } - .md\:-ml-20 { - margin-left: -5rem; + .md\:-mr-96 { + margin-right: -24rem; } - .md\:-mt-24 { - margin-top: -6rem; + .md\:-mr-px { + margin-right: -1px; } - .md\:-mr-24 { - margin-right: -6rem; + .md\:-mr-0\.5 { + margin-right: -0.125rem; } - .md\:-mb-24 { - margin-bottom: -6rem; + .md\:-mr-1\.5 { + margin-right: -0.375rem; } - .md\:-ml-24 { - margin-left: -6rem; + .md\:-mr-2\.5 { + margin-right: -0.625rem; } - .md\:-mt-28 { - margin-top: -7rem; + .md\:-mr-3\.5 { + margin-right: -0.875rem; } - .md\:-mr-28 { - margin-right: -7rem; + .md\:mb-0 { + margin-bottom: 0px; } - .md\:-mb-28 { - margin-bottom: -7rem; + .md\:mb-1 { + margin-bottom: 0.25rem; } - .md\:-ml-28 { - margin-left: -7rem; + .md\:mb-2 { + margin-bottom: 0.5rem; } - .md\:-mt-32 { - margin-top: -8rem; + .md\:mb-3 { + margin-bottom: 0.75rem; } - .md\:-mr-32 { - margin-right: -8rem; + .md\:mb-4 { + margin-bottom: 1rem; } - .md\:-mb-32 { - margin-bottom: -8rem; + .md\:mb-5 { + margin-bottom: 1.25rem; } - .md\:-ml-32 { - margin-left: -8rem; + .md\:mb-6 { + margin-bottom: 1.5rem; } - .md\:-mt-36 { - margin-top: -9rem; + .md\:mb-7 { + margin-bottom: 1.75rem; } - .md\:-mr-36 { - margin-right: -9rem; + .md\:mb-8 { + margin-bottom: 2rem; } - .md\:-mb-36 { - margin-bottom: -9rem; + .md\:mb-9 { + margin-bottom: 2.25rem; } - .md\:-ml-36 { - margin-left: -9rem; + .md\:mb-10 { + margin-bottom: 2.5rem; } - .md\:-mt-40 { - margin-top: -10rem; + .md\:mb-11 { + margin-bottom: 2.75rem; } - .md\:-mr-40 { - margin-right: -10rem; + .md\:mb-12 { + margin-bottom: 3rem; } - .md\:-mb-40 { - margin-bottom: -10rem; + .md\:mb-14 { + margin-bottom: 3.5rem; } - .md\:-ml-40 { - margin-left: -10rem; + .md\:mb-16 { + margin-bottom: 4rem; } - .md\:-mt-44 { - margin-top: -11rem; + .md\:mb-20 { + margin-bottom: 5rem; } - .md\:-mr-44 { - margin-right: -11rem; + .md\:mb-24 { + margin-bottom: 6rem; } - .md\:-mb-44 { - margin-bottom: -11rem; + .md\:mb-28 { + margin-bottom: 7rem; } - .md\:-ml-44 { - margin-left: -11rem; + .md\:mb-32 { + margin-bottom: 8rem; } - .md\:-mt-48 { - margin-top: -12rem; + .md\:mb-36 { + margin-bottom: 9rem; } - .md\:-mr-48 { - margin-right: -12rem; + .md\:mb-40 { + margin-bottom: 10rem; } - .md\:-mb-48 { - margin-bottom: -12rem; + .md\:mb-44 { + margin-bottom: 11rem; } - .md\:-ml-48 { - margin-left: -12rem; + .md\:mb-48 { + margin-bottom: 12rem; } - .md\:-mt-52 { - margin-top: -13rem; + .md\:mb-52 { + margin-bottom: 13rem; } - .md\:-mr-52 { - margin-right: -13rem; + .md\:mb-56 { + margin-bottom: 14rem; } - .md\:-mb-52 { - margin-bottom: -13rem; + .md\:mb-60 { + margin-bottom: 15rem; } - .md\:-ml-52 { - margin-left: -13rem; + .md\:mb-64 { + margin-bottom: 16rem; } - .md\:-mt-56 { - margin-top: -14rem; + .md\:mb-72 { + margin-bottom: 18rem; } - .md\:-mr-56 { - margin-right: -14rem; + .md\:mb-80 { + margin-bottom: 20rem; } - .md\:-mb-56 { - margin-bottom: -14rem; + .md\:mb-96 { + margin-bottom: 24rem; } - .md\:-ml-56 { - margin-left: -14rem; + .md\:mb-auto { + margin-bottom: auto; } - .md\:-mt-60 { - margin-top: -15rem; + .md\:mb-px { + margin-bottom: 1px; } - .md\:-mr-60 { - margin-right: -15rem; + .md\:mb-0\.5 { + margin-bottom: 0.125rem; } - .md\:-mb-60 { - margin-bottom: -15rem; + .md\:mb-1\.5 { + margin-bottom: 0.375rem; } - .md\:-ml-60 { - margin-left: -15rem; + .md\:mb-2\.5 { + margin-bottom: 0.625rem; } - .md\:-mt-64 { - margin-top: -16rem; + .md\:mb-3\.5 { + margin-bottom: 0.875rem; } - .md\:-mr-64 { - margin-right: -16rem; + .md\:-mb-0 { + margin-bottom: 0px; } - .md\:-mb-64 { - margin-bottom: -16rem; + .md\:-mb-1 { + margin-bottom: -0.25rem; } - .md\:-ml-64 { - margin-left: -16rem; + .md\:-mb-2 { + margin-bottom: -0.5rem; } - .md\:-mt-72 { - margin-top: -18rem; + .md\:-mb-3 { + margin-bottom: -0.75rem; } - .md\:-mr-72 { - margin-right: -18rem; + .md\:-mb-4 { + margin-bottom: -1rem; } - .md\:-mb-72 { - margin-bottom: -18rem; + .md\:-mb-5 { + margin-bottom: -1.25rem; } - .md\:-ml-72 { - margin-left: -18rem; + .md\:-mb-6 { + margin-bottom: -1.5rem; } - .md\:-mt-80 { - margin-top: -20rem; + .md\:-mb-7 { + margin-bottom: -1.75rem; } - .md\:-mr-80 { - margin-right: -20rem; + .md\:-mb-8 { + margin-bottom: -2rem; } - .md\:-mb-80 { - margin-bottom: -20rem; + .md\:-mb-9 { + margin-bottom: -2.25rem; } - .md\:-ml-80 { - margin-left: -20rem; + .md\:-mb-10 { + margin-bottom: -2.5rem; } - .md\:-mt-96 { - margin-top: -24rem; + .md\:-mb-11 { + margin-bottom: -2.75rem; } - .md\:-mr-96 { - margin-right: -24rem; + .md\:-mb-12 { + margin-bottom: -3rem; } - .md\:-mb-96 { - margin-bottom: -24rem; + .md\:-mb-14 { + margin-bottom: -3.5rem; } - .md\:-ml-96 { - margin-left: -24rem; + .md\:-mb-16 { + margin-bottom: -4rem; } - .md\:-mt-px { - margin-top: -1px; + .md\:-mb-20 { + margin-bottom: -5rem; } - .md\:-mr-px { - margin-right: -1px; + .md\:-mb-24 { + margin-bottom: -6rem; } - .md\:-mb-px { - margin-bottom: -1px; + .md\:-mb-28 { + margin-bottom: -7rem; } - .md\:-ml-px { - margin-left: -1px; + .md\:-mb-32 { + margin-bottom: -8rem; } - .md\:-mt-0\.5 { - margin-top: -0.125rem; + .md\:-mb-36 { + margin-bottom: -9rem; } - .md\:-mr-0\.5 { - margin-right: -0.125rem; + .md\:-mb-40 { + margin-bottom: -10rem; } - .md\:-mb-0\.5 { - margin-bottom: -0.125rem; + .md\:-mb-44 { + margin-bottom: -11rem; } - .md\:-ml-0\.5 { - margin-left: -0.125rem; + .md\:-mb-48 { + margin-bottom: -12rem; } - .md\:-mt-1\.5 { - margin-top: -0.375rem; + .md\:-mb-52 { + margin-bottom: -13rem; } - .md\:-mr-1\.5 { - margin-right: -0.375rem; + .md\:-mb-56 { + margin-bottom: -14rem; } - .md\:-mb-1\.5 { - margin-bottom: -0.375rem; + .md\:-mb-60 { + margin-bottom: -15rem; } - .md\:-ml-1\.5 { - margin-left: -0.375rem; + .md\:-mb-64 { + margin-bottom: -16rem; } - .md\:-mt-2\.5 { - margin-top: -0.625rem; + .md\:-mb-72 { + margin-bottom: -18rem; } - .md\:-mr-2\.5 { - margin-right: -0.625rem; + .md\:-mb-80 { + margin-bottom: -20rem; } - .md\:-mb-2\.5 { - margin-bottom: -0.625rem; + .md\:-mb-96 { + margin-bottom: -24rem; } - .md\:-ml-2\.5 { - margin-left: -0.625rem; + .md\:-mb-px { + margin-bottom: -1px; } - .md\:-mt-3\.5 { - margin-top: -0.875rem; + .md\:-mb-0\.5 { + margin-bottom: -0.125rem; } - .md\:-mr-3\.5 { - margin-right: -0.875rem; + .md\:-mb-1\.5 { + margin-bottom: -0.375rem; + } + + .md\:-mb-2\.5 { + margin-bottom: -0.625rem; } .md\:-mb-3\.5 { margin-bottom: -0.875rem; } + .md\:ml-0 { + margin-left: 0px; + } + + .md\:ml-1 { + margin-left: 0.25rem; + } + + .md\:ml-2 { + margin-left: 0.5rem; + } + + .md\:ml-3 { + margin-left: 0.75rem; + } + + .md\:ml-4 { + margin-left: 1rem; + } + + .md\:ml-5 { + margin-left: 1.25rem; + } + + .md\:ml-6 { + margin-left: 1.5rem; + } + + .md\:ml-7 { + margin-left: 1.75rem; + } + + .md\:ml-8 { + margin-left: 2rem; + } + + .md\:ml-9 { + margin-left: 2.25rem; + } + + .md\:ml-10 { + margin-left: 2.5rem; + } + + .md\:ml-11 { + margin-left: 2.75rem; + } + + .md\:ml-12 { + margin-left: 3rem; + } + + .md\:ml-14 { + margin-left: 3.5rem; + } + + .md\:ml-16 { + margin-left: 4rem; + } + + .md\:ml-20 { + margin-left: 5rem; + } + + .md\:ml-24 { + margin-left: 6rem; + } + + .md\:ml-28 { + margin-left: 7rem; + } + + .md\:ml-32 { + margin-left: 8rem; + } + + .md\:ml-36 { + margin-left: 9rem; + } + + .md\:ml-40 { + margin-left: 10rem; + } + + .md\:ml-44 { + margin-left: 11rem; + } + + .md\:ml-48 { + margin-left: 12rem; + } + + .md\:ml-52 { + margin-left: 13rem; + } + + .md\:ml-56 { + margin-left: 14rem; + } + + .md\:ml-60 { + margin-left: 15rem; + } + + .md\:ml-64 { + margin-left: 16rem; + } + + .md\:ml-72 { + margin-left: 18rem; + } + + .md\:ml-80 { + margin-left: 20rem; + } + + .md\:ml-96 { + margin-left: 24rem; + } + + .md\:ml-auto { + margin-left: auto; + } + + .md\:ml-px { + margin-left: 1px; + } + + .md\:ml-0\.5 { + margin-left: 0.125rem; + } + + .md\:ml-1\.5 { + margin-left: 0.375rem; + } + + .md\:ml-2\.5 { + margin-left: 0.625rem; + } + + .md\:ml-3\.5 { + margin-left: 0.875rem; + } + + .md\:-ml-0 { + margin-left: 0px; + } + + .md\:-ml-1 { + margin-left: -0.25rem; + } + + .md\:-ml-2 { + margin-left: -0.5rem; + } + + .md\:-ml-3 { + margin-left: -0.75rem; + } + + .md\:-ml-4 { + margin-left: -1rem; + } + + .md\:-ml-5 { + margin-left: -1.25rem; + } + + .md\:-ml-6 { + margin-left: -1.5rem; + } + + .md\:-ml-7 { + margin-left: -1.75rem; + } + + .md\:-ml-8 { + margin-left: -2rem; + } + + .md\:-ml-9 { + margin-left: -2.25rem; + } + + .md\:-ml-10 { + margin-left: -2.5rem; + } + + .md\:-ml-11 { + margin-left: -2.75rem; + } + + .md\:-ml-12 { + margin-left: -3rem; + } + + .md\:-ml-14 { + margin-left: -3.5rem; + } + + .md\:-ml-16 { + margin-left: -4rem; + } + + .md\:-ml-20 { + margin-left: -5rem; + } + + .md\:-ml-24 { + margin-left: -6rem; + } + + .md\:-ml-28 { + margin-left: -7rem; + } + + .md\:-ml-32 { + margin-left: -8rem; + } + + .md\:-ml-36 { + margin-left: -9rem; + } + + .md\:-ml-40 { + margin-left: -10rem; + } + + .md\:-ml-44 { + margin-left: -11rem; + } + + .md\:-ml-48 { + margin-left: -12rem; + } + + .md\:-ml-52 { + margin-left: -13rem; + } + + .md\:-ml-56 { + margin-left: -14rem; + } + + .md\:-ml-60 { + margin-left: -15rem; + } + + .md\:-ml-64 { + margin-left: -16rem; + } + + .md\:-ml-72 { + margin-left: -18rem; + } + + .md\:-ml-80 { + margin-left: -20rem; + } + + .md\:-ml-96 { + margin-left: -24rem; + } + + .md\:-ml-px { + margin-left: -1px; + } + + .md\:-ml-0\.5 { + margin-left: -0.125rem; + } + + .md\:-ml-1\.5 { + margin-left: -0.375rem; + } + + .md\:-ml-2\.5 { + margin-left: -0.625rem; + } + .md\:-ml-3\.5 { margin-left: -0.875rem; } @@ -99409,1848 +99409,1848 @@ video { margin: -0.875rem; } - .lg\:my-0 { - margin-top: 0px; - margin-bottom: 0px; - } - .lg\:mx-0 { margin-left: 0px; margin-right: 0px; } - .lg\:my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; - } - .lg\:mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; } - .lg\:my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; - } - .lg\:mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; } - .lg\:my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; - } - .lg\:mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; } - .lg\:my-4 { - margin-top: 1rem; - margin-bottom: 1rem; - } - .lg\:mx-4 { margin-left: 1rem; margin-right: 1rem; } - .lg\:my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; - } - .lg\:mx-5 { margin-left: 1.25rem; margin-right: 1.25rem; } - .lg\:my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; - } - .lg\:mx-6 { margin-left: 1.5rem; margin-right: 1.5rem; } - .lg\:my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; - } - .lg\:mx-7 { margin-left: 1.75rem; margin-right: 1.75rem; } - .lg\:my-8 { - margin-top: 2rem; - margin-bottom: 2rem; - } - .lg\:mx-8 { margin-left: 2rem; margin-right: 2rem; } - .lg\:my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; - } - .lg\:mx-9 { margin-left: 2.25rem; margin-right: 2.25rem; } - .lg\:my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; - } - .lg\:mx-10 { margin-left: 2.5rem; margin-right: 2.5rem; } - .lg\:my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; - } - .lg\:mx-11 { margin-left: 2.75rem; margin-right: 2.75rem; } - .lg\:my-12 { - margin-top: 3rem; - margin-bottom: 3rem; - } - .lg\:mx-12 { margin-left: 3rem; margin-right: 3rem; } - .lg\:my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; - } - .lg\:mx-14 { margin-left: 3.5rem; margin-right: 3.5rem; } - .lg\:my-16 { - margin-top: 4rem; - margin-bottom: 4rem; - } - .lg\:mx-16 { margin-left: 4rem; margin-right: 4rem; } - .lg\:my-20 { - margin-top: 5rem; - margin-bottom: 5rem; - } - .lg\:mx-20 { margin-left: 5rem; margin-right: 5rem; } - .lg\:my-24 { - margin-top: 6rem; - margin-bottom: 6rem; - } - .lg\:mx-24 { margin-left: 6rem; margin-right: 6rem; } - .lg\:my-28 { - margin-top: 7rem; - margin-bottom: 7rem; - } - .lg\:mx-28 { margin-left: 7rem; margin-right: 7rem; } - .lg\:my-32 { - margin-top: 8rem; - margin-bottom: 8rem; - } - .lg\:mx-32 { margin-left: 8rem; margin-right: 8rem; } - .lg\:my-36 { - margin-top: 9rem; - margin-bottom: 9rem; - } - .lg\:mx-36 { margin-left: 9rem; margin-right: 9rem; } - .lg\:my-40 { - margin-top: 10rem; - margin-bottom: 10rem; - } - .lg\:mx-40 { margin-left: 10rem; margin-right: 10rem; } - .lg\:my-44 { - margin-top: 11rem; - margin-bottom: 11rem; - } - .lg\:mx-44 { margin-left: 11rem; margin-right: 11rem; } - .lg\:my-48 { - margin-top: 12rem; - margin-bottom: 12rem; - } - .lg\:mx-48 { margin-left: 12rem; margin-right: 12rem; } - .lg\:my-52 { - margin-top: 13rem; - margin-bottom: 13rem; - } - .lg\:mx-52 { margin-left: 13rem; margin-right: 13rem; } - .lg\:my-56 { - margin-top: 14rem; - margin-bottom: 14rem; - } - .lg\:mx-56 { margin-left: 14rem; margin-right: 14rem; } - .lg\:my-60 { - margin-top: 15rem; - margin-bottom: 15rem; - } - .lg\:mx-60 { margin-left: 15rem; margin-right: 15rem; } - .lg\:my-64 { - margin-top: 16rem; - margin-bottom: 16rem; - } - .lg\:mx-64 { margin-left: 16rem; margin-right: 16rem; } - .lg\:my-72 { - margin-top: 18rem; - margin-bottom: 18rem; - } - .lg\:mx-72 { margin-left: 18rem; margin-right: 18rem; } - .lg\:my-80 { - margin-top: 20rem; - margin-bottom: 20rem; - } - .lg\:mx-80 { margin-left: 20rem; margin-right: 20rem; } - .lg\:my-96 { - margin-top: 24rem; - margin-bottom: 24rem; - } - .lg\:mx-96 { margin-left: 24rem; margin-right: 24rem; } - .lg\:my-auto { - margin-top: auto; - margin-bottom: auto; - } - .lg\:mx-auto { margin-left: auto; margin-right: auto; } - .lg\:my-px { - margin-top: 1px; - margin-bottom: 1px; - } - .lg\:mx-px { margin-left: 1px; margin-right: 1px; } - .lg\:my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; - } - .lg\:mx-0\.5 { margin-left: 0.125rem; margin-right: 0.125rem; } - .lg\:my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; - } - .lg\:mx-1\.5 { margin-left: 0.375rem; margin-right: 0.375rem; } - .lg\:my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; - } - .lg\:mx-2\.5 { margin-left: 0.625rem; margin-right: 0.625rem; } - .lg\:my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; - } - .lg\:mx-3\.5 { margin-left: 0.875rem; margin-right: 0.875rem; } - .lg\:-my-0 { - margin-top: 0px; - margin-bottom: 0px; - } - .lg\:-mx-0 { margin-left: 0px; margin-right: 0px; } - .lg\:-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; - } - .lg\:-mx-1 { margin-left: -0.25rem; margin-right: -0.25rem; } - .lg\:-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; - } - .lg\:-mx-2 { margin-left: -0.5rem; margin-right: -0.5rem; } - .lg\:-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; - } - .lg\:-mx-3 { margin-left: -0.75rem; margin-right: -0.75rem; } - .lg\:-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; - } - .lg\:-mx-4 { margin-left: -1rem; margin-right: -1rem; } - .lg\:-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; - } - .lg\:-mx-5 { margin-left: -1.25rem; margin-right: -1.25rem; } - .lg\:-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; - } - .lg\:-mx-6 { margin-left: -1.5rem; margin-right: -1.5rem; } - .lg\:-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; - } - .lg\:-mx-7 { margin-left: -1.75rem; margin-right: -1.75rem; } - .lg\:-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; - } - .lg\:-mx-8 { margin-left: -2rem; margin-right: -2rem; } - .lg\:-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; - } - .lg\:-mx-9 { margin-left: -2.25rem; margin-right: -2.25rem; } - .lg\:-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; - } - .lg\:-mx-10 { margin-left: -2.5rem; margin-right: -2.5rem; } - .lg\:-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; - } - .lg\:-mx-11 { margin-left: -2.75rem; margin-right: -2.75rem; } - .lg\:-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; - } - .lg\:-mx-12 { margin-left: -3rem; margin-right: -3rem; } - .lg\:-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; - } - .lg\:-mx-14 { margin-left: -3.5rem; margin-right: -3.5rem; } - .lg\:-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; - } - .lg\:-mx-16 { margin-left: -4rem; margin-right: -4rem; } - .lg\:-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; - } - .lg\:-mx-20 { margin-left: -5rem; margin-right: -5rem; } - .lg\:-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; - } - .lg\:-mx-24 { margin-left: -6rem; margin-right: -6rem; } - .lg\:-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; - } - .lg\:-mx-28 { margin-left: -7rem; margin-right: -7rem; } - .lg\:-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; - } - .lg\:-mx-32 { margin-left: -8rem; margin-right: -8rem; } - .lg\:-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; - } - .lg\:-mx-36 { margin-left: -9rem; margin-right: -9rem; } - .lg\:-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; - } - .lg\:-mx-40 { margin-left: -10rem; margin-right: -10rem; } - .lg\:-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; - } - .lg\:-mx-44 { margin-left: -11rem; margin-right: -11rem; } - .lg\:-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; - } - .lg\:-mx-48 { margin-left: -12rem; margin-right: -12rem; } - .lg\:-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; - } - .lg\:-mx-52 { margin-left: -13rem; margin-right: -13rem; } - .lg\:-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; - } - .lg\:-mx-56 { margin-left: -14rem; margin-right: -14rem; } - .lg\:-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; - } - .lg\:-mx-60 { margin-left: -15rem; margin-right: -15rem; } - .lg\:-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; - } - .lg\:-mx-64 { margin-left: -16rem; margin-right: -16rem; } - .lg\:-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; - } - .lg\:-mx-72 { margin-left: -18rem; margin-right: -18rem; } - .lg\:-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; - } - .lg\:-mx-80 { margin-left: -20rem; margin-right: -20rem; } - .lg\:-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; - } - .lg\:-mx-96 { margin-left: -24rem; margin-right: -24rem; } - .lg\:-my-px { - margin-top: -1px; - margin-bottom: -1px; - } - .lg\:-mx-px { margin-left: -1px; margin-right: -1px; } - .lg\:-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; - } - .lg\:-mx-0\.5 { margin-left: -0.125rem; margin-right: -0.125rem; } - .lg\:-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; - } - .lg\:-mx-1\.5 { margin-left: -0.375rem; margin-right: -0.375rem; } - .lg\:-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; - } - .lg\:-mx-2\.5 { margin-left: -0.625rem; margin-right: -0.625rem; } - .lg\:-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; - } - .lg\:-mx-3\.5 { margin-left: -0.875rem; margin-right: -0.875rem; } - .lg\:mt-0 { + .lg\:my-0 { margin-top: 0px; + margin-bottom: 0px; } - .lg\:mr-0 { - margin-right: 0px; - } - - .lg\:mb-0 { - margin-bottom: 0px; + .lg\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } - .lg\:ml-0 { - margin-left: 0px; + .lg\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; } - .lg\:mt-1 { - margin-top: 0.25rem; + .lg\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; } - .lg\:mr-1 { - margin-right: 0.25rem; + .lg\:my-4 { + margin-top: 1rem; + margin-bottom: 1rem; } - .lg\:mb-1 { - margin-bottom: 0.25rem; + .lg\:my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; } - .lg\:ml-1 { - margin-left: 0.25rem; + .lg\:my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; } - .lg\:mt-2 { - margin-top: 0.5rem; + .lg\:my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; } - .lg\:mr-2 { - margin-right: 0.5rem; + .lg\:my-8 { + margin-top: 2rem; + margin-bottom: 2rem; } - .lg\:mb-2 { - margin-bottom: 0.5rem; + .lg\:my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; } - .lg\:ml-2 { - margin-left: 0.5rem; + .lg\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; } - .lg\:mt-3 { - margin-top: 0.75rem; + .lg\:my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; } - .lg\:mr-3 { - margin-right: 0.75rem; + .lg\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; } - .lg\:mb-3 { - margin-bottom: 0.75rem; + .lg\:my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; } - .lg\:ml-3 { - margin-left: 0.75rem; + .lg\:my-16 { + margin-top: 4rem; + margin-bottom: 4rem; } - .lg\:mt-4 { - margin-top: 1rem; + .lg\:my-20 { + margin-top: 5rem; + margin-bottom: 5rem; } - .lg\:mr-4 { - margin-right: 1rem; + .lg\:my-24 { + margin-top: 6rem; + margin-bottom: 6rem; } - .lg\:mb-4 { - margin-bottom: 1rem; + .lg\:my-28 { + margin-top: 7rem; + margin-bottom: 7rem; } - .lg\:ml-4 { - margin-left: 1rem; + .lg\:my-32 { + margin-top: 8rem; + margin-bottom: 8rem; } - .lg\:mt-5 { - margin-top: 1.25rem; + .lg\:my-36 { + margin-top: 9rem; + margin-bottom: 9rem; } - .lg\:mr-5 { - margin-right: 1.25rem; + .lg\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; } - .lg\:mb-5 { - margin-bottom: 1.25rem; + .lg\:my-44 { + margin-top: 11rem; + margin-bottom: 11rem; } - .lg\:ml-5 { - margin-left: 1.25rem; + .lg\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; } - .lg\:mt-6 { - margin-top: 1.5rem; + .lg\:my-52 { + margin-top: 13rem; + margin-bottom: 13rem; } - .lg\:mr-6 { - margin-right: 1.5rem; + .lg\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; } - .lg\:mb-6 { - margin-bottom: 1.5rem; + .lg\:my-60 { + margin-top: 15rem; + margin-bottom: 15rem; } - .lg\:ml-6 { - margin-left: 1.5rem; + .lg\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; } - .lg\:mt-7 { - margin-top: 1.75rem; + .lg\:my-72 { + margin-top: 18rem; + margin-bottom: 18rem; } - .lg\:mr-7 { - margin-right: 1.75rem; + .lg\:my-80 { + margin-top: 20rem; + margin-bottom: 20rem; } - .lg\:mb-7 { - margin-bottom: 1.75rem; + .lg\:my-96 { + margin-top: 24rem; + margin-bottom: 24rem; } - .lg\:ml-7 { - margin-left: 1.75rem; + .lg\:my-auto { + margin-top: auto; + margin-bottom: auto; } - .lg\:mt-8 { - margin-top: 2rem; + .lg\:my-px { + margin-top: 1px; + margin-bottom: 1px; } - .lg\:mr-8 { - margin-right: 2rem; + .lg\:my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; } - .lg\:mb-8 { - margin-bottom: 2rem; + .lg\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; } - .lg\:ml-8 { - margin-left: 2rem; + .lg\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; } - .lg\:mt-9 { - margin-top: 2.25rem; + .lg\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; } - .lg\:mr-9 { - margin-right: 2.25rem; + .lg\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .lg\:mb-9 { - margin-bottom: 2.25rem; + .lg\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } - .lg\:ml-9 { - margin-left: 2.25rem; + .lg\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } - .lg\:mt-10 { - margin-top: 2.5rem; + .lg\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } - .lg\:mr-10 { - margin-right: 2.5rem; + .lg\:-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } - .lg\:mb-10 { - margin-bottom: 2.5rem; + .lg\:-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } - .lg\:ml-10 { - margin-left: 2.5rem; + .lg\:-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } - .lg\:mt-11 { - margin-top: 2.75rem; + .lg\:-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } - .lg\:mr-11 { - margin-right: 2.75rem; + .lg\:-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } - .lg\:mb-11 { - margin-bottom: 2.75rem; + .lg\:-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } - .lg\:ml-11 { - margin-left: 2.75rem; + .lg\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } - .lg\:mt-12 { - margin-top: 3rem; + .lg\:-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } - .lg\:mr-12 { - margin-right: 3rem; + .lg\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } - .lg\:mb-12 { - margin-bottom: 3rem; + .lg\:-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } - .lg\:ml-12 { - margin-left: 3rem; + .lg\:-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } - .lg\:mt-14 { - margin-top: 3.5rem; + .lg\:-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } - .lg\:mr-14 { - margin-right: 3.5rem; + .lg\:-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } - .lg\:mb-14 { - margin-bottom: 3.5rem; + .lg\:-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } - .lg\:ml-14 { - margin-left: 3.5rem; + .lg\:-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } - .lg\:mt-16 { - margin-top: 4rem; + .lg\:-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } - .lg\:mr-16 { - margin-right: 4rem; + .lg\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } - .lg\:mb-16 { - margin-bottom: 4rem; + .lg\:-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } - .lg\:ml-16 { - margin-left: 4rem; + .lg\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } - .lg\:mt-20 { - margin-top: 5rem; + .lg\:-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } - .lg\:mr-20 { - margin-right: 5rem; + .lg\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } - .lg\:mb-20 { - margin-bottom: 5rem; + .lg\:-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } - .lg\:ml-20 { - margin-left: 5rem; + .lg\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } - .lg\:mt-24 { - margin-top: 6rem; + .lg\:-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } - .lg\:mr-24 { - margin-right: 6rem; + .lg\:-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } - .lg\:mb-24 { - margin-bottom: 6rem; + .lg\:-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } - .lg\:ml-24 { - margin-left: 6rem; + .lg\:-my-px { + margin-top: -1px; + margin-bottom: -1px; } - .lg\:mt-28 { - margin-top: 7rem; + .lg\:-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } - .lg\:mr-28 { - margin-right: 7rem; + .lg\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } - .lg\:mb-28 { - margin-bottom: 7rem; + .lg\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } - .lg\:ml-28 { - margin-left: 7rem; + .lg\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } - .lg\:mt-32 { - margin-top: 8rem; + .lg\:mt-0 { + margin-top: 0px; } - .lg\:mr-32 { - margin-right: 8rem; + .lg\:mt-1 { + margin-top: 0.25rem; } - .lg\:mb-32 { - margin-bottom: 8rem; + .lg\:mt-2 { + margin-top: 0.5rem; } - .lg\:ml-32 { - margin-left: 8rem; + .lg\:mt-3 { + margin-top: 0.75rem; } - .lg\:mt-36 { - margin-top: 9rem; + .lg\:mt-4 { + margin-top: 1rem; } - .lg\:mr-36 { - margin-right: 9rem; + .lg\:mt-5 { + margin-top: 1.25rem; } - .lg\:mb-36 { - margin-bottom: 9rem; + .lg\:mt-6 { + margin-top: 1.5rem; } - .lg\:ml-36 { - margin-left: 9rem; + .lg\:mt-7 { + margin-top: 1.75rem; } - .lg\:mt-40 { - margin-top: 10rem; + .lg\:mt-8 { + margin-top: 2rem; } - .lg\:mr-40 { - margin-right: 10rem; + .lg\:mt-9 { + margin-top: 2.25rem; } - .lg\:mb-40 { - margin-bottom: 10rem; + .lg\:mt-10 { + margin-top: 2.5rem; } - .lg\:ml-40 { - margin-left: 10rem; + .lg\:mt-11 { + margin-top: 2.75rem; } - .lg\:mt-44 { - margin-top: 11rem; + .lg\:mt-12 { + margin-top: 3rem; } - .lg\:mr-44 { - margin-right: 11rem; + .lg\:mt-14 { + margin-top: 3.5rem; } - .lg\:mb-44 { - margin-bottom: 11rem; + .lg\:mt-16 { + margin-top: 4rem; } - .lg\:ml-44 { - margin-left: 11rem; + .lg\:mt-20 { + margin-top: 5rem; } - .lg\:mt-48 { - margin-top: 12rem; + .lg\:mt-24 { + margin-top: 6rem; } - .lg\:mr-48 { - margin-right: 12rem; + .lg\:mt-28 { + margin-top: 7rem; } - .lg\:mb-48 { - margin-bottom: 12rem; + .lg\:mt-32 { + margin-top: 8rem; } - .lg\:ml-48 { - margin-left: 12rem; + .lg\:mt-36 { + margin-top: 9rem; } - .lg\:mt-52 { - margin-top: 13rem; + .lg\:mt-40 { + margin-top: 10rem; } - .lg\:mr-52 { - margin-right: 13rem; + .lg\:mt-44 { + margin-top: 11rem; } - .lg\:mb-52 { - margin-bottom: 13rem; + .lg\:mt-48 { + margin-top: 12rem; } - .lg\:ml-52 { - margin-left: 13rem; + .lg\:mt-52 { + margin-top: 13rem; } .lg\:mt-56 { margin-top: 14rem; } - .lg\:mr-56 { - margin-right: 14rem; + .lg\:mt-60 { + margin-top: 15rem; } - .lg\:mb-56 { - margin-bottom: 14rem; + .lg\:mt-64 { + margin-top: 16rem; } - .lg\:ml-56 { - margin-left: 14rem; + .lg\:mt-72 { + margin-top: 18rem; } - .lg\:mt-60 { - margin-top: 15rem; + .lg\:mt-80 { + margin-top: 20rem; } - .lg\:mr-60 { - margin-right: 15rem; + .lg\:mt-96 { + margin-top: 24rem; } - .lg\:mb-60 { - margin-bottom: 15rem; + .lg\:mt-auto { + margin-top: auto; } - .lg\:ml-60 { - margin-left: 15rem; + .lg\:mt-px { + margin-top: 1px; } - .lg\:mt-64 { - margin-top: 16rem; + .lg\:mt-0\.5 { + margin-top: 0.125rem; } - .lg\:mr-64 { - margin-right: 16rem; + .lg\:mt-1\.5 { + margin-top: 0.375rem; } - .lg\:mb-64 { - margin-bottom: 16rem; + .lg\:mt-2\.5 { + margin-top: 0.625rem; } - .lg\:ml-64 { - margin-left: 16rem; + .lg\:mt-3\.5 { + margin-top: 0.875rem; } - .lg\:mt-72 { - margin-top: 18rem; + .lg\:-mt-0 { + margin-top: 0px; } - .lg\:mr-72 { - margin-right: 18rem; + .lg\:-mt-1 { + margin-top: -0.25rem; } - .lg\:mb-72 { - margin-bottom: 18rem; + .lg\:-mt-2 { + margin-top: -0.5rem; } - .lg\:ml-72 { - margin-left: 18rem; + .lg\:-mt-3 { + margin-top: -0.75rem; } - .lg\:mt-80 { - margin-top: 20rem; + .lg\:-mt-4 { + margin-top: -1rem; } - .lg\:mr-80 { - margin-right: 20rem; + .lg\:-mt-5 { + margin-top: -1.25rem; } - .lg\:mb-80 { - margin-bottom: 20rem; + .lg\:-mt-6 { + margin-top: -1.5rem; } - .lg\:ml-80 { - margin-left: 20rem; + .lg\:-mt-7 { + margin-top: -1.75rem; } - .lg\:mt-96 { - margin-top: 24rem; + .lg\:-mt-8 { + margin-top: -2rem; } - .lg\:mr-96 { - margin-right: 24rem; + .lg\:-mt-9 { + margin-top: -2.25rem; } - .lg\:mb-96 { - margin-bottom: 24rem; + .lg\:-mt-10 { + margin-top: -2.5rem; } - .lg\:ml-96 { - margin-left: 24rem; + .lg\:-mt-11 { + margin-top: -2.75rem; } - .lg\:mt-auto { - margin-top: auto; + .lg\:-mt-12 { + margin-top: -3rem; } - .lg\:mr-auto { - margin-right: auto; + .lg\:-mt-14 { + margin-top: -3.5rem; } - .lg\:mb-auto { - margin-bottom: auto; + .lg\:-mt-16 { + margin-top: -4rem; } - .lg\:ml-auto { - margin-left: auto; + .lg\:-mt-20 { + margin-top: -5rem; } - .lg\:mt-px { - margin-top: 1px; + .lg\:-mt-24 { + margin-top: -6rem; } - .lg\:mr-px { - margin-right: 1px; + .lg\:-mt-28 { + margin-top: -7rem; } - .lg\:mb-px { - margin-bottom: 1px; + .lg\:-mt-32 { + margin-top: -8rem; } - .lg\:ml-px { - margin-left: 1px; + .lg\:-mt-36 { + margin-top: -9rem; } - .lg\:mt-0\.5 { - margin-top: 0.125rem; + .lg\:-mt-40 { + margin-top: -10rem; } - .lg\:mr-0\.5 { - margin-right: 0.125rem; + .lg\:-mt-44 { + margin-top: -11rem; } - .lg\:mb-0\.5 { - margin-bottom: 0.125rem; + .lg\:-mt-48 { + margin-top: -12rem; } - .lg\:ml-0\.5 { - margin-left: 0.125rem; + .lg\:-mt-52 { + margin-top: -13rem; } - .lg\:mt-1\.5 { - margin-top: 0.375rem; + .lg\:-mt-56 { + margin-top: -14rem; } - .lg\:mr-1\.5 { - margin-right: 0.375rem; + .lg\:-mt-60 { + margin-top: -15rem; } - .lg\:mb-1\.5 { - margin-bottom: 0.375rem; + .lg\:-mt-64 { + margin-top: -16rem; } - .lg\:ml-1\.5 { - margin-left: 0.375rem; + .lg\:-mt-72 { + margin-top: -18rem; } - .lg\:mt-2\.5 { - margin-top: 0.625rem; + .lg\:-mt-80 { + margin-top: -20rem; } - .lg\:mr-2\.5 { - margin-right: 0.625rem; + .lg\:-mt-96 { + margin-top: -24rem; } - .lg\:mb-2\.5 { - margin-bottom: 0.625rem; + .lg\:-mt-px { + margin-top: -1px; } - .lg\:ml-2\.5 { - margin-left: 0.625rem; + .lg\:-mt-0\.5 { + margin-top: -0.125rem; } - .lg\:mt-3\.5 { - margin-top: 0.875rem; + .lg\:-mt-1\.5 { + margin-top: -0.375rem; } - .lg\:mr-3\.5 { - margin-right: 0.875rem; + .lg\:-mt-2\.5 { + margin-top: -0.625rem; } - .lg\:mb-3\.5 { - margin-bottom: 0.875rem; + .lg\:-mt-3\.5 { + margin-top: -0.875rem; } - .lg\:ml-3\.5 { - margin-left: 0.875rem; + .lg\:mr-0 { + margin-right: 0px; } - .lg\:-mt-0 { - margin-top: 0px; + .lg\:mr-1 { + margin-right: 0.25rem; } - .lg\:-mr-0 { - margin-right: 0px; + .lg\:mr-2 { + margin-right: 0.5rem; } - .lg\:-mb-0 { - margin-bottom: 0px; + .lg\:mr-3 { + margin-right: 0.75rem; } - .lg\:-ml-0 { - margin-left: 0px; + .lg\:mr-4 { + margin-right: 1rem; } - .lg\:-mt-1 { - margin-top: -0.25rem; + .lg\:mr-5 { + margin-right: 1.25rem; } - .lg\:-mr-1 { - margin-right: -0.25rem; + .lg\:mr-6 { + margin-right: 1.5rem; } - .lg\:-mb-1 { - margin-bottom: -0.25rem; + .lg\:mr-7 { + margin-right: 1.75rem; } - .lg\:-ml-1 { - margin-left: -0.25rem; + .lg\:mr-8 { + margin-right: 2rem; } - .lg\:-mt-2 { - margin-top: -0.5rem; + .lg\:mr-9 { + margin-right: 2.25rem; } - .lg\:-mr-2 { - margin-right: -0.5rem; + .lg\:mr-10 { + margin-right: 2.5rem; } - .lg\:-mb-2 { - margin-bottom: -0.5rem; + .lg\:mr-11 { + margin-right: 2.75rem; } - .lg\:-ml-2 { - margin-left: -0.5rem; + .lg\:mr-12 { + margin-right: 3rem; } - .lg\:-mt-3 { - margin-top: -0.75rem; + .lg\:mr-14 { + margin-right: 3.5rem; } - .lg\:-mr-3 { - margin-right: -0.75rem; + .lg\:mr-16 { + margin-right: 4rem; } - .lg\:-mb-3 { - margin-bottom: -0.75rem; + .lg\:mr-20 { + margin-right: 5rem; } - .lg\:-ml-3 { - margin-left: -0.75rem; + .lg\:mr-24 { + margin-right: 6rem; } - .lg\:-mt-4 { - margin-top: -1rem; + .lg\:mr-28 { + margin-right: 7rem; } - .lg\:-mr-4 { - margin-right: -1rem; + .lg\:mr-32 { + margin-right: 8rem; } - .lg\:-mb-4 { - margin-bottom: -1rem; + .lg\:mr-36 { + margin-right: 9rem; } - .lg\:-ml-4 { - margin-left: -1rem; + .lg\:mr-40 { + margin-right: 10rem; } - .lg\:-mt-5 { - margin-top: -1.25rem; + .lg\:mr-44 { + margin-right: 11rem; } - .lg\:-mr-5 { - margin-right: -1.25rem; + .lg\:mr-48 { + margin-right: 12rem; } - .lg\:-mb-5 { - margin-bottom: -1.25rem; + .lg\:mr-52 { + margin-right: 13rem; } - .lg\:-ml-5 { - margin-left: -1.25rem; + .lg\:mr-56 { + margin-right: 14rem; } - .lg\:-mt-6 { - margin-top: -1.5rem; + .lg\:mr-60 { + margin-right: 15rem; } - .lg\:-mr-6 { - margin-right: -1.5rem; + .lg\:mr-64 { + margin-right: 16rem; } - .lg\:-mb-6 { - margin-bottom: -1.5rem; + .lg\:mr-72 { + margin-right: 18rem; } - .lg\:-ml-6 { - margin-left: -1.5rem; + .lg\:mr-80 { + margin-right: 20rem; } - .lg\:-mt-7 { - margin-top: -1.75rem; + .lg\:mr-96 { + margin-right: 24rem; } - .lg\:-mr-7 { - margin-right: -1.75rem; + .lg\:mr-auto { + margin-right: auto; } - .lg\:-mb-7 { - margin-bottom: -1.75rem; + .lg\:mr-px { + margin-right: 1px; } - .lg\:-ml-7 { - margin-left: -1.75rem; + .lg\:mr-0\.5 { + margin-right: 0.125rem; } - .lg\:-mt-8 { - margin-top: -2rem; + .lg\:mr-1\.5 { + margin-right: 0.375rem; } - .lg\:-mr-8 { - margin-right: -2rem; + .lg\:mr-2\.5 { + margin-right: 0.625rem; } - .lg\:-mb-8 { - margin-bottom: -2rem; + .lg\:mr-3\.5 { + margin-right: 0.875rem; } - .lg\:-ml-8 { - margin-left: -2rem; + .lg\:-mr-0 { + margin-right: 0px; } - .lg\:-mt-9 { - margin-top: -2.25rem; + .lg\:-mr-1 { + margin-right: -0.25rem; } - .lg\:-mr-9 { - margin-right: -2.25rem; + .lg\:-mr-2 { + margin-right: -0.5rem; } - .lg\:-mb-9 { - margin-bottom: -2.25rem; + .lg\:-mr-3 { + margin-right: -0.75rem; } - .lg\:-ml-9 { - margin-left: -2.25rem; + .lg\:-mr-4 { + margin-right: -1rem; } - .lg\:-mt-10 { - margin-top: -2.5rem; + .lg\:-mr-5 { + margin-right: -1.25rem; } - .lg\:-mr-10 { - margin-right: -2.5rem; + .lg\:-mr-6 { + margin-right: -1.5rem; } - .lg\:-mb-10 { - margin-bottom: -2.5rem; + .lg\:-mr-7 { + margin-right: -1.75rem; } - .lg\:-ml-10 { - margin-left: -2.5rem; + .lg\:-mr-8 { + margin-right: -2rem; } - .lg\:-mt-11 { - margin-top: -2.75rem; + .lg\:-mr-9 { + margin-right: -2.25rem; + } + + .lg\:-mr-10 { + margin-right: -2.5rem; } .lg\:-mr-11 { margin-right: -2.75rem; } - .lg\:-mb-11 { - margin-bottom: -2.75rem; + .lg\:-mr-12 { + margin-right: -3rem; } - .lg\:-ml-11 { - margin-left: -2.75rem; + .lg\:-mr-14 { + margin-right: -3.5rem; } - .lg\:-mt-12 { - margin-top: -3rem; + .lg\:-mr-16 { + margin-right: -4rem; } - .lg\:-mr-12 { - margin-right: -3rem; + .lg\:-mr-20 { + margin-right: -5rem; } - .lg\:-mb-12 { - margin-bottom: -3rem; + .lg\:-mr-24 { + margin-right: -6rem; } - .lg\:-ml-12 { - margin-left: -3rem; + .lg\:-mr-28 { + margin-right: -7rem; } - .lg\:-mt-14 { - margin-top: -3.5rem; + .lg\:-mr-32 { + margin-right: -8rem; } - .lg\:-mr-14 { - margin-right: -3.5rem; + .lg\:-mr-36 { + margin-right: -9rem; } - .lg\:-mb-14 { - margin-bottom: -3.5rem; + .lg\:-mr-40 { + margin-right: -10rem; } - .lg\:-ml-14 { - margin-left: -3.5rem; + .lg\:-mr-44 { + margin-right: -11rem; } - .lg\:-mt-16 { - margin-top: -4rem; + .lg\:-mr-48 { + margin-right: -12rem; } - .lg\:-mr-16 { - margin-right: -4rem; + .lg\:-mr-52 { + margin-right: -13rem; } - .lg\:-mb-16 { - margin-bottom: -4rem; + .lg\:-mr-56 { + margin-right: -14rem; } - .lg\:-ml-16 { - margin-left: -4rem; + .lg\:-mr-60 { + margin-right: -15rem; } - .lg\:-mt-20 { - margin-top: -5rem; + .lg\:-mr-64 { + margin-right: -16rem; } - .lg\:-mr-20 { - margin-right: -5rem; + .lg\:-mr-72 { + margin-right: -18rem; } - .lg\:-mb-20 { - margin-bottom: -5rem; + .lg\:-mr-80 { + margin-right: -20rem; } - .lg\:-ml-20 { - margin-left: -5rem; + .lg\:-mr-96 { + margin-right: -24rem; } - .lg\:-mt-24 { - margin-top: -6rem; + .lg\:-mr-px { + margin-right: -1px; } - .lg\:-mr-24 { - margin-right: -6rem; + .lg\:-mr-0\.5 { + margin-right: -0.125rem; } - .lg\:-mb-24 { - margin-bottom: -6rem; + .lg\:-mr-1\.5 { + margin-right: -0.375rem; } - .lg\:-ml-24 { - margin-left: -6rem; + .lg\:-mr-2\.5 { + margin-right: -0.625rem; } - .lg\:-mt-28 { - margin-top: -7rem; + .lg\:-mr-3\.5 { + margin-right: -0.875rem; } - .lg\:-mr-28 { - margin-right: -7rem; + .lg\:mb-0 { + margin-bottom: 0px; } - .lg\:-mb-28 { - margin-bottom: -7rem; + .lg\:mb-1 { + margin-bottom: 0.25rem; } - .lg\:-ml-28 { - margin-left: -7rem; + .lg\:mb-2 { + margin-bottom: 0.5rem; } - .lg\:-mt-32 { - margin-top: -8rem; + .lg\:mb-3 { + margin-bottom: 0.75rem; } - .lg\:-mr-32 { - margin-right: -8rem; + .lg\:mb-4 { + margin-bottom: 1rem; } - .lg\:-mb-32 { - margin-bottom: -8rem; + .lg\:mb-5 { + margin-bottom: 1.25rem; } - .lg\:-ml-32 { - margin-left: -8rem; + .lg\:mb-6 { + margin-bottom: 1.5rem; } - .lg\:-mt-36 { - margin-top: -9rem; + .lg\:mb-7 { + margin-bottom: 1.75rem; } - .lg\:-mr-36 { - margin-right: -9rem; + .lg\:mb-8 { + margin-bottom: 2rem; } - .lg\:-mb-36 { - margin-bottom: -9rem; + .lg\:mb-9 { + margin-bottom: 2.25rem; } - .lg\:-ml-36 { - margin-left: -9rem; + .lg\:mb-10 { + margin-bottom: 2.5rem; } - .lg\:-mt-40 { - margin-top: -10rem; + .lg\:mb-11 { + margin-bottom: 2.75rem; } - .lg\:-mr-40 { - margin-right: -10rem; + .lg\:mb-12 { + margin-bottom: 3rem; } - .lg\:-mb-40 { - margin-bottom: -10rem; + .lg\:mb-14 { + margin-bottom: 3.5rem; } - .lg\:-ml-40 { - margin-left: -10rem; + .lg\:mb-16 { + margin-bottom: 4rem; } - .lg\:-mt-44 { - margin-top: -11rem; + .lg\:mb-20 { + margin-bottom: 5rem; } - .lg\:-mr-44 { - margin-right: -11rem; + .lg\:mb-24 { + margin-bottom: 6rem; } - .lg\:-mb-44 { - margin-bottom: -11rem; + .lg\:mb-28 { + margin-bottom: 7rem; } - .lg\:-ml-44 { - margin-left: -11rem; + .lg\:mb-32 { + margin-bottom: 8rem; } - .lg\:-mt-48 { - margin-top: -12rem; + .lg\:mb-36 { + margin-bottom: 9rem; } - .lg\:-mr-48 { - margin-right: -12rem; + .lg\:mb-40 { + margin-bottom: 10rem; } - .lg\:-mb-48 { - margin-bottom: -12rem; + .lg\:mb-44 { + margin-bottom: 11rem; } - .lg\:-ml-48 { - margin-left: -12rem; + .lg\:mb-48 { + margin-bottom: 12rem; } - .lg\:-mt-52 { - margin-top: -13rem; + .lg\:mb-52 { + margin-bottom: 13rem; } - .lg\:-mr-52 { - margin-right: -13rem; + .lg\:mb-56 { + margin-bottom: 14rem; } - .lg\:-mb-52 { - margin-bottom: -13rem; + .lg\:mb-60 { + margin-bottom: 15rem; } - .lg\:-ml-52 { - margin-left: -13rem; + .lg\:mb-64 { + margin-bottom: 16rem; } - .lg\:-mt-56 { - margin-top: -14rem; + .lg\:mb-72 { + margin-bottom: 18rem; } - .lg\:-mr-56 { - margin-right: -14rem; + .lg\:mb-80 { + margin-bottom: 20rem; } - .lg\:-mb-56 { - margin-bottom: -14rem; + .lg\:mb-96 { + margin-bottom: 24rem; } - .lg\:-ml-56 { - margin-left: -14rem; + .lg\:mb-auto { + margin-bottom: auto; } - .lg\:-mt-60 { - margin-top: -15rem; + .lg\:mb-px { + margin-bottom: 1px; } - .lg\:-mr-60 { - margin-right: -15rem; + .lg\:mb-0\.5 { + margin-bottom: 0.125rem; } - .lg\:-mb-60 { - margin-bottom: -15rem; + .lg\:mb-1\.5 { + margin-bottom: 0.375rem; } - .lg\:-ml-60 { - margin-left: -15rem; + .lg\:mb-2\.5 { + margin-bottom: 0.625rem; } - .lg\:-mt-64 { - margin-top: -16rem; + .lg\:mb-3\.5 { + margin-bottom: 0.875rem; } - .lg\:-mr-64 { - margin-right: -16rem; + .lg\:-mb-0 { + margin-bottom: 0px; } - .lg\:-mb-64 { - margin-bottom: -16rem; + .lg\:-mb-1 { + margin-bottom: -0.25rem; } - .lg\:-ml-64 { - margin-left: -16rem; + .lg\:-mb-2 { + margin-bottom: -0.5rem; } - .lg\:-mt-72 { - margin-top: -18rem; + .lg\:-mb-3 { + margin-bottom: -0.75rem; } - .lg\:-mr-72 { - margin-right: -18rem; + .lg\:-mb-4 { + margin-bottom: -1rem; } - .lg\:-mb-72 { - margin-bottom: -18rem; + .lg\:-mb-5 { + margin-bottom: -1.25rem; } - .lg\:-ml-72 { - margin-left: -18rem; + .lg\:-mb-6 { + margin-bottom: -1.5rem; } - .lg\:-mt-80 { - margin-top: -20rem; + .lg\:-mb-7 { + margin-bottom: -1.75rem; } - .lg\:-mr-80 { - margin-right: -20rem; + .lg\:-mb-8 { + margin-bottom: -2rem; } - .lg\:-mb-80 { - margin-bottom: -20rem; + .lg\:-mb-9 { + margin-bottom: -2.25rem; } - .lg\:-ml-80 { - margin-left: -20rem; + .lg\:-mb-10 { + margin-bottom: -2.5rem; } - .lg\:-mt-96 { - margin-top: -24rem; + .lg\:-mb-11 { + margin-bottom: -2.75rem; } - .lg\:-mr-96 { - margin-right: -24rem; + .lg\:-mb-12 { + margin-bottom: -3rem; } - .lg\:-mb-96 { - margin-bottom: -24rem; + .lg\:-mb-14 { + margin-bottom: -3.5rem; } - .lg\:-ml-96 { - margin-left: -24rem; + .lg\:-mb-16 { + margin-bottom: -4rem; } - .lg\:-mt-px { - margin-top: -1px; + .lg\:-mb-20 { + margin-bottom: -5rem; } - .lg\:-mr-px { - margin-right: -1px; + .lg\:-mb-24 { + margin-bottom: -6rem; } - .lg\:-mb-px { - margin-bottom: -1px; + .lg\:-mb-28 { + margin-bottom: -7rem; } - .lg\:-ml-px { - margin-left: -1px; + .lg\:-mb-32 { + margin-bottom: -8rem; } - .lg\:-mt-0\.5 { - margin-top: -0.125rem; + .lg\:-mb-36 { + margin-bottom: -9rem; } - .lg\:-mr-0\.5 { - margin-right: -0.125rem; + .lg\:-mb-40 { + margin-bottom: -10rem; } - .lg\:-mb-0\.5 { - margin-bottom: -0.125rem; + .lg\:-mb-44 { + margin-bottom: -11rem; } - .lg\:-ml-0\.5 { - margin-left: -0.125rem; + .lg\:-mb-48 { + margin-bottom: -12rem; } - .lg\:-mt-1\.5 { - margin-top: -0.375rem; + .lg\:-mb-52 { + margin-bottom: -13rem; } - .lg\:-mr-1\.5 { - margin-right: -0.375rem; + .lg\:-mb-56 { + margin-bottom: -14rem; } - .lg\:-mb-1\.5 { - margin-bottom: -0.375rem; + .lg\:-mb-60 { + margin-bottom: -15rem; } - .lg\:-ml-1\.5 { - margin-left: -0.375rem; + .lg\:-mb-64 { + margin-bottom: -16rem; } - .lg\:-mt-2\.5 { - margin-top: -0.625rem; + .lg\:-mb-72 { + margin-bottom: -18rem; } - .lg\:-mr-2\.5 { - margin-right: -0.625rem; + .lg\:-mb-80 { + margin-bottom: -20rem; } - .lg\:-mb-2\.5 { - margin-bottom: -0.625rem; + .lg\:-mb-96 { + margin-bottom: -24rem; } - .lg\:-ml-2\.5 { - margin-left: -0.625rem; + .lg\:-mb-px { + margin-bottom: -1px; } - .lg\:-mt-3\.5 { - margin-top: -0.875rem; + .lg\:-mb-0\.5 { + margin-bottom: -0.125rem; } - .lg\:-mr-3\.5 { - margin-right: -0.875rem; + .lg\:-mb-1\.5 { + margin-bottom: -0.375rem; + } + + .lg\:-mb-2\.5 { + margin-bottom: -0.625rem; } .lg\:-mb-3\.5 { margin-bottom: -0.875rem; } + .lg\:ml-0 { + margin-left: 0px; + } + + .lg\:ml-1 { + margin-left: 0.25rem; + } + + .lg\:ml-2 { + margin-left: 0.5rem; + } + + .lg\:ml-3 { + margin-left: 0.75rem; + } + + .lg\:ml-4 { + margin-left: 1rem; + } + + .lg\:ml-5 { + margin-left: 1.25rem; + } + + .lg\:ml-6 { + margin-left: 1.5rem; + } + + .lg\:ml-7 { + margin-left: 1.75rem; + } + + .lg\:ml-8 { + margin-left: 2rem; + } + + .lg\:ml-9 { + margin-left: 2.25rem; + } + + .lg\:ml-10 { + margin-left: 2.5rem; + } + + .lg\:ml-11 { + margin-left: 2.75rem; + } + + .lg\:ml-12 { + margin-left: 3rem; + } + + .lg\:ml-14 { + margin-left: 3.5rem; + } + + .lg\:ml-16 { + margin-left: 4rem; + } + + .lg\:ml-20 { + margin-left: 5rem; + } + + .lg\:ml-24 { + margin-left: 6rem; + } + + .lg\:ml-28 { + margin-left: 7rem; + } + + .lg\:ml-32 { + margin-left: 8rem; + } + + .lg\:ml-36 { + margin-left: 9rem; + } + + .lg\:ml-40 { + margin-left: 10rem; + } + + .lg\:ml-44 { + margin-left: 11rem; + } + + .lg\:ml-48 { + margin-left: 12rem; + } + + .lg\:ml-52 { + margin-left: 13rem; + } + + .lg\:ml-56 { + margin-left: 14rem; + } + + .lg\:ml-60 { + margin-left: 15rem; + } + + .lg\:ml-64 { + margin-left: 16rem; + } + + .lg\:ml-72 { + margin-left: 18rem; + } + + .lg\:ml-80 { + margin-left: 20rem; + } + + .lg\:ml-96 { + margin-left: 24rem; + } + + .lg\:ml-auto { + margin-left: auto; + } + + .lg\:ml-px { + margin-left: 1px; + } + + .lg\:ml-0\.5 { + margin-left: 0.125rem; + } + + .lg\:ml-1\.5 { + margin-left: 0.375rem; + } + + .lg\:ml-2\.5 { + margin-left: 0.625rem; + } + + .lg\:ml-3\.5 { + margin-left: 0.875rem; + } + + .lg\:-ml-0 { + margin-left: 0px; + } + + .lg\:-ml-1 { + margin-left: -0.25rem; + } + + .lg\:-ml-2 { + margin-left: -0.5rem; + } + + .lg\:-ml-3 { + margin-left: -0.75rem; + } + + .lg\:-ml-4 { + margin-left: -1rem; + } + + .lg\:-ml-5 { + margin-left: -1.25rem; + } + + .lg\:-ml-6 { + margin-left: -1.5rem; + } + + .lg\:-ml-7 { + margin-left: -1.75rem; + } + + .lg\:-ml-8 { + margin-left: -2rem; + } + + .lg\:-ml-9 { + margin-left: -2.25rem; + } + + .lg\:-ml-10 { + margin-left: -2.5rem; + } + + .lg\:-ml-11 { + margin-left: -2.75rem; + } + + .lg\:-ml-12 { + margin-left: -3rem; + } + + .lg\:-ml-14 { + margin-left: -3.5rem; + } + + .lg\:-ml-16 { + margin-left: -4rem; + } + + .lg\:-ml-20 { + margin-left: -5rem; + } + + .lg\:-ml-24 { + margin-left: -6rem; + } + + .lg\:-ml-28 { + margin-left: -7rem; + } + + .lg\:-ml-32 { + margin-left: -8rem; + } + + .lg\:-ml-36 { + margin-left: -9rem; + } + + .lg\:-ml-40 { + margin-left: -10rem; + } + + .lg\:-ml-44 { + margin-left: -11rem; + } + + .lg\:-ml-48 { + margin-left: -12rem; + } + + .lg\:-ml-52 { + margin-left: -13rem; + } + + .lg\:-ml-56 { + margin-left: -14rem; + } + + .lg\:-ml-60 { + margin-left: -15rem; + } + + .lg\:-ml-64 { + margin-left: -16rem; + } + + .lg\:-ml-72 { + margin-left: -18rem; + } + + .lg\:-ml-80 { + margin-left: -20rem; + } + + .lg\:-ml-96 { + margin-left: -24rem; + } + + .lg\:-ml-px { + margin-left: -1px; + } + + .lg\:-ml-0\.5 { + margin-left: -0.125rem; + } + + .lg\:-ml-1\.5 { + margin-left: -0.375rem; + } + + .lg\:-ml-2\.5 { + margin-left: -0.625rem; + } + .lg\:-ml-3\.5 { margin-left: -0.875rem; } @@ -128532,1848 +128532,1848 @@ video { margin: -0.875rem; } - .xl\:my-0 { - margin-top: 0px; - margin-bottom: 0px; - } - .xl\:mx-0 { margin-left: 0px; margin-right: 0px; } - .xl\:my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; - } - .xl\:mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; } - .xl\:my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; - } - .xl\:mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; } - .xl\:my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; - } - .xl\:mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; } - .xl\:my-4 { - margin-top: 1rem; - margin-bottom: 1rem; - } - .xl\:mx-4 { margin-left: 1rem; margin-right: 1rem; } - .xl\:my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; - } - .xl\:mx-5 { margin-left: 1.25rem; margin-right: 1.25rem; } - .xl\:my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; - } - .xl\:mx-6 { margin-left: 1.5rem; margin-right: 1.5rem; } - .xl\:my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; - } - .xl\:mx-7 { margin-left: 1.75rem; margin-right: 1.75rem; } - .xl\:my-8 { - margin-top: 2rem; - margin-bottom: 2rem; - } - .xl\:mx-8 { margin-left: 2rem; margin-right: 2rem; } - .xl\:my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; - } - .xl\:mx-9 { margin-left: 2.25rem; margin-right: 2.25rem; } - .xl\:my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; - } - .xl\:mx-10 { margin-left: 2.5rem; margin-right: 2.5rem; } - .xl\:my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; - } - .xl\:mx-11 { margin-left: 2.75rem; margin-right: 2.75rem; } - .xl\:my-12 { - margin-top: 3rem; - margin-bottom: 3rem; - } - .xl\:mx-12 { margin-left: 3rem; margin-right: 3rem; } - .xl\:my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; - } - .xl\:mx-14 { margin-left: 3.5rem; margin-right: 3.5rem; } - .xl\:my-16 { - margin-top: 4rem; - margin-bottom: 4rem; - } - .xl\:mx-16 { margin-left: 4rem; margin-right: 4rem; } - .xl\:my-20 { - margin-top: 5rem; - margin-bottom: 5rem; - } - .xl\:mx-20 { margin-left: 5rem; margin-right: 5rem; } - .xl\:my-24 { - margin-top: 6rem; - margin-bottom: 6rem; - } - .xl\:mx-24 { margin-left: 6rem; margin-right: 6rem; } - .xl\:my-28 { - margin-top: 7rem; - margin-bottom: 7rem; - } - .xl\:mx-28 { margin-left: 7rem; margin-right: 7rem; } - .xl\:my-32 { - margin-top: 8rem; - margin-bottom: 8rem; - } - .xl\:mx-32 { margin-left: 8rem; margin-right: 8rem; } - .xl\:my-36 { - margin-top: 9rem; - margin-bottom: 9rem; - } - .xl\:mx-36 { margin-left: 9rem; margin-right: 9rem; } - .xl\:my-40 { - margin-top: 10rem; - margin-bottom: 10rem; - } - .xl\:mx-40 { margin-left: 10rem; margin-right: 10rem; } - .xl\:my-44 { - margin-top: 11rem; - margin-bottom: 11rem; - } - .xl\:mx-44 { margin-left: 11rem; margin-right: 11rem; } - .xl\:my-48 { - margin-top: 12rem; - margin-bottom: 12rem; - } - .xl\:mx-48 { margin-left: 12rem; margin-right: 12rem; } - .xl\:my-52 { - margin-top: 13rem; - margin-bottom: 13rem; - } - .xl\:mx-52 { margin-left: 13rem; margin-right: 13rem; } - .xl\:my-56 { - margin-top: 14rem; - margin-bottom: 14rem; - } - .xl\:mx-56 { margin-left: 14rem; margin-right: 14rem; } - .xl\:my-60 { - margin-top: 15rem; - margin-bottom: 15rem; - } - .xl\:mx-60 { margin-left: 15rem; margin-right: 15rem; } - .xl\:my-64 { - margin-top: 16rem; - margin-bottom: 16rem; - } - .xl\:mx-64 { margin-left: 16rem; margin-right: 16rem; } - .xl\:my-72 { - margin-top: 18rem; - margin-bottom: 18rem; - } - .xl\:mx-72 { margin-left: 18rem; margin-right: 18rem; } - .xl\:my-80 { - margin-top: 20rem; - margin-bottom: 20rem; - } - .xl\:mx-80 { margin-left: 20rem; margin-right: 20rem; } - .xl\:my-96 { - margin-top: 24rem; - margin-bottom: 24rem; - } - .xl\:mx-96 { margin-left: 24rem; margin-right: 24rem; } - .xl\:my-auto { - margin-top: auto; - margin-bottom: auto; - } - .xl\:mx-auto { margin-left: auto; margin-right: auto; } - .xl\:my-px { - margin-top: 1px; - margin-bottom: 1px; - } - .xl\:mx-px { margin-left: 1px; margin-right: 1px; } - .xl\:my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; - } - .xl\:mx-0\.5 { margin-left: 0.125rem; margin-right: 0.125rem; } - .xl\:my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; - } - .xl\:mx-1\.5 { margin-left: 0.375rem; margin-right: 0.375rem; } - .xl\:my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; - } - .xl\:mx-2\.5 { margin-left: 0.625rem; margin-right: 0.625rem; } - .xl\:my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; - } - .xl\:mx-3\.5 { margin-left: 0.875rem; margin-right: 0.875rem; } - .xl\:-my-0 { - margin-top: 0px; - margin-bottom: 0px; - } - .xl\:-mx-0 { margin-left: 0px; margin-right: 0px; } - .xl\:-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; - } - .xl\:-mx-1 { margin-left: -0.25rem; margin-right: -0.25rem; } - .xl\:-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; - } - .xl\:-mx-2 { margin-left: -0.5rem; margin-right: -0.5rem; } - .xl\:-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; - } - .xl\:-mx-3 { margin-left: -0.75rem; margin-right: -0.75rem; } - .xl\:-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; - } - .xl\:-mx-4 { margin-left: -1rem; margin-right: -1rem; } - .xl\:-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; - } - .xl\:-mx-5 { margin-left: -1.25rem; margin-right: -1.25rem; } - .xl\:-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; - } - .xl\:-mx-6 { margin-left: -1.5rem; margin-right: -1.5rem; } - .xl\:-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; - } - .xl\:-mx-7 { margin-left: -1.75rem; margin-right: -1.75rem; } - .xl\:-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; - } - .xl\:-mx-8 { margin-left: -2rem; margin-right: -2rem; } - .xl\:-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; - } - .xl\:-mx-9 { margin-left: -2.25rem; margin-right: -2.25rem; } - .xl\:-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; - } - .xl\:-mx-10 { margin-left: -2.5rem; margin-right: -2.5rem; } - .xl\:-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; - } - .xl\:-mx-11 { margin-left: -2.75rem; margin-right: -2.75rem; } - .xl\:-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; - } - .xl\:-mx-12 { margin-left: -3rem; margin-right: -3rem; } - .xl\:-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; - } - .xl\:-mx-14 { margin-left: -3.5rem; margin-right: -3.5rem; } - .xl\:-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; - } - .xl\:-mx-16 { margin-left: -4rem; margin-right: -4rem; } - .xl\:-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; - } - .xl\:-mx-20 { margin-left: -5rem; margin-right: -5rem; } - .xl\:-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; - } - .xl\:-mx-24 { margin-left: -6rem; margin-right: -6rem; } - .xl\:-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; - } - .xl\:-mx-28 { margin-left: -7rem; margin-right: -7rem; } - .xl\:-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; - } - .xl\:-mx-32 { margin-left: -8rem; margin-right: -8rem; } - .xl\:-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; - } - .xl\:-mx-36 { margin-left: -9rem; margin-right: -9rem; } - .xl\:-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; - } - .xl\:-mx-40 { margin-left: -10rem; margin-right: -10rem; } - .xl\:-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; - } - .xl\:-mx-44 { margin-left: -11rem; margin-right: -11rem; } - .xl\:-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; - } - .xl\:-mx-48 { margin-left: -12rem; margin-right: -12rem; } - .xl\:-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; - } - .xl\:-mx-52 { margin-left: -13rem; margin-right: -13rem; } - .xl\:-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; - } - .xl\:-mx-56 { margin-left: -14rem; margin-right: -14rem; } - .xl\:-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; - } - .xl\:-mx-60 { margin-left: -15rem; margin-right: -15rem; } - .xl\:-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; - } - .xl\:-mx-64 { margin-left: -16rem; margin-right: -16rem; } - .xl\:-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; - } - .xl\:-mx-72 { margin-left: -18rem; margin-right: -18rem; } - .xl\:-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; - } - .xl\:-mx-80 { margin-left: -20rem; margin-right: -20rem; } - .xl\:-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; - } - .xl\:-mx-96 { margin-left: -24rem; margin-right: -24rem; } - .xl\:-my-px { - margin-top: -1px; - margin-bottom: -1px; - } - .xl\:-mx-px { margin-left: -1px; margin-right: -1px; } - .xl\:-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; - } - .xl\:-mx-0\.5 { margin-left: -0.125rem; margin-right: -0.125rem; } - .xl\:-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; - } - .xl\:-mx-1\.5 { margin-left: -0.375rem; margin-right: -0.375rem; } - .xl\:-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; - } - .xl\:-mx-2\.5 { margin-left: -0.625rem; margin-right: -0.625rem; } - .xl\:-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; - } - .xl\:-mx-3\.5 { margin-left: -0.875rem; margin-right: -0.875rem; } - .xl\:mt-0 { + .xl\:my-0 { margin-top: 0px; + margin-bottom: 0px; } - .xl\:mr-0 { - margin-right: 0px; - } - - .xl\:mb-0 { - margin-bottom: 0px; + .xl\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } - .xl\:ml-0 { - margin-left: 0px; + .xl\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; } - .xl\:mt-1 { - margin-top: 0.25rem; + .xl\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; } - .xl\:mr-1 { - margin-right: 0.25rem; + .xl\:my-4 { + margin-top: 1rem; + margin-bottom: 1rem; } - .xl\:mb-1 { - margin-bottom: 0.25rem; + .xl\:my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; } - .xl\:ml-1 { - margin-left: 0.25rem; + .xl\:my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; } - .xl\:mt-2 { - margin-top: 0.5rem; + .xl\:my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; } - .xl\:mr-2 { - margin-right: 0.5rem; + .xl\:my-8 { + margin-top: 2rem; + margin-bottom: 2rem; } - .xl\:mb-2 { - margin-bottom: 0.5rem; + .xl\:my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; } - .xl\:ml-2 { - margin-left: 0.5rem; + .xl\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; } - .xl\:mt-3 { - margin-top: 0.75rem; + .xl\:my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; } - .xl\:mr-3 { - margin-right: 0.75rem; + .xl\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; } - .xl\:mb-3 { - margin-bottom: 0.75rem; + .xl\:my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; } - .xl\:ml-3 { - margin-left: 0.75rem; + .xl\:my-16 { + margin-top: 4rem; + margin-bottom: 4rem; } - .xl\:mt-4 { - margin-top: 1rem; + .xl\:my-20 { + margin-top: 5rem; + margin-bottom: 5rem; } - .xl\:mr-4 { - margin-right: 1rem; + .xl\:my-24 { + margin-top: 6rem; + margin-bottom: 6rem; } - .xl\:mb-4 { - margin-bottom: 1rem; + .xl\:my-28 { + margin-top: 7rem; + margin-bottom: 7rem; } - .xl\:ml-4 { - margin-left: 1rem; + .xl\:my-32 { + margin-top: 8rem; + margin-bottom: 8rem; } - .xl\:mt-5 { - margin-top: 1.25rem; + .xl\:my-36 { + margin-top: 9rem; + margin-bottom: 9rem; } - .xl\:mr-5 { - margin-right: 1.25rem; + .xl\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; } - .xl\:mb-5 { - margin-bottom: 1.25rem; + .xl\:my-44 { + margin-top: 11rem; + margin-bottom: 11rem; } - .xl\:ml-5 { - margin-left: 1.25rem; + .xl\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; } - .xl\:mt-6 { - margin-top: 1.5rem; + .xl\:my-52 { + margin-top: 13rem; + margin-bottom: 13rem; } - .xl\:mr-6 { - margin-right: 1.5rem; + .xl\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; } - .xl\:mb-6 { - margin-bottom: 1.5rem; + .xl\:my-60 { + margin-top: 15rem; + margin-bottom: 15rem; } - .xl\:ml-6 { - margin-left: 1.5rem; + .xl\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; } - .xl\:mt-7 { - margin-top: 1.75rem; + .xl\:my-72 { + margin-top: 18rem; + margin-bottom: 18rem; } - .xl\:mr-7 { - margin-right: 1.75rem; + .xl\:my-80 { + margin-top: 20rem; + margin-bottom: 20rem; } - .xl\:mb-7 { - margin-bottom: 1.75rem; + .xl\:my-96 { + margin-top: 24rem; + margin-bottom: 24rem; } - .xl\:ml-7 { - margin-left: 1.75rem; + .xl\:my-auto { + margin-top: auto; + margin-bottom: auto; } - .xl\:mt-8 { - margin-top: 2rem; + .xl\:my-px { + margin-top: 1px; + margin-bottom: 1px; } - .xl\:mr-8 { - margin-right: 2rem; + .xl\:my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; } - .xl\:mb-8 { - margin-bottom: 2rem; + .xl\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; } - .xl\:ml-8 { - margin-left: 2rem; + .xl\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; } - .xl\:mt-9 { - margin-top: 2.25rem; + .xl\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; } - .xl\:mr-9 { - margin-right: 2.25rem; + .xl\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .xl\:mb-9 { - margin-bottom: 2.25rem; + .xl\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } - .xl\:ml-9 { - margin-left: 2.25rem; + .xl\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } - .xl\:mt-10 { - margin-top: 2.5rem; + .xl\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } - .xl\:mr-10 { - margin-right: 2.5rem; + .xl\:-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } - .xl\:mb-10 { - margin-bottom: 2.5rem; + .xl\:-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } - .xl\:ml-10 { - margin-left: 2.5rem; + .xl\:-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } - .xl\:mt-11 { - margin-top: 2.75rem; + .xl\:-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } - .xl\:mr-11 { - margin-right: 2.75rem; + .xl\:-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } - .xl\:mb-11 { - margin-bottom: 2.75rem; + .xl\:-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } - .xl\:ml-11 { - margin-left: 2.75rem; + .xl\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } - .xl\:mt-12 { - margin-top: 3rem; + .xl\:-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } - .xl\:mr-12 { - margin-right: 3rem; + .xl\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } - .xl\:mb-12 { - margin-bottom: 3rem; + .xl\:-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } - .xl\:ml-12 { - margin-left: 3rem; + .xl\:-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } - .xl\:mt-14 { - margin-top: 3.5rem; + .xl\:-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } - .xl\:mr-14 { - margin-right: 3.5rem; + .xl\:-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } - .xl\:mb-14 { - margin-bottom: 3.5rem; + .xl\:-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } - .xl\:ml-14 { - margin-left: 3.5rem; + .xl\:-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } - .xl\:mt-16 { - margin-top: 4rem; + .xl\:-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } - .xl\:mr-16 { - margin-right: 4rem; + .xl\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } - .xl\:mb-16 { - margin-bottom: 4rem; + .xl\:-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } - .xl\:ml-16 { - margin-left: 4rem; + .xl\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } - .xl\:mt-20 { - margin-top: 5rem; + .xl\:-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } - .xl\:mr-20 { - margin-right: 5rem; + .xl\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } - .xl\:mb-20 { - margin-bottom: 5rem; + .xl\:-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } - .xl\:ml-20 { - margin-left: 5rem; + .xl\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } - .xl\:mt-24 { - margin-top: 6rem; + .xl\:-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } - .xl\:mr-24 { - margin-right: 6rem; + .xl\:-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } - .xl\:mb-24 { - margin-bottom: 6rem; + .xl\:-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } - .xl\:ml-24 { - margin-left: 6rem; + .xl\:-my-px { + margin-top: -1px; + margin-bottom: -1px; } - .xl\:mt-28 { - margin-top: 7rem; + .xl\:-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } - .xl\:mr-28 { - margin-right: 7rem; + .xl\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } - .xl\:mb-28 { - margin-bottom: 7rem; + .xl\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } - .xl\:ml-28 { - margin-left: 7rem; + .xl\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } - .xl\:mt-32 { - margin-top: 8rem; + .xl\:mt-0 { + margin-top: 0px; } - .xl\:mr-32 { - margin-right: 8rem; + .xl\:mt-1 { + margin-top: 0.25rem; } - .xl\:mb-32 { - margin-bottom: 8rem; + .xl\:mt-2 { + margin-top: 0.5rem; } - .xl\:ml-32 { - margin-left: 8rem; + .xl\:mt-3 { + margin-top: 0.75rem; } - .xl\:mt-36 { - margin-top: 9rem; + .xl\:mt-4 { + margin-top: 1rem; } - .xl\:mr-36 { - margin-right: 9rem; + .xl\:mt-5 { + margin-top: 1.25rem; } - .xl\:mb-36 { - margin-bottom: 9rem; + .xl\:mt-6 { + margin-top: 1.5rem; } - .xl\:ml-36 { - margin-left: 9rem; + .xl\:mt-7 { + margin-top: 1.75rem; } - .xl\:mt-40 { - margin-top: 10rem; + .xl\:mt-8 { + margin-top: 2rem; } - .xl\:mr-40 { - margin-right: 10rem; + .xl\:mt-9 { + margin-top: 2.25rem; } - .xl\:mb-40 { - margin-bottom: 10rem; + .xl\:mt-10 { + margin-top: 2.5rem; } - .xl\:ml-40 { - margin-left: 10rem; + .xl\:mt-11 { + margin-top: 2.75rem; } - .xl\:mt-44 { - margin-top: 11rem; + .xl\:mt-12 { + margin-top: 3rem; } - .xl\:mr-44 { - margin-right: 11rem; + .xl\:mt-14 { + margin-top: 3.5rem; } - .xl\:mb-44 { - margin-bottom: 11rem; + .xl\:mt-16 { + margin-top: 4rem; } - .xl\:ml-44 { - margin-left: 11rem; + .xl\:mt-20 { + margin-top: 5rem; } - .xl\:mt-48 { - margin-top: 12rem; + .xl\:mt-24 { + margin-top: 6rem; } - .xl\:mr-48 { - margin-right: 12rem; + .xl\:mt-28 { + margin-top: 7rem; } - .xl\:mb-48 { - margin-bottom: 12rem; + .xl\:mt-32 { + margin-top: 8rem; } - .xl\:ml-48 { - margin-left: 12rem; + .xl\:mt-36 { + margin-top: 9rem; } - .xl\:mt-52 { - margin-top: 13rem; + .xl\:mt-40 { + margin-top: 10rem; } - .xl\:mr-52 { - margin-right: 13rem; + .xl\:mt-44 { + margin-top: 11rem; } - .xl\:mb-52 { - margin-bottom: 13rem; + .xl\:mt-48 { + margin-top: 12rem; } - .xl\:ml-52 { - margin-left: 13rem; + .xl\:mt-52 { + margin-top: 13rem; } .xl\:mt-56 { margin-top: 14rem; } - .xl\:mr-56 { - margin-right: 14rem; + .xl\:mt-60 { + margin-top: 15rem; } - .xl\:mb-56 { - margin-bottom: 14rem; + .xl\:mt-64 { + margin-top: 16rem; } - .xl\:ml-56 { - margin-left: 14rem; + .xl\:mt-72 { + margin-top: 18rem; } - .xl\:mt-60 { - margin-top: 15rem; + .xl\:mt-80 { + margin-top: 20rem; } - .xl\:mr-60 { - margin-right: 15rem; + .xl\:mt-96 { + margin-top: 24rem; } - .xl\:mb-60 { - margin-bottom: 15rem; + .xl\:mt-auto { + margin-top: auto; } - .xl\:ml-60 { - margin-left: 15rem; + .xl\:mt-px { + margin-top: 1px; } - .xl\:mt-64 { - margin-top: 16rem; + .xl\:mt-0\.5 { + margin-top: 0.125rem; } - .xl\:mr-64 { - margin-right: 16rem; + .xl\:mt-1\.5 { + margin-top: 0.375rem; } - .xl\:mb-64 { - margin-bottom: 16rem; + .xl\:mt-2\.5 { + margin-top: 0.625rem; } - .xl\:ml-64 { - margin-left: 16rem; + .xl\:mt-3\.5 { + margin-top: 0.875rem; } - .xl\:mt-72 { - margin-top: 18rem; + .xl\:-mt-0 { + margin-top: 0px; } - .xl\:mr-72 { - margin-right: 18rem; + .xl\:-mt-1 { + margin-top: -0.25rem; } - .xl\:mb-72 { - margin-bottom: 18rem; + .xl\:-mt-2 { + margin-top: -0.5rem; } - .xl\:ml-72 { - margin-left: 18rem; + .xl\:-mt-3 { + margin-top: -0.75rem; } - .xl\:mt-80 { - margin-top: 20rem; + .xl\:-mt-4 { + margin-top: -1rem; } - .xl\:mr-80 { - margin-right: 20rem; + .xl\:-mt-5 { + margin-top: -1.25rem; } - .xl\:mb-80 { - margin-bottom: 20rem; + .xl\:-mt-6 { + margin-top: -1.5rem; } - .xl\:ml-80 { - margin-left: 20rem; + .xl\:-mt-7 { + margin-top: -1.75rem; } - .xl\:mt-96 { - margin-top: 24rem; + .xl\:-mt-8 { + margin-top: -2rem; } - .xl\:mr-96 { - margin-right: 24rem; + .xl\:-mt-9 { + margin-top: -2.25rem; } - .xl\:mb-96 { - margin-bottom: 24rem; + .xl\:-mt-10 { + margin-top: -2.5rem; } - .xl\:ml-96 { - margin-left: 24rem; + .xl\:-mt-11 { + margin-top: -2.75rem; } - .xl\:mt-auto { - margin-top: auto; + .xl\:-mt-12 { + margin-top: -3rem; } - .xl\:mr-auto { - margin-right: auto; + .xl\:-mt-14 { + margin-top: -3.5rem; } - .xl\:mb-auto { - margin-bottom: auto; + .xl\:-mt-16 { + margin-top: -4rem; } - .xl\:ml-auto { - margin-left: auto; + .xl\:-mt-20 { + margin-top: -5rem; } - .xl\:mt-px { - margin-top: 1px; + .xl\:-mt-24 { + margin-top: -6rem; } - .xl\:mr-px { - margin-right: 1px; + .xl\:-mt-28 { + margin-top: -7rem; } - .xl\:mb-px { - margin-bottom: 1px; + .xl\:-mt-32 { + margin-top: -8rem; } - .xl\:ml-px { - margin-left: 1px; + .xl\:-mt-36 { + margin-top: -9rem; } - .xl\:mt-0\.5 { - margin-top: 0.125rem; + .xl\:-mt-40 { + margin-top: -10rem; } - .xl\:mr-0\.5 { - margin-right: 0.125rem; + .xl\:-mt-44 { + margin-top: -11rem; } - .xl\:mb-0\.5 { - margin-bottom: 0.125rem; + .xl\:-mt-48 { + margin-top: -12rem; } - .xl\:ml-0\.5 { - margin-left: 0.125rem; + .xl\:-mt-52 { + margin-top: -13rem; } - .xl\:mt-1\.5 { - margin-top: 0.375rem; + .xl\:-mt-56 { + margin-top: -14rem; } - .xl\:mr-1\.5 { - margin-right: 0.375rem; + .xl\:-mt-60 { + margin-top: -15rem; } - .xl\:mb-1\.5 { - margin-bottom: 0.375rem; + .xl\:-mt-64 { + margin-top: -16rem; } - .xl\:ml-1\.5 { - margin-left: 0.375rem; + .xl\:-mt-72 { + margin-top: -18rem; } - .xl\:mt-2\.5 { - margin-top: 0.625rem; + .xl\:-mt-80 { + margin-top: -20rem; } - .xl\:mr-2\.5 { - margin-right: 0.625rem; + .xl\:-mt-96 { + margin-top: -24rem; } - .xl\:mb-2\.5 { - margin-bottom: 0.625rem; + .xl\:-mt-px { + margin-top: -1px; } - .xl\:ml-2\.5 { - margin-left: 0.625rem; + .xl\:-mt-0\.5 { + margin-top: -0.125rem; } - .xl\:mt-3\.5 { - margin-top: 0.875rem; + .xl\:-mt-1\.5 { + margin-top: -0.375rem; } - .xl\:mr-3\.5 { - margin-right: 0.875rem; + .xl\:-mt-2\.5 { + margin-top: -0.625rem; } - .xl\:mb-3\.5 { - margin-bottom: 0.875rem; + .xl\:-mt-3\.5 { + margin-top: -0.875rem; } - .xl\:ml-3\.5 { - margin-left: 0.875rem; + .xl\:mr-0 { + margin-right: 0px; } - .xl\:-mt-0 { - margin-top: 0px; + .xl\:mr-1 { + margin-right: 0.25rem; } - .xl\:-mr-0 { - margin-right: 0px; + .xl\:mr-2 { + margin-right: 0.5rem; } - .xl\:-mb-0 { - margin-bottom: 0px; + .xl\:mr-3 { + margin-right: 0.75rem; } - .xl\:-ml-0 { - margin-left: 0px; + .xl\:mr-4 { + margin-right: 1rem; } - .xl\:-mt-1 { - margin-top: -0.25rem; + .xl\:mr-5 { + margin-right: 1.25rem; } - .xl\:-mr-1 { - margin-right: -0.25rem; + .xl\:mr-6 { + margin-right: 1.5rem; } - .xl\:-mb-1 { - margin-bottom: -0.25rem; + .xl\:mr-7 { + margin-right: 1.75rem; } - .xl\:-ml-1 { - margin-left: -0.25rem; + .xl\:mr-8 { + margin-right: 2rem; } - .xl\:-mt-2 { - margin-top: -0.5rem; + .xl\:mr-9 { + margin-right: 2.25rem; } - .xl\:-mr-2 { - margin-right: -0.5rem; + .xl\:mr-10 { + margin-right: 2.5rem; } - .xl\:-mb-2 { - margin-bottom: -0.5rem; + .xl\:mr-11 { + margin-right: 2.75rem; } - .xl\:-ml-2 { - margin-left: -0.5rem; + .xl\:mr-12 { + margin-right: 3rem; } - .xl\:-mt-3 { - margin-top: -0.75rem; + .xl\:mr-14 { + margin-right: 3.5rem; } - .xl\:-mr-3 { - margin-right: -0.75rem; + .xl\:mr-16 { + margin-right: 4rem; } - .xl\:-mb-3 { - margin-bottom: -0.75rem; + .xl\:mr-20 { + margin-right: 5rem; } - .xl\:-ml-3 { - margin-left: -0.75rem; + .xl\:mr-24 { + margin-right: 6rem; } - .xl\:-mt-4 { - margin-top: -1rem; + .xl\:mr-28 { + margin-right: 7rem; } - .xl\:-mr-4 { - margin-right: -1rem; + .xl\:mr-32 { + margin-right: 8rem; } - .xl\:-mb-4 { - margin-bottom: -1rem; + .xl\:mr-36 { + margin-right: 9rem; } - .xl\:-ml-4 { - margin-left: -1rem; + .xl\:mr-40 { + margin-right: 10rem; } - .xl\:-mt-5 { - margin-top: -1.25rem; + .xl\:mr-44 { + margin-right: 11rem; } - .xl\:-mr-5 { - margin-right: -1.25rem; + .xl\:mr-48 { + margin-right: 12rem; } - .xl\:-mb-5 { - margin-bottom: -1.25rem; + .xl\:mr-52 { + margin-right: 13rem; } - .xl\:-ml-5 { - margin-left: -1.25rem; + .xl\:mr-56 { + margin-right: 14rem; } - .xl\:-mt-6 { - margin-top: -1.5rem; + .xl\:mr-60 { + margin-right: 15rem; } - .xl\:-mr-6 { - margin-right: -1.5rem; + .xl\:mr-64 { + margin-right: 16rem; } - .xl\:-mb-6 { - margin-bottom: -1.5rem; + .xl\:mr-72 { + margin-right: 18rem; } - .xl\:-ml-6 { - margin-left: -1.5rem; + .xl\:mr-80 { + margin-right: 20rem; } - .xl\:-mt-7 { - margin-top: -1.75rem; + .xl\:mr-96 { + margin-right: 24rem; } - .xl\:-mr-7 { - margin-right: -1.75rem; + .xl\:mr-auto { + margin-right: auto; } - .xl\:-mb-7 { - margin-bottom: -1.75rem; + .xl\:mr-px { + margin-right: 1px; } - .xl\:-ml-7 { - margin-left: -1.75rem; + .xl\:mr-0\.5 { + margin-right: 0.125rem; } - .xl\:-mt-8 { - margin-top: -2rem; + .xl\:mr-1\.5 { + margin-right: 0.375rem; } - .xl\:-mr-8 { - margin-right: -2rem; + .xl\:mr-2\.5 { + margin-right: 0.625rem; } - .xl\:-mb-8 { - margin-bottom: -2rem; + .xl\:mr-3\.5 { + margin-right: 0.875rem; } - .xl\:-ml-8 { - margin-left: -2rem; + .xl\:-mr-0 { + margin-right: 0px; } - .xl\:-mt-9 { - margin-top: -2.25rem; + .xl\:-mr-1 { + margin-right: -0.25rem; } - .xl\:-mr-9 { - margin-right: -2.25rem; + .xl\:-mr-2 { + margin-right: -0.5rem; } - .xl\:-mb-9 { - margin-bottom: -2.25rem; + .xl\:-mr-3 { + margin-right: -0.75rem; } - .xl\:-ml-9 { - margin-left: -2.25rem; + .xl\:-mr-4 { + margin-right: -1rem; } - .xl\:-mt-10 { - margin-top: -2.5rem; + .xl\:-mr-5 { + margin-right: -1.25rem; } - .xl\:-mr-10 { - margin-right: -2.5rem; + .xl\:-mr-6 { + margin-right: -1.5rem; } - .xl\:-mb-10 { - margin-bottom: -2.5rem; + .xl\:-mr-7 { + margin-right: -1.75rem; } - .xl\:-ml-10 { - margin-left: -2.5rem; + .xl\:-mr-8 { + margin-right: -2rem; } - .xl\:-mt-11 { - margin-top: -2.75rem; + .xl\:-mr-9 { + margin-right: -2.25rem; + } + + .xl\:-mr-10 { + margin-right: -2.5rem; } .xl\:-mr-11 { margin-right: -2.75rem; } - .xl\:-mb-11 { - margin-bottom: -2.75rem; + .xl\:-mr-12 { + margin-right: -3rem; } - .xl\:-ml-11 { - margin-left: -2.75rem; + .xl\:-mr-14 { + margin-right: -3.5rem; } - .xl\:-mt-12 { - margin-top: -3rem; + .xl\:-mr-16 { + margin-right: -4rem; } - .xl\:-mr-12 { - margin-right: -3rem; + .xl\:-mr-20 { + margin-right: -5rem; } - .xl\:-mb-12 { - margin-bottom: -3rem; + .xl\:-mr-24 { + margin-right: -6rem; } - .xl\:-ml-12 { - margin-left: -3rem; + .xl\:-mr-28 { + margin-right: -7rem; } - .xl\:-mt-14 { - margin-top: -3.5rem; + .xl\:-mr-32 { + margin-right: -8rem; } - .xl\:-mr-14 { - margin-right: -3.5rem; + .xl\:-mr-36 { + margin-right: -9rem; } - .xl\:-mb-14 { - margin-bottom: -3.5rem; + .xl\:-mr-40 { + margin-right: -10rem; } - .xl\:-ml-14 { - margin-left: -3.5rem; + .xl\:-mr-44 { + margin-right: -11rem; } - .xl\:-mt-16 { - margin-top: -4rem; + .xl\:-mr-48 { + margin-right: -12rem; } - .xl\:-mr-16 { - margin-right: -4rem; + .xl\:-mr-52 { + margin-right: -13rem; } - .xl\:-mb-16 { - margin-bottom: -4rem; + .xl\:-mr-56 { + margin-right: -14rem; } - .xl\:-ml-16 { - margin-left: -4rem; + .xl\:-mr-60 { + margin-right: -15rem; } - .xl\:-mt-20 { - margin-top: -5rem; + .xl\:-mr-64 { + margin-right: -16rem; } - .xl\:-mr-20 { - margin-right: -5rem; + .xl\:-mr-72 { + margin-right: -18rem; } - .xl\:-mb-20 { - margin-bottom: -5rem; + .xl\:-mr-80 { + margin-right: -20rem; } - .xl\:-ml-20 { - margin-left: -5rem; + .xl\:-mr-96 { + margin-right: -24rem; } - .xl\:-mt-24 { - margin-top: -6rem; + .xl\:-mr-px { + margin-right: -1px; } - .xl\:-mr-24 { - margin-right: -6rem; + .xl\:-mr-0\.5 { + margin-right: -0.125rem; } - .xl\:-mb-24 { - margin-bottom: -6rem; + .xl\:-mr-1\.5 { + margin-right: -0.375rem; } - .xl\:-ml-24 { - margin-left: -6rem; + .xl\:-mr-2\.5 { + margin-right: -0.625rem; } - .xl\:-mt-28 { - margin-top: -7rem; + .xl\:-mr-3\.5 { + margin-right: -0.875rem; } - .xl\:-mr-28 { - margin-right: -7rem; + .xl\:mb-0 { + margin-bottom: 0px; } - .xl\:-mb-28 { - margin-bottom: -7rem; + .xl\:mb-1 { + margin-bottom: 0.25rem; } - .xl\:-ml-28 { - margin-left: -7rem; + .xl\:mb-2 { + margin-bottom: 0.5rem; } - .xl\:-mt-32 { - margin-top: -8rem; + .xl\:mb-3 { + margin-bottom: 0.75rem; } - .xl\:-mr-32 { - margin-right: -8rem; + .xl\:mb-4 { + margin-bottom: 1rem; } - .xl\:-mb-32 { - margin-bottom: -8rem; + .xl\:mb-5 { + margin-bottom: 1.25rem; } - .xl\:-ml-32 { - margin-left: -8rem; + .xl\:mb-6 { + margin-bottom: 1.5rem; } - .xl\:-mt-36 { - margin-top: -9rem; + .xl\:mb-7 { + margin-bottom: 1.75rem; } - .xl\:-mr-36 { - margin-right: -9rem; + .xl\:mb-8 { + margin-bottom: 2rem; } - .xl\:-mb-36 { - margin-bottom: -9rem; + .xl\:mb-9 { + margin-bottom: 2.25rem; } - .xl\:-ml-36 { - margin-left: -9rem; + .xl\:mb-10 { + margin-bottom: 2.5rem; } - .xl\:-mt-40 { - margin-top: -10rem; + .xl\:mb-11 { + margin-bottom: 2.75rem; } - .xl\:-mr-40 { - margin-right: -10rem; + .xl\:mb-12 { + margin-bottom: 3rem; } - .xl\:-mb-40 { - margin-bottom: -10rem; + .xl\:mb-14 { + margin-bottom: 3.5rem; } - .xl\:-ml-40 { - margin-left: -10rem; + .xl\:mb-16 { + margin-bottom: 4rem; } - .xl\:-mt-44 { - margin-top: -11rem; + .xl\:mb-20 { + margin-bottom: 5rem; } - .xl\:-mr-44 { - margin-right: -11rem; + .xl\:mb-24 { + margin-bottom: 6rem; } - .xl\:-mb-44 { - margin-bottom: -11rem; + .xl\:mb-28 { + margin-bottom: 7rem; } - .xl\:-ml-44 { - margin-left: -11rem; + .xl\:mb-32 { + margin-bottom: 8rem; } - .xl\:-mt-48 { - margin-top: -12rem; + .xl\:mb-36 { + margin-bottom: 9rem; } - .xl\:-mr-48 { - margin-right: -12rem; + .xl\:mb-40 { + margin-bottom: 10rem; } - .xl\:-mb-48 { - margin-bottom: -12rem; + .xl\:mb-44 { + margin-bottom: 11rem; } - .xl\:-ml-48 { - margin-left: -12rem; + .xl\:mb-48 { + margin-bottom: 12rem; } - .xl\:-mt-52 { - margin-top: -13rem; + .xl\:mb-52 { + margin-bottom: 13rem; } - .xl\:-mr-52 { - margin-right: -13rem; + .xl\:mb-56 { + margin-bottom: 14rem; } - .xl\:-mb-52 { - margin-bottom: -13rem; + .xl\:mb-60 { + margin-bottom: 15rem; } - .xl\:-ml-52 { - margin-left: -13rem; + .xl\:mb-64 { + margin-bottom: 16rem; } - .xl\:-mt-56 { - margin-top: -14rem; + .xl\:mb-72 { + margin-bottom: 18rem; } - .xl\:-mr-56 { - margin-right: -14rem; + .xl\:mb-80 { + margin-bottom: 20rem; } - .xl\:-mb-56 { - margin-bottom: -14rem; + .xl\:mb-96 { + margin-bottom: 24rem; } - .xl\:-ml-56 { - margin-left: -14rem; + .xl\:mb-auto { + margin-bottom: auto; } - .xl\:-mt-60 { - margin-top: -15rem; + .xl\:mb-px { + margin-bottom: 1px; } - .xl\:-mr-60 { - margin-right: -15rem; + .xl\:mb-0\.5 { + margin-bottom: 0.125rem; } - .xl\:-mb-60 { - margin-bottom: -15rem; + .xl\:mb-1\.5 { + margin-bottom: 0.375rem; } - .xl\:-ml-60 { - margin-left: -15rem; + .xl\:mb-2\.5 { + margin-bottom: 0.625rem; } - .xl\:-mt-64 { - margin-top: -16rem; + .xl\:mb-3\.5 { + margin-bottom: 0.875rem; } - .xl\:-mr-64 { - margin-right: -16rem; + .xl\:-mb-0 { + margin-bottom: 0px; } - .xl\:-mb-64 { - margin-bottom: -16rem; + .xl\:-mb-1 { + margin-bottom: -0.25rem; } - .xl\:-ml-64 { - margin-left: -16rem; + .xl\:-mb-2 { + margin-bottom: -0.5rem; } - .xl\:-mt-72 { - margin-top: -18rem; + .xl\:-mb-3 { + margin-bottom: -0.75rem; } - .xl\:-mr-72 { - margin-right: -18rem; + .xl\:-mb-4 { + margin-bottom: -1rem; } - .xl\:-mb-72 { - margin-bottom: -18rem; + .xl\:-mb-5 { + margin-bottom: -1.25rem; } - .xl\:-ml-72 { - margin-left: -18rem; + .xl\:-mb-6 { + margin-bottom: -1.5rem; } - .xl\:-mt-80 { - margin-top: -20rem; + .xl\:-mb-7 { + margin-bottom: -1.75rem; } - .xl\:-mr-80 { - margin-right: -20rem; + .xl\:-mb-8 { + margin-bottom: -2rem; } - .xl\:-mb-80 { - margin-bottom: -20rem; + .xl\:-mb-9 { + margin-bottom: -2.25rem; } - .xl\:-ml-80 { - margin-left: -20rem; + .xl\:-mb-10 { + margin-bottom: -2.5rem; } - .xl\:-mt-96 { - margin-top: -24rem; + .xl\:-mb-11 { + margin-bottom: -2.75rem; } - .xl\:-mr-96 { - margin-right: -24rem; + .xl\:-mb-12 { + margin-bottom: -3rem; } - .xl\:-mb-96 { - margin-bottom: -24rem; + .xl\:-mb-14 { + margin-bottom: -3.5rem; } - .xl\:-ml-96 { - margin-left: -24rem; + .xl\:-mb-16 { + margin-bottom: -4rem; } - .xl\:-mt-px { - margin-top: -1px; + .xl\:-mb-20 { + margin-bottom: -5rem; } - .xl\:-mr-px { - margin-right: -1px; + .xl\:-mb-24 { + margin-bottom: -6rem; } - .xl\:-mb-px { - margin-bottom: -1px; + .xl\:-mb-28 { + margin-bottom: -7rem; } - .xl\:-ml-px { - margin-left: -1px; + .xl\:-mb-32 { + margin-bottom: -8rem; } - .xl\:-mt-0\.5 { - margin-top: -0.125rem; + .xl\:-mb-36 { + margin-bottom: -9rem; } - .xl\:-mr-0\.5 { - margin-right: -0.125rem; + .xl\:-mb-40 { + margin-bottom: -10rem; } - .xl\:-mb-0\.5 { - margin-bottom: -0.125rem; + .xl\:-mb-44 { + margin-bottom: -11rem; } - .xl\:-ml-0\.5 { - margin-left: -0.125rem; + .xl\:-mb-48 { + margin-bottom: -12rem; } - .xl\:-mt-1\.5 { - margin-top: -0.375rem; + .xl\:-mb-52 { + margin-bottom: -13rem; } - .xl\:-mr-1\.5 { - margin-right: -0.375rem; + .xl\:-mb-56 { + margin-bottom: -14rem; } - .xl\:-mb-1\.5 { - margin-bottom: -0.375rem; + .xl\:-mb-60 { + margin-bottom: -15rem; } - .xl\:-ml-1\.5 { - margin-left: -0.375rem; + .xl\:-mb-64 { + margin-bottom: -16rem; } - .xl\:-mt-2\.5 { - margin-top: -0.625rem; + .xl\:-mb-72 { + margin-bottom: -18rem; } - .xl\:-mr-2\.5 { - margin-right: -0.625rem; + .xl\:-mb-80 { + margin-bottom: -20rem; } - .xl\:-mb-2\.5 { - margin-bottom: -0.625rem; + .xl\:-mb-96 { + margin-bottom: -24rem; } - .xl\:-ml-2\.5 { - margin-left: -0.625rem; + .xl\:-mb-px { + margin-bottom: -1px; } - .xl\:-mt-3\.5 { - margin-top: -0.875rem; + .xl\:-mb-0\.5 { + margin-bottom: -0.125rem; } - .xl\:-mr-3\.5 { - margin-right: -0.875rem; + .xl\:-mb-1\.5 { + margin-bottom: -0.375rem; + } + + .xl\:-mb-2\.5 { + margin-bottom: -0.625rem; } .xl\:-mb-3\.5 { margin-bottom: -0.875rem; } + .xl\:ml-0 { + margin-left: 0px; + } + + .xl\:ml-1 { + margin-left: 0.25rem; + } + + .xl\:ml-2 { + margin-left: 0.5rem; + } + + .xl\:ml-3 { + margin-left: 0.75rem; + } + + .xl\:ml-4 { + margin-left: 1rem; + } + + .xl\:ml-5 { + margin-left: 1.25rem; + } + + .xl\:ml-6 { + margin-left: 1.5rem; + } + + .xl\:ml-7 { + margin-left: 1.75rem; + } + + .xl\:ml-8 { + margin-left: 2rem; + } + + .xl\:ml-9 { + margin-left: 2.25rem; + } + + .xl\:ml-10 { + margin-left: 2.5rem; + } + + .xl\:ml-11 { + margin-left: 2.75rem; + } + + .xl\:ml-12 { + margin-left: 3rem; + } + + .xl\:ml-14 { + margin-left: 3.5rem; + } + + .xl\:ml-16 { + margin-left: 4rem; + } + + .xl\:ml-20 { + margin-left: 5rem; + } + + .xl\:ml-24 { + margin-left: 6rem; + } + + .xl\:ml-28 { + margin-left: 7rem; + } + + .xl\:ml-32 { + margin-left: 8rem; + } + + .xl\:ml-36 { + margin-left: 9rem; + } + + .xl\:ml-40 { + margin-left: 10rem; + } + + .xl\:ml-44 { + margin-left: 11rem; + } + + .xl\:ml-48 { + margin-left: 12rem; + } + + .xl\:ml-52 { + margin-left: 13rem; + } + + .xl\:ml-56 { + margin-left: 14rem; + } + + .xl\:ml-60 { + margin-left: 15rem; + } + + .xl\:ml-64 { + margin-left: 16rem; + } + + .xl\:ml-72 { + margin-left: 18rem; + } + + .xl\:ml-80 { + margin-left: 20rem; + } + + .xl\:ml-96 { + margin-left: 24rem; + } + + .xl\:ml-auto { + margin-left: auto; + } + + .xl\:ml-px { + margin-left: 1px; + } + + .xl\:ml-0\.5 { + margin-left: 0.125rem; + } + + .xl\:ml-1\.5 { + margin-left: 0.375rem; + } + + .xl\:ml-2\.5 { + margin-left: 0.625rem; + } + + .xl\:ml-3\.5 { + margin-left: 0.875rem; + } + + .xl\:-ml-0 { + margin-left: 0px; + } + + .xl\:-ml-1 { + margin-left: -0.25rem; + } + + .xl\:-ml-2 { + margin-left: -0.5rem; + } + + .xl\:-ml-3 { + margin-left: -0.75rem; + } + + .xl\:-ml-4 { + margin-left: -1rem; + } + + .xl\:-ml-5 { + margin-left: -1.25rem; + } + + .xl\:-ml-6 { + margin-left: -1.5rem; + } + + .xl\:-ml-7 { + margin-left: -1.75rem; + } + + .xl\:-ml-8 { + margin-left: -2rem; + } + + .xl\:-ml-9 { + margin-left: -2.25rem; + } + + .xl\:-ml-10 { + margin-left: -2.5rem; + } + + .xl\:-ml-11 { + margin-left: -2.75rem; + } + + .xl\:-ml-12 { + margin-left: -3rem; + } + + .xl\:-ml-14 { + margin-left: -3.5rem; + } + + .xl\:-ml-16 { + margin-left: -4rem; + } + + .xl\:-ml-20 { + margin-left: -5rem; + } + + .xl\:-ml-24 { + margin-left: -6rem; + } + + .xl\:-ml-28 { + margin-left: -7rem; + } + + .xl\:-ml-32 { + margin-left: -8rem; + } + + .xl\:-ml-36 { + margin-left: -9rem; + } + + .xl\:-ml-40 { + margin-left: -10rem; + } + + .xl\:-ml-44 { + margin-left: -11rem; + } + + .xl\:-ml-48 { + margin-left: -12rem; + } + + .xl\:-ml-52 { + margin-left: -13rem; + } + + .xl\:-ml-56 { + margin-left: -14rem; + } + + .xl\:-ml-60 { + margin-left: -15rem; + } + + .xl\:-ml-64 { + margin-left: -16rem; + } + + .xl\:-ml-72 { + margin-left: -18rem; + } + + .xl\:-ml-80 { + margin-left: -20rem; + } + + .xl\:-ml-96 { + margin-left: -24rem; + } + + .xl\:-ml-px { + margin-left: -1px; + } + + .xl\:-ml-0\.5 { + margin-left: -0.125rem; + } + + .xl\:-ml-1\.5 { + margin-left: -0.375rem; + } + + .xl\:-ml-2\.5 { + margin-left: -0.625rem; + } + .xl\:-ml-3\.5 { margin-left: -0.875rem; } @@ -157655,1846 +157655,1846 @@ video { margin: -0.875rem; } - .\32xl\:my-0 { - margin-top: 0px; - margin-bottom: 0px; - } - .\32xl\:mx-0 { margin-left: 0px; margin-right: 0px; } - .\32xl\:my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; - } - .\32xl\:mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; } - .\32xl\:my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; - } - .\32xl\:mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; } - .\32xl\:my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; - } - .\32xl\:mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; } - .\32xl\:my-4 { - margin-top: 1rem; - margin-bottom: 1rem; - } - .\32xl\:mx-4 { margin-left: 1rem; margin-right: 1rem; } - .\32xl\:my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; - } - .\32xl\:mx-5 { margin-left: 1.25rem; margin-right: 1.25rem; } - .\32xl\:my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; - } - .\32xl\:mx-6 { margin-left: 1.5rem; margin-right: 1.5rem; } - .\32xl\:my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; - } - .\32xl\:mx-7 { margin-left: 1.75rem; margin-right: 1.75rem; } - .\32xl\:my-8 { - margin-top: 2rem; - margin-bottom: 2rem; - } - .\32xl\:mx-8 { margin-left: 2rem; margin-right: 2rem; } - .\32xl\:my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; - } - .\32xl\:mx-9 { margin-left: 2.25rem; margin-right: 2.25rem; } - .\32xl\:my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; - } - .\32xl\:mx-10 { margin-left: 2.5rem; margin-right: 2.5rem; } - .\32xl\:my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; - } - .\32xl\:mx-11 { margin-left: 2.75rem; margin-right: 2.75rem; } - .\32xl\:my-12 { - margin-top: 3rem; - margin-bottom: 3rem; - } - .\32xl\:mx-12 { margin-left: 3rem; margin-right: 3rem; } - .\32xl\:my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; - } - .\32xl\:mx-14 { margin-left: 3.5rem; margin-right: 3.5rem; } - .\32xl\:my-16 { - margin-top: 4rem; - margin-bottom: 4rem; - } - .\32xl\:mx-16 { margin-left: 4rem; margin-right: 4rem; } - .\32xl\:my-20 { - margin-top: 5rem; - margin-bottom: 5rem; - } - .\32xl\:mx-20 { margin-left: 5rem; margin-right: 5rem; } - .\32xl\:my-24 { - margin-top: 6rem; - margin-bottom: 6rem; - } - .\32xl\:mx-24 { margin-left: 6rem; margin-right: 6rem; } - .\32xl\:my-28 { - margin-top: 7rem; - margin-bottom: 7rem; - } - .\32xl\:mx-28 { margin-left: 7rem; margin-right: 7rem; } - .\32xl\:my-32 { - margin-top: 8rem; - margin-bottom: 8rem; - } - .\32xl\:mx-32 { margin-left: 8rem; margin-right: 8rem; } - .\32xl\:my-36 { - margin-top: 9rem; - margin-bottom: 9rem; - } - .\32xl\:mx-36 { margin-left: 9rem; margin-right: 9rem; } - .\32xl\:my-40 { - margin-top: 10rem; - margin-bottom: 10rem; - } - .\32xl\:mx-40 { margin-left: 10rem; margin-right: 10rem; } - .\32xl\:my-44 { - margin-top: 11rem; - margin-bottom: 11rem; - } - .\32xl\:mx-44 { margin-left: 11rem; margin-right: 11rem; } - .\32xl\:my-48 { - margin-top: 12rem; - margin-bottom: 12rem; - } - .\32xl\:mx-48 { margin-left: 12rem; margin-right: 12rem; } - .\32xl\:my-52 { - margin-top: 13rem; - margin-bottom: 13rem; - } - .\32xl\:mx-52 { margin-left: 13rem; margin-right: 13rem; } - .\32xl\:my-56 { - margin-top: 14rem; - margin-bottom: 14rem; - } - .\32xl\:mx-56 { margin-left: 14rem; margin-right: 14rem; } - .\32xl\:my-60 { - margin-top: 15rem; - margin-bottom: 15rem; - } - .\32xl\:mx-60 { margin-left: 15rem; margin-right: 15rem; } - .\32xl\:my-64 { - margin-top: 16rem; - margin-bottom: 16rem; - } - .\32xl\:mx-64 { margin-left: 16rem; margin-right: 16rem; } - .\32xl\:my-72 { - margin-top: 18rem; - margin-bottom: 18rem; - } - .\32xl\:mx-72 { margin-left: 18rem; margin-right: 18rem; } - .\32xl\:my-80 { - margin-top: 20rem; - margin-bottom: 20rem; - } - .\32xl\:mx-80 { margin-left: 20rem; margin-right: 20rem; } - .\32xl\:my-96 { - margin-top: 24rem; - margin-bottom: 24rem; - } - .\32xl\:mx-96 { margin-left: 24rem; margin-right: 24rem; } - .\32xl\:my-auto { - margin-top: auto; - margin-bottom: auto; - } - .\32xl\:mx-auto { margin-left: auto; margin-right: auto; } - .\32xl\:my-px { - margin-top: 1px; - margin-bottom: 1px; - } - .\32xl\:mx-px { margin-left: 1px; margin-right: 1px; } - .\32xl\:my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; - } - .\32xl\:mx-0\.5 { margin-left: 0.125rem; margin-right: 0.125rem; } - .\32xl\:my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; - } - .\32xl\:mx-1\.5 { margin-left: 0.375rem; margin-right: 0.375rem; } - .\32xl\:my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; - } - .\32xl\:mx-2\.5 { margin-left: 0.625rem; margin-right: 0.625rem; } - .\32xl\:my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; - } - .\32xl\:mx-3\.5 { margin-left: 0.875rem; margin-right: 0.875rem; } - .\32xl\:-my-0 { - margin-top: 0px; - margin-bottom: 0px; - } - .\32xl\:-mx-0 { margin-left: 0px; margin-right: 0px; } - .\32xl\:-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; - } - .\32xl\:-mx-1 { margin-left: -0.25rem; margin-right: -0.25rem; } - .\32xl\:-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; - } - .\32xl\:-mx-2 { margin-left: -0.5rem; margin-right: -0.5rem; } - .\32xl\:-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; - } - .\32xl\:-mx-3 { margin-left: -0.75rem; margin-right: -0.75rem; } - .\32xl\:-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; - } - .\32xl\:-mx-4 { margin-left: -1rem; margin-right: -1rem; } - .\32xl\:-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; - } - .\32xl\:-mx-5 { margin-left: -1.25rem; margin-right: -1.25rem; } - .\32xl\:-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; - } - .\32xl\:-mx-6 { margin-left: -1.5rem; margin-right: -1.5rem; } - .\32xl\:-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; - } - .\32xl\:-mx-7 { margin-left: -1.75rem; margin-right: -1.75rem; } - .\32xl\:-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; - } - .\32xl\:-mx-8 { margin-left: -2rem; margin-right: -2rem; } - .\32xl\:-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; - } - .\32xl\:-mx-9 { margin-left: -2.25rem; margin-right: -2.25rem; } - .\32xl\:-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; - } - .\32xl\:-mx-10 { margin-left: -2.5rem; margin-right: -2.5rem; } - .\32xl\:-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; - } - .\32xl\:-mx-11 { margin-left: -2.75rem; margin-right: -2.75rem; } - .\32xl\:-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; - } - .\32xl\:-mx-12 { margin-left: -3rem; margin-right: -3rem; } - .\32xl\:-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; - } - .\32xl\:-mx-14 { margin-left: -3.5rem; margin-right: -3.5rem; } - .\32xl\:-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; - } - .\32xl\:-mx-16 { margin-left: -4rem; margin-right: -4rem; } - .\32xl\:-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; - } - .\32xl\:-mx-20 { margin-left: -5rem; margin-right: -5rem; } - .\32xl\:-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; - } - .\32xl\:-mx-24 { margin-left: -6rem; margin-right: -6rem; } - .\32xl\:-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; - } - .\32xl\:-mx-28 { margin-left: -7rem; margin-right: -7rem; } - .\32xl\:-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; - } - .\32xl\:-mx-32 { margin-left: -8rem; margin-right: -8rem; } - .\32xl\:-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; - } - .\32xl\:-mx-36 { margin-left: -9rem; margin-right: -9rem; } - .\32xl\:-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; - } - .\32xl\:-mx-40 { margin-left: -10rem; margin-right: -10rem; } - .\32xl\:-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; - } - .\32xl\:-mx-44 { margin-left: -11rem; margin-right: -11rem; } - .\32xl\:-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; - } - .\32xl\:-mx-48 { margin-left: -12rem; margin-right: -12rem; } - .\32xl\:-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; - } - .\32xl\:-mx-52 { margin-left: -13rem; margin-right: -13rem; } - .\32xl\:-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; - } - .\32xl\:-mx-56 { margin-left: -14rem; margin-right: -14rem; } - .\32xl\:-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; - } - .\32xl\:-mx-60 { margin-left: -15rem; margin-right: -15rem; } - .\32xl\:-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; - } - .\32xl\:-mx-64 { margin-left: -16rem; margin-right: -16rem; } - .\32xl\:-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; - } - .\32xl\:-mx-72 { margin-left: -18rem; margin-right: -18rem; } - .\32xl\:-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; - } - .\32xl\:-mx-80 { margin-left: -20rem; margin-right: -20rem; } - .\32xl\:-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; - } - .\32xl\:-mx-96 { margin-left: -24rem; margin-right: -24rem; } - .\32xl\:-my-px { - margin-top: -1px; - margin-bottom: -1px; - } - .\32xl\:-mx-px { margin-left: -1px; margin-right: -1px; } - .\32xl\:-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; - } - .\32xl\:-mx-0\.5 { margin-left: -0.125rem; margin-right: -0.125rem; } - .\32xl\:-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; - } - .\32xl\:-mx-1\.5 { margin-left: -0.375rem; margin-right: -0.375rem; } - .\32xl\:-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; - } - .\32xl\:-mx-2\.5 { margin-left: -0.625rem; margin-right: -0.625rem; } - .\32xl\:-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; - } - .\32xl\:-mx-3\.5 { margin-left: -0.875rem; margin-right: -0.875rem; } - .\32xl\:mt-0 { + .\32xl\:my-0 { margin-top: 0px; + margin-bottom: 0px; } - .\32xl\:mr-0 { - margin-right: 0px; + .\32xl\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } - .\32xl\:mb-0 { + .\32xl\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; + } + + .\32xl\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; + } + + .\32xl\:my-4 { + margin-top: 1rem; + margin-bottom: 1rem; + } + + .\32xl\:my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; + } + + .\32xl\:my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; + } + + .\32xl\:my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; + } + + .\32xl\:my-8 { + margin-top: 2rem; + margin-bottom: 2rem; + } + + .\32xl\:my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; + } + + .\32xl\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; + } + + .\32xl\:my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; + } + + .\32xl\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; + } + + .\32xl\:my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; + } + + .\32xl\:my-16 { + margin-top: 4rem; + margin-bottom: 4rem; + } + + .\32xl\:my-20 { + margin-top: 5rem; + margin-bottom: 5rem; + } + + .\32xl\:my-24 { + margin-top: 6rem; + margin-bottom: 6rem; + } + + .\32xl\:my-28 { + margin-top: 7rem; + margin-bottom: 7rem; + } + + .\32xl\:my-32 { + margin-top: 8rem; + margin-bottom: 8rem; + } + + .\32xl\:my-36 { + margin-top: 9rem; + margin-bottom: 9rem; + } + + .\32xl\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; + } + + .\32xl\:my-44 { + margin-top: 11rem; + margin-bottom: 11rem; + } + + .\32xl\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; + } + + .\32xl\:my-52 { + margin-top: 13rem; + margin-bottom: 13rem; + } + + .\32xl\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; + } + + .\32xl\:my-60 { + margin-top: 15rem; + margin-bottom: 15rem; + } + + .\32xl\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; + } + + .\32xl\:my-72 { + margin-top: 18rem; + margin-bottom: 18rem; + } + + .\32xl\:my-80 { + margin-top: 20rem; + margin-bottom: 20rem; + } + + .\32xl\:my-96 { + margin-top: 24rem; + margin-bottom: 24rem; + } + + .\32xl\:my-auto { + margin-top: auto; + margin-bottom: auto; + } + + .\32xl\:my-px { + margin-top: 1px; + margin-bottom: 1px; + } + + .\32xl\:my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; + } + + .\32xl\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; + } + + .\32xl\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; + } + + .\32xl\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; + } + + .\32xl\:-my-0 { + margin-top: 0px; margin-bottom: 0px; } - .\32xl\:ml-0 { - margin-left: 0px; + .\32xl\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } - .\32xl\:mt-1 { - margin-top: 0.25rem; + .\32xl\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } - .\32xl\:mr-1 { - margin-right: 0.25rem; + .\32xl\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } - .\32xl\:mb-1 { - margin-bottom: 0.25rem; + .\32xl\:-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } - .\32xl\:ml-1 { - margin-left: 0.25rem; + .\32xl\:-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } - .\32xl\:mt-2 { - margin-top: 0.5rem; + .\32xl\:-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } - .\32xl\:mr-2 { - margin-right: 0.5rem; + .\32xl\:-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } - .\32xl\:mb-2 { - margin-bottom: 0.5rem; + .\32xl\:-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } - .\32xl\:ml-2 { - margin-left: 0.5rem; + .\32xl\:-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } - .\32xl\:mt-3 { - margin-top: 0.75rem; + .\32xl\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } - .\32xl\:mr-3 { - margin-right: 0.75rem; + .\32xl\:-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } - .\32xl\:mb-3 { - margin-bottom: 0.75rem; + .\32xl\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } - .\32xl\:ml-3 { - margin-left: 0.75rem; + .\32xl\:-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } - .\32xl\:mt-4 { - margin-top: 1rem; + .\32xl\:-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } - .\32xl\:mr-4 { - margin-right: 1rem; + .\32xl\:-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } - .\32xl\:mb-4 { - margin-bottom: 1rem; + .\32xl\:-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } - .\32xl\:ml-4 { - margin-left: 1rem; + .\32xl\:-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } - .\32xl\:mt-5 { - margin-top: 1.25rem; + .\32xl\:-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } - .\32xl\:mr-5 { - margin-right: 1.25rem; + .\32xl\:-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } - .\32xl\:mb-5 { - margin-bottom: 1.25rem; + .\32xl\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } - .\32xl\:ml-5 { - margin-left: 1.25rem; + .\32xl\:-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } - .\32xl\:mt-6 { - margin-top: 1.5rem; + .\32xl\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } - .\32xl\:mr-6 { - margin-right: 1.5rem; + .\32xl\:-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } - .\32xl\:mb-6 { - margin-bottom: 1.5rem; + .\32xl\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } - .\32xl\:ml-6 { - margin-left: 1.5rem; + .\32xl\:-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } - .\32xl\:mt-7 { - margin-top: 1.75rem; + .\32xl\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } - .\32xl\:mr-7 { - margin-right: 1.75rem; + .\32xl\:-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } - .\32xl\:mb-7 { - margin-bottom: 1.75rem; + .\32xl\:-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } - .\32xl\:ml-7 { - margin-left: 1.75rem; + .\32xl\:-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } - .\32xl\:mt-8 { - margin-top: 2rem; + .\32xl\:-my-px { + margin-top: -1px; + margin-bottom: -1px; } - .\32xl\:mr-8 { - margin-right: 2rem; + .\32xl\:-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } - .\32xl\:mb-8 { - margin-bottom: 2rem; + .\32xl\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } - .\32xl\:ml-8 { - margin-left: 2rem; + .\32xl\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } - .\32xl\:mt-9 { - margin-top: 2.25rem; + .\32xl\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } - .\32xl\:mr-9 { - margin-right: 2.25rem; + .\32xl\:mt-0 { + margin-top: 0px; } - .\32xl\:mb-9 { - margin-bottom: 2.25rem; + .\32xl\:mt-1 { + margin-top: 0.25rem; } - .\32xl\:ml-9 { - margin-left: 2.25rem; + .\32xl\:mt-2 { + margin-top: 0.5rem; } - .\32xl\:mt-10 { - margin-top: 2.5rem; + .\32xl\:mt-3 { + margin-top: 0.75rem; } - .\32xl\:mr-10 { - margin-right: 2.5rem; + .\32xl\:mt-4 { + margin-top: 1rem; } - .\32xl\:mb-10 { - margin-bottom: 2.5rem; + .\32xl\:mt-5 { + margin-top: 1.25rem; } - .\32xl\:ml-10 { - margin-left: 2.5rem; + .\32xl\:mt-6 { + margin-top: 1.5rem; } - .\32xl\:mt-11 { - margin-top: 2.75rem; + .\32xl\:mt-7 { + margin-top: 1.75rem; } - .\32xl\:mr-11 { - margin-right: 2.75rem; + .\32xl\:mt-8 { + margin-top: 2rem; } - .\32xl\:mb-11 { - margin-bottom: 2.75rem; + .\32xl\:mt-9 { + margin-top: 2.25rem; } - .\32xl\:ml-11 { - margin-left: 2.75rem; + .\32xl\:mt-10 { + margin-top: 2.5rem; + } + + .\32xl\:mt-11 { + margin-top: 2.75rem; } .\32xl\:mt-12 { margin-top: 3rem; } - .\32xl\:mr-12 { - margin-right: 3rem; + .\32xl\:mt-14 { + margin-top: 3.5rem; } - .\32xl\:mb-12 { - margin-bottom: 3rem; + .\32xl\:mt-16 { + margin-top: 4rem; } - .\32xl\:ml-12 { - margin-left: 3rem; + .\32xl\:mt-20 { + margin-top: 5rem; } - .\32xl\:mt-14 { - margin-top: 3.5rem; + .\32xl\:mt-24 { + margin-top: 6rem; } - .\32xl\:mr-14 { - margin-right: 3.5rem; + .\32xl\:mt-28 { + margin-top: 7rem; } - .\32xl\:mb-14 { - margin-bottom: 3.5rem; + .\32xl\:mt-32 { + margin-top: 8rem; } - .\32xl\:ml-14 { - margin-left: 3.5rem; + .\32xl\:mt-36 { + margin-top: 9rem; } - .\32xl\:mt-16 { - margin-top: 4rem; + .\32xl\:mt-40 { + margin-top: 10rem; } - .\32xl\:mr-16 { - margin-right: 4rem; + .\32xl\:mt-44 { + margin-top: 11rem; } - .\32xl\:mb-16 { - margin-bottom: 4rem; + .\32xl\:mt-48 { + margin-top: 12rem; } - .\32xl\:ml-16 { - margin-left: 4rem; + .\32xl\:mt-52 { + margin-top: 13rem; } - .\32xl\:mt-20 { - margin-top: 5rem; + .\32xl\:mt-56 { + margin-top: 14rem; } - .\32xl\:mr-20 { - margin-right: 5rem; + .\32xl\:mt-60 { + margin-top: 15rem; } - .\32xl\:mb-20 { - margin-bottom: 5rem; + .\32xl\:mt-64 { + margin-top: 16rem; } - .\32xl\:ml-20 { - margin-left: 5rem; + .\32xl\:mt-72 { + margin-top: 18rem; } - .\32xl\:mt-24 { - margin-top: 6rem; + .\32xl\:mt-80 { + margin-top: 20rem; } - .\32xl\:mr-24 { - margin-right: 6rem; + .\32xl\:mt-96 { + margin-top: 24rem; } - .\32xl\:mb-24 { - margin-bottom: 6rem; + .\32xl\:mt-auto { + margin-top: auto; } - .\32xl\:ml-24 { - margin-left: 6rem; + .\32xl\:mt-px { + margin-top: 1px; } - .\32xl\:mt-28 { - margin-top: 7rem; + .\32xl\:mt-0\.5 { + margin-top: 0.125rem; } - .\32xl\:mr-28 { - margin-right: 7rem; + .\32xl\:mt-1\.5 { + margin-top: 0.375rem; } - .\32xl\:mb-28 { - margin-bottom: 7rem; + .\32xl\:mt-2\.5 { + margin-top: 0.625rem; } - .\32xl\:ml-28 { - margin-left: 7rem; + .\32xl\:mt-3\.5 { + margin-top: 0.875rem; } - .\32xl\:mt-32 { - margin-top: 8rem; + .\32xl\:-mt-0 { + margin-top: 0px; } - .\32xl\:mr-32 { - margin-right: 8rem; + .\32xl\:-mt-1 { + margin-top: -0.25rem; } - .\32xl\:mb-32 { - margin-bottom: 8rem; + .\32xl\:-mt-2 { + margin-top: -0.5rem; } - .\32xl\:ml-32 { - margin-left: 8rem; + .\32xl\:-mt-3 { + margin-top: -0.75rem; } - .\32xl\:mt-36 { - margin-top: 9rem; + .\32xl\:-mt-4 { + margin-top: -1rem; } - .\32xl\:mr-36 { - margin-right: 9rem; + .\32xl\:-mt-5 { + margin-top: -1.25rem; } - .\32xl\:mb-36 { - margin-bottom: 9rem; + .\32xl\:-mt-6 { + margin-top: -1.5rem; } - .\32xl\:ml-36 { - margin-left: 9rem; + .\32xl\:-mt-7 { + margin-top: -1.75rem; } - .\32xl\:mt-40 { - margin-top: 10rem; + .\32xl\:-mt-8 { + margin-top: -2rem; } - .\32xl\:mr-40 { - margin-right: 10rem; + .\32xl\:-mt-9 { + margin-top: -2.25rem; } - .\32xl\:mb-40 { - margin-bottom: 10rem; + .\32xl\:-mt-10 { + margin-top: -2.5rem; } - .\32xl\:ml-40 { - margin-left: 10rem; + .\32xl\:-mt-11 { + margin-top: -2.75rem; } - .\32xl\:mt-44 { - margin-top: 11rem; + .\32xl\:-mt-12 { + margin-top: -3rem; } - .\32xl\:mr-44 { - margin-right: 11rem; + .\32xl\:-mt-14 { + margin-top: -3.5rem; } - .\32xl\:mb-44 { - margin-bottom: 11rem; + .\32xl\:-mt-16 { + margin-top: -4rem; } - .\32xl\:ml-44 { - margin-left: 11rem; + .\32xl\:-mt-20 { + margin-top: -5rem; } - .\32xl\:mt-48 { - margin-top: 12rem; + .\32xl\:-mt-24 { + margin-top: -6rem; } - .\32xl\:mr-48 { - margin-right: 12rem; + .\32xl\:-mt-28 { + margin-top: -7rem; } - .\32xl\:mb-48 { - margin-bottom: 12rem; + .\32xl\:-mt-32 { + margin-top: -8rem; } - .\32xl\:ml-48 { - margin-left: 12rem; + .\32xl\:-mt-36 { + margin-top: -9rem; } - .\32xl\:mt-52 { - margin-top: 13rem; + .\32xl\:-mt-40 { + margin-top: -10rem; } - .\32xl\:mr-52 { - margin-right: 13rem; + .\32xl\:-mt-44 { + margin-top: -11rem; } - .\32xl\:mb-52 { - margin-bottom: 13rem; + .\32xl\:-mt-48 { + margin-top: -12rem; } - .\32xl\:ml-52 { - margin-left: 13rem; + .\32xl\:-mt-52 { + margin-top: -13rem; } - .\32xl\:mt-56 { - margin-top: 14rem; + .\32xl\:-mt-56 { + margin-top: -14rem; } - .\32xl\:mr-56 { - margin-right: 14rem; + .\32xl\:-mt-60 { + margin-top: -15rem; } - .\32xl\:mb-56 { - margin-bottom: 14rem; + .\32xl\:-mt-64 { + margin-top: -16rem; } - .\32xl\:ml-56 { - margin-left: 14rem; + .\32xl\:-mt-72 { + margin-top: -18rem; } - .\32xl\:mt-60 { - margin-top: 15rem; + .\32xl\:-mt-80 { + margin-top: -20rem; } - .\32xl\:mr-60 { - margin-right: 15rem; + .\32xl\:-mt-96 { + margin-top: -24rem; } - .\32xl\:mb-60 { - margin-bottom: 15rem; + .\32xl\:-mt-px { + margin-top: -1px; } - .\32xl\:ml-60 { - margin-left: 15rem; + .\32xl\:-mt-0\.5 { + margin-top: -0.125rem; } - .\32xl\:mt-64 { - margin-top: 16rem; + .\32xl\:-mt-1\.5 { + margin-top: -0.375rem; } - .\32xl\:mr-64 { - margin-right: 16rem; + .\32xl\:-mt-2\.5 { + margin-top: -0.625rem; } - .\32xl\:mb-64 { - margin-bottom: 16rem; + .\32xl\:-mt-3\.5 { + margin-top: -0.875rem; } - .\32xl\:ml-64 { - margin-left: 16rem; + .\32xl\:mr-0 { + margin-right: 0px; } - .\32xl\:mt-72 { - margin-top: 18rem; + .\32xl\:mr-1 { + margin-right: 0.25rem; } - .\32xl\:mr-72 { - margin-right: 18rem; + .\32xl\:mr-2 { + margin-right: 0.5rem; } - .\32xl\:mb-72 { - margin-bottom: 18rem; + .\32xl\:mr-3 { + margin-right: 0.75rem; } - .\32xl\:ml-72 { - margin-left: 18rem; + .\32xl\:mr-4 { + margin-right: 1rem; } - .\32xl\:mt-80 { - margin-top: 20rem; + .\32xl\:mr-5 { + margin-right: 1.25rem; } - .\32xl\:mr-80 { - margin-right: 20rem; + .\32xl\:mr-6 { + margin-right: 1.5rem; } - .\32xl\:mb-80 { - margin-bottom: 20rem; + .\32xl\:mr-7 { + margin-right: 1.75rem; } - .\32xl\:ml-80 { - margin-left: 20rem; + .\32xl\:mr-8 { + margin-right: 2rem; } - .\32xl\:mt-96 { - margin-top: 24rem; + .\32xl\:mr-9 { + margin-right: 2.25rem; } - .\32xl\:mr-96 { - margin-right: 24rem; + .\32xl\:mr-10 { + margin-right: 2.5rem; } - .\32xl\:mb-96 { - margin-bottom: 24rem; + .\32xl\:mr-11 { + margin-right: 2.75rem; } - .\32xl\:ml-96 { - margin-left: 24rem; + .\32xl\:mr-12 { + margin-right: 3rem; } - .\32xl\:mt-auto { - margin-top: auto; + .\32xl\:mr-14 { + margin-right: 3.5rem; } - .\32xl\:mr-auto { - margin-right: auto; + .\32xl\:mr-16 { + margin-right: 4rem; } - .\32xl\:mb-auto { - margin-bottom: auto; + .\32xl\:mr-20 { + margin-right: 5rem; } - .\32xl\:ml-auto { - margin-left: auto; + .\32xl\:mr-24 { + margin-right: 6rem; } - .\32xl\:mt-px { - margin-top: 1px; + .\32xl\:mr-28 { + margin-right: 7rem; } - .\32xl\:mr-px { - margin-right: 1px; + .\32xl\:mr-32 { + margin-right: 8rem; } - .\32xl\:mb-px { - margin-bottom: 1px; + .\32xl\:mr-36 { + margin-right: 9rem; } - .\32xl\:ml-px { - margin-left: 1px; + .\32xl\:mr-40 { + margin-right: 10rem; } - .\32xl\:mt-0\.5 { - margin-top: 0.125rem; + .\32xl\:mr-44 { + margin-right: 11rem; } - .\32xl\:mr-0\.5 { - margin-right: 0.125rem; + .\32xl\:mr-48 { + margin-right: 12rem; } - .\32xl\:mb-0\.5 { - margin-bottom: 0.125rem; + .\32xl\:mr-52 { + margin-right: 13rem; } - .\32xl\:ml-0\.5 { - margin-left: 0.125rem; + .\32xl\:mr-56 { + margin-right: 14rem; } - .\32xl\:mt-1\.5 { - margin-top: 0.375rem; + .\32xl\:mr-60 { + margin-right: 15rem; } - .\32xl\:mr-1\.5 { - margin-right: 0.375rem; + .\32xl\:mr-64 { + margin-right: 16rem; } - .\32xl\:mb-1\.5 { - margin-bottom: 0.375rem; + .\32xl\:mr-72 { + margin-right: 18rem; } - .\32xl\:ml-1\.5 { - margin-left: 0.375rem; + .\32xl\:mr-80 { + margin-right: 20rem; } - .\32xl\:mt-2\.5 { - margin-top: 0.625rem; + .\32xl\:mr-96 { + margin-right: 24rem; } - .\32xl\:mr-2\.5 { - margin-right: 0.625rem; + .\32xl\:mr-auto { + margin-right: auto; } - .\32xl\:mb-2\.5 { - margin-bottom: 0.625rem; + .\32xl\:mr-px { + margin-right: 1px; } - .\32xl\:ml-2\.5 { - margin-left: 0.625rem; + .\32xl\:mr-0\.5 { + margin-right: 0.125rem; } - .\32xl\:mt-3\.5 { - margin-top: 0.875rem; + .\32xl\:mr-1\.5 { + margin-right: 0.375rem; + } + + .\32xl\:mr-2\.5 { + margin-right: 0.625rem; } .\32xl\:mr-3\.5 { margin-right: 0.875rem; } - .\32xl\:mb-3\.5 { - margin-bottom: 0.875rem; + .\32xl\:-mr-0 { + margin-right: 0px; } - .\32xl\:ml-3\.5 { - margin-left: 0.875rem; + .\32xl\:-mr-1 { + margin-right: -0.25rem; } - .\32xl\:-mt-0 { - margin-top: 0px; + .\32xl\:-mr-2 { + margin-right: -0.5rem; } - .\32xl\:-mr-0 { - margin-right: 0px; + .\32xl\:-mr-3 { + margin-right: -0.75rem; } - .\32xl\:-mb-0 { + .\32xl\:-mr-4 { + margin-right: -1rem; + } + + .\32xl\:-mr-5 { + margin-right: -1.25rem; + } + + .\32xl\:-mr-6 { + margin-right: -1.5rem; + } + + .\32xl\:-mr-7 { + margin-right: -1.75rem; + } + + .\32xl\:-mr-8 { + margin-right: -2rem; + } + + .\32xl\:-mr-9 { + margin-right: -2.25rem; + } + + .\32xl\:-mr-10 { + margin-right: -2.5rem; + } + + .\32xl\:-mr-11 { + margin-right: -2.75rem; + } + + .\32xl\:-mr-12 { + margin-right: -3rem; + } + + .\32xl\:-mr-14 { + margin-right: -3.5rem; + } + + .\32xl\:-mr-16 { + margin-right: -4rem; + } + + .\32xl\:-mr-20 { + margin-right: -5rem; + } + + .\32xl\:-mr-24 { + margin-right: -6rem; + } + + .\32xl\:-mr-28 { + margin-right: -7rem; + } + + .\32xl\:-mr-32 { + margin-right: -8rem; + } + + .\32xl\:-mr-36 { + margin-right: -9rem; + } + + .\32xl\:-mr-40 { + margin-right: -10rem; + } + + .\32xl\:-mr-44 { + margin-right: -11rem; + } + + .\32xl\:-mr-48 { + margin-right: -12rem; + } + + .\32xl\:-mr-52 { + margin-right: -13rem; + } + + .\32xl\:-mr-56 { + margin-right: -14rem; + } + + .\32xl\:-mr-60 { + margin-right: -15rem; + } + + .\32xl\:-mr-64 { + margin-right: -16rem; + } + + .\32xl\:-mr-72 { + margin-right: -18rem; + } + + .\32xl\:-mr-80 { + margin-right: -20rem; + } + + .\32xl\:-mr-96 { + margin-right: -24rem; + } + + .\32xl\:-mr-px { + margin-right: -1px; + } + + .\32xl\:-mr-0\.5 { + margin-right: -0.125rem; + } + + .\32xl\:-mr-1\.5 { + margin-right: -0.375rem; + } + + .\32xl\:-mr-2\.5 { + margin-right: -0.625rem; + } + + .\32xl\:-mr-3\.5 { + margin-right: -0.875rem; + } + + .\32xl\:mb-0 { margin-bottom: 0px; } - .\32xl\:-ml-0 { - margin-left: 0px; + .\32xl\:mb-1 { + margin-bottom: 0.25rem; } - .\32xl\:-mt-1 { - margin-top: -0.25rem; + .\32xl\:mb-2 { + margin-bottom: 0.5rem; } - .\32xl\:-mr-1 { - margin-right: -0.25rem; + .\32xl\:mb-3 { + margin-bottom: 0.75rem; } - .\32xl\:-mb-1 { - margin-bottom: -0.25rem; + .\32xl\:mb-4 { + margin-bottom: 1rem; } - .\32xl\:-ml-1 { - margin-left: -0.25rem; + .\32xl\:mb-5 { + margin-bottom: 1.25rem; } - .\32xl\:-mt-2 { - margin-top: -0.5rem; + .\32xl\:mb-6 { + margin-bottom: 1.5rem; } - .\32xl\:-mr-2 { - margin-right: -0.5rem; + .\32xl\:mb-7 { + margin-bottom: 1.75rem; } - .\32xl\:-mb-2 { - margin-bottom: -0.5rem; + .\32xl\:mb-8 { + margin-bottom: 2rem; } - .\32xl\:-ml-2 { - margin-left: -0.5rem; + .\32xl\:mb-9 { + margin-bottom: 2.25rem; } - .\32xl\:-mt-3 { - margin-top: -0.75rem; + .\32xl\:mb-10 { + margin-bottom: 2.5rem; } - .\32xl\:-mr-3 { - margin-right: -0.75rem; + .\32xl\:mb-11 { + margin-bottom: 2.75rem; } - .\32xl\:-mb-3 { - margin-bottom: -0.75rem; + .\32xl\:mb-12 { + margin-bottom: 3rem; } - .\32xl\:-ml-3 { - margin-left: -0.75rem; + .\32xl\:mb-14 { + margin-bottom: 3.5rem; } - .\32xl\:-mt-4 { - margin-top: -1rem; + .\32xl\:mb-16 { + margin-bottom: 4rem; } - .\32xl\:-mr-4 { - margin-right: -1rem; + .\32xl\:mb-20 { + margin-bottom: 5rem; } - .\32xl\:-mb-4 { - margin-bottom: -1rem; + .\32xl\:mb-24 { + margin-bottom: 6rem; } - .\32xl\:-ml-4 { - margin-left: -1rem; + .\32xl\:mb-28 { + margin-bottom: 7rem; } - .\32xl\:-mt-5 { - margin-top: -1.25rem; + .\32xl\:mb-32 { + margin-bottom: 8rem; } - .\32xl\:-mr-5 { - margin-right: -1.25rem; + .\32xl\:mb-36 { + margin-bottom: 9rem; } - .\32xl\:-mb-5 { - margin-bottom: -1.25rem; + .\32xl\:mb-40 { + margin-bottom: 10rem; } - .\32xl\:-ml-5 { - margin-left: -1.25rem; + .\32xl\:mb-44 { + margin-bottom: 11rem; } - .\32xl\:-mt-6 { - margin-top: -1.5rem; + .\32xl\:mb-48 { + margin-bottom: 12rem; } - .\32xl\:-mr-6 { - margin-right: -1.5rem; + .\32xl\:mb-52 { + margin-bottom: 13rem; } - .\32xl\:-mb-6 { - margin-bottom: -1.5rem; + .\32xl\:mb-56 { + margin-bottom: 14rem; } - .\32xl\:-ml-6 { - margin-left: -1.5rem; + .\32xl\:mb-60 { + margin-bottom: 15rem; } - .\32xl\:-mt-7 { - margin-top: -1.75rem; + .\32xl\:mb-64 { + margin-bottom: 16rem; } - .\32xl\:-mr-7 { - margin-right: -1.75rem; + .\32xl\:mb-72 { + margin-bottom: 18rem; } - .\32xl\:-mb-7 { - margin-bottom: -1.75rem; + .\32xl\:mb-80 { + margin-bottom: 20rem; } - .\32xl\:-ml-7 { - margin-left: -1.75rem; + .\32xl\:mb-96 { + margin-bottom: 24rem; } - .\32xl\:-mt-8 { - margin-top: -2rem; + .\32xl\:mb-auto { + margin-bottom: auto; } - .\32xl\:-mr-8 { - margin-right: -2rem; + .\32xl\:mb-px { + margin-bottom: 1px; } - .\32xl\:-mb-8 { - margin-bottom: -2rem; + .\32xl\:mb-0\.5 { + margin-bottom: 0.125rem; } - .\32xl\:-ml-8 { - margin-left: -2rem; + .\32xl\:mb-1\.5 { + margin-bottom: 0.375rem; } - .\32xl\:-mt-9 { - margin-top: -2.25rem; + .\32xl\:mb-2\.5 { + margin-bottom: 0.625rem; } - .\32xl\:-mr-9 { - margin-right: -2.25rem; + .\32xl\:mb-3\.5 { + margin-bottom: 0.875rem; } - .\32xl\:-mb-9 { - margin-bottom: -2.25rem; + .\32xl\:-mb-0 { + margin-bottom: 0px; } - .\32xl\:-ml-9 { - margin-left: -2.25rem; + .\32xl\:-mb-1 { + margin-bottom: -0.25rem; } - .\32xl\:-mt-10 { - margin-top: -2.5rem; + .\32xl\:-mb-2 { + margin-bottom: -0.5rem; } - .\32xl\:-mr-10 { - margin-right: -2.5rem; + .\32xl\:-mb-3 { + margin-bottom: -0.75rem; } - .\32xl\:-mb-10 { - margin-bottom: -2.5rem; + .\32xl\:-mb-4 { + margin-bottom: -1rem; } - .\32xl\:-ml-10 { - margin-left: -2.5rem; + .\32xl\:-mb-5 { + margin-bottom: -1.25rem; } - .\32xl\:-mt-11 { - margin-top: -2.75rem; + .\32xl\:-mb-6 { + margin-bottom: -1.5rem; } - .\32xl\:-mr-11 { - margin-right: -2.75rem; + .\32xl\:-mb-7 { + margin-bottom: -1.75rem; } - .\32xl\:-mb-11 { - margin-bottom: -2.75rem; + .\32xl\:-mb-8 { + margin-bottom: -2rem; } - .\32xl\:-ml-11 { - margin-left: -2.75rem; + .\32xl\:-mb-9 { + margin-bottom: -2.25rem; } - .\32xl\:-mt-12 { - margin-top: -3rem; + .\32xl\:-mb-10 { + margin-bottom: -2.5rem; } - .\32xl\:-mr-12 { - margin-right: -3rem; + .\32xl\:-mb-11 { + margin-bottom: -2.75rem; } .\32xl\:-mb-12 { margin-bottom: -3rem; } - .\32xl\:-ml-12 { - margin-left: -3rem; + .\32xl\:-mb-14 { + margin-bottom: -3.5rem; } - .\32xl\:-mt-14 { - margin-top: -3.5rem; + .\32xl\:-mb-16 { + margin-bottom: -4rem; } - .\32xl\:-mr-14 { - margin-right: -3.5rem; + .\32xl\:-mb-20 { + margin-bottom: -5rem; } - .\32xl\:-mb-14 { - margin-bottom: -3.5rem; + .\32xl\:-mb-24 { + margin-bottom: -6rem; } - .\32xl\:-ml-14 { - margin-left: -3.5rem; + .\32xl\:-mb-28 { + margin-bottom: -7rem; } - .\32xl\:-mt-16 { - margin-top: -4rem; + .\32xl\:-mb-32 { + margin-bottom: -8rem; } - .\32xl\:-mr-16 { - margin-right: -4rem; + .\32xl\:-mb-36 { + margin-bottom: -9rem; } - .\32xl\:-mb-16 { - margin-bottom: -4rem; + .\32xl\:-mb-40 { + margin-bottom: -10rem; } - .\32xl\:-ml-16 { - margin-left: -4rem; + .\32xl\:-mb-44 { + margin-bottom: -11rem; } - .\32xl\:-mt-20 { - margin-top: -5rem; + .\32xl\:-mb-48 { + margin-bottom: -12rem; } - .\32xl\:-mr-20 { - margin-right: -5rem; + .\32xl\:-mb-52 { + margin-bottom: -13rem; } - .\32xl\:-mb-20 { - margin-bottom: -5rem; + .\32xl\:-mb-56 { + margin-bottom: -14rem; } - .\32xl\:-ml-20 { - margin-left: -5rem; + .\32xl\:-mb-60 { + margin-bottom: -15rem; } - .\32xl\:-mt-24 { - margin-top: -6rem; + .\32xl\:-mb-64 { + margin-bottom: -16rem; } - .\32xl\:-mr-24 { - margin-right: -6rem; + .\32xl\:-mb-72 { + margin-bottom: -18rem; } - .\32xl\:-mb-24 { - margin-bottom: -6rem; + .\32xl\:-mb-80 { + margin-bottom: -20rem; } - .\32xl\:-ml-24 { - margin-left: -6rem; + .\32xl\:-mb-96 { + margin-bottom: -24rem; } - .\32xl\:-mt-28 { - margin-top: -7rem; + .\32xl\:-mb-px { + margin-bottom: -1px; } - .\32xl\:-mr-28 { - margin-right: -7rem; + .\32xl\:-mb-0\.5 { + margin-bottom: -0.125rem; } - .\32xl\:-mb-28 { - margin-bottom: -7rem; + .\32xl\:-mb-1\.5 { + margin-bottom: -0.375rem; } - .\32xl\:-ml-28 { - margin-left: -7rem; + .\32xl\:-mb-2\.5 { + margin-bottom: -0.625rem; } - .\32xl\:-mt-32 { - margin-top: -8rem; + .\32xl\:-mb-3\.5 { + margin-bottom: -0.875rem; } - .\32xl\:-mr-32 { - margin-right: -8rem; + .\32xl\:ml-0 { + margin-left: 0px; } - .\32xl\:-mb-32 { - margin-bottom: -8rem; + .\32xl\:ml-1 { + margin-left: 0.25rem; } - .\32xl\:-ml-32 { - margin-left: -8rem; + .\32xl\:ml-2 { + margin-left: 0.5rem; } - .\32xl\:-mt-36 { - margin-top: -9rem; + .\32xl\:ml-3 { + margin-left: 0.75rem; } - .\32xl\:-mr-36 { - margin-right: -9rem; + .\32xl\:ml-4 { + margin-left: 1rem; } - .\32xl\:-mb-36 { - margin-bottom: -9rem; + .\32xl\:ml-5 { + margin-left: 1.25rem; } - .\32xl\:-ml-36 { - margin-left: -9rem; + .\32xl\:ml-6 { + margin-left: 1.5rem; } - .\32xl\:-mt-40 { - margin-top: -10rem; + .\32xl\:ml-7 { + margin-left: 1.75rem; } - .\32xl\:-mr-40 { - margin-right: -10rem; + .\32xl\:ml-8 { + margin-left: 2rem; } - .\32xl\:-mb-40 { - margin-bottom: -10rem; + .\32xl\:ml-9 { + margin-left: 2.25rem; } - .\32xl\:-ml-40 { - margin-left: -10rem; + .\32xl\:ml-10 { + margin-left: 2.5rem; } - .\32xl\:-mt-44 { - margin-top: -11rem; + .\32xl\:ml-11 { + margin-left: 2.75rem; } - .\32xl\:-mr-44 { - margin-right: -11rem; + .\32xl\:ml-12 { + margin-left: 3rem; } - .\32xl\:-mb-44 { - margin-bottom: -11rem; + .\32xl\:ml-14 { + margin-left: 3.5rem; } - .\32xl\:-ml-44 { - margin-left: -11rem; + .\32xl\:ml-16 { + margin-left: 4rem; } - .\32xl\:-mt-48 { - margin-top: -12rem; + .\32xl\:ml-20 { + margin-left: 5rem; } - .\32xl\:-mr-48 { - margin-right: -12rem; + .\32xl\:ml-24 { + margin-left: 6rem; } - .\32xl\:-mb-48 { - margin-bottom: -12rem; + .\32xl\:ml-28 { + margin-left: 7rem; } - .\32xl\:-ml-48 { - margin-left: -12rem; + .\32xl\:ml-32 { + margin-left: 8rem; } - .\32xl\:-mt-52 { - margin-top: -13rem; + .\32xl\:ml-36 { + margin-left: 9rem; } - .\32xl\:-mr-52 { - margin-right: -13rem; + .\32xl\:ml-40 { + margin-left: 10rem; } - .\32xl\:-mb-52 { - margin-bottom: -13rem; + .\32xl\:ml-44 { + margin-left: 11rem; } - .\32xl\:-ml-52 { - margin-left: -13rem; + .\32xl\:ml-48 { + margin-left: 12rem; } - .\32xl\:-mt-56 { - margin-top: -14rem; + .\32xl\:ml-52 { + margin-left: 13rem; } - .\32xl\:-mr-56 { - margin-right: -14rem; + .\32xl\:ml-56 { + margin-left: 14rem; } - .\32xl\:-mb-56 { - margin-bottom: -14rem; + .\32xl\:ml-60 { + margin-left: 15rem; } - .\32xl\:-ml-56 { - margin-left: -14rem; + .\32xl\:ml-64 { + margin-left: 16rem; } - .\32xl\:-mt-60 { - margin-top: -15rem; + .\32xl\:ml-72 { + margin-left: 18rem; } - .\32xl\:-mr-60 { - margin-right: -15rem; + .\32xl\:ml-80 { + margin-left: 20rem; } - .\32xl\:-mb-60 { - margin-bottom: -15rem; + .\32xl\:ml-96 { + margin-left: 24rem; } - .\32xl\:-ml-60 { - margin-left: -15rem; + .\32xl\:ml-auto { + margin-left: auto; } - .\32xl\:-mt-64 { - margin-top: -16rem; + .\32xl\:ml-px { + margin-left: 1px; } - .\32xl\:-mr-64 { - margin-right: -16rem; + .\32xl\:ml-0\.5 { + margin-left: 0.125rem; } - .\32xl\:-mb-64 { - margin-bottom: -16rem; + .\32xl\:ml-1\.5 { + margin-left: 0.375rem; } - .\32xl\:-ml-64 { - margin-left: -16rem; + .\32xl\:ml-2\.5 { + margin-left: 0.625rem; } - .\32xl\:-mt-72 { - margin-top: -18rem; + .\32xl\:ml-3\.5 { + margin-left: 0.875rem; } - .\32xl\:-mr-72 { - margin-right: -18rem; + .\32xl\:-ml-0 { + margin-left: 0px; } - .\32xl\:-mb-72 { - margin-bottom: -18rem; + .\32xl\:-ml-1 { + margin-left: -0.25rem; } - .\32xl\:-ml-72 { - margin-left: -18rem; + .\32xl\:-ml-2 { + margin-left: -0.5rem; } - .\32xl\:-mt-80 { - margin-top: -20rem; + .\32xl\:-ml-3 { + margin-left: -0.75rem; } - .\32xl\:-mr-80 { - margin-right: -20rem; + .\32xl\:-ml-4 { + margin-left: -1rem; } - .\32xl\:-mb-80 { - margin-bottom: -20rem; + .\32xl\:-ml-5 { + margin-left: -1.25rem; } - .\32xl\:-ml-80 { - margin-left: -20rem; + .\32xl\:-ml-6 { + margin-left: -1.5rem; } - .\32xl\:-mt-96 { - margin-top: -24rem; + .\32xl\:-ml-7 { + margin-left: -1.75rem; } - .\32xl\:-mr-96 { - margin-right: -24rem; + .\32xl\:-ml-8 { + margin-left: -2rem; } - .\32xl\:-mb-96 { - margin-bottom: -24rem; + .\32xl\:-ml-9 { + margin-left: -2.25rem; } - .\32xl\:-ml-96 { - margin-left: -24rem; + .\32xl\:-ml-10 { + margin-left: -2.5rem; } - .\32xl\:-mt-px { - margin-top: -1px; + .\32xl\:-ml-11 { + margin-left: -2.75rem; } - .\32xl\:-mr-px { - margin-right: -1px; + .\32xl\:-ml-12 { + margin-left: -3rem; } - .\32xl\:-mb-px { - margin-bottom: -1px; + .\32xl\:-ml-14 { + margin-left: -3.5rem; } - .\32xl\:-ml-px { - margin-left: -1px; + .\32xl\:-ml-16 { + margin-left: -4rem; } - .\32xl\:-mt-0\.5 { - margin-top: -0.125rem; + .\32xl\:-ml-20 { + margin-left: -5rem; } - .\32xl\:-mr-0\.5 { - margin-right: -0.125rem; + .\32xl\:-ml-24 { + margin-left: -6rem; } - .\32xl\:-mb-0\.5 { - margin-bottom: -0.125rem; + .\32xl\:-ml-28 { + margin-left: -7rem; } - .\32xl\:-ml-0\.5 { - margin-left: -0.125rem; + .\32xl\:-ml-32 { + margin-left: -8rem; } - .\32xl\:-mt-1\.5 { - margin-top: -0.375rem; + .\32xl\:-ml-36 { + margin-left: -9rem; } - .\32xl\:-mr-1\.5 { - margin-right: -0.375rem; + .\32xl\:-ml-40 { + margin-left: -10rem; } - .\32xl\:-mb-1\.5 { - margin-bottom: -0.375rem; + .\32xl\:-ml-44 { + margin-left: -11rem; } - .\32xl\:-ml-1\.5 { - margin-left: -0.375rem; + .\32xl\:-ml-48 { + margin-left: -12rem; } - .\32xl\:-mt-2\.5 { - margin-top: -0.625rem; + .\32xl\:-ml-52 { + margin-left: -13rem; } - .\32xl\:-mr-2\.5 { - margin-right: -0.625rem; + .\32xl\:-ml-56 { + margin-left: -14rem; } - .\32xl\:-mb-2\.5 { - margin-bottom: -0.625rem; + .\32xl\:-ml-60 { + margin-left: -15rem; } - .\32xl\:-ml-2\.5 { - margin-left: -0.625rem; + .\32xl\:-ml-64 { + margin-left: -16rem; } - .\32xl\:-mt-3\.5 { - margin-top: -0.875rem; + .\32xl\:-ml-72 { + margin-left: -18rem; } - .\32xl\:-mr-3\.5 { - margin-right: -0.875rem; + .\32xl\:-ml-80 { + margin-left: -20rem; } - .\32xl\:-mb-3\.5 { - margin-bottom: -0.875rem; + .\32xl\:-ml-96 { + margin-left: -24rem; + } + + .\32xl\:-ml-px { + margin-left: -1px; + } + + .\32xl\:-ml-0\.5 { + margin-left: -0.125rem; + } + + .\32xl\:-ml-1\.5 { + margin-left: -0.375rem; + } + + .\32xl\:-ml-2\.5 { + margin-left: -0.625rem; } .\32xl\:-ml-3\.5 { diff --git a/jit/corePlugins/accessibility.js b/jit/corePlugins/accessibility.js deleted file mode 100644 index e3242bcf76f4..000000000000 --- a/jit/corePlugins/accessibility.js +++ /dev/null @@ -1,25 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.sr-only': { - position: 'absolute', - width: '1px', - height: '1px', - padding: '0', - margin: '-1px', - overflow: 'hidden', - clip: 'rect(0, 0, 0, 0)', - whiteSpace: 'nowrap', - borderWidth: '0', - }, - '.not-sr-only': { - position: 'static', - width: 'auto', - height: 'auto', - padding: '0', - margin: '0', - overflow: 'visible', - clip: 'auto', - whiteSpace: 'normal', - }, -}) diff --git a/jit/corePlugins/alignContent.js b/jit/corePlugins/alignContent.js deleted file mode 100644 index 69e275aa952d..000000000000 --- a/jit/corePlugins/alignContent.js +++ /dev/null @@ -1,22 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.content-center': { - 'align-content': 'center', - }, - '.content-start': { - 'align-content': 'flex-start', - }, - '.content-end': { - 'align-content': 'flex-end', - }, - '.content-between': { - 'align-content': 'space-between', - }, - '.content-around': { - 'align-content': 'space-around', - }, - '.content-evenly': { - 'align-content': 'space-evenly', - }, -}) diff --git a/jit/corePlugins/alignItems.js b/jit/corePlugins/alignItems.js deleted file mode 100644 index fa44536ea73a..000000000000 --- a/jit/corePlugins/alignItems.js +++ /dev/null @@ -1,19 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.items-start': { - 'align-items': 'flex-start', - }, - '.items-end': { - 'align-items': 'flex-end', - }, - '.items-center': { - 'align-items': 'center', - }, - '.items-baseline': { - 'align-items': 'baseline', - }, - '.items-stretch': { - 'align-items': 'stretch', - }, -}) diff --git a/jit/corePlugins/animation.js b/jit/corePlugins/animation.js deleted file mode 100644 index a45ed9f7fef0..000000000000 --- a/jit/corePlugins/animation.js +++ /dev/null @@ -1,39 +0,0 @@ -const { nameClass } = require('../pluginUtils') -const transformThemeValue = require('../../lib/util/transformThemeValue').default -const parseAnimationValue = require('../../lib/util/parseAnimationValue').default - -module.exports = function ({ matchUtilities, theme }) { - let keyframes = Object.fromEntries( - Object.entries(theme('keyframes')).map(([key, value]) => { - return [ - key, - [ - { - [`@keyframes ${key}`]: value, - }, - { respectVariants: false }, - ], - ] - }) - ) - - let transformValue = transformThemeValue('animation') - matchUtilities({ - animate: [ - (modifier, { theme }) => { - let value = transformValue(theme.animation[modifier]) - - if (modifier === '' || value === undefined) { - return [] - } - - let { name: animationName } = parseAnimationValue(value) - - return [ - keyframes[animationName], - { [nameClass('animate', modifier)]: { animation: value } }, - ].filter(Boolean) - }, - ], - }) -} diff --git a/jit/corePlugins/appearance.js b/jit/corePlugins/appearance.js deleted file mode 100644 index 18593e3bc80c..000000000000 --- a/jit/corePlugins/appearance.js +++ /dev/null @@ -1,5 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.appearance-none': { appearance: 'none' }, -}) diff --git a/jit/corePlugins/borderCollapse.js b/jit/corePlugins/borderCollapse.js deleted file mode 100644 index 5815d7df4b4b..000000000000 --- a/jit/corePlugins/borderCollapse.js +++ /dev/null @@ -1,6 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.border-collapse': { 'border-collapse': 'collapse' }, - '.border-separate': { 'border-collapse': 'separate' }, -}) diff --git a/jit/corePlugins/boxSizing.js b/jit/corePlugins/boxSizing.js deleted file mode 100644 index 5ca7893f88a7..000000000000 --- a/jit/corePlugins/boxSizing.js +++ /dev/null @@ -1,6 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.box-border': { 'box-sizing': 'border-box' }, - '.box-content': { 'box-sizing': 'content-box' }, -}) diff --git a/jit/corePlugins/clear.js b/jit/corePlugins/clear.js deleted file mode 100644 index d8242454f09c..000000000000 --- a/jit/corePlugins/clear.js +++ /dev/null @@ -1,8 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.clear-left': { clear: 'left' }, - '.clear-right': { clear: 'right' }, - '.clear-both': { clear: 'both' }, - '.clear-none': { clear: 'none' }, -}) diff --git a/jit/corePlugins/container.js b/jit/corePlugins/container.js deleted file mode 100644 index cf278e798459..000000000000 --- a/jit/corePlugins/container.js +++ /dev/null @@ -1,3 +0,0 @@ -const container = require('../../lib/plugins/container') - -module.exports = container() diff --git a/jit/corePlugins/css/preflight.css b/jit/corePlugins/css/preflight.css deleted file mode 100644 index ac74dd0613b2..000000000000 --- a/jit/corePlugins/css/preflight.css +++ /dev/null @@ -1,240 +0,0 @@ -/** - * Manually forked from SUIT CSS Base: https://github.com/suitcss/base - * A thin layer on top of normalize.css that provides a starting point more - * suitable for web applications. - */ - -/** - * Removes the default spacing and border for appropriate elements. - */ - -blockquote, -dl, -dd, -h1, -h2, -h3, -h4, -h5, -h6, -hr, -figure, -p, -pre { - margin: 0; -} - -button { - background-color: transparent; - background-image: none; -} - -/** - * Work around a Firefox/IE bug where the transparent `button` background - * results in a loss of the default `button` focus styles. - */ - -button:focus { - outline: 1px dotted; - outline: 5px auto -webkit-focus-ring-color; -} - -fieldset { - margin: 0; - padding: 0; -} - -ol, -ul { - list-style: none; - margin: 0; - padding: 0; -} - -/** - * Tailwind custom reset styles - */ - -/** - * 1. Use the user's configured `sans` font-family (with Tailwind's default - * sans-serif font stack as a fallback) as a sane default. - * 2. Use Tailwind's default "normal" line-height so the user isn't forced - * to override it to ensure consistency even when using the default theme. - */ - -html { - font-family: theme('fontFamily.sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"); /* 1 */ - line-height: 1.5; /* 2 */ -} - - -/** - * Inherit font-family and line-height from `html` so users can set them as - * a class directly on the `html` element. - */ - -body { - font-family: inherit; - line-height: inherit; -} - -/** - * 1. Prevent padding and border from affecting element width. - * - * We used to set this in the html element and inherit from - * the parent element for everything else. This caused issues - * in shadow-dom-enhanced elements like
where the content - * is wrapped by a div with box-sizing set to `content-box`. - * - * https://github.com/mozdevs/cssremedy/issues/4 - * - * - * 2. Allow adding a border to an element by just adding a border-width. - * - * By default, the way the browser specifies that an element should have no - * border is by setting it's border-style to `none` in the user-agent - * stylesheet. - * - * In order to easily add borders to elements by just setting the `border-width` - * property, we change the default border-style for all elements to `solid`, and - * use border-width to hide them instead. This way our `border` utilities only - * need to set the `border-width` property instead of the entire `border` - * shorthand, making our border utilities much more straightforward to compose. - * - * https://github.com/tailwindcss/tailwindcss/pull/116 - */ - -*, -::before, -::after { - box-sizing: border-box; /* 1 */ - border-width: 0; /* 2 */ - border-style: solid; /* 2 */ - border-color: theme('borderColor.DEFAULT', currentColor); /* 2 */ -} - -/* - * Ensure horizontal rules are visible by default - */ - -hr { - border-top-width: 1px; -} - -/** - * Undo the `border-style: none` reset that Normalize applies to images so that - * our `border-{width}` utilities have the expected effect. - * - * The Normalize reset is unnecessary for us since we default the border-width - * to 0 on all elements. - * - * https://github.com/tailwindcss/tailwindcss/issues/362 - */ - -img { - border-style: solid; -} - -textarea { - resize: vertical; -} - -input::placeholder, -textarea::placeholder { - opacity: 1; - color: theme('colors.gray.400', #a1a1aa); -} - -button, -[role="button"] { - cursor: pointer; -} - -table { - border-collapse: collapse; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - font-size: inherit; - font-weight: inherit; -} - -/** - * Reset links to optimize for opt-in styling instead of - * opt-out. - */ - -a { - color: inherit; - text-decoration: inherit; -} - -/** - * Reset form element properties that are easy to forget to - * style explicitly so you don't inadvertently introduce - * styles that deviate from your design system. These styles - * supplement a partial reset that is already applied by - * normalize.css. - */ - -button, -input, -optgroup, -select, -textarea { - padding: 0; - line-height: inherit; - color: inherit; -} - -/** - * Use the configured 'mono' font family for elements that - * are expected to be rendered with a monospace font, falling - * back to the system monospace stack if there is no configured - * 'mono' font family. - */ - -pre, -code, -kbd, -samp { - font-family: theme('fontFamily.mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace); -} - -/** - * Make replaced elements `display: block` by default as that's - * the behavior you want almost all of the time. Inspired by - * CSS Remedy, with `svg` added as well. - * - * https://github.com/mozdevs/cssremedy/issues/14 - */ - -img, -svg, -video, -canvas, -audio, -iframe, -embed, -object { - display: block; - vertical-align: middle; -} - -/** - * Constrain images and videos to the parent width and preserve - * their instrinsic aspect ratio. - * - * https://github.com/mozdevs/cssremedy/issues/14 - */ - -img, -video { - max-width: 100%; - height: auto; -} diff --git a/jit/corePlugins/cursor.js b/jit/corePlugins/cursor.js deleted file mode 100644 index 22065f619c2d..000000000000 --- a/jit/corePlugins/cursor.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - cursor: (modifier, { theme }) => { - let value = asValue(modifier, theme.cursor) - - if (value === undefined) { - return [] - } - - return { [nameClass('cursor', modifier)]: { cursor: value } } - }, - }) -} diff --git a/jit/corePlugins/display.js b/jit/corePlugins/display.js deleted file mode 100644 index 891902e9ef6b..000000000000 --- a/jit/corePlugins/display.js +++ /dev/null @@ -1 +0,0 @@ -module.exports = require('../../lib/plugins/display').default() diff --git a/jit/corePlugins/divideStyle.js b/jit/corePlugins/divideStyle.js deleted file mode 100644 index ece35bc0f9b3..000000000000 --- a/jit/corePlugins/divideStyle.js +++ /dev/null @@ -1,19 +0,0 @@ -module.exports = function ({ addUtilities }) { - addUtilities({ - '.divide-solid > :not([hidden]) ~ :not([hidden])': { - 'border-style': 'solid', - }, - '.divide-dashed > :not([hidden]) ~ :not([hidden])': { - 'border-style': 'dashed', - }, - '.divide-dotted > :not([hidden]) ~ :not([hidden])': { - 'border-style': 'dotted', - }, - '.divide-double > :not([hidden]) ~ :not([hidden])': { - 'border-style': 'double', - }, - '.divide-none > :not([hidden]) ~ :not([hidden])': { - 'border-style': 'none', - }, - }) -} diff --git a/jit/corePlugins/divideWidth.js b/jit/corePlugins/divideWidth.js deleted file mode 100644 index d572ddb2f81b..000000000000 --- a/jit/corePlugins/divideWidth.js +++ /dev/null @@ -1,49 +0,0 @@ -const { asLength, nameClass } = require('../pluginUtils') - -module.exports = function ({ addUtilities, matchUtilities }) { - matchUtilities({ - 'divide-x': (modifier, { theme }) => { - let value = asLength(modifier, theme['divideWidth']) - - if (value === undefined) { - return [] - } - - value = value === '0' ? '0px' : value - - return { - [`${nameClass('divide-x', modifier)} > :not([hidden]) ~ :not([hidden])`]: { - '--tw-divide-x-reverse': '0', - 'border-right-width': `calc(${value} * var(--tw-divide-x-reverse))`, - 'border-left-width': `calc(${value} * calc(1 - var(--tw-divide-x-reverse)))`, - }, - } - }, - 'divide-y': (modifier, { theme }) => { - let value = asLength(modifier, theme['divideWidth']) - - if (value === undefined) { - return [] - } - - value = value === '0' ? '0px' : value - - return { - [`${nameClass('divide-y', modifier)} > :not([hidden]) ~ :not([hidden])`]: { - '--tw-divide-y-reverse': '0', - 'border-top-width': `calc(${value} * calc(1 - var(--tw-divide-y-reverse)))`, - 'border-bottom-width': `calc(${value} * var(--tw-divide-y-reverse))`, - }, - } - }, - }) - - addUtilities({ - '.divide-y-reverse > :not([hidden]) ~ :not([hidden])': { - '--tw-divide-y-reverse': '1', - }, - '.divide-x-reverse > :not([hidden]) ~ :not([hidden])': { - '--tw-divide-x-reverse': '1', - }, - }) -} diff --git a/jit/corePlugins/flex.js b/jit/corePlugins/flex.js deleted file mode 100644 index 0567bd9172d8..000000000000 --- a/jit/corePlugins/flex.js +++ /dev/null @@ -1,15 +0,0 @@ -const { nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - flex: (modifier, { theme }) => { - let value = theme.flex[modifier] - - if (value === undefined) { - return [] - } - - return { [nameClass('flex', modifier)]: { flex: theme.flex[modifier] } } - }, - }) -} diff --git a/jit/corePlugins/flexDirection.js b/jit/corePlugins/flexDirection.js deleted file mode 100644 index 620ee123106c..000000000000 --- a/jit/corePlugins/flexDirection.js +++ /dev/null @@ -1,16 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.flex-row': { - 'flex-direction': 'row', - }, - '.flex-row-reverse': { - 'flex-direction': 'row-reverse', - }, - '.flex-col': { - 'flex-direction': 'column', - }, - '.flex-col-reverse': { - 'flex-direction': 'column-reverse', - }, -}) diff --git a/jit/corePlugins/flexGrow.js b/jit/corePlugins/flexGrow.js deleted file mode 100644 index b02b0f7e10f1..000000000000 --- a/jit/corePlugins/flexGrow.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'flex-grow': (modifier, { theme }) => { - let value = asValue(modifier, theme.flexGrow) - - if (value === undefined) { - return [] - } - - return { [nameClass('flex-grow', modifier)]: { 'flex-grow': value } } - }, - }) -} diff --git a/jit/corePlugins/flexShrink.js b/jit/corePlugins/flexShrink.js deleted file mode 100644 index c789785de9d1..000000000000 --- a/jit/corePlugins/flexShrink.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'flex-shrink': (modifier, { theme }) => { - let value = asValue(modifier, theme.flexShrink) - - if (value === undefined) { - return [] - } - - return { [nameClass('flex-shrink', modifier)]: { 'flex-shrink': value } } - }, - }) -} diff --git a/jit/corePlugins/flexWrap.js b/jit/corePlugins/flexWrap.js deleted file mode 100644 index b9ac5a7cbdff..000000000000 --- a/jit/corePlugins/flexWrap.js +++ /dev/null @@ -1,13 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.flex-wrap': { - 'flex-wrap': 'wrap', - }, - '.flex-wrap-reverse': { - 'flex-wrap': 'wrap-reverse', - }, - '.flex-nowrap': { - 'flex-wrap': 'nowrap', - }, -}) diff --git a/jit/corePlugins/float.js b/jit/corePlugins/float.js deleted file mode 100644 index c58164fdeacd..000000000000 --- a/jit/corePlugins/float.js +++ /dev/null @@ -1,7 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.float-right': { float: 'right' }, - '.float-left': { float: 'left' }, - '.float-none': { float: 'none' }, -}) diff --git a/jit/corePlugins/gap.js b/jit/corePlugins/gap.js deleted file mode 100644 index 5519cd76a4a8..000000000000 --- a/jit/corePlugins/gap.js +++ /dev/null @@ -1,35 +0,0 @@ -const { asLength, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - gap: (modifier, { theme }) => { - let value = asLength(modifier, theme['gap']) - - if (value === undefined) { - return [] - } - - return { [nameClass('gap', modifier)]: { gap: value } } - }, - }) - matchUtilities({ - 'gap-x': (modifier, { theme }) => { - let value = asLength(modifier, theme['gap']) - - if (value === undefined) { - return [] - } - - return { [nameClass('gap-x', modifier)]: { 'column-gap': value } } - }, - 'gap-y': (modifier, { theme }) => { - let value = asLength(modifier, theme['gap']) - - if (value === undefined) { - return [] - } - - return { [nameClass('gap-y', modifier)]: { 'row-gap': value } } - }, - }) -} diff --git a/jit/corePlugins/gridAutoColumns.js b/jit/corePlugins/gridAutoColumns.js deleted file mode 100644 index 90a970b94203..000000000000 --- a/jit/corePlugins/gridAutoColumns.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asList, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'auto-cols': (modifier, { theme }) => { - let value = asList(modifier, theme.gridAutoColumns) - - if (value === undefined) { - return [] - } - - return { [nameClass('auto-cols', modifier)]: { 'grid-auto-columns': value } } - }, - }) -} diff --git a/jit/corePlugins/gridAutoFlow.js b/jit/corePlugins/gridAutoFlow.js deleted file mode 100644 index 42d3366856cb..000000000000 --- a/jit/corePlugins/gridAutoFlow.js +++ /dev/null @@ -1,8 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.grid-flow-row': { gridAutoFlow: 'row' }, - '.grid-flow-col': { gridAutoFlow: 'column' }, - '.grid-flow-row-dense': { gridAutoFlow: 'row dense' }, - '.grid-flow-col-dense': { gridAutoFlow: 'column dense' }, -}) diff --git a/jit/corePlugins/gridAutoRows.js b/jit/corePlugins/gridAutoRows.js deleted file mode 100644 index 0e40b6698b91..000000000000 --- a/jit/corePlugins/gridAutoRows.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asList, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'auto-rows': (modifier, { theme }) => { - let value = asList(modifier, theme.gridAutoRows) - - if (value === undefined) { - return [] - } - - return { [nameClass('auto-rows', modifier)]: { 'grid-auto-rows': value } } - }, - }) -} diff --git a/jit/corePlugins/gridColumn.js b/jit/corePlugins/gridColumn.js deleted file mode 100644 index 241615bead4e..000000000000 --- a/jit/corePlugins/gridColumn.js +++ /dev/null @@ -1,13 +0,0 @@ -const { nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - col: (modifier, { theme }) => { - if (modifier === '' || theme.gridColumn[modifier] === undefined) { - return [] - } - - return { [nameClass('col', modifier)]: { 'grid-column': theme.gridColumn[modifier] } } - }, - }) -} diff --git a/jit/corePlugins/gridColumnEnd.js b/jit/corePlugins/gridColumnEnd.js deleted file mode 100644 index 53c7543c43e4..000000000000 --- a/jit/corePlugins/gridColumnEnd.js +++ /dev/null @@ -1,15 +0,0 @@ -const { nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'col-end': (modifier, { theme }) => { - let value = theme.gridColumnEnd[modifier] - - if (value === undefined) { - return [] - } - - return { [nameClass('col-end', modifier)]: { 'grid-column-end': value } } - }, - }) -} diff --git a/jit/corePlugins/gridColumnStart.js b/jit/corePlugins/gridColumnStart.js deleted file mode 100644 index e9adf8474073..000000000000 --- a/jit/corePlugins/gridColumnStart.js +++ /dev/null @@ -1,15 +0,0 @@ -const { nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'col-start': (modifier, { theme }) => { - let value = theme.gridColumnStart[modifier] - - if (value === undefined) { - return [] - } - - return { [nameClass('col-start', modifier)]: { 'grid-column-start': value } } - }, - }) -} diff --git a/jit/corePlugins/gridRow.js b/jit/corePlugins/gridRow.js deleted file mode 100644 index 2e560c3fadb7..000000000000 --- a/jit/corePlugins/gridRow.js +++ /dev/null @@ -1,15 +0,0 @@ -const { nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - row: (modifier, { theme }) => { - let value = theme.gridRow[modifier] - - if (value === undefined) { - return [] - } - - return { [nameClass('row', modifier)]: { 'grid-row': value } } - }, - }) -} diff --git a/jit/corePlugins/gridRowEnd.js b/jit/corePlugins/gridRowEnd.js deleted file mode 100644 index 64d6e56f1c18..000000000000 --- a/jit/corePlugins/gridRowEnd.js +++ /dev/null @@ -1,15 +0,0 @@ -const { nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'row-end': (modifier, { theme }) => { - let value = theme.gridRowEnd[modifier] - - if (value === undefined) { - return [] - } - - return { [nameClass('row-end', modifier)]: { 'grid-row-end': value } } - }, - }) -} diff --git a/jit/corePlugins/gridRowStart.js b/jit/corePlugins/gridRowStart.js deleted file mode 100644 index 683918ed3360..000000000000 --- a/jit/corePlugins/gridRowStart.js +++ /dev/null @@ -1,15 +0,0 @@ -const { nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'row-start': (modifier, { theme }) => { - let value = theme.gridRowStart[modifier] - - if (value === undefined) { - return [] - } - - return { [nameClass('row-start', modifier)]: { 'grid-row-start': value } } - }, - }) -} diff --git a/jit/corePlugins/gridTemplateColumns.js b/jit/corePlugins/gridTemplateColumns.js deleted file mode 100644 index 745b5ba7b37f..000000000000 --- a/jit/corePlugins/gridTemplateColumns.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asList, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'grid-cols': (modifier, { theme }) => { - let value = asList(modifier, theme.gridTemplateColumns) - - if (value === undefined) { - return [] - } - - return { [nameClass('grid-cols', modifier)]: { 'grid-template-columns': value } } - }, - }) -} diff --git a/jit/corePlugins/gridTemplateRows.js b/jit/corePlugins/gridTemplateRows.js deleted file mode 100644 index bff4eb3cd716..000000000000 --- a/jit/corePlugins/gridTemplateRows.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asList, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'grid-rows': (modifier, { theme }) => { - let value = asList(modifier, theme.gridTemplateRows) - - if (value === undefined) { - return [] - } - - return { [nameClass('grid-rows', modifier)]: { 'grid-template-rows': value } } - }, - }) -} diff --git a/jit/corePlugins/height.js b/jit/corePlugins/height.js deleted file mode 100644 index 83b594e1d0a8..000000000000 --- a/jit/corePlugins/height.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - h: (modifier, { theme }) => { - let value = asValue(modifier, theme['height']) - - if (value === undefined) { - return [] - } - - return { [nameClass('h', modifier)]: { height: value } } - }, - }) -} diff --git a/jit/corePlugins/index.js b/jit/corePlugins/index.js index decf3112ea14..e7324399880e 100644 --- a/jit/corePlugins/index.js +++ b/jit/corePlugins/index.js @@ -92,7 +92,11 @@ module.exports = { (className) => { return `motion-safe${config('separator')}${className}` }, - () => postcss.atRule({ name: 'media', params: '(prefers-reduced-motion: no-preference)' }) + () => + postcss.atRule({ + name: 'media', + params: '(prefers-reduced-motion: no-preference)', + }) ) ) @@ -102,7 +106,11 @@ module.exports = { (className) => { return `motion-reduce${config('separator')}${className}` }, - () => postcss.atRule({ name: 'media', params: '(prefers-reduced-motion: reduce)' }) + () => + postcss.atRule({ + name: 'media', + params: '(prefers-reduced-motion: reduce)', + }) ) ) }, @@ -131,7 +139,11 @@ module.exports = { (className) => { return `dark${config('separator')}${className}` }, - () => postcss.atRule({ name: 'media', params: '(prefers-color-scheme: dark)' }) + () => + postcss.atRule({ + name: 'media', + params: '(prefers-color-scheme: dark)', + }) ) ) } @@ -154,77 +166,77 @@ module.exports = { }, // Base - preflight: require('./preflight'), + preflight: require('../../lib/plugins/preflight').default(), // Components - container: require('./container'), + container: require('../../lib/plugins/container')(), // Utilitiles - accessibility: require('./accessibility'), - pointerEvents: require('./pointerEvents'), - visibility: require('./visibility'), - position: require('./position'), - inset: require('./inset'), - isolation: require('./isolation'), - zIndex: require('./zIndex'), - order: require('./order'), - gridColumn: require('./gridColumn'), - gridColumnEnd: require('./gridColumnEnd'), - gridColumnStart: require('./gridColumnStart'), - gridRow: require('./gridRow'), - gridRowEnd: require('./gridRowEnd'), - gridRowStart: require('./gridRowStart'), - float: require('./float'), - clear: require('./clear'), - margin: require('./margin'), - boxSizing: require('./boxSizing'), - display: require('./display'), - height: require('./height'), - maxHeight: require('./maxHeight'), - minHeight: require('./minHeight'), - width: require('./width'), - minWidth: require('./minWidth'), - maxWidth: require('./maxWidth'), - flex: require('./flex'), - flexShrink: require('./flexShrink'), - flexGrow: require('./flexGrow'), - tableLayout: require('./tableLayout'), - borderCollapse: require('./borderCollapse'), - - transform: require('./transform'), - transformOrigin: require('./transformOrigin'), - translate: require('./translate'), - rotate: require('./rotate'), - skew: require('./skew'), - scale: require('./scale'), - - animation: require('./animation'), - - cursor: require('./cursor'), - userSelect: require('./userSelect'), - resize: require('./resize'), - - listStylePosition: require('./listStylePosition'), - listStyleType: require('./listStyleType'), - - appearance: require('./appearance'), - gridAutoColumns: require('./gridAutoColumns'), - gridAutoFlow: require('./gridAutoFlow'), - gridAutoRows: require('./gridAutoRows'), - gridTemplateColumns: require('./gridTemplateColumns'), - gridTemplateRows: require('./gridTemplateRows'), - flexDirection: require('./flexDirection'), - flexWrap: require('./flexWrap'), - placeContent: require('./placeContent'), - placeItems: require('./placeItems'), - alignContent: require('./alignContent'), - alignItems: require('./alignItems'), - justifyContent: require('./justifyContent'), - justifyItems: require('./justifyItems'), - gap: require('./gap'), - space: require('./space'), - divideWidth: require('./divideWidth'), - divideStyle: require('./divideStyle'), + accessibility: require('../../lib/plugins/accessibility').default(), + pointerEvents: require('../../lib/plugins/pointerEvents').default(), + visibility: require('../../lib/plugins/visibility').default(), + position: require('../../lib/plugins/position').default(), + inset: require('../../lib/plugins/inset').default(), + isolation: require('../../lib/plugins/isolation').default(), + zIndex: require('../../lib/plugins/zIndex').default(), + order: require('../../lib/plugins/order').default(), + gridColumn: require('../../lib/plugins/gridColumn').default(), + gridColumnStart: require('../../lib/plugins/gridColumnStart').default(), + gridColumnEnd: require('../../lib/plugins/gridColumnEnd').default(), + gridRow: require('../../lib/plugins/gridRow').default(), + gridRowStart: require('../../lib/plugins/gridRowStart').default(), + gridRowEnd: require('../../lib/plugins/gridRowEnd').default(), + float: require('../../lib/plugins/float').default(), + clear: require('../../lib/plugins/clear').default(), + margin: require('../../lib/plugins/margin').default(), + boxSizing: require('../../lib/plugins/boxSizing').default(), + display: require('../../lib/plugins/display').default(), + height: require('../../lib/plugins/height').default(), + maxHeight: require('../../lib/plugins/maxHeight').default(), + minHeight: require('../../lib/plugins/minHeight').default(), + width: require('../../lib/plugins/width').default(), + minWidth: require('../../lib/plugins/minWidth').default(), + maxWidth: require('../../lib/plugins/maxWidth').default(), + flex: require('../../lib/plugins/flex').default(), + flexShrink: require('../../lib/plugins/flexShrink').default(), + flexGrow: require('../../lib/plugins/flexGrow').default(), + tableLayout: require('../../lib/plugins/tableLayout').default(), + borderCollapse: require('../../lib/plugins/borderCollapse').default(), + + transform: require('../../lib/plugins/transform').default(), + transformOrigin: require('../../lib/plugins/transformOrigin').default(), + translate: require('../../lib/plugins/translate').default(), + rotate: require('../../lib/plugins/rotate').default(), + skew: require('../../lib/plugins/skew').default(), + scale: require('../../lib/plugins/scale').default(), + + animation: require('../../lib/plugins/animation').default(), + + cursor: require('../../lib/plugins/cursor').default(), + userSelect: require('../../lib/plugins/userSelect').default(), + resize: require('../../lib/plugins/resize').default(), + + listStylePosition: require('../../lib/plugins/listStylePosition').default(), + listStyleType: require('../../lib/plugins/listStyleType').default(), + + appearance: require('../../lib/plugins/appearance').default(), + gridAutoColumns: require('../../lib/plugins/gridAutoColumns').default(), + gridAutoFlow: require('../../lib/plugins/gridAutoFlow').default(), + gridAutoRows: require('../../lib/plugins/gridAutoRows').default(), + gridTemplateColumns: require('../../lib/plugins/gridTemplateColumns').default(), + gridTemplateRows: require('../../lib/plugins/gridTemplateRows').default(), + flexDirection: require('../../lib/plugins/flexDirection').default(), + flexWrap: require('../../lib/plugins/flexWrap').default(), + placeContent: require('../../lib/plugins/placeContent').default(), + placeItems: require('../../lib/plugins/placeItems').default(), + alignContent: require('../../lib/plugins/alignContent').default(), + alignItems: require('../../lib/plugins/alignItems').default(), + justifyContent: require('../../lib/plugins/justifyContent').default(), + justifyItems: require('../../lib/plugins/justifyItems').default(), + gap: require('../../lib/plugins/gap').default(), + space: require('../../lib/plugins/space').default(), + divideWidth: require('../../lib/plugins/divideWidth').default(), + divideStyle: require('../../lib/plugins/divideStyle').default(), divideColor: require('./divideColor'), divideOpacity: require('./divideOpacity'), diff --git a/jit/corePlugins/inset.js b/jit/corePlugins/inset.js deleted file mode 100644 index 31be50069870..000000000000 --- a/jit/corePlugins/inset.js +++ /dev/null @@ -1,75 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - inset: (modifier, { theme }) => { - let value = asValue(modifier, theme['inset']) - - if (value === undefined) { - return [] - } - - return { - [nameClass('inset', modifier)]: { top: value, right: value, bottom: value, left: value }, - } - }, - }) - matchUtilities({ - 'inset-x': (modifier, { theme }) => { - let value = asValue(modifier, theme['inset']) - - if (value === undefined) { - return [] - } - - return { [nameClass('inset-x', modifier)]: { left: value, right: value } } - }, - 'inset-y': (modifier, { theme }) => { - let value = asValue(modifier, theme['inset']) - - if (value === undefined) { - return [] - } - - return { [nameClass('inset-y', modifier)]: { top: value, bottom: value } } - }, - }) - matchUtilities({ - top: (modifier, { theme }) => { - let value = asValue(modifier, theme['inset']) - - if (value === undefined) { - return [] - } - - return { [nameClass('top', modifier)]: { top: value } } - }, - right: (modifier, { theme }) => { - let value = asValue(modifier, theme['inset']) - - if (value === undefined) { - return [] - } - - return { [nameClass('right', modifier)]: { right: value } } - }, - bottom: (modifier, { theme }) => { - let value = asValue(modifier, theme['inset']) - - if (value === undefined) { - return [] - } - - return { [nameClass('bottom', modifier)]: { bottom: value } } - }, - left: (modifier, { theme }) => { - let value = asValue(modifier, theme['inset']) - - if (value === undefined) { - return [] - } - - return { [nameClass('left', modifier)]: { left: value } } - }, - }) -} diff --git a/jit/corePlugins/isolation.js b/jit/corePlugins/isolation.js deleted file mode 100644 index e3f6cdbd0d66..000000000000 --- a/jit/corePlugins/isolation.js +++ /dev/null @@ -1 +0,0 @@ -module.exports = require('../../lib/plugins/isolation').default() diff --git a/jit/corePlugins/justifyContent.js b/jit/corePlugins/justifyContent.js deleted file mode 100644 index 5914e79f3f5d..000000000000 --- a/jit/corePlugins/justifyContent.js +++ /dev/null @@ -1,22 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.justify-start': { - 'justify-content': 'flex-start', - }, - '.justify-end': { - 'justify-content': 'flex-end', - }, - '.justify-center': { - 'justify-content': 'center', - }, - '.justify-between': { - 'justify-content': 'space-between', - }, - '.justify-around': { - 'justify-content': 'space-around', - }, - '.justify-evenly': { - 'justify-content': 'space-evenly', - }, -}) diff --git a/jit/corePlugins/justifyItems.js b/jit/corePlugins/justifyItems.js deleted file mode 100644 index ec098317c3f4..000000000000 --- a/jit/corePlugins/justifyItems.js +++ /dev/null @@ -1,16 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.justify-items-start': { - 'justify-items': 'start', - }, - '.justify-items-end': { - 'justify-items': 'end', - }, - '.justify-items-center': { - 'justify-items': 'center', - }, - '.justify-items-stretch': { - 'justify-items': 'stretch', - }, -}) diff --git a/jit/corePlugins/listStylePosition.js b/jit/corePlugins/listStylePosition.js deleted file mode 100644 index 43c8ee5c3f88..000000000000 --- a/jit/corePlugins/listStylePosition.js +++ /dev/null @@ -1,6 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.list-inside': { 'list-style-position': 'inside' }, - '.list-outside': { 'list-style-position': 'outside' }, -}) diff --git a/jit/corePlugins/listStyleType.js b/jit/corePlugins/listStyleType.js deleted file mode 100644 index 275d2dd17f72..000000000000 --- a/jit/corePlugins/listStyleType.js +++ /dev/null @@ -1,13 +0,0 @@ -const { nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - list: (modifier, { theme }) => { - if (modifier === '' || theme.listStyleType[modifier] === undefined) { - return [] - } - - return { [nameClass('list', modifier)]: { 'list-style-type': theme.listStyleType[modifier] } } - }, - }) -} diff --git a/jit/corePlugins/margin.js b/jit/corePlugins/margin.js deleted file mode 100644 index 863960523230..000000000000 --- a/jit/corePlugins/margin.js +++ /dev/null @@ -1,73 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - m: (modifier, { theme }) => { - let value = asValue(modifier, theme['margin']) - - if (value === undefined) { - return [] - } - - return { [nameClass('m', modifier)]: { margin: value } } - }, - }) - matchUtilities({ - mx: (modifier, { theme }) => { - let value = asValue(modifier, theme['margin']) - - if (value === undefined) { - return [] - } - - return { [nameClass('mx', modifier)]: { 'margin-left': value, 'margin-right': value } } - }, - my: (modifier, { theme }) => { - let value = asValue(modifier, theme['margin']) - - if (value === undefined) { - return [] - } - - return { [nameClass('my', modifier)]: { 'margin-top': value, 'margin-bottom': value } } - }, - }) - matchUtilities({ - mt: (modifier, { theme }) => { - let value = asValue(modifier, theme['margin']) - - if (value === undefined) { - return [] - } - - return { [nameClass('mt', modifier)]: { 'margin-top': value } } - }, - mr: (modifier, { theme }) => { - let value = asValue(modifier, theme['margin']) - - if (value === undefined) { - return [] - } - - return { [nameClass('mr', modifier)]: { 'margin-right': value } } - }, - mb: (modifier, { theme }) => { - let value = asValue(modifier, theme['margin']) - - if (value === undefined) { - return [] - } - - return { [nameClass('mb', modifier)]: { 'margin-bottom': value } } - }, - ml: (modifier, { theme }) => { - let value = asValue(modifier, theme['margin']) - - if (value === undefined) { - return [] - } - - return { [nameClass('ml', modifier)]: { 'margin-left': value } } - }, - }) -} diff --git a/jit/corePlugins/maxHeight.js b/jit/corePlugins/maxHeight.js deleted file mode 100644 index 432a7ee1123e..000000000000 --- a/jit/corePlugins/maxHeight.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'max-h': (modifier, { theme }) => { - let value = asValue(modifier, theme['maxHeight']) - - if (value === undefined) { - return [] - } - - return { [nameClass('max-h', modifier)]: { 'max-height': value } } - }, - }) -} diff --git a/jit/corePlugins/maxWidth.js b/jit/corePlugins/maxWidth.js deleted file mode 100644 index d519d667caa3..000000000000 --- a/jit/corePlugins/maxWidth.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'max-w': (modifier, { theme }) => { - let value = asValue(modifier, theme['maxWidth']) - - if (value === undefined) { - return [] - } - - return { [nameClass('max-w', modifier)]: { 'max-width': value } } - }, - }) -} diff --git a/jit/corePlugins/minHeight.js b/jit/corePlugins/minHeight.js deleted file mode 100644 index a78682ee3e0b..000000000000 --- a/jit/corePlugins/minHeight.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'min-h': (modifier, { theme }) => { - let value = asValue(modifier, theme['minHeight']) - - if (value === undefined) { - return [] - } - - return { [nameClass('min-h', modifier)]: { 'min-height': value } } - }, - }) -} diff --git a/jit/corePlugins/minWidth.js b/jit/corePlugins/minWidth.js deleted file mode 100644 index 3a6be87b4bb2..000000000000 --- a/jit/corePlugins/minWidth.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'min-w': (modifier, { theme }) => { - let value = asValue(modifier, theme['minWidth']) - - if (value === undefined) { - return [] - } - - return { [nameClass('min-w', modifier)]: { 'min-width': value } } - }, - }) -} diff --git a/jit/corePlugins/order.js b/jit/corePlugins/order.js deleted file mode 100644 index e17cf14c9c27..000000000000 --- a/jit/corePlugins/order.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - order: (modifier, { theme }) => { - let value = asValue(modifier, theme.order) - - if (value === undefined) { - return [] - } - - return { [nameClass('order', modifier)]: { order: value } } - }, - }) -} diff --git a/jit/corePlugins/placeContent.js b/jit/corePlugins/placeContent.js deleted file mode 100644 index f20baa873559..000000000000 --- a/jit/corePlugins/placeContent.js +++ /dev/null @@ -1,25 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.place-content-center': { - 'place-content': 'center', - }, - '.place-content-start': { - 'place-content': 'start', - }, - '.place-content-end': { - 'place-content': 'end', - }, - '.place-content-between': { - 'place-content': 'space-between', - }, - '.place-content-around': { - 'place-content': 'space-around', - }, - '.place-content-evenly': { - 'place-content': 'space-evenly', - }, - '.place-content-stretch': { - 'place-content': 'stretch', - }, -}) diff --git a/jit/corePlugins/placeItems.js b/jit/corePlugins/placeItems.js deleted file mode 100644 index abd1f61a2461..000000000000 --- a/jit/corePlugins/placeItems.js +++ /dev/null @@ -1,16 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.place-items-start': { - 'place-items': 'start', - }, - '.place-items-end': { - 'place-items': 'end', - }, - '.place-items-center': { - 'place-items': 'center', - }, - '.place-items-stretch': { - 'place-items': 'stretch', - }, -}) diff --git a/jit/corePlugins/pointerEvents.js b/jit/corePlugins/pointerEvents.js deleted file mode 100644 index 2b8fee6b0f6c..000000000000 --- a/jit/corePlugins/pointerEvents.js +++ /dev/null @@ -1,6 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.pointer-events-none': { 'pointer-events': 'none' }, - '.pointer-events-auto': { 'pointer-events': 'auto' }, -}) diff --git a/jit/corePlugins/position.js b/jit/corePlugins/position.js deleted file mode 100644 index 48554d4a9bc9..000000000000 --- a/jit/corePlugins/position.js +++ /dev/null @@ -1,11 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.static': { position: 'static' }, - '.fixed': { position: 'fixed' }, - '.absolute': { position: 'absolute' }, - '.relative': { position: 'relative' }, - '.sticky': { - position: 'sticky', - }, -}) diff --git a/jit/corePlugins/preflight.js b/jit/corePlugins/preflight.js deleted file mode 100644 index 64de4c7dbc1d..000000000000 --- a/jit/corePlugins/preflight.js +++ /dev/null @@ -1,3 +0,0 @@ -const preflight = require('../../lib/plugins/preflight').default - -module.exports = preflight() diff --git a/jit/corePlugins/resize.js b/jit/corePlugins/resize.js deleted file mode 100644 index 8fb65f855153..000000000000 --- a/jit/corePlugins/resize.js +++ /dev/null @@ -1,8 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.resize-none': { resize: 'none' }, - '.resize-y': { resize: 'vertical' }, - '.resize-x': { resize: 'horizontal' }, - '.resize': { resize: 'both' }, -}) diff --git a/jit/corePlugins/rotate.js b/jit/corePlugins/rotate.js deleted file mode 100644 index 170b6d825c5b..000000000000 --- a/jit/corePlugins/rotate.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asAngle, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - rotate: (modifier, { theme }) => { - let value = asAngle(modifier, theme.rotate) - - if (value === undefined) { - return [] - } - - return { [nameClass('rotate', modifier)]: { '--tw-rotate': value } } - }, - }) -} diff --git a/jit/corePlugins/scale.js b/jit/corePlugins/scale.js deleted file mode 100644 index 9e5a1dae298e..000000000000 --- a/jit/corePlugins/scale.js +++ /dev/null @@ -1,35 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - scale: (modifier, { theme }) => { - let value = asValue(modifier, theme.scale) - - if (value === undefined) { - return [] - } - - return { [nameClass('scale', modifier)]: { '--tw-scale-x': value, '--tw-scale-y': value } } - }, - }) - matchUtilities({ - 'scale-x': (modifier, { theme }) => { - let value = asValue(modifier, theme.scale) - - if (value === undefined) { - return [] - } - - return { [nameClass('scale-x', modifier)]: { '--tw-scale-x': value } } - }, - 'scale-y': (modifier, { theme }) => { - let value = asValue(modifier, theme.scale) - - if (value === undefined) { - return [] - } - - return { [nameClass('scale-y', modifier)]: { '--tw-scale-y': value } } - }, - }) -} diff --git a/jit/corePlugins/skew.js b/jit/corePlugins/skew.js deleted file mode 100644 index 6e53571c6b38..000000000000 --- a/jit/corePlugins/skew.js +++ /dev/null @@ -1,24 +0,0 @@ -const { asAngle, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'skew-x': (modifier, { theme }) => { - let value = asAngle(modifier, theme.skew) - - if (value === undefined) { - return [] - } - - return { [nameClass('skew-x', modifier)]: { '--tw-skew-x': value } } - }, - 'skew-y': (modifier, { theme }) => { - let value = asAngle(modifier, theme.skew) - - if (value === undefined) { - return [] - } - - return { [nameClass('skew-y', modifier)]: { '--tw-skew-y': value } } - }, - }) -} diff --git a/jit/corePlugins/space.js b/jit/corePlugins/space.js deleted file mode 100644 index 6a33c3c90258..000000000000 --- a/jit/corePlugins/space.js +++ /dev/null @@ -1,45 +0,0 @@ -const { asLength, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities, addUtilities }) { - matchUtilities({ - 'space-x': (modifier, { theme }) => { - let value = asLength(modifier, theme['space']) - - if (value === undefined) { - return [] - } - - return { - [`${nameClass('space-x', modifier)} > :not([hidden]) ~ :not([hidden])`]: { - '--tw-space-x-reverse': '0', - 'margin-right': `calc(${value} * var(--tw-space-x-reverse))`, - 'margin-left': `calc(${value} * calc(1 - var(--tw-space-x-reverse)))`, - }, - } - }, - 'space-y': (modifier, { theme }) => { - let value = asLength(modifier, theme['space']) - - if (value === undefined) { - return [] - } - - return { - [`${nameClass('space-y', modifier)} > :not([hidden]) ~ :not([hidden])`]: { - '--tw-space-y-reverse': '0', - 'margin-top': `calc(${value} * calc(1 - var(--tw-space-y-reverse)))`, - 'margin-bottom': `calc(${value} * var(--tw-space-y-reverse))`, - }, - } - }, - }) - - addUtilities({ - '.space-y-reverse > :not([hidden]) ~ :not([hidden])': { - '--tw-space-y-reverse': '1', - }, - '.space-x-reverse > :not([hidden]) ~ :not([hidden])': { - '--tw-space-x-reverse': '1', - }, - }) -} diff --git a/jit/corePlugins/tableLayout.js b/jit/corePlugins/tableLayout.js deleted file mode 100644 index ba7e966b228b..000000000000 --- a/jit/corePlugins/tableLayout.js +++ /dev/null @@ -1,6 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.table-auto': { 'table-layout': 'auto' }, - '.table-fixed': { 'table-layout': 'fixed' }, -}) diff --git a/jit/corePlugins/transform.js b/jit/corePlugins/transform.js deleted file mode 100644 index d17f0af592ba..000000000000 --- a/jit/corePlugins/transform.js +++ /dev/null @@ -1,40 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.transform': { - '--tw-translate-x': '0', - '--tw-translate-y': '0', - '--tw-rotate': '0', - '--tw-skew-x': '0', - '--tw-skew-y': '0', - '--tw-scale-x': '1', - '--tw-scale-y': '1', - transform: [ - 'translateX(var(--tw-translate-x))', - 'translateY(var(--tw-translate-y))', - 'rotate(var(--tw-rotate))', - 'skewX(var(--tw-skew-x))', - 'skewY(var(--tw-skew-y))', - 'scaleX(var(--tw-scale-x))', - 'scaleY(var(--tw-scale-y))', - ].join(' '), - }, - '.transform-gpu': { - '--tw-translate-x': '0', - '--tw-translate-y': '0', - '--tw-rotate': '0', - '--tw-skew-x': '0', - '--tw-skew-y': '0', - '--tw-scale-x': '1', - '--tw-scale-y': '1', - transform: [ - 'translate3d(var(--tw-translate-x), var(--tw-translate-y), 0)', - 'rotate(var(--tw-rotate))', - 'skewX(var(--tw-skew-x))', - 'skewY(var(--tw-skew-y))', - 'scaleX(var(--tw-scale-x))', - 'scaleY(var(--tw-scale-y))', - ].join(' '), - }, - '.transform-none': { transform: 'none' }, -}) diff --git a/jit/corePlugins/transformOrigin.js b/jit/corePlugins/transformOrigin.js deleted file mode 100644 index 32735553ee86..000000000000 --- a/jit/corePlugins/transformOrigin.js +++ /dev/null @@ -1,15 +0,0 @@ -const { nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - origin: (modifier, { theme }) => { - let value = theme.transformOrigin[modifier] - - if (value === undefined) { - return [] - } - - return { [nameClass('origin', modifier)]: { 'transform-origin': value } } - }, - }) -} diff --git a/jit/corePlugins/translate.js b/jit/corePlugins/translate.js deleted file mode 100644 index c81fbf944f37..000000000000 --- a/jit/corePlugins/translate.js +++ /dev/null @@ -1,24 +0,0 @@ -const { asLength, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'translate-x': (modifier, { theme }) => { - let value = asLength(modifier, theme['translate']) - - if (value === undefined) { - return [] - } - - return { [nameClass('translate-x', modifier)]: { '--tw-translate-x': value } } - }, - 'translate-y': (modifier, { theme }) => { - let value = asLength(modifier, theme['translate']) - - if (value === undefined) { - return [] - } - - return { [nameClass('translate-y', modifier)]: { '--tw-translate-y': value } } - }, - }) -} diff --git a/jit/corePlugins/userSelect.js b/jit/corePlugins/userSelect.js deleted file mode 100644 index 895700801649..000000000000 --- a/jit/corePlugins/userSelect.js +++ /dev/null @@ -1,8 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.select-none': { 'user-select': 'none' }, - '.select-text': { 'user-select': 'text' }, - '.select-all': { 'user-select': 'all' }, - '.select-auto': { 'user-select': 'auto' }, -}) diff --git a/jit/corePlugins/visibility.js b/jit/corePlugins/visibility.js deleted file mode 100644 index c4bb8d63ddbd..000000000000 --- a/jit/corePlugins/visibility.js +++ /dev/null @@ -1,6 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.visible': { visibility: 'visible' }, - '.invisible': { visibility: 'hidden' }, -}) diff --git a/jit/corePlugins/width.js b/jit/corePlugins/width.js deleted file mode 100644 index 3ce8590a7929..000000000000 --- a/jit/corePlugins/width.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - w: (modifier, { theme }) => { - let value = asValue(modifier, theme['width']) - - if (value === undefined) { - return [] - } - - return { [nameClass('w', modifier)]: { width: value } } - }, - }) -} diff --git a/jit/corePlugins/zIndex.js b/jit/corePlugins/zIndex.js deleted file mode 100644 index 9ce3e286aa59..000000000000 --- a/jit/corePlugins/zIndex.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - z: (modifier, { theme }) => { - let value = asValue(modifier, theme.zIndex) - - if (value === undefined) { - return [] - } - - return { [nameClass('z', modifier)]: { 'z-index': value } } - }, - }) -} diff --git a/jit/tests/apply.test.js b/jit/tests/apply.test.js index aef45ff96b8c..4829717eaccd 100644 --- a/jit/tests/apply.test.js +++ b/jit/tests/apply.test.js @@ -14,6 +14,7 @@ function run(input, config = {}) { test('@apply', () => { let config = { darkMode: 'class', + mode: 'jit', purge: [path.resolve(__dirname, './apply.test.html')], corePlugins: { preflight: false }, theme: {}, diff --git a/jit/tests/arbitrary-values.test.css b/jit/tests/arbitrary-values.test.css index 511985d276b2..ec83223bc2c8 100644 --- a/jit/tests/arbitrary-values.test.css +++ b/jit/tests/arbitrary-values.test.css @@ -13,6 +13,47 @@ bottom: 11px; left: 11px; } +.col-\[7\] { + grid-column: 7; +} +.col-start-\[7\] { + grid-column-start: 7; +} +.col-end-\[7\] { + grid-column-end: 7; +} +.row-\[7\] { + grid-row: 7; +} +.row-start-\[7\] { + grid-row-start: 7; +} +.row-end-\[7\] { + grid-row-end: 7; +} +.m-\[7px\] { + margin: 7px; +} +.mx-\[7px\] { + margin-left: 7px; + margin-right: 7px; +} +.my-\[7px\] { + margin-top: 7px; + margin-bottom: 7px; +} +.mt-\[7px\] { + margin-top: 7px; +} +.mr-\[7px\] { + margin-right: 7px; +} +.mb-\[7px\] { + margin-bottom: 7px; +} +.ml-\[7px\] { + margin-left: 7px; +} .mt-\[clamp\(30px\2c 100px\)\] { margin-top: clamp(30px, 100px); } @@ -82,9 +123,18 @@ .rotate-\[1\.5turn\] { --tw-rotate: 1.5turn; } +.skew-x-\[3px\] { + --tw-skew-x: 3px; +} +.skew-y-\[3px\] { + --tw-skew-y: 3px; +} .grid-cols-\[200px\2c repeat\(auto-fill\2c minmax\(15\%\2c 100px\)\)\2c 300px\] { grid-template-columns: 200px repeat(auto-fill, minmax(15%, 100px)) 300px; } +.grid-rows-\[200px\2c repeat\(auto-fill\2c minmax\(15\%\2c 100px\)\)\2c 300px\] { + grid-template-rows: 200px repeat(auto-fill, minmax(15%, 100px)) 300px; +} .space-x-\[20cm\] > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(20cm * var(--tw-space-x-reverse)); diff --git a/jit/tests/arbitrary-values.test.html b/jit/tests/arbitrary-values.test.html index 6a93e80c974a..868c02933aab 100644 --- a/jit/tests/arbitrary-values.test.html +++ b/jit/tests/arbitrary-values.test.html @@ -36,9 +36,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/jit/tests/basic-usage.test.css b/jit/tests/basic-usage.test.css index 784da2da1d4b..12cda29f8f3a 100644 --- a/jit/tests/basic-usage.test.css +++ b/jit/tests/basic-usage.test.css @@ -99,21 +99,21 @@ .col-span-3 { grid-column: span 3 / span 3; } -.col-end-4 { - grid-column-end: 4; -} .col-start-1 { grid-column-start: 1; } +.col-end-4 { + grid-column-end: 4; +} .row-span-2 { grid-row: span 2 / span 2; } -.row-end-5 { - grid-row-end: 5; -} .row-start-3 { grid-row-start: 3; } +.row-end-5 { + grid-row-end: 5; +} .float-right { float: right; } diff --git a/jit/tests/basic-usage.test.js b/jit/tests/basic-usage.test.js index 5984b1f4d5bc..ae2802b3668f 100644 --- a/jit/tests/basic-usage.test.js +++ b/jit/tests/basic-usage.test.js @@ -4,11 +4,14 @@ const fs = require('fs') const path = require('path') function run(input, config = {}) { - return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) + return postcss(tailwind(config)).process(input, { + from: path.resolve(__filename), + }) } test('basic usage', () => { let config = { + mode: 'jit', purge: [path.resolve(__dirname, './basic-usage.test.html')], corePlugins: { preflight: false }, theme: {}, diff --git a/jit/tests/collapse-adjacent-rules.test.js b/jit/tests/collapse-adjacent-rules.test.js index 455c48d9e8ff..910f674f35ab 100644 --- a/jit/tests/collapse-adjacent-rules.test.js +++ b/jit/tests/collapse-adjacent-rules.test.js @@ -4,11 +4,14 @@ const fs = require('fs') const path = require('path') function run(input, config = {}) { - return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) + return postcss(tailwind(config)).process(input, { + from: path.resolve(__filename), + }) } test('collapse adjacent rules', () => { let config = { + mode: 'jit', purge: [path.resolve(__dirname, './collapse-adjacent-rules.test.html')], corePlugins: { preflight: false }, theme: {}, diff --git a/jit/tests/context-reuse.worker.js b/jit/tests/context-reuse.worker.js index dfa4687803fb..ddde30fe8b3a 100644 --- a/jit/tests/context-reuse.worker.js +++ b/jit/tests/context-reuse.worker.js @@ -16,6 +16,7 @@ async function runTest() { let config = { darkMode: 'class', + mode: 'jit', purge: [path.resolve(__dirname, './context-reuse.test.html')], corePlugins: { preflight: false }, theme: {}, diff --git a/jit/tests/custom-extractors.test.js b/jit/tests/custom-extractors.test.js index f208164237e1..896c3e62f570 100644 --- a/jit/tests/custom-extractors.test.js +++ b/jit/tests/custom-extractors.test.js @@ -5,7 +5,9 @@ const path = require('path') function run(input, config = {}) { jest.resetModules() const tailwind = require('../index.js') - return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) + return postcss(tailwind(config)).process(input, { + from: path.resolve(__filename), + }) } function customExtractor(content) { @@ -23,6 +25,7 @@ const expected = fs.readFileSync(expectedPath, 'utf8') test('defaultExtractor', () => { let config = { + mode: 'jit', purge: { content: [path.resolve(__dirname, './custom-extractors.test.html')], options: { @@ -52,6 +55,7 @@ test('extractors array', () => { ], }, }, + mode: 'jit', corePlugins: { preflight: false }, theme: {}, plugins: [], diff --git a/jit/tests/custom-separator.test.js b/jit/tests/custom-separator.test.js index 1ef0caf3be60..de948ea05f51 100644 --- a/jit/tests/custom-separator.test.js +++ b/jit/tests/custom-separator.test.js @@ -4,12 +4,15 @@ const fs = require('fs') const path = require('path') function run(input, config = {}) { - return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) + return postcss(tailwind(config)).process(input, { + from: path.resolve(__filename), + }) } test('custom separator', () => { let config = { darkMode: 'class', + mode: 'jit', purge: [path.resolve(__dirname, './custom-separator.test.html')], separator: '_', corePlugins: {}, diff --git a/jit/tests/import-syntax.test.js b/jit/tests/import-syntax.test.js index f48afc2a0959..8b473dfb78b0 100644 --- a/jit/tests/import-syntax.test.js +++ b/jit/tests/import-syntax.test.js @@ -4,12 +4,15 @@ const fs = require('fs') const path = require('path') function run(input, config = {}) { - return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) + return postcss(tailwind(config)).process(input, { + from: path.resolve(__filename), + }) } test('using @import instead of @tailwind', () => { let config = { purge: [path.resolve(__dirname, './import-syntax.test.html')], + mode: 'jit', corePlugins: { preflight: false }, theme: {}, plugins: [ diff --git a/jit/tests/important-boolean.test.js b/jit/tests/important-boolean.test.js index f8359c37fa43..4b7e8d4d3de6 100644 --- a/jit/tests/important-boolean.test.js +++ b/jit/tests/important-boolean.test.js @@ -4,13 +4,16 @@ const fs = require('fs') const path = require('path') function run(input, config = {}) { - return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) + return postcss(tailwind(config)).process(input, { + from: path.resolve(__filename), + }) } test('important boolean', () => { let config = { important: true, darkMode: 'class', + mode: 'jit', purge: [path.resolve(__dirname, './important-boolean.test.html')], corePlugins: { preflight: false }, theme: {}, diff --git a/jit/tests/important-modifier-prefix.test.js b/jit/tests/important-modifier-prefix.test.js index 555d520a6adf..8034ff531280 100644 --- a/jit/tests/important-modifier-prefix.test.js +++ b/jit/tests/important-modifier-prefix.test.js @@ -4,7 +4,9 @@ const fs = require('fs') const path = require('path') function run(input, config = {}) { - return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) + return postcss(tailwind(config)).process(input, { + from: path.resolve(__filename), + }) } test('important modifier with prefix', () => { @@ -12,6 +14,7 @@ test('important modifier with prefix', () => { important: false, prefix: 'tw-', darkMode: 'class', + mode: 'jit', purge: [path.resolve(__dirname, './important-modifier-prefix.test.html')], corePlugins: { preflight: false }, theme: {}, diff --git a/jit/tests/important-modifier.test.js b/jit/tests/important-modifier.test.js index 92b444c66125..e22d60079a63 100644 --- a/jit/tests/important-modifier.test.js +++ b/jit/tests/important-modifier.test.js @@ -4,13 +4,16 @@ const fs = require('fs') const path = require('path') function run(input, config = {}) { - return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) + return postcss(tailwind(config)).process(input, { + from: path.resolve(__filename), + }) } test('important modifier', () => { let config = { important: false, darkMode: 'class', + mode: 'jit', purge: [path.resolve(__dirname, './important-modifier.test.html')], corePlugins: { preflight: false }, theme: {}, diff --git a/jit/tests/important-selector.test.js b/jit/tests/important-selector.test.js index c262df99bcd4..bdf95b09d40f 100644 --- a/jit/tests/important-selector.test.js +++ b/jit/tests/important-selector.test.js @@ -4,13 +4,16 @@ const fs = require('fs') const path = require('path') function run(input, config = {}) { - return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) + return postcss(tailwind(config)).process(input, { + from: path.resolve(__filename), + }) } test('important selector', () => { let config = { important: '#app', darkMode: 'class', + mode: 'jit', purge: [path.resolve(__dirname, './important-selector.test.html')], corePlugins: { preflight: false }, theme: {}, diff --git a/jit/tests/kitchen-sink.test.js b/jit/tests/kitchen-sink.test.js index ae907ec87b69..18d11d3be643 100644 --- a/jit/tests/kitchen-sink.test.js +++ b/jit/tests/kitchen-sink.test.js @@ -4,12 +4,15 @@ const fs = require('fs') const path = require('path') function run(input, config = {}) { - return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) + return postcss(tailwind(config)).process(input, { + from: path.resolve(__filename), + }) } test('it works', () => { let config = { darkMode: 'class', + mode: 'jit', purge: [path.resolve(__dirname, './kitchen-sink.test.html')], corePlugins: { preflight: false }, theme: { diff --git a/jit/tests/modify-selectors.test.js b/jit/tests/modify-selectors.test.js index ae3fede3d261..9fb4ad10397b 100644 --- a/jit/tests/modify-selectors.test.js +++ b/jit/tests/modify-selectors.test.js @@ -5,12 +5,15 @@ const path = require('path') const selectorParser = require('postcss-selector-parser') function run(input, config = {}) { - return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) + return postcss(tailwind(config)).process(input, { + from: path.resolve(__filename), + }) } test('modify selectors', () => { let config = { darkMode: 'class', + mode: 'jit', purge: [path.resolve(__dirname, './modify-selectors.test.html')], corePlugins: { preflight: false }, theme: {}, diff --git a/jit/tests/mutable.test.js b/jit/tests/mutable.test.js index cecde6cdf7d5..be34f8e4bd4c 100644 --- a/jit/tests/mutable.test.js +++ b/jit/tests/mutable.test.js @@ -18,12 +18,15 @@ function pluginThatMutatesRules() { } function run(input, config = {}) { - return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) + return postcss(tailwind(config)).process(input, { + from: path.resolve(__filename), + }) } test.only('plugins mutating rules after tailwind doesnt break it', async () => { let config = { purge: [path.resolve(__dirname, './mutable.test.html')], + mode: 'jit', theme: { backgroundImage: { foo: 'url("./foo.png")', @@ -47,7 +50,9 @@ test.only('plugins mutating rules after tailwind doesnt break it', async () => { // Outside of the context of tailwind jit more postcss plugins may operate on the AST: // In this case we have a plugin that mutates rules directly - await postcss([pluginThatMutatesRules()]).process(firstRun, { from: path.resolve(__filename) }) + await postcss([pluginThatMutatesRules()]).process(firstRun, { + from: path.resolve(__filename), + }) // Verify subsequent runs don't produce mutated rules let secondRun = await run(css, config) diff --git a/jit/tests/prefix.fn.test.js b/jit/tests/prefix.fn.test.js index 8e0b753182ba..6fee20bbcb45 100644 --- a/jit/tests/prefix.fn.test.js +++ b/jit/tests/prefix.fn.test.js @@ -4,7 +4,9 @@ const fs = require('fs') const path = require('path') function run(input, config = {}) { - return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) + return postcss(tailwind(config)).process(input, { + from: path.resolve(__filename), + }) } test('prefix fn', () => { @@ -17,6 +19,7 @@ test('prefix fn', () => { return '' }, purge: [path.resolve(__dirname, './prefix.fn.test.html')], + mode: 'jit', corePlugins: { preflight: false }, theme: {}, } diff --git a/jit/tests/prefix.test.js b/jit/tests/prefix.test.js index 2b4a0a5b7b4b..f2eff9d10ff4 100644 --- a/jit/tests/prefix.test.js +++ b/jit/tests/prefix.test.js @@ -4,13 +4,16 @@ const fs = require('fs') const path = require('path') function run(input, config = {}) { - return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) + return postcss(tailwind(config)).process(input, { + from: path.resolve(__filename), + }) } test('prefix', () => { let config = { prefix: 'tw-', darkMode: 'class', + mode: 'jit', purge: [path.resolve(__dirname, './prefix.test.html')], corePlugins: { preflight: false }, theme: {}, diff --git a/jit/tests/responsive-and-variants-atrules.test.js b/jit/tests/responsive-and-variants-atrules.test.js index b5cbffdd96e4..c4d7fb98760c 100644 --- a/jit/tests/responsive-and-variants-atrules.test.js +++ b/jit/tests/responsive-and-variants-atrules.test.js @@ -4,12 +4,15 @@ const fs = require('fs') const path = require('path') function run(input, config = {}) { - return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) + return postcss(tailwind(config)).process(input, { + from: path.resolve(__filename), + }) } test('responsive and variants atrules', () => { let config = { purge: [path.resolve(__dirname, './responsive-and-variants-atrules.test.html')], + mode: 'jit', corePlugins: { preflight: false }, theme: {}, plugins: [], diff --git a/jit/tests/svelte-syntax.test.js b/jit/tests/svelte-syntax.test.js index d510ab6e9b8f..e42d81361821 100644 --- a/jit/tests/svelte-syntax.test.js +++ b/jit/tests/svelte-syntax.test.js @@ -4,12 +4,15 @@ const fs = require('fs') const path = require('path') function run(input, config = {}) { - return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) + return postcss(tailwind(config)).process(input, { + from: path.resolve(__filename), + }) } test('basic usage', () => { let config = { purge: [path.resolve(__dirname, './svelte-syntax.test.svelte')], + mode: 'jit', corePlugins: { preflight: false }, theme: {}, plugins: [], diff --git a/jit/tests/variants.test.js b/jit/tests/variants.test.js index 2871b212b0ee..6c51d63f34cd 100644 --- a/jit/tests/variants.test.js +++ b/jit/tests/variants.test.js @@ -4,12 +4,15 @@ const fs = require('fs') const path = require('path') function run(input, config = {}) { - return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) + return postcss(tailwind(config)).process(input, { + from: path.resolve(__filename), + }) } test('variants', () => { let config = { darkMode: 'class', + mode: 'jit', purge: [path.resolve(__dirname, './variants.test.html')], corePlugins: { preflight: false }, theme: {}, diff --git a/src/plugins/animation.js b/src/plugins/animation.js index b3d7d07690e4..2e4201a57628 100644 --- a/src/plugins/animation.js +++ b/src/plugins/animation.js @@ -1,27 +1,62 @@ import _ from 'lodash' -import nameClass from '../util/nameClass' import parseAnimationValue from '../util/parseAnimationValue' +const { nameClass } = require('../../jit/pluginUtils') export default function () { - return function ({ addUtilities, theme, variants, prefix }) { - const prefixName = (name) => prefix(`.${name}`).slice(1) - const keyframesConfig = theme('keyframes') - const keyframesStyles = _.mapKeys( - keyframesConfig, - (_keyframes, name) => `@keyframes ${prefixName(name)}` - ) + return function ({ config, matchUtilities, addUtilities, theme, variants, prefix }) { + if (config('mode') === 'jit') { + let keyframes = Object.fromEntries( + Object.entries(theme('keyframes')).map(([key, value]) => { + return [ + key, + [ + { + [`@keyframes ${key}`]: value, + }, + { respectVariants: false }, + ], + ] + }) + ) - addUtilities(keyframesStyles, { respectImportant: false }) + matchUtilities({ + animate: [ + (modifier, { theme }) => { + let value = theme.animation[modifier] - const animationConfig = theme('animation') - const utilities = _.mapValues( - _.mapKeys(animationConfig, (_animation, suffix) => nameClass('animate', suffix)), - (animation) => { - const { name } = parseAnimationValue(animation) - if (name === undefined || keyframesConfig[name] === undefined) return { animation } - return { animation: animation.replace(name, prefixName(name)) } - } - ) - addUtilities(utilities, variants('animation')) + if (value === undefined) { + return [] + } + + let { name: animationName } = parseAnimationValue(value) + + return [ + keyframes[animationName], + { [nameClass('animate', modifier)]: { animation: value } }, + ].filter(Boolean) + }, + ], + }) + } else { + const prefixName = (name) => prefix(`.${name}`).slice(1) + const keyframesConfig = theme('keyframes') + const keyframesStyles = _.mapKeys( + keyframesConfig, + (_keyframes, name) => `@keyframes ${prefixName(name)}` + ) + + addUtilities(keyframesStyles, { respectImportant: false }) + + const animationConfig = theme('animation') + const utilities = _.mapValues( + _.mapKeys(animationConfig, (_animation, suffix) => nameClass('animate', suffix)), + (animation) => { + const { name } = parseAnimationValue(animation) + if (name === undefined || keyframesConfig[name] === undefined) return { animation } + return { animation: animation.replace(name, prefixName(name)) } + } + ) + addUtilities(utilities, variants('animation')) + } } } diff --git a/src/plugins/cursor.js b/src/plugins/cursor.js index bfd32d135197..42096c659ddc 100644 --- a/src/plugins/cursor.js +++ b/src/plugins/cursor.js @@ -1,19 +1,5 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' +import createUtilityPlugin from '../util/createUtilityPlugin' export default function () { - return function ({ addUtilities, theme, variants }) { - const utilities = _.fromPairs( - _.map(theme('cursor'), (value, modifier) => { - return [ - nameClass('cursor', modifier), - { - cursor: value, - }, - ] - }) - ) - - addUtilities(utilities, variants('cursor')) - } + return createUtilityPlugin('cursor') } diff --git a/src/plugins/divideWidth.js b/src/plugins/divideWidth.js index 7c3eb5cf785f..b6df3c909372 100644 --- a/src/plugins/divideWidth.js +++ b/src/plugins/divideWidth.js @@ -1,42 +1,90 @@ import _ from 'lodash' -import nameClass from '../util/nameClass' +const { nameClass, asLength } = require('../../jit/pluginUtils') export default function () { - return function ({ addUtilities, theme, variants }) { - const generators = [ - (_size, modifier) => { - const size = _size === '0' ? '0px' : _size - return { - [`${nameClass('divide-y', modifier)} > :not([hidden]) ~ :not([hidden])`]: { - '--tw-divide-y-reverse': '0', - 'border-top-width': `calc(${size} * calc(1 - var(--tw-divide-y-reverse)))`, - 'border-bottom-width': `calc(${size} * var(--tw-divide-y-reverse))`, - }, - [`${nameClass('divide-x', modifier)} > :not([hidden]) ~ :not([hidden])`]: { - '--tw-divide-x-reverse': '0', - 'border-right-width': `calc(${size} * var(--tw-divide-x-reverse))`, - 'border-left-width': `calc(${size} * calc(1 - var(--tw-divide-x-reverse)))`, - }, - } - }, - ] - - const utilities = _.flatMap(generators, (generator) => { - return [ - ..._.flatMap(theme('divideWidth'), (value, modifier) => { - return generator(value, modifier) - }), - { - '.divide-y-reverse > :not([hidden]) ~ :not([hidden])': { - '--tw-divide-y-reverse': '1', - }, - '.divide-x-reverse > :not([hidden]) ~ :not([hidden])': { - '--tw-divide-x-reverse': '1', - }, + return function ({ config, matchUtilities, addUtilities, theme, variants }) { + if (config('mode') === 'jit') { + matchUtilities({ + 'divide-x': (modifier, { theme }) => { + let value = asLength(modifier, theme['divideWidth']) + + if (value === undefined) { + return [] + } + + value = value === '0' ? '0px' : value + + return { + [`${nameClass('divide-x', modifier)} > :not([hidden]) ~ :not([hidden])`]: { + '--tw-divide-x-reverse': '0', + 'border-right-width': `calc(${value} * var(--tw-divide-x-reverse))`, + 'border-left-width': `calc(${value} * calc(1 - var(--tw-divide-x-reverse)))`, + }, + } + }, + 'divide-y': (modifier, { theme }) => { + let value = asLength(modifier, theme['divideWidth']) + + if (value === undefined) { + return [] + } + + value = value === '0' ? '0px' : value + + return { + [`${nameClass('divide-y', modifier)} > :not([hidden]) ~ :not([hidden])`]: { + '--tw-divide-y-reverse': '0', + 'border-top-width': `calc(${value} * calc(1 - var(--tw-divide-y-reverse)))`, + 'border-bottom-width': `calc(${value} * var(--tw-divide-y-reverse))`, + }, + } + }, + }) + + addUtilities({ + '.divide-y-reverse > :not([hidden]) ~ :not([hidden])': { + '--tw-divide-y-reverse': '1', + }, + '.divide-x-reverse > :not([hidden]) ~ :not([hidden])': { + '--tw-divide-x-reverse': '1', + }, + }) + } else { + const generators = [ + (_size, modifier) => { + const size = _size === '0' ? '0px' : _size + return { + [`${nameClass('divide-y', modifier)} > :not([hidden]) ~ :not([hidden])`]: { + '--tw-divide-y-reverse': '0', + 'border-top-width': `calc(${size} * calc(1 - var(--tw-divide-y-reverse)))`, + 'border-bottom-width': `calc(${size} * var(--tw-divide-y-reverse))`, + }, + [`${nameClass('divide-x', modifier)} > :not([hidden]) ~ :not([hidden])`]: { + '--tw-divide-x-reverse': '0', + 'border-right-width': `calc(${size} * var(--tw-divide-x-reverse))`, + 'border-left-width': `calc(${size} * calc(1 - var(--tw-divide-x-reverse)))`, + }, + } }, ] - }) - addUtilities(utilities, variants('divideWidth')) + const utilities = _.flatMap(generators, (generator) => { + return [ + ..._.flatMap(theme('divideWidth'), (value, modifier) => { + return generator(value, modifier) + }), + { + '.divide-y-reverse > :not([hidden]) ~ :not([hidden])': { + '--tw-divide-y-reverse': '1', + }, + '.divide-x-reverse > :not([hidden]) ~ :not([hidden])': { + '--tw-divide-x-reverse': '1', + }, + }, + ] + }) + + addUtilities(utilities, variants('divideWidth')) + } } } diff --git a/src/plugins/flex.js b/src/plugins/flex.js index 6f51d9ad97d9..f833f5013043 100644 --- a/src/plugins/flex.js +++ b/src/plugins/flex.js @@ -1,19 +1,5 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' +import createUtilityPlugin from '../util/createUtilityPlugin' export default function () { - return function ({ addUtilities, theme, variants }) { - const utilities = _.fromPairs( - _.map(theme('flex'), (value, modifier) => { - return [ - nameClass('flex', modifier), - { - flex: value, - }, - ] - }) - ) - - addUtilities(utilities, variants('flex')) - } + return createUtilityPlugin('flex') } diff --git a/src/plugins/flexGrow.js b/src/plugins/flexGrow.js index d4d8a7366cae..9c82903a220b 100644 --- a/src/plugins/flexGrow.js +++ b/src/plugins/flexGrow.js @@ -1,20 +1,5 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' +import createUtilityPlugin from '../util/createUtilityPlugin' export default function () { - return function ({ addUtilities, theme, variants }) { - addUtilities( - _.fromPairs( - _.map(theme('flexGrow'), (value, modifier) => { - return [ - nameClass('flex-grow', modifier), - { - 'flex-grow': value, - }, - ] - }) - ), - variants('flexGrow') - ) - } + return createUtilityPlugin('flexGrow', [['flex-grow', ['flex-grow']]]) } diff --git a/src/plugins/flexShrink.js b/src/plugins/flexShrink.js index 842a2fd80006..c9be406ea62a 100644 --- a/src/plugins/flexShrink.js +++ b/src/plugins/flexShrink.js @@ -1,20 +1,5 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' +import createUtilityPlugin from '../util/createUtilityPlugin' export default function () { - return function ({ addUtilities, theme, variants }) { - addUtilities( - _.fromPairs( - _.map(theme('flexShrink'), (value, modifier) => { - return [ - nameClass('flex-shrink', modifier), - { - 'flex-shrink': value, - }, - ] - }) - ), - variants('flexShrink') - ) - } + return createUtilityPlugin('flexShrink', [['flex-shrink', ['flex-shrink']]]) } diff --git a/src/plugins/gap.js b/src/plugins/gap.js index 452aaee91185..0056faa4c1ae 100644 --- a/src/plugins/gap.js +++ b/src/plugins/gap.js @@ -3,7 +3,9 @@ import createUtilityPlugin from '../util/createUtilityPlugin' export default function () { return createUtilityPlugin('gap', [ ['gap', ['gap']], - ['gap-x', ['columnGap']], - ['gap-y', ['rowGap']], + [ + ['gap-x', ['columnGap']], + ['gap-y', ['rowGap']], + ], ]) } diff --git a/src/plugins/gridTemplateColumns.js b/src/plugins/gridTemplateColumns.js index c2c620f4dfbc..eb2f1640cc98 100644 --- a/src/plugins/gridTemplateColumns.js +++ b/src/plugins/gridTemplateColumns.js @@ -1,5 +1,8 @@ +import { asList } from '../../jit/pluginUtils' import createUtilityPlugin from '../util/createUtilityPlugin' export default function () { - return createUtilityPlugin('gridTemplateColumns', [['grid-cols', ['gridTemplateColumns']]]) + return createUtilityPlugin('gridTemplateColumns', [['grid-cols', ['gridTemplateColumns']]], { + resolveArbitraryValue: asList, + }) } diff --git a/src/plugins/gridTemplateRows.js b/src/plugins/gridTemplateRows.js index eaf7376bc84d..dcba0f13f9e6 100644 --- a/src/plugins/gridTemplateRows.js +++ b/src/plugins/gridTemplateRows.js @@ -1,5 +1,8 @@ +import { asList } from '../../jit/pluginUtils' import createUtilityPlugin from '../util/createUtilityPlugin' export default function () { - return createUtilityPlugin('gridTemplateRows', [['grid-rows', ['gridTemplateRows']]]) + return createUtilityPlugin('gridTemplateRows', [['grid-rows', ['gridTemplateRows']]], { + resolveArbitraryValue: asList, + }) } diff --git a/src/plugins/inset.js b/src/plugins/inset.js index d64873fcd1fc..5edd7ece0220 100644 --- a/src/plugins/inset.js +++ b/src/plugins/inset.js @@ -1,39 +1,122 @@ import _ from 'lodash' -import nameClass from '../util/nameClass' +const { asValue, nameClass } = require('../../jit/pluginUtils') export default function () { - return function ({ addUtilities, theme, variants }) { - const generators = [ - (size, modifier) => ({ - [nameClass('inset', modifier)]: { - top: `${size}`, - right: `${size}`, - bottom: `${size}`, - left: `${size}`, + return function ({ config, matchUtilities, addUtilities, theme, variants }) { + if (config('mode') === 'jit') { + matchUtilities({ + inset: (modifier, { theme }) => { + let value = asValue(modifier, theme['inset']) + + if (value === undefined) { + return [] + } + + return { + [nameClass('inset', modifier)]: { + top: value, + right: value, + bottom: value, + left: value, + }, + } + }, + }) + matchUtilities({ + 'inset-x': (modifier, { theme }) => { + let value = asValue(modifier, theme['inset']) + + if (value === undefined) { + return [] + } + + return { + [nameClass('inset-x', modifier)]: { left: value, right: value }, + } + }, + 'inset-y': (modifier, { theme }) => { + let value = asValue(modifier, theme['inset']) + + if (value === undefined) { + return [] + } + + return { + [nameClass('inset-y', modifier)]: { top: value, bottom: value }, + } + }, + }) + matchUtilities({ + top: (modifier, { theme }) => { + let value = asValue(modifier, theme['inset']) + + if (value === undefined) { + return [] + } + + return { [nameClass('top', modifier)]: { top: value } } }, - }), - (size, modifier) => ({ - [nameClass('inset-y', modifier)]: { - top: `${size}`, - bottom: `${size}`, + right: (modifier, { theme }) => { + let value = asValue(modifier, theme['inset']) + + if (value === undefined) { + return [] + } + + return { [nameClass('right', modifier)]: { right: value } } + }, + bottom: (modifier, { theme }) => { + let value = asValue(modifier, theme['inset']) + + if (value === undefined) { + return [] + } + + return { [nameClass('bottom', modifier)]: { bottom: value } } }, - [nameClass('inset-x', modifier)]: { - right: `${size}`, - left: `${size}`, + left: (modifier, { theme }) => { + let value = asValue(modifier, theme['inset']) + + if (value === undefined) { + return [] + } + + return { [nameClass('left', modifier)]: { left: value } } }, - }), - (size, modifier) => ({ - [nameClass('top', modifier)]: { top: `${size}` }, - [nameClass('right', modifier)]: { right: `${size}` }, - [nameClass('bottom', modifier)]: { bottom: `${size}` }, - [nameClass('left', modifier)]: { left: `${size}` }, - }), - ] - - const utilities = _.flatMap(generators, (generator) => { - return _.flatMap(theme('inset'), generator) - }) - - addUtilities(utilities, variants('inset')) + }) + } else { + const generators = [ + (size, modifier) => ({ + [nameClass('inset', modifier)]: { + top: `${size}`, + right: `${size}`, + bottom: `${size}`, + left: `${size}`, + }, + }), + (size, modifier) => ({ + [nameClass('inset-y', modifier)]: { + top: `${size}`, + bottom: `${size}`, + }, + [nameClass('inset-x', modifier)]: { + right: `${size}`, + left: `${size}`, + }, + }), + (size, modifier) => ({ + [nameClass('top', modifier)]: { top: `${size}` }, + [nameClass('right', modifier)]: { right: `${size}` }, + [nameClass('bottom', modifier)]: { bottom: `${size}` }, + [nameClass('left', modifier)]: { left: `${size}` }, + }), + ] + + const utilities = _.flatMap(generators, (generator) => { + return _.flatMap(theme('inset'), generator) + }) + + addUtilities(utilities, variants('inset')) + } } } diff --git a/src/plugins/margin.js b/src/plugins/margin.js index d558c76f827b..a10b03e61783 100644 --- a/src/plugins/margin.js +++ b/src/plugins/margin.js @@ -1,34 +1,17 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' +import createUtilityPlugin from '../util/createUtilityPlugin' export default function () { - return function ({ addUtilities, theme, variants }) { - const generators = [ - (size, modifier) => ({ - [nameClass('m', modifier)]: { margin: `${size}` }, - }), - (size, modifier) => ({ - [nameClass('my', modifier)]: { - 'margin-top': `${size}`, - 'margin-bottom': `${size}`, - }, - [nameClass('mx', modifier)]: { - 'margin-left': `${size}`, - 'margin-right': `${size}`, - }, - }), - (size, modifier) => ({ - [nameClass('mt', modifier)]: { 'margin-top': `${size}` }, - [nameClass('mr', modifier)]: { 'margin-right': `${size}` }, - [nameClass('mb', modifier)]: { 'margin-bottom': `${size}` }, - [nameClass('ml', modifier)]: { 'margin-left': `${size}` }, - }), - ] - - const utilities = _.flatMap(generators, (generator) => { - return _.flatMap(theme('margin'), generator) - }) - - addUtilities(utilities, variants('margin')) - } + return createUtilityPlugin('margin', [ + ['m', ['margin']], + [ + ['mx', ['margin-left', 'margin-right']], + ['my', ['margin-top', 'margin-bottom']], + ], + [ + ['mt', ['margin-top']], + ['mr', ['margin-right']], + ['mb', ['margin-bottom']], + ['ml', ['margin-left']], + ], + ]) } diff --git a/src/plugins/order.js b/src/plugins/order.js index a534e4ee4cf5..a75b20dc8901 100644 --- a/src/plugins/order.js +++ b/src/plugins/order.js @@ -1,5 +1,5 @@ import createUtilityPlugin from '../util/createUtilityPlugin' export default function () { - return createUtilityPlugin('order', [['order', ['order']]]) + return createUtilityPlugin('order') } diff --git a/src/plugins/scale.js b/src/plugins/scale.js index dcf940dfc173..9c1408fd7698 100644 --- a/src/plugins/scale.js +++ b/src/plugins/scale.js @@ -3,7 +3,9 @@ import createUtilityPlugin from '../util/createUtilityPlugin' export default function () { return createUtilityPlugin('scale', [ ['scale', ['--tw-scale-x', '--tw-scale-y']], - ['scale-x', ['--tw-scale-x']], - ['scale-y', ['--tw-scale-y']], + [ + ['scale-x', ['--tw-scale-x']], + ['scale-y', ['--tw-scale-y']], + ], ]) } diff --git a/src/plugins/skew.js b/src/plugins/skew.js index 921091f9fbac..271a04f9c811 100644 --- a/src/plugins/skew.js +++ b/src/plugins/skew.js @@ -2,7 +2,9 @@ import createUtilityPlugin from '../util/createUtilityPlugin' export default function () { return createUtilityPlugin('skew', [ - ['skew-x', ['--tw-skew-x']], - ['skew-y', ['--tw-skew-y']], + [ + ['skew-x', ['--tw-skew-x']], + ['skew-y', ['--tw-skew-y']], + ], ]) } diff --git a/src/plugins/space.js b/src/plugins/space.js index 66a326af0304..9356e11dc064 100644 --- a/src/plugins/space.js +++ b/src/plugins/space.js @@ -1,40 +1,88 @@ import _ from 'lodash' -import nameClass from '../util/nameClass' +const { nameClass, asValue } = require('../../jit/pluginUtils') export default function () { - return function ({ addUtilities, theme, variants }) { - const generators = [ - (_size, modifier) => { - const size = _size === '0' ? '0px' : _size - return { - [`${nameClass('space-y', modifier)} > :not([hidden]) ~ :not([hidden])`]: { - '--tw-space-y-reverse': '0', - 'margin-top': `calc(${size} * calc(1 - var(--tw-space-y-reverse)))`, - 'margin-bottom': `calc(${size} * var(--tw-space-y-reverse))`, - }, - [`${nameClass('space-x', modifier)} > :not([hidden]) ~ :not([hidden])`]: { - '--tw-space-x-reverse': '0', - 'margin-right': `calc(${size} * var(--tw-space-x-reverse))`, - 'margin-left': `calc(${size} * calc(1 - var(--tw-space-x-reverse)))`, - }, - } - }, - ] - - const utilities = _.flatMap(generators, (generator) => { - return [ - ..._.flatMap(theme('space'), generator), - { - '.space-y-reverse > :not([hidden]) ~ :not([hidden])': { - '--tw-space-y-reverse': '1', - }, - '.space-x-reverse > :not([hidden]) ~ :not([hidden])': { - '--tw-space-x-reverse': '1', - }, + return function ({ config, matchUtilities, addUtilities, theme, variants }) { + if (config('mode') === 'jit') { + matchUtilities({ + 'space-x': (modifier, { theme }) => { + let value = asValue(modifier, theme['space']) + + if (value === undefined) { + return [] + } + + value = value === '0' ? '0px' : value + + return { + [`${nameClass('space-x', modifier)} > :not([hidden]) ~ :not([hidden])`]: { + '--tw-space-x-reverse': '0', + 'margin-right': `calc(${value} * var(--tw-space-x-reverse))`, + 'margin-left': `calc(${value} * calc(1 - var(--tw-space-x-reverse)))`, + }, + } + }, + 'space-y': (modifier, { theme }) => { + let value = asValue(modifier, theme['space']) + + if (value === undefined) { + return [] + } + + value = value === '0' ? '0px' : value + + return { + [`${nameClass('space-y', modifier)} > :not([hidden]) ~ :not([hidden])`]: { + '--tw-space-y-reverse': '0', + 'margin-top': `calc(${value} * calc(1 - var(--tw-space-y-reverse)))`, + 'margin-bottom': `calc(${value} * var(--tw-space-y-reverse))`, + }, + } + }, + }) + + addUtilities({ + '.space-y-reverse > :not([hidden]) ~ :not([hidden])': { + '--tw-space-y-reverse': '1', + }, + '.space-x-reverse > :not([hidden]) ~ :not([hidden])': { + '--tw-space-x-reverse': '1', + }, + }) + } else { + const generators = [ + (_size, modifier) => { + const size = _size === '0' ? '0px' : _size + return { + [`${nameClass('space-y', modifier)} > :not([hidden]) ~ :not([hidden])`]: { + '--tw-space-y-reverse': '0', + 'margin-top': `calc(${size} * calc(1 - var(--tw-space-y-reverse)))`, + 'margin-bottom': `calc(${size} * var(--tw-space-y-reverse))`, + }, + [`${nameClass('space-x', modifier)} > :not([hidden]) ~ :not([hidden])`]: { + '--tw-space-x-reverse': '0', + 'margin-right': `calc(${size} * var(--tw-space-x-reverse))`, + 'margin-left': `calc(${size} * calc(1 - var(--tw-space-x-reverse)))`, + }, + } }, ] - }) - addUtilities(utilities, variants('space')) + const utilities = _.flatMap(generators, (generator) => { + return [ + ..._.flatMap(theme('space'), generator), + { + '.space-y-reverse > :not([hidden]) ~ :not([hidden])': { + '--tw-space-y-reverse': '1', + }, + '.space-x-reverse > :not([hidden]) ~ :not([hidden])': { + '--tw-space-x-reverse': '1', + }, + }, + ] + }) + + addUtilities(utilities, variants('space')) + } } } diff --git a/src/plugins/translate.js b/src/plugins/translate.js index dd092f8f54a6..7db108727d8c 100644 --- a/src/plugins/translate.js +++ b/src/plugins/translate.js @@ -2,7 +2,9 @@ import createUtilityPlugin from '../util/createUtilityPlugin' export default function () { return createUtilityPlugin('translate', [ - ['translate-x', ['--tw-translate-x']], - ['translate-y', ['--tw-translate-y']], + [ + ['translate-x', ['--tw-translate-x']], + ['translate-y', ['--tw-translate-y']], + ], ]) } diff --git a/src/util/createUtilityPlugin.js b/src/util/createUtilityPlugin.js index da6c5eae5ee7..2e4a49a97617 100644 --- a/src/util/createUtilityPlugin.js +++ b/src/util/createUtilityPlugin.js @@ -1,31 +1,65 @@ import fromPairs from 'lodash/fromPairs' import toPairs from 'lodash/toPairs' import castArray from 'lodash/castArray' -import nameClass from './nameClass' import transformThemeValue from './transformThemeValue' +const { asValue, nameClass } = require('../../jit/pluginUtils') + export default function createUtilityPlugin( themeKey, - utilityVariations, - { filterDefault = false } = {} + utilityVariations = [[themeKey, [themeKey]]], + { filterDefault = false, resolveArbitraryValue = asValue } = {} ) { const transformValue = transformThemeValue(themeKey) - return function ({ addUtilities, variants, theme }) { - const pairs = toPairs(theme(themeKey)) - const utilities = utilityVariations.map(([classPrefix, properties]) => { - return fromPairs( - pairs - .filter(([key]) => { - return filterDefault ? key !== 'DEFAULT' : true - }) - .map(([key, value]) => { - return [ - nameClass(classPrefix, key), - fromPairs(castArray(properties).map((property) => [property, transformValue(value)])), - ] - }) - ) - }) - return addUtilities(utilities, variants(themeKey)) + return function ({ config, matchUtilities, addUtilities, variants, theme }) { + if (config('mode') === 'jit') { + for (let utilityVariation of utilityVariations) { + let group = Array.isArray(utilityVariation[0]) ? utilityVariation : [utilityVariation] + + matchUtilities( + group.reduce((obj, [classPrefix, properties]) => { + return Object.assign(obj, { + [classPrefix]: (modifier, { theme }) => { + let value = resolveArbitraryValue(modifier, theme[themeKey]) + + if (value === undefined) { + return [] + } + + return { + [nameClass(classPrefix, modifier)]: properties.reduce( + (obj, name) => Object.assign(obj, { [name]: value }), + {} + ), + } + }, + }) + }, {}) + ) + } + } else { + const pairs = toPairs(theme(themeKey)) + const utilities = utilityVariations.flatMap((utilityVariation) => { + let group = Array.isArray(utilityVariation[0]) ? utilityVariation : [utilityVariation] + return group.map(([classPrefix, properties]) => { + return fromPairs( + pairs + .filter(([key]) => { + return filterDefault ? key !== 'DEFAULT' : true + }) + .map(([key, value]) => { + return [ + nameClass(classPrefix, key), + fromPairs( + castArray(properties).map((property) => [property, transformValue(value)]) + ), + ] + }) + ) + }) + }) + + return addUtilities(utilities, variants(themeKey)) + } } }