From 1fd53af165d2e222584dda9f93062b873bf496eb Mon Sep 17 00:00:00 2001 From: Christian Date: Sat, 5 Dec 2020 00:53:45 +0100 Subject: [PATCH] first good looking code --- Build/StyleSheets/styles.scss | 7 +- Configuration/TCA/Overrides/pages.php | 2 +- Configuration/TSconfig/Page/All.tsconfig | 8 +- .../Mod/WebLayout/BackendLayouts.tsconfig | 2 +- Configuration/TypoScript/Libs/Libs.typoscript | 85 + Configuration/TypoScript/constants.typoscript | 23 + .../TypoScript/include_static_file.txt | 2 + Configuration/TypoScript/setup.typoscript | 132 +- Resources/Private/Layouts/Page/Default.html | 8 + Resources/Private/Templates/Page/Default.html | 32 + Resources/Private/Templates/Page/Example.html | 22 - Resources/Private/Templates/Page/Home.html | 13 + Resources/Public/JavaScript/styles.js | 60 +- Resources/Public/StyleSheets/styles.css | 4519 ++++++++++++++++- Resources/Public/StyleSheets/styles.css.map | 2 +- Resources/Public/StyleSheets/styles.min.css | 1 - 16 files changed, 4823 insertions(+), 95 deletions(-) create mode 100644 Configuration/TypoScript/Libs/Libs.typoscript create mode 100644 Configuration/TypoScript/include_static_file.txt create mode 100644 Resources/Private/Layouts/Page/Default.html create mode 100644 Resources/Private/Templates/Page/Default.html delete mode 100644 Resources/Private/Templates/Page/Example.html create mode 100644 Resources/Private/Templates/Page/Home.html delete mode 100644 Resources/Public/StyleSheets/styles.min.css diff --git a/Build/StyleSheets/styles.scss b/Build/StyleSheets/styles.scss index d465743..3283df9 100644 --- a/Build/StyleSheets/styles.scss +++ b/Build/StyleSheets/styles.scss @@ -1,5 +1,2 @@ -// hello - -body { - background : black; -} +@import "Bootstrap/reboot"; +@import "Bootstrap/bootstrap-grid.scss"; diff --git a/Configuration/TCA/Overrides/pages.php b/Configuration/TCA/Overrides/pages.php index bdfecc3..2c16086 100644 --- a/Configuration/TCA/Overrides/pages.php +++ b/Configuration/TCA/Overrides/pages.php @@ -13,7 +13,7 @@ call_user_func(function() */ \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::registerPageTSConfigFile( $extensionKey, - 'Configuration/TsConfig/Page/All.tsconfig', + 'Configuration/TSconfig/Page/All.tsconfig', 'Sitepackage' ); }); diff --git a/Configuration/TSconfig/Page/All.tsconfig b/Configuration/TSconfig/Page/All.tsconfig index 195e2b1..af89161 100644 --- a/Configuration/TSconfig/Page/All.tsconfig +++ b/Configuration/TSconfig/Page/All.tsconfig @@ -1,7 +1,7 @@ # # PageTS for Sitepackage # - - - - + + + + diff --git a/Configuration/TSconfig/Page/Mod/WebLayout/BackendLayouts.tsconfig b/Configuration/TSconfig/Page/Mod/WebLayout/BackendLayouts.tsconfig index 5ca7b83..abc8d86 100644 --- a/Configuration/TSconfig/Page/Mod/WebLayout/BackendLayouts.tsconfig +++ b/Configuration/TSconfig/Page/Mod/WebLayout/BackendLayouts.tsconfig @@ -1,4 +1,4 @@ # # BACKENDLAYOUTS # - + diff --git a/Configuration/TypoScript/Libs/Libs.typoscript b/Configuration/TypoScript/Libs/Libs.typoscript new file mode 100644 index 0000000..ecd61aa --- /dev/null +++ b/Configuration/TypoScript/Libs/Libs.typoscript @@ -0,0 +1,85 @@ + +# ### +# basic libs for page setup +# ### + +# ### +# get page title (fallback to page) +# ### + +lib.getHeadline = COA +lib.getHeadline { + wrap =
|
+ + # hide headline on specific pages + stdWrap.if.isInList.data = page:uid + stdWrap.if.value = {$site_package_base.content.getHeadline.hideOnPages} + stdWrap.if.negate = 1 + + 10 < styles.content.get + 10 { + # getting content of colPos = 3 + select.where = colPos=3 + + stdWrap.ifEmpty.cObject = TEXT + stdWrap.ifEmpty.cObject { + data = page:title + wrap =

|

