@coreui/coreui 4.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (203) hide show
  1. package/LICENSE +22 -0
  2. package/README.md +183 -0
  3. package/dist/css/coreui-grid.css +5004 -0
  4. package/dist/css/coreui-grid.css.map +1 -0
  5. package/dist/css/coreui-grid.min.css +8 -0
  6. package/dist/css/coreui-grid.min.css.map +1 -0
  7. package/dist/css/coreui-grid.rtl.css +5011 -0
  8. package/dist/css/coreui-grid.rtl.css.map +1 -0
  9. package/dist/css/coreui-grid.rtl.min.css +14 -0
  10. package/dist/css/coreui-grid.rtl.min.css.map +1 -0
  11. package/dist/css/coreui-reboot.css +440 -0
  12. package/dist/css/coreui-reboot.css.map +1 -0
  13. package/dist/css/coreui-reboot.min.css +8 -0
  14. package/dist/css/coreui-reboot.min.css.map +1 -0
  15. package/dist/css/coreui-reboot.rtl.css +441 -0
  16. package/dist/css/coreui-reboot.rtl.css.map +1 -0
  17. package/dist/css/coreui-reboot.rtl.min.css +14 -0
  18. package/dist/css/coreui-reboot.rtl.min.css.map +1 -0
  19. package/dist/css/coreui-utilities.css +5030 -0
  20. package/dist/css/coreui-utilities.css.map +1 -0
  21. package/dist/css/coreui-utilities.min.css +8 -0
  22. package/dist/css/coreui-utilities.min.css.map +1 -0
  23. package/dist/css/coreui-utilities.rtl.css +5024 -0
  24. package/dist/css/coreui-utilities.rtl.css.map +1 -0
  25. package/dist/css/coreui-utilities.rtl.min.css +14 -0
  26. package/dist/css/coreui-utilities.rtl.min.css.map +1 -0
  27. package/dist/css/coreui.css +12152 -0
  28. package/dist/css/coreui.css.map +1 -0
  29. package/dist/css/coreui.min.css +8 -0
  30. package/dist/css/coreui.min.css.map +1 -0
  31. package/dist/css/coreui.rtl.css +12041 -0
  32. package/dist/css/coreui.rtl.css.map +1 -0
  33. package/dist/css/coreui.rtl.min.css +14 -0
  34. package/dist/css/coreui.rtl.min.css.map +1 -0
  35. package/dist/js/coreui.bundle.js +7437 -0
  36. package/dist/js/coreui.bundle.js.map +1 -0
  37. package/dist/js/coreui.bundle.min.js +7 -0
  38. package/dist/js/coreui.bundle.min.js.map +1 -0
  39. package/dist/js/coreui.esm.js +5622 -0
  40. package/dist/js/coreui.esm.js.map +1 -0
  41. package/dist/js/coreui.esm.min.js +7 -0
  42. package/dist/js/coreui.esm.min.js.map +1 -0
  43. package/dist/js/coreui.js +5673 -0
  44. package/dist/js/coreui.js.map +1 -0
  45. package/dist/js/coreui.min.js +7 -0
  46. package/dist/js/coreui.min.js.map +1 -0
  47. package/js/dist/alert.js +208 -0
  48. package/js/dist/alert.js.map +1 -0
  49. package/js/dist/base-component.js +181 -0
  50. package/js/dist/base-component.js.map +1 -0
  51. package/js/dist/button.js +142 -0
  52. package/js/dist/button.js.map +1 -0
  53. package/js/dist/carousel.js +724 -0
  54. package/js/dist/carousel.js.map +1 -0
  55. package/js/dist/collapse.js +515 -0
  56. package/js/dist/collapse.js.map +1 -0
  57. package/js/dist/dom/data.js +72 -0
  58. package/js/dist/dom/data.js.map +1 -0
  59. package/js/dist/dom/event-handler.js +319 -0
  60. package/js/dist/dom/event-handler.js.map +1 -0
  61. package/js/dist/dom/manipulator.js +92 -0
  62. package/js/dist/dom/manipulator.js.map +1 -0
  63. package/js/dist/dom/selector-engine.js +89 -0
  64. package/js/dist/dom/selector-engine.js.map +1 -0
  65. package/js/dist/dropdown.js +700 -0
  66. package/js/dist/dropdown.js.map +1 -0
  67. package/js/dist/modal.js +891 -0
  68. package/js/dist/modal.js.map +1 -0
  69. package/js/dist/offcanvas.js +724 -0
  70. package/js/dist/offcanvas.js.map +1 -0
  71. package/js/dist/popover.js +220 -0
  72. package/js/dist/popover.js.map +1 -0
  73. package/js/dist/scrollspy.js +387 -0
  74. package/js/dist/scrollspy.js.map +1 -0
  75. package/js/dist/tab.js +317 -0
  76. package/js/dist/tab.js.map +1 -0
  77. package/js/dist/toast.js +331 -0
  78. package/js/dist/toast.js.map +1 -0
  79. package/js/dist/tooltip.js +997 -0
  80. package/js/dist/tooltip.js.map +1 -0
  81. package/js/src/alert.js +128 -0
  82. package/js/src/base-component.js +78 -0
  83. package/js/src/button.js +89 -0
  84. package/js/src/carousel.js +589 -0
  85. package/js/src/collapse.js +391 -0
  86. package/js/src/dom/data.js +60 -0
  87. package/js/src/dom/event-handler.js +352 -0
  88. package/js/src/dom/manipulator.js +83 -0
  89. package/js/src/dom/selector-engine.js +78 -0
  90. package/js/src/dropdown.js +517 -0
  91. package/js/src/modal.js +451 -0
  92. package/js/src/navigation.js +298 -0
  93. package/js/src/offcanvas.js +277 -0
  94. package/js/src/popover.js +173 -0
  95. package/js/src/scrollspy.js +298 -0
  96. package/js/src/sidebar.js +347 -0
  97. package/js/src/tab.js +227 -0
  98. package/js/src/toast.js +245 -0
  99. package/js/src/tooltip.js +750 -0
  100. package/js/src/util/backdrop.js +129 -0
  101. package/js/src/util/index.js +327 -0
  102. package/js/src/util/sanitizer.js +130 -0
  103. package/js/src/util/scrollbar.js +97 -0
  104. package/package.json +166 -0
  105. package/scss/_accordion.scss +118 -0
  106. package/scss/_alert.scss +52 -0
  107. package/scss/_avatar.scss +49 -0
  108. package/scss/_badge.scss +38 -0
  109. package/scss/_breadcrumb.scss +33 -0
  110. package/scss/_button-group.scss +139 -0
  111. package/scss/_buttons.scss +143 -0
  112. package/scss/_callout.scss +16 -0
  113. package/scss/_card.scss +215 -0
  114. package/scss/_carousel.scss +231 -0
  115. package/scss/_close.scss +40 -0
  116. package/scss/_containers.scss +41 -0
  117. package/scss/_dropdown.scss +227 -0
  118. package/scss/_footer.scss +25 -0
  119. package/scss/_forms.scss +9 -0
  120. package/scss/_functions.scss +356 -0
  121. package/scss/_grid.scss +56 -0
  122. package/scss/_header.scss +170 -0
  123. package/scss/_helpers.scss +7 -0
  124. package/scss/_icon.scss +32 -0
  125. package/scss/_images.scss +42 -0
  126. package/scss/_list-group.scss +169 -0
  127. package/scss/_mixins.scss +50 -0
  128. package/scss/_modal.scss +219 -0
  129. package/scss/_nav.scss +140 -0
  130. package/scss/_navbar.scss +254 -0
  131. package/scss/_offcanvas.scss +79 -0
  132. package/scss/_pagination.scss +64 -0
  133. package/scss/_popover.scss +158 -0
  134. package/scss/_progress.scss +91 -0
  135. package/scss/_reboot.scss +632 -0
  136. package/scss/_root.scss +25 -0
  137. package/scss/_sidebar.scss +3 -0
  138. package/scss/_spinners.scss +69 -0
  139. package/scss/_subheader.scss +72 -0
  140. package/scss/_tables.scss +166 -0
  141. package/scss/_toasts.scss +52 -0
  142. package/scss/_tooltip.scss +115 -0
  143. package/scss/_transitions.scss +21 -0
  144. package/scss/_type.scss +104 -0
  145. package/scss/_utilities.scss +678 -0
  146. package/scss/_variables.scss +1801 -0
  147. package/scss/coreui-grid.rtl.scss +12 -0
  148. package/scss/coreui-grid.scss +67 -0
  149. package/scss/coreui-reboot.rtl.scss +12 -0
  150. package/scss/coreui-reboot.scss +15 -0
  151. package/scss/coreui-utilities.rtl.scss +12 -0
  152. package/scss/coreui-utilities.scss +19 -0
  153. package/scss/coreui.rtl.scss +12 -0
  154. package/scss/coreui.scss +61 -0
  155. package/scss/forms/_floating-labels.scss +63 -0
  156. package/scss/forms/_form-check.scss +188 -0
  157. package/scss/forms/_form-control.scss +219 -0
  158. package/scss/forms/_form-range.scss +91 -0
  159. package/scss/forms/_form-select.scss +70 -0
  160. package/scss/forms/_form-text.scss +11 -0
  161. package/scss/forms/_input-group.scss +121 -0
  162. package/scss/forms/_labels.scss +36 -0
  163. package/scss/forms/_validation.scss +12 -0
  164. package/scss/helpers/_clearfix.scss +3 -0
  165. package/scss/helpers/_colored-links.scss +12 -0
  166. package/scss/helpers/_position.scss +30 -0
  167. package/scss/helpers/_ratio.scss +26 -0
  168. package/scss/helpers/_stretched-link.scss +15 -0
  169. package/scss/helpers/_text-truncation.scss +7 -0
  170. package/scss/helpers/_visually-hidden.scss +8 -0
  171. package/scss/mixins/_alert.scss +15 -0
  172. package/scss/mixins/_avatar.scss +10 -0
  173. package/scss/mixins/_border-radius.scss +78 -0
  174. package/scss/mixins/_box-shadow.scss +18 -0
  175. package/scss/mixins/_breakpoints.scss +140 -0
  176. package/scss/mixins/_buttons.scss +101 -0
  177. package/scss/mixins/_caret.scss +64 -0
  178. package/scss/mixins/_clearfix.scss +9 -0
  179. package/scss/mixins/_color-scheme.scss +7 -0
  180. package/scss/mixins/_container.scss +9 -0
  181. package/scss/mixins/_css-vars.scss +87 -0
  182. package/scss/mixins/_deprecate.scss +10 -0
  183. package/scss/mixins/_forms.scss +144 -0
  184. package/scss/mixins/_gradients.scss +47 -0
  185. package/scss/mixins/_grid.scss +132 -0
  186. package/scss/mixins/_icon.scss +6 -0
  187. package/scss/mixins/_image.scss +16 -0
  188. package/scss/mixins/_list-group.scss +18 -0
  189. package/scss/mixins/_lists.scss +7 -0
  190. package/scss/mixins/_ltr-rtl.scss +60 -0
  191. package/scss/mixins/_pagination.scss +31 -0
  192. package/scss/mixins/_reset-text.scss +17 -0
  193. package/scss/mixins/_resize.scss +6 -0
  194. package/scss/mixins/_table-variants.scss +16 -0
  195. package/scss/mixins/_text-truncate.scss +8 -0
  196. package/scss/mixins/_transition.scss +26 -0
  197. package/scss/mixins/_utilities.scss +104 -0
  198. package/scss/mixins/_visually-hidden.scss +29 -0
  199. package/scss/sidebar/_sidebar-narrow.scss +106 -0
  200. package/scss/sidebar/_sidebar-nav.scss +165 -0
  201. package/scss/sidebar/_sidebar.scss +261 -0
  202. package/scss/utilities/_api.scss +47 -0
  203. package/scss/vendor/_rfs.scss +354 -0
package/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2011-2021 Twitter, Inc.
4
+ Copyright (c) 2011-2021 The Bootstrap Authors
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ of this software and associated documentation files (the "Software"), to deal
8
+ in the Software without restriction, including without limitation the rights
9
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ copies of the Software, and to permit persons to whom the Software is
11
+ furnished to do so, subject to the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be included in
14
+ all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22
+ THE SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,183 @@
1
+ <p align="center">
2
+ <a href="https://coreui.io/">
3
+ <img src="https://coreui.io/images/brand/coreui-signet.svg" alt="CoreUI logo" width="200">
4
+ </a>
5
+ </p>
6
+
7
+ <h3 align="center">CoreUI</h3>
8
+
9
+ <p align="center">
10
+ Open Source UI Components Library built on top of Bootstrap 5.
11
+ <br>
12
+ <a href="https://coreui.io/docs/4.0/"><strong>Explore CoreUI docs »</strong></a>
13
+ <br>
14
+ <br>
15
+ <a href="https://github.com/coreui/coreui/issues/new?template=bug_report.md">Report bug</a>
16
+ ·
17
+ <a href="https://github.com/coreui/coreui/issues/new?template=feature_request.md">Request feature</a>
18
+ ·
19
+ <a href="https://community.coreui.io/">Community</a>
20
+ ·
21
+ <a href="https://coreui.io/blog/">Blog</a>
22
+ </p>
23
+
24
+
25
+ ## Table of contents
26
+
27
+ - [Quick start](#quick-start)
28
+ - [Status](#status)
29
+ - [What's included](#whats-included)
30
+ - [Bugs and feature requests](#bugs-and-feature-requests)
31
+ - [Documentation](#documentation)
32
+ - [Contributing](#contributing)
33
+ - [Community](#community)
34
+ - [Versioning](#versioning)
35
+ - [Creators](#creators)
36
+ - [Thanks](#thanks)
37
+ - [Copyright and license](#copyright-and-license)
38
+
39
+
40
+ ## Quick start
41
+
42
+ Several quick start options are available:
43
+
44
+ - [Download the latest release](https://github.com/coreui/coreui/archive/v4.0.2.zip)
45
+ - Clone the repo: `git clone https://github.com/coreui/coreui.git`
46
+ - Install with [npm](https://www.npmjs.com/): `npm install @coreui/coreui`
47
+ - Install with [yarn](https://yarnpkg.com/): `yarn add @coreui/coreui`
48
+ - Install with [Composer](https://getcomposer.org/): `composer require coreui/coreui:4.0.2`
49
+
50
+ Read the [Getting started page](https://coreui.io/docs/4.0/getting-started/introduction/) for information on the framework contents, templates and examples, and more.
51
+
52
+
53
+ ## Status
54
+
55
+ [![Build Status](https://github.com/coreui/coreui/workflows/JS%20Tests/badge.svg?branch=main)](https://github.com/coreui/coreui/actions?query=workflow%3AJS+Tests+branch%3Amain)
56
+ [![npm version](https://img.shields.io/npm/v/@coreui/coreui)](https://www.npmjs.com/package/@coreui/coreui)
57
+ [![Packagist Prerelease](https://img.shields.io/packagist/vpre/coreui/coreui)](https://packagist.org/packages/coreui/coreui)
58
+ [![peerDependencies Status](https://img.shields.io/david/peer/coreui/coreui)](https://david-dm.org/coreui/coreui?type=peer)
59
+ [![devDependency Status](https://img.shields.io/david/dev/coreui/coreui)](https://david-dm.org/coreui/coreui?type=dev)
60
+ [![Coverage Status](https://img.shields.io/coveralls/github/coreui/coreui/main)](https://coveralls.io/github/coreui/coreui?branch=main)
61
+ [![CSS gzip size](https://img.badgesize.io/coreui/coreui/main/dist/css/coreui.min.css?compression=gzip&label=CSS%20gzip%20size)](https://github.com/coreui/coreui/blob/main/dist/css/coreui.min.css)
62
+ [![CSS Brotli size](https://img.badgesize.io/coreui/coreui/main/dist/css/coreui.min.css?compression=brotli&label=CSS%20Brotli%20size)](https://github.com/coreui/coreui/blob/main/dist/css/coreui.min.css)
63
+ [![JS gzip size](https://img.badgesize.io/coreui/coreui/main/dist/js/coreui.min.js?compression=gzip&label=JS%20gzip%20size)](https://github.com/coreui/coreui/blob/main/dist/js/coreui.min.js)
64
+ [![JS Brotli size](https://img.badgesize.io/coreui/coreui/main/dist/js/coreui.min.js?compression=brotli&label=JS%20Brotli%20size)](https://github.com/coreui/coreui/blob/main/dist/js/coreui.min.js)
65
+
66
+
67
+ ## What's included
68
+
69
+ Within the download you'll find the following directories and files, logically grouping common assets and providing both compiled and minified variations. You'll see something like this:
70
+
71
+ ```text
72
+ coreui/
73
+ ├── css/
74
+ │ ├── coreui-grid.css
75
+ │ ├── coreui-grid.css.map
76
+ │ ├── coreui-grid.min.css
77
+ │ ├── coreui-grid.min.css.map
78
+ │ ├── coreui-grid.rtl.css
79
+ │ ├── coreui-grid.rtl.css.map
80
+ │ ├── coreui-grid.rtl.min.css
81
+ │ ├── coreui-grid.rtl.min.css.map
82
+ │ ├── coreui-reboot.css
83
+ │ ├── coreui-reboot.css.map
84
+ │ ├── coreui-reboot.min.css
85
+ │ ├── coreui-reboot.min.css.map
86
+ │ ├── coreui-reboot.rtl.css
87
+ │ ├── coreui-reboot.rtl.css.map
88
+ │ ├── coreui-reboot.rtl.min.css
89
+ │ ├── coreui-reboot.rtl.min.css.map
90
+ │ ├── coreui-utilities.css
91
+ │ ├── coreui-utilities.css.map
92
+ │ ├── coreui-utilities.min.css
93
+ │ ├── coreui-utilities.min.css.map
94
+ │ ├── coreui-utilities.rtl.css
95
+ │ ├── coreui-utilities.rtl.css.map
96
+ │ ├── coreui-utilities.rtl.min.css
97
+ │ ├── coreui-utilities.rtl.min.css.map
98
+ │ ├── coreui.css
99
+ │ ├── coreui.css.map
100
+ │ ├── coreui.min.css
101
+ │ ├── coreui.min.css.map
102
+ │ ├── coreui.rtl.css
103
+ │ ├── coreui.rtl.css.map
104
+ │ ├── coreui.rtl.min.css
105
+ │ └── coreui.rtl.min.css.map
106
+ └── js/
107
+ ├── coreui.bundle.js
108
+ ├── coreui.bundle.js.map
109
+ ├── coreui.bundle.min.js
110
+ ├── coreui.bundle.min.js.map
111
+ ├── coreui.esm.js
112
+ ├── coreui.esm.js.map
113
+ ├── coreui.esm.min.js
114
+ ├── coreui.esm.min.js.map
115
+ ├── coreui.js
116
+ ├── coreui.js.map
117
+ ├── coreui.min.js
118
+ └── coreui.min.js.map
119
+ ```
120
+
121
+ We provide compiled CSS and JS (`coreui.*`), as well as compiled and minified CSS and JS (`coreui.min.*`). [source maps](https://developers.google.com/web/tools/chrome-devtools/javascript/source-maps) (`coreui.*.map`) are available for use with certain browsers' developer tools. Bundled JS files (`coreui.bundle.js` and minified `coreui.bundle.min.js`) include [Popper](https://popper.js.org/).
122
+
123
+
124
+ ## Bugs and feature requests
125
+
126
+ Have a bug or a feature request? Please first read the [issue guidelines](https://github.com/coreui/coreui/blob/main/.github/CONTRIBUTING.md#using-the-issue-tracker) and search for existing and closed issues. If your problem or idea is not addressed yet, [please open a new issue](https://github.com/coreui/coreui/issues/new).
127
+
128
+ ## Documentation
129
+
130
+ The documentation for the CoreUI & CoreUI PRO is hosted at our website [CoreUI](https://coreui.io/)
131
+
132
+ ### Running documentation locally
133
+
134
+ 1. Run `npm install` to install the Node.js dependencies, including Hugo (the site builder).
135
+ 2. Run `npm run test` (or a specific npm script) to rebuild distributed CSS and JavaScript files, as well as our docs assets.
136
+ 3. From the root `/coreui` directory, run `npm run docs-serve` in the command line.
137
+ 4. Open `http://localhost:9001/` in your browser, and voilà.
138
+
139
+ Learn more about using Hugo by reading its [documentation](https://gohugo.io/documentation/).
140
+
141
+ ### Documentation for previous releases
142
+
143
+ ## Contributing
144
+
145
+ Please read through our [contributing guidelines](https://github.com/coreui/coreui/blob/main/.github/CONTRIBUTING.md). Included are directions for opening issues, coding standards, and notes on development.
146
+
147
+ Editor preferences are available in the [editor config](https://github.com/coreui/coreui/blob/main/.editorconfig) for easy use in common text editors. Read more and download plugins at <https://editorconfig.org/>.
148
+
149
+
150
+ ## Community
151
+
152
+ Stay up to date on the development of CoreUI and reach out to the community with these helpful resources.
153
+
154
+ - Read and subscribe to [The Official CoreUI Blog](https://blog.coreui.io/).
155
+ - Join [the official Community](https://community.coreui.io/).
156
+
157
+ You can also follow [@core_ui on Twitter](https://twitter.com/core_ui).
158
+
159
+ ## Versioning
160
+
161
+ For transparency into our release cycle and in striving to maintain backward compatibility, CoreUI is maintained under [the Semantic Versioning guidelines](http://semver.org/).
162
+
163
+ See [the Releases section of our project](https://github.com/coreui/coreui/releases) for changelogs for each release version.
164
+
165
+
166
+ ## Creators
167
+
168
+ **Łukasz Holeczek**
169
+
170
+ * <https://twitter.com/lukaszholeczek>
171
+ * <https://github.com/mrholek>
172
+
173
+ **Andrzej Kopański**
174
+
175
+ * <https://github.com/xidedix>
176
+
177
+
178
+ ## Thanks
179
+ CoreUI is designed as the extension of [Bootstrap](https://getbootstrap.com). Special thanks for [Bootstrap team](https://getbootstrap.com/docs/5.0/about/team/) and [Bootstrap's contributors](https://github.com/twbs/bootstrap/graphs/contributors).
180
+
181
+ ## Copyright and license
182
+
183
+ Copyright 2021 creativeLabs Łukasz Holeczek. Code released under the [MIT License](https://github.com/coreui/coreui/blob/main/LICENSE). Docs released under [Creative Commons](https://creativecommons.org/licenses/by/3.0/).
@@ -0,0 +1,5004 @@
1
+ @charset "UTF-8";
2
+ /*!
3
+ * CoreUI - HTML, CSS, and JavaScript UI Components Library
4
+ * @version v4.0.2
5
+ * @link https://coreui.io/
6
+ * Copyright (c) 2021 creativeLabs Łukasz Holeczek
7
+ * License MIT (https://coreui.io/license/)
8
+ */
9
+ .container,
10
+ .container-fluid,
11
+ .container-xxl,
12
+ .container-xl,
13
+ .container-lg,
14
+ .container-md,
15
+ .container-sm {
16
+ width: 100%;
17
+ padding-right: var(--cui-gutter-x, 0.75rem);
18
+ padding-left: var(--cui-gutter-x, 0.75rem);
19
+ margin-right: auto;
20
+ margin-left: auto;
21
+ }
22
+
23
+ @media (min-width: 576px) {
24
+ .container-sm, .container {
25
+ max-width: 540px;
26
+ }
27
+ }
28
+ @media (min-width: 768px) {
29
+ .container-md, .container-sm, .container {
30
+ max-width: 720px;
31
+ }
32
+ }
33
+ @media (min-width: 992px) {
34
+ .container-lg, .container-md, .container-sm, .container {
35
+ max-width: 960px;
36
+ }
37
+ }
38
+ @media (min-width: 1200px) {
39
+ .container-xl, .container-lg, .container-md, .container-sm, .container {
40
+ max-width: 1140px;
41
+ }
42
+ }
43
+ @media (min-width: 1400px) {
44
+ .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
45
+ max-width: 1320px;
46
+ }
47
+ }
48
+ .row {
49
+ --cui-gutter-x: 1.5rem;
50
+ --cui-gutter-y: 0;
51
+ display: flex;
52
+ flex-wrap: wrap;
53
+ margin-top: calc(var(--cui-gutter-y) * -1);
54
+ margin-right: calc(var(--cui-gutter-x) * -.5);
55
+ margin-left: calc(var(--cui-gutter-x) * -.5);
56
+ }
57
+ .row > * {
58
+ box-sizing: border-box;
59
+ flex-shrink: 0;
60
+ width: 100%;
61
+ max-width: 100%;
62
+ padding-right: calc(var(--cui-gutter-x) * .5);
63
+ padding-left: calc(var(--cui-gutter-x) * .5);
64
+ margin-top: var(--cui-gutter-y);
65
+ }
66
+
67
+ .col {
68
+ flex: 1 0 0%;
69
+ }
70
+
71
+ .row-cols-auto > * {
72
+ flex: 0 0 auto;
73
+ width: auto;
74
+ }
75
+
76
+ .row-cols-1 > * {
77
+ flex: 0 0 auto;
78
+ width: 100%;
79
+ }
80
+
81
+ .row-cols-2 > * {
82
+ flex: 0 0 auto;
83
+ width: 50%;
84
+ }
85
+
86
+ .row-cols-3 > * {
87
+ flex: 0 0 auto;
88
+ width: 33.3333333333%;
89
+ }
90
+
91
+ .row-cols-4 > * {
92
+ flex: 0 0 auto;
93
+ width: 25%;
94
+ }
95
+
96
+ .row-cols-5 > * {
97
+ flex: 0 0 auto;
98
+ width: 20%;
99
+ }
100
+
101
+ .row-cols-6 > * {
102
+ flex: 0 0 auto;
103
+ width: 16.6666666667%;
104
+ }
105
+
106
+ @media (min-width: 576px) {
107
+ .col-sm {
108
+ flex: 1 0 0%;
109
+ }
110
+
111
+ .row-cols-sm-auto > * {
112
+ flex: 0 0 auto;
113
+ width: auto;
114
+ }
115
+
116
+ .row-cols-sm-1 > * {
117
+ flex: 0 0 auto;
118
+ width: 100%;
119
+ }
120
+
121
+ .row-cols-sm-2 > * {
122
+ flex: 0 0 auto;
123
+ width: 50%;
124
+ }
125
+
126
+ .row-cols-sm-3 > * {
127
+ flex: 0 0 auto;
128
+ width: 33.3333333333%;
129
+ }
130
+
131
+ .row-cols-sm-4 > * {
132
+ flex: 0 0 auto;
133
+ width: 25%;
134
+ }
135
+
136
+ .row-cols-sm-5 > * {
137
+ flex: 0 0 auto;
138
+ width: 20%;
139
+ }
140
+
141
+ .row-cols-sm-6 > * {
142
+ flex: 0 0 auto;
143
+ width: 16.6666666667%;
144
+ }
145
+ }
146
+ @media (min-width: 768px) {
147
+ .col-md {
148
+ flex: 1 0 0%;
149
+ }
150
+
151
+ .row-cols-md-auto > * {
152
+ flex: 0 0 auto;
153
+ width: auto;
154
+ }
155
+
156
+ .row-cols-md-1 > * {
157
+ flex: 0 0 auto;
158
+ width: 100%;
159
+ }
160
+
161
+ .row-cols-md-2 > * {
162
+ flex: 0 0 auto;
163
+ width: 50%;
164
+ }
165
+
166
+ .row-cols-md-3 > * {
167
+ flex: 0 0 auto;
168
+ width: 33.3333333333%;
169
+ }
170
+
171
+ .row-cols-md-4 > * {
172
+ flex: 0 0 auto;
173
+ width: 25%;
174
+ }
175
+
176
+ .row-cols-md-5 > * {
177
+ flex: 0 0 auto;
178
+ width: 20%;
179
+ }
180
+
181
+ .row-cols-md-6 > * {
182
+ flex: 0 0 auto;
183
+ width: 16.6666666667%;
184
+ }
185
+ }
186
+ @media (min-width: 992px) {
187
+ .col-lg {
188
+ flex: 1 0 0%;
189
+ }
190
+
191
+ .row-cols-lg-auto > * {
192
+ flex: 0 0 auto;
193
+ width: auto;
194
+ }
195
+
196
+ .row-cols-lg-1 > * {
197
+ flex: 0 0 auto;
198
+ width: 100%;
199
+ }
200
+
201
+ .row-cols-lg-2 > * {
202
+ flex: 0 0 auto;
203
+ width: 50%;
204
+ }
205
+
206
+ .row-cols-lg-3 > * {
207
+ flex: 0 0 auto;
208
+ width: 33.3333333333%;
209
+ }
210
+
211
+ .row-cols-lg-4 > * {
212
+ flex: 0 0 auto;
213
+ width: 25%;
214
+ }
215
+
216
+ .row-cols-lg-5 > * {
217
+ flex: 0 0 auto;
218
+ width: 20%;
219
+ }
220
+
221
+ .row-cols-lg-6 > * {
222
+ flex: 0 0 auto;
223
+ width: 16.6666666667%;
224
+ }
225
+ }
226
+ @media (min-width: 1200px) {
227
+ .col-xl {
228
+ flex: 1 0 0%;
229
+ }
230
+
231
+ .row-cols-xl-auto > * {
232
+ flex: 0 0 auto;
233
+ width: auto;
234
+ }
235
+
236
+ .row-cols-xl-1 > * {
237
+ flex: 0 0 auto;
238
+ width: 100%;
239
+ }
240
+
241
+ .row-cols-xl-2 > * {
242
+ flex: 0 0 auto;
243
+ width: 50%;
244
+ }
245
+
246
+ .row-cols-xl-3 > * {
247
+ flex: 0 0 auto;
248
+ width: 33.3333333333%;
249
+ }
250
+
251
+ .row-cols-xl-4 > * {
252
+ flex: 0 0 auto;
253
+ width: 25%;
254
+ }
255
+
256
+ .row-cols-xl-5 > * {
257
+ flex: 0 0 auto;
258
+ width: 20%;
259
+ }
260
+
261
+ .row-cols-xl-6 > * {
262
+ flex: 0 0 auto;
263
+ width: 16.6666666667%;
264
+ }
265
+ }
266
+ @media (min-width: 1400px) {
267
+ .col-xxl {
268
+ flex: 1 0 0%;
269
+ }
270
+
271
+ .row-cols-xxl-auto > * {
272
+ flex: 0 0 auto;
273
+ width: auto;
274
+ }
275
+
276
+ .row-cols-xxl-1 > * {
277
+ flex: 0 0 auto;
278
+ width: 100%;
279
+ }
280
+
281
+ .row-cols-xxl-2 > * {
282
+ flex: 0 0 auto;
283
+ width: 50%;
284
+ }
285
+
286
+ .row-cols-xxl-3 > * {
287
+ flex: 0 0 auto;
288
+ width: 33.3333333333%;
289
+ }
290
+
291
+ .row-cols-xxl-4 > * {
292
+ flex: 0 0 auto;
293
+ width: 25%;
294
+ }
295
+
296
+ .row-cols-xxl-5 > * {
297
+ flex: 0 0 auto;
298
+ width: 20%;
299
+ }
300
+
301
+ .row-cols-xxl-6 > * {
302
+ flex: 0 0 auto;
303
+ width: 16.6666666667%;
304
+ }
305
+ }
306
+ .col-auto {
307
+ flex: 0 0 auto;
308
+ width: auto;
309
+ }
310
+
311
+ .col-1 {
312
+ flex: 0 0 auto;
313
+ width: 8.33333333%;
314
+ }
315
+
316
+ .col-2 {
317
+ flex: 0 0 auto;
318
+ width: 16.66666667%;
319
+ }
320
+
321
+ .col-3 {
322
+ flex: 0 0 auto;
323
+ width: 25%;
324
+ }
325
+
326
+ .col-4 {
327
+ flex: 0 0 auto;
328
+ width: 33.33333333%;
329
+ }
330
+
331
+ .col-5 {
332
+ flex: 0 0 auto;
333
+ width: 41.66666667%;
334
+ }
335
+
336
+ .col-6 {
337
+ flex: 0 0 auto;
338
+ width: 50%;
339
+ }
340
+
341
+ .col-7 {
342
+ flex: 0 0 auto;
343
+ width: 58.33333333%;
344
+ }
345
+
346
+ .col-8 {
347
+ flex: 0 0 auto;
348
+ width: 66.66666667%;
349
+ }
350
+
351
+ .col-9 {
352
+ flex: 0 0 auto;
353
+ width: 75%;
354
+ }
355
+
356
+ .col-10 {
357
+ flex: 0 0 auto;
358
+ width: 83.33333333%;
359
+ }
360
+
361
+ .col-11 {
362
+ flex: 0 0 auto;
363
+ width: 91.66666667%;
364
+ }
365
+
366
+ .col-12 {
367
+ flex: 0 0 auto;
368
+ width: 100%;
369
+ }
370
+
371
+ .offset-1 {
372
+ margin-left: 8.33333333%;
373
+ }
374
+
375
+ .offset-2 {
376
+ margin-left: 16.66666667%;
377
+ }
378
+
379
+ .offset-3 {
380
+ margin-left: 25%;
381
+ }
382
+
383
+ .offset-4 {
384
+ margin-left: 33.33333333%;
385
+ }
386
+
387
+ .offset-5 {
388
+ margin-left: 41.66666667%;
389
+ }
390
+
391
+ .offset-6 {
392
+ margin-left: 50%;
393
+ }
394
+
395
+ .offset-7 {
396
+ margin-left: 58.33333333%;
397
+ }
398
+
399
+ .offset-8 {
400
+ margin-left: 66.66666667%;
401
+ }
402
+
403
+ .offset-9 {
404
+ margin-left: 75%;
405
+ }
406
+
407
+ .offset-10 {
408
+ margin-left: 83.33333333%;
409
+ }
410
+
411
+ .offset-11 {
412
+ margin-left: 91.66666667%;
413
+ }
414
+
415
+ .g-0,
416
+ .gx-0 {
417
+ --cui-gutter-x: 0;
418
+ }
419
+
420
+ .g-0,
421
+ .gy-0 {
422
+ --cui-gutter-y: 0;
423
+ }
424
+
425
+ .g-1,
426
+ .gx-1 {
427
+ --cui-gutter-x: 0.25rem;
428
+ }
429
+
430
+ .g-1,
431
+ .gy-1 {
432
+ --cui-gutter-y: 0.25rem;
433
+ }
434
+
435
+ .g-2,
436
+ .gx-2 {
437
+ --cui-gutter-x: 0.5rem;
438
+ }
439
+
440
+ .g-2,
441
+ .gy-2 {
442
+ --cui-gutter-y: 0.5rem;
443
+ }
444
+
445
+ .g-3,
446
+ .gx-3 {
447
+ --cui-gutter-x: 1rem;
448
+ }
449
+
450
+ .g-3,
451
+ .gy-3 {
452
+ --cui-gutter-y: 1rem;
453
+ }
454
+
455
+ .g-4,
456
+ .gx-4 {
457
+ --cui-gutter-x: 1.5rem;
458
+ }
459
+
460
+ .g-4,
461
+ .gy-4 {
462
+ --cui-gutter-y: 1.5rem;
463
+ }
464
+
465
+ .g-5,
466
+ .gx-5 {
467
+ --cui-gutter-x: 3rem;
468
+ }
469
+
470
+ .g-5,
471
+ .gy-5 {
472
+ --cui-gutter-y: 3rem;
473
+ }
474
+
475
+ @media (min-width: 576px) {
476
+ .col-sm-auto {
477
+ flex: 0 0 auto;
478
+ width: auto;
479
+ }
480
+
481
+ .col-sm-1 {
482
+ flex: 0 0 auto;
483
+ width: 8.33333333%;
484
+ }
485
+
486
+ .col-sm-2 {
487
+ flex: 0 0 auto;
488
+ width: 16.66666667%;
489
+ }
490
+
491
+ .col-sm-3 {
492
+ flex: 0 0 auto;
493
+ width: 25%;
494
+ }
495
+
496
+ .col-sm-4 {
497
+ flex: 0 0 auto;
498
+ width: 33.33333333%;
499
+ }
500
+
501
+ .col-sm-5 {
502
+ flex: 0 0 auto;
503
+ width: 41.66666667%;
504
+ }
505
+
506
+ .col-sm-6 {
507
+ flex: 0 0 auto;
508
+ width: 50%;
509
+ }
510
+
511
+ .col-sm-7 {
512
+ flex: 0 0 auto;
513
+ width: 58.33333333%;
514
+ }
515
+
516
+ .col-sm-8 {
517
+ flex: 0 0 auto;
518
+ width: 66.66666667%;
519
+ }
520
+
521
+ .col-sm-9 {
522
+ flex: 0 0 auto;
523
+ width: 75%;
524
+ }
525
+
526
+ .col-sm-10 {
527
+ flex: 0 0 auto;
528
+ width: 83.33333333%;
529
+ }
530
+
531
+ .col-sm-11 {
532
+ flex: 0 0 auto;
533
+ width: 91.66666667%;
534
+ }
535
+
536
+ .col-sm-12 {
537
+ flex: 0 0 auto;
538
+ width: 100%;
539
+ }
540
+
541
+ .offset-sm-0 {
542
+ margin-left: 0;
543
+ }
544
+
545
+ .offset-sm-1 {
546
+ margin-left: 8.33333333%;
547
+ }
548
+
549
+ .offset-sm-2 {
550
+ margin-left: 16.66666667%;
551
+ }
552
+
553
+ .offset-sm-3 {
554
+ margin-left: 25%;
555
+ }
556
+
557
+ .offset-sm-4 {
558
+ margin-left: 33.33333333%;
559
+ }
560
+
561
+ .offset-sm-5 {
562
+ margin-left: 41.66666667%;
563
+ }
564
+
565
+ .offset-sm-6 {
566
+ margin-left: 50%;
567
+ }
568
+
569
+ .offset-sm-7 {
570
+ margin-left: 58.33333333%;
571
+ }
572
+
573
+ .offset-sm-8 {
574
+ margin-left: 66.66666667%;
575
+ }
576
+
577
+ .offset-sm-9 {
578
+ margin-left: 75%;
579
+ }
580
+
581
+ .offset-sm-10 {
582
+ margin-left: 83.33333333%;
583
+ }
584
+
585
+ .offset-sm-11 {
586
+ margin-left: 91.66666667%;
587
+ }
588
+
589
+ .g-sm-0,
590
+ .gx-sm-0 {
591
+ --cui-gutter-x: 0;
592
+ }
593
+
594
+ .g-sm-0,
595
+ .gy-sm-0 {
596
+ --cui-gutter-y: 0;
597
+ }
598
+
599
+ .g-sm-1,
600
+ .gx-sm-1 {
601
+ --cui-gutter-x: 0.25rem;
602
+ }
603
+
604
+ .g-sm-1,
605
+ .gy-sm-1 {
606
+ --cui-gutter-y: 0.25rem;
607
+ }
608
+
609
+ .g-sm-2,
610
+ .gx-sm-2 {
611
+ --cui-gutter-x: 0.5rem;
612
+ }
613
+
614
+ .g-sm-2,
615
+ .gy-sm-2 {
616
+ --cui-gutter-y: 0.5rem;
617
+ }
618
+
619
+ .g-sm-3,
620
+ .gx-sm-3 {
621
+ --cui-gutter-x: 1rem;
622
+ }
623
+
624
+ .g-sm-3,
625
+ .gy-sm-3 {
626
+ --cui-gutter-y: 1rem;
627
+ }
628
+
629
+ .g-sm-4,
630
+ .gx-sm-4 {
631
+ --cui-gutter-x: 1.5rem;
632
+ }
633
+
634
+ .g-sm-4,
635
+ .gy-sm-4 {
636
+ --cui-gutter-y: 1.5rem;
637
+ }
638
+
639
+ .g-sm-5,
640
+ .gx-sm-5 {
641
+ --cui-gutter-x: 3rem;
642
+ }
643
+
644
+ .g-sm-5,
645
+ .gy-sm-5 {
646
+ --cui-gutter-y: 3rem;
647
+ }
648
+ }
649
+ @media (min-width: 768px) {
650
+ .col-md-auto {
651
+ flex: 0 0 auto;
652
+ width: auto;
653
+ }
654
+
655
+ .col-md-1 {
656
+ flex: 0 0 auto;
657
+ width: 8.33333333%;
658
+ }
659
+
660
+ .col-md-2 {
661
+ flex: 0 0 auto;
662
+ width: 16.66666667%;
663
+ }
664
+
665
+ .col-md-3 {
666
+ flex: 0 0 auto;
667
+ width: 25%;
668
+ }
669
+
670
+ .col-md-4 {
671
+ flex: 0 0 auto;
672
+ width: 33.33333333%;
673
+ }
674
+
675
+ .col-md-5 {
676
+ flex: 0 0 auto;
677
+ width: 41.66666667%;
678
+ }
679
+
680
+ .col-md-6 {
681
+ flex: 0 0 auto;
682
+ width: 50%;
683
+ }
684
+
685
+ .col-md-7 {
686
+ flex: 0 0 auto;
687
+ width: 58.33333333%;
688
+ }
689
+
690
+ .col-md-8 {
691
+ flex: 0 0 auto;
692
+ width: 66.66666667%;
693
+ }
694
+
695
+ .col-md-9 {
696
+ flex: 0 0 auto;
697
+ width: 75%;
698
+ }
699
+
700
+ .col-md-10 {
701
+ flex: 0 0 auto;
702
+ width: 83.33333333%;
703
+ }
704
+
705
+ .col-md-11 {
706
+ flex: 0 0 auto;
707
+ width: 91.66666667%;
708
+ }
709
+
710
+ .col-md-12 {
711
+ flex: 0 0 auto;
712
+ width: 100%;
713
+ }
714
+
715
+ .offset-md-0 {
716
+ margin-left: 0;
717
+ }
718
+
719
+ .offset-md-1 {
720
+ margin-left: 8.33333333%;
721
+ }
722
+
723
+ .offset-md-2 {
724
+ margin-left: 16.66666667%;
725
+ }
726
+
727
+ .offset-md-3 {
728
+ margin-left: 25%;
729
+ }
730
+
731
+ .offset-md-4 {
732
+ margin-left: 33.33333333%;
733
+ }
734
+
735
+ .offset-md-5 {
736
+ margin-left: 41.66666667%;
737
+ }
738
+
739
+ .offset-md-6 {
740
+ margin-left: 50%;
741
+ }
742
+
743
+ .offset-md-7 {
744
+ margin-left: 58.33333333%;
745
+ }
746
+
747
+ .offset-md-8 {
748
+ margin-left: 66.66666667%;
749
+ }
750
+
751
+ .offset-md-9 {
752
+ margin-left: 75%;
753
+ }
754
+
755
+ .offset-md-10 {
756
+ margin-left: 83.33333333%;
757
+ }
758
+
759
+ .offset-md-11 {
760
+ margin-left: 91.66666667%;
761
+ }
762
+
763
+ .g-md-0,
764
+ .gx-md-0 {
765
+ --cui-gutter-x: 0;
766
+ }
767
+
768
+ .g-md-0,
769
+ .gy-md-0 {
770
+ --cui-gutter-y: 0;
771
+ }
772
+
773
+ .g-md-1,
774
+ .gx-md-1 {
775
+ --cui-gutter-x: 0.25rem;
776
+ }
777
+
778
+ .g-md-1,
779
+ .gy-md-1 {
780
+ --cui-gutter-y: 0.25rem;
781
+ }
782
+
783
+ .g-md-2,
784
+ .gx-md-2 {
785
+ --cui-gutter-x: 0.5rem;
786
+ }
787
+
788
+ .g-md-2,
789
+ .gy-md-2 {
790
+ --cui-gutter-y: 0.5rem;
791
+ }
792
+
793
+ .g-md-3,
794
+ .gx-md-3 {
795
+ --cui-gutter-x: 1rem;
796
+ }
797
+
798
+ .g-md-3,
799
+ .gy-md-3 {
800
+ --cui-gutter-y: 1rem;
801
+ }
802
+
803
+ .g-md-4,
804
+ .gx-md-4 {
805
+ --cui-gutter-x: 1.5rem;
806
+ }
807
+
808
+ .g-md-4,
809
+ .gy-md-4 {
810
+ --cui-gutter-y: 1.5rem;
811
+ }
812
+
813
+ .g-md-5,
814
+ .gx-md-5 {
815
+ --cui-gutter-x: 3rem;
816
+ }
817
+
818
+ .g-md-5,
819
+ .gy-md-5 {
820
+ --cui-gutter-y: 3rem;
821
+ }
822
+ }
823
+ @media (min-width: 992px) {
824
+ .col-lg-auto {
825
+ flex: 0 0 auto;
826
+ width: auto;
827
+ }
828
+
829
+ .col-lg-1 {
830
+ flex: 0 0 auto;
831
+ width: 8.33333333%;
832
+ }
833
+
834
+ .col-lg-2 {
835
+ flex: 0 0 auto;
836
+ width: 16.66666667%;
837
+ }
838
+
839
+ .col-lg-3 {
840
+ flex: 0 0 auto;
841
+ width: 25%;
842
+ }
843
+
844
+ .col-lg-4 {
845
+ flex: 0 0 auto;
846
+ width: 33.33333333%;
847
+ }
848
+
849
+ .col-lg-5 {
850
+ flex: 0 0 auto;
851
+ width: 41.66666667%;
852
+ }
853
+
854
+ .col-lg-6 {
855
+ flex: 0 0 auto;
856
+ width: 50%;
857
+ }
858
+
859
+ .col-lg-7 {
860
+ flex: 0 0 auto;
861
+ width: 58.33333333%;
862
+ }
863
+
864
+ .col-lg-8 {
865
+ flex: 0 0 auto;
866
+ width: 66.66666667%;
867
+ }
868
+
869
+ .col-lg-9 {
870
+ flex: 0 0 auto;
871
+ width: 75%;
872
+ }
873
+
874
+ .col-lg-10 {
875
+ flex: 0 0 auto;
876
+ width: 83.33333333%;
877
+ }
878
+
879
+ .col-lg-11 {
880
+ flex: 0 0 auto;
881
+ width: 91.66666667%;
882
+ }
883
+
884
+ .col-lg-12 {
885
+ flex: 0 0 auto;
886
+ width: 100%;
887
+ }
888
+
889
+ .offset-lg-0 {
890
+ margin-left: 0;
891
+ }
892
+
893
+ .offset-lg-1 {
894
+ margin-left: 8.33333333%;
895
+ }
896
+
897
+ .offset-lg-2 {
898
+ margin-left: 16.66666667%;
899
+ }
900
+
901
+ .offset-lg-3 {
902
+ margin-left: 25%;
903
+ }
904
+
905
+ .offset-lg-4 {
906
+ margin-left: 33.33333333%;
907
+ }
908
+
909
+ .offset-lg-5 {
910
+ margin-left: 41.66666667%;
911
+ }
912
+
913
+ .offset-lg-6 {
914
+ margin-left: 50%;
915
+ }
916
+
917
+ .offset-lg-7 {
918
+ margin-left: 58.33333333%;
919
+ }
920
+
921
+ .offset-lg-8 {
922
+ margin-left: 66.66666667%;
923
+ }
924
+
925
+ .offset-lg-9 {
926
+ margin-left: 75%;
927
+ }
928
+
929
+ .offset-lg-10 {
930
+ margin-left: 83.33333333%;
931
+ }
932
+
933
+ .offset-lg-11 {
934
+ margin-left: 91.66666667%;
935
+ }
936
+
937
+ .g-lg-0,
938
+ .gx-lg-0 {
939
+ --cui-gutter-x: 0;
940
+ }
941
+
942
+ .g-lg-0,
943
+ .gy-lg-0 {
944
+ --cui-gutter-y: 0;
945
+ }
946
+
947
+ .g-lg-1,
948
+ .gx-lg-1 {
949
+ --cui-gutter-x: 0.25rem;
950
+ }
951
+
952
+ .g-lg-1,
953
+ .gy-lg-1 {
954
+ --cui-gutter-y: 0.25rem;
955
+ }
956
+
957
+ .g-lg-2,
958
+ .gx-lg-2 {
959
+ --cui-gutter-x: 0.5rem;
960
+ }
961
+
962
+ .g-lg-2,
963
+ .gy-lg-2 {
964
+ --cui-gutter-y: 0.5rem;
965
+ }
966
+
967
+ .g-lg-3,
968
+ .gx-lg-3 {
969
+ --cui-gutter-x: 1rem;
970
+ }
971
+
972
+ .g-lg-3,
973
+ .gy-lg-3 {
974
+ --cui-gutter-y: 1rem;
975
+ }
976
+
977
+ .g-lg-4,
978
+ .gx-lg-4 {
979
+ --cui-gutter-x: 1.5rem;
980
+ }
981
+
982
+ .g-lg-4,
983
+ .gy-lg-4 {
984
+ --cui-gutter-y: 1.5rem;
985
+ }
986
+
987
+ .g-lg-5,
988
+ .gx-lg-5 {
989
+ --cui-gutter-x: 3rem;
990
+ }
991
+
992
+ .g-lg-5,
993
+ .gy-lg-5 {
994
+ --cui-gutter-y: 3rem;
995
+ }
996
+ }
997
+ @media (min-width: 1200px) {
998
+ .col-xl-auto {
999
+ flex: 0 0 auto;
1000
+ width: auto;
1001
+ }
1002
+
1003
+ .col-xl-1 {
1004
+ flex: 0 0 auto;
1005
+ width: 8.33333333%;
1006
+ }
1007
+
1008
+ .col-xl-2 {
1009
+ flex: 0 0 auto;
1010
+ width: 16.66666667%;
1011
+ }
1012
+
1013
+ .col-xl-3 {
1014
+ flex: 0 0 auto;
1015
+ width: 25%;
1016
+ }
1017
+
1018
+ .col-xl-4 {
1019
+ flex: 0 0 auto;
1020
+ width: 33.33333333%;
1021
+ }
1022
+
1023
+ .col-xl-5 {
1024
+ flex: 0 0 auto;
1025
+ width: 41.66666667%;
1026
+ }
1027
+
1028
+ .col-xl-6 {
1029
+ flex: 0 0 auto;
1030
+ width: 50%;
1031
+ }
1032
+
1033
+ .col-xl-7 {
1034
+ flex: 0 0 auto;
1035
+ width: 58.33333333%;
1036
+ }
1037
+
1038
+ .col-xl-8 {
1039
+ flex: 0 0 auto;
1040
+ width: 66.66666667%;
1041
+ }
1042
+
1043
+ .col-xl-9 {
1044
+ flex: 0 0 auto;
1045
+ width: 75%;
1046
+ }
1047
+
1048
+ .col-xl-10 {
1049
+ flex: 0 0 auto;
1050
+ width: 83.33333333%;
1051
+ }
1052
+
1053
+ .col-xl-11 {
1054
+ flex: 0 0 auto;
1055
+ width: 91.66666667%;
1056
+ }
1057
+
1058
+ .col-xl-12 {
1059
+ flex: 0 0 auto;
1060
+ width: 100%;
1061
+ }
1062
+
1063
+ .offset-xl-0 {
1064
+ margin-left: 0;
1065
+ }
1066
+
1067
+ .offset-xl-1 {
1068
+ margin-left: 8.33333333%;
1069
+ }
1070
+
1071
+ .offset-xl-2 {
1072
+ margin-left: 16.66666667%;
1073
+ }
1074
+
1075
+ .offset-xl-3 {
1076
+ margin-left: 25%;
1077
+ }
1078
+
1079
+ .offset-xl-4 {
1080
+ margin-left: 33.33333333%;
1081
+ }
1082
+
1083
+ .offset-xl-5 {
1084
+ margin-left: 41.66666667%;
1085
+ }
1086
+
1087
+ .offset-xl-6 {
1088
+ margin-left: 50%;
1089
+ }
1090
+
1091
+ .offset-xl-7 {
1092
+ margin-left: 58.33333333%;
1093
+ }
1094
+
1095
+ .offset-xl-8 {
1096
+ margin-left: 66.66666667%;
1097
+ }
1098
+
1099
+ .offset-xl-9 {
1100
+ margin-left: 75%;
1101
+ }
1102
+
1103
+ .offset-xl-10 {
1104
+ margin-left: 83.33333333%;
1105
+ }
1106
+
1107
+ .offset-xl-11 {
1108
+ margin-left: 91.66666667%;
1109
+ }
1110
+
1111
+ .g-xl-0,
1112
+ .gx-xl-0 {
1113
+ --cui-gutter-x: 0;
1114
+ }
1115
+
1116
+ .g-xl-0,
1117
+ .gy-xl-0 {
1118
+ --cui-gutter-y: 0;
1119
+ }
1120
+
1121
+ .g-xl-1,
1122
+ .gx-xl-1 {
1123
+ --cui-gutter-x: 0.25rem;
1124
+ }
1125
+
1126
+ .g-xl-1,
1127
+ .gy-xl-1 {
1128
+ --cui-gutter-y: 0.25rem;
1129
+ }
1130
+
1131
+ .g-xl-2,
1132
+ .gx-xl-2 {
1133
+ --cui-gutter-x: 0.5rem;
1134
+ }
1135
+
1136
+ .g-xl-2,
1137
+ .gy-xl-2 {
1138
+ --cui-gutter-y: 0.5rem;
1139
+ }
1140
+
1141
+ .g-xl-3,
1142
+ .gx-xl-3 {
1143
+ --cui-gutter-x: 1rem;
1144
+ }
1145
+
1146
+ .g-xl-3,
1147
+ .gy-xl-3 {
1148
+ --cui-gutter-y: 1rem;
1149
+ }
1150
+
1151
+ .g-xl-4,
1152
+ .gx-xl-4 {
1153
+ --cui-gutter-x: 1.5rem;
1154
+ }
1155
+
1156
+ .g-xl-4,
1157
+ .gy-xl-4 {
1158
+ --cui-gutter-y: 1.5rem;
1159
+ }
1160
+
1161
+ .g-xl-5,
1162
+ .gx-xl-5 {
1163
+ --cui-gutter-x: 3rem;
1164
+ }
1165
+
1166
+ .g-xl-5,
1167
+ .gy-xl-5 {
1168
+ --cui-gutter-y: 3rem;
1169
+ }
1170
+ }
1171
+ @media (min-width: 1400px) {
1172
+ .col-xxl-auto {
1173
+ flex: 0 0 auto;
1174
+ width: auto;
1175
+ }
1176
+
1177
+ .col-xxl-1 {
1178
+ flex: 0 0 auto;
1179
+ width: 8.33333333%;
1180
+ }
1181
+
1182
+ .col-xxl-2 {
1183
+ flex: 0 0 auto;
1184
+ width: 16.66666667%;
1185
+ }
1186
+
1187
+ .col-xxl-3 {
1188
+ flex: 0 0 auto;
1189
+ width: 25%;
1190
+ }
1191
+
1192
+ .col-xxl-4 {
1193
+ flex: 0 0 auto;
1194
+ width: 33.33333333%;
1195
+ }
1196
+
1197
+ .col-xxl-5 {
1198
+ flex: 0 0 auto;
1199
+ width: 41.66666667%;
1200
+ }
1201
+
1202
+ .col-xxl-6 {
1203
+ flex: 0 0 auto;
1204
+ width: 50%;
1205
+ }
1206
+
1207
+ .col-xxl-7 {
1208
+ flex: 0 0 auto;
1209
+ width: 58.33333333%;
1210
+ }
1211
+
1212
+ .col-xxl-8 {
1213
+ flex: 0 0 auto;
1214
+ width: 66.66666667%;
1215
+ }
1216
+
1217
+ .col-xxl-9 {
1218
+ flex: 0 0 auto;
1219
+ width: 75%;
1220
+ }
1221
+
1222
+ .col-xxl-10 {
1223
+ flex: 0 0 auto;
1224
+ width: 83.33333333%;
1225
+ }
1226
+
1227
+ .col-xxl-11 {
1228
+ flex: 0 0 auto;
1229
+ width: 91.66666667%;
1230
+ }
1231
+
1232
+ .col-xxl-12 {
1233
+ flex: 0 0 auto;
1234
+ width: 100%;
1235
+ }
1236
+
1237
+ .offset-xxl-0 {
1238
+ margin-left: 0;
1239
+ }
1240
+
1241
+ .offset-xxl-1 {
1242
+ margin-left: 8.33333333%;
1243
+ }
1244
+
1245
+ .offset-xxl-2 {
1246
+ margin-left: 16.66666667%;
1247
+ }
1248
+
1249
+ .offset-xxl-3 {
1250
+ margin-left: 25%;
1251
+ }
1252
+
1253
+ .offset-xxl-4 {
1254
+ margin-left: 33.33333333%;
1255
+ }
1256
+
1257
+ .offset-xxl-5 {
1258
+ margin-left: 41.66666667%;
1259
+ }
1260
+
1261
+ .offset-xxl-6 {
1262
+ margin-left: 50%;
1263
+ }
1264
+
1265
+ .offset-xxl-7 {
1266
+ margin-left: 58.33333333%;
1267
+ }
1268
+
1269
+ .offset-xxl-8 {
1270
+ margin-left: 66.66666667%;
1271
+ }
1272
+
1273
+ .offset-xxl-9 {
1274
+ margin-left: 75%;
1275
+ }
1276
+
1277
+ .offset-xxl-10 {
1278
+ margin-left: 83.33333333%;
1279
+ }
1280
+
1281
+ .offset-xxl-11 {
1282
+ margin-left: 91.66666667%;
1283
+ }
1284
+
1285
+ .g-xxl-0,
1286
+ .gx-xxl-0 {
1287
+ --cui-gutter-x: 0;
1288
+ }
1289
+
1290
+ .g-xxl-0,
1291
+ .gy-xxl-0 {
1292
+ --cui-gutter-y: 0;
1293
+ }
1294
+
1295
+ .g-xxl-1,
1296
+ .gx-xxl-1 {
1297
+ --cui-gutter-x: 0.25rem;
1298
+ }
1299
+
1300
+ .g-xxl-1,
1301
+ .gy-xxl-1 {
1302
+ --cui-gutter-y: 0.25rem;
1303
+ }
1304
+
1305
+ .g-xxl-2,
1306
+ .gx-xxl-2 {
1307
+ --cui-gutter-x: 0.5rem;
1308
+ }
1309
+
1310
+ .g-xxl-2,
1311
+ .gy-xxl-2 {
1312
+ --cui-gutter-y: 0.5rem;
1313
+ }
1314
+
1315
+ .g-xxl-3,
1316
+ .gx-xxl-3 {
1317
+ --cui-gutter-x: 1rem;
1318
+ }
1319
+
1320
+ .g-xxl-3,
1321
+ .gy-xxl-3 {
1322
+ --cui-gutter-y: 1rem;
1323
+ }
1324
+
1325
+ .g-xxl-4,
1326
+ .gx-xxl-4 {
1327
+ --cui-gutter-x: 1.5rem;
1328
+ }
1329
+
1330
+ .g-xxl-4,
1331
+ .gy-xxl-4 {
1332
+ --cui-gutter-y: 1.5rem;
1333
+ }
1334
+
1335
+ .g-xxl-5,
1336
+ .gx-xxl-5 {
1337
+ --cui-gutter-x: 3rem;
1338
+ }
1339
+
1340
+ .g-xxl-5,
1341
+ .gy-xxl-5 {
1342
+ --cui-gutter-y: 3rem;
1343
+ }
1344
+ }
1345
+ .d-inline {
1346
+ display: inline !important;
1347
+ }
1348
+
1349
+ .d-inline-block {
1350
+ display: inline-block !important;
1351
+ }
1352
+
1353
+ .d-block {
1354
+ display: block !important;
1355
+ }
1356
+
1357
+ .d-grid {
1358
+ display: grid !important;
1359
+ }
1360
+
1361
+ .d-table {
1362
+ display: table !important;
1363
+ }
1364
+
1365
+ .d-table-row {
1366
+ display: table-row !important;
1367
+ }
1368
+
1369
+ .d-table-cell {
1370
+ display: table-cell !important;
1371
+ }
1372
+
1373
+ .d-flex {
1374
+ display: flex !important;
1375
+ }
1376
+
1377
+ .d-inline-flex {
1378
+ display: inline-flex !important;
1379
+ }
1380
+
1381
+ .d-none {
1382
+ display: none !important;
1383
+ }
1384
+
1385
+ .flex-fill {
1386
+ flex: 1 1 auto !important;
1387
+ }
1388
+
1389
+ .flex-row {
1390
+ flex-direction: row !important;
1391
+ }
1392
+
1393
+ .flex-column {
1394
+ flex-direction: column !important;
1395
+ }
1396
+
1397
+ .flex-row-reverse {
1398
+ flex-direction: row-reverse !important;
1399
+ }
1400
+
1401
+ .flex-column-reverse {
1402
+ flex-direction: column-reverse !important;
1403
+ }
1404
+
1405
+ .flex-grow-0 {
1406
+ flex-grow: 0 !important;
1407
+ }
1408
+
1409
+ .flex-grow-1 {
1410
+ flex-grow: 1 !important;
1411
+ }
1412
+
1413
+ .flex-shrink-0 {
1414
+ flex-shrink: 0 !important;
1415
+ }
1416
+
1417
+ .flex-shrink-1 {
1418
+ flex-shrink: 1 !important;
1419
+ }
1420
+
1421
+ .flex-wrap {
1422
+ flex-wrap: wrap !important;
1423
+ }
1424
+
1425
+ .flex-nowrap {
1426
+ flex-wrap: nowrap !important;
1427
+ }
1428
+
1429
+ .flex-wrap-reverse {
1430
+ flex-wrap: wrap-reverse !important;
1431
+ }
1432
+
1433
+ .justify-content-start {
1434
+ justify-content: flex-start !important;
1435
+ }
1436
+
1437
+ .justify-content-end {
1438
+ justify-content: flex-end !important;
1439
+ }
1440
+
1441
+ .justify-content-center {
1442
+ justify-content: center !important;
1443
+ }
1444
+
1445
+ .justify-content-between {
1446
+ justify-content: space-between !important;
1447
+ }
1448
+
1449
+ .justify-content-around {
1450
+ justify-content: space-around !important;
1451
+ }
1452
+
1453
+ .justify-content-evenly {
1454
+ justify-content: space-evenly !important;
1455
+ }
1456
+
1457
+ .align-items-start {
1458
+ align-items: flex-start !important;
1459
+ }
1460
+
1461
+ .align-items-end {
1462
+ align-items: flex-end !important;
1463
+ }
1464
+
1465
+ .align-items-center {
1466
+ align-items: center !important;
1467
+ }
1468
+
1469
+ .align-items-baseline {
1470
+ align-items: baseline !important;
1471
+ }
1472
+
1473
+ .align-items-stretch {
1474
+ align-items: stretch !important;
1475
+ }
1476
+
1477
+ .align-content-start {
1478
+ align-content: flex-start !important;
1479
+ }
1480
+
1481
+ .align-content-end {
1482
+ align-content: flex-end !important;
1483
+ }
1484
+
1485
+ .align-content-center {
1486
+ align-content: center !important;
1487
+ }
1488
+
1489
+ .align-content-between {
1490
+ align-content: space-between !important;
1491
+ }
1492
+
1493
+ .align-content-around {
1494
+ align-content: space-around !important;
1495
+ }
1496
+
1497
+ .align-content-stretch {
1498
+ align-content: stretch !important;
1499
+ }
1500
+
1501
+ .align-self-auto {
1502
+ align-self: auto !important;
1503
+ }
1504
+
1505
+ .align-self-start {
1506
+ align-self: flex-start !important;
1507
+ }
1508
+
1509
+ .align-self-end {
1510
+ align-self: flex-end !important;
1511
+ }
1512
+
1513
+ .align-self-center {
1514
+ align-self: center !important;
1515
+ }
1516
+
1517
+ .align-self-baseline {
1518
+ align-self: baseline !important;
1519
+ }
1520
+
1521
+ .align-self-stretch {
1522
+ align-self: stretch !important;
1523
+ }
1524
+
1525
+ .order-first {
1526
+ order: -1 !important;
1527
+ }
1528
+
1529
+ .order-0 {
1530
+ order: 0 !important;
1531
+ }
1532
+
1533
+ .order-1 {
1534
+ order: 1 !important;
1535
+ }
1536
+
1537
+ .order-2 {
1538
+ order: 2 !important;
1539
+ }
1540
+
1541
+ .order-3 {
1542
+ order: 3 !important;
1543
+ }
1544
+
1545
+ .order-4 {
1546
+ order: 4 !important;
1547
+ }
1548
+
1549
+ .order-5 {
1550
+ order: 5 !important;
1551
+ }
1552
+
1553
+ .order-last {
1554
+ order: 6 !important;
1555
+ }
1556
+
1557
+ .m-0 {
1558
+ margin: 0 !important;
1559
+ }
1560
+
1561
+ .m-1 {
1562
+ margin: 0.25rem !important;
1563
+ }
1564
+
1565
+ .m-2 {
1566
+ margin: 0.5rem !important;
1567
+ }
1568
+
1569
+ .m-3 {
1570
+ margin: 1rem !important;
1571
+ }
1572
+
1573
+ .m-4 {
1574
+ margin: 1.5rem !important;
1575
+ }
1576
+
1577
+ .m-5 {
1578
+ margin: 3rem !important;
1579
+ }
1580
+
1581
+ .m-auto {
1582
+ margin: auto !important;
1583
+ }
1584
+
1585
+ .mx-0 {
1586
+ margin-right: 0 !important;
1587
+ margin-left: 0 !important;
1588
+ }
1589
+
1590
+ .mx-1 {
1591
+ margin-right: 0.25rem !important;
1592
+ margin-left: 0.25rem !important;
1593
+ }
1594
+
1595
+ .mx-2 {
1596
+ margin-right: 0.5rem !important;
1597
+ margin-left: 0.5rem !important;
1598
+ }
1599
+
1600
+ .mx-3 {
1601
+ margin-right: 1rem !important;
1602
+ margin-left: 1rem !important;
1603
+ }
1604
+
1605
+ .mx-4 {
1606
+ margin-right: 1.5rem !important;
1607
+ margin-left: 1.5rem !important;
1608
+ }
1609
+
1610
+ .mx-5 {
1611
+ margin-right: 3rem !important;
1612
+ margin-left: 3rem !important;
1613
+ }
1614
+
1615
+ .mx-auto {
1616
+ margin-right: auto !important;
1617
+ margin-left: auto !important;
1618
+ }
1619
+
1620
+ .my-0 {
1621
+ margin-top: 0 !important;
1622
+ margin-bottom: 0 !important;
1623
+ }
1624
+
1625
+ .my-1 {
1626
+ margin-top: 0.25rem !important;
1627
+ margin-bottom: 0.25rem !important;
1628
+ }
1629
+
1630
+ .my-2 {
1631
+ margin-top: 0.5rem !important;
1632
+ margin-bottom: 0.5rem !important;
1633
+ }
1634
+
1635
+ .my-3 {
1636
+ margin-top: 1rem !important;
1637
+ margin-bottom: 1rem !important;
1638
+ }
1639
+
1640
+ .my-4 {
1641
+ margin-top: 1.5rem !important;
1642
+ margin-bottom: 1.5rem !important;
1643
+ }
1644
+
1645
+ .my-5 {
1646
+ margin-top: 3rem !important;
1647
+ margin-bottom: 3rem !important;
1648
+ }
1649
+
1650
+ .my-auto {
1651
+ margin-top: auto !important;
1652
+ margin-bottom: auto !important;
1653
+ }
1654
+
1655
+ .mt-0 {
1656
+ margin-top: 0 !important;
1657
+ }
1658
+
1659
+ .mt-1 {
1660
+ margin-top: 0.25rem !important;
1661
+ }
1662
+
1663
+ .mt-2 {
1664
+ margin-top: 0.5rem !important;
1665
+ }
1666
+
1667
+ .mt-3 {
1668
+ margin-top: 1rem !important;
1669
+ }
1670
+
1671
+ .mt-4 {
1672
+ margin-top: 1.5rem !important;
1673
+ }
1674
+
1675
+ .mt-5 {
1676
+ margin-top: 3rem !important;
1677
+ }
1678
+
1679
+ .mt-auto {
1680
+ margin-top: auto !important;
1681
+ }
1682
+
1683
+ .me-0 {
1684
+ margin-right: 0 !important;
1685
+ }
1686
+
1687
+ .me-1 {
1688
+ margin-right: 0.25rem !important;
1689
+ }
1690
+
1691
+ .me-2 {
1692
+ margin-right: 0.5rem !important;
1693
+ }
1694
+
1695
+ .me-3 {
1696
+ margin-right: 1rem !important;
1697
+ }
1698
+
1699
+ .me-4 {
1700
+ margin-right: 1.5rem !important;
1701
+ }
1702
+
1703
+ .me-5 {
1704
+ margin-right: 3rem !important;
1705
+ }
1706
+
1707
+ .me-auto {
1708
+ margin-right: auto !important;
1709
+ }
1710
+
1711
+ .mb-0 {
1712
+ margin-bottom: 0 !important;
1713
+ }
1714
+
1715
+ .mb-1 {
1716
+ margin-bottom: 0.25rem !important;
1717
+ }
1718
+
1719
+ .mb-2 {
1720
+ margin-bottom: 0.5rem !important;
1721
+ }
1722
+
1723
+ .mb-3 {
1724
+ margin-bottom: 1rem !important;
1725
+ }
1726
+
1727
+ .mb-4 {
1728
+ margin-bottom: 1.5rem !important;
1729
+ }
1730
+
1731
+ .mb-5 {
1732
+ margin-bottom: 3rem !important;
1733
+ }
1734
+
1735
+ .mb-auto {
1736
+ margin-bottom: auto !important;
1737
+ }
1738
+
1739
+ .ms-0 {
1740
+ margin-left: 0 !important;
1741
+ }
1742
+
1743
+ .ms-1 {
1744
+ margin-left: 0.25rem !important;
1745
+ }
1746
+
1747
+ .ms-2 {
1748
+ margin-left: 0.5rem !important;
1749
+ }
1750
+
1751
+ .ms-3 {
1752
+ margin-left: 1rem !important;
1753
+ }
1754
+
1755
+ .ms-4 {
1756
+ margin-left: 1.5rem !important;
1757
+ }
1758
+
1759
+ .ms-5 {
1760
+ margin-left: 3rem !important;
1761
+ }
1762
+
1763
+ .ms-auto {
1764
+ margin-left: auto !important;
1765
+ }
1766
+
1767
+ .p-0 {
1768
+ padding: 0 !important;
1769
+ }
1770
+
1771
+ .p-1 {
1772
+ padding: 0.25rem !important;
1773
+ }
1774
+
1775
+ .p-2 {
1776
+ padding: 0.5rem !important;
1777
+ }
1778
+
1779
+ .p-3 {
1780
+ padding: 1rem !important;
1781
+ }
1782
+
1783
+ .p-4 {
1784
+ padding: 1.5rem !important;
1785
+ }
1786
+
1787
+ .p-5 {
1788
+ padding: 3rem !important;
1789
+ }
1790
+
1791
+ .px-0 {
1792
+ padding-right: 0 !important;
1793
+ padding-left: 0 !important;
1794
+ }
1795
+
1796
+ .px-1 {
1797
+ padding-right: 0.25rem !important;
1798
+ padding-left: 0.25rem !important;
1799
+ }
1800
+
1801
+ .px-2 {
1802
+ padding-right: 0.5rem !important;
1803
+ padding-left: 0.5rem !important;
1804
+ }
1805
+
1806
+ .px-3 {
1807
+ padding-right: 1rem !important;
1808
+ padding-left: 1rem !important;
1809
+ }
1810
+
1811
+ .px-4 {
1812
+ padding-right: 1.5rem !important;
1813
+ padding-left: 1.5rem !important;
1814
+ }
1815
+
1816
+ .px-5 {
1817
+ padding-right: 3rem !important;
1818
+ padding-left: 3rem !important;
1819
+ }
1820
+
1821
+ .py-0 {
1822
+ padding-top: 0 !important;
1823
+ padding-bottom: 0 !important;
1824
+ }
1825
+
1826
+ .py-1 {
1827
+ padding-top: 0.25rem !important;
1828
+ padding-bottom: 0.25rem !important;
1829
+ }
1830
+
1831
+ .py-2 {
1832
+ padding-top: 0.5rem !important;
1833
+ padding-bottom: 0.5rem !important;
1834
+ }
1835
+
1836
+ .py-3 {
1837
+ padding-top: 1rem !important;
1838
+ padding-bottom: 1rem !important;
1839
+ }
1840
+
1841
+ .py-4 {
1842
+ padding-top: 1.5rem !important;
1843
+ padding-bottom: 1.5rem !important;
1844
+ }
1845
+
1846
+ .py-5 {
1847
+ padding-top: 3rem !important;
1848
+ padding-bottom: 3rem !important;
1849
+ }
1850
+
1851
+ .pt-0 {
1852
+ padding-top: 0 !important;
1853
+ }
1854
+
1855
+ .pt-1 {
1856
+ padding-top: 0.25rem !important;
1857
+ }
1858
+
1859
+ .pt-2 {
1860
+ padding-top: 0.5rem !important;
1861
+ }
1862
+
1863
+ .pt-3 {
1864
+ padding-top: 1rem !important;
1865
+ }
1866
+
1867
+ .pt-4 {
1868
+ padding-top: 1.5rem !important;
1869
+ }
1870
+
1871
+ .pt-5 {
1872
+ padding-top: 3rem !important;
1873
+ }
1874
+
1875
+ .pe-0 {
1876
+ padding-right: 0 !important;
1877
+ }
1878
+
1879
+ .pe-1 {
1880
+ padding-right: 0.25rem !important;
1881
+ }
1882
+
1883
+ .pe-2 {
1884
+ padding-right: 0.5rem !important;
1885
+ }
1886
+
1887
+ .pe-3 {
1888
+ padding-right: 1rem !important;
1889
+ }
1890
+
1891
+ .pe-4 {
1892
+ padding-right: 1.5rem !important;
1893
+ }
1894
+
1895
+ .pe-5 {
1896
+ padding-right: 3rem !important;
1897
+ }
1898
+
1899
+ .pb-0 {
1900
+ padding-bottom: 0 !important;
1901
+ }
1902
+
1903
+ .pb-1 {
1904
+ padding-bottom: 0.25rem !important;
1905
+ }
1906
+
1907
+ .pb-2 {
1908
+ padding-bottom: 0.5rem !important;
1909
+ }
1910
+
1911
+ .pb-3 {
1912
+ padding-bottom: 1rem !important;
1913
+ }
1914
+
1915
+ .pb-4 {
1916
+ padding-bottom: 1.5rem !important;
1917
+ }
1918
+
1919
+ .pb-5 {
1920
+ padding-bottom: 3rem !important;
1921
+ }
1922
+
1923
+ .ps-0 {
1924
+ padding-left: 0 !important;
1925
+ }
1926
+
1927
+ .ps-1 {
1928
+ padding-left: 0.25rem !important;
1929
+ }
1930
+
1931
+ .ps-2 {
1932
+ padding-left: 0.5rem !important;
1933
+ }
1934
+
1935
+ .ps-3 {
1936
+ padding-left: 1rem !important;
1937
+ }
1938
+
1939
+ .ps-4 {
1940
+ padding-left: 1.5rem !important;
1941
+ }
1942
+
1943
+ .ps-5 {
1944
+ padding-left: 3rem !important;
1945
+ }
1946
+
1947
+ @media (min-width: 576px) {
1948
+ .d-sm-inline {
1949
+ display: inline !important;
1950
+ }
1951
+
1952
+ .d-sm-inline-block {
1953
+ display: inline-block !important;
1954
+ }
1955
+
1956
+ .d-sm-block {
1957
+ display: block !important;
1958
+ }
1959
+
1960
+ .d-sm-grid {
1961
+ display: grid !important;
1962
+ }
1963
+
1964
+ .d-sm-table {
1965
+ display: table !important;
1966
+ }
1967
+
1968
+ .d-sm-table-row {
1969
+ display: table-row !important;
1970
+ }
1971
+
1972
+ .d-sm-table-cell {
1973
+ display: table-cell !important;
1974
+ }
1975
+
1976
+ .d-sm-flex {
1977
+ display: flex !important;
1978
+ }
1979
+
1980
+ .d-sm-inline-flex {
1981
+ display: inline-flex !important;
1982
+ }
1983
+
1984
+ .d-sm-none {
1985
+ display: none !important;
1986
+ }
1987
+
1988
+ .flex-sm-fill {
1989
+ flex: 1 1 auto !important;
1990
+ }
1991
+
1992
+ .flex-sm-row {
1993
+ flex-direction: row !important;
1994
+ }
1995
+
1996
+ .flex-sm-column {
1997
+ flex-direction: column !important;
1998
+ }
1999
+
2000
+ .flex-sm-row-reverse {
2001
+ flex-direction: row-reverse !important;
2002
+ }
2003
+
2004
+ .flex-sm-column-reverse {
2005
+ flex-direction: column-reverse !important;
2006
+ }
2007
+
2008
+ .flex-sm-grow-0 {
2009
+ flex-grow: 0 !important;
2010
+ }
2011
+
2012
+ .flex-sm-grow-1 {
2013
+ flex-grow: 1 !important;
2014
+ }
2015
+
2016
+ .flex-sm-shrink-0 {
2017
+ flex-shrink: 0 !important;
2018
+ }
2019
+
2020
+ .flex-sm-shrink-1 {
2021
+ flex-shrink: 1 !important;
2022
+ }
2023
+
2024
+ .flex-sm-wrap {
2025
+ flex-wrap: wrap !important;
2026
+ }
2027
+
2028
+ .flex-sm-nowrap {
2029
+ flex-wrap: nowrap !important;
2030
+ }
2031
+
2032
+ .flex-sm-wrap-reverse {
2033
+ flex-wrap: wrap-reverse !important;
2034
+ }
2035
+
2036
+ .justify-content-sm-start {
2037
+ justify-content: flex-start !important;
2038
+ }
2039
+
2040
+ .justify-content-sm-end {
2041
+ justify-content: flex-end !important;
2042
+ }
2043
+
2044
+ .justify-content-sm-center {
2045
+ justify-content: center !important;
2046
+ }
2047
+
2048
+ .justify-content-sm-between {
2049
+ justify-content: space-between !important;
2050
+ }
2051
+
2052
+ .justify-content-sm-around {
2053
+ justify-content: space-around !important;
2054
+ }
2055
+
2056
+ .justify-content-sm-evenly {
2057
+ justify-content: space-evenly !important;
2058
+ }
2059
+
2060
+ .align-items-sm-start {
2061
+ align-items: flex-start !important;
2062
+ }
2063
+
2064
+ .align-items-sm-end {
2065
+ align-items: flex-end !important;
2066
+ }
2067
+
2068
+ .align-items-sm-center {
2069
+ align-items: center !important;
2070
+ }
2071
+
2072
+ .align-items-sm-baseline {
2073
+ align-items: baseline !important;
2074
+ }
2075
+
2076
+ .align-items-sm-stretch {
2077
+ align-items: stretch !important;
2078
+ }
2079
+
2080
+ .align-content-sm-start {
2081
+ align-content: flex-start !important;
2082
+ }
2083
+
2084
+ .align-content-sm-end {
2085
+ align-content: flex-end !important;
2086
+ }
2087
+
2088
+ .align-content-sm-center {
2089
+ align-content: center !important;
2090
+ }
2091
+
2092
+ .align-content-sm-between {
2093
+ align-content: space-between !important;
2094
+ }
2095
+
2096
+ .align-content-sm-around {
2097
+ align-content: space-around !important;
2098
+ }
2099
+
2100
+ .align-content-sm-stretch {
2101
+ align-content: stretch !important;
2102
+ }
2103
+
2104
+ .align-self-sm-auto {
2105
+ align-self: auto !important;
2106
+ }
2107
+
2108
+ .align-self-sm-start {
2109
+ align-self: flex-start !important;
2110
+ }
2111
+
2112
+ .align-self-sm-end {
2113
+ align-self: flex-end !important;
2114
+ }
2115
+
2116
+ .align-self-sm-center {
2117
+ align-self: center !important;
2118
+ }
2119
+
2120
+ .align-self-sm-baseline {
2121
+ align-self: baseline !important;
2122
+ }
2123
+
2124
+ .align-self-sm-stretch {
2125
+ align-self: stretch !important;
2126
+ }
2127
+
2128
+ .order-sm-first {
2129
+ order: -1 !important;
2130
+ }
2131
+
2132
+ .order-sm-0 {
2133
+ order: 0 !important;
2134
+ }
2135
+
2136
+ .order-sm-1 {
2137
+ order: 1 !important;
2138
+ }
2139
+
2140
+ .order-sm-2 {
2141
+ order: 2 !important;
2142
+ }
2143
+
2144
+ .order-sm-3 {
2145
+ order: 3 !important;
2146
+ }
2147
+
2148
+ .order-sm-4 {
2149
+ order: 4 !important;
2150
+ }
2151
+
2152
+ .order-sm-5 {
2153
+ order: 5 !important;
2154
+ }
2155
+
2156
+ .order-sm-last {
2157
+ order: 6 !important;
2158
+ }
2159
+
2160
+ .m-sm-0 {
2161
+ margin: 0 !important;
2162
+ }
2163
+
2164
+ .m-sm-1 {
2165
+ margin: 0.25rem !important;
2166
+ }
2167
+
2168
+ .m-sm-2 {
2169
+ margin: 0.5rem !important;
2170
+ }
2171
+
2172
+ .m-sm-3 {
2173
+ margin: 1rem !important;
2174
+ }
2175
+
2176
+ .m-sm-4 {
2177
+ margin: 1.5rem !important;
2178
+ }
2179
+
2180
+ .m-sm-5 {
2181
+ margin: 3rem !important;
2182
+ }
2183
+
2184
+ .m-sm-auto {
2185
+ margin: auto !important;
2186
+ }
2187
+
2188
+ .mx-sm-0 {
2189
+ margin-right: 0 !important;
2190
+ margin-left: 0 !important;
2191
+ }
2192
+
2193
+ .mx-sm-1 {
2194
+ margin-right: 0.25rem !important;
2195
+ margin-left: 0.25rem !important;
2196
+ }
2197
+
2198
+ .mx-sm-2 {
2199
+ margin-right: 0.5rem !important;
2200
+ margin-left: 0.5rem !important;
2201
+ }
2202
+
2203
+ .mx-sm-3 {
2204
+ margin-right: 1rem !important;
2205
+ margin-left: 1rem !important;
2206
+ }
2207
+
2208
+ .mx-sm-4 {
2209
+ margin-right: 1.5rem !important;
2210
+ margin-left: 1.5rem !important;
2211
+ }
2212
+
2213
+ .mx-sm-5 {
2214
+ margin-right: 3rem !important;
2215
+ margin-left: 3rem !important;
2216
+ }
2217
+
2218
+ .mx-sm-auto {
2219
+ margin-right: auto !important;
2220
+ margin-left: auto !important;
2221
+ }
2222
+
2223
+ .my-sm-0 {
2224
+ margin-top: 0 !important;
2225
+ margin-bottom: 0 !important;
2226
+ }
2227
+
2228
+ .my-sm-1 {
2229
+ margin-top: 0.25rem !important;
2230
+ margin-bottom: 0.25rem !important;
2231
+ }
2232
+
2233
+ .my-sm-2 {
2234
+ margin-top: 0.5rem !important;
2235
+ margin-bottom: 0.5rem !important;
2236
+ }
2237
+
2238
+ .my-sm-3 {
2239
+ margin-top: 1rem !important;
2240
+ margin-bottom: 1rem !important;
2241
+ }
2242
+
2243
+ .my-sm-4 {
2244
+ margin-top: 1.5rem !important;
2245
+ margin-bottom: 1.5rem !important;
2246
+ }
2247
+
2248
+ .my-sm-5 {
2249
+ margin-top: 3rem !important;
2250
+ margin-bottom: 3rem !important;
2251
+ }
2252
+
2253
+ .my-sm-auto {
2254
+ margin-top: auto !important;
2255
+ margin-bottom: auto !important;
2256
+ }
2257
+
2258
+ .mt-sm-0 {
2259
+ margin-top: 0 !important;
2260
+ }
2261
+
2262
+ .mt-sm-1 {
2263
+ margin-top: 0.25rem !important;
2264
+ }
2265
+
2266
+ .mt-sm-2 {
2267
+ margin-top: 0.5rem !important;
2268
+ }
2269
+
2270
+ .mt-sm-3 {
2271
+ margin-top: 1rem !important;
2272
+ }
2273
+
2274
+ .mt-sm-4 {
2275
+ margin-top: 1.5rem !important;
2276
+ }
2277
+
2278
+ .mt-sm-5 {
2279
+ margin-top: 3rem !important;
2280
+ }
2281
+
2282
+ .mt-sm-auto {
2283
+ margin-top: auto !important;
2284
+ }
2285
+
2286
+ .me-sm-0 {
2287
+ margin-right: 0 !important;
2288
+ }
2289
+
2290
+ .me-sm-1 {
2291
+ margin-right: 0.25rem !important;
2292
+ }
2293
+
2294
+ .me-sm-2 {
2295
+ margin-right: 0.5rem !important;
2296
+ }
2297
+
2298
+ .me-sm-3 {
2299
+ margin-right: 1rem !important;
2300
+ }
2301
+
2302
+ .me-sm-4 {
2303
+ margin-right: 1.5rem !important;
2304
+ }
2305
+
2306
+ .me-sm-5 {
2307
+ margin-right: 3rem !important;
2308
+ }
2309
+
2310
+ .me-sm-auto {
2311
+ margin-right: auto !important;
2312
+ }
2313
+
2314
+ .mb-sm-0 {
2315
+ margin-bottom: 0 !important;
2316
+ }
2317
+
2318
+ .mb-sm-1 {
2319
+ margin-bottom: 0.25rem !important;
2320
+ }
2321
+
2322
+ .mb-sm-2 {
2323
+ margin-bottom: 0.5rem !important;
2324
+ }
2325
+
2326
+ .mb-sm-3 {
2327
+ margin-bottom: 1rem !important;
2328
+ }
2329
+
2330
+ .mb-sm-4 {
2331
+ margin-bottom: 1.5rem !important;
2332
+ }
2333
+
2334
+ .mb-sm-5 {
2335
+ margin-bottom: 3rem !important;
2336
+ }
2337
+
2338
+ .mb-sm-auto {
2339
+ margin-bottom: auto !important;
2340
+ }
2341
+
2342
+ .ms-sm-0 {
2343
+ margin-left: 0 !important;
2344
+ }
2345
+
2346
+ .ms-sm-1 {
2347
+ margin-left: 0.25rem !important;
2348
+ }
2349
+
2350
+ .ms-sm-2 {
2351
+ margin-left: 0.5rem !important;
2352
+ }
2353
+
2354
+ .ms-sm-3 {
2355
+ margin-left: 1rem !important;
2356
+ }
2357
+
2358
+ .ms-sm-4 {
2359
+ margin-left: 1.5rem !important;
2360
+ }
2361
+
2362
+ .ms-sm-5 {
2363
+ margin-left: 3rem !important;
2364
+ }
2365
+
2366
+ .ms-sm-auto {
2367
+ margin-left: auto !important;
2368
+ }
2369
+
2370
+ .p-sm-0 {
2371
+ padding: 0 !important;
2372
+ }
2373
+
2374
+ .p-sm-1 {
2375
+ padding: 0.25rem !important;
2376
+ }
2377
+
2378
+ .p-sm-2 {
2379
+ padding: 0.5rem !important;
2380
+ }
2381
+
2382
+ .p-sm-3 {
2383
+ padding: 1rem !important;
2384
+ }
2385
+
2386
+ .p-sm-4 {
2387
+ padding: 1.5rem !important;
2388
+ }
2389
+
2390
+ .p-sm-5 {
2391
+ padding: 3rem !important;
2392
+ }
2393
+
2394
+ .px-sm-0 {
2395
+ padding-right: 0 !important;
2396
+ padding-left: 0 !important;
2397
+ }
2398
+
2399
+ .px-sm-1 {
2400
+ padding-right: 0.25rem !important;
2401
+ padding-left: 0.25rem !important;
2402
+ }
2403
+
2404
+ .px-sm-2 {
2405
+ padding-right: 0.5rem !important;
2406
+ padding-left: 0.5rem !important;
2407
+ }
2408
+
2409
+ .px-sm-3 {
2410
+ padding-right: 1rem !important;
2411
+ padding-left: 1rem !important;
2412
+ }
2413
+
2414
+ .px-sm-4 {
2415
+ padding-right: 1.5rem !important;
2416
+ padding-left: 1.5rem !important;
2417
+ }
2418
+
2419
+ .px-sm-5 {
2420
+ padding-right: 3rem !important;
2421
+ padding-left: 3rem !important;
2422
+ }
2423
+
2424
+ .py-sm-0 {
2425
+ padding-top: 0 !important;
2426
+ padding-bottom: 0 !important;
2427
+ }
2428
+
2429
+ .py-sm-1 {
2430
+ padding-top: 0.25rem !important;
2431
+ padding-bottom: 0.25rem !important;
2432
+ }
2433
+
2434
+ .py-sm-2 {
2435
+ padding-top: 0.5rem !important;
2436
+ padding-bottom: 0.5rem !important;
2437
+ }
2438
+
2439
+ .py-sm-3 {
2440
+ padding-top: 1rem !important;
2441
+ padding-bottom: 1rem !important;
2442
+ }
2443
+
2444
+ .py-sm-4 {
2445
+ padding-top: 1.5rem !important;
2446
+ padding-bottom: 1.5rem !important;
2447
+ }
2448
+
2449
+ .py-sm-5 {
2450
+ padding-top: 3rem !important;
2451
+ padding-bottom: 3rem !important;
2452
+ }
2453
+
2454
+ .pt-sm-0 {
2455
+ padding-top: 0 !important;
2456
+ }
2457
+
2458
+ .pt-sm-1 {
2459
+ padding-top: 0.25rem !important;
2460
+ }
2461
+
2462
+ .pt-sm-2 {
2463
+ padding-top: 0.5rem !important;
2464
+ }
2465
+
2466
+ .pt-sm-3 {
2467
+ padding-top: 1rem !important;
2468
+ }
2469
+
2470
+ .pt-sm-4 {
2471
+ padding-top: 1.5rem !important;
2472
+ }
2473
+
2474
+ .pt-sm-5 {
2475
+ padding-top: 3rem !important;
2476
+ }
2477
+
2478
+ .pe-sm-0 {
2479
+ padding-right: 0 !important;
2480
+ }
2481
+
2482
+ .pe-sm-1 {
2483
+ padding-right: 0.25rem !important;
2484
+ }
2485
+
2486
+ .pe-sm-2 {
2487
+ padding-right: 0.5rem !important;
2488
+ }
2489
+
2490
+ .pe-sm-3 {
2491
+ padding-right: 1rem !important;
2492
+ }
2493
+
2494
+ .pe-sm-4 {
2495
+ padding-right: 1.5rem !important;
2496
+ }
2497
+
2498
+ .pe-sm-5 {
2499
+ padding-right: 3rem !important;
2500
+ }
2501
+
2502
+ .pb-sm-0 {
2503
+ padding-bottom: 0 !important;
2504
+ }
2505
+
2506
+ .pb-sm-1 {
2507
+ padding-bottom: 0.25rem !important;
2508
+ }
2509
+
2510
+ .pb-sm-2 {
2511
+ padding-bottom: 0.5rem !important;
2512
+ }
2513
+
2514
+ .pb-sm-3 {
2515
+ padding-bottom: 1rem !important;
2516
+ }
2517
+
2518
+ .pb-sm-4 {
2519
+ padding-bottom: 1.5rem !important;
2520
+ }
2521
+
2522
+ .pb-sm-5 {
2523
+ padding-bottom: 3rem !important;
2524
+ }
2525
+
2526
+ .ps-sm-0 {
2527
+ padding-left: 0 !important;
2528
+ }
2529
+
2530
+ .ps-sm-1 {
2531
+ padding-left: 0.25rem !important;
2532
+ }
2533
+
2534
+ .ps-sm-2 {
2535
+ padding-left: 0.5rem !important;
2536
+ }
2537
+
2538
+ .ps-sm-3 {
2539
+ padding-left: 1rem !important;
2540
+ }
2541
+
2542
+ .ps-sm-4 {
2543
+ padding-left: 1.5rem !important;
2544
+ }
2545
+
2546
+ .ps-sm-5 {
2547
+ padding-left: 3rem !important;
2548
+ }
2549
+ }
2550
+ @media (min-width: 768px) {
2551
+ .d-md-inline {
2552
+ display: inline !important;
2553
+ }
2554
+
2555
+ .d-md-inline-block {
2556
+ display: inline-block !important;
2557
+ }
2558
+
2559
+ .d-md-block {
2560
+ display: block !important;
2561
+ }
2562
+
2563
+ .d-md-grid {
2564
+ display: grid !important;
2565
+ }
2566
+
2567
+ .d-md-table {
2568
+ display: table !important;
2569
+ }
2570
+
2571
+ .d-md-table-row {
2572
+ display: table-row !important;
2573
+ }
2574
+
2575
+ .d-md-table-cell {
2576
+ display: table-cell !important;
2577
+ }
2578
+
2579
+ .d-md-flex {
2580
+ display: flex !important;
2581
+ }
2582
+
2583
+ .d-md-inline-flex {
2584
+ display: inline-flex !important;
2585
+ }
2586
+
2587
+ .d-md-none {
2588
+ display: none !important;
2589
+ }
2590
+
2591
+ .flex-md-fill {
2592
+ flex: 1 1 auto !important;
2593
+ }
2594
+
2595
+ .flex-md-row {
2596
+ flex-direction: row !important;
2597
+ }
2598
+
2599
+ .flex-md-column {
2600
+ flex-direction: column !important;
2601
+ }
2602
+
2603
+ .flex-md-row-reverse {
2604
+ flex-direction: row-reverse !important;
2605
+ }
2606
+
2607
+ .flex-md-column-reverse {
2608
+ flex-direction: column-reverse !important;
2609
+ }
2610
+
2611
+ .flex-md-grow-0 {
2612
+ flex-grow: 0 !important;
2613
+ }
2614
+
2615
+ .flex-md-grow-1 {
2616
+ flex-grow: 1 !important;
2617
+ }
2618
+
2619
+ .flex-md-shrink-0 {
2620
+ flex-shrink: 0 !important;
2621
+ }
2622
+
2623
+ .flex-md-shrink-1 {
2624
+ flex-shrink: 1 !important;
2625
+ }
2626
+
2627
+ .flex-md-wrap {
2628
+ flex-wrap: wrap !important;
2629
+ }
2630
+
2631
+ .flex-md-nowrap {
2632
+ flex-wrap: nowrap !important;
2633
+ }
2634
+
2635
+ .flex-md-wrap-reverse {
2636
+ flex-wrap: wrap-reverse !important;
2637
+ }
2638
+
2639
+ .justify-content-md-start {
2640
+ justify-content: flex-start !important;
2641
+ }
2642
+
2643
+ .justify-content-md-end {
2644
+ justify-content: flex-end !important;
2645
+ }
2646
+
2647
+ .justify-content-md-center {
2648
+ justify-content: center !important;
2649
+ }
2650
+
2651
+ .justify-content-md-between {
2652
+ justify-content: space-between !important;
2653
+ }
2654
+
2655
+ .justify-content-md-around {
2656
+ justify-content: space-around !important;
2657
+ }
2658
+
2659
+ .justify-content-md-evenly {
2660
+ justify-content: space-evenly !important;
2661
+ }
2662
+
2663
+ .align-items-md-start {
2664
+ align-items: flex-start !important;
2665
+ }
2666
+
2667
+ .align-items-md-end {
2668
+ align-items: flex-end !important;
2669
+ }
2670
+
2671
+ .align-items-md-center {
2672
+ align-items: center !important;
2673
+ }
2674
+
2675
+ .align-items-md-baseline {
2676
+ align-items: baseline !important;
2677
+ }
2678
+
2679
+ .align-items-md-stretch {
2680
+ align-items: stretch !important;
2681
+ }
2682
+
2683
+ .align-content-md-start {
2684
+ align-content: flex-start !important;
2685
+ }
2686
+
2687
+ .align-content-md-end {
2688
+ align-content: flex-end !important;
2689
+ }
2690
+
2691
+ .align-content-md-center {
2692
+ align-content: center !important;
2693
+ }
2694
+
2695
+ .align-content-md-between {
2696
+ align-content: space-between !important;
2697
+ }
2698
+
2699
+ .align-content-md-around {
2700
+ align-content: space-around !important;
2701
+ }
2702
+
2703
+ .align-content-md-stretch {
2704
+ align-content: stretch !important;
2705
+ }
2706
+
2707
+ .align-self-md-auto {
2708
+ align-self: auto !important;
2709
+ }
2710
+
2711
+ .align-self-md-start {
2712
+ align-self: flex-start !important;
2713
+ }
2714
+
2715
+ .align-self-md-end {
2716
+ align-self: flex-end !important;
2717
+ }
2718
+
2719
+ .align-self-md-center {
2720
+ align-self: center !important;
2721
+ }
2722
+
2723
+ .align-self-md-baseline {
2724
+ align-self: baseline !important;
2725
+ }
2726
+
2727
+ .align-self-md-stretch {
2728
+ align-self: stretch !important;
2729
+ }
2730
+
2731
+ .order-md-first {
2732
+ order: -1 !important;
2733
+ }
2734
+
2735
+ .order-md-0 {
2736
+ order: 0 !important;
2737
+ }
2738
+
2739
+ .order-md-1 {
2740
+ order: 1 !important;
2741
+ }
2742
+
2743
+ .order-md-2 {
2744
+ order: 2 !important;
2745
+ }
2746
+
2747
+ .order-md-3 {
2748
+ order: 3 !important;
2749
+ }
2750
+
2751
+ .order-md-4 {
2752
+ order: 4 !important;
2753
+ }
2754
+
2755
+ .order-md-5 {
2756
+ order: 5 !important;
2757
+ }
2758
+
2759
+ .order-md-last {
2760
+ order: 6 !important;
2761
+ }
2762
+
2763
+ .m-md-0 {
2764
+ margin: 0 !important;
2765
+ }
2766
+
2767
+ .m-md-1 {
2768
+ margin: 0.25rem !important;
2769
+ }
2770
+
2771
+ .m-md-2 {
2772
+ margin: 0.5rem !important;
2773
+ }
2774
+
2775
+ .m-md-3 {
2776
+ margin: 1rem !important;
2777
+ }
2778
+
2779
+ .m-md-4 {
2780
+ margin: 1.5rem !important;
2781
+ }
2782
+
2783
+ .m-md-5 {
2784
+ margin: 3rem !important;
2785
+ }
2786
+
2787
+ .m-md-auto {
2788
+ margin: auto !important;
2789
+ }
2790
+
2791
+ .mx-md-0 {
2792
+ margin-right: 0 !important;
2793
+ margin-left: 0 !important;
2794
+ }
2795
+
2796
+ .mx-md-1 {
2797
+ margin-right: 0.25rem !important;
2798
+ margin-left: 0.25rem !important;
2799
+ }
2800
+
2801
+ .mx-md-2 {
2802
+ margin-right: 0.5rem !important;
2803
+ margin-left: 0.5rem !important;
2804
+ }
2805
+
2806
+ .mx-md-3 {
2807
+ margin-right: 1rem !important;
2808
+ margin-left: 1rem !important;
2809
+ }
2810
+
2811
+ .mx-md-4 {
2812
+ margin-right: 1.5rem !important;
2813
+ margin-left: 1.5rem !important;
2814
+ }
2815
+
2816
+ .mx-md-5 {
2817
+ margin-right: 3rem !important;
2818
+ margin-left: 3rem !important;
2819
+ }
2820
+
2821
+ .mx-md-auto {
2822
+ margin-right: auto !important;
2823
+ margin-left: auto !important;
2824
+ }
2825
+
2826
+ .my-md-0 {
2827
+ margin-top: 0 !important;
2828
+ margin-bottom: 0 !important;
2829
+ }
2830
+
2831
+ .my-md-1 {
2832
+ margin-top: 0.25rem !important;
2833
+ margin-bottom: 0.25rem !important;
2834
+ }
2835
+
2836
+ .my-md-2 {
2837
+ margin-top: 0.5rem !important;
2838
+ margin-bottom: 0.5rem !important;
2839
+ }
2840
+
2841
+ .my-md-3 {
2842
+ margin-top: 1rem !important;
2843
+ margin-bottom: 1rem !important;
2844
+ }
2845
+
2846
+ .my-md-4 {
2847
+ margin-top: 1.5rem !important;
2848
+ margin-bottom: 1.5rem !important;
2849
+ }
2850
+
2851
+ .my-md-5 {
2852
+ margin-top: 3rem !important;
2853
+ margin-bottom: 3rem !important;
2854
+ }
2855
+
2856
+ .my-md-auto {
2857
+ margin-top: auto !important;
2858
+ margin-bottom: auto !important;
2859
+ }
2860
+
2861
+ .mt-md-0 {
2862
+ margin-top: 0 !important;
2863
+ }
2864
+
2865
+ .mt-md-1 {
2866
+ margin-top: 0.25rem !important;
2867
+ }
2868
+
2869
+ .mt-md-2 {
2870
+ margin-top: 0.5rem !important;
2871
+ }
2872
+
2873
+ .mt-md-3 {
2874
+ margin-top: 1rem !important;
2875
+ }
2876
+
2877
+ .mt-md-4 {
2878
+ margin-top: 1.5rem !important;
2879
+ }
2880
+
2881
+ .mt-md-5 {
2882
+ margin-top: 3rem !important;
2883
+ }
2884
+
2885
+ .mt-md-auto {
2886
+ margin-top: auto !important;
2887
+ }
2888
+
2889
+ .me-md-0 {
2890
+ margin-right: 0 !important;
2891
+ }
2892
+
2893
+ .me-md-1 {
2894
+ margin-right: 0.25rem !important;
2895
+ }
2896
+
2897
+ .me-md-2 {
2898
+ margin-right: 0.5rem !important;
2899
+ }
2900
+
2901
+ .me-md-3 {
2902
+ margin-right: 1rem !important;
2903
+ }
2904
+
2905
+ .me-md-4 {
2906
+ margin-right: 1.5rem !important;
2907
+ }
2908
+
2909
+ .me-md-5 {
2910
+ margin-right: 3rem !important;
2911
+ }
2912
+
2913
+ .me-md-auto {
2914
+ margin-right: auto !important;
2915
+ }
2916
+
2917
+ .mb-md-0 {
2918
+ margin-bottom: 0 !important;
2919
+ }
2920
+
2921
+ .mb-md-1 {
2922
+ margin-bottom: 0.25rem !important;
2923
+ }
2924
+
2925
+ .mb-md-2 {
2926
+ margin-bottom: 0.5rem !important;
2927
+ }
2928
+
2929
+ .mb-md-3 {
2930
+ margin-bottom: 1rem !important;
2931
+ }
2932
+
2933
+ .mb-md-4 {
2934
+ margin-bottom: 1.5rem !important;
2935
+ }
2936
+
2937
+ .mb-md-5 {
2938
+ margin-bottom: 3rem !important;
2939
+ }
2940
+
2941
+ .mb-md-auto {
2942
+ margin-bottom: auto !important;
2943
+ }
2944
+
2945
+ .ms-md-0 {
2946
+ margin-left: 0 !important;
2947
+ }
2948
+
2949
+ .ms-md-1 {
2950
+ margin-left: 0.25rem !important;
2951
+ }
2952
+
2953
+ .ms-md-2 {
2954
+ margin-left: 0.5rem !important;
2955
+ }
2956
+
2957
+ .ms-md-3 {
2958
+ margin-left: 1rem !important;
2959
+ }
2960
+
2961
+ .ms-md-4 {
2962
+ margin-left: 1.5rem !important;
2963
+ }
2964
+
2965
+ .ms-md-5 {
2966
+ margin-left: 3rem !important;
2967
+ }
2968
+
2969
+ .ms-md-auto {
2970
+ margin-left: auto !important;
2971
+ }
2972
+
2973
+ .p-md-0 {
2974
+ padding: 0 !important;
2975
+ }
2976
+
2977
+ .p-md-1 {
2978
+ padding: 0.25rem !important;
2979
+ }
2980
+
2981
+ .p-md-2 {
2982
+ padding: 0.5rem !important;
2983
+ }
2984
+
2985
+ .p-md-3 {
2986
+ padding: 1rem !important;
2987
+ }
2988
+
2989
+ .p-md-4 {
2990
+ padding: 1.5rem !important;
2991
+ }
2992
+
2993
+ .p-md-5 {
2994
+ padding: 3rem !important;
2995
+ }
2996
+
2997
+ .px-md-0 {
2998
+ padding-right: 0 !important;
2999
+ padding-left: 0 !important;
3000
+ }
3001
+
3002
+ .px-md-1 {
3003
+ padding-right: 0.25rem !important;
3004
+ padding-left: 0.25rem !important;
3005
+ }
3006
+
3007
+ .px-md-2 {
3008
+ padding-right: 0.5rem !important;
3009
+ padding-left: 0.5rem !important;
3010
+ }
3011
+
3012
+ .px-md-3 {
3013
+ padding-right: 1rem !important;
3014
+ padding-left: 1rem !important;
3015
+ }
3016
+
3017
+ .px-md-4 {
3018
+ padding-right: 1.5rem !important;
3019
+ padding-left: 1.5rem !important;
3020
+ }
3021
+
3022
+ .px-md-5 {
3023
+ padding-right: 3rem !important;
3024
+ padding-left: 3rem !important;
3025
+ }
3026
+
3027
+ .py-md-0 {
3028
+ padding-top: 0 !important;
3029
+ padding-bottom: 0 !important;
3030
+ }
3031
+
3032
+ .py-md-1 {
3033
+ padding-top: 0.25rem !important;
3034
+ padding-bottom: 0.25rem !important;
3035
+ }
3036
+
3037
+ .py-md-2 {
3038
+ padding-top: 0.5rem !important;
3039
+ padding-bottom: 0.5rem !important;
3040
+ }
3041
+
3042
+ .py-md-3 {
3043
+ padding-top: 1rem !important;
3044
+ padding-bottom: 1rem !important;
3045
+ }
3046
+
3047
+ .py-md-4 {
3048
+ padding-top: 1.5rem !important;
3049
+ padding-bottom: 1.5rem !important;
3050
+ }
3051
+
3052
+ .py-md-5 {
3053
+ padding-top: 3rem !important;
3054
+ padding-bottom: 3rem !important;
3055
+ }
3056
+
3057
+ .pt-md-0 {
3058
+ padding-top: 0 !important;
3059
+ }
3060
+
3061
+ .pt-md-1 {
3062
+ padding-top: 0.25rem !important;
3063
+ }
3064
+
3065
+ .pt-md-2 {
3066
+ padding-top: 0.5rem !important;
3067
+ }
3068
+
3069
+ .pt-md-3 {
3070
+ padding-top: 1rem !important;
3071
+ }
3072
+
3073
+ .pt-md-4 {
3074
+ padding-top: 1.5rem !important;
3075
+ }
3076
+
3077
+ .pt-md-5 {
3078
+ padding-top: 3rem !important;
3079
+ }
3080
+
3081
+ .pe-md-0 {
3082
+ padding-right: 0 !important;
3083
+ }
3084
+
3085
+ .pe-md-1 {
3086
+ padding-right: 0.25rem !important;
3087
+ }
3088
+
3089
+ .pe-md-2 {
3090
+ padding-right: 0.5rem !important;
3091
+ }
3092
+
3093
+ .pe-md-3 {
3094
+ padding-right: 1rem !important;
3095
+ }
3096
+
3097
+ .pe-md-4 {
3098
+ padding-right: 1.5rem !important;
3099
+ }
3100
+
3101
+ .pe-md-5 {
3102
+ padding-right: 3rem !important;
3103
+ }
3104
+
3105
+ .pb-md-0 {
3106
+ padding-bottom: 0 !important;
3107
+ }
3108
+
3109
+ .pb-md-1 {
3110
+ padding-bottom: 0.25rem !important;
3111
+ }
3112
+
3113
+ .pb-md-2 {
3114
+ padding-bottom: 0.5rem !important;
3115
+ }
3116
+
3117
+ .pb-md-3 {
3118
+ padding-bottom: 1rem !important;
3119
+ }
3120
+
3121
+ .pb-md-4 {
3122
+ padding-bottom: 1.5rem !important;
3123
+ }
3124
+
3125
+ .pb-md-5 {
3126
+ padding-bottom: 3rem !important;
3127
+ }
3128
+
3129
+ .ps-md-0 {
3130
+ padding-left: 0 !important;
3131
+ }
3132
+
3133
+ .ps-md-1 {
3134
+ padding-left: 0.25rem !important;
3135
+ }
3136
+
3137
+ .ps-md-2 {
3138
+ padding-left: 0.5rem !important;
3139
+ }
3140
+
3141
+ .ps-md-3 {
3142
+ padding-left: 1rem !important;
3143
+ }
3144
+
3145
+ .ps-md-4 {
3146
+ padding-left: 1.5rem !important;
3147
+ }
3148
+
3149
+ .ps-md-5 {
3150
+ padding-left: 3rem !important;
3151
+ }
3152
+ }
3153
+ @media (min-width: 992px) {
3154
+ .d-lg-inline {
3155
+ display: inline !important;
3156
+ }
3157
+
3158
+ .d-lg-inline-block {
3159
+ display: inline-block !important;
3160
+ }
3161
+
3162
+ .d-lg-block {
3163
+ display: block !important;
3164
+ }
3165
+
3166
+ .d-lg-grid {
3167
+ display: grid !important;
3168
+ }
3169
+
3170
+ .d-lg-table {
3171
+ display: table !important;
3172
+ }
3173
+
3174
+ .d-lg-table-row {
3175
+ display: table-row !important;
3176
+ }
3177
+
3178
+ .d-lg-table-cell {
3179
+ display: table-cell !important;
3180
+ }
3181
+
3182
+ .d-lg-flex {
3183
+ display: flex !important;
3184
+ }
3185
+
3186
+ .d-lg-inline-flex {
3187
+ display: inline-flex !important;
3188
+ }
3189
+
3190
+ .d-lg-none {
3191
+ display: none !important;
3192
+ }
3193
+
3194
+ .flex-lg-fill {
3195
+ flex: 1 1 auto !important;
3196
+ }
3197
+
3198
+ .flex-lg-row {
3199
+ flex-direction: row !important;
3200
+ }
3201
+
3202
+ .flex-lg-column {
3203
+ flex-direction: column !important;
3204
+ }
3205
+
3206
+ .flex-lg-row-reverse {
3207
+ flex-direction: row-reverse !important;
3208
+ }
3209
+
3210
+ .flex-lg-column-reverse {
3211
+ flex-direction: column-reverse !important;
3212
+ }
3213
+
3214
+ .flex-lg-grow-0 {
3215
+ flex-grow: 0 !important;
3216
+ }
3217
+
3218
+ .flex-lg-grow-1 {
3219
+ flex-grow: 1 !important;
3220
+ }
3221
+
3222
+ .flex-lg-shrink-0 {
3223
+ flex-shrink: 0 !important;
3224
+ }
3225
+
3226
+ .flex-lg-shrink-1 {
3227
+ flex-shrink: 1 !important;
3228
+ }
3229
+
3230
+ .flex-lg-wrap {
3231
+ flex-wrap: wrap !important;
3232
+ }
3233
+
3234
+ .flex-lg-nowrap {
3235
+ flex-wrap: nowrap !important;
3236
+ }
3237
+
3238
+ .flex-lg-wrap-reverse {
3239
+ flex-wrap: wrap-reverse !important;
3240
+ }
3241
+
3242
+ .justify-content-lg-start {
3243
+ justify-content: flex-start !important;
3244
+ }
3245
+
3246
+ .justify-content-lg-end {
3247
+ justify-content: flex-end !important;
3248
+ }
3249
+
3250
+ .justify-content-lg-center {
3251
+ justify-content: center !important;
3252
+ }
3253
+
3254
+ .justify-content-lg-between {
3255
+ justify-content: space-between !important;
3256
+ }
3257
+
3258
+ .justify-content-lg-around {
3259
+ justify-content: space-around !important;
3260
+ }
3261
+
3262
+ .justify-content-lg-evenly {
3263
+ justify-content: space-evenly !important;
3264
+ }
3265
+
3266
+ .align-items-lg-start {
3267
+ align-items: flex-start !important;
3268
+ }
3269
+
3270
+ .align-items-lg-end {
3271
+ align-items: flex-end !important;
3272
+ }
3273
+
3274
+ .align-items-lg-center {
3275
+ align-items: center !important;
3276
+ }
3277
+
3278
+ .align-items-lg-baseline {
3279
+ align-items: baseline !important;
3280
+ }
3281
+
3282
+ .align-items-lg-stretch {
3283
+ align-items: stretch !important;
3284
+ }
3285
+
3286
+ .align-content-lg-start {
3287
+ align-content: flex-start !important;
3288
+ }
3289
+
3290
+ .align-content-lg-end {
3291
+ align-content: flex-end !important;
3292
+ }
3293
+
3294
+ .align-content-lg-center {
3295
+ align-content: center !important;
3296
+ }
3297
+
3298
+ .align-content-lg-between {
3299
+ align-content: space-between !important;
3300
+ }
3301
+
3302
+ .align-content-lg-around {
3303
+ align-content: space-around !important;
3304
+ }
3305
+
3306
+ .align-content-lg-stretch {
3307
+ align-content: stretch !important;
3308
+ }
3309
+
3310
+ .align-self-lg-auto {
3311
+ align-self: auto !important;
3312
+ }
3313
+
3314
+ .align-self-lg-start {
3315
+ align-self: flex-start !important;
3316
+ }
3317
+
3318
+ .align-self-lg-end {
3319
+ align-self: flex-end !important;
3320
+ }
3321
+
3322
+ .align-self-lg-center {
3323
+ align-self: center !important;
3324
+ }
3325
+
3326
+ .align-self-lg-baseline {
3327
+ align-self: baseline !important;
3328
+ }
3329
+
3330
+ .align-self-lg-stretch {
3331
+ align-self: stretch !important;
3332
+ }
3333
+
3334
+ .order-lg-first {
3335
+ order: -1 !important;
3336
+ }
3337
+
3338
+ .order-lg-0 {
3339
+ order: 0 !important;
3340
+ }
3341
+
3342
+ .order-lg-1 {
3343
+ order: 1 !important;
3344
+ }
3345
+
3346
+ .order-lg-2 {
3347
+ order: 2 !important;
3348
+ }
3349
+
3350
+ .order-lg-3 {
3351
+ order: 3 !important;
3352
+ }
3353
+
3354
+ .order-lg-4 {
3355
+ order: 4 !important;
3356
+ }
3357
+
3358
+ .order-lg-5 {
3359
+ order: 5 !important;
3360
+ }
3361
+
3362
+ .order-lg-last {
3363
+ order: 6 !important;
3364
+ }
3365
+
3366
+ .m-lg-0 {
3367
+ margin: 0 !important;
3368
+ }
3369
+
3370
+ .m-lg-1 {
3371
+ margin: 0.25rem !important;
3372
+ }
3373
+
3374
+ .m-lg-2 {
3375
+ margin: 0.5rem !important;
3376
+ }
3377
+
3378
+ .m-lg-3 {
3379
+ margin: 1rem !important;
3380
+ }
3381
+
3382
+ .m-lg-4 {
3383
+ margin: 1.5rem !important;
3384
+ }
3385
+
3386
+ .m-lg-5 {
3387
+ margin: 3rem !important;
3388
+ }
3389
+
3390
+ .m-lg-auto {
3391
+ margin: auto !important;
3392
+ }
3393
+
3394
+ .mx-lg-0 {
3395
+ margin-right: 0 !important;
3396
+ margin-left: 0 !important;
3397
+ }
3398
+
3399
+ .mx-lg-1 {
3400
+ margin-right: 0.25rem !important;
3401
+ margin-left: 0.25rem !important;
3402
+ }
3403
+
3404
+ .mx-lg-2 {
3405
+ margin-right: 0.5rem !important;
3406
+ margin-left: 0.5rem !important;
3407
+ }
3408
+
3409
+ .mx-lg-3 {
3410
+ margin-right: 1rem !important;
3411
+ margin-left: 1rem !important;
3412
+ }
3413
+
3414
+ .mx-lg-4 {
3415
+ margin-right: 1.5rem !important;
3416
+ margin-left: 1.5rem !important;
3417
+ }
3418
+
3419
+ .mx-lg-5 {
3420
+ margin-right: 3rem !important;
3421
+ margin-left: 3rem !important;
3422
+ }
3423
+
3424
+ .mx-lg-auto {
3425
+ margin-right: auto !important;
3426
+ margin-left: auto !important;
3427
+ }
3428
+
3429
+ .my-lg-0 {
3430
+ margin-top: 0 !important;
3431
+ margin-bottom: 0 !important;
3432
+ }
3433
+
3434
+ .my-lg-1 {
3435
+ margin-top: 0.25rem !important;
3436
+ margin-bottom: 0.25rem !important;
3437
+ }
3438
+
3439
+ .my-lg-2 {
3440
+ margin-top: 0.5rem !important;
3441
+ margin-bottom: 0.5rem !important;
3442
+ }
3443
+
3444
+ .my-lg-3 {
3445
+ margin-top: 1rem !important;
3446
+ margin-bottom: 1rem !important;
3447
+ }
3448
+
3449
+ .my-lg-4 {
3450
+ margin-top: 1.5rem !important;
3451
+ margin-bottom: 1.5rem !important;
3452
+ }
3453
+
3454
+ .my-lg-5 {
3455
+ margin-top: 3rem !important;
3456
+ margin-bottom: 3rem !important;
3457
+ }
3458
+
3459
+ .my-lg-auto {
3460
+ margin-top: auto !important;
3461
+ margin-bottom: auto !important;
3462
+ }
3463
+
3464
+ .mt-lg-0 {
3465
+ margin-top: 0 !important;
3466
+ }
3467
+
3468
+ .mt-lg-1 {
3469
+ margin-top: 0.25rem !important;
3470
+ }
3471
+
3472
+ .mt-lg-2 {
3473
+ margin-top: 0.5rem !important;
3474
+ }
3475
+
3476
+ .mt-lg-3 {
3477
+ margin-top: 1rem !important;
3478
+ }
3479
+
3480
+ .mt-lg-4 {
3481
+ margin-top: 1.5rem !important;
3482
+ }
3483
+
3484
+ .mt-lg-5 {
3485
+ margin-top: 3rem !important;
3486
+ }
3487
+
3488
+ .mt-lg-auto {
3489
+ margin-top: auto !important;
3490
+ }
3491
+
3492
+ .me-lg-0 {
3493
+ margin-right: 0 !important;
3494
+ }
3495
+
3496
+ .me-lg-1 {
3497
+ margin-right: 0.25rem !important;
3498
+ }
3499
+
3500
+ .me-lg-2 {
3501
+ margin-right: 0.5rem !important;
3502
+ }
3503
+
3504
+ .me-lg-3 {
3505
+ margin-right: 1rem !important;
3506
+ }
3507
+
3508
+ .me-lg-4 {
3509
+ margin-right: 1.5rem !important;
3510
+ }
3511
+
3512
+ .me-lg-5 {
3513
+ margin-right: 3rem !important;
3514
+ }
3515
+
3516
+ .me-lg-auto {
3517
+ margin-right: auto !important;
3518
+ }
3519
+
3520
+ .mb-lg-0 {
3521
+ margin-bottom: 0 !important;
3522
+ }
3523
+
3524
+ .mb-lg-1 {
3525
+ margin-bottom: 0.25rem !important;
3526
+ }
3527
+
3528
+ .mb-lg-2 {
3529
+ margin-bottom: 0.5rem !important;
3530
+ }
3531
+
3532
+ .mb-lg-3 {
3533
+ margin-bottom: 1rem !important;
3534
+ }
3535
+
3536
+ .mb-lg-4 {
3537
+ margin-bottom: 1.5rem !important;
3538
+ }
3539
+
3540
+ .mb-lg-5 {
3541
+ margin-bottom: 3rem !important;
3542
+ }
3543
+
3544
+ .mb-lg-auto {
3545
+ margin-bottom: auto !important;
3546
+ }
3547
+
3548
+ .ms-lg-0 {
3549
+ margin-left: 0 !important;
3550
+ }
3551
+
3552
+ .ms-lg-1 {
3553
+ margin-left: 0.25rem !important;
3554
+ }
3555
+
3556
+ .ms-lg-2 {
3557
+ margin-left: 0.5rem !important;
3558
+ }
3559
+
3560
+ .ms-lg-3 {
3561
+ margin-left: 1rem !important;
3562
+ }
3563
+
3564
+ .ms-lg-4 {
3565
+ margin-left: 1.5rem !important;
3566
+ }
3567
+
3568
+ .ms-lg-5 {
3569
+ margin-left: 3rem !important;
3570
+ }
3571
+
3572
+ .ms-lg-auto {
3573
+ margin-left: auto !important;
3574
+ }
3575
+
3576
+ .p-lg-0 {
3577
+ padding: 0 !important;
3578
+ }
3579
+
3580
+ .p-lg-1 {
3581
+ padding: 0.25rem !important;
3582
+ }
3583
+
3584
+ .p-lg-2 {
3585
+ padding: 0.5rem !important;
3586
+ }
3587
+
3588
+ .p-lg-3 {
3589
+ padding: 1rem !important;
3590
+ }
3591
+
3592
+ .p-lg-4 {
3593
+ padding: 1.5rem !important;
3594
+ }
3595
+
3596
+ .p-lg-5 {
3597
+ padding: 3rem !important;
3598
+ }
3599
+
3600
+ .px-lg-0 {
3601
+ padding-right: 0 !important;
3602
+ padding-left: 0 !important;
3603
+ }
3604
+
3605
+ .px-lg-1 {
3606
+ padding-right: 0.25rem !important;
3607
+ padding-left: 0.25rem !important;
3608
+ }
3609
+
3610
+ .px-lg-2 {
3611
+ padding-right: 0.5rem !important;
3612
+ padding-left: 0.5rem !important;
3613
+ }
3614
+
3615
+ .px-lg-3 {
3616
+ padding-right: 1rem !important;
3617
+ padding-left: 1rem !important;
3618
+ }
3619
+
3620
+ .px-lg-4 {
3621
+ padding-right: 1.5rem !important;
3622
+ padding-left: 1.5rem !important;
3623
+ }
3624
+
3625
+ .px-lg-5 {
3626
+ padding-right: 3rem !important;
3627
+ padding-left: 3rem !important;
3628
+ }
3629
+
3630
+ .py-lg-0 {
3631
+ padding-top: 0 !important;
3632
+ padding-bottom: 0 !important;
3633
+ }
3634
+
3635
+ .py-lg-1 {
3636
+ padding-top: 0.25rem !important;
3637
+ padding-bottom: 0.25rem !important;
3638
+ }
3639
+
3640
+ .py-lg-2 {
3641
+ padding-top: 0.5rem !important;
3642
+ padding-bottom: 0.5rem !important;
3643
+ }
3644
+
3645
+ .py-lg-3 {
3646
+ padding-top: 1rem !important;
3647
+ padding-bottom: 1rem !important;
3648
+ }
3649
+
3650
+ .py-lg-4 {
3651
+ padding-top: 1.5rem !important;
3652
+ padding-bottom: 1.5rem !important;
3653
+ }
3654
+
3655
+ .py-lg-5 {
3656
+ padding-top: 3rem !important;
3657
+ padding-bottom: 3rem !important;
3658
+ }
3659
+
3660
+ .pt-lg-0 {
3661
+ padding-top: 0 !important;
3662
+ }
3663
+
3664
+ .pt-lg-1 {
3665
+ padding-top: 0.25rem !important;
3666
+ }
3667
+
3668
+ .pt-lg-2 {
3669
+ padding-top: 0.5rem !important;
3670
+ }
3671
+
3672
+ .pt-lg-3 {
3673
+ padding-top: 1rem !important;
3674
+ }
3675
+
3676
+ .pt-lg-4 {
3677
+ padding-top: 1.5rem !important;
3678
+ }
3679
+
3680
+ .pt-lg-5 {
3681
+ padding-top: 3rem !important;
3682
+ }
3683
+
3684
+ .pe-lg-0 {
3685
+ padding-right: 0 !important;
3686
+ }
3687
+
3688
+ .pe-lg-1 {
3689
+ padding-right: 0.25rem !important;
3690
+ }
3691
+
3692
+ .pe-lg-2 {
3693
+ padding-right: 0.5rem !important;
3694
+ }
3695
+
3696
+ .pe-lg-3 {
3697
+ padding-right: 1rem !important;
3698
+ }
3699
+
3700
+ .pe-lg-4 {
3701
+ padding-right: 1.5rem !important;
3702
+ }
3703
+
3704
+ .pe-lg-5 {
3705
+ padding-right: 3rem !important;
3706
+ }
3707
+
3708
+ .pb-lg-0 {
3709
+ padding-bottom: 0 !important;
3710
+ }
3711
+
3712
+ .pb-lg-1 {
3713
+ padding-bottom: 0.25rem !important;
3714
+ }
3715
+
3716
+ .pb-lg-2 {
3717
+ padding-bottom: 0.5rem !important;
3718
+ }
3719
+
3720
+ .pb-lg-3 {
3721
+ padding-bottom: 1rem !important;
3722
+ }
3723
+
3724
+ .pb-lg-4 {
3725
+ padding-bottom: 1.5rem !important;
3726
+ }
3727
+
3728
+ .pb-lg-5 {
3729
+ padding-bottom: 3rem !important;
3730
+ }
3731
+
3732
+ .ps-lg-0 {
3733
+ padding-left: 0 !important;
3734
+ }
3735
+
3736
+ .ps-lg-1 {
3737
+ padding-left: 0.25rem !important;
3738
+ }
3739
+
3740
+ .ps-lg-2 {
3741
+ padding-left: 0.5rem !important;
3742
+ }
3743
+
3744
+ .ps-lg-3 {
3745
+ padding-left: 1rem !important;
3746
+ }
3747
+
3748
+ .ps-lg-4 {
3749
+ padding-left: 1.5rem !important;
3750
+ }
3751
+
3752
+ .ps-lg-5 {
3753
+ padding-left: 3rem !important;
3754
+ }
3755
+ }
3756
+ @media (min-width: 1200px) {
3757
+ .d-xl-inline {
3758
+ display: inline !important;
3759
+ }
3760
+
3761
+ .d-xl-inline-block {
3762
+ display: inline-block !important;
3763
+ }
3764
+
3765
+ .d-xl-block {
3766
+ display: block !important;
3767
+ }
3768
+
3769
+ .d-xl-grid {
3770
+ display: grid !important;
3771
+ }
3772
+
3773
+ .d-xl-table {
3774
+ display: table !important;
3775
+ }
3776
+
3777
+ .d-xl-table-row {
3778
+ display: table-row !important;
3779
+ }
3780
+
3781
+ .d-xl-table-cell {
3782
+ display: table-cell !important;
3783
+ }
3784
+
3785
+ .d-xl-flex {
3786
+ display: flex !important;
3787
+ }
3788
+
3789
+ .d-xl-inline-flex {
3790
+ display: inline-flex !important;
3791
+ }
3792
+
3793
+ .d-xl-none {
3794
+ display: none !important;
3795
+ }
3796
+
3797
+ .flex-xl-fill {
3798
+ flex: 1 1 auto !important;
3799
+ }
3800
+
3801
+ .flex-xl-row {
3802
+ flex-direction: row !important;
3803
+ }
3804
+
3805
+ .flex-xl-column {
3806
+ flex-direction: column !important;
3807
+ }
3808
+
3809
+ .flex-xl-row-reverse {
3810
+ flex-direction: row-reverse !important;
3811
+ }
3812
+
3813
+ .flex-xl-column-reverse {
3814
+ flex-direction: column-reverse !important;
3815
+ }
3816
+
3817
+ .flex-xl-grow-0 {
3818
+ flex-grow: 0 !important;
3819
+ }
3820
+
3821
+ .flex-xl-grow-1 {
3822
+ flex-grow: 1 !important;
3823
+ }
3824
+
3825
+ .flex-xl-shrink-0 {
3826
+ flex-shrink: 0 !important;
3827
+ }
3828
+
3829
+ .flex-xl-shrink-1 {
3830
+ flex-shrink: 1 !important;
3831
+ }
3832
+
3833
+ .flex-xl-wrap {
3834
+ flex-wrap: wrap !important;
3835
+ }
3836
+
3837
+ .flex-xl-nowrap {
3838
+ flex-wrap: nowrap !important;
3839
+ }
3840
+
3841
+ .flex-xl-wrap-reverse {
3842
+ flex-wrap: wrap-reverse !important;
3843
+ }
3844
+
3845
+ .justify-content-xl-start {
3846
+ justify-content: flex-start !important;
3847
+ }
3848
+
3849
+ .justify-content-xl-end {
3850
+ justify-content: flex-end !important;
3851
+ }
3852
+
3853
+ .justify-content-xl-center {
3854
+ justify-content: center !important;
3855
+ }
3856
+
3857
+ .justify-content-xl-between {
3858
+ justify-content: space-between !important;
3859
+ }
3860
+
3861
+ .justify-content-xl-around {
3862
+ justify-content: space-around !important;
3863
+ }
3864
+
3865
+ .justify-content-xl-evenly {
3866
+ justify-content: space-evenly !important;
3867
+ }
3868
+
3869
+ .align-items-xl-start {
3870
+ align-items: flex-start !important;
3871
+ }
3872
+
3873
+ .align-items-xl-end {
3874
+ align-items: flex-end !important;
3875
+ }
3876
+
3877
+ .align-items-xl-center {
3878
+ align-items: center !important;
3879
+ }
3880
+
3881
+ .align-items-xl-baseline {
3882
+ align-items: baseline !important;
3883
+ }
3884
+
3885
+ .align-items-xl-stretch {
3886
+ align-items: stretch !important;
3887
+ }
3888
+
3889
+ .align-content-xl-start {
3890
+ align-content: flex-start !important;
3891
+ }
3892
+
3893
+ .align-content-xl-end {
3894
+ align-content: flex-end !important;
3895
+ }
3896
+
3897
+ .align-content-xl-center {
3898
+ align-content: center !important;
3899
+ }
3900
+
3901
+ .align-content-xl-between {
3902
+ align-content: space-between !important;
3903
+ }
3904
+
3905
+ .align-content-xl-around {
3906
+ align-content: space-around !important;
3907
+ }
3908
+
3909
+ .align-content-xl-stretch {
3910
+ align-content: stretch !important;
3911
+ }
3912
+
3913
+ .align-self-xl-auto {
3914
+ align-self: auto !important;
3915
+ }
3916
+
3917
+ .align-self-xl-start {
3918
+ align-self: flex-start !important;
3919
+ }
3920
+
3921
+ .align-self-xl-end {
3922
+ align-self: flex-end !important;
3923
+ }
3924
+
3925
+ .align-self-xl-center {
3926
+ align-self: center !important;
3927
+ }
3928
+
3929
+ .align-self-xl-baseline {
3930
+ align-self: baseline !important;
3931
+ }
3932
+
3933
+ .align-self-xl-stretch {
3934
+ align-self: stretch !important;
3935
+ }
3936
+
3937
+ .order-xl-first {
3938
+ order: -1 !important;
3939
+ }
3940
+
3941
+ .order-xl-0 {
3942
+ order: 0 !important;
3943
+ }
3944
+
3945
+ .order-xl-1 {
3946
+ order: 1 !important;
3947
+ }
3948
+
3949
+ .order-xl-2 {
3950
+ order: 2 !important;
3951
+ }
3952
+
3953
+ .order-xl-3 {
3954
+ order: 3 !important;
3955
+ }
3956
+
3957
+ .order-xl-4 {
3958
+ order: 4 !important;
3959
+ }
3960
+
3961
+ .order-xl-5 {
3962
+ order: 5 !important;
3963
+ }
3964
+
3965
+ .order-xl-last {
3966
+ order: 6 !important;
3967
+ }
3968
+
3969
+ .m-xl-0 {
3970
+ margin: 0 !important;
3971
+ }
3972
+
3973
+ .m-xl-1 {
3974
+ margin: 0.25rem !important;
3975
+ }
3976
+
3977
+ .m-xl-2 {
3978
+ margin: 0.5rem !important;
3979
+ }
3980
+
3981
+ .m-xl-3 {
3982
+ margin: 1rem !important;
3983
+ }
3984
+
3985
+ .m-xl-4 {
3986
+ margin: 1.5rem !important;
3987
+ }
3988
+
3989
+ .m-xl-5 {
3990
+ margin: 3rem !important;
3991
+ }
3992
+
3993
+ .m-xl-auto {
3994
+ margin: auto !important;
3995
+ }
3996
+
3997
+ .mx-xl-0 {
3998
+ margin-right: 0 !important;
3999
+ margin-left: 0 !important;
4000
+ }
4001
+
4002
+ .mx-xl-1 {
4003
+ margin-right: 0.25rem !important;
4004
+ margin-left: 0.25rem !important;
4005
+ }
4006
+
4007
+ .mx-xl-2 {
4008
+ margin-right: 0.5rem !important;
4009
+ margin-left: 0.5rem !important;
4010
+ }
4011
+
4012
+ .mx-xl-3 {
4013
+ margin-right: 1rem !important;
4014
+ margin-left: 1rem !important;
4015
+ }
4016
+
4017
+ .mx-xl-4 {
4018
+ margin-right: 1.5rem !important;
4019
+ margin-left: 1.5rem !important;
4020
+ }
4021
+
4022
+ .mx-xl-5 {
4023
+ margin-right: 3rem !important;
4024
+ margin-left: 3rem !important;
4025
+ }
4026
+
4027
+ .mx-xl-auto {
4028
+ margin-right: auto !important;
4029
+ margin-left: auto !important;
4030
+ }
4031
+
4032
+ .my-xl-0 {
4033
+ margin-top: 0 !important;
4034
+ margin-bottom: 0 !important;
4035
+ }
4036
+
4037
+ .my-xl-1 {
4038
+ margin-top: 0.25rem !important;
4039
+ margin-bottom: 0.25rem !important;
4040
+ }
4041
+
4042
+ .my-xl-2 {
4043
+ margin-top: 0.5rem !important;
4044
+ margin-bottom: 0.5rem !important;
4045
+ }
4046
+
4047
+ .my-xl-3 {
4048
+ margin-top: 1rem !important;
4049
+ margin-bottom: 1rem !important;
4050
+ }
4051
+
4052
+ .my-xl-4 {
4053
+ margin-top: 1.5rem !important;
4054
+ margin-bottom: 1.5rem !important;
4055
+ }
4056
+
4057
+ .my-xl-5 {
4058
+ margin-top: 3rem !important;
4059
+ margin-bottom: 3rem !important;
4060
+ }
4061
+
4062
+ .my-xl-auto {
4063
+ margin-top: auto !important;
4064
+ margin-bottom: auto !important;
4065
+ }
4066
+
4067
+ .mt-xl-0 {
4068
+ margin-top: 0 !important;
4069
+ }
4070
+
4071
+ .mt-xl-1 {
4072
+ margin-top: 0.25rem !important;
4073
+ }
4074
+
4075
+ .mt-xl-2 {
4076
+ margin-top: 0.5rem !important;
4077
+ }
4078
+
4079
+ .mt-xl-3 {
4080
+ margin-top: 1rem !important;
4081
+ }
4082
+
4083
+ .mt-xl-4 {
4084
+ margin-top: 1.5rem !important;
4085
+ }
4086
+
4087
+ .mt-xl-5 {
4088
+ margin-top: 3rem !important;
4089
+ }
4090
+
4091
+ .mt-xl-auto {
4092
+ margin-top: auto !important;
4093
+ }
4094
+
4095
+ .me-xl-0 {
4096
+ margin-right: 0 !important;
4097
+ }
4098
+
4099
+ .me-xl-1 {
4100
+ margin-right: 0.25rem !important;
4101
+ }
4102
+
4103
+ .me-xl-2 {
4104
+ margin-right: 0.5rem !important;
4105
+ }
4106
+
4107
+ .me-xl-3 {
4108
+ margin-right: 1rem !important;
4109
+ }
4110
+
4111
+ .me-xl-4 {
4112
+ margin-right: 1.5rem !important;
4113
+ }
4114
+
4115
+ .me-xl-5 {
4116
+ margin-right: 3rem !important;
4117
+ }
4118
+
4119
+ .me-xl-auto {
4120
+ margin-right: auto !important;
4121
+ }
4122
+
4123
+ .mb-xl-0 {
4124
+ margin-bottom: 0 !important;
4125
+ }
4126
+
4127
+ .mb-xl-1 {
4128
+ margin-bottom: 0.25rem !important;
4129
+ }
4130
+
4131
+ .mb-xl-2 {
4132
+ margin-bottom: 0.5rem !important;
4133
+ }
4134
+
4135
+ .mb-xl-3 {
4136
+ margin-bottom: 1rem !important;
4137
+ }
4138
+
4139
+ .mb-xl-4 {
4140
+ margin-bottom: 1.5rem !important;
4141
+ }
4142
+
4143
+ .mb-xl-5 {
4144
+ margin-bottom: 3rem !important;
4145
+ }
4146
+
4147
+ .mb-xl-auto {
4148
+ margin-bottom: auto !important;
4149
+ }
4150
+
4151
+ .ms-xl-0 {
4152
+ margin-left: 0 !important;
4153
+ }
4154
+
4155
+ .ms-xl-1 {
4156
+ margin-left: 0.25rem !important;
4157
+ }
4158
+
4159
+ .ms-xl-2 {
4160
+ margin-left: 0.5rem !important;
4161
+ }
4162
+
4163
+ .ms-xl-3 {
4164
+ margin-left: 1rem !important;
4165
+ }
4166
+
4167
+ .ms-xl-4 {
4168
+ margin-left: 1.5rem !important;
4169
+ }
4170
+
4171
+ .ms-xl-5 {
4172
+ margin-left: 3rem !important;
4173
+ }
4174
+
4175
+ .ms-xl-auto {
4176
+ margin-left: auto !important;
4177
+ }
4178
+
4179
+ .p-xl-0 {
4180
+ padding: 0 !important;
4181
+ }
4182
+
4183
+ .p-xl-1 {
4184
+ padding: 0.25rem !important;
4185
+ }
4186
+
4187
+ .p-xl-2 {
4188
+ padding: 0.5rem !important;
4189
+ }
4190
+
4191
+ .p-xl-3 {
4192
+ padding: 1rem !important;
4193
+ }
4194
+
4195
+ .p-xl-4 {
4196
+ padding: 1.5rem !important;
4197
+ }
4198
+
4199
+ .p-xl-5 {
4200
+ padding: 3rem !important;
4201
+ }
4202
+
4203
+ .px-xl-0 {
4204
+ padding-right: 0 !important;
4205
+ padding-left: 0 !important;
4206
+ }
4207
+
4208
+ .px-xl-1 {
4209
+ padding-right: 0.25rem !important;
4210
+ padding-left: 0.25rem !important;
4211
+ }
4212
+
4213
+ .px-xl-2 {
4214
+ padding-right: 0.5rem !important;
4215
+ padding-left: 0.5rem !important;
4216
+ }
4217
+
4218
+ .px-xl-3 {
4219
+ padding-right: 1rem !important;
4220
+ padding-left: 1rem !important;
4221
+ }
4222
+
4223
+ .px-xl-4 {
4224
+ padding-right: 1.5rem !important;
4225
+ padding-left: 1.5rem !important;
4226
+ }
4227
+
4228
+ .px-xl-5 {
4229
+ padding-right: 3rem !important;
4230
+ padding-left: 3rem !important;
4231
+ }
4232
+
4233
+ .py-xl-0 {
4234
+ padding-top: 0 !important;
4235
+ padding-bottom: 0 !important;
4236
+ }
4237
+
4238
+ .py-xl-1 {
4239
+ padding-top: 0.25rem !important;
4240
+ padding-bottom: 0.25rem !important;
4241
+ }
4242
+
4243
+ .py-xl-2 {
4244
+ padding-top: 0.5rem !important;
4245
+ padding-bottom: 0.5rem !important;
4246
+ }
4247
+
4248
+ .py-xl-3 {
4249
+ padding-top: 1rem !important;
4250
+ padding-bottom: 1rem !important;
4251
+ }
4252
+
4253
+ .py-xl-4 {
4254
+ padding-top: 1.5rem !important;
4255
+ padding-bottom: 1.5rem !important;
4256
+ }
4257
+
4258
+ .py-xl-5 {
4259
+ padding-top: 3rem !important;
4260
+ padding-bottom: 3rem !important;
4261
+ }
4262
+
4263
+ .pt-xl-0 {
4264
+ padding-top: 0 !important;
4265
+ }
4266
+
4267
+ .pt-xl-1 {
4268
+ padding-top: 0.25rem !important;
4269
+ }
4270
+
4271
+ .pt-xl-2 {
4272
+ padding-top: 0.5rem !important;
4273
+ }
4274
+
4275
+ .pt-xl-3 {
4276
+ padding-top: 1rem !important;
4277
+ }
4278
+
4279
+ .pt-xl-4 {
4280
+ padding-top: 1.5rem !important;
4281
+ }
4282
+
4283
+ .pt-xl-5 {
4284
+ padding-top: 3rem !important;
4285
+ }
4286
+
4287
+ .pe-xl-0 {
4288
+ padding-right: 0 !important;
4289
+ }
4290
+
4291
+ .pe-xl-1 {
4292
+ padding-right: 0.25rem !important;
4293
+ }
4294
+
4295
+ .pe-xl-2 {
4296
+ padding-right: 0.5rem !important;
4297
+ }
4298
+
4299
+ .pe-xl-3 {
4300
+ padding-right: 1rem !important;
4301
+ }
4302
+
4303
+ .pe-xl-4 {
4304
+ padding-right: 1.5rem !important;
4305
+ }
4306
+
4307
+ .pe-xl-5 {
4308
+ padding-right: 3rem !important;
4309
+ }
4310
+
4311
+ .pb-xl-0 {
4312
+ padding-bottom: 0 !important;
4313
+ }
4314
+
4315
+ .pb-xl-1 {
4316
+ padding-bottom: 0.25rem !important;
4317
+ }
4318
+
4319
+ .pb-xl-2 {
4320
+ padding-bottom: 0.5rem !important;
4321
+ }
4322
+
4323
+ .pb-xl-3 {
4324
+ padding-bottom: 1rem !important;
4325
+ }
4326
+
4327
+ .pb-xl-4 {
4328
+ padding-bottom: 1.5rem !important;
4329
+ }
4330
+
4331
+ .pb-xl-5 {
4332
+ padding-bottom: 3rem !important;
4333
+ }
4334
+
4335
+ .ps-xl-0 {
4336
+ padding-left: 0 !important;
4337
+ }
4338
+
4339
+ .ps-xl-1 {
4340
+ padding-left: 0.25rem !important;
4341
+ }
4342
+
4343
+ .ps-xl-2 {
4344
+ padding-left: 0.5rem !important;
4345
+ }
4346
+
4347
+ .ps-xl-3 {
4348
+ padding-left: 1rem !important;
4349
+ }
4350
+
4351
+ .ps-xl-4 {
4352
+ padding-left: 1.5rem !important;
4353
+ }
4354
+
4355
+ .ps-xl-5 {
4356
+ padding-left: 3rem !important;
4357
+ }
4358
+ }
4359
+ @media (min-width: 1400px) {
4360
+ .d-xxl-inline {
4361
+ display: inline !important;
4362
+ }
4363
+
4364
+ .d-xxl-inline-block {
4365
+ display: inline-block !important;
4366
+ }
4367
+
4368
+ .d-xxl-block {
4369
+ display: block !important;
4370
+ }
4371
+
4372
+ .d-xxl-grid {
4373
+ display: grid !important;
4374
+ }
4375
+
4376
+ .d-xxl-table {
4377
+ display: table !important;
4378
+ }
4379
+
4380
+ .d-xxl-table-row {
4381
+ display: table-row !important;
4382
+ }
4383
+
4384
+ .d-xxl-table-cell {
4385
+ display: table-cell !important;
4386
+ }
4387
+
4388
+ .d-xxl-flex {
4389
+ display: flex !important;
4390
+ }
4391
+
4392
+ .d-xxl-inline-flex {
4393
+ display: inline-flex !important;
4394
+ }
4395
+
4396
+ .d-xxl-none {
4397
+ display: none !important;
4398
+ }
4399
+
4400
+ .flex-xxl-fill {
4401
+ flex: 1 1 auto !important;
4402
+ }
4403
+
4404
+ .flex-xxl-row {
4405
+ flex-direction: row !important;
4406
+ }
4407
+
4408
+ .flex-xxl-column {
4409
+ flex-direction: column !important;
4410
+ }
4411
+
4412
+ .flex-xxl-row-reverse {
4413
+ flex-direction: row-reverse !important;
4414
+ }
4415
+
4416
+ .flex-xxl-column-reverse {
4417
+ flex-direction: column-reverse !important;
4418
+ }
4419
+
4420
+ .flex-xxl-grow-0 {
4421
+ flex-grow: 0 !important;
4422
+ }
4423
+
4424
+ .flex-xxl-grow-1 {
4425
+ flex-grow: 1 !important;
4426
+ }
4427
+
4428
+ .flex-xxl-shrink-0 {
4429
+ flex-shrink: 0 !important;
4430
+ }
4431
+
4432
+ .flex-xxl-shrink-1 {
4433
+ flex-shrink: 1 !important;
4434
+ }
4435
+
4436
+ .flex-xxl-wrap {
4437
+ flex-wrap: wrap !important;
4438
+ }
4439
+
4440
+ .flex-xxl-nowrap {
4441
+ flex-wrap: nowrap !important;
4442
+ }
4443
+
4444
+ .flex-xxl-wrap-reverse {
4445
+ flex-wrap: wrap-reverse !important;
4446
+ }
4447
+
4448
+ .justify-content-xxl-start {
4449
+ justify-content: flex-start !important;
4450
+ }
4451
+
4452
+ .justify-content-xxl-end {
4453
+ justify-content: flex-end !important;
4454
+ }
4455
+
4456
+ .justify-content-xxl-center {
4457
+ justify-content: center !important;
4458
+ }
4459
+
4460
+ .justify-content-xxl-between {
4461
+ justify-content: space-between !important;
4462
+ }
4463
+
4464
+ .justify-content-xxl-around {
4465
+ justify-content: space-around !important;
4466
+ }
4467
+
4468
+ .justify-content-xxl-evenly {
4469
+ justify-content: space-evenly !important;
4470
+ }
4471
+
4472
+ .align-items-xxl-start {
4473
+ align-items: flex-start !important;
4474
+ }
4475
+
4476
+ .align-items-xxl-end {
4477
+ align-items: flex-end !important;
4478
+ }
4479
+
4480
+ .align-items-xxl-center {
4481
+ align-items: center !important;
4482
+ }
4483
+
4484
+ .align-items-xxl-baseline {
4485
+ align-items: baseline !important;
4486
+ }
4487
+
4488
+ .align-items-xxl-stretch {
4489
+ align-items: stretch !important;
4490
+ }
4491
+
4492
+ .align-content-xxl-start {
4493
+ align-content: flex-start !important;
4494
+ }
4495
+
4496
+ .align-content-xxl-end {
4497
+ align-content: flex-end !important;
4498
+ }
4499
+
4500
+ .align-content-xxl-center {
4501
+ align-content: center !important;
4502
+ }
4503
+
4504
+ .align-content-xxl-between {
4505
+ align-content: space-between !important;
4506
+ }
4507
+
4508
+ .align-content-xxl-around {
4509
+ align-content: space-around !important;
4510
+ }
4511
+
4512
+ .align-content-xxl-stretch {
4513
+ align-content: stretch !important;
4514
+ }
4515
+
4516
+ .align-self-xxl-auto {
4517
+ align-self: auto !important;
4518
+ }
4519
+
4520
+ .align-self-xxl-start {
4521
+ align-self: flex-start !important;
4522
+ }
4523
+
4524
+ .align-self-xxl-end {
4525
+ align-self: flex-end !important;
4526
+ }
4527
+
4528
+ .align-self-xxl-center {
4529
+ align-self: center !important;
4530
+ }
4531
+
4532
+ .align-self-xxl-baseline {
4533
+ align-self: baseline !important;
4534
+ }
4535
+
4536
+ .align-self-xxl-stretch {
4537
+ align-self: stretch !important;
4538
+ }
4539
+
4540
+ .order-xxl-first {
4541
+ order: -1 !important;
4542
+ }
4543
+
4544
+ .order-xxl-0 {
4545
+ order: 0 !important;
4546
+ }
4547
+
4548
+ .order-xxl-1 {
4549
+ order: 1 !important;
4550
+ }
4551
+
4552
+ .order-xxl-2 {
4553
+ order: 2 !important;
4554
+ }
4555
+
4556
+ .order-xxl-3 {
4557
+ order: 3 !important;
4558
+ }
4559
+
4560
+ .order-xxl-4 {
4561
+ order: 4 !important;
4562
+ }
4563
+
4564
+ .order-xxl-5 {
4565
+ order: 5 !important;
4566
+ }
4567
+
4568
+ .order-xxl-last {
4569
+ order: 6 !important;
4570
+ }
4571
+
4572
+ .m-xxl-0 {
4573
+ margin: 0 !important;
4574
+ }
4575
+
4576
+ .m-xxl-1 {
4577
+ margin: 0.25rem !important;
4578
+ }
4579
+
4580
+ .m-xxl-2 {
4581
+ margin: 0.5rem !important;
4582
+ }
4583
+
4584
+ .m-xxl-3 {
4585
+ margin: 1rem !important;
4586
+ }
4587
+
4588
+ .m-xxl-4 {
4589
+ margin: 1.5rem !important;
4590
+ }
4591
+
4592
+ .m-xxl-5 {
4593
+ margin: 3rem !important;
4594
+ }
4595
+
4596
+ .m-xxl-auto {
4597
+ margin: auto !important;
4598
+ }
4599
+
4600
+ .mx-xxl-0 {
4601
+ margin-right: 0 !important;
4602
+ margin-left: 0 !important;
4603
+ }
4604
+
4605
+ .mx-xxl-1 {
4606
+ margin-right: 0.25rem !important;
4607
+ margin-left: 0.25rem !important;
4608
+ }
4609
+
4610
+ .mx-xxl-2 {
4611
+ margin-right: 0.5rem !important;
4612
+ margin-left: 0.5rem !important;
4613
+ }
4614
+
4615
+ .mx-xxl-3 {
4616
+ margin-right: 1rem !important;
4617
+ margin-left: 1rem !important;
4618
+ }
4619
+
4620
+ .mx-xxl-4 {
4621
+ margin-right: 1.5rem !important;
4622
+ margin-left: 1.5rem !important;
4623
+ }
4624
+
4625
+ .mx-xxl-5 {
4626
+ margin-right: 3rem !important;
4627
+ margin-left: 3rem !important;
4628
+ }
4629
+
4630
+ .mx-xxl-auto {
4631
+ margin-right: auto !important;
4632
+ margin-left: auto !important;
4633
+ }
4634
+
4635
+ .my-xxl-0 {
4636
+ margin-top: 0 !important;
4637
+ margin-bottom: 0 !important;
4638
+ }
4639
+
4640
+ .my-xxl-1 {
4641
+ margin-top: 0.25rem !important;
4642
+ margin-bottom: 0.25rem !important;
4643
+ }
4644
+
4645
+ .my-xxl-2 {
4646
+ margin-top: 0.5rem !important;
4647
+ margin-bottom: 0.5rem !important;
4648
+ }
4649
+
4650
+ .my-xxl-3 {
4651
+ margin-top: 1rem !important;
4652
+ margin-bottom: 1rem !important;
4653
+ }
4654
+
4655
+ .my-xxl-4 {
4656
+ margin-top: 1.5rem !important;
4657
+ margin-bottom: 1.5rem !important;
4658
+ }
4659
+
4660
+ .my-xxl-5 {
4661
+ margin-top: 3rem !important;
4662
+ margin-bottom: 3rem !important;
4663
+ }
4664
+
4665
+ .my-xxl-auto {
4666
+ margin-top: auto !important;
4667
+ margin-bottom: auto !important;
4668
+ }
4669
+
4670
+ .mt-xxl-0 {
4671
+ margin-top: 0 !important;
4672
+ }
4673
+
4674
+ .mt-xxl-1 {
4675
+ margin-top: 0.25rem !important;
4676
+ }
4677
+
4678
+ .mt-xxl-2 {
4679
+ margin-top: 0.5rem !important;
4680
+ }
4681
+
4682
+ .mt-xxl-3 {
4683
+ margin-top: 1rem !important;
4684
+ }
4685
+
4686
+ .mt-xxl-4 {
4687
+ margin-top: 1.5rem !important;
4688
+ }
4689
+
4690
+ .mt-xxl-5 {
4691
+ margin-top: 3rem !important;
4692
+ }
4693
+
4694
+ .mt-xxl-auto {
4695
+ margin-top: auto !important;
4696
+ }
4697
+
4698
+ .me-xxl-0 {
4699
+ margin-right: 0 !important;
4700
+ }
4701
+
4702
+ .me-xxl-1 {
4703
+ margin-right: 0.25rem !important;
4704
+ }
4705
+
4706
+ .me-xxl-2 {
4707
+ margin-right: 0.5rem !important;
4708
+ }
4709
+
4710
+ .me-xxl-3 {
4711
+ margin-right: 1rem !important;
4712
+ }
4713
+
4714
+ .me-xxl-4 {
4715
+ margin-right: 1.5rem !important;
4716
+ }
4717
+
4718
+ .me-xxl-5 {
4719
+ margin-right: 3rem !important;
4720
+ }
4721
+
4722
+ .me-xxl-auto {
4723
+ margin-right: auto !important;
4724
+ }
4725
+
4726
+ .mb-xxl-0 {
4727
+ margin-bottom: 0 !important;
4728
+ }
4729
+
4730
+ .mb-xxl-1 {
4731
+ margin-bottom: 0.25rem !important;
4732
+ }
4733
+
4734
+ .mb-xxl-2 {
4735
+ margin-bottom: 0.5rem !important;
4736
+ }
4737
+
4738
+ .mb-xxl-3 {
4739
+ margin-bottom: 1rem !important;
4740
+ }
4741
+
4742
+ .mb-xxl-4 {
4743
+ margin-bottom: 1.5rem !important;
4744
+ }
4745
+
4746
+ .mb-xxl-5 {
4747
+ margin-bottom: 3rem !important;
4748
+ }
4749
+
4750
+ .mb-xxl-auto {
4751
+ margin-bottom: auto !important;
4752
+ }
4753
+
4754
+ .ms-xxl-0 {
4755
+ margin-left: 0 !important;
4756
+ }
4757
+
4758
+ .ms-xxl-1 {
4759
+ margin-left: 0.25rem !important;
4760
+ }
4761
+
4762
+ .ms-xxl-2 {
4763
+ margin-left: 0.5rem !important;
4764
+ }
4765
+
4766
+ .ms-xxl-3 {
4767
+ margin-left: 1rem !important;
4768
+ }
4769
+
4770
+ .ms-xxl-4 {
4771
+ margin-left: 1.5rem !important;
4772
+ }
4773
+
4774
+ .ms-xxl-5 {
4775
+ margin-left: 3rem !important;
4776
+ }
4777
+
4778
+ .ms-xxl-auto {
4779
+ margin-left: auto !important;
4780
+ }
4781
+
4782
+ .p-xxl-0 {
4783
+ padding: 0 !important;
4784
+ }
4785
+
4786
+ .p-xxl-1 {
4787
+ padding: 0.25rem !important;
4788
+ }
4789
+
4790
+ .p-xxl-2 {
4791
+ padding: 0.5rem !important;
4792
+ }
4793
+
4794
+ .p-xxl-3 {
4795
+ padding: 1rem !important;
4796
+ }
4797
+
4798
+ .p-xxl-4 {
4799
+ padding: 1.5rem !important;
4800
+ }
4801
+
4802
+ .p-xxl-5 {
4803
+ padding: 3rem !important;
4804
+ }
4805
+
4806
+ .px-xxl-0 {
4807
+ padding-right: 0 !important;
4808
+ padding-left: 0 !important;
4809
+ }
4810
+
4811
+ .px-xxl-1 {
4812
+ padding-right: 0.25rem !important;
4813
+ padding-left: 0.25rem !important;
4814
+ }
4815
+
4816
+ .px-xxl-2 {
4817
+ padding-right: 0.5rem !important;
4818
+ padding-left: 0.5rem !important;
4819
+ }
4820
+
4821
+ .px-xxl-3 {
4822
+ padding-right: 1rem !important;
4823
+ padding-left: 1rem !important;
4824
+ }
4825
+
4826
+ .px-xxl-4 {
4827
+ padding-right: 1.5rem !important;
4828
+ padding-left: 1.5rem !important;
4829
+ }
4830
+
4831
+ .px-xxl-5 {
4832
+ padding-right: 3rem !important;
4833
+ padding-left: 3rem !important;
4834
+ }
4835
+
4836
+ .py-xxl-0 {
4837
+ padding-top: 0 !important;
4838
+ padding-bottom: 0 !important;
4839
+ }
4840
+
4841
+ .py-xxl-1 {
4842
+ padding-top: 0.25rem !important;
4843
+ padding-bottom: 0.25rem !important;
4844
+ }
4845
+
4846
+ .py-xxl-2 {
4847
+ padding-top: 0.5rem !important;
4848
+ padding-bottom: 0.5rem !important;
4849
+ }
4850
+
4851
+ .py-xxl-3 {
4852
+ padding-top: 1rem !important;
4853
+ padding-bottom: 1rem !important;
4854
+ }
4855
+
4856
+ .py-xxl-4 {
4857
+ padding-top: 1.5rem !important;
4858
+ padding-bottom: 1.5rem !important;
4859
+ }
4860
+
4861
+ .py-xxl-5 {
4862
+ padding-top: 3rem !important;
4863
+ padding-bottom: 3rem !important;
4864
+ }
4865
+
4866
+ .pt-xxl-0 {
4867
+ padding-top: 0 !important;
4868
+ }
4869
+
4870
+ .pt-xxl-1 {
4871
+ padding-top: 0.25rem !important;
4872
+ }
4873
+
4874
+ .pt-xxl-2 {
4875
+ padding-top: 0.5rem !important;
4876
+ }
4877
+
4878
+ .pt-xxl-3 {
4879
+ padding-top: 1rem !important;
4880
+ }
4881
+
4882
+ .pt-xxl-4 {
4883
+ padding-top: 1.5rem !important;
4884
+ }
4885
+
4886
+ .pt-xxl-5 {
4887
+ padding-top: 3rem !important;
4888
+ }
4889
+
4890
+ .pe-xxl-0 {
4891
+ padding-right: 0 !important;
4892
+ }
4893
+
4894
+ .pe-xxl-1 {
4895
+ padding-right: 0.25rem !important;
4896
+ }
4897
+
4898
+ .pe-xxl-2 {
4899
+ padding-right: 0.5rem !important;
4900
+ }
4901
+
4902
+ .pe-xxl-3 {
4903
+ padding-right: 1rem !important;
4904
+ }
4905
+
4906
+ .pe-xxl-4 {
4907
+ padding-right: 1.5rem !important;
4908
+ }
4909
+
4910
+ .pe-xxl-5 {
4911
+ padding-right: 3rem !important;
4912
+ }
4913
+
4914
+ .pb-xxl-0 {
4915
+ padding-bottom: 0 !important;
4916
+ }
4917
+
4918
+ .pb-xxl-1 {
4919
+ padding-bottom: 0.25rem !important;
4920
+ }
4921
+
4922
+ .pb-xxl-2 {
4923
+ padding-bottom: 0.5rem !important;
4924
+ }
4925
+
4926
+ .pb-xxl-3 {
4927
+ padding-bottom: 1rem !important;
4928
+ }
4929
+
4930
+ .pb-xxl-4 {
4931
+ padding-bottom: 1.5rem !important;
4932
+ }
4933
+
4934
+ .pb-xxl-5 {
4935
+ padding-bottom: 3rem !important;
4936
+ }
4937
+
4938
+ .ps-xxl-0 {
4939
+ padding-left: 0 !important;
4940
+ }
4941
+
4942
+ .ps-xxl-1 {
4943
+ padding-left: 0.25rem !important;
4944
+ }
4945
+
4946
+ .ps-xxl-2 {
4947
+ padding-left: 0.5rem !important;
4948
+ }
4949
+
4950
+ .ps-xxl-3 {
4951
+ padding-left: 1rem !important;
4952
+ }
4953
+
4954
+ .ps-xxl-4 {
4955
+ padding-left: 1.5rem !important;
4956
+ }
4957
+
4958
+ .ps-xxl-5 {
4959
+ padding-left: 3rem !important;
4960
+ }
4961
+ }
4962
+ @media print {
4963
+ .d-print-inline {
4964
+ display: inline !important;
4965
+ }
4966
+
4967
+ .d-print-inline-block {
4968
+ display: inline-block !important;
4969
+ }
4970
+
4971
+ .d-print-block {
4972
+ display: block !important;
4973
+ }
4974
+
4975
+ .d-print-grid {
4976
+ display: grid !important;
4977
+ }
4978
+
4979
+ .d-print-table {
4980
+ display: table !important;
4981
+ }
4982
+
4983
+ .d-print-table-row {
4984
+ display: table-row !important;
4985
+ }
4986
+
4987
+ .d-print-table-cell {
4988
+ display: table-cell !important;
4989
+ }
4990
+
4991
+ .d-print-flex {
4992
+ display: flex !important;
4993
+ }
4994
+
4995
+ .d-print-inline-flex {
4996
+ display: inline-flex !important;
4997
+ }
4998
+
4999
+ .d-print-none {
5000
+ display: none !important;
5001
+ }
5002
+ }
5003
+
5004
+ /*# sourceMappingURL=coreui-grid.css.map */