+ } + } + + 20 = TEXT + 20 { + data = page:subtitle + wrap =

|

+ required = 1 + } +} + + +# get current sys_language +lib.getCurrentLanguage = COA +lib.getCurrentLanguage { + stdWrap.noTrimWrap = | lang-|| + 10 = TEXT + 10 { + # @ToDo: this is currently not working + data = siteLanguage:twoLetterIsoCode + } +} + +# test if current page is front page (= home) +lib.isFrontPage = COA +lib.isFrontPage { + 10 = TEXT + 10 { + # classes for !home + value = page + # classes for home + value.override = home + value.override.if { + equals.data = page:uid + value = {$sitepackage.website.rootUid} + } + + noTrimWrap = | || + } + + 20 < .10 + 20 { + # classes for !home + value = not-front-page + # classes for home + value.override = front-page + } + + 30 < .10 + 30 { + # classes for !home + value = singular + # classes for home + value.override = not-singular + } +} + + diff --git a/Configuration/TypoScript/constants.typoscript b/Configuration/TypoScript/constants.typoscript index ae2d0ee..06f7ef3 100644 --- a/Configuration/TypoScript/constants.typoscript +++ b/Configuration/TypoScript/constants.typoscript @@ -20,3 +20,26 @@ page { } } +sitepackage { + website { + titleDelim = > + title = TYPO3-Template + rootUid = 1 + } + navigation { + main { + levels = 3 + } + breadcrumb { + hideOnPages = + } + meta { + uidList = + includeNotInMenu = + } + language { + languages = + } + + } +} diff --git a/Configuration/TypoScript/include_static_file.txt b/Configuration/TypoScript/include_static_file.txt new file mode 100644 index 0000000..86a1c22 --- /dev/null +++ b/Configuration/TypoScript/include_static_file.txt @@ -0,0 +1,2 @@ +EXT:fluid_styled_content/Configuration/TypoScript/, +EXT:content_elements/Configuration/TypoScript/ diff --git a/Configuration/TypoScript/setup.typoscript b/Configuration/TypoScript/setup.typoscript index 8a9ea2d..be5662d 100644 --- a/Configuration/TypoScript/setup.typoscript +++ b/Configuration/TypoScript/setup.typoscript @@ -1,9 +1,24 @@ +# ### +# LIB +# ### + +@import 'EXT:sitepackage/Configuration/TypoScript/Libs/Libs.typoscript' + + ############## #### PAGE #### ############## +page = PAGE page { + typeNum = 0 + + # set new body tag + bodyTag > + bodyTagCObject =< lib.bodyTag + + includeCSS { - theme = EXT:sitepackage/Resources/Public/Stylesheets/styles.css + theme = EXT:sitepackage/Resources/Public/StyleSheets/styles.css } includeJSLibs { @@ -25,7 +40,7 @@ page { config { # better page title, noPageTitle is not a good idea since most extensions add own title pageTitle { - noTrimWrap = || {$site_package_base.website.titleDelim} {$site_package_base.website.title}| + noTrimWrap = || {$sitepackage.website.titleDelim} {$sitepackage.website.title}| override.cObject = TEXT override.cObject { @@ -40,4 +55,117 @@ page { admPanel = 1 } + + 10 = FLUIDTEMPLATE + 10 { + # template names will be generated automatically by converting the applied + # backend_layout, there is no explicit mapping necessary anymore. + # + # example: + # subnavigation_right_2_columns -> SubnavigationRight2Columns.html + templateName = TEXT + templateName { + cObject = TEXT + cObject { + data = pagelayout + required = 1 + case = uppercamelcase + split { + token = pagets__ + cObjNum = 1 + 1.current = 1 + } + } + + ifEmpty = Default + } + + layoutRootPaths { + 10 = EXT:sitepackage/Resources/Private/Layouts/Page/ + } + + templateRootPaths { + 10 = EXT:sitepackage/Resources/Private/Templates/Page/ + } + + partialRootPaths { + 10 = EXT:sitepackage/Resources/Private/Partials/Page/ + } + + + # can be accessed directly within the layouts/ templates/ partials via {settings.myVariable} + settings { + + } + + variables { + rootPage = TEXT + rootPage.data = leveluid:0 + + content < styles.content.get + + main-content< styles.content.get + main-content.select.where = colPos=0 + + marginal-content < styles.content.get + marginal-content.select.where = colPos=1 + + footer-content < styles.content.get + footer-content.select.where = colPos=200 + footer-content.slide = -1 + + # breadcrumbSingleRecordEntry is used to extend the breadcrumb path + # it allows us to display the title of a single record (like tx_news detail page) + breadcrumbSingleRecordEntry = COA + breadcrumbSingleRecordEntry { + } + } + + # data processors for navigation + dataProcessing { + # main navigation + 10 = TYPO3\CMS\Frontend\DataProcessing\MenuProcessor + 10 { + # right now, 3 levels are supported + levels = {$sitepackage.navigation.main.levels} + as = navigationMain + expandAll = 1 + } + + # breadcrumb + 20 = TYPO3\CMS\Frontend\DataProcessing\MenuProcessor + 20 { + special = rootline + special.range = 0|-1 + includeNotInMenu = 1 + as = breadcrumb + + if { + isInList.data = page:uid + value = {$sitepackage.navigation.breadcrumb.hideOnPages} + negate = 1 + } + } + + # meta navigation + 30 = TYPO3\CMS\Frontend\DataProcessing\MenuProcessor + 30 { + special = {$sitepackage.navigation.meta.type} + special.value = {$sitepackage.navigation.meta.uidList} + includeNotInMenu = {$sitepackage.navigation.meta.includeNotInMenu} + as = navigationMeta + if { + isTrue = {$sitepackage.navigation.meta.uidList} + } + } + + # language navigation + 40 = TYPO3\CMS\Frontend\DataProcessing\LanguageMenuProcessor + 40 { + languages = {$sitepackage.navigation.language.languages} + as = navigationLanguage + } + } + } + } diff --git a/Resources/Private/Layouts/Page/Default.html b/Resources/Private/Layouts/Page/Default.html new file mode 100644 index 0000000..47b9644 --- /dev/null +++ b/Resources/Private/Layouts/Page/Default.html @@ -0,0 +1,8 @@ + + +
+
+ +
+
+ diff --git a/Resources/Private/Templates/Page/Default.html b/Resources/Private/Templates/Page/Default.html new file mode 100644 index 0000000..14f7e0d --- /dev/null +++ b/Resources/Private/Templates/Page/Default.html @@ -0,0 +1,32 @@ + + + + +
+
+ + +
+ + {main-content -> f:format.raw()} +
+ +
+ +
+ + {main-content -> f:format.raw()} +
+
+
+
+
+ +
+ {footer-content -> f:format.raw()} +
+
+ + diff --git a/Resources/Private/Templates/Page/Example.html b/Resources/Private/Templates/Page/Example.html deleted file mode 100644 index 05d05a3..0000000 --- a/Resources/Private/Templates/Page/Example.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - -
-
-
-
Template file
-
- typo3conf/ext/sitepackage/Resources/Private/Templates/Page/Example.html -
-
Backend Configuration
-
- typo3conf/ext/sitepackage/Configuration/TsConfig/Page/Mod/WebLayout/BackendLayouts/example.tsconfig -
-
-
-
- - -
- diff --git a/Resources/Private/Templates/Page/Home.html b/Resources/Private/Templates/Page/Home.html new file mode 100644 index 0000000..175560d --- /dev/null +++ b/Resources/Private/Templates/Page/Home.html @@ -0,0 +1,13 @@ + + + + +
+ + {main-content -> f:format.raw()} +
+
+ {footer-content -> f:format.raw()} +
+
+ diff --git a/Resources/Public/JavaScript/styles.js b/Resources/Public/JavaScript/styles.js index b53aaa1..0a64213 100644 --- a/Resources/Public/JavaScript/styles.js +++ b/Resources/Public/JavaScript/styles.js @@ -1,64 +1,10 @@ /******/ (() => { // webpackBootstrap -/******/ "use strict"; -/******/ var __webpack_modules__ = ({ - -/***/ "./StyleSheets/styles.scss": /*!*********************************!*\ !*** ./StyleSheets/styles.scss ***! \*********************************/ /*! namespace exports */ /*! exports [not provided] [no usage info] */ -/*! runtime requirements: __webpack_require__.r, __webpack_exports__, __webpack_require__.* */ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -__webpack_require__.r(__webpack_exports__); -// extracted by mini-css-extract-plugin - - -/***/ }) - -/******/ }); -/************************************************************************/ -/******/ // The module cache -/******/ var __webpack_module_cache__ = {}; -/******/ -/******/ // The require function -/******/ function __webpack_require__(moduleId) { -/******/ // Check if module is in cache -/******/ if(__webpack_module_cache__[moduleId]) { -/******/ return __webpack_module_cache__[moduleId].exports; -/******/ } -/******/ // Create a new module (and put it into the cache) -/******/ var module = __webpack_module_cache__[moduleId] = { -/******/ // no module.id needed -/******/ // no module.loaded needed -/******/ exports: {} -/******/ }; -/******/ -/******/ // Execute the module function -/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__); -/******/ -/******/ // Return the exports of the module -/******/ return module.exports; -/******/ } -/******/ -/************************************************************************/ -/******/ /* webpack/runtime/make namespace object */ -/******/ (() => { -/******/ // define __esModule on exports -/******/ __webpack_require__.r = (exports) => { -/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { -/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); -/******/ } -/******/ Object.defineProperty(exports, '__esModule', { value: true }); -/******/ }; -/******/ })(); -/******/ -/************************************************************************/ -/******/ // startup -/******/ // Load entry module -/******/ __webpack_require__("./StyleSheets/styles.scss"); -/******/ // This entry module used 'exports' so it can't be inlined +/*! runtime requirements: */ +throw new Error("Module build failed (from ./node_modules/mini-css-extract-plugin/dist/loader.js):\nModuleBuildError: Module build failed (from ./node_modules/sass-loader/dist/cjs.js):\nSassError: Undefined variable.\n ╷\n29 │ -webkit-tap-highlight-color: rgba($black, 0); // 5\n │ ^^^^^^\n ╵\n StyleSheets/Bootstrap/_reboot.scss 29:37 @import\n StyleSheets/styles.scss 1:9 root stylesheet\n at processResult (/var/www/html/Packages/sitepackage/Build/node_modules/webpack/lib/NormalModule.js:583:19)\n at /var/www/html/Packages/sitepackage/Build/node_modules/webpack/lib/NormalModule.js:676:5\n at /var/www/html/Packages/sitepackage/Build/node_modules/loader-runner/lib/LoaderRunner.js:397:11\n at /var/www/html/Packages/sitepackage/Build/node_modules/loader-runner/lib/LoaderRunner.js:252:18\n at context.callback (/var/www/html/Packages/sitepackage/Build/node_modules/loader-runner/lib/LoaderRunner.js:124:13)\n at /var/www/html/Packages/sitepackage/Build/node_modules/sass-loader/dist/index.js:62:7\n at Function.call$2 (/var/www/html/Packages/sitepackage/Build/node_modules/sass/sass.dart.js:90547:16)\n at _render_closure1.call$2 (/var/www/html/Packages/sitepackage/Build/node_modules/sass/sass.dart.js:79617:12)\n at _RootZone.runBinary$3$3 (/var/www/html/Packages/sitepackage/Build/node_modules/sass/sass.dart.js:27035:18)\n at _FutureListener.handleError$1 (/var/www/html/Packages/sitepackage/Build/node_modules/sass/sass.dart.js:25563:19)"); /******/ })() -; -//# sourceMappingURL=styles.js.map \ No newline at end of file +; \ No newline at end of file diff --git a/Resources/Public/StyleSheets/styles.css b/Resources/Public/StyleSheets/styles.css index b49f750..29bead4 100644 --- a/Resources/Public/StyleSheets/styles.css +++ b/Resources/Public/StyleSheets/styles.css @@ -1,5 +1,4522 @@ +/*! + * Bootstrap Reboot v4.5.3 (https://getbootstrap.com/) + * Copyright 2011-2020 The Bootstrap Authors + * Copyright 2011-2020 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md) + */ +*, +*::before, +*::after { + box-sizing: border-box; +} + +html { + font-family: sans-serif; + line-height: 1.15; + -webkit-text-size-adjust: 100%; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); +} + +article, aside, figcaption, figure, footer, header, hgroup, main, nav, section { + display: block; +} + body { - background: black; + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #212529; + text-align: left; + background-color: #fff; +} + +[tabindex="-1"]:focus:not(:focus-visible) { + outline: 0 !important; +} + +hr { + box-sizing: content-box; + height: 0; + overflow: visible; +} + +h1, h2, h3, h4, h5, h6 { + margin-top: 0; + margin-bottom: 0.5rem; +} + +p { + margin-top: 0; + margin-bottom: 1rem; +} + +abbr[title], +abbr[data-original-title] { + text-decoration: underline; + text-decoration: underline dotted; + cursor: help; + border-bottom: 0; + text-decoration-skip-ink: none; +} + +address { + margin-bottom: 1rem; + font-style: normal; + line-height: inherit; +} + +ol, +ul, +dl { + margin-top: 0; + margin-bottom: 1rem; +} + +ol ol, +ul ul, +ol ul, +ul ol { + margin-bottom: 0; +} + +dt { + font-weight: 700; +} + +dd { + margin-bottom: 0.5rem; + margin-left: 0; +} + +blockquote { + margin: 0 0 1rem; +} + +b, +strong { + font-weight: bolder; +} + +small { + font-size: 80%; +} + +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +a { + color: #007bff; + text-decoration: none; + background-color: transparent; +} +a:hover { + color: #0056b3; + text-decoration: underline; +} + +a:not([href]):not([class]) { + color: inherit; + text-decoration: none; +} +a:not([href]):not([class]):hover { + color: inherit; + text-decoration: none; +} + +pre, +code, +kbd, +samp { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + font-size: 1em; +} + +pre { + margin-top: 0; + margin-bottom: 1rem; + overflow: auto; + -ms-overflow-style: scrollbar; +} + +figure { + margin: 0 0 1rem; +} + +img { + vertical-align: middle; + border-style: none; +} + +svg { + overflow: hidden; + vertical-align: middle; +} + +table { + border-collapse: collapse; +} + +caption { + padding-top: 0.75rem; + padding-bottom: 0.75rem; + color: #6c757d; + text-align: left; + caption-side: bottom; +} + +th { + text-align: inherit; + text-align: -webkit-match-parent; +} + +label { + display: inline-block; + margin-bottom: 0.5rem; +} + +button { + border-radius: 0; +} + +button:focus { + outline: 1px dotted; + outline: 5px auto -webkit-focus-ring-color; +} + +input, +button, +select, +optgroup, +textarea { + margin: 0; + font-family: inherit; + font-size: inherit; + line-height: inherit; +} + +button, +input { + overflow: visible; +} + +button, +select { + text-transform: none; +} + +[role=button] { + cursor: pointer; +} + +select { + word-wrap: normal; +} + +button, +[type=button], +[type=reset], +[type=submit] { + -webkit-appearance: button; +} + +button:not(:disabled), +[type=button]:not(:disabled), +[type=reset]:not(:disabled), +[type=submit]:not(:disabled) { + cursor: pointer; +} + +button::-moz-focus-inner, +[type=button]::-moz-focus-inner, +[type=reset]::-moz-focus-inner, +[type=submit]::-moz-focus-inner { + padding: 0; + border-style: none; +} + +input[type=radio], +input[type=checkbox] { + box-sizing: border-box; + padding: 0; +} + +textarea { + overflow: auto; + resize: vertical; +} + +fieldset { + min-width: 0; + padding: 0; + margin: 0; + border: 0; +} + +legend { + display: block; + width: 100%; + max-width: 100%; + padding: 0; + margin-bottom: 0.5rem; + font-size: 1.5rem; + line-height: inherit; + color: inherit; + white-space: normal; +} + +progress { + vertical-align: baseline; +} + +[type=number]::-webkit-inner-spin-button, +[type=number]::-webkit-outer-spin-button { + height: auto; +} + +[type=search] { + outline-offset: -2px; + -webkit-appearance: none; +} + +[type=search]::-webkit-search-decoration { + -webkit-appearance: none; +} + +::-webkit-file-upload-button { + font: inherit; + -webkit-appearance: button; +} + +output { + display: inline-block; +} + +summary { + display: list-item; + cursor: pointer; +} + +template { + display: none; +} + +[hidden] { + display: none !important; +} + +/*! + * Bootstrap Grid v4.5.3 (https://getbootstrap.com/) + * Copyright 2011-2020 The Bootstrap Authors + * Copyright 2011-2020 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */ +html { + box-sizing: border-box; + -ms-overflow-style: scrollbar; +} + +*, +*::before, +*::after { + box-sizing: inherit; +} + +.container, +.container-fluid, +.container-xl, +.container-lg, +.container-md, +.container-sm { + width: 100%; + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; +} + +@media (min-width: 576px) { + .container-sm, .container { + max-width: 540px; + } +} +@media (min-width: 768px) { + .container-md, .container-sm, .container { + max-width: 720px; + } +} +@media (min-width: 992px) { + .container-lg, .container-md, .container-sm, .container { + max-width: 960px; + } +} +@media (min-width: 1200px) { + .container-xl, .container-lg, .container-md, .container-sm, .container { + max-width: 1140px; + } +} +.row { + display: flex; + flex-wrap: wrap; + margin-right: -15px; + margin-left: -15px; +} + +.no-gutters { + margin-right: 0; + margin-left: 0; +} +.no-gutters > .col, +.no-gutters > [class*=col-] { + padding-right: 0; + padding-left: 0; +} + +.col-xl, +.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg, +.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md, +.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm, +.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col, +.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 { + position: relative; + width: 100%; + padding-right: 15px; + padding-left: 15px; +} + +.col { + flex-basis: 0; + flex-grow: 1; + max-width: 100%; +} + +.row-cols-1 > * { + flex: 0 0 100%; + max-width: 100%; +} + +.row-cols-2 > * { + flex: 0 0 50%; + max-width: 50%; +} + +.row-cols-3 > * { + flex: 0 0 33.3333333333%; + max-width: 33.3333333333%; +} + +.row-cols-4 > * { + flex: 0 0 25%; + max-width: 25%; +} + +.row-cols-5 > * { + flex: 0 0 20%; + max-width: 20%; +} + +.row-cols-6 > * { + flex: 0 0 16.6666666667%; + max-width: 16.6666666667%; +} + +.col-auto { + flex: 0 0 auto; + width: auto; + max-width: 100%; +} + +.col-1 { + flex: 0 0 8.3333333333%; + max-width: 8.3333333333%; +} + +.col-2 { + flex: 0 0 16.6666666667%; + max-width: 16.6666666667%; +} + +.col-3 { + flex: 0 0 25%; + max-width: 25%; +} + +.col-4 { + flex: 0 0 33.3333333333%; + max-width: 33.3333333333%; +} + +.col-5 { + flex: 0 0 41.6666666667%; + max-width: 41.6666666667%; +} + +.col-6 { + flex: 0 0 50%; + max-width: 50%; +} + +.col-7 { + flex: 0 0 58.3333333333%; + max-width: 58.3333333333%; +} + +.col-8 { + flex: 0 0 66.6666666667%; + max-width: 66.6666666667%; +} + +.col-9 { + flex: 0 0 75%; + max-width: 75%; +} + +.col-10 { + flex: 0 0 83.3333333333%; + max-width: 83.3333333333%; +} + +.col-11 { + flex: 0 0 91.6666666667%; + max-width: 91.6666666667%; +} + +.col-12 { + flex: 0 0 100%; + max-width: 100%; +} + +.order-first { + order: -1; +} + +.order-last { + order: 13; +} + +.order-0 { + order: 0; +} + +.order-1 { + order: 1; +} + +.order-2 { + order: 2; +} + +.order-3 { + order: 3; +} + +.order-4 { + order: 4; +} + +.order-5 { + order: 5; +} + +.order-6 { + order: 6; +} + +.order-7 { + order: 7; +} + +.order-8 { + order: 8; +} + +.order-9 { + order: 9; +} + +.order-10 { + order: 10; +} + +.order-11 { + order: 11; +} + +.order-12 { + order: 12; +} + +.offset-1 { + margin-left: 8.3333333333%; +} + +.offset-2 { + margin-left: 16.6666666667%; +} + +.offset-3 { + margin-left: 25%; +} + +.offset-4 { + margin-left: 33.3333333333%; +} + +.offset-5 { + margin-left: 41.6666666667%; +} + +.offset-6 { + margin-left: 50%; +} + +.offset-7 { + margin-left: 58.3333333333%; +} + +.offset-8 { + margin-left: 66.6666666667%; +} + +.offset-9 { + margin-left: 75%; +} + +.offset-10 { + margin-left: 83.3333333333%; +} + +.offset-11 { + margin-left: 91.6666666667%; +} + +@media (min-width: 576px) { + .col-sm { + flex-basis: 0; + flex-grow: 1; + max-width: 100%; + } + + .row-cols-sm-1 > * { + flex: 0 0 100%; + max-width: 100%; + } + + .row-cols-sm-2 > * { + flex: 0 0 50%; + max-width: 50%; + } + + .row-cols-sm-3 > * { + flex: 0 0 33.3333333333%; + max-width: 33.3333333333%; + } + + .row-cols-sm-4 > * { + flex: 0 0 25%; + max-width: 25%; + } + + .row-cols-sm-5 > * { + flex: 0 0 20%; + max-width: 20%; + } + + .row-cols-sm-6 > * { + flex: 0 0 16.6666666667%; + max-width: 16.6666666667%; + } + + .col-sm-auto { + flex: 0 0 auto; + width: auto; + max-width: 100%; + } + + .col-sm-1 { + flex: 0 0 8.3333333333%; + max-width: 8.3333333333%; + } + + .col-sm-2 { + flex: 0 0 16.6666666667%; + max-width: 16.6666666667%; + } + + .col-sm-3 { + flex: 0 0 25%; + max-width: 25%; + } + + .col-sm-4 { + flex: 0 0 33.3333333333%; + max-width: 33.3333333333%; + } + + .col-sm-5 { + flex: 0 0 41.6666666667%; + max-width: 41.6666666667%; + } + + .col-sm-6 { + flex: 0 0 50%; + max-width: 50%; + } + + .col-sm-7 { + flex: 0 0 58.3333333333%; + max-width: 58.3333333333%; + } + + .col-sm-8 { + flex: 0 0 66.6666666667%; + max-width: 66.6666666667%; + } + + .col-sm-9 { + flex: 0 0 75%; + max-width: 75%; + } + + .col-sm-10 { + flex: 0 0 83.3333333333%; + max-width: 83.3333333333%; + } + + .col-sm-11 { + flex: 0 0 91.6666666667%; + max-width: 91.6666666667%; + } + + .col-sm-12 { + flex: 0 0 100%; + max-width: 100%; + } + + .order-sm-first { + order: -1; + } + + .order-sm-last { + order: 13; + } + + .order-sm-0 { + order: 0; + } + + .order-sm-1 { + order: 1; + } + + .order-sm-2 { + order: 2; + } + + .order-sm-3 { + order: 3; + } + + .order-sm-4 { + order: 4; + } + + .order-sm-5 { + order: 5; + } + + .order-sm-6 { + order: 6; + } + + .order-sm-7 { + order: 7; + } + + .order-sm-8 { + order: 8; + } + + .order-sm-9 { + order: 9; + } + + .order-sm-10 { + order: 10; + } + + .order-sm-11 { + order: 11; + } + + .order-sm-12 { + order: 12; + } + + .offset-sm-0 { + margin-left: 0; + } + + .offset-sm-1 { + margin-left: 8.3333333333%; + } + + .offset-sm-2 { + margin-left: 16.6666666667%; + } + + .offset-sm-3 { + margin-left: 25%; + } + + .offset-sm-4 { + margin-left: 33.3333333333%; + } + + .offset-sm-5 { + margin-left: 41.6666666667%; + } + + .offset-sm-6 { + margin-left: 50%; + } + + .offset-sm-7 { + margin-left: 58.3333333333%; + } + + .offset-sm-8 { + margin-left: 66.6666666667%; + } + + .offset-sm-9 { + margin-left: 75%; + } + + .offset-sm-10 { + margin-left: 83.3333333333%; + } + + .offset-sm-11 { + margin-left: 91.6666666667%; + } +} +@media (min-width: 768px) { + .col-md { + flex-basis: 0; + flex-grow: 1; + max-width: 100%; + } + + .row-cols-md-1 > * { + flex: 0 0 100%; + max-width: 100%; + } + + .row-cols-md-2 > * { + flex: 0 0 50%; + max-width: 50%; + } + + .row-cols-md-3 > * { + flex: 0 0 33.3333333333%; + max-width: 33.3333333333%; + } + + .row-cols-md-4 > * { + flex: 0 0 25%; + max-width: 25%; + } + + .row-cols-md-5 > * { + flex: 0 0 20%; + max-width: 20%; + } + + .row-cols-md-6 > * { + flex: 0 0 16.6666666667%; + max-width: 16.6666666667%; + } + + .col-md-auto { + flex: 0 0 auto; + width: auto; + max-width: 100%; + } + + .col-md-1 { + flex: 0 0 8.3333333333%; + max-width: 8.3333333333%; + } + + .col-md-2 { + flex: 0 0 16.6666666667%; + max-width: 16.6666666667%; + } + + .col-md-3 { + flex: 0 0 25%; + max-width: 25%; + } + + .col-md-4 { + flex: 0 0 33.3333333333%; + max-width: 33.3333333333%; + } + + .col-md-5 { + flex: 0 0 41.6666666667%; + max-width: 41.6666666667%; + } + + .col-md-6 { + flex: 0 0 50%; + max-width: 50%; + } + + .col-md-7 { + flex: 0 0 58.3333333333%; + max-width: 58.3333333333%; + } + + .col-md-8 { + flex: 0 0 66.6666666667%; + max-width: 66.6666666667%; + } + + .col-md-9 { + flex: 0 0 75%; + max-width: 75%; + } + + .col-md-10 { + flex: 0 0 83.3333333333%; + max-width: 83.3333333333%; + } + + .col-md-11 { + flex: 0 0 91.6666666667%; + max-width: 91.6666666667%; + } + + .col-md-12 { + flex: 0 0 100%; + max-width: 100%; + } + + .order-md-first { + order: -1; + } + + .order-md-last { + order: 13; + } + + .order-md-0 { + order: 0; + } + + .order-md-1 { + order: 1; + } + + .order-md-2 { + order: 2; + } + + .order-md-3 { + order: 3; + } + + .order-md-4 { + order: 4; + } + + .order-md-5 { + order: 5; + } + + .order-md-6 { + order: 6; + } + + .order-md-7 { + order: 7; + } + + .order-md-8 { + order: 8; + } + + .order-md-9 { + order: 9; + } + + .order-md-10 { + order: 10; + } + + .order-md-11 { + order: 11; + } + + .order-md-12 { + order: 12; + } + + .offset-md-0 { + margin-left: 0; + } + + .offset-md-1 { + margin-left: 8.3333333333%; + } + + .offset-md-2 { + margin-left: 16.6666666667%; + } + + .offset-md-3 { + margin-left: 25%; + } + + .offset-md-4 { + margin-left: 33.3333333333%; + } + + .offset-md-5 { + margin-left: 41.6666666667%; + } + + .offset-md-6 { + margin-left: 50%; + } + + .offset-md-7 { + margin-left: 58.3333333333%; + } + + .offset-md-8 { + margin-left: 66.6666666667%; + } + + .offset-md-9 { + margin-left: 75%; + } + + .offset-md-10 { + margin-left: 83.3333333333%; + } + + .offset-md-11 { + margin-left: 91.6666666667%; + } +} +@media (min-width: 992px) { + .col-lg { + flex-basis: 0; + flex-grow: 1; + max-width: 100%; + } + + .row-cols-lg-1 > * { + flex: 0 0 100%; + max-width: 100%; + } + + .row-cols-lg-2 > * { + flex: 0 0 50%; + max-width: 50%; + } + + .row-cols-lg-3 > * { + flex: 0 0 33.3333333333%; + max-width: 33.3333333333%; + } + + .row-cols-lg-4 > * { + flex: 0 0 25%; + max-width: 25%; + } + + .row-cols-lg-5 > * { + flex: 0 0 20%; + max-width: 20%; + } + + .row-cols-lg-6 > * { + flex: 0 0 16.6666666667%; + max-width: 16.6666666667%; + } + + .col-lg-auto { + flex: 0 0 auto; + width: auto; + max-width: 100%; + } + + .col-lg-1 { + flex: 0 0 8.3333333333%; + max-width: 8.3333333333%; + } + + .col-lg-2 { + flex: 0 0 16.6666666667%; + max-width: 16.6666666667%; + } + + .col-lg-3 { + flex: 0 0 25%; + max-width: 25%; + } + + .col-lg-4 { + flex: 0 0 33.3333333333%; + max-width: 33.3333333333%; + } + + .col-lg-5 { + flex: 0 0 41.6666666667%; + max-width: 41.6666666667%; + } + + .col-lg-6 { + flex: 0 0 50%; + max-width: 50%; + } + + .col-lg-7 { + flex: 0 0 58.3333333333%; + max-width: 58.3333333333%; + } + + .col-lg-8 { + flex: 0 0 66.6666666667%; + max-width: 66.6666666667%; + } + + .col-lg-9 { + flex: 0 0 75%; + max-width: 75%; + } + + .col-lg-10 { + flex: 0 0 83.3333333333%; + max-width: 83.3333333333%; + } + + .col-lg-11 { + flex: 0 0 91.6666666667%; + max-width: 91.6666666667%; + } + + .col-lg-12 { + flex: 0 0 100%; + max-width: 100%; + } + + .order-lg-first { + order: -1; + } + + .order-lg-last { + order: 13; + } + + .order-lg-0 { + order: 0; + } + + .order-lg-1 { + order: 1; + } + + .order-lg-2 { + order: 2; + } + + .order-lg-3 { + order: 3; + } + + .order-lg-4 { + order: 4; + } + + .order-lg-5 { + order: 5; + } + + .order-lg-6 { + order: 6; + } + + .order-lg-7 { + order: 7; + } + + .order-lg-8 { + order: 8; + } + + .order-lg-9 { + order: 9; + } + + .order-lg-10 { + order: 10; + } + + .order-lg-11 { + order: 11; + } + + .order-lg-12 { + order: 12; + } + + .offset-lg-0 { + margin-left: 0; + } + + .offset-lg-1 { + margin-left: 8.3333333333%; + } + + .offset-lg-2 { + margin-left: 16.6666666667%; + } + + .offset-lg-3 { + margin-left: 25%; + } + + .offset-lg-4 { + margin-left: 33.3333333333%; + } + + .offset-lg-5 { + margin-left: 41.6666666667%; + } + + .offset-lg-6 { + margin-left: 50%; + } + + .offset-lg-7 { + margin-left: 58.3333333333%; + } + + .offset-lg-8 { + margin-left: 66.6666666667%; + } + + .offset-lg-9 { + margin-left: 75%; + } + + .offset-lg-10 { + margin-left: 83.3333333333%; + } + + .offset-lg-11 { + margin-left: 91.6666666667%; + } +} +@media (min-width: 1200px) { + .col-xl { + flex-basis: 0; + flex-grow: 1; + max-width: 100%; + } + + .row-cols-xl-1 > * { + flex: 0 0 100%; + max-width: 100%; + } + + .row-cols-xl-2 > * { + flex: 0 0 50%; + max-width: 50%; + } + + .row-cols-xl-3 > * { + flex: 0 0 33.3333333333%; + max-width: 33.3333333333%; + } + + .row-cols-xl-4 > * { + flex: 0 0 25%; + max-width: 25%; + } + + .row-cols-xl-5 > * { + flex: 0 0 20%; + max-width: 20%; + } + + .row-cols-xl-6 > * { + flex: 0 0 16.6666666667%; + max-width: 16.6666666667%; + } + + .col-xl-auto { + flex: 0 0 auto; + width: auto; + max-width: 100%; + } + + .col-xl-1 { + flex: 0 0 8.3333333333%; + max-width: 8.3333333333%; + } + + .col-xl-2 { + flex: 0 0 16.6666666667%; + max-width: 16.6666666667%; + } + + .col-xl-3 { + flex: 0 0 25%; + max-width: 25%; + } + + .col-xl-4 { + flex: 0 0 33.3333333333%; + max-width: 33.3333333333%; + } + + .col-xl-5 { + flex: 0 0 41.6666666667%; + max-width: 41.6666666667%; + } + + .col-xl-6 { + flex: 0 0 50%; + max-width: 50%; + } + + .col-xl-7 { + flex: 0 0 58.3333333333%; + max-width: 58.3333333333%; + } + + .col-xl-8 { + flex: 0 0 66.6666666667%; + max-width: 66.6666666667%; + } + + .col-xl-9 { + flex: 0 0 75%; + max-width: 75%; + } + + .col-xl-10 { + flex: 0 0 83.3333333333%; + max-width: 83.3333333333%; + } + + .col-xl-11 { + flex: 0 0 91.6666666667%; + max-width: 91.6666666667%; + } + + .col-xl-12 { + flex: 0 0 100%; + max-width: 100%; + } + + .order-xl-first { + order: -1; + } + + .order-xl-last { + order: 13; + } + + .order-xl-0 { + order: 0; + } + + .order-xl-1 { + order: 1; + } + + .order-xl-2 { + order: 2; + } + + .order-xl-3 { + order: 3; + } + + .order-xl-4 { + order: 4; + } + + .order-xl-5 { + order: 5; + } + + .order-xl-6 { + order: 6; + } + + .order-xl-7 { + order: 7; + } + + .order-xl-8 { + order: 8; + } + + .order-xl-9 { + order: 9; + } + + .order-xl-10 { + order: 10; + } + + .order-xl-11 { + order: 11; + } + + .order-xl-12 { + order: 12; + } + + .offset-xl-0 { + margin-left: 0; + } + + .offset-xl-1 { + margin-left: 8.3333333333%; + } + + .offset-xl-2 { + margin-left: 16.6666666667%; + } + + .offset-xl-3 { + margin-left: 25%; + } + + .offset-xl-4 { + margin-left: 33.3333333333%; + } + + .offset-xl-5 { + margin-left: 41.6666666667%; + } + + .offset-xl-6 { + margin-left: 50%; + } + + .offset-xl-7 { + margin-left: 58.3333333333%; + } + + .offset-xl-8 { + margin-left: 66.6666666667%; + } + + .offset-xl-9 { + margin-left: 75%; + } + + .offset-xl-10 { + margin-left: 83.3333333333%; + } + + .offset-xl-11 { + margin-left: 91.6666666667%; + } +} +.d-none { + display: none !important; +} + +.d-inline { + display: inline !important; +} + +.d-inline-block { + display: inline-block !important; +} + +.d-block { + display: block !important; +} + +.d-table { + display: table !important; +} + +.d-table-row { + display: table-row !important; +} + +.d-table-cell { + display: table-cell !important; +} + +.d-flex { + display: flex !important; +} + +.d-inline-flex { + display: inline-flex !important; +} + +@media (min-width: 576px) { + .d-sm-none { + display: none !important; + } + + .d-sm-inline { + display: inline !important; + } + + .d-sm-inline-block { + display: inline-block !important; + } + + .d-sm-block { + display: block !important; + } + + .d-sm-table { + display: table !important; + } + + .d-sm-table-row { + display: table-row !important; + } + + .d-sm-table-cell { + display: table-cell !important; + } + + .d-sm-flex { + display: flex !important; + } + + .d-sm-inline-flex { + display: inline-flex !important; + } +} +@media (min-width: 768px) { + .d-md-none { + display: none !important; + } + + .d-md-inline { + display: inline !important; + } + + .d-md-inline-block { + display: inline-block !important; + } + + .d-md-block { + display: block !important; + } + + .d-md-table { + display: table !important; + } + + .d-md-table-row { + display: table-row !important; + } + + .d-md-table-cell { + display: table-cell !important; + } + + .d-md-flex { + display: flex !important; + } + + .d-md-inline-flex { + display: inline-flex !important; + } +} +@media (min-width: 992px) { + .d-lg-none { + display: none !important; + } + + .d-lg-inline { + display: inline !important; + } + + .d-lg-inline-block { + display: inline-block !important; + } + + .d-lg-block { + display: block !important; + } + + .d-lg-table { + display: table !important; + } + + .d-lg-table-row { + display: table-row !important; + } + + .d-lg-table-cell { + display: table-cell !important; + } + + .d-lg-flex { + display: flex !important; + } + + .d-lg-inline-flex { + display: inline-flex !important; + } +} +@media (min-width: 1200px) { + .d-xl-none { + display: none !important; + } + + .d-xl-inline { + display: inline !important; + } + + .d-xl-inline-block { + display: inline-block !important; + } + + .d-xl-block { + display: block !important; + } + + .d-xl-table { + display: table !important; + } + + .d-xl-table-row { + display: table-row !important; + } + + .d-xl-table-cell { + display: table-cell !important; + } + + .d-xl-flex { + display: flex !important; + } + + .d-xl-inline-flex { + display: inline-flex !important; + } +} +@media print { + .d-print-none { + display: none !important; + } + + .d-print-inline { + display: inline !important; + } + + .d-print-inline-block { + display: inline-block !important; + } + + .d-print-block { + display: block !important; + } + + .d-print-table { + display: table !important; + } + + .d-print-table-row { + display: table-row !important; + } + + .d-print-table-cell { + display: table-cell !important; + } + + .d-print-flex { + display: flex !important; + } + + .d-print-inline-flex { + display: inline-flex !important; + } +} +.flex-row { + flex-direction: row !important; +} + +.flex-column { + flex-direction: column !important; +} + +.flex-row-reverse { + flex-direction: row-reverse !important; +} + +.flex-column-reverse { + flex-direction: column-reverse !important; +} + +.flex-wrap { + flex-wrap: wrap !important; +} + +.flex-nowrap { + flex-wrap: nowrap !important; +} + +.flex-wrap-reverse { + flex-wrap: wrap-reverse !important; +} + +.flex-fill { + flex: 1 1 auto !important; +} + +.flex-grow-0 { + flex-grow: 0 !important; +} + +.flex-grow-1 { + flex-grow: 1 !important; +} + +.flex-shrink-0 { + flex-shrink: 0 !important; +} + +.flex-shrink-1 { + flex-shrink: 1 !important; +} + +.justify-content-start { + justify-content: flex-start !important; +} + +.justify-content-end { + justify-content: flex-end !important; +} + +.justify-content-center { + justify-content: center !important; +} + +.justify-content-between { + justify-content: space-between !important; +} + +.justify-content-around { + justify-content: space-around !important; +} + +.align-items-start { + align-items: flex-start !important; +} + +.align-items-end { + align-items: flex-end !important; +} + +.align-items-center { + align-items: center !important; +} + +.align-items-baseline { + align-items: baseline !important; +} + +.align-items-stretch { + align-items: stretch !important; +} + +.align-content-start { + align-content: flex-start !important; +} + +.align-content-end { + align-content: flex-end !important; +} + +.align-content-center { + align-content: center !important; +} + +.align-content-between { + align-content: space-between !important; +} + +.align-content-around { + align-content: space-around !important; +} + +.align-content-stretch { + align-content: stretch !important; +} + +.align-self-auto { + align-self: auto !important; +} + +.align-self-start { + align-self: flex-start !important; +} + +.align-self-end { + align-self: flex-end !important; +} + +.align-self-center { + align-self: center !important; +} + +.align-self-baseline { + align-self: baseline !important; +} + +.align-self-stretch { + align-self: stretch !important; +} + +@media (min-width: 576px) { + .flex-sm-row { + flex-direction: row !important; + } + + .flex-sm-column { + flex-direction: column !important; + } + + .flex-sm-row-reverse { + flex-direction: row-reverse !important; + } + + .flex-sm-column-reverse { + flex-direction: column-reverse !important; + } + + .flex-sm-wrap { + flex-wrap: wrap !important; + } + + .flex-sm-nowrap { + flex-wrap: nowrap !important; + } + + .flex-sm-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + + .flex-sm-fill { + flex: 1 1 auto !important; + } + + .flex-sm-grow-0 { + flex-grow: 0 !important; + } + + .flex-sm-grow-1 { + flex-grow: 1 !important; + } + + .flex-sm-shrink-0 { + flex-shrink: 0 !important; + } + + .flex-sm-shrink-1 { + flex-shrink: 1 !important; + } + + .justify-content-sm-start { + justify-content: flex-start !important; + } + + .justify-content-sm-end { + justify-content: flex-end !important; + } + + .justify-content-sm-center { + justify-content: center !important; + } + + .justify-content-sm-between { + justify-content: space-between !important; + } + + .justify-content-sm-around { + justify-content: space-around !important; + } + + .align-items-sm-start { + align-items: flex-start !important; + } + + .align-items-sm-end { + align-items: flex-end !important; + } + + .align-items-sm-center { + align-items: center !important; + } + + .align-items-sm-baseline { + align-items: baseline !important; + } + + .align-items-sm-stretch { + align-items: stretch !important; + } + + .align-content-sm-start { + align-content: flex-start !important; + } + + .align-content-sm-end { + align-content: flex-end !important; + } + + .align-content-sm-center { + align-content: center !important; + } + + .align-content-sm-between { + align-content: space-between !important; + } + + .align-content-sm-around { + align-content: space-around !important; + } + + .align-content-sm-stretch { + align-content: stretch !important; + } + + .align-self-sm-auto { + align-self: auto !important; + } + + .align-self-sm-start { + align-self: flex-start !important; + } + + .align-self-sm-end { + align-self: flex-end !important; + } + + .align-self-sm-center { + align-self: center !important; + } + + .align-self-sm-baseline { + align-self: baseline !important; + } + + .align-self-sm-stretch { + align-self: stretch !important; + } +} +@media (min-width: 768px) { + .flex-md-row { + flex-direction: row !important; + } + + .flex-md-column { + flex-direction: column !important; + } + + .flex-md-row-reverse { + flex-direction: row-reverse !important; + } + + .flex-md-column-reverse { + flex-direction: column-reverse !important; + } + + .flex-md-wrap { + flex-wrap: wrap !important; + } + + .flex-md-nowrap { + flex-wrap: nowrap !important; + } + + .flex-md-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + + .flex-md-fill { + flex: 1 1 auto !important; + } + + .flex-md-grow-0 { + flex-grow: 0 !important; + } + + .flex-md-grow-1 { + flex-grow: 1 !important; + } + + .flex-md-shrink-0 { + flex-shrink: 0 !important; + } + + .flex-md-shrink-1 { + flex-shrink: 1 !important; + } + + .justify-content-md-start { + justify-content: flex-start !important; + } + + .justify-content-md-end { + justify-content: flex-end !important; + } + + .justify-content-md-center { + justify-content: center !important; + } + + .justify-content-md-between { + justify-content: space-between !important; + } + + .justify-content-md-around { + justify-content: space-around !important; + } + + .align-items-md-start { + align-items: flex-start !important; + } + + .align-items-md-end { + align-items: flex-end !important; + } + + .align-items-md-center { + align-items: center !important; + } + + .align-items-md-baseline { + align-items: baseline !important; + } + + .align-items-md-stretch { + align-items: stretch !important; + } + + .align-content-md-start { + align-content: flex-start !important; + } + + .align-content-md-end { + align-content: flex-end !important; + } + + .align-content-md-center { + align-content: center !important; + } + + .align-content-md-between { + align-content: space-between !important; + } + + .align-content-md-around { + align-content: space-around !important; + } + + .align-content-md-stretch { + align-content: stretch !important; + } + + .align-self-md-auto { + align-self: auto !important; + } + + .align-self-md-start { + align-self: flex-start !important; + } + + .align-self-md-end { + align-self: flex-end !important; + } + + .align-self-md-center { + align-self: center !important; + } + + .align-self-md-baseline { + align-self: baseline !important; + } + + .align-self-md-stretch { + align-self: stretch !important; + } +} +@media (min-width: 992px) { + .flex-lg-row { + flex-direction: row !important; + } + + .flex-lg-column { + flex-direction: column !important; + } + + .flex-lg-row-reverse { + flex-direction: row-reverse !important; + } + + .flex-lg-column-reverse { + flex-direction: column-reverse !important; + } + + .flex-lg-wrap { + flex-wrap: wrap !important; + } + + .flex-lg-nowrap { + flex-wrap: nowrap !important; + } + + .flex-lg-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + + .flex-lg-fill { + flex: 1 1 auto !important; + } + + .flex-lg-grow-0 { + flex-grow: 0 !important; + } + + .flex-lg-grow-1 { + flex-grow: 1 !important; + } + + .flex-lg-shrink-0 { + flex-shrink: 0 !important; + } + + .flex-lg-shrink-1 { + flex-shrink: 1 !important; + } + + .justify-content-lg-start { + justify-content: flex-start !important; + } + + .justify-content-lg-end { + justify-content: flex-end !important; + } + + .justify-content-lg-center { + justify-content: center !important; + } + + .justify-content-lg-between { + justify-content: space-between !important; + } + + .justify-content-lg-around { + justify-content: space-around !important; + } + + .align-items-lg-start { + align-items: flex-start !important; + } + + .align-items-lg-end { + align-items: flex-end !important; + } + + .align-items-lg-center { + align-items: center !important; + } + + .align-items-lg-baseline { + align-items: baseline !important; + } + + .align-items-lg-stretch { + align-items: stretch !important; + } + + .align-content-lg-start { + align-content: flex-start !important; + } + + .align-content-lg-end { + align-content: flex-end !important; + } + + .align-content-lg-center { + align-content: center !important; + } + + .align-content-lg-between { + align-content: space-between !important; + } + + .align-content-lg-around { + align-content: space-around !important; + } + + .align-content-lg-stretch { + align-content: stretch !important; + } + + .align-self-lg-auto { + align-self: auto !important; + } + + .align-self-lg-start { + align-self: flex-start !important; + } + + .align-self-lg-end { + align-self: flex-end !important; + } + + .align-self-lg-center { + align-self: center !important; + } + + .align-self-lg-baseline { + align-self: baseline !important; + } + + .align-self-lg-stretch { + align-self: stretch !important; + } +} +@media (min-width: 1200px) { + .flex-xl-row { + flex-direction: row !important; + } + + .flex-xl-column { + flex-direction: column !important; + } + + .flex-xl-row-reverse { + flex-direction: row-reverse !important; + } + + .flex-xl-column-reverse { + flex-direction: column-reverse !important; + } + + .flex-xl-wrap { + flex-wrap: wrap !important; + } + + .flex-xl-nowrap { + flex-wrap: nowrap !important; + } + + .flex-xl-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + + .flex-xl-fill { + flex: 1 1 auto !important; + } + + .flex-xl-grow-0 { + flex-grow: 0 !important; + } + + .flex-xl-grow-1 { + flex-grow: 1 !important; + } + + .flex-xl-shrink-0 { + flex-shrink: 0 !important; + } + + .flex-xl-shrink-1 { + flex-shrink: 1 !important; + } + + .justify-content-xl-start { + justify-content: flex-start !important; + } + + .justify-content-xl-end { + justify-content: flex-end !important; + } + + .justify-content-xl-center { + justify-content: center !important; + } + + .justify-content-xl-between { + justify-content: space-between !important; + } + + .justify-content-xl-around { + justify-content: space-around !important; + } + + .align-items-xl-start { + align-items: flex-start !important; + } + + .align-items-xl-end { + align-items: flex-end !important; + } + + .align-items-xl-center { + align-items: center !important; + } + + .align-items-xl-baseline { + align-items: baseline !important; + } + + .align-items-xl-stretch { + align-items: stretch !important; + } + + .align-content-xl-start { + align-content: flex-start !important; + } + + .align-content-xl-end { + align-content: flex-end !important; + } + + .align-content-xl-center { + align-content: center !important; + } + + .align-content-xl-between { + align-content: space-between !important; + } + + .align-content-xl-around { + align-content: space-around !important; + } + + .align-content-xl-stretch { + align-content: stretch !important; + } + + .align-self-xl-auto { + align-self: auto !important; + } + + .align-self-xl-start { + align-self: flex-start !important; + } + + .align-self-xl-end { + align-self: flex-end !important; + } + + .align-self-xl-center { + align-self: center !important; + } + + .align-self-xl-baseline { + align-self: baseline !important; + } + + .align-self-xl-stretch { + align-self: stretch !important; + } +} +.m-0 { + margin: 0 !important; +} + +.mt-0, +.my-0 { + margin-top: 0 !important; +} + +.mr-0, +.mx-0 { + margin-right: 0 !important; +} + +.mb-0, +.my-0 { + margin-bottom: 0 !important; +} + +.ml-0, +.mx-0 { + margin-left: 0 !important; +} + +.m-1 { + margin: 0.25rem !important; +} + +.mt-1, +.my-1 { + margin-top: 0.25rem !important; +} + +.mr-1, +.mx-1 { + margin-right: 0.25rem !important; +} + +.mb-1, +.my-1 { + margin-bottom: 0.25rem !important; +} + +.ml-1, +.mx-1 { + margin-left: 0.25rem !important; +} + +.m-2 { + margin: 0.5rem !important; +} + +.mt-2, +.my-2 { + margin-top: 0.5rem !important; +} + +.mr-2, +.mx-2 { + margin-right: 0.5rem !important; +} + +.mb-2, +.my-2 { + margin-bottom: 0.5rem !important; +} + +.ml-2, +.mx-2 { + margin-left: 0.5rem !important; +} + +.m-3 { + margin: 1rem !important; +} + +.mt-3, +.my-3 { + margin-top: 1rem !important; +} + +.mr-3, +.mx-3 { + margin-right: 1rem !important; +} + +.mb-3, +.my-3 { + margin-bottom: 1rem !important; +} + +.ml-3, +.mx-3 { + margin-left: 1rem !important; +} + +.m-4 { + margin: 1.5rem !important; +} + +.mt-4, +.my-4 { + margin-top: 1.5rem !important; +} + +.mr-4, +.mx-4 { + margin-right: 1.5rem !important; +} + +.mb-4, +.my-4 { + margin-bottom: 1.5rem !important; +} + +.ml-4, +.mx-4 { + margin-left: 1.5rem !important; +} + +.m-5 { + margin: 3rem !important; +} + +.mt-5, +.my-5 { + margin-top: 3rem !important; +} + +.mr-5, +.mx-5 { + margin-right: 3rem !important; +} + +.mb-5, +.my-5 { + margin-bottom: 3rem !important; +} + +.ml-5, +.mx-5 { + margin-left: 3rem !important; +} + +.p-0 { + padding: 0 !important; +} + +.pt-0, +.py-0 { + padding-top: 0 !important; +} + +.pr-0, +.px-0 { + padding-right: 0 !important; +} + +.pb-0, +.py-0 { + padding-bottom: 0 !important; +} + +.pl-0, +.px-0 { + padding-left: 0 !important; +} + +.p-1 { + padding: 0.25rem !important; +} + +.pt-1, +.py-1 { + padding-top: 0.25rem !important; +} + +.pr-1, +.px-1 { + padding-right: 0.25rem !important; +} + +.pb-1, +.py-1 { + padding-bottom: 0.25rem !important; +} + +.pl-1, +.px-1 { + padding-left: 0.25rem !important; +} + +.p-2 { + padding: 0.5rem !important; +} + +.pt-2, +.py-2 { + padding-top: 0.5rem !important; +} + +.pr-2, +.px-2 { + padding-right: 0.5rem !important; +} + +.pb-2, +.py-2 { + padding-bottom: 0.5rem !important; +} + +.pl-2, +.px-2 { + padding-left: 0.5rem !important; +} + +.p-3 { + padding: 1rem !important; +} + +.pt-3, +.py-3 { + padding-top: 1rem !important; +} + +.pr-3, +.px-3 { + padding-right: 1rem !important; +} + +.pb-3, +.py-3 { + padding-bottom: 1rem !important; +} + +.pl-3, +.px-3 { + padding-left: 1rem !important; +} + +.p-4 { + padding: 1.5rem !important; +} + +.pt-4, +.py-4 { + padding-top: 1.5rem !important; +} + +.pr-4, +.px-4 { + padding-right: 1.5rem !important; +} + +.pb-4, +.py-4 { + padding-bottom: 1.5rem !important; +} + +.pl-4, +.px-4 { + padding-left: 1.5rem !important; +} + +.p-5 { + padding: 3rem !important; +} + +.pt-5, +.py-5 { + padding-top: 3rem !important; +} + +.pr-5, +.px-5 { + padding-right: 3rem !important; +} + +.pb-5, +.py-5 { + padding-bottom: 3rem !important; +} + +.pl-5, +.px-5 { + padding-left: 3rem !important; +} + +.m-n1 { + margin: -0.25rem !important; +} + +.mt-n1, +.my-n1 { + margin-top: -0.25rem !important; +} + +.mr-n1, +.mx-n1 { + margin-right: -0.25rem !important; +} + +.mb-n1, +.my-n1 { + margin-bottom: -0.25rem !important; +} + +.ml-n1, +.mx-n1 { + margin-left: -0.25rem !important; +} + +.m-n2 { + margin: -0.5rem !important; +} + +.mt-n2, +.my-n2 { + margin-top: -0.5rem !important; +} + +.mr-n2, +.mx-n2 { + margin-right: -0.5rem !important; +} + +.mb-n2, +.my-n2 { + margin-bottom: -0.5rem !important; +} + +.ml-n2, +.mx-n2 { + margin-left: -0.5rem !important; +} + +.m-n3 { + margin: -1rem !important; +} + +.mt-n3, +.my-n3 { + margin-top: -1rem !important; +} + +.mr-n3, +.mx-n3 { + margin-right: -1rem !important; +} + +.mb-n3, +.my-n3 { + margin-bottom: -1rem !important; +} + +.ml-n3, +.mx-n3 { + margin-left: -1rem !important; +} + +.m-n4 { + margin: -1.5rem !important; +} + +.mt-n4, +.my-n4 { + margin-top: -1.5rem !important; +} + +.mr-n4, +.mx-n4 { + margin-right: -1.5rem !important; +} + +.mb-n4, +.my-n4 { + margin-bottom: -1.5rem !important; +} + +.ml-n4, +.mx-n4 { + margin-left: -1.5rem !important; +} + +.m-n5 { + margin: -3rem !important; +} + +.mt-n5, +.my-n5 { + margin-top: -3rem !important; +} + +.mr-n5, +.mx-n5 { + margin-right: -3rem !important; +} + +.mb-n5, +.my-n5 { + margin-bottom: -3rem !important; +} + +.ml-n5, +.mx-n5 { + margin-left: -3rem !important; +} + +.m-auto { + margin: auto !important; +} + +.mt-auto, +.my-auto { + margin-top: auto !important; +} + +.mr-auto, +.mx-auto { + margin-right: auto !important; +} + +.mb-auto, +.my-auto { + margin-bottom: auto !important; +} + +.ml-auto, +.mx-auto { + margin-left: auto !important; +} + +@media (min-width: 576px) { + .m-sm-0 { + margin: 0 !important; + } + + .mt-sm-0, +.my-sm-0 { + margin-top: 0 !important; + } + + .mr-sm-0, +.mx-sm-0 { + margin-right: 0 !important; + } + + .mb-sm-0, +.my-sm-0 { + margin-bottom: 0 !important; + } + + .ml-sm-0, +.mx-sm-0 { + margin-left: 0 !important; + } + + .m-sm-1 { + margin: 0.25rem !important; + } + + .mt-sm-1, +.my-sm-1 { + margin-top: 0.25rem !important; + } + + .mr-sm-1, +.mx-sm-1 { + margin-right: 0.25rem !important; + } + + .mb-sm-1, +.my-sm-1 { + margin-bottom: 0.25rem !important; + } + + .ml-sm-1, +.mx-sm-1 { + margin-left: 0.25rem !important; + } + + .m-sm-2 { + margin: 0.5rem !important; + } + + .mt-sm-2, +.my-sm-2 { + margin-top: 0.5rem !important; + } + + .mr-sm-2, +.mx-sm-2 { + margin-right: 0.5rem !important; + } + + .mb-sm-2, +.my-sm-2 { + margin-bottom: 0.5rem !important; + } + + .ml-sm-2, +.mx-sm-2 { + margin-left: 0.5rem !important; + } + + .m-sm-3 { + margin: 1rem !important; + } + + .mt-sm-3, +.my-sm-3 { + margin-top: 1rem !important; + } + + .mr-sm-3, +.mx-sm-3 { + margin-right: 1rem !important; + } + + .mb-sm-3, +.my-sm-3 { + margin-bottom: 1rem !important; + } + + .ml-sm-3, +.mx-sm-3 { + margin-left: 1rem !important; + } + + .m-sm-4 { + margin: 1.5rem !important; + } + + .mt-sm-4, +.my-sm-4 { + margin-top: 1.5rem !important; + } + + .mr-sm-4, +.mx-sm-4 { + margin-right: 1.5rem !important; + } + + .mb-sm-4, +.my-sm-4 { + margin-bottom: 1.5rem !important; + } + + .ml-sm-4, +.mx-sm-4 { + margin-left: 1.5rem !important; + } + + .m-sm-5 { + margin: 3rem !important; + } + + .mt-sm-5, +.my-sm-5 { + margin-top: 3rem !important; + } + + .mr-sm-5, +.mx-sm-5 { + margin-right: 3rem !important; + } + + .mb-sm-5, +.my-sm-5 { + margin-bottom: 3rem !important; + } + + .ml-sm-5, +.mx-sm-5 { + margin-left: 3rem !important; + } + + .p-sm-0 { + padding: 0 !important; + } + + .pt-sm-0, +.py-sm-0 { + padding-top: 0 !important; + } + + .pr-sm-0, +.px-sm-0 { + padding-right: 0 !important; + } + + .pb-sm-0, +.py-sm-0 { + padding-bottom: 0 !important; + } + + .pl-sm-0, +.px-sm-0 { + padding-left: 0 !important; + } + + .p-sm-1 { + padding: 0.25rem !important; + } + + .pt-sm-1, +.py-sm-1 { + padding-top: 0.25rem !important; + } + + .pr-sm-1, +.px-sm-1 { + padding-right: 0.25rem !important; + } + + .pb-sm-1, +.py-sm-1 { + padding-bottom: 0.25rem !important; + } + + .pl-sm-1, +.px-sm-1 { + padding-left: 0.25rem !important; + } + + .p-sm-2 { + padding: 0.5rem !important; + } + + .pt-sm-2, +.py-sm-2 { + padding-top: 0.5rem !important; + } + + .pr-sm-2, +.px-sm-2 { + padding-right: 0.5rem !important; + } + + .pb-sm-2, +.py-sm-2 { + padding-bottom: 0.5rem !important; + } + + .pl-sm-2, +.px-sm-2 { + padding-left: 0.5rem !important; + } + + .p-sm-3 { + padding: 1rem !important; + } + + .pt-sm-3, +.py-sm-3 { + padding-top: 1rem !important; + } + + .pr-sm-3, +.px-sm-3 { + padding-right: 1rem !important; + } + + .pb-sm-3, +.py-sm-3 { + padding-bottom: 1rem !important; + } + + .pl-sm-3, +.px-sm-3 { + padding-left: 1rem !important; + } + + .p-sm-4 { + padding: 1.5rem !important; + } + + .pt-sm-4, +.py-sm-4 { + padding-top: 1.5rem !important; + } + + .pr-sm-4, +.px-sm-4 { + padding-right: 1.5rem !important; + } + + .pb-sm-4, +.py-sm-4 { + padding-bottom: 1.5rem !important; + } + + .pl-sm-4, +.px-sm-4 { + padding-left: 1.5rem !important; + } + + .p-sm-5 { + padding: 3rem !important; + } + + .pt-sm-5, +.py-sm-5 { + padding-top: 3rem !important; + } + + .pr-sm-5, +.px-sm-5 { + padding-right: 3rem !important; + } + + .pb-sm-5, +.py-sm-5 { + padding-bottom: 3rem !important; + } + + .pl-sm-5, +.px-sm-5 { + padding-left: 3rem !important; + } + + .m-sm-n1 { + margin: -0.25rem !important; + } + + .mt-sm-n1, +.my-sm-n1 { + margin-top: -0.25rem !important; + } + + .mr-sm-n1, +.mx-sm-n1 { + margin-right: -0.25rem !important; + } + + .mb-sm-n1, +.my-sm-n1 { + margin-bottom: -0.25rem !important; + } + + .ml-sm-n1, +.mx-sm-n1 { + margin-left: -0.25rem !important; + } + + .m-sm-n2 { + margin: -0.5rem !important; + } + + .mt-sm-n2, +.my-sm-n2 { + margin-top: -0.5rem !important; + } + + .mr-sm-n2, +.mx-sm-n2 { + margin-right: -0.5rem !important; + } + + .mb-sm-n2, +.my-sm-n2 { + margin-bottom: -0.5rem !important; + } + + .ml-sm-n2, +.mx-sm-n2 { + margin-left: -0.5rem !important; + } + + .m-sm-n3 { + margin: -1rem !important; + } + + .mt-sm-n3, +.my-sm-n3 { + margin-top: -1rem !important; + } + + .mr-sm-n3, +.mx-sm-n3 { + margin-right: -1rem !important; + } + + .mb-sm-n3, +.my-sm-n3 { + margin-bottom: -1rem !important; + } + + .ml-sm-n3, +.mx-sm-n3 { + margin-left: -1rem !important; + } + + .m-sm-n4 { + margin: -1.5rem !important; + } + + .mt-sm-n4, +.my-sm-n4 { + margin-top: -1.5rem !important; + } + + .mr-sm-n4, +.mx-sm-n4 { + margin-right: -1.5rem !important; + } + + .mb-sm-n4, +.my-sm-n4 { + margin-bottom: -1.5rem !important; + } + + .ml-sm-n4, +.mx-sm-n4 { + margin-left: -1.5rem !important; + } + + .m-sm-n5 { + margin: -3rem !important; + } + + .mt-sm-n5, +.my-sm-n5 { + margin-top: -3rem !important; + } + + .mr-sm-n5, +.mx-sm-n5 { + margin-right: -3rem !important; + } + + .mb-sm-n5, +.my-sm-n5 { + margin-bottom: -3rem !important; + } + + .ml-sm-n5, +.mx-sm-n5 { + margin-left: -3rem !important; + } + + .m-sm-auto { + margin: auto !important; + } + + .mt-sm-auto, +.my-sm-auto { + margin-top: auto !important; + } + + .mr-sm-auto, +.mx-sm-auto { + margin-right: auto !important; + } + + .mb-sm-auto, +.my-sm-auto { + margin-bottom: auto !important; + } + + .ml-sm-auto, +.mx-sm-auto { + margin-left: auto !important; + } +} +@media (min-width: 768px) { + .m-md-0 { + margin: 0 !important; + } + + .mt-md-0, +.my-md-0 { + margin-top: 0 !important; + } + + .mr-md-0, +.mx-md-0 { + margin-right: 0 !important; + } + + .mb-md-0, +.my-md-0 { + margin-bottom: 0 !important; + } + + .ml-md-0, +.mx-md-0 { + margin-left: 0 !important; + } + + .m-md-1 { + margin: 0.25rem !important; + } + + .mt-md-1, +.my-md-1 { + margin-top: 0.25rem !important; + } + + .mr-md-1, +.mx-md-1 { + margin-right: 0.25rem !important; + } + + .mb-md-1, +.my-md-1 { + margin-bottom: 0.25rem !important; + } + + .ml-md-1, +.mx-md-1 { + margin-left: 0.25rem !important; + } + + .m-md-2 { + margin: 0.5rem !important; + } + + .mt-md-2, +.my-md-2 { + margin-top: 0.5rem !important; + } + + .mr-md-2, +.mx-md-2 { + margin-right: 0.5rem !important; + } + + .mb-md-2, +.my-md-2 { + margin-bottom: 0.5rem !important; + } + + .ml-md-2, +.mx-md-2 { + margin-left: 0.5rem !important; + } + + .m-md-3 { + margin: 1rem !important; + } + + .mt-md-3, +.my-md-3 { + margin-top: 1rem !important; + } + + .mr-md-3, +.mx-md-3 { + margin-right: 1rem !important; + } + + .mb-md-3, +.my-md-3 { + margin-bottom: 1rem !important; + } + + .ml-md-3, +.mx-md-3 { + margin-left: 1rem !important; + } + + .m-md-4 { + margin: 1.5rem !important; + } + + .mt-md-4, +.my-md-4 { + margin-top: 1.5rem !important; + } + + .mr-md-4, +.mx-md-4 { + margin-right: 1.5rem !important; + } + + .mb-md-4, +.my-md-4 { + margin-bottom: 1.5rem !important; + } + + .ml-md-4, +.mx-md-4 { + margin-left: 1.5rem !important; + } + + .m-md-5 { + margin: 3rem !important; + } + + .mt-md-5, +.my-md-5 { + margin-top: 3rem !important; + } + + .mr-md-5, +.mx-md-5 { + margin-right: 3rem !important; + } + + .mb-md-5, +.my-md-5 { + margin-bottom: 3rem !important; + } + + .ml-md-5, +.mx-md-5 { + margin-left: 3rem !important; + } + + .p-md-0 { + padding: 0 !important; + } + + .pt-md-0, +.py-md-0 { + padding-top: 0 !important; + } + + .pr-md-0, +.px-md-0 { + padding-right: 0 !important; + } + + .pb-md-0, +.py-md-0 { + padding-bottom: 0 !important; + } + + .pl-md-0, +.px-md-0 { + padding-left: 0 !important; + } + + .p-md-1 { + padding: 0.25rem !important; + } + + .pt-md-1, +.py-md-1 { + padding-top: 0.25rem !important; + } + + .pr-md-1, +.px-md-1 { + padding-right: 0.25rem !important; + } + + .pb-md-1, +.py-md-1 { + padding-bottom: 0.25rem !important; + } + + .pl-md-1, +.px-md-1 { + padding-left: 0.25rem !important; + } + + .p-md-2 { + padding: 0.5rem !important; + } + + .pt-md-2, +.py-md-2 { + padding-top: 0.5rem !important; + } + + .pr-md-2, +.px-md-2 { + padding-right: 0.5rem !important; + } + + .pb-md-2, +.py-md-2 { + padding-bottom: 0.5rem !important; + } + + .pl-md-2, +.px-md-2 { + padding-left: 0.5rem !important; + } + + .p-md-3 { + padding: 1rem !important; + } + + .pt-md-3, +.py-md-3 { + padding-top: 1rem !important; + } + + .pr-md-3, +.px-md-3 { + padding-right: 1rem !important; + } + + .pb-md-3, +.py-md-3 { + padding-bottom: 1rem !important; + } + + .pl-md-3, +.px-md-3 { + padding-left: 1rem !important; + } + + .p-md-4 { + padding: 1.5rem !important; + } + + .pt-md-4, +.py-md-4 { + padding-top: 1.5rem !important; + } + + .pr-md-4, +.px-md-4 { + padding-right: 1.5rem !important; + } + + .pb-md-4, +.py-md-4 { + padding-bottom: 1.5rem !important; + } + + .pl-md-4, +.px-md-4 { + padding-left: 1.5rem !important; + } + + .p-md-5 { + padding: 3rem !important; + } + + .pt-md-5, +.py-md-5 { + padding-top: 3rem !important; + } + + .pr-md-5, +.px-md-5 { + padding-right: 3rem !important; + } + + .pb-md-5, +.py-md-5 { + padding-bottom: 3rem !important; + } + + .pl-md-5, +.px-md-5 { + padding-left: 3rem !important; + } + + .m-md-n1 { + margin: -0.25rem !important; + } + + .mt-md-n1, +.my-md-n1 { + margin-top: -0.25rem !important; + } + + .mr-md-n1, +.mx-md-n1 { + margin-right: -0.25rem !important; + } + + .mb-md-n1, +.my-md-n1 { + margin-bottom: -0.25rem !important; + } + + .ml-md-n1, +.mx-md-n1 { + margin-left: -0.25rem !important; + } + + .m-md-n2 { + margin: -0.5rem !important; + } + + .mt-md-n2, +.my-md-n2 { + margin-top: -0.5rem !important; + } + + .mr-md-n2, +.mx-md-n2 { + margin-right: -0.5rem !important; + } + + .mb-md-n2, +.my-md-n2 { + margin-bottom: -0.5rem !important; + } + + .ml-md-n2, +.mx-md-n2 { + margin-left: -0.5rem !important; + } + + .m-md-n3 { + margin: -1rem !important; + } + + .mt-md-n3, +.my-md-n3 { + margin-top: -1rem !important; + } + + .mr-md-n3, +.mx-md-n3 { + margin-right: -1rem !important; + } + + .mb-md-n3, +.my-md-n3 { + margin-bottom: -1rem !important; + } + + .ml-md-n3, +.mx-md-n3 { + margin-left: -1rem !important; + } + + .m-md-n4 { + margin: -1.5rem !important; + } + + .mt-md-n4, +.my-md-n4 { + margin-top: -1.5rem !important; + } + + .mr-md-n4, +.mx-md-n4 { + margin-right: -1.5rem !important; + } + + .mb-md-n4, +.my-md-n4 { + margin-bottom: -1.5rem !important; + } + + .ml-md-n4, +.mx-md-n4 { + margin-left: -1.5rem !important; + } + + .m-md-n5 { + margin: -3rem !important; + } + + .mt-md-n5, +.my-md-n5 { + margin-top: -3rem !important; + } + + .mr-md-n5, +.mx-md-n5 { + margin-right: -3rem !important; + } + + .mb-md-n5, +.my-md-n5 { + margin-bottom: -3rem !important; + } + + .ml-md-n5, +.mx-md-n5 { + margin-left: -3rem !important; + } + + .m-md-auto { + margin: auto !important; + } + + .mt-md-auto, +.my-md-auto { + margin-top: auto !important; + } + + .mr-md-auto, +.mx-md-auto { + margin-right: auto !important; + } + + .mb-md-auto, +.my-md-auto { + margin-bottom: auto !important; + } + + .ml-md-auto, +.mx-md-auto { + margin-left: auto !important; + } +} +@media (min-width: 992px) { + .m-lg-0 { + margin: 0 !important; + } + + .mt-lg-0, +.my-lg-0 { + margin-top: 0 !important; + } + + .mr-lg-0, +.mx-lg-0 { + margin-right: 0 !important; + } + + .mb-lg-0, +.my-lg-0 { + margin-bottom: 0 !important; + } + + .ml-lg-0, +.mx-lg-0 { + margin-left: 0 !important; + } + + .m-lg-1 { + margin: 0.25rem !important; + } + + .mt-lg-1, +.my-lg-1 { + margin-top: 0.25rem !important; + } + + .mr-lg-1, +.mx-lg-1 { + margin-right: 0.25rem !important; + } + + .mb-lg-1, +.my-lg-1 { + margin-bottom: 0.25rem !important; + } + + .ml-lg-1, +.mx-lg-1 { + margin-left: 0.25rem !important; + } + + .m-lg-2 { + margin: 0.5rem !important; + } + + .mt-lg-2, +.my-lg-2 { + margin-top: 0.5rem !important; + } + + .mr-lg-2, +.mx-lg-2 { + margin-right: 0.5rem !important; + } + + .mb-lg-2, +.my-lg-2 { + margin-bottom: 0.5rem !important; + } + + .ml-lg-2, +.mx-lg-2 { + margin-left: 0.5rem !important; + } + + .m-lg-3 { + margin: 1rem !important; + } + + .mt-lg-3, +.my-lg-3 { + margin-top: 1rem !important; + } + + .mr-lg-3, +.mx-lg-3 { + margin-right: 1rem !important; + } + + .mb-lg-3, +.my-lg-3 { + margin-bottom: 1rem !important; + } + + .ml-lg-3, +.mx-lg-3 { + margin-left: 1rem !important; + } + + .m-lg-4 { + margin: 1.5rem !important; + } + + .mt-lg-4, +.my-lg-4 { + margin-top: 1.5rem !important; + } + + .mr-lg-4, +.mx-lg-4 { + margin-right: 1.5rem !important; + } + + .mb-lg-4, +.my-lg-4 { + margin-bottom: 1.5rem !important; + } + + .ml-lg-4, +.mx-lg-4 { + margin-left: 1.5rem !important; + } + + .m-lg-5 { + margin: 3rem !important; + } + + .mt-lg-5, +.my-lg-5 { + margin-top: 3rem !important; + } + + .mr-lg-5, +.mx-lg-5 { + margin-right: 3rem !important; + } + + .mb-lg-5, +.my-lg-5 { + margin-bottom: 3rem !important; + } + + .ml-lg-5, +.mx-lg-5 { + margin-left: 3rem !important; + } + + .p-lg-0 { + padding: 0 !important; + } + + .pt-lg-0, +.py-lg-0 { + padding-top: 0 !important; + } + + .pr-lg-0, +.px-lg-0 { + padding-right: 0 !important; + } + + .pb-lg-0, +.py-lg-0 { + padding-bottom: 0 !important; + } + + .pl-lg-0, +.px-lg-0 { + padding-left: 0 !important; + } + + .p-lg-1 { + padding: 0.25rem !important; + } + + .pt-lg-1, +.py-lg-1 { + padding-top: 0.25rem !important; + } + + .pr-lg-1, +.px-lg-1 { + padding-right: 0.25rem !important; + } + + .pb-lg-1, +.py-lg-1 { + padding-bottom: 0.25rem !important; + } + + .pl-lg-1, +.px-lg-1 { + padding-left: 0.25rem !important; + } + + .p-lg-2 { + padding: 0.5rem !important; + } + + .pt-lg-2, +.py-lg-2 { + padding-top: 0.5rem !important; + } + + .pr-lg-2, +.px-lg-2 { + padding-right: 0.5rem !important; + } + + .pb-lg-2, +.py-lg-2 { + padding-bottom: 0.5rem !important; + } + + .pl-lg-2, +.px-lg-2 { + padding-left: 0.5rem !important; + } + + .p-lg-3 { + padding: 1rem !important; + } + + .pt-lg-3, +.py-lg-3 { + padding-top: 1rem !important; + } + + .pr-lg-3, +.px-lg-3 { + padding-right: 1rem !important; + } + + .pb-lg-3, +.py-lg-3 { + padding-bottom: 1rem !important; + } + + .pl-lg-3, +.px-lg-3 { + padding-left: 1rem !important; + } + + .p-lg-4 { + padding: 1.5rem !important; + } + + .pt-lg-4, +.py-lg-4 { + padding-top: 1.5rem !important; + } + + .pr-lg-4, +.px-lg-4 { + padding-right: 1.5rem !important; + } + + .pb-lg-4, +.py-lg-4 { + padding-bottom: 1.5rem !important; + } + + .pl-lg-4, +.px-lg-4 { + padding-left: 1.5rem !important; + } + + .p-lg-5 { + padding: 3rem !important; + } + + .pt-lg-5, +.py-lg-5 { + padding-top: 3rem !important; + } + + .pr-lg-5, +.px-lg-5 { + padding-right: 3rem !important; + } + + .pb-lg-5, +.py-lg-5 { + padding-bottom: 3rem !important; + } + + .pl-lg-5, +.px-lg-5 { + padding-left: 3rem !important; + } + + .m-lg-n1 { + margin: -0.25rem !important; + } + + .mt-lg-n1, +.my-lg-n1 { + margin-top: -0.25rem !important; + } + + .mr-lg-n1, +.mx-lg-n1 { + margin-right: -0.25rem !important; + } + + .mb-lg-n1, +.my-lg-n1 { + margin-bottom: -0.25rem !important; + } + + .ml-lg-n1, +.mx-lg-n1 { + margin-left: -0.25rem !important; + } + + .m-lg-n2 { + margin: -0.5rem !important; + } + + .mt-lg-n2, +.my-lg-n2 { + margin-top: -0.5rem !important; + } + + .mr-lg-n2, +.mx-lg-n2 { + margin-right: -0.5rem !important; + } + + .mb-lg-n2, +.my-lg-n2 { + margin-bottom: -0.5rem !important; + } + + .ml-lg-n2, +.mx-lg-n2 { + margin-left: -0.5rem !important; + } + + .m-lg-n3 { + margin: -1rem !important; + } + + .mt-lg-n3, +.my-lg-n3 { + margin-top: -1rem !important; + } + + .mr-lg-n3, +.mx-lg-n3 { + margin-right: -1rem !important; + } + + .mb-lg-n3, +.my-lg-n3 { + margin-bottom: -1rem !important; + } + + .ml-lg-n3, +.mx-lg-n3 { + margin-left: -1rem !important; + } + + .m-lg-n4 { + margin: -1.5rem !important; + } + + .mt-lg-n4, +.my-lg-n4 { + margin-top: -1.5rem !important; + } + + .mr-lg-n4, +.mx-lg-n4 { + margin-right: -1.5rem !important; + } + + .mb-lg-n4, +.my-lg-n4 { + margin-bottom: -1.5rem !important; + } + + .ml-lg-n4, +.mx-lg-n4 { + margin-left: -1.5rem !important; + } + + .m-lg-n5 { + margin: -3rem !important; + } + + .mt-lg-n5, +.my-lg-n5 { + margin-top: -3rem !important; + } + + .mr-lg-n5, +.mx-lg-n5 { + margin-right: -3rem !important; + } + + .mb-lg-n5, +.my-lg-n5 { + margin-bottom: -3rem !important; + } + + .ml-lg-n5, +.mx-lg-n5 { + margin-left: -3rem !important; + } + + .m-lg-auto { + margin: auto !important; + } + + .mt-lg-auto, +.my-lg-auto { + margin-top: auto !important; + } + + .mr-lg-auto, +.mx-lg-auto { + margin-right: auto !important; + } + + .mb-lg-auto, +.my-lg-auto { + margin-bottom: auto !important; + } + + .ml-lg-auto, +.mx-lg-auto { + margin-left: auto !important; + } +} +@media (min-width: 1200px) { + .m-xl-0 { + margin: 0 !important; + } + + .mt-xl-0, +.my-xl-0 { + margin-top: 0 !important; + } + + .mr-xl-0, +.mx-xl-0 { + margin-right: 0 !important; + } + + .mb-xl-0, +.my-xl-0 { + margin-bottom: 0 !important; + } + + .ml-xl-0, +.mx-xl-0 { + margin-left: 0 !important; + } + + .m-xl-1 { + margin: 0.25rem !important; + } + + .mt-xl-1, +.my-xl-1 { + margin-top: 0.25rem !important; + } + + .mr-xl-1, +.mx-xl-1 { + margin-right: 0.25rem !important; + } + + .mb-xl-1, +.my-xl-1 { + margin-bottom: 0.25rem !important; + } + + .ml-xl-1, +.mx-xl-1 { + margin-left: 0.25rem !important; + } + + .m-xl-2 { + margin: 0.5rem !important; + } + + .mt-xl-2, +.my-xl-2 { + margin-top: 0.5rem !important; + } + + .mr-xl-2, +.mx-xl-2 { + margin-right: 0.5rem !important; + } + + .mb-xl-2, +.my-xl-2 { + margin-bottom: 0.5rem !important; + } + + .ml-xl-2, +.mx-xl-2 { + margin-left: 0.5rem !important; + } + + .m-xl-3 { + margin: 1rem !important; + } + + .mt-xl-3, +.my-xl-3 { + margin-top: 1rem !important; + } + + .mr-xl-3, +.mx-xl-3 { + margin-right: 1rem !important; + } + + .mb-xl-3, +.my-xl-3 { + margin-bottom: 1rem !important; + } + + .ml-xl-3, +.mx-xl-3 { + margin-left: 1rem !important; + } + + .m-xl-4 { + margin: 1.5rem !important; + } + + .mt-xl-4, +.my-xl-4 { + margin-top: 1.5rem !important; + } + + .mr-xl-4, +.mx-xl-4 { + margin-right: 1.5rem !important; + } + + .mb-xl-4, +.my-xl-4 { + margin-bottom: 1.5rem !important; + } + + .ml-xl-4, +.mx-xl-4 { + margin-left: 1.5rem !important; + } + + .m-xl-5 { + margin: 3rem !important; + } + + .mt-xl-5, +.my-xl-5 { + margin-top: 3rem !important; + } + + .mr-xl-5, +.mx-xl-5 { + margin-right: 3rem !important; + } + + .mb-xl-5, +.my-xl-5 { + margin-bottom: 3rem !important; + } + + .ml-xl-5, +.mx-xl-5 { + margin-left: 3rem !important; + } + + .p-xl-0 { + padding: 0 !important; + } + + .pt-xl-0, +.py-xl-0 { + padding-top: 0 !important; + } + + .pr-xl-0, +.px-xl-0 { + padding-right: 0 !important; + } + + .pb-xl-0, +.py-xl-0 { + padding-bottom: 0 !important; + } + + .pl-xl-0, +.px-xl-0 { + padding-left: 0 !important; + } + + .p-xl-1 { + padding: 0.25rem !important; + } + + .pt-xl-1, +.py-xl-1 { + padding-top: 0.25rem !important; + } + + .pr-xl-1, +.px-xl-1 { + padding-right: 0.25rem !important; + } + + .pb-xl-1, +.py-xl-1 { + padding-bottom: 0.25rem !important; + } + + .pl-xl-1, +.px-xl-1 { + padding-left: 0.25rem !important; + } + + .p-xl-2 { + padding: 0.5rem !important; + } + + .pt-xl-2, +.py-xl-2 { + padding-top: 0.5rem !important; + } + + .pr-xl-2, +.px-xl-2 { + padding-right: 0.5rem !important; + } + + .pb-xl-2, +.py-xl-2 { + padding-bottom: 0.5rem !important; + } + + .pl-xl-2, +.px-xl-2 { + padding-left: 0.5rem !important; + } + + .p-xl-3 { + padding: 1rem !important; + } + + .pt-xl-3, +.py-xl-3 { + padding-top: 1rem !important; + } + + .pr-xl-3, +.px-xl-3 { + padding-right: 1rem !important; + } + + .pb-xl-3, +.py-xl-3 { + padding-bottom: 1rem !important; + } + + .pl-xl-3, +.px-xl-3 { + padding-left: 1rem !important; + } + + .p-xl-4 { + padding: 1.5rem !important; + } + + .pt-xl-4, +.py-xl-4 { + padding-top: 1.5rem !important; + } + + .pr-xl-4, +.px-xl-4 { + padding-right: 1.5rem !important; + } + + .pb-xl-4, +.py-xl-4 { + padding-bottom: 1.5rem !important; + } + + .pl-xl-4, +.px-xl-4 { + padding-left: 1.5rem !important; + } + + .p-xl-5 { + padding: 3rem !important; + } + + .pt-xl-5, +.py-xl-5 { + padding-top: 3rem !important; + } + + .pr-xl-5, +.px-xl-5 { + padding-right: 3rem !important; + } + + .pb-xl-5, +.py-xl-5 { + padding-bottom: 3rem !important; + } + + .pl-xl-5, +.px-xl-5 { + padding-left: 3rem !important; + } + + .m-xl-n1 { + margin: -0.25rem !important; + } + + .mt-xl-n1, +.my-xl-n1 { + margin-top: -0.25rem !important; + } + + .mr-xl-n1, +.mx-xl-n1 { + margin-right: -0.25rem !important; + } + + .mb-xl-n1, +.my-xl-n1 { + margin-bottom: -0.25rem !important; + } + + .ml-xl-n1, +.mx-xl-n1 { + margin-left: -0.25rem !important; + } + + .m-xl-n2 { + margin: -0.5rem !important; + } + + .mt-xl-n2, +.my-xl-n2 { + margin-top: -0.5rem !important; + } + + .mr-xl-n2, +.mx-xl-n2 { + margin-right: -0.5rem !important; + } + + .mb-xl-n2, +.my-xl-n2 { + margin-bottom: -0.5rem !important; + } + + .ml-xl-n2, +.mx-xl-n2 { + margin-left: -0.5rem !important; + } + + .m-xl-n3 { + margin: -1rem !important; + } + + .mt-xl-n3, +.my-xl-n3 { + margin-top: -1rem !important; + } + + .mr-xl-n3, +.mx-xl-n3 { + margin-right: -1rem !important; + } + + .mb-xl-n3, +.my-xl-n3 { + margin-bottom: -1rem !important; + } + + .ml-xl-n3, +.mx-xl-n3 { + margin-left: -1rem !important; + } + + .m-xl-n4 { + margin: -1.5rem !important; + } + + .mt-xl-n4, +.my-xl-n4 { + margin-top: -1.5rem !important; + } + + .mr-xl-n4, +.mx-xl-n4 { + margin-right: -1.5rem !important; + } + + .mb-xl-n4, +.my-xl-n4 { + margin-bottom: -1.5rem !important; + } + + .ml-xl-n4, +.mx-xl-n4 { + margin-left: -1.5rem !important; + } + + .m-xl-n5 { + margin: -3rem !important; + } + + .mt-xl-n5, +.my-xl-n5 { + margin-top: -3rem !important; + } + + .mr-xl-n5, +.mx-xl-n5 { + margin-right: -3rem !important; + } + + .mb-xl-n5, +.my-xl-n5 { + margin-bottom: -3rem !important; + } + + .ml-xl-n5, +.mx-xl-n5 { + margin-left: -3rem !important; + } + + .m-xl-auto { + margin: auto !important; + } + + .mt-xl-auto, +.my-xl-auto { + margin-top: auto !important; + } + + .mr-xl-auto, +.mx-xl-auto { + margin-right: auto !important; + } + + .mb-xl-auto, +.my-xl-auto { + margin-bottom: auto !important; + } + + .ml-xl-auto, +.mx-xl-auto { + margin-left: auto !important; + } } /*# sourceMappingURL=styles.css.map*/ \ No newline at end of file diff --git a/Resources/Public/StyleSheets/styles.css.map b/Resources/Public/StyleSheets/styles.css.map index 8b07043..1a064eb 100644 --- a/Resources/Public/StyleSheets/styles.css.map +++ b/Resources/Public/StyleSheets/styles.css.map @@ -1 +1 @@ -{"version":3,"sources":["webpack://chrosey-sitepackage/./StyleSheets/styles.scss"],"names":[],"mappings":"AAEA;EACI;AADJ,C","file":"../StyleSheets/styles.css","sourcesContent":["// hello\n\nbody {\n background : black;\n}\n"],"sourceRoot":""} \ No newline at end of file +{"version":3,"sources":["webpack://chrosey-sitepackage/./StyleSheets/Bootstrap/bootstrap-reboot.scss","webpack://chrosey-sitepackage/./StyleSheets/Bootstrap/_reboot.scss","webpack://chrosey-sitepackage/./StyleSheets/styles.scss","webpack://chrosey-sitepackage/./StyleSheets/Bootstrap/_variables.scss","webpack://chrosey-sitepackage/./StyleSheets/Bootstrap/vendor/_rfs.scss","webpack://chrosey-sitepackage/./StyleSheets/Bootstrap/mixins/_hover.scss","webpack://chrosey-sitepackage/./StyleSheets/Bootstrap/bootstrap-grid.scss","webpack://chrosey-sitepackage/./StyleSheets/Bootstrap/_grid.scss","webpack://chrosey-sitepackage/./StyleSheets/Bootstrap/mixins/_grid.scss","webpack://chrosey-sitepackage/./StyleSheets/Bootstrap/mixins/_breakpoints.scss","webpack://chrosey-sitepackage/./StyleSheets/Bootstrap/mixins/_grid-framework.scss","webpack://chrosey-sitepackage/./StyleSheets/Bootstrap/utilities/_display.scss","webpack://chrosey-sitepackage/./StyleSheets/Bootstrap/utilities/_flex.scss","webpack://chrosey-sitepackage/./StyleSheets/Bootstrap/utilities/_spacing.scss"],"names":[],"mappings":"AAAA;;;;;;EAAA;ACkBA;;;EAGE;ACVF;;ADaA;EACE;EACA;EACA;EACA;ACVF;;ADgBA;EACE;ACbF;;ADuBA;EACE;EACA,kMEqO4B;ECrJxB,eAtCa;EHxCjB,gBE8O4B;EF7O5B,gBEkP4B;EFjP5B,cEnCS;EFoCT;EACA,sBE9CS;AD0BX;;ADgCA;EACE;AC7BF;;ADsCA;EACE;EACA;EACA;ACnCF;;ADgDA;EACE;EACA,qBEgN4B;AD7P9B;;ADoDA;EACE;EACA,mBEoF0B;ADrI5B;;AD4DA;;EAEE;EACA;EACA;EACA;EACA;ACzDF;;AD4DA;EACE;EACA;EACA;ACzDF;;AD4DA;;;EAGE;EACA;ACzDF;;AD4DA;;;;EAIE;ACzDF;;AD4DA;EACE,gBEiJ4B;AD1M9B;;AD4DA;EACE;EACA;ACzDF;;AD4DA;EACE;ACzDF;;AD4DA;;EAEE,mBEoI4B;AD7L9B;;AD4DA;EGxFI;AFgCJ;;ADiEA;;EAEE;EGnGE;EHqGF;EACA;AC9DF;;ADiEA;EAAM;AC7DN;;AD8DA;EAAM;AC1DN;;ADiEA;EACE,cEXwC;EFYxC,qBEXwC;EFYxC;AC9DF;AGlHE;EJmLE,cEdsC;EFetC,0BEdsC;ADhD1C;;ADuEA;EACE;EACA;ACpEF;AG3HE;EJkME;EACA;ACpEJ;;AD6EA;;;;EAIE,iGEyD4B;EC7M1B;AF2EJ;;AD6EA;EAEE;EAEA;EAEA;EAGA;AC/EF;;ADuFA;EAEE;ACrFF;;AD6FA;EACE;EACA;AC1FF;;AD6FA;EAGE;EACA;AC5FF;;ADoGA;EACE;ACjGF;;ADoGA;EACE,oBE6E4B;EF5E5B,uBE4E4B;EF3E5B,cEtQS;EFuQT;EACA;ACjGF;;ADwGA;EAEE;EACA;ACtGF;;AD8GA;EAEE;EACA,qBE2JsC;ADvQxC;;ADkHA;EAEE;AChHF;;ADuHA;EACE;EACA;ACpHF;;ADuHA;;;;;EAKE;EACA;EG5PE;EH8PF;ACpHF;;ADuHA;;EAEE;ACpHF;;ADuHA;;EAEE;ACpHF;;AD0HA;EACE;ACvHF;;AD6HA;EACE;AC1HF;;ADiIA;;;;EAIE;AC9HF;;ADuII;;;;EACE;ACjIN;;ADuIA;;;;EAIE;EACA;ACpIF;;ADuIA;;EAEE;EACA;ACpIF;;ADwIA;EACE;EAEA;ACtIF;;ADyIA;EAME;EAEA;EACA;EACA;AC5IF;;ADiJA;EACE;EACA;EACA;EACA;EACA;EGnSI,iBAtCa;EH2UjB;EACA;EACA;AC9IF;;ADiJA;EACE;AC9IF;;ADkJA;;EAEE;AC/IF;;ADkJA;EAKE;EACA;ACnJF;;AD0JA;EACE;ACvJF;;AD+JA;EACE;EACA;AC5JF;;ADmKA;EACE;AChKF;;ADmKA;EACE;EACA;AChKF;;ADmKA;EACE;AChKF;;ADqKA;EACE;AClKF;;AIhUA;;;;;EAAA;AAOA;EACE;EACA;AJkUF;;AI/TA;;;EAGE;AJkUF;;AK3UE;;;;;;ECDA;EACA;EACA;EACA;EACA;ANqVF;;AOlSI;EFzCE;IACE,gBJ8Le;EDiJrB;AACF;AOxSI;EFzCE;IACE,gBJ8Le;EDsJrB;AACF;AO7SI;EFzCE;IACE,gBJ8Le;ED2JrB;AACF;AOlTI;EFzCE;IACE,iBJ8Le;EDgKrB;AACF;AKnUE;ECnCA;EACA;EACA;EACA;ANyWF;;AKnUE;EACE;EACA;ALsUJ;AKpUI;;EAEE;EACA;ALsUN;;AQ5XE;;;;;;EACE;EACA;EACA;EACA;ARoYJ;;AQ9WM;EACE;EACA;EACA;ARiXR;;AMrVE;EACE;EACA;ANwVJ;;AM1VE;EACE;EACA;AN6VJ;;AM/VE;EACE;EACA;ANkWJ;;AMpWE;EACE;EACA;ANuWJ;;AMzWE;EACE;EACA;AN4WJ;;AM9WE;EACE;EACA;ANiXJ;;AQpYM;EFCJ;EACA;EACA;ANuYF;;AQpYU;EFbR;EAIA;ANkZF;;AQzYU;EFbR;EAIA;ANuZF;;AQ9YU;EFbR;EAIA;AN4ZF;;AQnZU;EFbR;EAIA;ANiaF;;AQxZU;EFbR;EAIA;ANsaF;;AQ7ZU;EFbR;EAIA;AN2aF;;AQlaU;EFbR;EAIA;ANgbF;;AQvaU;EFbR;EAIA;ANqbF;;AQ5aU;EFbR;EAIA;AN0bF;;AQjbU;EFbR;EAIA;AN+bF;;AQtbU;EFbR;EAIA;ANocF;;AQ3bU;EFbR;EAIA;ANycF;;AQ1bM;EAAwB;AR8b9B;;AQ5bM;EAAuB;ARgc7B;;AQ7bQ;EAAwB,QADb;ARkcnB;;AQjcQ;EAAwB,QADb;ARscnB;;AQrcQ;EAAwB,QADb;AR0cnB;;AQzcQ;EAAwB,QADb;AR8cnB;;AQ7cQ;EAAwB,QADb;ARkdnB;;AQjdQ;EAAwB,QADb;ARsdnB;;AQrdQ;EAAwB,QADb;AR0dnB;;AQzdQ;EAAwB,QADb;AR8dnB;;AQ7dQ;EAAwB,QADb;ARkenB;;AQjeQ;EAAwB,QADb;ARsenB;;AQreQ;EAAwB,SADb;AR0enB;;AQzeQ;EAAwB,SADb;AR8enB;;AQ7eQ;EAAwB,SADb;ARkfnB;;AQ1eY;EFhBV;AN8fF;;AQ9eY;EFhBV;ANkgBF;;AQlfY;EFhBV;ANsgBF;;AQtfY;EFhBV;AN0gBF;;AQ1fY;EFhBV;AN8gBF;;AQ9fY;EFhBV;ANkhBF;;AQlgBY;EFhBV;ANshBF;;AQtgBY;EFhBV;AN0hBF;;AQ1gBY;EFhBV;AN8hBF;;AQ9gBY;EFhBV;ANkiBF;;AQlhBY;EFhBV;ANsiBF;;AOjiBI;EC3BE;IACE;IACA;IACA;ERgkBN;;EMpiBA;IACE;IACA;ENuiBF;;EMziBA;IACE;IACA;EN4iBF;;EM9iBA;IACE;IACA;ENijBF;;EMnjBA;IACE;IACA;ENsjBF;;EMxjBA;IACE;IACA;EN2jBF;;EM7jBA;IACE;IACA;ENgkBF;;EQnlBI;IFCJ;IACA;IACA;ENslBA;;EQnlBQ;IFbR;IAIA;ENimBA;;EQxlBQ;IFbR;IAIA;ENsmBA;;EQ7lBQ;IFbR;IAIA;EN2mBA;;EQlmBQ;IFbR;IAIA;ENgnBA;;EQvmBQ;IFbR;IAIA;ENqnBA;;EQ5mBQ;IFbR;IAIA;EN0nBA;;EQjnBQ;IFbR;IAIA;EN+nBA;;EQtnBQ;IFbR;IAIA;ENooBA;;EQ3nBQ;IFbR;IAIA;ENyoBA;;EQhoBQ;IFbR;IAIA;EN8oBA;;EQroBQ;IFbR;IAIA;ENmpBA;;EQ1oBQ;IFbR;IAIA;ENwpBA;;EQzoBI;IAAwB;ER6oB5B;;EQ3oBI;IAAuB;ER+oB3B;;EQ5oBM;IAAwB,QADb;ERipBjB;;EQhpBM;IAAwB,QADb;ERqpBjB;;EQppBM;IAAwB,QADb;ERypBjB;;EQxpBM;IAAwB,QADb;ER6pBjB;;EQ5pBM;IAAwB,QADb;ERiqBjB;;EQhqBM;IAAwB,QADb;ERqqBjB;;EQpqBM;IAAwB,QADb;ERyqBjB;;EQxqBM;IAAwB,QADb;ER6qBjB;;EQ5qBM;IAAwB,QADb;ERirBjB;;EQhrBM;IAAwB,QADb;ERqrBjB;;EQprBM;IAAwB,SADb;ERyrBjB;;EQxrBM;IAAwB,SADb;ER6rBjB;;EQ5rBM;IAAwB,SADb;ERisBjB;;EQzrBU;IFhBV;EN6sBA;;EQ7rBU;IFhBV;ENitBA;;EQjsBU;IFhBV;ENqtBA;;EQrsBU;IFhBV;ENytBA;;EQzsBU;IFhBV;EN6tBA;;EQ7sBU;IFhBV;ENiuBA;;EQjtBU;IFhBV;ENquBA;;EQrtBU;IFhBV;ENyuBA;;EQztBU;IFhBV;EN6uBA;;EQ7tBU;IFhBV;ENivBA;;EQjuBU;IFhBV;ENqvBA;;EQruBU;IFhBV;ENyvBA;AACF;AOrvBI;EC3BE;IACE;IACA;IACA;ERmxBN;;EMvvBA;IACE;IACA;EN0vBF;;EM5vBA;IACE;IACA;EN+vBF;;EMjwBA;IACE;IACA;ENowBF;;EMtwBA;IACE;IACA;ENywBF;;EM3wBA;IACE;IACA;EN8wBF;;EMhxBA;IACE;IACA;ENmxBF;;EQtyBI;IFCJ;IACA;IACA;ENyyBA;;EQtyBQ;IFbR;IAIA;ENozBA;;EQ3yBQ;IFbR;IAIA;ENyzBA;;EQhzBQ;IFbR;IAIA;EN8zBA;;EQrzBQ;IFbR;IAIA;ENm0BA;;EQ1zBQ;IFbR;IAIA;ENw0BA;;EQ/zBQ;IFbR;IAIA;EN60BA;;EQp0BQ;IFbR;IAIA;ENk1BA;;EQz0BQ;IFbR;IAIA;ENu1BA;;EQ90BQ;IFbR;IAIA;EN41BA;;EQn1BQ;IFbR;IAIA;ENi2BA;;EQx1BQ;IFbR;IAIA;ENs2BA;;EQ71BQ;IFbR;IAIA;EN22BA;;EQ51BI;IAAwB;ERg2B5B;;EQ91BI;IAAuB;ERk2B3B;;EQ/1BM;IAAwB,QADb;ERo2BjB;;EQn2BM;IAAwB,QADb;ERw2BjB;;EQv2BM;IAAwB,QADb;ER42BjB;;EQ32BM;IAAwB,QADb;ERg3BjB;;EQ/2BM;IAAwB,QADb;ERo3BjB;;EQn3BM;IAAwB,QADb;ERw3BjB;;EQv3BM;IAAwB,QADb;ER43BjB;;EQ33BM;IAAwB,QADb;ERg4BjB;;EQ/3BM;IAAwB,QADb;ERo4BjB;;EQn4BM;IAAwB,QADb;ERw4BjB;;EQv4BM;IAAwB,SADb;ER44BjB;;EQ34BM;IAAwB,SADb;ERg5BjB;;EQ/4BM;IAAwB,SADb;ERo5BjB;;EQ54BU;IFhBV;ENg6BA;;EQh5BU;IFhBV;ENo6BA;;EQp5BU;IFhBV;ENw6BA;;EQx5BU;IFhBV;EN46BA;;EQ55BU;IFhBV;ENg7BA;;EQh6BU;IFhBV;ENo7BA;;EQp6BU;IFhBV;ENw7BA;;EQx6BU;IFhBV;EN47BA;;EQ56BU;IFhBV;ENg8BA;;EQh7BU;IFhBV;ENo8BA;;EQp7BU;IFhBV;ENw8BA;;EQx7BU;IFhBV;EN48BA;AACF;AOx8BI;EC3BE;IACE;IACA;IACA;ERs+BN;;EM18BA;IACE;IACA;EN68BF;;EM/8BA;IACE;IACA;ENk9BF;;EMp9BA;IACE;IACA;ENu9BF;;EMz9BA;IACE;IACA;EN49BF;;EM99BA;IACE;IACA;ENi+BF;;EMn+BA;IACE;IACA;ENs+BF;;EQz/BI;IFCJ;IACA;IACA;EN4/BA;;EQz/BQ;IFbR;IAIA;ENugCA;;EQ9/BQ;IFbR;IAIA;EN4gCA;;EQngCQ;IFbR;IAIA;ENihCA;;EQxgCQ;IFbR;IAIA;ENshCA;;EQ7gCQ;IFbR;IAIA;EN2hCA;;EQlhCQ;IFbR;IAIA;ENgiCA;;EQvhCQ;IFbR;IAIA;ENqiCA;;EQ5hCQ;IFbR;IAIA;EN0iCA;;EQjiCQ;IFbR;IAIA;EN+iCA;;EQtiCQ;IFbR;IAIA;ENojCA;;EQ3iCQ;IFbR;IAIA;ENyjCA;;EQhjCQ;IFbR;IAIA;EN8jCA;;EQ/iCI;IAAwB;ERmjC5B;;EQjjCI;IAAuB;ERqjC3B;;EQljCM;IAAwB,QADb;ERujCjB;;EQtjCM;IAAwB,QADb;ER2jCjB;;EQ1jCM;IAAwB,QADb;ER+jCjB;;EQ9jCM;IAAwB,QADb;ERmkCjB;;EQlkCM;IAAwB,QADb;ERukCjB;;EQtkCM;IAAwB,QADb;ER2kCjB;;EQ1kCM;IAAwB,QADb;ER+kCjB;;EQ9kCM;IAAwB,QADb;ERmlCjB;;EQllCM;IAAwB,QADb;ERulCjB;;EQtlCM;IAAwB,QADb;ER2lCjB;;EQ1lCM;IAAwB,SADb;ER+lCjB;;EQ9lCM;IAAwB,SADb;ERmmCjB;;EQlmCM;IAAwB,SADb;ERumCjB;;EQ/lCU;IFhBV;ENmnCA;;EQnmCU;IFhBV;ENunCA;;EQvmCU;IFhBV;EN2nCA;;EQ3mCU;IFhBV;EN+nCA;;EQ/mCU;IFhBV;ENmoCA;;EQnnCU;IFhBV;ENuoCA;;EQvnCU;IFhBV;EN2oCA;;EQ3nCU;IFhBV;EN+oCA;;EQ/nCU;IFhBV;ENmpCA;;EQnoCU;IFhBV;ENupCA;;EQvoCU;IFhBV;EN2pCA;;EQ3oCU;IFhBV;EN+pCA;AACF;AO3pCI;EC3BE;IACE;IACA;IACA;ERyrCN;;EM7pCA;IACE;IACA;ENgqCF;;EMlqCA;IACE;IACA;ENqqCF;;EMvqCA;IACE;IACA;EN0qCF;;EM5qCA;IACE;IACA;EN+qCF;;EMjrCA;IACE;IACA;ENorCF;;EMtrCA;IACE;IACA;ENyrCF;;EQ5sCI;IFCJ;IACA;IACA;EN+sCA;;EQ5sCQ;IFbR;IAIA;EN0tCA;;EQjtCQ;IFbR;IAIA;EN+tCA;;EQttCQ;IFbR;IAIA;ENouCA;;EQ3tCQ;IFbR;IAIA;ENyuCA;;EQhuCQ;IFbR;IAIA;EN8uCA;;EQruCQ;IFbR;IAIA;ENmvCA;;EQ1uCQ;IFbR;IAIA;ENwvCA;;EQ/uCQ;IFbR;IAIA;EN6vCA;;EQpvCQ;IFbR;IAIA;ENkwCA;;EQzvCQ;IFbR;IAIA;ENuwCA;;EQ9vCQ;IFbR;IAIA;EN4wCA;;EQnwCQ;IFbR;IAIA;ENixCA;;EQlwCI;IAAwB;ERswC5B;;EQpwCI;IAAuB;ERwwC3B;;EQrwCM;IAAwB,QADb;ER0wCjB;;EQzwCM;IAAwB,QADb;ER8wCjB;;EQ7wCM;IAAwB,QADb;ERkxCjB;;EQjxCM;IAAwB,QADb;ERsxCjB;;EQrxCM;IAAwB,QADb;ER0xCjB;;EQzxCM;IAAwB,QADb;ER8xCjB;;EQ7xCM;IAAwB,QADb;ERkyCjB;;EQjyCM;IAAwB,QADb;ERsyCjB;;EQryCM;IAAwB,QADb;ER0yCjB;;EQzyCM;IAAwB,QADb;ER8yCjB;;EQ7yCM;IAAwB,SADb;ERkzCjB;;EQjzCM;IAAwB,SADb;ERszCjB;;EQrzCM;IAAwB,SADb;ER0zCjB;;EQlzCU;IFhBV;ENs0CA;;EQtzCU;IFhBV;EN00CA;;EQ1zCU;IFhBV;EN80CA;;EQ9zCU;IFhBV;ENk1CA;;EQl0CU;IFhBV;ENs1CA;;EQt0CU;IFhBV;EN01CA;;EQ10CU;IFhBV;EN81CA;;EQ90CU;IFhBV;ENk2CA;;EQl1CU;IFhBV;ENs2CA;;EQt1CU;IFhBV;EN02CA;;EQ11CU;IFhBV;EN82CA;;EQ91CU;IFhBV;ENk3CA;AACF;AS/5CM;EAAwB;ATk6C9B;;ASl6CM;EAAwB;ATs6C9B;;ASt6CM;EAAwB;AT06C9B;;AS16CM;EAAwB;AT86C9B;;AS96CM;EAAwB;ATk7C9B;;ASl7CM;EAAwB;ATs7C9B;;ASt7CM;EAAwB;AT07C9B;;AS17CM;EAAwB;AT87C9B;;AS97CM;EAAwB;ATk8C9B;;AOj5CI;EEjDE;IAAwB;ETu8C5B;;ESv8CI;IAAwB;ET28C5B;;ES38CI;IAAwB;ET+8C5B;;ES/8CI;IAAwB;ETm9C5B;;ESn9CI;IAAwB;ETu9C5B;;ESv9CI;IAAwB;ET29C5B;;ES39CI;IAAwB;ET+9C5B;;ES/9CI;IAAwB;ETm+C5B;;ESn+CI;IAAwB;ETu+C5B;AACF;AOv7CI;EEjDE;IAAwB;ET4+C5B;;ES5+CI;IAAwB;ETg/C5B;;ESh/CI;IAAwB;ETo/C5B;;ESp/CI;IAAwB;ETw/C5B;;ESx/CI;IAAwB;ET4/C5B;;ES5/CI;IAAwB;ETggD5B;;EShgDI;IAAwB;ETogD5B;;ESpgDI;IAAwB;ETwgD5B;;ESxgDI;IAAwB;ET4gD5B;AACF;AO59CI;EEjDE;IAAwB;ETihD5B;;ESjhDI;IAAwB;ETqhD5B;;ESrhDI;IAAwB;ETyhD5B;;ESzhDI;IAAwB;ET6hD5B;;ES7hDI;IAAwB;ETiiD5B;;ESjiDI;IAAwB;ETqiD5B;;ESriDI;IAAwB;ETyiD5B;;ESziDI;IAAwB;ET6iD5B;;ES7iDI;IAAwB;ETijD5B;AACF;AOjgDI;EEjDE;IAAwB;ETsjD5B;;EStjDI;IAAwB;ET0jD5B;;ES1jDI;IAAwB;ET8jD5B;;ES9jDI;IAAwB;ETkkD5B;;ESlkDI;IAAwB;ETskD5B;;EStkDI;IAAwB;ET0kD5B;;ES1kDI;IAAwB;ET8kD5B;;ES9kDI;IAAwB;ETklD5B;;ESllDI;IAAwB;ETslD5B;AACF;AS7kDA;EAEI;IAAqB;ET+kDvB;;ES/kDE;IAAqB;ETmlDvB;;ESnlDE;IAAqB;ETulDvB;;ESvlDE;IAAqB;ET2lDvB;;ES3lDE;IAAqB;ET+lDvB;;ES/lDE;IAAqB;ETmmDvB;;ESnmDE;IAAqB;ETumDvB;;ESvmDE;IAAqB;ET2mDvB;;ES3mDE;IAAqB;ET+mDvB;AACF;AU7nDI;EAAgC;AVgoDpC;;AU/nDI;EAAgC;AVmoDpC;;AUloDI;EAAgC;AVsoDpC;;AUroDI;EAAgC;AVyoDpC;;AUvoDI;EAA8B;AV2oDlC;;AU1oDI;EAA8B;AV8oDlC;;AU7oDI;EAA8B;AVipDlC;;AUhpDI;EAA8B;AVopDlC;;AUnpDI;EAA8B;AVupDlC;;AUtpDI;EAA8B;AV0pDlC;;AUzpDI;EAA8B;AV6pDlC;;AU5pDI;EAA8B;AVgqDlC;;AU9pDI;EAAoC;AVkqDxC;;AUjqDI;EAAoC;AVqqDxC;;AUpqDI;EAAoC;AVwqDxC;;AUvqDI;EAAoC;AV2qDxC;;AU1qDI;EAAoC;AV8qDxC;;AU5qDI;EAAiC;AVgrDrC;;AU/qDI;EAAiC;AVmrDrC;;AUlrDI;EAAiC;AVsrDrC;;AUrrDI;EAAiC;AVyrDrC;;AUxrDI;EAAiC;AV4rDrC;;AU1rDI;EAAkC;AV8rDtC;;AU7rDI;EAAkC;AVisDtC;;AUhsDI;EAAkC;AVosDtC;;AUnsDI;EAAkC;AVusDtC;;AUtsDI;EAAkC;AV0sDtC;;AUzsDI;EAAkC;AV6sDtC;;AU3sDI;EAAgC;AV+sDpC;;AU9sDI;EAAgC;AVktDpC;;AUjtDI;EAAgC;AVqtDpC;;AUptDI;EAAgC;AVwtDpC;;AUvtDI;EAAgC;AV2tDpC;;AU1tDI;EAAgC;AV8tDpC;;AOltDI;EGlDA;IAAgC;EVywDlC;;EUxwDE;IAAgC;EV4wDlC;;EU3wDE;IAAgC;EV+wDlC;;EU9wDE;IAAgC;EVkxDlC;;EUhxDE;IAA8B;EVoxDhC;;EUnxDE;IAA8B;EVuxDhC;;EUtxDE;IAA8B;EV0xDhC;;EUzxDE;IAA8B;EV6xDhC;;EU5xDE;IAA8B;EVgyDhC;;EU/xDE;IAA8B;EVmyDhC;;EUlyDE;IAA8B;EVsyDhC;;EUryDE;IAA8B;EVyyDhC;;EUvyDE;IAAoC;EV2yDtC;;EU1yDE;IAAoC;EV8yDtC;;EU7yDE;IAAoC;EVizDtC;;EUhzDE;IAAoC;EVozDtC;;EUnzDE;IAAoC;EVuzDtC;;EUrzDE;IAAiC;EVyzDnC;;EUxzDE;IAAiC;EV4zDnC;;EU3zDE;IAAiC;EV+zDnC;;EU9zDE;IAAiC;EVk0DnC;;EUj0DE;IAAiC;EVq0DnC;;EUn0DE;IAAkC;EVu0DpC;;EUt0DE;IAAkC;EV00DpC;;EUz0DE;IAAkC;EV60DpC;;EU50DE;IAAkC;EVg1DpC;;EU/0DE;IAAkC;EVm1DpC;;EUl1DE;IAAkC;EVs1DpC;;EUp1DE;IAAgC;EVw1DlC;;EUv1DE;IAAgC;EV21DlC;;EU11DE;IAAgC;EV81DlC;;EU71DE;IAAgC;EVi2DlC;;EUh2DE;IAAgC;EVo2DlC;;EUn2DE;IAAgC;EVu2DlC;AACF;AO51DI;EGlDA;IAAgC;EVk5DlC;;EUj5DE;IAAgC;EVq5DlC;;EUp5DE;IAAgC;EVw5DlC;;EUv5DE;IAAgC;EV25DlC;;EUz5DE;IAA8B;EV65DhC;;EU55DE;IAA8B;EVg6DhC;;EU/5DE;IAA8B;EVm6DhC;;EUl6DE;IAA8B;EVs6DhC;;EUr6DE;IAA8B;EVy6DhC;;EUx6DE;IAA8B;EV46DhC;;EU36DE;IAA8B;EV+6DhC;;EU96DE;IAA8B;EVk7DhC;;EUh7DE;IAAoC;EVo7DtC;;EUn7DE;IAAoC;EVu7DtC;;EUt7DE;IAAoC;EV07DtC;;EUz7DE;IAAoC;EV67DtC;;EU57DE;IAAoC;EVg8DtC;;EU97DE;IAAiC;EVk8DnC;;EUj8DE;IAAiC;EVq8DnC;;EUp8DE;IAAiC;EVw8DnC;;EUv8DE;IAAiC;EV28DnC;;EU18DE;IAAiC;EV88DnC;;EU58DE;IAAkC;EVg9DpC;;EU/8DE;IAAkC;EVm9DpC;;EUl9DE;IAAkC;EVs9DpC;;EUr9DE;IAAkC;EVy9DpC;;EUx9DE;IAAkC;EV49DpC;;EU39DE;IAAkC;EV+9DpC;;EU79DE;IAAgC;EVi+DlC;;EUh+DE;IAAgC;EVo+DlC;;EUn+DE;IAAgC;EVu+DlC;;EUt+DE;IAAgC;EV0+DlC;;EUz+DE;IAAgC;EV6+DlC;;EU5+DE;IAAgC;EVg/DlC;AACF;AOr+DI;EGlDA;IAAgC;EV2hElC;;EU1hEE;IAAgC;EV8hElC;;EU7hEE;IAAgC;EViiElC;;EUhiEE;IAAgC;EVoiElC;;EUliEE;IAA8B;EVsiEhC;;EUriEE;IAA8B;EVyiEhC;;EUxiEE;IAA8B;EV4iEhC;;EU3iEE;IAA8B;EV+iEhC;;EU9iEE;IAA8B;EVkjEhC;;EUjjEE;IAA8B;EVqjEhC;;EUpjEE;IAA8B;EVwjEhC;;EUvjEE;IAA8B;EV2jEhC;;EUzjEE;IAAoC;EV6jEtC;;EU5jEE;IAAoC;EVgkEtC;;EU/jEE;IAAoC;EVmkEtC;;EUlkEE;IAAoC;EVskEtC;;EUrkEE;IAAoC;EVykEtC;;EUvkEE;IAAiC;EV2kEnC;;EU1kEE;IAAiC;EV8kEnC;;EU7kEE;IAAiC;EVilEnC;;EUhlEE;IAAiC;EVolEnC;;EUnlEE;IAAiC;EVulEnC;;EUrlEE;IAAkC;EVylEpC;;EUxlEE;IAAkC;EV4lEpC;;EU3lEE;IAAkC;EV+lEpC;;EU9lEE;IAAkC;EVkmEpC;;EUjmEE;IAAkC;EVqmEpC;;EUpmEE;IAAkC;EVwmEpC;;EUtmEE;IAAgC;EV0mElC;;EUzmEE;IAAgC;EV6mElC;;EU5mEE;IAAgC;EVgnElC;;EU/mEE;IAAgC;EVmnElC;;EUlnEE;IAAgC;EVsnElC;;EUrnEE;IAAgC;EVynElC;AACF;AO9mEI;EGlDA;IAAgC;EVoqElC;;EUnqEE;IAAgC;EVuqElC;;EUtqEE;IAAgC;EV0qElC;;EUzqEE;IAAgC;EV6qElC;;EU3qEE;IAA8B;EV+qEhC;;EU9qEE;IAA8B;EVkrEhC;;EUjrEE;IAA8B;EVqrEhC;;EUprEE;IAA8B;EVwrEhC;;EUvrEE;IAA8B;EV2rEhC;;EU1rEE;IAA8B;EV8rEhC;;EU7rEE;IAA8B;EVisEhC;;EUhsEE;IAA8B;EVosEhC;;EUlsEE;IAAoC;EVssEtC;;EUrsEE;IAAoC;EVysEtC;;EUxsEE;IAAoC;EV4sEtC;;EU3sEE;IAAoC;EV+sEtC;;EU9sEE;IAAoC;EVktEtC;;EUhtEE;IAAiC;EVotEnC;;EUntEE;IAAiC;EVutEnC;;EUttEE;IAAiC;EV0tEnC;;EUztEE;IAAiC;EV6tEnC;;EU5tEE;IAAiC;EVguEnC;;EU9tEE;IAAkC;EVkuEpC;;EUjuEE;IAAkC;EVquEpC;;EUpuEE;IAAkC;EVwuEpC;;EUvuEE;IAAkC;EV2uEpC;;EU1uEE;IAAkC;EV8uEpC;;EU7uEE;IAAkC;EVivEpC;;EU/uEE;IAAgC;EVmvElC;;EUlvEE;IAAgC;EVsvElC;;EUrvEE;IAAgC;EVyvElC;;EUxvEE;IAAgC;EV4vElC;;EU3vEE;IAAgC;EV+vElC;;EU9vEE;IAAgC;EVkwElC;AACF;AWzyEQ;EAAgC;AX4yExC;;AW3yEQ;;EAEE;AX8yEV;;AW5yEQ;;EAEE;AX+yEV;;AW7yEQ;;EAEE;AXgzEV;;AW9yEQ;;EAEE;AXizEV;;AWh0EQ;EAAgC;AXo0ExC;;AWn0EQ;;EAEE;AXs0EV;;AWp0EQ;;EAEE;AXu0EV;;AWr0EQ;;EAEE;AXw0EV;;AWt0EQ;;EAEE;AXy0EV;;AWx1EQ;EAAgC;AX41ExC;;AW31EQ;;EAEE;AX81EV;;AW51EQ;;EAEE;AX+1EV;;AW71EQ;;EAEE;AXg2EV;;AW91EQ;;EAEE;AXi2EV;;AWh3EQ;EAAgC;AXo3ExC;;AWn3EQ;;EAEE;AXs3EV;;AWp3EQ;;EAEE;AXu3EV;;AWr3EQ;;EAEE;AXw3EV;;AWt3EQ;;EAEE;AXy3EV;;AWx4EQ;EAAgC;AX44ExC;;AW34EQ;;EAEE;AX84EV;;AW54EQ;;EAEE;AX+4EV;;AW74EQ;;EAEE;AXg5EV;;AW94EQ;;EAEE;AXi5EV;;AWh6EQ;EAAgC;AXo6ExC;;AWn6EQ;;EAEE;AXs6EV;;AWp6EQ;;EAEE;AXu6EV;;AWr6EQ;;EAEE;AXw6EV;;AWt6EQ;;EAEE;AXy6EV;;AWx7EQ;EAAgC;AX47ExC;;AW37EQ;;EAEE;AX87EV;;AW57EQ;;EAEE;AX+7EV;;AW77EQ;;EAEE;AXg8EV;;AW97EQ;;EAEE;AXi8EV;;AWh9EQ;EAAgC;AXo9ExC;;AWn9EQ;;EAEE;AXs9EV;;AWp9EQ;;EAEE;AXu9EV;;AWr9EQ;;EAEE;AXw9EV;;AWt9EQ;;EAEE;AXy9EV;;AWx+EQ;EAAgC;AX4+ExC;;AW3+EQ;;EAEE;AX8+EV;;AW5+EQ;;EAEE;AX++EV;;AW7+EQ;;EAEE;AXg/EV;;AW9+EQ;;EAEE;AXi/EV;;AWhgFQ;EAAgC;AXogFxC;;AWngFQ;;EAEE;AXsgFV;;AWpgFQ;;EAEE;AXugFV;;AWrgFQ;;EAEE;AXwgFV;;AWtgFQ;;EAEE;AXygFV;;AWxhFQ;EAAgC;AX4hFxC;;AW3hFQ;;EAEE;AX8hFV;;AW5hFQ;;EAEE;AX+hFV;;AW7hFQ;;EAEE;AXgiFV;;AW9hFQ;;EAEE;AXiiFV;;AWhjFQ;EAAgC;AXojFxC;;AWnjFQ;;EAEE;AXsjFV;;AWpjFQ;;EAEE;AXujFV;;AWrjFQ;;EAEE;AXwjFV;;AWtjFQ;;EAEE;AXyjFV;;AWjjFQ;EAAwB;AXqjFhC;;AWpjFQ;;EAEE;AXujFV;;AWrjFQ;;EAEE;AXwjFV;;AWtjFQ;;EAEE;AXyjFV;;AWvjFQ;;EAEE;AX0jFV;;AWzkFQ;EAAwB;AX6kFhC;;AW5kFQ;;EAEE;AX+kFV;;AW7kFQ;;EAEE;AXglFV;;AW9kFQ;;EAEE;AXilFV;;AW/kFQ;;EAEE;AXklFV;;AWjmFQ;EAAwB;AXqmFhC;;AWpmFQ;;EAEE;AXumFV;;AWrmFQ;;EAEE;AXwmFV;;AWtmFQ;;EAEE;AXymFV;;AWvmFQ;;EAEE;AX0mFV;;AWznFQ;EAAwB;AX6nFhC;;AW5nFQ;;EAEE;AX+nFV;;AW7nFQ;;EAEE;AXgoFV;;AW9nFQ;;EAEE;AXioFV;;AW/nFQ;;EAEE;AXkoFV;;AWjpFQ;EAAwB;AXqpFhC;;AWppFQ;;EAEE;AXupFV;;AWrpFQ;;EAEE;AXwpFV;;AWtpFQ;;EAEE;AXypFV;;AWvpFQ;;EAEE;AX0pFV;;AWppFI;EAAmB;AXwpFvB;;AWvpFI;;EAEE;AX0pFN;;AWxpFI;;EAEE;AX2pFN;;AWzpFI;;EAEE;AX4pFN;;AW1pFI;;EAEE;AX6pFN;;AOtqFI;EIlDI;IAAgC;EX6tFtC;;EW5tFM;;IAEE;EX+tFR;;EW7tFM;;IAEE;EXguFR;;EW9tFM;;IAEE;EXiuFR;;EW/tFM;;IAEE;EXkuFR;;EWjvFM;IAAgC;EXqvFtC;;EWpvFM;;IAEE;EXuvFR;;EWrvFM;;IAEE;EXwvFR;;EWtvFM;;IAEE;EXyvFR;;EWvvFM;;IAEE;EX0vFR;;EWzwFM;IAAgC;EX6wFtC;;EW5wFM;;IAEE;EX+wFR;;EW7wFM;;IAEE;EXgxFR;;EW9wFM;;IAEE;EXixFR;;EW/wFM;;IAEE;EXkxFR;;EWjyFM;IAAgC;EXqyFtC;;EWpyFM;;IAEE;EXuyFR;;EWryFM;;IAEE;EXwyFR;;EWtyFM;;IAEE;EXyyFR;;EWvyFM;;IAEE;EX0yFR;;EWzzFM;IAAgC;EX6zFtC;;EW5zFM;;IAEE;EX+zFR;;EW7zFM;;IAEE;EXg0FR;;EW9zFM;;IAEE;EXi0FR;;EW/zFM;;IAEE;EXk0FR;;EWj1FM;IAAgC;EXq1FtC;;EWp1FM;;IAEE;EXu1FR;;EWr1FM;;IAEE;EXw1FR;;EWt1FM;;IAEE;EXy1FR;;EWv1FM;;IAEE;EX01FR;;EWz2FM;IAAgC;EX62FtC;;EW52FM;;IAEE;EX+2FR;;EW72FM;;IAEE;EXg3FR;;EW92FM;;IAEE;EXi3FR;;EW/2FM;;IAEE;EXk3FR;;EWj4FM;IAAgC;EXq4FtC;;EWp4FM;;IAEE;EXu4FR;;EWr4FM;;IAEE;EXw4FR;;EWt4FM;;IAEE;EXy4FR;;EWv4FM;;IAEE;EX04FR;;EWz5FM;IAAgC;EX65FtC;;EW55FM;;IAEE;EX+5FR;;EW75FM;;IAEE;EXg6FR;;EW95FM;;IAEE;EXi6FR;;EW/5FM;;IAEE;EXk6FR;;EWj7FM;IAAgC;EXq7FtC;;EWp7FM;;IAEE;EXu7FR;;EWr7FM;;IAEE;EXw7FR;;EWt7FM;;IAEE;EXy7FR;;EWv7FM;;IAEE;EX07FR;;EWz8FM;IAAgC;EX68FtC;;EW58FM;;IAEE;EX+8FR;;EW78FM;;IAEE;EXg9FR;;EW98FM;;IAEE;EXi9FR;;EW/8FM;;IAEE;EXk9FR;;EWj+FM;IAAgC;EXq+FtC;;EWp+FM;;IAEE;EXu+FR;;EWr+FM;;IAEE;EXw+FR;;EWt+FM;;IAEE;EXy+FR;;EWv+FM;;IAEE;EX0+FR;;EWl+FM;IAAwB;EXs+F9B;;EWr+FM;;IAEE;EXw+FR;;EWt+FM;;IAEE;EXy+FR;;EWv+FM;;IAEE;EX0+FR;;EWx+FM;;IAEE;EX2+FR;;EW1/FM;IAAwB;EX8/F9B;;EW7/FM;;IAEE;EXggGR;;EW9/FM;;IAEE;EXigGR;;EW//FM;;IAEE;EXkgGR;;EWhgGM;;IAEE;EXmgGR;;EWlhGM;IAAwB;EXshG9B;;EWrhGM;;IAEE;EXwhGR;;EWthGM;;IAEE;EXyhGR;;EWvhGM;;IAEE;EX0hGR;;EWxhGM;;IAEE;EX2hGR;;EW1iGM;IAAwB;EX8iG9B;;EW7iGM;;IAEE;EXgjGR;;EW9iGM;;IAEE;EXijGR;;EW/iGM;;IAEE;EXkjGR;;EWhjGM;;IAEE;EXmjGR;;EWlkGM;IAAwB;EXskG9B;;EWrkGM;;IAEE;EXwkGR;;EWtkGM;;IAEE;EXykGR;;EWvkGM;;IAEE;EX0kGR;;EWxkGM;;IAEE;EX2kGR;;EWrkGE;IAAmB;EXykGrB;;EWxkGE;;IAEE;EX2kGJ;;EWzkGE;;IAEE;EX4kGJ;;EW1kGE;;IAEE;EX6kGJ;;EW3kGE;;IAEE;EX8kGJ;AACF;AOxlGI;EIlDI;IAAgC;EX8oGtC;;EW7oGM;;IAEE;EXgpGR;;EW9oGM;;IAEE;EXipGR;;EW/oGM;;IAEE;EXkpGR;;EWhpGM;;IAEE;EXmpGR;;EWlqGM;IAAgC;EXsqGtC;;EWrqGM;;IAEE;EXwqGR;;EWtqGM;;IAEE;EXyqGR;;EWvqGM;;IAEE;EX0qGR;;EWxqGM;;IAEE;EX2qGR;;EW1rGM;IAAgC;EX8rGtC;;EW7rGM;;IAEE;EXgsGR;;EW9rGM;;IAEE;EXisGR;;EW/rGM;;IAEE;EXksGR;;EWhsGM;;IAEE;EXmsGR;;EWltGM;IAAgC;EXstGtC;;EWrtGM;;IAEE;EXwtGR;;EWttGM;;IAEE;EXytGR;;EWvtGM;;IAEE;EX0tGR;;EWxtGM;;IAEE;EX2tGR;;EW1uGM;IAAgC;EX8uGtC;;EW7uGM;;IAEE;EXgvGR;;EW9uGM;;IAEE;EXivGR;;EW/uGM;;IAEE;EXkvGR;;EWhvGM;;IAEE;EXmvGR;;EWlwGM;IAAgC;EXswGtC;;EWrwGM;;IAEE;EXwwGR;;EWtwGM;;IAEE;EXywGR;;EWvwGM;;IAEE;EX0wGR;;EWxwGM;;IAEE;EX2wGR;;EW1xGM;IAAgC;EX8xGtC;;EW7xGM;;IAEE;EXgyGR;;EW9xGM;;IAEE;EXiyGR;;EW/xGM;;IAEE;EXkyGR;;EWhyGM;;IAEE;EXmyGR;;EWlzGM;IAAgC;EXszGtC;;EWrzGM;;IAEE;EXwzGR;;EWtzGM;;IAEE;EXyzGR;;EWvzGM;;IAEE;EX0zGR;;EWxzGM;;IAEE;EX2zGR;;EW10GM;IAAgC;EX80GtC;;EW70GM;;IAEE;EXg1GR;;EW90GM;;IAEE;EXi1GR;;EW/0GM;;IAEE;EXk1GR;;EWh1GM;;IAEE;EXm1GR;;EWl2GM;IAAgC;EXs2GtC;;EWr2GM;;IAEE;EXw2GR;;EWt2GM;;IAEE;EXy2GR;;EWv2GM;;IAEE;EX02GR;;EWx2GM;;IAEE;EX22GR;;EW13GM;IAAgC;EX83GtC;;EW73GM;;IAEE;EXg4GR;;EW93GM;;IAEE;EXi4GR;;EW/3GM;;IAEE;EXk4GR;;EWh4GM;;IAEE;EXm4GR;;EWl5GM;IAAgC;EXs5GtC;;EWr5GM;;IAEE;EXw5GR;;EWt5GM;;IAEE;EXy5GR;;EWv5GM;;IAEE;EX05GR;;EWx5GM;;IAEE;EX25GR;;EWn5GM;IAAwB;EXu5G9B;;EWt5GM;;IAEE;EXy5GR;;EWv5GM;;IAEE;EX05GR;;EWx5GM;;IAEE;EX25GR;;EWz5GM;;IAEE;EX45GR;;EW36GM;IAAwB;EX+6G9B;;EW96GM;;IAEE;EXi7GR;;EW/6GM;;IAEE;EXk7GR;;EWh7GM;;IAEE;EXm7GR;;EWj7GM;;IAEE;EXo7GR;;EWn8GM;IAAwB;EXu8G9B;;EWt8GM;;IAEE;EXy8GR;;EWv8GM;;IAEE;EX08GR;;EWx8GM;;IAEE;EX28GR;;EWz8GM;;IAEE;EX48GR;;EW39GM;IAAwB;EX+9G9B;;EW99GM;;IAEE;EXi+GR;;EW/9GM;;IAEE;EXk+GR;;EWh+GM;;IAEE;EXm+GR;;EWj+GM;;IAEE;EXo+GR;;EWn/GM;IAAwB;EXu/G9B;;EWt/GM;;IAEE;EXy/GR;;EWv/GM;;IAEE;EX0/GR;;EWx/GM;;IAEE;EX2/GR;;EWz/GM;;IAEE;EX4/GR;;EWt/GE;IAAmB;EX0/GrB;;EWz/GE;;IAEE;EX4/GJ;;EW1/GE;;IAEE;EX6/GJ;;EW3/GE;;IAEE;EX8/GJ;;EW5/GE;;IAEE;EX+/GJ;AACF;AOzgHI;EIlDI;IAAgC;EX+jHtC;;EW9jHM;;IAEE;EXikHR;;EW/jHM;;IAEE;EXkkHR;;EWhkHM;;IAEE;EXmkHR;;EWjkHM;;IAEE;EXokHR;;EWnlHM;IAAgC;EXulHtC;;EWtlHM;;IAEE;EXylHR;;EWvlHM;;IAEE;EX0lHR;;EWxlHM;;IAEE;EX2lHR;;EWzlHM;;IAEE;EX4lHR;;EW3mHM;IAAgC;EX+mHtC;;EW9mHM;;IAEE;EXinHR;;EW/mHM;;IAEE;EXknHR;;EWhnHM;;IAEE;EXmnHR;;EWjnHM;;IAEE;EXonHR;;EWnoHM;IAAgC;EXuoHtC;;EWtoHM;;IAEE;EXyoHR;;EWvoHM;;IAEE;EX0oHR;;EWxoHM;;IAEE;EX2oHR;;EWzoHM;;IAEE;EX4oHR;;EW3pHM;IAAgC;EX+pHtC;;EW9pHM;;IAEE;EXiqHR;;EW/pHM;;IAEE;EXkqHR;;EWhqHM;;IAEE;EXmqHR;;EWjqHM;;IAEE;EXoqHR;;EWnrHM;IAAgC;EXurHtC;;EWtrHM;;IAEE;EXyrHR;;EWvrHM;;IAEE;EX0rHR;;EWxrHM;;IAEE;EX2rHR;;EWzrHM;;IAEE;EX4rHR;;EW3sHM;IAAgC;EX+sHtC;;EW9sHM;;IAEE;EXitHR;;EW/sHM;;IAEE;EXktHR;;EWhtHM;;IAEE;EXmtHR;;EWjtHM;;IAEE;EXotHR;;EWnuHM;IAAgC;EXuuHtC;;EWtuHM;;IAEE;EXyuHR;;EWvuHM;;IAEE;EX0uHR;;EWxuHM;;IAEE;EX2uHR;;EWzuHM;;IAEE;EX4uHR;;EW3vHM;IAAgC;EX+vHtC;;EW9vHM;;IAEE;EXiwHR;;EW/vHM;;IAEE;EXkwHR;;EWhwHM;;IAEE;EXmwHR;;EWjwHM;;IAEE;EXowHR;;EWnxHM;IAAgC;EXuxHtC;;EWtxHM;;IAEE;EXyxHR;;EWvxHM;;IAEE;EX0xHR;;EWxxHM;;IAEE;EX2xHR;;EWzxHM;;IAEE;EX4xHR;;EW3yHM;IAAgC;EX+yHtC;;EW9yHM;;IAEE;EXizHR;;EW/yHM;;IAEE;EXkzHR;;EWhzHM;;IAEE;EXmzHR;;EWjzHM;;IAEE;EXozHR;;EWn0HM;IAAgC;EXu0HtC;;EWt0HM;;IAEE;EXy0HR;;EWv0HM;;IAEE;EX00HR;;EWx0HM;;IAEE;EX20HR;;EWz0HM;;IAEE;EX40HR;;EWp0HM;IAAwB;EXw0H9B;;EWv0HM;;IAEE;EX00HR;;EWx0HM;;IAEE;EX20HR;;EWz0HM;;IAEE;EX40HR;;EW10HM;;IAEE;EX60HR;;EW51HM;IAAwB;EXg2H9B;;EW/1HM;;IAEE;EXk2HR;;EWh2HM;;IAEE;EXm2HR;;EWj2HM;;IAEE;EXo2HR;;EWl2HM;;IAEE;EXq2HR;;EWp3HM;IAAwB;EXw3H9B;;EWv3HM;;IAEE;EX03HR;;EWx3HM;;IAEE;EX23HR;;EWz3HM;;IAEE;EX43HR;;EW13HM;;IAEE;EX63HR;;EW54HM;IAAwB;EXg5H9B;;EW/4HM;;IAEE;EXk5HR;;EWh5HM;;IAEE;EXm5HR;;EWj5HM;;IAEE;EXo5HR;;EWl5HM;;IAEE;EXq5HR;;EWp6HM;IAAwB;EXw6H9B;;EWv6HM;;IAEE;EX06HR;;EWx6HM;;IAEE;EX26HR;;EWz6HM;;IAEE;EX46HR;;EW16HM;;IAEE;EX66HR;;EWv6HE;IAAmB;EX26HrB;;EW16HE;;IAEE;EX66HJ;;EW36HE;;IAEE;EX86HJ;;EW56HE;;IAEE;EX+6HJ;;EW76HE;;IAEE;EXg7HJ;AACF;AO17HI;EIlDI;IAAgC;EXg/HtC;;EW/+HM;;IAEE;EXk/HR;;EWh/HM;;IAEE;EXm/HR;;EWj/HM;;IAEE;EXo/HR;;EWl/HM;;IAEE;EXq/HR;;EWpgIM;IAAgC;EXwgItC;;EWvgIM;;IAEE;EX0gIR;;EWxgIM;;IAEE;EX2gIR;;EWzgIM;;IAEE;EX4gIR;;EW1gIM;;IAEE;EX6gIR;;EW5hIM;IAAgC;EXgiItC;;EW/hIM;;IAEE;EXkiIR;;EWhiIM;;IAEE;EXmiIR;;EWjiIM;;IAEE;EXoiIR;;EWliIM;;IAEE;EXqiIR;;EWpjIM;IAAgC;EXwjItC;;EWvjIM;;IAEE;EX0jIR;;EWxjIM;;IAEE;EX2jIR;;EWzjIM;;IAEE;EX4jIR;;EW1jIM;;IAEE;EX6jIR;;EW5kIM;IAAgC;EXglItC;;EW/kIM;;IAEE;EXklIR;;EWhlIM;;IAEE;EXmlIR;;EWjlIM;;IAEE;EXolIR;;EWllIM;;IAEE;EXqlIR;;EWpmIM;IAAgC;EXwmItC;;EWvmIM;;IAEE;EX0mIR;;EWxmIM;;IAEE;EX2mIR;;EWzmIM;;IAEE;EX4mIR;;EW1mIM;;IAEE;EX6mIR;;EW5nIM;IAAgC;EXgoItC;;EW/nIM;;IAEE;EXkoIR;;EWhoIM;;IAEE;EXmoIR;;EWjoIM;;IAEE;EXooIR;;EWloIM;;IAEE;EXqoIR;;EWppIM;IAAgC;EXwpItC;;EWvpIM;;IAEE;EX0pIR;;EWxpIM;;IAEE;EX2pIR;;EWzpIM;;IAEE;EX4pIR;;EW1pIM;;IAEE;EX6pIR;;EW5qIM;IAAgC;EXgrItC;;EW/qIM;;IAEE;EXkrIR;;EWhrIM;;IAEE;EXmrIR;;EWjrIM;;IAEE;EXorIR;;EWlrIM;;IAEE;EXqrIR;;EWpsIM;IAAgC;EXwsItC;;EWvsIM;;IAEE;EX0sIR;;EWxsIM;;IAEE;EX2sIR;;EWzsIM;;IAEE;EX4sIR;;EW1sIM;;IAEE;EX6sIR;;EW5tIM;IAAgC;EXguItC;;EW/tIM;;IAEE;EXkuIR;;EWhuIM;;IAEE;EXmuIR;;EWjuIM;;IAEE;EXouIR;;EWluIM;;IAEE;EXquIR;;EWpvIM;IAAgC;EXwvItC;;EWvvIM;;IAEE;EX0vIR;;EWxvIM;;IAEE;EX2vIR;;EWzvIM;;IAEE;EX4vIR;;EW1vIM;;IAEE;EX6vIR;;EWrvIM;IAAwB;EXyvI9B;;EWxvIM;;IAEE;EX2vIR;;EWzvIM;;IAEE;EX4vIR;;EW1vIM;;IAEE;EX6vIR;;EW3vIM;;IAEE;EX8vIR;;EW7wIM;IAAwB;EXixI9B;;EWhxIM;;IAEE;EXmxIR;;EWjxIM;;IAEE;EXoxIR;;EWlxIM;;IAEE;EXqxIR;;EWnxIM;;IAEE;EXsxIR;;EWryIM;IAAwB;EXyyI9B;;EWxyIM;;IAEE;EX2yIR;;EWzyIM;;IAEE;EX4yIR;;EW1yIM;;IAEE;EX6yIR;;EW3yIM;;IAEE;EX8yIR;;EW7zIM;IAAwB;EXi0I9B;;EWh0IM;;IAEE;EXm0IR;;EWj0IM;;IAEE;EXo0IR;;EWl0IM;;IAEE;EXq0IR;;EWn0IM;;IAEE;EXs0IR;;EWr1IM;IAAwB;EXy1I9B;;EWx1IM;;IAEE;EX21IR;;EWz1IM;;IAEE;EX41IR;;EW11IM;;IAEE;EX61IR;;EW31IM;;IAEE;EX81IR;;EWx1IE;IAAmB;EX41IrB;;EW31IE;;IAEE;EX81IJ;;EW51IE;;IAEE;EX+1IJ;;EW71IE;;IAEE;EXg2IJ;;EW91IE;;IAEE;EXi2IJ;AACF,C","file":"../StyleSheets/styles.css","sourcesContent":["/*!\n * Bootstrap Reboot v4.5.3 (https://getbootstrap.com/)\n * Copyright 2011-2020 The Bootstrap Authors\n * Copyright 2011-2020 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)\n */\n\n@import \"functions\";\n@import \"variables\";\n@import \"mixins\";\n@import \"reboot\";\n","// stylelint-disable at-rule-no-vendor-prefix, declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix\n\n// Reboot\n//\n// Normalization of HTML elements, manually forked from Normalize.css to remove\n// styles targeting irrelevant browsers while applying new styles.\n//\n// Normalize is licensed MIT. https://github.com/necolas/normalize.css\n\n\n// Document\n//\n// 1. Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.\n// 2. Change the default font family in all browsers.\n// 3. Correct the line height in all browsers.\n// 4. Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS.\n// 5. Change the default tap highlight to be completely transparent in iOS.\n\n*,\n*::before,\n*::after {\n box-sizing: border-box; // 1\n}\n\nhtml {\n font-family: sans-serif; // 2\n line-height: 1.15; // 3\n -webkit-text-size-adjust: 100%; // 4\n -webkit-tap-highlight-color: rgba($black, 0); // 5\n}\n\n// Shim for \"new\" HTML5 structural elements to display correctly (IE10, older browsers)\n// TODO: remove in v5\n// stylelint-disable-next-line selector-list-comma-newline-after\narticle, aside, figcaption, figure, footer, header, hgroup, main, nav, section {\n display: block;\n}\n\n// Body\n//\n// 1. Remove the margin in all browsers.\n// 2. As a best practice, apply a default `background-color`.\n// 3. Set an explicit initial text-align value so that we can later use\n// the `inherit` value on things like `` elements.\n\nbody {\n margin: 0; // 1\n font-family: $font-family-base;\n @include font-size($font-size-base);\n font-weight: $font-weight-base;\n line-height: $line-height-base;\n color: $body-color;\n text-align: left; // 3\n background-color: $body-bg; // 2\n}\n\n// Future-proof rule: in browsers that support :focus-visible, suppress the focus outline\n// on elements that programmatically receive focus but wouldn't normally show a visible\n// focus outline. In general, this would mean that the outline is only applied if the\n// interaction that led to the element receiving programmatic focus was a keyboard interaction,\n// or the browser has somehow determined that the user is primarily a keyboard user and/or\n// wants focus outlines to always be presented.\n//\n// See https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible\n// and https://developer.paciellogroup.com/blog/2018/03/focus-visible-and-backwards-compatibility/\n[tabindex=\"-1\"]:focus:not(:focus-visible) {\n outline: 0 !important;\n}\n\n\n// Content grouping\n//\n// 1. Add the correct box sizing in Firefox.\n// 2. Show the overflow in Edge and IE.\n\nhr {\n box-sizing: content-box; // 1\n height: 0; // 1\n overflow: visible; // 2\n}\n\n\n//\n// Typography\n//\n\n// Remove top margins from headings\n//\n// By default, `

`-`

` all receive top and bottom margins. We nuke the top\n// margin for easier control within type scales as it avoids margin collapsing.\n// stylelint-disable-next-line selector-list-comma-newline-after\nh1, h2, h3, h4, h5, h6 {\n margin-top: 0;\n margin-bottom: $headings-margin-bottom;\n}\n\n// Reset margins on paragraphs\n//\n// Similarly, the top margin on `

`s get reset. However, we also reset the\n// bottom margin to use `rem` units instead of `em`.\np {\n margin-top: 0;\n margin-bottom: $paragraph-margin-bottom;\n}\n\n// Abbreviations\n//\n// 1. Duplicate behavior to the data-* attribute for our tooltip plugin\n// 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n// 3. Add explicit cursor to indicate changed behavior.\n// 4. Remove the bottom border in Firefox 39-.\n// 5. Prevent the text-decoration to be skipped.\n\nabbr[title],\nabbr[data-original-title] { // 1\n text-decoration: underline; // 2\n text-decoration: underline dotted; // 2\n cursor: help; // 3\n border-bottom: 0; // 4\n text-decoration-skip-ink: none; // 5\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: $dt-font-weight;\n}\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; // Undo browser default\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\nb,\nstrong {\n font-weight: $font-weight-bolder; // Add the correct font weight in Chrome, Edge, and Safari\n}\n\nsmall {\n @include font-size(80%); // Add the correct font size in all browsers\n}\n\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n//\n\nsub,\nsup {\n position: relative;\n @include font-size(75%);\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub { bottom: -.25em; }\nsup { top: -.5em; }\n\n\n//\n// Links\n//\n\na {\n color: $link-color;\n text-decoration: $link-decoration;\n background-color: transparent; // Remove the gray background on active links in IE 10.\n\n @include hover() {\n color: $link-hover-color;\n text-decoration: $link-hover-decoration;\n }\n}\n\n// And undo these styles for placeholder links/named anchors (without href).\n// It would be more straightforward to just use a[href] in previous block, but that\n// causes specificity issues in many other styles that are too complex to fix.\n// See https://github.com/twbs/bootstrap/issues/19402\n\na:not([href]):not([class]) {\n color: inherit;\n text-decoration: none;\n\n @include hover() {\n color: inherit;\n text-decoration: none;\n }\n}\n\n\n//\n// Code\n//\n\npre,\ncode,\nkbd,\nsamp {\n font-family: $font-family-monospace;\n @include font-size(1em); // Correct the odd `em` font sizing in all browsers.\n}\n\npre {\n // Remove browser default top margin\n margin-top: 0;\n // Reset browser default of `1em` to use `rem`s\n margin-bottom: 1rem;\n // Don't allow content to break outside\n overflow: auto;\n // Disable auto-hiding scrollbar in IE & legacy Edge to avoid overlap,\n // making it impossible to interact with the content\n -ms-overflow-style: scrollbar;\n}\n\n\n//\n// Figures\n//\n\nfigure {\n // Apply a consistent margin strategy (matches our type styles).\n margin: 0 0 1rem;\n}\n\n\n//\n// Images and content\n//\n\nimg {\n vertical-align: middle;\n border-style: none; // Remove the border on images inside links in IE 10-.\n}\n\nsvg {\n // Workaround for the SVG overflow bug in IE10/11 is still required.\n // See https://github.com/twbs/bootstrap/issues/26878\n overflow: hidden;\n vertical-align: middle;\n}\n\n\n//\n// Tables\n//\n\ntable {\n border-collapse: collapse; // Prevent double borders\n}\n\ncaption {\n padding-top: $table-cell-padding;\n padding-bottom: $table-cell-padding;\n color: $table-caption-color;\n text-align: left;\n caption-side: bottom;\n}\n\n// 1. Removes font-weight bold by inheriting\n// 2. Matches default `` alignment by inheriting `text-align`.\n// 3. Fix alignment for Safari\n\nth {\n font-weight: $table-th-font-weight; // 1\n text-align: inherit; // 2\n text-align: -webkit-match-parent; // 3\n}\n\n\n//\n// Forms\n//\n\nlabel {\n // Allow labels to use `margin` for spacing.\n display: inline-block;\n margin-bottom: $label-margin-bottom;\n}\n\n// Remove the default `border-radius` that macOS Chrome adds.\n//\n// Details at https://github.com/twbs/bootstrap/issues/24093\nbutton {\n // stylelint-disable-next-line property-disallowed-list\n border-radius: 0;\n}\n\n// Work around a Firefox/IE bug where the transparent `button` background\n// results in a loss of the default `button` focus styles.\n//\n// Credit: https://github.com/suitcss/base/\nbutton:focus {\n outline: 1px dotted;\n outline: 5px auto -webkit-focus-ring-color;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0; // Remove the margin in Firefox and Safari\n font-family: inherit;\n @include font-size(inherit);\n line-height: inherit;\n}\n\nbutton,\ninput {\n overflow: visible; // Show the overflow in Edge\n}\n\nbutton,\nselect {\n text-transform: none; // Remove the inheritance of text transform in Firefox\n}\n\n// Set the cursor for non-`