Showing preview only (1,346K chars total). Download the full file or copy to clipboard to get everything.
Repository: monarkee/beard
Branch: master
Commit: 70064f566531
Files: 103
Total size: 1.3 MB
Directory structure:
gitextract_tbjnbn08/
├── .gitignore
├── .npmignore
├── LICENSE
├── README.md
├── beard.scss
├── bower.json
├── build_production/
│ ├── CNAME
│ ├── border-radius/
│ │ └── index.html
│ ├── borders/
│ │ └── index.html
│ ├── colors/
│ │ └── index.html
│ ├── configuration/
│ │ └── index.html
│ ├── css/
│ │ ├── main.css
│ │ └── vendor.css
│ ├── display/
│ │ └── index.html
│ ├── examples/
│ │ └── index.html
│ ├── flexbox/
│ │ └── index.html
│ ├── floats/
│ │ └── index.html
│ ├── fonts/
│ │ └── index.html
│ ├── grid/
│ │ └── index.html
│ ├── index.html
│ ├── installation/
│ │ └── index.html
│ ├── js/
│ │ └── app.js
│ ├── letter-spacing/
│ │ └── index.html
│ ├── line-heights/
│ │ └── index.html
│ ├── misc/
│ │ └── index.html
│ ├── overflow/
│ │ └── index.html
│ ├── philosophy/
│ │ └── index.html
│ ├── position/
│ │ └── index.html
│ ├── reset-and-base/
│ │ └── index.html
│ ├── responsive-prefixes/
│ │ └── index.html
│ ├── spacing/
│ │ └── index.html
│ ├── text-alignment/
│ │ └── index.html
│ └── tools/
│ └── index.html
├── config.php
├── dist/
│ └── beard.css
├── gulpfile.js
├── index.js
├── package.json
├── source/
│ ├── CNAME
│ ├── _assets/
│ │ ├── css/
│ │ │ ├── prism-ghcolors.css
│ │ │ └── prism.css
│ │ ├── js/
│ │ │ ├── main.js
│ │ │ └── prism.js
│ │ └── sass/
│ │ └── main.scss
│ ├── _layouts/
│ │ ├── master.blade.php
│ │ └── subpage.blade.php
│ ├── _partials/
│ │ ├── _footer.blade.php
│ │ ├── _header.blade.php
│ │ └── _sidebar.blade.php
│ ├── border-radius.md
│ ├── borders.md
│ ├── colors.md
│ ├── configuration.md
│ ├── css/
│ │ ├── main.css
│ │ └── vendor.css
│ ├── display.md
│ ├── examples.md
│ ├── flexbox.md
│ ├── floats.md
│ ├── fonts.md
│ ├── grid.md
│ ├── index.md
│ ├── installation.md
│ ├── js/
│ │ └── app.js
│ ├── letter-spacing.md
│ ├── line-heights.md
│ ├── misc.md
│ ├── overflow.md
│ ├── philosophy.md
│ ├── position.md
│ ├── reset-and-base.md
│ ├── responsive-prefixes.md
│ ├── spacing.md
│ ├── text-alignment.md
│ └── tools.md
└── stylesheets/
├── _base.scss
├── _beard.after.scss
├── _beard.before.scss
├── _generic.reset.scss
├── _helpers.border-radius.scss
├── _helpers.borders.scss
├── _helpers.colors.scss
├── _helpers.display.scss
├── _helpers.flex.scss
├── _helpers.floats.scss
├── _helpers.fonts.scss
├── _helpers.grid.scss
├── _helpers.letter-spacing.scss
├── _helpers.line-heights.scss
├── _helpers.misc.scss
├── _helpers.overflow.scss
├── _helpers.position.scss
├── _helpers.spacing.scss
├── _helpers.text-align.scss
├── _objects.media.scss
├── _settings.colors.scss
├── _settings.scss
├── _tools.appearance.scss
├── _tools.breakpoints.scss
├── _tools.colors.scss
├── _tools.font-size.scss
├── _tools.spacing.scss
└── _tools.user-drag.scss
================================================
FILE CONTENTS
================================================
================================================
FILE: .gitignore
================================================
build_local
node_modules
vendor
npm-debug.log
.DS_Store
================================================
FILE: .npmignore
================================================
/build_local/
/build_production/
/node_modules/
/source/
config.php
gulpfile.js
================================================
FILE: LICENSE
================================================
The MIT License (MIT)
Copyright (c) 2014 David Hemphill
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
================================================
FILE: README.md
================================================
Beard
=====
[](https://gitter.im/monarkee/beard?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
Beard is an extremely pragmatic and utility-focused CSS framework. Actually, don't call it that.
Beard focuses on developer speed, maintenance, and ease-of-use, versus "pretty" markup.
## Installation
Beard can be installed via [NPM](https://www.npmjs.com).
```$ npm install beardcss```
---
### Adding Beard into your project
### The Recommended Way
The best way to add Beard to your project is to copy the contents of <code>beard/beard.scss</code> to your main Sass file. This allows for the best source ordering. From there, we recommend adding your site styles between the "Objects" and "Helpers" sections, like so:
```scss
@import '../node_modules/beardcss/stylesheets/beard.before';
// Place custom spacing, color, and media query configuration here
// @include new-spacing-helper('0-5', 0.5);
// @include new-color('1--light', lighten($brand-color-1, 15%));
@include new-breakpoint(tablet, '(min-width: 600px)');
// Your site styles go here
// @import 'app'
@import '../node_modules/beardcss/stylesheets/beard.after';
```
---
### Or…Just the Dead Simple Installation
Or you could just import it directly. We don't recommend it, but if you need something quick, go ahead!
```@import '../node_modules/beardcss/beard'```
================================================
FILE: beard.scss
================================================
@import 'stylesheets/beard.before';
// Custom colors, breakpoints and spacing helpers
//-------------------------------------------------------------------------- */
// @include new-color('1--light', lighten($brand-color-1, 15%));
// @include new-breakpoint(tablet, '(min-width: 600px)');
// @include new-spacing-helper('small', 0.3);
// Put your site styles here
//-------------------------------------------------------------------------- */
// @import 'app.scss';
@import 'stylesheets/beard.after';
================================================
FILE: bower.json
================================================
{
"name": "beard",
"description": "A CSS framework for people with better things to do",
"main": [
"beard.scss"
],
"version": "2.2.4",
"homepage": "https://github.com/monarkee/beard",
"authors": [
"David Hemphill <davidlee.hemphill@gmail.com>"
],
"keywords": [
"scss",
"sass",
"framework",
"front-end"
],
"license": "MIT",
"private": false,
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests",
"output_dev",
"output_prod",
"app",
"source"
]
}
================================================
FILE: build_production/CNAME
================================================
buildwithbeard.com
================================================
FILE: build_production/border-radius/index.html
================================================
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<link rel="stylesheet" href="/css/vendor.css">
<link rel="stylesheet" href="/css/main.css">
<title>Beard - Atomic CSS framework</title>
</head>
<body id="app" >
<header class="main-header">
<div class="flex jcsb aic pv1 md-pv2 ph3">
<div class="flex aic">
<h1 class="logo ft5 md-ft7 ls1 fwxxbold flex aic">
<a href="/" class="tc1 dim">
<span class="uppercase">Beard</span>
</a>
<a @click="sidebarVisible = ! sidebarVisible" class="pointer md-dn btn--sm dim bgw tcg40 uppercase br3 ft3 md-ft4">Menu</a>
</h1>
<p class="dn md-db ml2 tcg40 ft3 md-ft4">A CSS framework for people with better things to do</p>
</div>
<div class="flex aic">
<a href="https://github.com/monarkee/beard" class="dn md-dib btn--sm dim bgw tcg40 br3 ft3 md-ft4">View on GitHub</a>
<a href="https://github.com/monarkee/beard/tarball/master" class="btn--sm dim bg1 tcw br3 ft3 md-ft4">Download</a>
</div>
</div>
<nav v-if="sidebarVisible" class="md-dn">
<aside class="w100 brdr1--right bcg10" :class="{ 'brdr1--top bcg10': sidebarVisible }">
<div class="ph2">
<h2 class="ft6 pv1 tcg60 mt4 fw3">Getting Started</h2>
<ul class="mb3">
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/installation" class="tc1 dim">Installation</a>
</li>
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/configuration" class="tc1 dim">Configuration</a>
</li>
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/philosophy" class="tc1 dim">Philosophy</a>
</li>
</ul>
<h2 class="ft6 pv1 tcg60 fw3">Elements</h2>
<ul class="mb3">
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/reset-and-base" class="tc1 dim">Reset & Base</a>
</li>
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/responsive-prefixes" class="tc1 dim lh1-5">Responsive Prefixes</a>
</li>
</ul>
<h2 class="ft6 pv1 tcg60 fw3">Helpers</h2>
<ul class="mb3">
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/borders" class="tc1 dim lh1-5">Borders</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/border-radius" class="tc1 dim lh1-5">Border Radius</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/colors" class="tc1 dim lh1-5">Colors</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/display" class="tc1 dim lh1-5">Display</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/flexbox" class="tc1 dim lh1-5">Flexbox</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/floats" class="tc1 dim lh1-5">Floats</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/fonts" class="tc1 dim lh1-5">Fonts</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/grid" class="tc1 dim lh1-5">Grid</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/letter-spacing" class="tc1 dim lh1-5">Letter Spacing</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/line-heights" class="tc1 dim lh1-5">Line Heights</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/misc" class="tc1 dim lh1-5">Misc</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/overflow" class="tc1 dim lh1-5">Overflow</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/position" class="tc1 dim lh1-5">Position</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/spacing" class="tc1 dim lh1-5">Spacing</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/text-alignment" class="tc1 dim lh1-5">Text Alignment</a></li>
</ul>
<h2 class="ft6 pv1 tcg60 fw3">Tools</h2>
<ul class="mb3">
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#appearance" class="tc1 dim lh1-5">appearance()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#font-size" class="tc1 dim lh1-5">font-size()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#media" class="tc1 dim lh1-5">media()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#new-breakpoint" class="tc1 dim lh1-5">new-breakpoint()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#new-color" class="tc1 dim lh1-5">new-color()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#new-spacing-helper" class="tc1 dim lh1-5">new-spacing-helper()</a></li>
</div>
</aside> </nav>
</header>
<section>
<div class="bg5 ht3"></div>
<div class="bg4 ht3"></div>
<div class="bg3 ht3"></div>
<div class="bg2 ht3"></div>
<div class="bg1 ht3"></div>
</section>
<main class="flex">
<div class="main-sidebar dn md-df">
<aside class="w100 brdr1--right bcg10" :class="{ 'brdr1--top bcg10': sidebarVisible }">
<div class="ph2">
<h2 class="ft6 pv1 tcg60 mt4 fw3">Getting Started</h2>
<ul class="mb3">
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/installation" class="tc1 dim">Installation</a>
</li>
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/configuration" class="tc1 dim">Configuration</a>
</li>
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/philosophy" class="tc1 dim">Philosophy</a>
</li>
</ul>
<h2 class="ft6 pv1 tcg60 fw3">Elements</h2>
<ul class="mb3">
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/reset-and-base" class="tc1 dim">Reset & Base</a>
</li>
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/responsive-prefixes" class="tc1 dim lh1-5">Responsive Prefixes</a>
</li>
</ul>
<h2 class="ft6 pv1 tcg60 fw3">Helpers</h2>
<ul class="mb3">
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/borders" class="tc1 dim lh1-5">Borders</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/border-radius" class="tc1 dim lh1-5">Border Radius</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/colors" class="tc1 dim lh1-5">Colors</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/display" class="tc1 dim lh1-5">Display</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/flexbox" class="tc1 dim lh1-5">Flexbox</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/floats" class="tc1 dim lh1-5">Floats</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/fonts" class="tc1 dim lh1-5">Fonts</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/grid" class="tc1 dim lh1-5">Grid</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/letter-spacing" class="tc1 dim lh1-5">Letter Spacing</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/line-heights" class="tc1 dim lh1-5">Line Heights</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/misc" class="tc1 dim lh1-5">Misc</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/overflow" class="tc1 dim lh1-5">Overflow</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/position" class="tc1 dim lh1-5">Position</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/spacing" class="tc1 dim lh1-5">Spacing</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/text-alignment" class="tc1 dim lh1-5">Text Alignment</a></li>
</ul>
<h2 class="ft6 pv1 tcg60 fw3">Tools</h2>
<ul class="mb3">
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#appearance" class="tc1 dim lh1-5">appearance()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#font-size" class="tc1 dim lh1-5">font-size()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#media" class="tc1 dim lh1-5">media()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#new-breakpoint" class="tc1 dim lh1-5">new-breakpoint()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#new-color" class="tc1 dim lh1-5">new-color()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#new-spacing-helper" class="tc1 dim lh1-5">new-spacing-helper()</a></li>
</div>
</aside> </div>
<section class="w100">
<div class="wrap wrap--pad">
<div class="main-content md-ph6 pv3 md-pv6">
<h2 class="tcg50 ft10 fw3 mb2 md-mb3">Border Radius Helpers</h2>
<table class="w100 ft4 mb6 lh2">
<thead>
<tr class="brdr1--bottom bcg10">
<th class="tcg50 pv1">Border Direction</th>
<th class="tcg50 pv1">Class Prefix</th>
<th class="tcg50 pv1">Default Amounts</th>
</tr>
</thead>
<tbody>
<tr class="brdr1--bottom bcg10">
<td class="tcg50 fw3 pv1">Border Radius</td>
<td class="tcg50 fw3 pv1">.br</td>
<td class="tcg50 fw3 pv1">0-10</td>
</tr>
<tr class="brdr1--bottom bcg10">
<td class="tcg50 fw3 pv1">Border Left Radius</td>
<td class="tcg50 fw3 pv1">.blr</td>
<td class="tcg50 fw3 pv1">0-10</td>
</tr>
<tr class="brdr1--bottom bcg10">
<td class="tcg50 fw3 pv1">Border Right Radius</td>
<td class="tcg50 fw3 pv1">.brr</td>
<td class="tcg50 fw3 pv1">0-10</td>
</tr>
<tr class="brdr1--bottom bcg10">
<td class="tcg50 fw3 pv1">Border Top Left Radius</td>
<td class="tcg50 fw3 pv1">.btlr</td>
<td class="tcg50 fw3 pv1">0-10</td>
</tr>
<tr class="brdr1--bottom bcg10">
<td class="tcg50 fw3 pv1">Border Top Right Radius</td>
<td class="tcg50 fw3 pv1">.btrr</td>
<td class="tcg50 fw3 pv1">0-10</td>
</tr>
<tr class="brdr1--bottom bcg10">
<td class="tcg50 fw3 pv1">Border Bottom Left Radius</td>
<td class="tcg50 fw3 pv1">.bblr</td>
<td class="tcg50 fw3 pv1">0-10</td>
</tr>
<tr class="brdr1--bottom bcg10">
<td class="tcg50 fw3 pv1">Border Bottom Right Radius</td>
<td class="tcg50 fw3 pv1">.bbrr</td>
<td class="tcg50 fw3 pv1">0-10</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
</main>
<footer class="wrap wrap--pad brdr1--top bcg10 pv4">
<div class="frame">
<div class="blk mb2 md-xmb">
<p class="ft3 tcg30 tac md-tal">© 2016 A <a href="http://monarkee.com" class="tc1 lh2">Monarkee</a> product.<br class="md-dn"> Design by <a href="http://davidhemphill.com" class="tc1">David Hemphill</a>.</p>
</div>
<div class="blk">
<p class="tac md-tar">
<a href="http://github.com/davidhemphill/beard" class="ft3 md-ft2 tc1">View on Github</a>
</p>
</div>
</div>
</footer>
<script src="/js/app.js"></script>
</body>
</html>
================================================
FILE: build_production/borders/index.html
================================================
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<link rel="stylesheet" href="/css/vendor.css">
<link rel="stylesheet" href="/css/main.css">
<title>Beard - Atomic CSS framework</title>
</head>
<body id="app" >
<header class="main-header">
<div class="flex jcsb aic pv1 md-pv2 ph3">
<div class="flex aic">
<h1 class="logo ft5 md-ft7 ls1 fwxxbold flex aic">
<a href="/" class="tc1 dim">
<span class="uppercase">Beard</span>
</a>
<a @click="sidebarVisible = ! sidebarVisible" class="pointer md-dn btn--sm dim bgw tcg40 uppercase br3 ft3 md-ft4">Menu</a>
</h1>
<p class="dn md-db ml2 tcg40 ft3 md-ft4">A CSS framework for people with better things to do</p>
</div>
<div class="flex aic">
<a href="https://github.com/monarkee/beard" class="dn md-dib btn--sm dim bgw tcg40 br3 ft3 md-ft4">View on GitHub</a>
<a href="https://github.com/monarkee/beard/tarball/master" class="btn--sm dim bg1 tcw br3 ft3 md-ft4">Download</a>
</div>
</div>
<nav v-if="sidebarVisible" class="md-dn">
<aside class="w100 brdr1--right bcg10" :class="{ 'brdr1--top bcg10': sidebarVisible }">
<div class="ph2">
<h2 class="ft6 pv1 tcg60 mt4 fw3">Getting Started</h2>
<ul class="mb3">
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/installation" class="tc1 dim">Installation</a>
</li>
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/configuration" class="tc1 dim">Configuration</a>
</li>
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/philosophy" class="tc1 dim">Philosophy</a>
</li>
</ul>
<h2 class="ft6 pv1 tcg60 fw3">Elements</h2>
<ul class="mb3">
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/reset-and-base" class="tc1 dim">Reset & Base</a>
</li>
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/responsive-prefixes" class="tc1 dim lh1-5">Responsive Prefixes</a>
</li>
</ul>
<h2 class="ft6 pv1 tcg60 fw3">Helpers</h2>
<ul class="mb3">
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/borders" class="tc1 dim lh1-5">Borders</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/border-radius" class="tc1 dim lh1-5">Border Radius</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/colors" class="tc1 dim lh1-5">Colors</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/display" class="tc1 dim lh1-5">Display</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/flexbox" class="tc1 dim lh1-5">Flexbox</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/floats" class="tc1 dim lh1-5">Floats</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/fonts" class="tc1 dim lh1-5">Fonts</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/grid" class="tc1 dim lh1-5">Grid</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/letter-spacing" class="tc1 dim lh1-5">Letter Spacing</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/line-heights" class="tc1 dim lh1-5">Line Heights</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/misc" class="tc1 dim lh1-5">Misc</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/overflow" class="tc1 dim lh1-5">Overflow</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/position" class="tc1 dim lh1-5">Position</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/spacing" class="tc1 dim lh1-5">Spacing</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/text-alignment" class="tc1 dim lh1-5">Text Alignment</a></li>
</ul>
<h2 class="ft6 pv1 tcg60 fw3">Tools</h2>
<ul class="mb3">
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#appearance" class="tc1 dim lh1-5">appearance()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#font-size" class="tc1 dim lh1-5">font-size()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#media" class="tc1 dim lh1-5">media()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#new-breakpoint" class="tc1 dim lh1-5">new-breakpoint()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#new-color" class="tc1 dim lh1-5">new-color()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#new-spacing-helper" class="tc1 dim lh1-5">new-spacing-helper()</a></li>
</div>
</aside> </nav>
</header>
<section>
<div class="bg5 ht3"></div>
<div class="bg4 ht3"></div>
<div class="bg3 ht3"></div>
<div class="bg2 ht3"></div>
<div class="bg1 ht3"></div>
</section>
<main class="flex">
<div class="main-sidebar dn md-df">
<aside class="w100 brdr1--right bcg10" :class="{ 'brdr1--top bcg10': sidebarVisible }">
<div class="ph2">
<h2 class="ft6 pv1 tcg60 mt4 fw3">Getting Started</h2>
<ul class="mb3">
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/installation" class="tc1 dim">Installation</a>
</li>
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/configuration" class="tc1 dim">Configuration</a>
</li>
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/philosophy" class="tc1 dim">Philosophy</a>
</li>
</ul>
<h2 class="ft6 pv1 tcg60 fw3">Elements</h2>
<ul class="mb3">
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/reset-and-base" class="tc1 dim">Reset & Base</a>
</li>
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/responsive-prefixes" class="tc1 dim lh1-5">Responsive Prefixes</a>
</li>
</ul>
<h2 class="ft6 pv1 tcg60 fw3">Helpers</h2>
<ul class="mb3">
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/borders" class="tc1 dim lh1-5">Borders</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/border-radius" class="tc1 dim lh1-5">Border Radius</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/colors" class="tc1 dim lh1-5">Colors</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/display" class="tc1 dim lh1-5">Display</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/flexbox" class="tc1 dim lh1-5">Flexbox</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/floats" class="tc1 dim lh1-5">Floats</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/fonts" class="tc1 dim lh1-5">Fonts</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/grid" class="tc1 dim lh1-5">Grid</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/letter-spacing" class="tc1 dim lh1-5">Letter Spacing</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/line-heights" class="tc1 dim lh1-5">Line Heights</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/misc" class="tc1 dim lh1-5">Misc</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/overflow" class="tc1 dim lh1-5">Overflow</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/position" class="tc1 dim lh1-5">Position</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/spacing" class="tc1 dim lh1-5">Spacing</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/text-alignment" class="tc1 dim lh1-5">Text Alignment</a></li>
</ul>
<h2 class="ft6 pv1 tcg60 fw3">Tools</h2>
<ul class="mb3">
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#appearance" class="tc1 dim lh1-5">appearance()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#font-size" class="tc1 dim lh1-5">font-size()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#media" class="tc1 dim lh1-5">media()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#new-breakpoint" class="tc1 dim lh1-5">new-breakpoint()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#new-color" class="tc1 dim lh1-5">new-color()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#new-spacing-helper" class="tc1 dim lh1-5">new-spacing-helper()</a></li>
</div>
</aside> </div>
<section class="w100">
<div class="wrap wrap--pad">
<div class="main-content md-ph6 pv3 md-pv6">
<h2 class="tcg50 ft10 fw3 mb2 md-mb3">Borders</h2>
<p class="tcg50 ft5 fw3 mb4 md-mb6 lh2">Beard’s border helpers use a default scale from 1 to 3. This can be changed by setting <code>$beard-border-size-amount</code> before you import Beard.</p>
<!-- <p class="tcg50 ft5 fw3 mb1 lh2"><code>.xbrdr</code></p> -->
<!-- <p class="tcg50 ft5 fw3 mb4 lh2">Remove a border from an element.</p> -->
<table class="w100 mb6 ft4 tcg60 lh2">
<thead>
<tr class="brdr1--bottom bcg10">
<th class="pv1">Class</th>
<th class="pv1">Purpose</th>
</tr>
</thead>
<tbody>
<tr class="brdr1--bottom bcg10">
<td class="pv1"><code>.xbrdr</code></td>
<td class="pv1">Remove the border from an element</td>
</tr>
<tr class="brdr1--bottom bcg10">
<td class="pv1"><code>.brdr1</code></td>
<td class="pv1">Add a border to all sides of an element</td>
</tr>
<tr class="brdr1--bottom bcg10">
<td class="pv1"><code>.brdr1--top</code></td>
<td class="pv1">Add a border to the top of an element</td>
</tr>
<tr class="brdr1--bottom bcg10">
<td class="pv1"><code>.brdr1--right</code></td>
<td class="pv1">Add a border to the right side of an element</td>
</tr>
<tr class="brdr1--bottom bcg10">
<td class="pv1"><code>.brdr1--bottom</code></td>
<td class="pv1">Add a border to the bottom of an element</td>
</tr>
<tr class="brdr1--bottom bcg10">
<td class="pv1"><code>.brdr1--left</code></td>
<td class="pv1">Add a border to the left side of an element</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
</main>
<footer class="wrap wrap--pad brdr1--top bcg10 pv4">
<div class="frame">
<div class="blk mb2 md-xmb">
<p class="ft3 tcg30 tac md-tal">© 2016 A <a href="http://monarkee.com" class="tc1 lh2">Monarkee</a> product.<br class="md-dn"> Design by <a href="http://davidhemphill.com" class="tc1">David Hemphill</a>.</p>
</div>
<div class="blk">
<p class="tac md-tar">
<a href="http://github.com/davidhemphill/beard" class="ft3 md-ft2 tc1">View on Github</a>
</p>
</div>
</div>
</footer>
<script src="/js/app.js"></script>
</body>
</html>
================================================
FILE: build_production/colors/index.html
================================================
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<link rel="stylesheet" href="/css/vendor.css">
<link rel="stylesheet" href="/css/main.css">
<title>Beard - Atomic CSS framework</title>
</head>
<body id="app" >
<header class="main-header">
<div class="flex jcsb aic pv1 md-pv2 ph3">
<div class="flex aic">
<h1 class="logo ft5 md-ft7 ls1 fwxxbold flex aic">
<a href="/" class="tc1 dim">
<span class="uppercase">Beard</span>
</a>
<a @click="sidebarVisible = ! sidebarVisible" class="pointer md-dn btn--sm dim bgw tcg40 uppercase br3 ft3 md-ft4">Menu</a>
</h1>
<p class="dn md-db ml2 tcg40 ft3 md-ft4">A CSS framework for people with better things to do</p>
</div>
<div class="flex aic">
<a href="https://github.com/monarkee/beard" class="dn md-dib btn--sm dim bgw tcg40 br3 ft3 md-ft4">View on GitHub</a>
<a href="https://github.com/monarkee/beard/tarball/master" class="btn--sm dim bg1 tcw br3 ft3 md-ft4">Download</a>
</div>
</div>
<nav v-if="sidebarVisible" class="md-dn">
<aside class="w100 brdr1--right bcg10" :class="{ 'brdr1--top bcg10': sidebarVisible }">
<div class="ph2">
<h2 class="ft6 pv1 tcg60 mt4 fw3">Getting Started</h2>
<ul class="mb3">
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/installation" class="tc1 dim">Installation</a>
</li>
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/configuration" class="tc1 dim">Configuration</a>
</li>
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/philosophy" class="tc1 dim">Philosophy</a>
</li>
</ul>
<h2 class="ft6 pv1 tcg60 fw3">Elements</h2>
<ul class="mb3">
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/reset-and-base" class="tc1 dim">Reset & Base</a>
</li>
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/responsive-prefixes" class="tc1 dim lh1-5">Responsive Prefixes</a>
</li>
</ul>
<h2 class="ft6 pv1 tcg60 fw3">Helpers</h2>
<ul class="mb3">
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/borders" class="tc1 dim lh1-5">Borders</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/border-radius" class="tc1 dim lh1-5">Border Radius</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/colors" class="tc1 dim lh1-5">Colors</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/display" class="tc1 dim lh1-5">Display</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/flexbox" class="tc1 dim lh1-5">Flexbox</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/floats" class="tc1 dim lh1-5">Floats</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/fonts" class="tc1 dim lh1-5">Fonts</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/grid" class="tc1 dim lh1-5">Grid</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/letter-spacing" class="tc1 dim lh1-5">Letter Spacing</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/line-heights" class="tc1 dim lh1-5">Line Heights</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/misc" class="tc1 dim lh1-5">Misc</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/overflow" class="tc1 dim lh1-5">Overflow</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/position" class="tc1 dim lh1-5">Position</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/spacing" class="tc1 dim lh1-5">Spacing</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/text-alignment" class="tc1 dim lh1-5">Text Alignment</a></li>
</ul>
<h2 class="ft6 pv1 tcg60 fw3">Tools</h2>
<ul class="mb3">
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#appearance" class="tc1 dim lh1-5">appearance()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#font-size" class="tc1 dim lh1-5">font-size()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#media" class="tc1 dim lh1-5">media()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#new-breakpoint" class="tc1 dim lh1-5">new-breakpoint()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#new-color" class="tc1 dim lh1-5">new-color()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#new-spacing-helper" class="tc1 dim lh1-5">new-spacing-helper()</a></li>
</div>
</aside> </nav>
</header>
<section>
<div class="bg5 ht3"></div>
<div class="bg4 ht3"></div>
<div class="bg3 ht3"></div>
<div class="bg2 ht3"></div>
<div class="bg1 ht3"></div>
</section>
<main class="flex">
<div class="main-sidebar dn md-df">
<aside class="w100 brdr1--right bcg10" :class="{ 'brdr1--top bcg10': sidebarVisible }">
<div class="ph2">
<h2 class="ft6 pv1 tcg60 mt4 fw3">Getting Started</h2>
<ul class="mb3">
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/installation" class="tc1 dim">Installation</a>
</li>
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/configuration" class="tc1 dim">Configuration</a>
</li>
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/philosophy" class="tc1 dim">Philosophy</a>
</li>
</ul>
<h2 class="ft6 pv1 tcg60 fw3">Elements</h2>
<ul class="mb3">
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/reset-and-base" class="tc1 dim">Reset & Base</a>
</li>
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/responsive-prefixes" class="tc1 dim lh1-5">Responsive Prefixes</a>
</li>
</ul>
<h2 class="ft6 pv1 tcg60 fw3">Helpers</h2>
<ul class="mb3">
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/borders" class="tc1 dim lh1-5">Borders</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/border-radius" class="tc1 dim lh1-5">Border Radius</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/colors" class="tc1 dim lh1-5">Colors</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/display" class="tc1 dim lh1-5">Display</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/flexbox" class="tc1 dim lh1-5">Flexbox</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/floats" class="tc1 dim lh1-5">Floats</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/fonts" class="tc1 dim lh1-5">Fonts</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/grid" class="tc1 dim lh1-5">Grid</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/letter-spacing" class="tc1 dim lh1-5">Letter Spacing</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/line-heights" class="tc1 dim lh1-5">Line Heights</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/misc" class="tc1 dim lh1-5">Misc</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/overflow" class="tc1 dim lh1-5">Overflow</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/position" class="tc1 dim lh1-5">Position</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/spacing" class="tc1 dim lh1-5">Spacing</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/text-alignment" class="tc1 dim lh1-5">Text Alignment</a></li>
</ul>
<h2 class="ft6 pv1 tcg60 fw3">Tools</h2>
<ul class="mb3">
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#appearance" class="tc1 dim lh1-5">appearance()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#font-size" class="tc1 dim lh1-5">font-size()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#media" class="tc1 dim lh1-5">media()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#new-breakpoint" class="tc1 dim lh1-5">new-breakpoint()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#new-color" class="tc1 dim lh1-5">new-color()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#new-spacing-helper" class="tc1 dim lh1-5">new-spacing-helper()</a></li>
</div>
</aside> </div>
<section class="w100">
<div class="wrap wrap--pad">
<div class="main-content md-ph6 pv3 md-pv6">
<h3 class="tcg50 ft7 md-ft10 fw3 mb2 md-mb4">Color Helpers</h3>
<p class="tcg50 ft5 fw3 mb4 md-mb6 lh2">Beard's color helpers are generated with <code>!important</code> to provide the ability to override any color values set in your CSS. It's also encouraged to use these helpers in place of modifiers which do the same thing.</p>
<div class="mb4 ph3">
<div class="frame frame--xpad">
<div class="blk6"><div class="sticky bgsuccess tcw">.bgsuccess</div></div>
<div class="blk6"><div class="sticky xbg tcsuccess">.tcsuccess</div></div>
<div class="blk6"><div class="sticky bgwarning tcw">.bgwarning</div></div>
<div class="blk6"><div class="sticky xbg tcwarning">.tcwarning</div></div>
<div class="blk6"><div class="sticky bgdanger tcw">.bgdanger</div></div>
<div class="blk6"><div class="sticky xbg tcdanger">.tcdanger</div></div>
</div>
<div class="frame frame--xpad">
<div class="blk"><div class="sticky bg1 tcw">.bg1</div></div>
<div class="blk"><div class="sticky bg2 tcw">.bg2</div></div>
<div class="blk"><div class="sticky bg3 tcw">.bg3</div></div>
<div class="blk"><div class="sticky bg4 tcw">.bg4</div></div>
<div class="blk"><div class="sticky bg5 tcw">.bg5</div></div>
</div>
<div class="frame frame--xpad">
<div class="blk"><div class="sticky xbg tc1">.tc1</div></div>
<div class="blk"><div class="sticky xbg tc2">.tc2</div></div>
<div class="blk"><div class="sticky xbg tc3">.tc3</div></div>
<div class="blk"><div class="sticky xbg tc4">.tc4</div></div>
<div class="blk"><div class="sticky xbg tc5">.tc5</div></div>
</div>
<div class="frame frame--xpad">
<div class="blk"><div class="sticky xbg brdr1 bc1">.bc1</div></div>
<div class="blk"><div class="sticky xbg brdr1 bc2">.bc2</div></div>
<div class="blk"><div class="sticky xbg brdr1 bc3">.bc3</div></div>
<div class="blk"><div class="sticky xbg brdr1 bc4">.bc4</div></div>
<div class="blk"><div class="sticky xbg brdr1 bc5">.bc5</div></div>
</div>
<div class="frame frame--xpad">
<div class="blk"><div class="sticky bgw tcg40">.bgw</div></div>
<div class="blk"><div class="sticky bgg40 tcw">.tcw</div></div>
<div class="blk"><div class="sticky brdr1 bcw xbg tcg40">.bcw</div></div>
</div>
<div class="frame frame--xpad">
<div class="blk"><div class="sticky bgg05 tcg60">.bgg05</div></div>
</div>
<div class="frame frame--xpad">
<div class="blk"><div class="sticky bgg10 tcg60">.bgg10</div></div>
<div class="blk"><div class="sticky bgg20 tcg60">.bgg20</div></div>
<div class="blk"><div class="sticky bgg30 tcw">.bgg30</div></div>
<div class="blk"><div class="sticky bgg40 tcw">.bgg40</div></div>
<div class="blk"><div class="sticky bgg50 tcw">.bgg50</div></div>
</div>
<div class="frame frame--xpad">
<div class="blk"><div class="sticky bgg60 tcw">.bgg60</div></div>
<div class="blk"><div class="sticky bgg70 tcw">.bgg70</div></div>
<div class="blk"><div class="sticky bgg80 tcw">.bgg80</div></div>
<div class="blk"><div class="sticky bgg90 tcw">.bgg90</div></div>
<div class="blk"><div class="sticky bgb tcw">.bgb</div></div>
</div>
<div class="frame frame--xpad">
<div class="blk"><div class="sticky bgg20 tcg05">.tcg05</div></div>
</div>
<div class="frame frame--xpad">
<div class="blk"><div class="sticky xbg tcg10">.tcg10</div></div>
<div class="blk"><div class="sticky xbg tcg20">.tcg20</div></div>
<div class="blk"><div class="sticky xbg tcg30">.tcg30</div></div>
<div class="blk"><div class="sticky xbg tcg40">.tcg40</div></div>
<div class="blk"><div class="sticky xbg tcg50">.tcg50</div></div>
</div>
<div class="frame frame--xpad">
<div class="blk"><div class="sticky xbg tcg60">.tcg60</div></div>
<div class="blk"><div class="sticky xbg tcg70">.tcg70</div></div>
<div class="blk"><div class="sticky xbg tcg80">.tcg80</div></div>
<div class="blk"><div class="sticky xbg tcg90">.tcg90</div></div>
<div class="blk"><div class="sticky xbg tcb">.tcb</div></div>
</div>
<div class="frame frame--xpad">
<div class="blk"><div class="sticky xbg tcg40 brdr1 bcg05">.bcg05</div></div>
</div>
<div class="frame frame--xpad">
<div class="blk"><div class="sticky xbg tcg40 brdr1 bcg10">.bcg10</div></div>
<div class="blk"><div class="sticky xbg tcg40 brdr1 bcg20">.bcg20</div></div>
<div class="blk"><div class="sticky xbg tcg40 brdr1 bcg30">.bcg30</div></div>
<div class="blk"><div class="sticky xbg tcg40 brdr1 bcg40">.bcg40</div></div>
<div class="blk"><div class="sticky xbg tcg40 brdr1 bcg50">.bcg50</div></div>
</div>
<div class="frame frame--xpad">
<div class="blk"><div class="sticky xbg tcg40 brdr1 bcg60">.bcg60</div></div>
<div class="blk"><div class="sticky xbg tcg40 brdr1 bcg70">.bcg70</div></div>
<div class="blk"><div class="sticky xbg tcg40 brdr1 bcg80">.bcg80</div></div>
<div class="blk"><div class="sticky xbg tcg40 brdr1 bcg90">.bcg90</div></div>
<div class="blk"><div class="sticky xbg tcg40 brdr1 bcb">.bcb</div></div>
</div>
</div>
<h4 class="tcg50 ft7 fw3 mb2 md-mb4">Hover, Focus, and Active Color Helpers</h4>
<p class="tcg50 ft5 fw3 mb4 lh2">Beard's color helper system allows you to use hover, focus, and active colors, using a special syntax. Beard can transition any color to any other color in the system, which makes these helpers real timesavers.</p>
<table class="w100 mb6 ft4 tcg60 lh2">
<thead>
<tr class="brdr1--bottom bcg10">
<th class="pv1">Prefix</th>
<th class="pv1">Purpose</th>
<th class="only-sm-dn pv1">Example</th>
<th class="only-sm-dn pv1">Demo</td>
</tr>
</thead>
<tbody>
<tr class="brdr1--bottom bcg10">
<td class="pv1"><code>:</code></td>
<td class="pv1"><code>Hover</code></td>
<td class="only-sm-dn pv1"><code>class="tc1 :tcwarning"</code></td>
<td class="only-sm-dn pv1">
<span class="pointer tc1 :tcwarning">Sample link hover text</span>
</td>
</tr>
<tr class="brdr1--bottom bcg10">
<td class="pv1"><code>::</code></td>
<td class="pv1"><code>Focus</code></td>
<td class="only-sm-dn pv1"><code>class="bcg20 ::bc1"</code></td>
<td class="only-sm-dn pv1 tcg60 ::tcdanger">
<input type="text" class="brdr1 bcg20 ::bc1 pv1 ph2 ft5" placeholder="Focus this input">
</td>
</tr>
<tr class="brdr1--bottom bcg10">
<td class="pv1"><code>@</code></td>
<td class="pv1"><code>Active</code></td>
<td class="only-sm-dn pv1"><code>class="bgg05 tcg40 @bg1 @tcw"</code></td>
<td class="only-sm-dn pv1 tcg60 @tcdanger">
<a class="pointer bgg05 tcg40 @bg1 @tcw ph2 pv1 ft4">Click Me</a>
</td>
</tr>
</tbody>
</table>
<h4 class="tcg50 ft7 fw3 mb2 md-mb4">Another Example</h4>
<div class="df aic jcc acc br3 bgg05 brdr1 bcg20 pv3 mb4">
<div class="df ofh br3">
<input type="text" class="xbrdr brdr1--top brdr1--bottom brdr1--left bcg20 ::bc1 ph2 ft4" placeholder="Enter your email">
<button class="dib pv1 ph2 ft4 fw6 bg1 :bg2 ::bg3 @bg4 tcw brdr1 bc1">Click Me</button>
</div>
</div>
<pre><code class="language-html"><div class="df ofh br3">
<input type="text" class="xbrdr brdr1--top brdr1--bottom brdr1--left bcg20 ::bc1 ph2 ft4" placeholder="Enter your email">
<button class="dib pv1 ph2 ft4 fw6 bg1 :bg2 ::bg3 @bg4 tcw brdr1 bc1">Click Me</button>
</div></code></pre>
<p><a name="adding-new-color-helpers"></a></p>
<h3 class="tcg50 ft8 fw3 mb2 md-mb3">Adding New Color Helpers</h3>
<p class="tcg50 ft5 fw3 mb4 lh2">This mixin allows you to add colors to be generated along with Beard's default color helpers.</p>
<pre><code class="language-scss">// Tools & Mixins
//-------------------------------------------------------------------------- */
// @import '../../../stylesheets/tools.font-size';
// This has to go between Beard's tool.font-size and helpers.spacing partials
@include new-color('1--light', #85D7FF); // Outputs .bg1--light { background-color: #85D7FF !important }
@include new-color('red', #FF0000); // Outputs .bgred { background-color: #FF0000 !important }
// Helpers
//-------------------------------------------------------------------------- */
// @import '../../../stylesheets/helpers.spacing';</code></pre>
<blockquote class="bg1 br3 pv2 ph2 mb6">
<p class="tcw ft5 fw3 lh2"><strong>Note:</strong> Calling this mixin will only work if you import each of Beard’s partials individually, <a href="/installation" class="tcw fw6">as recommended by the installation guide</a>.</p>
</blockquote>
</div>
</div>
</section>
</main>
<footer class="wrap wrap--pad brdr1--top bcg10 pv4">
<div class="frame">
<div class="blk mb2 md-xmb">
<p class="ft3 tcg30 tac md-tal">© 2016 A <a href="http://monarkee.com" class="tc1 lh2">Monarkee</a> product.<br class="md-dn"> Design by <a href="http://davidhemphill.com" class="tc1">David Hemphill</a>.</p>
</div>
<div class="blk">
<p class="tac md-tar">
<a href="http://github.com/davidhemphill/beard" class="ft3 md-ft2 tc1">View on Github</a>
</p>
</div>
</div>
</footer>
<script src="/js/app.js"></script>
</body>
</html>
================================================
FILE: build_production/configuration/index.html
================================================
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<link rel="stylesheet" href="/css/vendor.css">
<link rel="stylesheet" href="/css/main.css">
<title>Beard - Atomic CSS framework</title>
</head>
<body id="app" >
<header class="main-header">
<div class="flex jcsb aic pv1 md-pv2 ph3">
<div class="flex aic">
<h1 class="logo ft5 md-ft7 ls1 fwxxbold flex aic">
<a href="/" class="tc1 dim">
<span class="uppercase">Beard</span>
</a>
<a @click="sidebarVisible = ! sidebarVisible" class="pointer md-dn btn--sm dim bgw tcg40 uppercase br3 ft3 md-ft4">Menu</a>
</h1>
<p class="dn md-db ml2 tcg40 ft3 md-ft4">A CSS framework for people with better things to do</p>
</div>
<div class="flex aic">
<a href="https://github.com/monarkee/beard" class="dn md-dib btn--sm dim bgw tcg40 br3 ft3 md-ft4">View on GitHub</a>
<a href="https://github.com/monarkee/beard/tarball/master" class="btn--sm dim bg1 tcw br3 ft3 md-ft4">Download</a>
</div>
</div>
<nav v-if="sidebarVisible" class="md-dn">
<aside class="w100 brdr1--right bcg10" :class="{ 'brdr1--top bcg10': sidebarVisible }">
<div class="ph2">
<h2 class="ft6 pv1 tcg60 mt4 fw3">Getting Started</h2>
<ul class="mb3">
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/installation" class="tc1 dim">Installation</a>
</li>
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/configuration" class="tc1 dim">Configuration</a>
</li>
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/philosophy" class="tc1 dim">Philosophy</a>
</li>
</ul>
<h2 class="ft6 pv1 tcg60 fw3">Elements</h2>
<ul class="mb3">
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/reset-and-base" class="tc1 dim">Reset & Base</a>
</li>
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/responsive-prefixes" class="tc1 dim lh1-5">Responsive Prefixes</a>
</li>
</ul>
<h2 class="ft6 pv1 tcg60 fw3">Helpers</h2>
<ul class="mb3">
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/borders" class="tc1 dim lh1-5">Borders</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/border-radius" class="tc1 dim lh1-5">Border Radius</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/colors" class="tc1 dim lh1-5">Colors</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/display" class="tc1 dim lh1-5">Display</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/flexbox" class="tc1 dim lh1-5">Flexbox</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/floats" class="tc1 dim lh1-5">Floats</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/fonts" class="tc1 dim lh1-5">Fonts</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/grid" class="tc1 dim lh1-5">Grid</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/letter-spacing" class="tc1 dim lh1-5">Letter Spacing</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/line-heights" class="tc1 dim lh1-5">Line Heights</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/misc" class="tc1 dim lh1-5">Misc</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/overflow" class="tc1 dim lh1-5">Overflow</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/position" class="tc1 dim lh1-5">Position</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/spacing" class="tc1 dim lh1-5">Spacing</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/text-alignment" class="tc1 dim lh1-5">Text Alignment</a></li>
</ul>
<h2 class="ft6 pv1 tcg60 fw3">Tools</h2>
<ul class="mb3">
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#appearance" class="tc1 dim lh1-5">appearance()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#font-size" class="tc1 dim lh1-5">font-size()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#media" class="tc1 dim lh1-5">media()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#new-breakpoint" class="tc1 dim lh1-5">new-breakpoint()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#new-color" class="tc1 dim lh1-5">new-color()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#new-spacing-helper" class="tc1 dim lh1-5">new-spacing-helper()</a></li>
</div>
</aside> </nav>
</header>
<section>
<div class="bg5 ht3"></div>
<div class="bg4 ht3"></div>
<div class="bg3 ht3"></div>
<div class="bg2 ht3"></div>
<div class="bg1 ht3"></div>
</section>
<main class="flex">
<div class="main-sidebar dn md-df">
<aside class="w100 brdr1--right bcg10" :class="{ 'brdr1--top bcg10': sidebarVisible }">
<div class="ph2">
<h2 class="ft6 pv1 tcg60 mt4 fw3">Getting Started</h2>
<ul class="mb3">
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/installation" class="tc1 dim">Installation</a>
</li>
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/configuration" class="tc1 dim">Configuration</a>
</li>
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/philosophy" class="tc1 dim">Philosophy</a>
</li>
</ul>
<h2 class="ft6 pv1 tcg60 fw3">Elements</h2>
<ul class="mb3">
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/reset-and-base" class="tc1 dim">Reset & Base</a>
</li>
<li class="ft4 pv1 brdr1--bottom bcg10">
<a href="/responsive-prefixes" class="tc1 dim lh1-5">Responsive Prefixes</a>
</li>
</ul>
<h2 class="ft6 pv1 tcg60 fw3">Helpers</h2>
<ul class="mb3">
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/borders" class="tc1 dim lh1-5">Borders</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/border-radius" class="tc1 dim lh1-5">Border Radius</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/colors" class="tc1 dim lh1-5">Colors</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/display" class="tc1 dim lh1-5">Display</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/flexbox" class="tc1 dim lh1-5">Flexbox</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/floats" class="tc1 dim lh1-5">Floats</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/fonts" class="tc1 dim lh1-5">Fonts</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/grid" class="tc1 dim lh1-5">Grid</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/letter-spacing" class="tc1 dim lh1-5">Letter Spacing</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/line-heights" class="tc1 dim lh1-5">Line Heights</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/misc" class="tc1 dim lh1-5">Misc</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/overflow" class="tc1 dim lh1-5">Overflow</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/position" class="tc1 dim lh1-5">Position</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/spacing" class="tc1 dim lh1-5">Spacing</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/text-alignment" class="tc1 dim lh1-5">Text Alignment</a></li>
</ul>
<h2 class="ft6 pv1 tcg60 fw3">Tools</h2>
<ul class="mb3">
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#appearance" class="tc1 dim lh1-5">appearance()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#font-size" class="tc1 dim lh1-5">font-size()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#media" class="tc1 dim lh1-5">media()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#new-breakpoint" class="tc1 dim lh1-5">new-breakpoint()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#new-color" class="tc1 dim lh1-5">new-color()</a></li>
<li class="ft4 pv1 brdr1--bottom bcg10"><a href="/tools#new-spacing-helper" class="tc1 dim lh1-5">new-spacing-helper()</a></li>
</div>
</aside> </div>
<section class="w100">
<div class="wrap wrap--pad">
<div class="main-content md-ph6 pv3 md-pv6">
<h2 class="tcg50 ft10 fw3 mb2 md-mb3">Configuration</h2>
<p class="tcg50 ft5 fw3 mb4 lh2">Beard has a set of settings you can tweak to customize the framework for you project. Listed below are some of the important ones. The complete list is found in <code>stylesheets/_settings.scss</code>.</p>
<table class="w100">
<thead>
<tr class="brdr1--bottom bcg10">
<th class="tcg50 ft5 fw5 pv2 pr2">Variable</th>
<th class="tcg50 ft5 fw5 pv2 pr2">Default</th>
<th class="tcg50 ft5 fw5 pv2 pr2">Purpose</th>
</tr>
</thead>
<tbody>
<tr class="brdr1--bottom bcg10">
<td class="tcg50 ft5 fw5 pv2 pr2"><code>$beard-reset</code></td>
<td class="tcg50 ft5 fw3 pv2 pr2"><code>true</code></td>
<td class="tcg50 ft5 fw3 pv2 pr2">Adds a classic CSS reset</td>
</tr>
<tr class="brdr1--bottom bcg10">
<td class="tcg50 ft5 fw5 pv2 pr2"><code>$beard-base</code></td>
<td class="tcg50 ft5 fw3 pv2 pr2"><code>true</code></td>
<td class="tcg50 ft5 fw3 pv2 pr2">Adds Beard’s base styling</td>
</tr>
<tr class="brdr1--bottom bcg10">
<td class="tcg50 ft5 fw5 pv2 pr2"><code>$beard-enable-responsive</code></td>
<td class="tcg50 ft5 fw3 pv2 pr2"><code>true</code></td>
<td class="tcg50 ft5 fw3 pv2 pr2">Enable responsive features</td>
</tr>
<tr class="brdr1--bottom bcg10">
<td class="tcg50 ft5 fw5 pv2 pr2"><code>$beard-enable-spacing-helpers</code></td>
<td class="tcg50 ft5 fw3 pv2 pr2"><code>true</code></td>
<td class="tcg50 ft5 fw3 pv2 pr2">Enable the spacing helpers</td>
</tr>
<tr class="brdr1--bottom bcg10">
<td class="tcg50 ft5 fw5 pv2 pr2"><code>$beard-spacing-helper-amount</code></td>
<td class="tcg50 ft5 fw3 pv2 pr2"><code>10</code></td>
<td class="tcg50 ft5 fw3 pv2 pr2">Specify how many spacer levels to generate</td>
</tr>
<tr class="brdr1--bottom bcg10">
<td class="tcg50 ft5 fw5 pv2 pr2"><code>$beard-grid-block-count</code></td>
<td class="tcg50 ft5 fw3 pv2 pr2"><code>12</code></td>
<td class="tcg50 ft5 fw3 pv2 pr2">The amount of column classes to create</td>
</tr>
<tr class="brdr1--bottom bcg10">
<td class="tcg50 ft5 fw5 pv2 pr2"><code>$beard-grid-gutter</code></td>
<td class="tcg50 ft5 fw3 pv2 pr2"><code>30px</code></td>
<td class="tcg50 ft5 fw3 pv2 pr2">The default size of the column gutters</td>
</tr>
<tr class="brdr1--bottom bcg10">
<td class="tcg50 ft5 fw5 pv2 pr2"><code>$site-width</code></td>
<td class="tcg50 ft5 fw3 pv2 pr2"><code>114rem</code></td>
<td class="tcg50 ft5 fw3 pv2 pr2">The maximum size of the site wrappers</td>
</tr>
<tr class="brdr1--bottom bcg10">
<td class="tcg50 ft5 fw5 pv2 pr2"><code>$sans-serif</code></td>
<td colspan="2" class="tcg50 ft5 fw3 pv2 pr2"><code>'Helvetica Neue', Helvetica, Arial, sans-serif</code></td>
</tr>
<tr class="brdr1--bottom bcg10">
<td class="tcg50 ft5 fw5 pv2 pr2"><code>$serif</code></td>
<td colspan="2" class="tcg50 ft5 fw3 pv2 pr2"><code>Merriweather, Georgia, serif</code></td>
</tr>
<tr class="brdr1--bottom bcg10">
<td class="tcg50 ft5 fw5 pv2 pr2"><code>$code</code></td>
<td colspan="2" class="tcg50 ft5 fw3 pv2 pr2"><code>Menlo, Consolas, Monaco, 'Andale Mono', monospace</code></td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
</main>
<footer class="wrap wrap--pad brdr1--top bcg10 pv4">
<div class="frame">
<div class="blk mb2 md-xmb">
<p class="ft3 tcg30 tac md-tal">© 2016 A <a href="http://monarkee.com" class="tc1 lh2">Monarkee</a> product.<br class="md-dn"> Design by <a href="http://davidhemphill.com" class="tc1">David Hemphill</a>.</p>
</div>
<div class="blk">
<p class="tac md-tar">
<a href="http://github.com/davidhemphill/beard" class="ft3 md-ft2 tc1">View on Github</a>
</p>
</div>
</div>
</footer>
<script src="/js/app.js"></script>
</body>
</html>
================================================
FILE: build_production/css/main.css
================================================
a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,dialog,div,dl,dt,em,embed,fieldset,figcaption,figure,font,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,hr,html,i,iframe,img,ins,kbd,label,legend,li,main,mark,menu,meter,nav,object,ol,output,p,pre,progress,q,rp,rt,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video,xmp{border:0;margin:0;padding:0;font-size:100%}body,html{height:100%}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section{display:block}b,strong{font-weight:700}img{color:transparent;font-size:0;vertical-align:middle;-ms-interpolation-mode:bicubic}ol,ul{list-style:none}li{display:list-item}table{border-collapse:collapse;border-spacing:0}caption,td,th{font-weight:400;vertical-align:top;text-align:left}q{quotes:none}q:after,q:before{content:"";content:none}small,sub,sup{font-size:75%}sub,sup{line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}svg{overflow:hidden}*,:after,:before{box-sizing:inherit}html{font-size:62.5%;box-sizing:border-box;height:100%}body{font-family:Helvetica Neue,Helvetica,Arial,sans-serif;min-height:100%}h1,h2,h3,h4,h5,h6{font-weight:400}hr{background:none;border-top:1px solid rgba(0,0,0,.2);margin:0}a{text-decoration:none;-webkit-tap-highlight-color:transparent}button{cursor:pointer;border:none}button,input,textarea{outline:none}img{max-width:100%;font-style:italic;vertical-align:middle}img[height],img[width]{max-width:none}body{font-family:system,-apple-system,BlinkMacSystemFont,ubuntu,sans-serif}:not(pre)>code{background:#fafafa;padding:.5rem 1rem;color:#666;border-radius:3px;border:1px solid #dcdcdc}.btn--sm{padding:.85rem 1rem}.ht3{height:7px}.main-content{max-width:96rem}.main-sidebar{-ms-flex:0 0 200px;flex:0 0 200px}.sticky{background-color:rgba(67,70,74,.1);position:relative;padding:2rem 1rem;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;font-size:13px;color:rgba(67,70,74,.4)}.sticky--nopad{left:0;right:0}.outline{outline:1px solid rgba(67,70,74,.4)}.example-nested-frame{background:rgba(67,70,74,.1)}.pv05{padding-top:.5rem;padding-bottom:.5rem}.badge{padding:4px 6px}th{background:#f2f2f2}.z30{z-index:30}.pointer{cursor:pointer}.tal{text-align:left!important}.tac{text-align:center!important}.tar{text-align:right!important}@media screen and (min-width:30rem){.sm-tal{text-align:left!important}}@media screen and (min-width:30rem){.sm-tac{text-align:center!important}}@media screen and (min-width:30rem){.sm-tar{text-align:right!important}}@media screen and (max-width:59.99999rem){.only-sm-tal{text-align:left!important}}@media screen and (max-width:59.99999rem){.only-sm-tac{text-align:center!important}}@media screen and (max-width:59.99999rem){.only-sm-tar{text-align:right!important}}@media screen and (min-width:60rem){.md-tal{text-align:left!important}}@media screen and (min-width:60rem){.md-tac{text-align:center!important}}@media screen and (min-width:60rem){.md-tar{text-align:right!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-tal{text-align:left!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-tac{text-align:center!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-tar{text-align:right!important}}@media screen and (min-width:90rem){.lg-tal{text-align:left!important}}@media screen and (min-width:90rem){.lg-tac{text-align:center!important}}@media screen and (min-width:90rem){.lg-tar{text-align:right!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-tal{text-align:left!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-tac{text-align:center!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-tar{text-align:right!important}}@media screen and (min-width:144rem){.xlg-tal{text-align:left!important}}@media screen and (min-width:144rem){.xlg-tac{text-align:center!important}}@media screen and (min-width:144rem){.xlg-tar{text-align:right!important}}@media screen and (min-width:144rem){.only-xlg-tal{text-align:left!important}}@media screen and (min-width:144rem){.only-xlg-tac{text-align:center!important}}@media screen and (min-width:144rem){.only-xlg-tar{text-align:right!important}}.pa1{padding:1rem!important}@media screen and (min-width:30rem){.sm-pa1{padding:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pa1{padding:1rem!important}}@media screen and (min-width:60rem){.md-pa1{padding:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pa1{padding:1rem!important}}@media screen and (min-width:90rem){.lg-pa1{padding:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pa1{padding:1rem!important}}@media screen and (min-width:144rem){.only-xlg-pa1,.xlg-pa1{padding:1rem!important}}.pt1{padding-top:1rem!important}@media screen and (min-width:30rem){.sm-pt1{padding-top:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pt1{padding-top:1rem!important}}@media screen and (min-width:60rem){.md-pt1{padding-top:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pt1{padding-top:1rem!important}}@media screen and (min-width:90rem){.lg-pt1{padding-top:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pt1{padding-top:1rem!important}}@media screen and (min-width:144rem){.only-xlg-pt1,.xlg-pt1{padding-top:1rem!important}}.pr1{padding-right:1rem!important}@media screen and (min-width:30rem){.sm-pr1{padding-right:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pr1{padding-right:1rem!important}}@media screen and (min-width:60rem){.md-pr1{padding-right:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pr1{padding-right:1rem!important}}@media screen and (min-width:90rem){.lg-pr1{padding-right:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pr1{padding-right:1rem!important}}@media screen and (min-width:144rem){.only-xlg-pr1,.xlg-pr1{padding-right:1rem!important}}.pb1{padding-bottom:1rem!important}@media screen and (min-width:30rem){.sm-pb1{padding-bottom:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pb1{padding-bottom:1rem!important}}@media screen and (min-width:60rem){.md-pb1{padding-bottom:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pb1{padding-bottom:1rem!important}}@media screen and (min-width:90rem){.lg-pb1{padding-bottom:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pb1{padding-bottom:1rem!important}}@media screen and (min-width:144rem){.only-xlg-pb1,.xlg-pb1{padding-bottom:1rem!important}}.pl1{padding-left:1rem!important}@media screen and (min-width:30rem){.sm-pl1{padding-left:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pl1{padding-left:1rem!important}}@media screen and (min-width:60rem){.md-pl1{padding-left:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pl1{padding-left:1rem!important}}@media screen and (min-width:90rem){.lg-pl1{padding-left:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pl1{padding-left:1rem!important}}@media screen and (min-width:144rem){.only-xlg-pl1,.xlg-pl1{padding-left:1rem!important}}.pv1{padding-top:1rem!important;padding-bottom:1rem!important}@media screen and (min-width:30rem){.sm-pv1{padding-top:1rem!important;padding-bottom:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pv1{padding-top:1rem!important;padding-bottom:1rem!important}}@media screen and (min-width:60rem){.md-pv1{padding-top:1rem!important;padding-bottom:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pv1{padding-top:1rem!important;padding-bottom:1rem!important}}@media screen and (min-width:90rem){.lg-pv1{padding-top:1rem!important;padding-bottom:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pv1{padding-top:1rem!important;padding-bottom:1rem!important}}@media screen and (min-width:144rem){.only-xlg-pv1,.xlg-pv1{padding-top:1rem!important;padding-bottom:1rem!important}}.ph1{padding-left:1rem!important;padding-right:1rem!important}@media screen and (min-width:30rem){.sm-ph1{padding-left:1rem!important;padding-right:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ph1{padding-left:1rem!important;padding-right:1rem!important}}@media screen and (min-width:60rem){.md-ph1{padding-left:1rem!important;padding-right:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ph1{padding-left:1rem!important;padding-right:1rem!important}}@media screen and (min-width:90rem){.lg-ph1{padding-left:1rem!important;padding-right:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ph1{padding-left:1rem!important;padding-right:1rem!important}}@media screen and (min-width:144rem){.only-xlg-ph1,.xlg-ph1{padding-left:1rem!important;padding-right:1rem!important}}.pa2{padding:2rem!important}@media screen and (min-width:30rem){.sm-pa2{padding:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pa2{padding:2rem!important}}@media screen and (min-width:60rem){.md-pa2{padding:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pa2{padding:2rem!important}}@media screen and (min-width:90rem){.lg-pa2{padding:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pa2{padding:2rem!important}}@media screen and (min-width:144rem){.only-xlg-pa2,.xlg-pa2{padding:2rem!important}}.pt2{padding-top:2rem!important}@media screen and (min-width:30rem){.sm-pt2{padding-top:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pt2{padding-top:2rem!important}}@media screen and (min-width:60rem){.md-pt2{padding-top:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pt2{padding-top:2rem!important}}@media screen and (min-width:90rem){.lg-pt2{padding-top:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pt2{padding-top:2rem!important}}@media screen and (min-width:144rem){.only-xlg-pt2,.xlg-pt2{padding-top:2rem!important}}.pr2{padding-right:2rem!important}@media screen and (min-width:30rem){.sm-pr2{padding-right:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pr2{padding-right:2rem!important}}@media screen and (min-width:60rem){.md-pr2{padding-right:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pr2{padding-right:2rem!important}}@media screen and (min-width:90rem){.lg-pr2{padding-right:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pr2{padding-right:2rem!important}}@media screen and (min-width:144rem){.only-xlg-pr2,.xlg-pr2{padding-right:2rem!important}}.pb2{padding-bottom:2rem!important}@media screen and (min-width:30rem){.sm-pb2{padding-bottom:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pb2{padding-bottom:2rem!important}}@media screen and (min-width:60rem){.md-pb2{padding-bottom:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pb2{padding-bottom:2rem!important}}@media screen and (min-width:90rem){.lg-pb2{padding-bottom:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pb2{padding-bottom:2rem!important}}@media screen and (min-width:144rem){.only-xlg-pb2,.xlg-pb2{padding-bottom:2rem!important}}.pl2{padding-left:2rem!important}@media screen and (min-width:30rem){.sm-pl2{padding-left:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pl2{padding-left:2rem!important}}@media screen and (min-width:60rem){.md-pl2{padding-left:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pl2{padding-left:2rem!important}}@media screen and (min-width:90rem){.lg-pl2{padding-left:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pl2{padding-left:2rem!important}}@media screen and (min-width:144rem){.only-xlg-pl2,.xlg-pl2{padding-left:2rem!important}}.pv2{padding-top:2rem!important;padding-bottom:2rem!important}@media screen and (min-width:30rem){.sm-pv2{padding-top:2rem!important;padding-bottom:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pv2{padding-top:2rem!important;padding-bottom:2rem!important}}@media screen and (min-width:60rem){.md-pv2{padding-top:2rem!important;padding-bottom:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pv2{padding-top:2rem!important;padding-bottom:2rem!important}}@media screen and (min-width:90rem){.lg-pv2{padding-top:2rem!important;padding-bottom:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pv2{padding-top:2rem!important;padding-bottom:2rem!important}}@media screen and (min-width:144rem){.only-xlg-pv2,.xlg-pv2{padding-top:2rem!important;padding-bottom:2rem!important}}.ph2,td,th{padding-left:2rem!important;padding-right:2rem!important}@media screen and (min-width:30rem){.sm-ph2{padding-left:2rem!important;padding-right:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ph2{padding-left:2rem!important;padding-right:2rem!important}}@media screen and (min-width:60rem){.md-ph2{padding-left:2rem!important;padding-right:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ph2{padding-left:2rem!important;padding-right:2rem!important}}@media screen and (min-width:90rem){.lg-ph2{padding-left:2rem!important;padding-right:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ph2{padding-left:2rem!important;padding-right:2rem!important}}@media screen and (min-width:144rem){.only-xlg-ph2,.xlg-ph2{padding-left:2rem!important;padding-right:2rem!important}}.pa3{padding:3rem!important}@media screen and (min-width:30rem){.sm-pa3{padding:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pa3{padding:3rem!important}}@media screen and (min-width:60rem){.md-pa3{padding:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pa3{padding:3rem!important}}@media screen and (min-width:90rem){.lg-pa3{padding:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pa3{padding:3rem!important}}@media screen and (min-width:144rem){.only-xlg-pa3,.xlg-pa3{padding:3rem!important}}.pt3{padding-top:3rem!important}@media screen and (min-width:30rem){.sm-pt3{padding-top:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pt3{padding-top:3rem!important}}@media screen and (min-width:60rem){.md-pt3{padding-top:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pt3{padding-top:3rem!important}}@media screen and (min-width:90rem){.lg-pt3{padding-top:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pt3{padding-top:3rem!important}}@media screen and (min-width:144rem){.only-xlg-pt3,.xlg-pt3{padding-top:3rem!important}}.pr3{padding-right:3rem!important}@media screen and (min-width:30rem){.sm-pr3{padding-right:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pr3{padding-right:3rem!important}}@media screen and (min-width:60rem){.md-pr3{padding-right:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pr3{padding-right:3rem!important}}@media screen and (min-width:90rem){.lg-pr3{padding-right:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pr3{padding-right:3rem!important}}@media screen and (min-width:144rem){.only-xlg-pr3,.xlg-pr3{padding-right:3rem!important}}.pb3{padding-bottom:3rem!important}@media screen and (min-width:30rem){.sm-pb3{padding-bottom:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pb3{padding-bottom:3rem!important}}@media screen and (min-width:60rem){.md-pb3{padding-bottom:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pb3{padding-bottom:3rem!important}}@media screen and (min-width:90rem){.lg-pb3{padding-bottom:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pb3{padding-bottom:3rem!important}}@media screen and (min-width:144rem){.only-xlg-pb3,.xlg-pb3{padding-bottom:3rem!important}}.pl3{padding-left:3rem!important}@media screen and (min-width:30rem){.sm-pl3{padding-left:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pl3{padding-left:3rem!important}}@media screen and (min-width:60rem){.md-pl3{padding-left:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pl3{padding-left:3rem!important}}@media screen and (min-width:90rem){.lg-pl3{padding-left:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pl3{padding-left:3rem!important}}@media screen and (min-width:144rem){.only-xlg-pl3,.xlg-pl3{padding-left:3rem!important}}.pv3{padding-top:3rem!important;padding-bottom:3rem!important}@media screen and (min-width:30rem){.sm-pv3{padding-top:3rem!important;padding-bottom:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pv3{padding-top:3rem!important;padding-bottom:3rem!important}}@media screen and (min-width:60rem){.md-pv3{padding-top:3rem!important;padding-bottom:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pv3{padding-top:3rem!important;padding-bottom:3rem!important}}@media screen and (min-width:90rem){.lg-pv3{padding-top:3rem!important;padding-bottom:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pv3{padding-top:3rem!important;padding-bottom:3rem!important}}@media screen and (min-width:144rem){.only-xlg-pv3,.xlg-pv3{padding-top:3rem!important;padding-bottom:3rem!important}}.ph3{padding-left:3rem!important;padding-right:3rem!important}@media screen and (min-width:30rem){.sm-ph3{padding-left:3rem!important;padding-right:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ph3{padding-left:3rem!important;padding-right:3rem!important}}@media screen and (min-width:60rem){.md-ph3{padding-left:3rem!important;padding-right:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ph3{padding-left:3rem!important;padding-right:3rem!important}}@media screen and (min-width:90rem){.lg-ph3{padding-left:3rem!important;padding-right:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ph3{padding-left:3rem!important;padding-right:3rem!important}}@media screen and (min-width:144rem){.only-xlg-ph3,.xlg-ph3{padding-left:3rem!important;padding-right:3rem!important}}.pa4{padding:4rem!important}@media screen and (min-width:30rem){.sm-pa4{padding:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pa4{padding:4rem!important}}@media screen and (min-width:60rem){.md-pa4{padding:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pa4{padding:4rem!important}}@media screen and (min-width:90rem){.lg-pa4{padding:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pa4{padding:4rem!important}}@media screen and (min-width:144rem){.only-xlg-pa4,.xlg-pa4{padding:4rem!important}}.pt4{padding-top:4rem!important}@media screen and (min-width:30rem){.sm-pt4{padding-top:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pt4{padding-top:4rem!important}}@media screen and (min-width:60rem){.md-pt4{padding-top:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pt4{padding-top:4rem!important}}@media screen and (min-width:90rem){.lg-pt4{padding-top:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pt4{padding-top:4rem!important}}@media screen and (min-width:144rem){.only-xlg-pt4,.xlg-pt4{padding-top:4rem!important}}.pr4{padding-right:4rem!important}@media screen and (min-width:30rem){.sm-pr4{padding-right:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pr4{padding-right:4rem!important}}@media screen and (min-width:60rem){.md-pr4{padding-right:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pr4{padding-right:4rem!important}}@media screen and (min-width:90rem){.lg-pr4{padding-right:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pr4{padding-right:4rem!important}}@media screen and (min-width:144rem){.only-xlg-pr4,.xlg-pr4{padding-right:4rem!important}}.pb4{padding-bottom:4rem!important}@media screen and (min-width:30rem){.sm-pb4{padding-bottom:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pb4{padding-bottom:4rem!important}}@media screen and (min-width:60rem){.md-pb4{padding-bottom:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pb4{padding-bottom:4rem!important}}@media screen and (min-width:90rem){.lg-pb4{padding-bottom:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pb4{padding-bottom:4rem!important}}@media screen and (min-width:144rem){.only-xlg-pb4,.xlg-pb4{padding-bottom:4rem!important}}.pl4{padding-left:4rem!important}@media screen and (min-width:30rem){.sm-pl4{padding-left:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pl4{padding-left:4rem!important}}@media screen and (min-width:60rem){.md-pl4{padding-left:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pl4{padding-left:4rem!important}}@media screen and (min-width:90rem){.lg-pl4{padding-left:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pl4{padding-left:4rem!important}}@media screen and (min-width:144rem){.only-xlg-pl4,.xlg-pl4{padding-left:4rem!important}}.pv4{padding-top:4rem!important;padding-bottom:4rem!important}@media screen and (min-width:30rem){.sm-pv4{padding-top:4rem!important;padding-bottom:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pv4{padding-top:4rem!important;padding-bottom:4rem!important}}@media screen and (min-width:60rem){.md-pv4{padding-top:4rem!important;padding-bottom:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pv4{padding-top:4rem!important;padding-bottom:4rem!important}}@media screen and (min-width:90rem){.lg-pv4{padding-top:4rem!important;padding-bottom:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pv4{padding-top:4rem!important;padding-bottom:4rem!important}}@media screen and (min-width:144rem){.only-xlg-pv4,.xlg-pv4{padding-top:4rem!important;padding-bottom:4rem!important}}.ph4{padding-left:4rem!important;padding-right:4rem!important}@media screen and (min-width:30rem){.sm-ph4{padding-left:4rem!important;padding-right:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ph4{padding-left:4rem!important;padding-right:4rem!important}}@media screen and (min-width:60rem){.md-ph4{padding-left:4rem!important;padding-right:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ph4{padding-left:4rem!important;padding-right:4rem!important}}@media screen and (min-width:90rem){.lg-ph4{padding-left:4rem!important;padding-right:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ph4{padding-left:4rem!important;padding-right:4rem!important}}@media screen and (min-width:144rem){.only-xlg-ph4,.xlg-ph4{padding-left:4rem!important;padding-right:4rem!important}}.pa5{padding:5rem!important}@media screen and (min-width:30rem){.sm-pa5{padding:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pa5{padding:5rem!important}}@media screen and (min-width:60rem){.md-pa5{padding:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pa5{padding:5rem!important}}@media screen and (min-width:90rem){.lg-pa5{padding:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pa5{padding:5rem!important}}@media screen and (min-width:144rem){.only-xlg-pa5,.xlg-pa5{padding:5rem!important}}.pt5{padding-top:5rem!important}@media screen and (min-width:30rem){.sm-pt5{padding-top:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pt5{padding-top:5rem!important}}@media screen and (min-width:60rem){.md-pt5{padding-top:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pt5{padding-top:5rem!important}}@media screen and (min-width:90rem){.lg-pt5{padding-top:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pt5{padding-top:5rem!important}}@media screen and (min-width:144rem){.only-xlg-pt5,.xlg-pt5{padding-top:5rem!important}}.pr5{padding-right:5rem!important}@media screen and (min-width:30rem){.sm-pr5{padding-right:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pr5{padding-right:5rem!important}}@media screen and (min-width:60rem){.md-pr5{padding-right:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pr5{padding-right:5rem!important}}@media screen and (min-width:90rem){.lg-pr5{padding-right:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pr5{padding-right:5rem!important}}@media screen and (min-width:144rem){.only-xlg-pr5,.xlg-pr5{padding-right:5rem!important}}.pb5{padding-bottom:5rem!important}@media screen and (min-width:30rem){.sm-pb5{padding-bottom:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pb5{padding-bottom:5rem!important}}@media screen and (min-width:60rem){.md-pb5{padding-bottom:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pb5{padding-bottom:5rem!important}}@media screen and (min-width:90rem){.lg-pb5{padding-bottom:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pb5{padding-bottom:5rem!important}}@media screen and (min-width:144rem){.only-xlg-pb5,.xlg-pb5{padding-bottom:5rem!important}}.pl5{padding-left:5rem!important}@media screen and (min-width:30rem){.sm-pl5{padding-left:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pl5{padding-left:5rem!important}}@media screen and (min-width:60rem){.md-pl5{padding-left:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pl5{padding-left:5rem!important}}@media screen and (min-width:90rem){.lg-pl5{padding-left:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pl5{padding-left:5rem!important}}@media screen and (min-width:144rem){.only-xlg-pl5,.xlg-pl5{padding-left:5rem!important}}.pv5{padding-top:5rem!important;padding-bottom:5rem!important}@media screen and (min-width:30rem){.sm-pv5{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pv5{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width:60rem){.md-pv5{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pv5{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width:90rem){.lg-pv5{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pv5{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width:144rem){.only-xlg-pv5,.xlg-pv5{padding-top:5rem!important;padding-bottom:5rem!important}}.ph5{padding-left:5rem!important;padding-right:5rem!important}@media screen and (min-width:30rem){.sm-ph5{padding-left:5rem!important;padding-right:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ph5{padding-left:5rem!important;padding-right:5rem!important}}@media screen and (min-width:60rem){.md-ph5{padding-left:5rem!important;padding-right:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ph5{padding-left:5rem!important;padding-right:5rem!important}}@media screen and (min-width:90rem){.lg-ph5{padding-left:5rem!important;padding-right:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ph5{padding-left:5rem!important;padding-right:5rem!important}}@media screen and (min-width:144rem){.only-xlg-ph5,.xlg-ph5{padding-left:5rem!important;padding-right:5rem!important}}.pa6{padding:6rem!important}@media screen and (min-width:30rem){.sm-pa6{padding:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pa6{padding:6rem!important}}@media screen and (min-width:60rem){.md-pa6{padding:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pa6{padding:6rem!important}}@media screen and (min-width:90rem){.lg-pa6{padding:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pa6{padding:6rem!important}}@media screen and (min-width:144rem){.only-xlg-pa6,.xlg-pa6{padding:6rem!important}}.pt6{padding-top:6rem!important}@media screen and (min-width:30rem){.sm-pt6{padding-top:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pt6{padding-top:6rem!important}}@media screen and (min-width:60rem){.md-pt6{padding-top:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pt6{padding-top:6rem!important}}@media screen and (min-width:90rem){.lg-pt6{padding-top:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pt6{padding-top:6rem!important}}@media screen and (min-width:144rem){.only-xlg-pt6,.xlg-pt6{padding-top:6rem!important}}.pr6{padding-right:6rem!important}@media screen and (min-width:30rem){.sm-pr6{padding-right:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pr6{padding-right:6rem!important}}@media screen and (min-width:60rem){.md-pr6{padding-right:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pr6{padding-right:6rem!important}}@media screen and (min-width:90rem){.lg-pr6{padding-right:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pr6{padding-right:6rem!important}}@media screen and (min-width:144rem){.only-xlg-pr6,.xlg-pr6{padding-right:6rem!important}}.pb6{padding-bottom:6rem!important}@media screen and (min-width:30rem){.sm-pb6{padding-bottom:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pb6{padding-bottom:6rem!important}}@media screen and (min-width:60rem){.md-pb6{padding-bottom:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pb6{padding-bottom:6rem!important}}@media screen and (min-width:90rem){.lg-pb6{padding-bottom:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pb6{padding-bottom:6rem!important}}@media screen and (min-width:144rem){.only-xlg-pb6,.xlg-pb6{padding-bottom:6rem!important}}.pl6{padding-left:6rem!important}@media screen and (min-width:30rem){.sm-pl6{padding-left:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pl6{padding-left:6rem!important}}@media screen and (min-width:60rem){.md-pl6{padding-left:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pl6{padding-left:6rem!important}}@media screen and (min-width:90rem){.lg-pl6{padding-left:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pl6{padding-left:6rem!important}}@media screen and (min-width:144rem){.only-xlg-pl6,.xlg-pl6{padding-left:6rem!important}}.pv6{padding-top:6rem!important;padding-bottom:6rem!important}@media screen and (min-width:30rem){.sm-pv6{padding-top:6rem!important;padding-bottom:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pv6{padding-top:6rem!important;padding-bottom:6rem!important}}@media screen and (min-width:60rem){.md-pv6{padding-top:6rem!important;padding-bottom:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pv6{padding-top:6rem!important;padding-bottom:6rem!important}}@media screen and (min-width:90rem){.lg-pv6{padding-top:6rem!important;padding-bottom:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pv6{padding-top:6rem!important;padding-bottom:6rem!important}}@media screen and (min-width:144rem){.only-xlg-pv6,.xlg-pv6{padding-top:6rem!important;padding-bottom:6rem!important}}.ph6{padding-left:6rem!important;padding-right:6rem!important}@media screen and (min-width:30rem){.sm-ph6{padding-left:6rem!important;padding-right:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ph6{padding-left:6rem!important;padding-right:6rem!important}}@media screen and (min-width:60rem){.md-ph6{padding-left:6rem!important;padding-right:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ph6{padding-left:6rem!important;padding-right:6rem!important}}@media screen and (min-width:90rem){.lg-ph6{padding-left:6rem!important;padding-right:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ph6{padding-left:6rem!important;padding-right:6rem!important}}@media screen and (min-width:144rem){.only-xlg-ph6,.xlg-ph6{padding-left:6rem!important;padding-right:6rem!important}}.pa7{padding:7rem!important}@media screen and (min-width:30rem){.sm-pa7{padding:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pa7{padding:7rem!important}}@media screen and (min-width:60rem){.md-pa7{padding:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pa7{padding:7rem!important}}@media screen and (min-width:90rem){.lg-pa7{padding:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pa7{padding:7rem!important}}@media screen and (min-width:144rem){.only-xlg-pa7,.xlg-pa7{padding:7rem!important}}.pt7{padding-top:7rem!important}@media screen and (min-width:30rem){.sm-pt7{padding-top:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pt7{padding-top:7rem!important}}@media screen and (min-width:60rem){.md-pt7{padding-top:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pt7{padding-top:7rem!important}}@media screen and (min-width:90rem){.lg-pt7{padding-top:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pt7{padding-top:7rem!important}}@media screen and (min-width:144rem){.only-xlg-pt7,.xlg-pt7{padding-top:7rem!important}}.pr7{padding-right:7rem!important}@media screen and (min-width:30rem){.sm-pr7{padding-right:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pr7{padding-right:7rem!important}}@media screen and (min-width:60rem){.md-pr7{padding-right:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pr7{padding-right:7rem!important}}@media screen and (min-width:90rem){.lg-pr7{padding-right:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pr7{padding-right:7rem!important}}@media screen and (min-width:144rem){.only-xlg-pr7,.xlg-pr7{padding-right:7rem!important}}.pb7{padding-bottom:7rem!important}@media screen and (min-width:30rem){.sm-pb7{padding-bottom:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pb7{padding-bottom:7rem!important}}@media screen and (min-width:60rem){.md-pb7{padding-bottom:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pb7{padding-bottom:7rem!important}}@media screen and (min-width:90rem){.lg-pb7{padding-bottom:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pb7{padding-bottom:7rem!important}}@media screen and (min-width:144rem){.only-xlg-pb7,.xlg-pb7{padding-bottom:7rem!important}}.pl7{padding-left:7rem!important}@media screen and (min-width:30rem){.sm-pl7{padding-left:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pl7{padding-left:7rem!important}}@media screen and (min-width:60rem){.md-pl7{padding-left:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pl7{padding-left:7rem!important}}@media screen and (min-width:90rem){.lg-pl7{padding-left:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pl7{padding-left:7rem!important}}@media screen and (min-width:144rem){.only-xlg-pl7,.xlg-pl7{padding-left:7rem!important}}.pv7{padding-top:7rem!important;padding-bottom:7rem!important}@media screen and (min-width:30rem){.sm-pv7{padding-top:7rem!important;padding-bottom:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pv7{padding-top:7rem!important;padding-bottom:7rem!important}}@media screen and (min-width:60rem){.md-pv7{padding-top:7rem!important;padding-bottom:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pv7{padding-top:7rem!important;padding-bottom:7rem!important}}@media screen and (min-width:90rem){.lg-pv7{padding-top:7rem!important;padding-bottom:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pv7{padding-top:7rem!important;padding-bottom:7rem!important}}@media screen and (min-width:144rem){.only-xlg-pv7,.xlg-pv7{padding-top:7rem!important;padding-bottom:7rem!important}}.ph7{padding-left:7rem!important;padding-right:7rem!important}@media screen and (min-width:30rem){.sm-ph7{padding-left:7rem!important;padding-right:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ph7{padding-left:7rem!important;padding-right:7rem!important}}@media screen and (min-width:60rem){.md-ph7{padding-left:7rem!important;padding-right:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ph7{padding-left:7rem!important;padding-right:7rem!important}}@media screen and (min-width:90rem){.lg-ph7{padding-left:7rem!important;padding-right:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ph7{padding-left:7rem!important;padding-right:7rem!important}}@media screen and (min-width:144rem){.only-xlg-ph7,.xlg-ph7{padding-left:7rem!important;padding-right:7rem!important}}.pa8{padding:8rem!important}@media screen and (min-width:30rem){.sm-pa8{padding:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pa8{padding:8rem!important}}@media screen and (min-width:60rem){.md-pa8{padding:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pa8{padding:8rem!important}}@media screen and (min-width:90rem){.lg-pa8{padding:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pa8{padding:8rem!important}}@media screen and (min-width:144rem){.only-xlg-pa8,.xlg-pa8{padding:8rem!important}}.pt8{padding-top:8rem!important}@media screen and (min-width:30rem){.sm-pt8{padding-top:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pt8{padding-top:8rem!important}}@media screen and (min-width:60rem){.md-pt8{padding-top:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pt8{padding-top:8rem!important}}@media screen and (min-width:90rem){.lg-pt8{padding-top:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pt8{padding-top:8rem!important}}@media screen and (min-width:144rem){.only-xlg-pt8,.xlg-pt8{padding-top:8rem!important}}.pr8{padding-right:8rem!important}@media screen and (min-width:30rem){.sm-pr8{padding-right:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pr8{padding-right:8rem!important}}@media screen and (min-width:60rem){.md-pr8{padding-right:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pr8{padding-right:8rem!important}}@media screen and (min-width:90rem){.lg-pr8{padding-right:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pr8{padding-right:8rem!important}}@media screen and (min-width:144rem){.only-xlg-pr8,.xlg-pr8{padding-right:8rem!important}}.pb8{padding-bottom:8rem!important}@media screen and (min-width:30rem){.sm-pb8{padding-bottom:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pb8{padding-bottom:8rem!important}}@media screen and (min-width:60rem){.md-pb8{padding-bottom:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pb8{padding-bottom:8rem!important}}@media screen and (min-width:90rem){.lg-pb8{padding-bottom:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pb8{padding-bottom:8rem!important}}@media screen and (min-width:144rem){.only-xlg-pb8,.xlg-pb8{padding-bottom:8rem!important}}.pl8{padding-left:8rem!important}@media screen and (min-width:30rem){.sm-pl8{padding-left:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pl8{padding-left:8rem!important}}@media screen and (min-width:60rem){.md-pl8{padding-left:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pl8{padding-left:8rem!important}}@media screen and (min-width:90rem){.lg-pl8{padding-left:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pl8{padding-left:8rem!important}}@media screen and (min-width:144rem){.only-xlg-pl8,.xlg-pl8{padding-left:8rem!important}}.pv8{padding-top:8rem!important;padding-bottom:8rem!important}@media screen and (min-width:30rem){.sm-pv8{padding-top:8rem!important;padding-bottom:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pv8{padding-top:8rem!important;padding-bottom:8rem!important}}@media screen and (min-width:60rem){.md-pv8{padding-top:8rem!important;padding-bottom:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pv8{padding-top:8rem!important;padding-bottom:8rem!important}}@media screen and (min-width:90rem){.lg-pv8{padding-top:8rem!important;padding-bottom:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pv8{padding-top:8rem!important;padding-bottom:8rem!important}}@media screen and (min-width:144rem){.only-xlg-pv8,.xlg-pv8{padding-top:8rem!important;padding-bottom:8rem!important}}.ph8{padding-left:8rem!important;padding-right:8rem!important}@media screen and (min-width:30rem){.sm-ph8{padding-left:8rem!important;padding-right:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ph8{padding-left:8rem!important;padding-right:8rem!important}}@media screen and (min-width:60rem){.md-ph8{padding-left:8rem!important;padding-right:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ph8{padding-left:8rem!important;padding-right:8rem!important}}@media screen and (min-width:90rem){.lg-ph8{padding-left:8rem!important;padding-right:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ph8{padding-left:8rem!important;padding-right:8rem!important}}@media screen and (min-width:144rem){.only-xlg-ph8,.xlg-ph8{padding-left:8rem!important;padding-right:8rem!important}}.pa9{padding:9rem!important}@media screen and (min-width:30rem){.sm-pa9{padding:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pa9{padding:9rem!important}}@media screen and (min-width:60rem){.md-pa9{padding:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pa9{padding:9rem!important}}@media screen and (min-width:90rem){.lg-pa9{padding:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pa9{padding:9rem!important}}@media screen and (min-width:144rem){.only-xlg-pa9,.xlg-pa9{padding:9rem!important}}.pt9{padding-top:9rem!important}@media screen and (min-width:30rem){.sm-pt9{padding-top:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pt9{padding-top:9rem!important}}@media screen and (min-width:60rem){.md-pt9{padding-top:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pt9{padding-top:9rem!important}}@media screen and (min-width:90rem){.lg-pt9{padding-top:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pt9{padding-top:9rem!important}}@media screen and (min-width:144rem){.only-xlg-pt9,.xlg-pt9{padding-top:9rem!important}}.pr9{padding-right:9rem!important}@media screen and (min-width:30rem){.sm-pr9{padding-right:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pr9{padding-right:9rem!important}}@media screen and (min-width:60rem){.md-pr9{padding-right:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pr9{padding-right:9rem!important}}@media screen and (min-width:90rem){.lg-pr9{padding-right:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pr9{padding-right:9rem!important}}@media screen and (min-width:144rem){.only-xlg-pr9,.xlg-pr9{padding-right:9rem!important}}.pb9{padding-bottom:9rem!important}@media screen and (min-width:30rem){.sm-pb9{padding-bottom:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pb9{padding-bottom:9rem!important}}@media screen and (min-width:60rem){.md-pb9{padding-bottom:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pb9{padding-bottom:9rem!important}}@media screen and (min-width:90rem){.lg-pb9{padding-bottom:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pb9{padding-bottom:9rem!important}}@media screen and (min-width:144rem){.only-xlg-pb9,.xlg-pb9{padding-bottom:9rem!important}}.pl9{padding-left:9rem!important}@media screen and (min-width:30rem){.sm-pl9{padding-left:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pl9{padding-left:9rem!important}}@media screen and (min-width:60rem){.md-pl9{padding-left:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pl9{padding-left:9rem!important}}@media screen and (min-width:90rem){.lg-pl9{padding-left:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pl9{padding-left:9rem!important}}@media screen and (min-width:144rem){.only-xlg-pl9,.xlg-pl9{padding-left:9rem!important}}.pv9{padding-top:9rem!important;padding-bottom:9rem!important}@media screen and (min-width:30rem){.sm-pv9{padding-top:9rem!important;padding-bottom:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pv9{padding-top:9rem!important;padding-bottom:9rem!important}}@media screen and (min-width:60rem){.md-pv9{padding-top:9rem!important;padding-bottom:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pv9{padding-top:9rem!important;padding-bottom:9rem!important}}@media screen and (min-width:90rem){.lg-pv9{padding-top:9rem!important;padding-bottom:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pv9{padding-top:9rem!important;padding-bottom:9rem!important}}@media screen and (min-width:144rem){.only-xlg-pv9,.xlg-pv9{padding-top:9rem!important;padding-bottom:9rem!important}}.ph9{padding-left:9rem!important;padding-right:9rem!important}@media screen and (min-width:30rem){.sm-ph9{padding-left:9rem!important;padding-right:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ph9{padding-left:9rem!important;padding-right:9rem!important}}@media screen and (min-width:60rem){.md-ph9{padding-left:9rem!important;padding-right:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ph9{padding-left:9rem!important;padding-right:9rem!important}}@media screen and (min-width:90rem){.lg-ph9{padding-left:9rem!important;padding-right:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ph9{padding-left:9rem!important;padding-right:9rem!important}}@media screen and (min-width:144rem){.only-xlg-ph9,.xlg-ph9{padding-left:9rem!important;padding-right:9rem!important}}.pa10{padding:10rem!important}@media screen and (min-width:30rem){.sm-pa10{padding:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pa10{padding:10rem!important}}@media screen and (min-width:60rem){.md-pa10{padding:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pa10{padding:10rem!important}}@media screen and (min-width:90rem){.lg-pa10{padding:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pa10{padding:10rem!important}}@media screen and (min-width:144rem){.only-xlg-pa10,.xlg-pa10{padding:10rem!important}}.pt10{padding-top:10rem!important}@media screen and (min-width:30rem){.sm-pt10{padding-top:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pt10{padding-top:10rem!important}}@media screen and (min-width:60rem){.md-pt10{padding-top:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pt10{padding-top:10rem!important}}@media screen and (min-width:90rem){.lg-pt10{padding-top:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pt10{padding-top:10rem!important}}@media screen and (min-width:144rem){.only-xlg-pt10,.xlg-pt10{padding-top:10rem!important}}.pr10{padding-right:10rem!important}@media screen and (min-width:30rem){.sm-pr10{padding-right:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pr10{padding-right:10rem!important}}@media screen and (min-width:60rem){.md-pr10{padding-right:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pr10{padding-right:10rem!important}}@media screen and (min-width:90rem){.lg-pr10{padding-right:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pr10{padding-right:10rem!important}}@media screen and (min-width:144rem){.only-xlg-pr10,.xlg-pr10{padding-right:10rem!important}}.pb10{padding-bottom:10rem!important}@media screen and (min-width:30rem){.sm-pb10{padding-bottom:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pb10{padding-bottom:10rem!important}}@media screen and (min-width:60rem){.md-pb10{padding-bottom:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pb10{padding-bottom:10rem!important}}@media screen and (min-width:90rem){.lg-pb10{padding-bottom:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pb10{padding-bottom:10rem!important}}@media screen and (min-width:144rem){.only-xlg-pb10,.xlg-pb10{padding-bottom:10rem!important}}.pl10{padding-left:10rem!important}@media screen and (min-width:30rem){.sm-pl10{padding-left:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pl10{padding-left:10rem!important}}@media screen and (min-width:60rem){.md-pl10{padding-left:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pl10{padding-left:10rem!important}}@media screen and (min-width:90rem){.lg-pl10{padding-left:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pl10{padding-left:10rem!important}}@media screen and (min-width:144rem){.only-xlg-pl10,.xlg-pl10{padding-left:10rem!important}}.pv10{padding-top:10rem!important;padding-bottom:10rem!important}@media screen and (min-width:30rem){.sm-pv10{padding-top:10rem!important;padding-bottom:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pv10{padding-top:10rem!important;padding-bottom:10rem!important}}@media screen and (min-width:60rem){.md-pv10{padding-top:10rem!important;padding-bottom:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pv10{padding-top:10rem!important;padding-bottom:10rem!important}}@media screen and (min-width:90rem){.lg-pv10{padding-top:10rem!important;padding-bottom:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pv10{padding-top:10rem!important;padding-bottom:10rem!important}}@media screen and (min-width:144rem){.only-xlg-pv10,.xlg-pv10{padding-top:10rem!important;padding-bottom:10rem!important}}.ph10{padding-left:10rem!important;padding-right:10rem!important}@media screen and (min-width:30rem){.sm-ph10{padding-left:10rem!important;padding-right:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ph10{padding-left:10rem!important;padding-right:10rem!important}}@media screen and (min-width:60rem){.md-ph10{padding-left:10rem!important;padding-right:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ph10{padding-left:10rem!important;padding-right:10rem!important}}@media screen and (min-width:90rem){.lg-ph10{padding-left:10rem!important;padding-right:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ph10{padding-left:10rem!important;padding-right:10rem!important}}@media screen and (min-width:144rem){.only-xlg-ph10,.xlg-ph10{padding-left:10rem!important;padding-right:10rem!important}}.pa0{padding:0!important}@media screen and (min-width:30rem){.sm-pa0{padding:0!important}}@media screen and (max-width:59.99999rem){.only-sm-pa0{padding:0!important}}@media screen and (min-width:60rem){.md-pa0{padding:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pa0{padding:0!important}}@media screen and (min-width:90rem){.lg-pa0{padding:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pa0{padding:0!important}}@media screen and (min-width:144rem){.only-xlg-pa0,.xlg-pa0{padding:0!important}}.pt0{padding-top:0!important}@media screen and (min-width:30rem){.sm-pt0{padding-top:0!important}}@media screen and (max-width:59.99999rem){.only-sm-pt0{padding-top:0!important}}@media screen and (min-width:60rem){.md-pt0{padding-top:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pt0{padding-top:0!important}}@media screen and (min-width:90rem){.lg-pt0{padding-top:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pt0{padding-top:0!important}}@media screen and (min-width:144rem){.only-xlg-pt0,.xlg-pt0{padding-top:0!important}}.pr0{padding-right:0!important}@media screen and (min-width:30rem){.sm-pr0{padding-right:0!important}}@media screen and (max-width:59.99999rem){.only-sm-pr0{padding-right:0!important}}@media screen and (min-width:60rem){.md-pr0{padding-right:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pr0{padding-right:0!important}}@media screen and (min-width:90rem){.lg-pr0{padding-right:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pr0{padding-right:0!important}}@media screen and (min-width:144rem){.only-xlg-pr0,.xlg-pr0{padding-right:0!important}}.pb0{padding-bottom:0!important}@media screen and (min-width:30rem){.sm-pb0{padding-bottom:0!important}}@media screen and (max-width:59.99999rem){.only-sm-pb0{padding-bottom:0!important}}@media screen and (min-width:60rem){.md-pb0{padding-bottom:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pb0{padding-bottom:0!important}}@media screen and (min-width:90rem){.lg-pb0{padding-bottom:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pb0{padding-bottom:0!important}}@media screen and (min-width:144rem){.only-xlg-pb0,.xlg-pb0{padding-bottom:0!important}}.pl0{padding-left:0!important}@media screen and (min-width:30rem){.sm-pl0{padding-left:0!important}}@media screen and (max-width:59.99999rem){.only-sm-pl0{padding-left:0!important}}@media screen and (min-width:60rem){.md-pl0{padding-left:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pl0{padding-left:0!important}}@media screen and (min-width:90rem){.lg-pl0{padding-left:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pl0{padding-left:0!important}}@media screen and (min-width:144rem){.only-xlg-pl0,.xlg-pl0{padding-left:0!important}}.pv0{padding-top:0!important;padding-bottom:0!important}@media screen and (min-width:30rem){.sm-pv0{padding-top:0!important;padding-bottom:0!important}}@media screen and (max-width:59.99999rem){.only-sm-pv0{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:60rem){.md-pv0{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pv0{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:90rem){.lg-pv0{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pv0{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:144rem){.only-xlg-pv0,.xlg-pv0{padding-top:0!important;padding-bottom:0!important}}.ph0{padding-left:0!important;padding-right:0!important}@media screen and (min-width:30rem){.sm-ph0{padding-left:0!important;padding-right:0!important}}@media screen and (max-width:59.99999rem){.only-sm-ph0{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:60rem){.md-ph0{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ph0{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:90rem){.lg-ph0{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ph0{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:144rem){.only-xlg-ph0,.xlg-ph0{padding-left:0!important;padding-right:0!important}}.ma1{margin:1rem!important}@media screen and (min-width:30rem){.sm-ma1{margin:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ma1{margin:1rem!important}}@media screen and (min-width:60rem){.md-ma1{margin:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ma1{margin:1rem!important}}@media screen and (min-width:90rem){.lg-ma1{margin:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ma1{margin:1rem!important}}@media screen and (min-width:144rem){.only-xlg-ma1,.xlg-ma1{margin:1rem!important}}.mt1{margin-top:1rem!important}@media screen and (min-width:30rem){.sm-mt1{margin-top:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mt1{margin-top:1rem!important}}@media screen and (min-width:60rem){.md-mt1{margin-top:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mt1{margin-top:1rem!important}}@media screen and (min-width:90rem){.lg-mt1{margin-top:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mt1{margin-top:1rem!important}}@media screen and (min-width:144rem){.only-xlg-mt1,.xlg-mt1{margin-top:1rem!important}}.mr1{margin-right:1rem!important}@media screen and (min-width:30rem){.sm-mr1{margin-right:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mr1{margin-right:1rem!important}}@media screen and (min-width:60rem){.md-mr1{margin-right:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mr1{margin-right:1rem!important}}@media screen and (min-width:90rem){.lg-mr1{margin-right:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mr1{margin-right:1rem!important}}@media screen and (min-width:144rem){.only-xlg-mr1,.xlg-mr1{margin-right:1rem!important}}.mb1{margin-bottom:1rem!important}@media screen and (min-width:30rem){.sm-mb1{margin-bottom:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mb1{margin-bottom:1rem!important}}@media screen and (min-width:60rem){.md-mb1{margin-bottom:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mb1{margin-bottom:1rem!important}}@media screen and (min-width:90rem){.lg-mb1{margin-bottom:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mb1{margin-bottom:1rem!important}}@media screen and (min-width:144rem){.only-xlg-mb1,.xlg-mb1{margin-bottom:1rem!important}}.ml1{margin-left:1rem!important}@media screen and (min-width:30rem){.sm-ml1{margin-left:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ml1{margin-left:1rem!important}}@media screen and (min-width:60rem){.md-ml1{margin-left:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ml1{margin-left:1rem!important}}@media screen and (min-width:90rem){.lg-ml1{margin-left:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ml1{margin-left:1rem!important}}@media screen and (min-width:144rem){.only-xlg-ml1,.xlg-ml1{margin-left:1rem!important}}.mv1{margin-top:1rem!important;margin-bottom:1rem!important}@media screen and (min-width:30rem){.sm-mv1{margin-top:1rem!important;margin-bottom:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mv1{margin-top:1rem!important;margin-bottom:1rem!important}}@media screen and (min-width:60rem){.md-mv1{margin-top:1rem!important;margin-bottom:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mv1{margin-top:1rem!important;margin-bottom:1rem!important}}@media screen and (min-width:90rem){.lg-mv1{margin-top:1rem!important;margin-bottom:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mv1{margin-top:1rem!important;margin-bottom:1rem!important}}@media screen and (min-width:144rem){.only-xlg-mv1,.xlg-mv1{margin-top:1rem!important;margin-bottom:1rem!important}}.mh1{margin-left:1rem!important;margin-right:1rem!important}@media screen and (min-width:30rem){.sm-mh1{margin-left:1rem!important;margin-right:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mh1{margin-left:1rem!important;margin-right:1rem!important}}@media screen and (min-width:60rem){.md-mh1{margin-left:1rem!important;margin-right:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mh1{margin-left:1rem!important;margin-right:1rem!important}}@media screen and (min-width:90rem){.lg-mh1{margin-left:1rem!important;margin-right:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mh1{margin-left:1rem!important;margin-right:1rem!important}}@media screen and (min-width:144rem){.only-xlg-mh1,.xlg-mh1{margin-left:1rem!important;margin-right:1rem!important}}.ma2{margin:2rem!important}@media screen and (min-width:30rem){.sm-ma2{margin:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ma2{margin:2rem!important}}@media screen and (min-width:60rem){.md-ma2{margin:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ma2{margin:2rem!important}}@media screen and (min-width:90rem){.lg-ma2{margin:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ma2{margin:2rem!important}}@media screen and (min-width:144rem){.only-xlg-ma2,.xlg-ma2{margin:2rem!important}}.mt2{margin-top:2rem!important}@media screen and (min-width:30rem){.sm-mt2{margin-top:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mt2{margin-top:2rem!important}}@media screen and (min-width:60rem){.md-mt2{margin-top:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mt2{margin-top:2rem!important}}@media screen and (min-width:90rem){.lg-mt2{margin-top:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mt2{margin-top:2rem!important}}@media screen and (min-width:144rem){.only-xlg-mt2,.xlg-mt2{margin-top:2rem!important}}.mr2{margin-right:2rem!important}@media screen and (min-width:30rem){.sm-mr2{margin-right:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mr2{margin-right:2rem!important}}@media screen and (min-width:60rem){.md-mr2{margin-right:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mr2{margin-right:2rem!important}}@media screen and (min-width:90rem){.lg-mr2{margin-right:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mr2{margin-right:2rem!important}}@media screen and (min-width:144rem){.only-xlg-mr2,.xlg-mr2{margin-right:2rem!important}}.main-content>pre,.mb2{margin-bottom:2rem!important}@media screen and (min-width:30rem){.sm-mb2{margin-bottom:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mb2{margin-bottom:2rem!important}}@media screen and (min-width:60rem){.md-mb2{margin-bottom:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mb2{margin-bottom:2rem!important}}@media screen and (min-width:90rem){.lg-mb2{margin-bottom:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mb2{margin-bottom:2rem!important}}@media screen and (min-width:144rem){.only-xlg-mb2,.xlg-mb2{margin-bottom:2rem!important}}.ml2{margin-left:2rem!important}@media screen and (min-width:30rem){.sm-ml2{margin-left:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ml2{margin-left:2rem!important}}@media screen and (min-width:60rem){.md-ml2{margin-left:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ml2{margin-left:2rem!important}}@media screen and (min-width:90rem){.lg-ml2{margin-left:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ml2{margin-left:2rem!important}}@media screen and (min-width:144rem){.only-xlg-ml2,.xlg-ml2{margin-left:2rem!important}}.mv2{margin-top:2rem!important;margin-bottom:2rem!important}@media screen and (min-width:30rem){.sm-mv2{margin-top:2rem!important;margin-bottom:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mv2{margin-top:2rem!important;margin-bottom:2rem!important}}@media screen and (min-width:60rem){.md-mv2{margin-top:2rem!important;margin-bottom:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mv2{margin-top:2rem!important;margin-bottom:2rem!important}}@media screen and (min-width:90rem){.lg-mv2{margin-top:2rem!important;margin-bottom:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mv2{margin-top:2rem!important;margin-bottom:2rem!important}}@media screen and (min-width:144rem){.only-xlg-mv2,.xlg-mv2{margin-top:2rem!important;margin-bottom:2rem!important}}.mh2{margin-left:2rem!important;margin-right:2rem!important}@media screen and (min-width:30rem){.sm-mh2{margin-left:2rem!important;margin-right:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mh2{margin-left:2rem!important;margin-right:2rem!important}}@media screen and (min-width:60rem){.md-mh2{margin-left:2rem!important;margin-right:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mh2{margin-left:2rem!important;margin-right:2rem!important}}@media screen and (min-width:90rem){.lg-mh2{margin-left:2rem!important;margin-right:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mh2{margin-left:2rem!important;margin-right:2rem!important}}@media screen and (min-width:144rem){.only-xlg-mh2,.xlg-mh2{margin-left:2rem!important;margin-right:2rem!important}}.ma3{margin:3rem!important}@media screen and (min-width:30rem){.sm-ma3{margin:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ma3{margin:3rem!important}}@media screen and (min-width:60rem){.md-ma3{margin:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ma3{margin:3rem!important}}@media screen and (min-width:90rem){.lg-ma3{margin:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ma3{margin:3rem!important}}@media screen and (min-width:144rem){.only-xlg-ma3,.xlg-ma3{margin:3rem!important}}.mt3{margin-top:3rem!important}@media screen and (min-width:30rem){.sm-mt3{margin-top:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mt3{margin-top:3rem!important}}@media screen and (min-width:60rem){.md-mt3{margin-top:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mt3{margin-top:3rem!important}}@media screen and (min-width:90rem){.lg-mt3{margin-top:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mt3{margin-top:3rem!important}}@media screen and (min-width:144rem){.only-xlg-mt3,.xlg-mt3{margin-top:3rem!important}}.mr3{margin-right:3rem!important}@media screen and (min-width:30rem){.sm-mr3{margin-right:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mr3{margin-right:3rem!important}}@media screen and (min-width:60rem){.md-mr3{margin-right:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mr3{margin-right:3rem!important}}@media screen and (min-width:90rem){.lg-mr3{margin-right:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mr3{margin-right:3rem!important}}@media screen and (min-width:144rem){.only-xlg-mr3,.xlg-mr3{margin-right:3rem!important}}.mb3{margin-bottom:3rem!important}@media screen and (min-width:30rem){.sm-mb3{margin-bottom:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mb3{margin-bottom:3rem!important}}@media screen and (min-width:60rem){.md-mb3{margin-bottom:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mb3{margin-bottom:3rem!important}}@media screen and (min-width:90rem){.lg-mb3{margin-bottom:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mb3{margin-bottom:3rem!important}}@media screen and (min-width:144rem){.only-xlg-mb3,.xlg-mb3{margin-bottom:3rem!important}}.ml3{margin-left:3rem!important}@media screen and (min-width:30rem){.sm-ml3{margin-left:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ml3{margin-left:3rem!important}}@media screen and (min-width:60rem){.md-ml3{margin-left:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ml3{margin-left:3rem!important}}@media screen and (min-width:90rem){.lg-ml3{margin-left:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ml3{margin-left:3rem!important}}@media screen and (min-width:144rem){.only-xlg-ml3,.xlg-ml3{margin-left:3rem!important}}.mv3{margin-top:3rem!important;margin-bottom:3rem!important}@media screen and (min-width:30rem){.sm-mv3{margin-top:3rem!important;margin-bottom:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mv3{margin-top:3rem!important;margin-bottom:3rem!important}}@media screen and (min-width:60rem){.md-mv3{margin-top:3rem!important;margin-bottom:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mv3{margin-top:3rem!important;margin-bottom:3rem!important}}@media screen and (min-width:90rem){.lg-mv3{margin-top:3rem!important;margin-bottom:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mv3{margin-top:3rem!important;margin-bottom:3rem!important}}@media screen and (min-width:144rem){.only-xlg-mv3,.xlg-mv3{margin-top:3rem!important;margin-bottom:3rem!important}}.mh3{margin-left:3rem!important;margin-right:3rem!important}@media screen and (min-width:30rem){.sm-mh3{margin-left:3rem!important;margin-right:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mh3{margin-left:3rem!important;margin-right:3rem!important}}@media screen and (min-width:60rem){.md-mh3{margin-left:3rem!important;margin-right:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mh3{margin-left:3rem!important;margin-right:3rem!important}}@media screen and (min-width:90rem){.lg-mh3{margin-left:3rem!important;margin-right:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mh3{margin-left:3rem!important;margin-right:3rem!important}}@media screen and (min-width:144rem){.only-xlg-mh3,.xlg-mh3{margin-left:3rem!important;margin-right:3rem!important}}.ma4{margin:4rem!important}@media screen and (min-width:30rem){.sm-ma4{margin:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ma4{margin:4rem!important}}@media screen and (min-width:60rem){.md-ma4{margin:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ma4{margin:4rem!important}}@media screen and (min-width:90rem){.lg-ma4{margin:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ma4{margin:4rem!important}}@media screen and (min-width:144rem){.only-xlg-ma4,.xlg-ma4{margin:4rem!important}}.mt4{margin-top:4rem!important}@media screen and (min-width:30rem){.sm-mt4{margin-top:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mt4{margin-top:4rem!important}}@media screen and (min-width:60rem){.md-mt4{margin-top:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mt4{margin-top:4rem!important}}@media screen and (min-width:90rem){.lg-mt4{margin-top:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mt4{margin-top:4rem!important}}@media screen and (min-width:144rem){.only-xlg-mt4,.xlg-mt4{margin-top:4rem!important}}.mr4{margin-right:4rem!important}@media screen and (min-width:30rem){.sm-mr4{margin-right:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mr4{margin-right:4rem!important}}@media screen and (min-width:60rem){.md-mr4{margin-right:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mr4{margin-right:4rem!important}}@media screen and (min-width:90rem){.lg-mr4{margin-right:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mr4{margin-right:4rem!important}}@media screen and (min-width:144rem){.only-xlg-mr4,.xlg-mr4{margin-right:4rem!important}}.mb4{margin-bottom:4rem!important}@media screen and (min-width:30rem){.sm-mb4{margin-bottom:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mb4{margin-bottom:4rem!important}}@media screen and (min-width:60rem){.main-content>pre,.md-mb4{margin-bottom:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mb4{margin-bottom:4rem!important}}@media screen and (min-width:90rem){.lg-mb4{margin-bottom:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mb4{margin-bottom:4rem!important}}@media screen and (min-width:144rem){.only-xlg-mb4,.xlg-mb4{margin-bottom:4rem!important}}.ml4{margin-left:4rem!important}@media screen and (min-width:30rem){.sm-ml4{margin-left:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ml4{margin-left:4rem!important}}@media screen and (min-width:60rem){.md-ml4{margin-left:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ml4{margin-left:4rem!important}}@media screen and (min-width:90rem){.lg-ml4{margin-left:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ml4{margin-left:4rem!important}}@media screen and (min-width:144rem){.only-xlg-ml4,.xlg-ml4{margin-left:4rem!important}}.mv4{margin-top:4rem!important;margin-bottom:4rem!important}@media screen and (min-width:30rem){.sm-mv4{margin-top:4rem!important;margin-bottom:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mv4{margin-top:4rem!important;margin-bottom:4rem!important}}@media screen and (min-width:60rem){.md-mv4{margin-top:4rem!important;margin-bottom:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mv4{margin-top:4rem!important;margin-bottom:4rem!important}}@media screen and (min-width:90rem){.lg-mv4{margin-top:4rem!important;margin-bottom:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mv4{margin-top:4rem!important;margin-bottom:4rem!important}}@media screen and (min-width:144rem){.only-xlg-mv4,.xlg-mv4{margin-top:4rem!important;margin-bottom:4rem!important}}.mh4{margin-left:4rem!important;margin-right:4rem!important}@media screen and (min-width:30rem){.sm-mh4{margin-left:4rem!important;margin-right:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mh4{margin-left:4rem!important;margin-right:4rem!important}}@media screen and (min-width:60rem){.md-mh4{margin-left:4rem!important;margin-right:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mh4{margin-left:4rem!important;margin-right:4rem!important}}@media screen and (min-width:90rem){.lg-mh4{margin-left:4rem!important;margin-right:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mh4{margin-left:4rem!important;margin-right:4rem!important}}@media screen and (min-width:144rem){.only-xlg-mh4,.xlg-mh4{margin-left:4rem!important;margin-right:4rem!important}}.ma5{margin:5rem!important}@media screen and (min-width:30rem){.sm-ma5{margin:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ma5{margin:5rem!important}}@media screen and (min-width:60rem){.md-ma5{margin:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ma5{margin:5rem!important}}@media screen and (min-width:90rem){.lg-ma5{margin:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ma5{margin:5rem!important}}@media screen and (min-width:144rem){.only-xlg-ma5,.xlg-ma5{margin:5rem!important}}.mt5{margin-top:5rem!important}@media screen and (min-width:30rem){.sm-mt5{margin-top:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mt5{margin-top:5rem!important}}@media screen and (min-width:60rem){.md-mt5{margin-top:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mt5{margin-top:5rem!important}}@media screen and (min-width:90rem){.lg-mt5{margin-top:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mt5{margin-top:5rem!important}}@media screen and (min-width:144rem){.only-xlg-mt5,.xlg-mt5{margin-top:5rem!important}}.mr5{margin-right:5rem!important}@media screen and (min-width:30rem){.sm-mr5{margin-right:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mr5{margin-right:5rem!important}}@media screen and (min-width:60rem){.md-mr5{margin-right:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mr5{margin-right:5rem!important}}@media screen and (min-width:90rem){.lg-mr5{margin-right:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mr5{margin-right:5rem!important}}@media screen and (min-width:144rem){.only-xlg-mr5,.xlg-mr5{margin-right:5rem!important}}.mb5{margin-bottom:5rem!important}@media screen and (min-width:30rem){.sm-mb5{margin-bottom:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mb5{margin-bottom:5rem!important}}@media screen and (min-width:60rem){.md-mb5{margin-bottom:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mb5{margin-bottom:5rem!important}}@media screen and (min-width:90rem){.lg-mb5{margin-bottom:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mb5{margin-bottom:5rem!important}}@media screen and (min-width:144rem){.only-xlg-mb5,.xlg-mb5{margin-bottom:5rem!important}}.ml5{margin-left:5rem!important}@media screen and (min-width:30rem){.sm-ml5{margin-left:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ml5{margin-left:5rem!important}}@media screen and (min-width:60rem){.md-ml5{margin-left:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ml5{margin-left:5rem!important}}@media screen and (min-width:90rem){.lg-ml5{margin-left:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ml5{margin-left:5rem!important}}@media screen and (min-width:144rem){.only-xlg-ml5,.xlg-ml5{margin-left:5rem!important}}.mv5{margin-top:5rem!important;margin-bottom:5rem!important}@media screen and (min-width:30rem){.sm-mv5{margin-top:5rem!important;margin-bottom:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mv5{margin-top:5rem!important;margin-bottom:5rem!important}}@media screen and (min-width:60rem){.md-mv5{margin-top:5rem!important;margin-bottom:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mv5{margin-top:5rem!important;margin-bottom:5rem!important}}@media screen and (min-width:90rem){.lg-mv5{margin-top:5rem!important;margin-bottom:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mv5{margin-top:5rem!important;margin-bottom:5rem!important}}@media screen and (min-width:144rem){.only-xlg-mv5,.xlg-mv5{margin-top:5rem!important;margin-bottom:5rem!important}}.mh5{margin-left:5rem!important;margin-right:5rem!important}@media screen and (min-width:30rem){.sm-mh5{margin-left:5rem!important;margin-right:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mh5{margin-left:5rem!important;margin-right:5rem!important}}@media screen and (min-width:60rem){.md-mh5{margin-left:5rem!important;margin-right:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mh5{margin-left:5rem!important;margin-right:5rem!important}}@media screen and (min-width:90rem){.lg-mh5{margin-left:5rem!important;margin-right:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mh5{margin-left:5rem!important;margin-right:5rem!important}}@media screen and (min-width:144rem){.only-xlg-mh5,.xlg-mh5{margin-left:5rem!important;margin-right:5rem!important}}.ma6{margin:6rem!important}@media screen and (min-width:30rem){.sm-ma6{margin:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ma6{margin:6rem!important}}@media screen and (min-width:60rem){.md-ma6{margin:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ma6{margin:6rem!important}}@media screen and (min-width:90rem){.lg-ma6{margin:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ma6{margin:6rem!important}}@media screen and (min-width:144rem){.only-xlg-ma6,.xlg-ma6{margin:6rem!important}}.mt6{margin-top:6rem!important}@media screen and (min-width:30rem){.sm-mt6{margin-top:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mt6{margin-top:6rem!important}}@media screen and (min-width:60rem){.md-mt6{margin-top:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mt6{margin-top:6rem!important}}@media screen and (min-width:90rem){.lg-mt6{margin-top:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mt6{margin-top:6rem!important}}@media screen and (min-width:144rem){.only-xlg-mt6,.xlg-mt6{margin-top:6rem!important}}.mr6{margin-right:6rem!important}@media screen and (min-width:30rem){.sm-mr6{margin-right:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mr6{margin-right:6rem!important}}@media screen and (min-width:60rem){.md-mr6{margin-right:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mr6{margin-right:6rem!important}}@media screen and (min-width:90rem){.lg-mr6{margin-right:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mr6{margin-right:6rem!important}}@media screen and (min-width:144rem){.only-xlg-mr6,.xlg-mr6{margin-right:6rem!important}}.mb6{margin-bottom:6rem!important}@media screen and (min-width:30rem){.sm-mb6{margin-bottom:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mb6{margin-bottom:6rem!important}}@media screen and (min-width:60rem){.md-mb6{margin-bottom:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mb6{margin-bottom:6rem!important}}@media screen and (min-width:90rem){.lg-mb6{margin-bottom:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mb6{margin-bottom:6rem!important}}@media screen and (min-width:144rem){.only-xlg-mb6,.xlg-mb6{margin-bottom:6rem!important}}.ml6{margin-left:6rem!important}@media screen and (min-width:30rem){.sm-ml6{margin-left:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ml6{margin-left:6rem!important}}@media screen and (min-width:60rem){.md-ml6{margin-left:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ml6{margin-left:6rem!important}}@media screen and (min-width:90rem){.lg-ml6{margin-left:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ml6{margin-left:6rem!important}}@media screen and (min-width:144rem){.only-xlg-ml6,.xlg-ml6{margin-left:6rem!important}}.mv6{margin-top:6rem!important;margin-bottom:6rem!important}@media screen and (min-width:30rem){.sm-mv6{margin-top:6rem!important;margin-bottom:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mv6{margin-top:6rem!important;margin-bottom:6rem!important}}@media screen and (min-width:60rem){.md-mv6{margin-top:6rem!important;margin-bottom:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mv6{margin-top:6rem!important;margin-bottom:6rem!important}}@media screen and (min-width:90rem){.lg-mv6{margin-top:6rem!important;margin-bottom:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mv6{margin-top:6rem!important;margin-bottom:6rem!important}}@media screen and (min-width:144rem){.only-xlg-mv6,.xlg-mv6{margin-top:6rem!important;margin-bottom:6rem!important}}.mh6{margin-left:6rem!important;margin-right:6rem!important}@media screen and (min-width:30rem){.sm-mh6{margin-left:6rem!important;margin-right:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mh6{margin-left:6rem!important;margin-right:6rem!important}}@media screen and (min-width:60rem){.md-mh6{margin-left:6rem!important;margin-right:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mh6{margin-left:6rem!important;margin-right:6rem!important}}@media screen and (min-width:90rem){.lg-mh6{margin-left:6rem!important;margin-right:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mh6{margin-left:6rem!important;margin-right:6rem!important}}@media screen and (min-width:144rem){.only-xlg-mh6,.xlg-mh6{margin-left:6rem!important;margin-right:6rem!important}}.ma7{margin:7rem!important}@media screen and (min-width:30rem){.sm-ma7{margin:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ma7{margin:7rem!important}}@media screen and (min-width:60rem){.md-ma7{margin:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ma7{margin:7rem!important}}@media screen and (min-width:90rem){.lg-ma7{margin:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ma7{margin:7rem!important}}@media screen and (min-width:144rem){.only-xlg-ma7,.xlg-ma7{margin:7rem!important}}.mt7{margin-top:7rem!important}@media screen and (min-width:30rem){.sm-mt7{margin-top:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mt7{margin-top:7rem!important}}@media screen and (min-width:60rem){.md-mt7{margin-top:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mt7{margin-top:7rem!important}}@media screen and (min-width:90rem){.lg-mt7{margin-top:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mt7{margin-top:7rem!important}}@media screen and (min-width:144rem){.only-xlg-mt7,.xlg-mt7{margin-top:7rem!important}}.mr7{margin-right:7rem!important}@media screen and (min-width:30rem){.sm-mr7{margin-right:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mr7{margin-right:7rem!important}}@media screen and (min-width:60rem){.md-mr7{margin-right:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mr7{margin-right:7rem!important}}@media screen and (min-width:90rem){.lg-mr7{margin-right:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mr7{margin-right:7rem!important}}@media screen and (min-width:144rem){.only-xlg-mr7,.xlg-mr7{margin-right:7rem!important}}.mb7{margin-bottom:7rem!important}@media screen and (min-width:30rem){.sm-mb7{margin-bottom:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mb7{margin-bottom:7rem!important}}@media screen and (min-width:60rem){.md-mb7{margin-bottom:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mb7{margin-bottom:7rem!important}}@media screen and (min-width:90rem){.lg-mb7{margin-bottom:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mb7{margin-bottom:7rem!important}}@media screen and (min-width:144rem){.only-xlg-mb7,.xlg-mb7{margin-bottom:7rem!important}}.ml7{margin-left:7rem!important}@media screen and (min-width:30rem){.sm-ml7{margin-left:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ml7{margin-left:7rem!important}}@media screen and (min-width:60rem){.md-ml7{margin-left:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ml7{margin-left:7rem!important}}@media screen and (min-width:90rem){.lg-ml7{margin-left:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ml7{margin-left:7rem!important}}@media screen and (min-width:144rem){.only-xlg-ml7,.xlg-ml7{margin-left:7rem!important}}.mv7{margin-top:7rem!important;margin-bottom:7rem!important}@media screen and (min-width:30rem){.sm-mv7{margin-top:7rem!important;margin-bottom:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mv7{margin-top:7rem!important;margin-bottom:7rem!important}}@media screen and (min-width:60rem){.md-mv7{margin-top:7rem!important;margin-bottom:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mv7{margin-top:7rem!important;margin-bottom:7rem!important}}@media screen and (min-width:90rem){.lg-mv7{margin-top:7rem!important;margin-bottom:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mv7{margin-top:7rem!important;margin-bottom:7rem!important}}@media screen and (min-width:144rem){.only-xlg-mv7,.xlg-mv7{margin-top:7rem!important;margin-bottom:7rem!important}}.mh7{margin-left:7rem!important;margin-right:7rem!important}@media screen and (min-width:30rem){.sm-mh7{margin-left:7rem!important;margin-right:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mh7{margin-left:7rem!important;margin-right:7rem!important}}@media screen and (min-width:60rem){.md-mh7{margin-left:7rem!important;margin-right:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mh7{margin-left:7rem!important;margin-right:7rem!important}}@media screen and (min-width:90rem){.lg-mh7{margin-left:7rem!important;margin-right:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mh7{margin-left:7rem!important;margin-right:7rem!important}}@media screen and (min-width:144rem){.only-xlg-mh7,.xlg-mh7{margin-left:7rem!important;margin-right:7rem!important}}.ma8{margin:8rem!important}@media screen and (min-width:30rem){.sm-ma8{margin:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ma8{margin:8rem!important}}@media screen and (min-width:60rem){.md-ma8{margin:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ma8{margin:8rem!important}}@media screen and (min-width:90rem){.lg-ma8{margin:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ma8{margin:8rem!important}}@media screen and (min-width:144rem){.only-xlg-ma8,.xlg-ma8{margin:8rem!important}}.mt8{margin-top:8rem!important}@media screen and (min-width:30rem){.sm-mt8{margin-top:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mt8{margin-top:8rem!important}}@media screen and (min-width:60rem){.md-mt8{margin-top:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mt8{margin-top:8rem!important}}@media screen and (min-width:90rem){.lg-mt8{margin-top:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mt8{margin-top:8rem!important}}@media screen and (min-width:144rem){.only-xlg-mt8,.xlg-mt8{margin-top:8rem!important}}.mr8{margin-right:8rem!important}@media screen and (min-width:30rem){.sm-mr8{margin-right:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mr8{margin-right:8rem!important}}@media screen and (min-width:60rem){.md-mr8{margin-right:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mr8{margin-right:8rem!important}}@media screen and (min-width:90rem){.lg-mr8{margin-right:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mr8{margin-right:8rem!important}}@media screen and (min-width:144rem){.only-xlg-mr8,.xlg-mr8{margin-right:8rem!important}}.mb8{margin-bottom:8rem!important}@media screen and (min-width:30rem){.sm-mb8{margin-bottom:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mb8{margin-bottom:8rem!important}}@media screen and (min-width:60rem){.md-mb8{margin-bottom:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mb8{margin-bottom:8rem!important}}@media screen and (min-width:90rem){.lg-mb8{margin-bottom:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mb8{margin-bottom:8rem!important}}@media screen and (min-width:144rem){.only-xlg-mb8,.xlg-mb8{margin-bottom:8rem!important}}.ml8{margin-left:8rem!important}@media screen and (min-width:30rem){.sm-ml8{margin-left:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ml8{margin-left:8rem!important}}@media screen and (min-width:60rem){.md-ml8{margin-left:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ml8{margin-left:8rem!important}}@media screen and (min-width:90rem){.lg-ml8{margin-left:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ml8{margin-left:8rem!important}}@media screen and (min-width:144rem){.only-xlg-ml8,.xlg-ml8{margin-left:8rem!important}}.mv8{margin-top:8rem!important;margin-bottom:8rem!important}@media screen and (min-width:30rem){.sm-mv8{margin-top:8rem!important;margin-bottom:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mv8{margin-top:8rem!important;margin-bottom:8rem!important}}@media screen and (min-width:60rem){.md-mv8{margin-top:8rem!important;margin-bottom:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mv8{margin-top:8rem!important;margin-bottom:8rem!important}}@media screen and (min-width:90rem){.lg-mv8{margin-top:8rem!important;margin-bottom:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mv8{margin-top:8rem!important;margin-bottom:8rem!important}}@media screen and (min-width:144rem){.only-xlg-mv8,.xlg-mv8{margin-top:8rem!important;margin-bottom:8rem!important}}.mh8{margin-left:8rem!important;margin-right:8rem!important}@media screen and (min-width:30rem){.sm-mh8{margin-left:8rem!important;margin-right:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mh8{margin-left:8rem!important;margin-right:8rem!important}}@media screen and (min-width:60rem){.md-mh8{margin-left:8rem!important;margin-right:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mh8{margin-left:8rem!important;margin-right:8rem!important}}@media screen and (min-width:90rem){.lg-mh8{margin-left:8rem!important;margin-right:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mh8{margin-left:8rem!important;margin-right:8rem!important}}@media screen and (min-width:144rem){.only-xlg-mh8,.xlg-mh8{margin-left:8rem!important;margin-right:8rem!important}}.ma9{margin:9rem!important}@media screen and (min-width:30rem){.sm-ma9{margin:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ma9{margin:9rem!important}}@media screen and (min-width:60rem){.md-ma9{margin:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ma9{margin:9rem!important}}@media screen and (min-width:90rem){.lg-ma9{margin:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ma9{margin:9rem!important}}@media screen and (min-width:144rem){.only-xlg-ma9,.xlg-ma9{margin:9rem!important}}.mt9{margin-top:9rem!important}@media screen and (min-width:30rem){.sm-mt9{margin-top:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mt9{margin-top:9rem!important}}@media screen and (min-width:60rem){.md-mt9{margin-top:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mt9{margin-top:9rem!important}}@media screen and (min-width:90rem){.lg-mt9{margin-top:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mt9{margin-top:9rem!important}}@media screen and (min-width:144rem){.only-xlg-mt9,.xlg-mt9{margin-top:9rem!important}}.mr9{margin-right:9rem!important}@media screen and (min-width:30rem){.sm-mr9{margin-right:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mr9{margin-right:9rem!important}}@media screen and (min-width:60rem){.md-mr9{margin-right:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mr9{margin-right:9rem!important}}@media screen and (min-width:90rem){.lg-mr9{margin-right:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mr9{margin-right:9rem!important}}@media screen and (min-width:144rem){.only-xlg-mr9,.xlg-mr9{margin-right:9rem!important}}.mb9{margin-bottom:9rem!important}@media screen and (min-width:30rem){.sm-mb9{margin-bottom:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mb9{margin-bottom:9rem!important}}@media screen and (min-width:60rem){.md-mb9{margin-bottom:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mb9{margin-bottom:9rem!important}}@media screen and (min-width:90rem){.lg-mb9{margin-bottom:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mb9{margin-bottom:9rem!important}}@media screen and (min-width:144rem){.only-xlg-mb9,.xlg-mb9{margin-bottom:9rem!important}}.ml9{margin-left:9rem!important}@media screen and (min-width:30rem){.sm-ml9{margin-left:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ml9{margin-left:9rem!important}}@media screen and (min-width:60rem){.md-ml9{margin-left:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ml9{margin-left:9rem!important}}@media screen and (min-width:90rem){.lg-ml9{margin-left:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ml9{margin-left:9rem!important}}@media screen and (min-width:144rem){.only-xlg-ml9,.xlg-ml9{margin-left:9rem!important}}.mv9{margin-top:9rem!important;margin-bottom:9rem!important}@media screen and (min-width:30rem){.sm-mv9{margin-top:9rem!important;margin-bottom:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mv9{margin-top:9rem!important;margin-bottom:9rem!important}}@media screen and (min-width:60rem){.md-mv9{margin-top:9rem!important;margin-bottom:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mv9{margin-top:9rem!important;margin-bottom:9rem!important}}@media screen and (min-width:90rem){.lg-mv9{margin-top:9rem!important;margin-bottom:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mv9{margin-top:9rem!important;margin-bottom:9rem!important}}@media screen and (min-width:144rem){.only-xlg-mv9,.xlg-mv9{margin-top:9rem!important;margin-bottom:9rem!important}}.mh9{margin-left:9rem!important;margin-right:9rem!important}@media screen and (min-width:30rem){.sm-mh9{margin-left:9rem!important;margin-right:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mh9{margin-left:9rem!important;margin-right:9rem!important}}@media screen and (min-width:60rem){.md-mh9{margin-left:9rem!important;margin-right:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mh9{margin-left:9rem!important;margin-right:9rem!important}}@media screen and (min-width:90rem){.lg-mh9{margin-left:9rem!important;margin-right:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mh9{margin-left:9rem!important;margin-right:9rem!important}}@media screen and (min-width:144rem){.only-xlg-mh9,.xlg-mh9{margin-left:9rem!important;margin-right:9rem!important}}.ma10{margin:10rem!important}@media screen and (min-width:30rem){.sm-ma10{margin:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ma10{margin:10rem!important}}@media screen and (min-width:60rem){.md-ma10{margin:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ma10{margin:10rem!important}}@media screen and (min-width:90rem){.lg-ma10{margin:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ma10{margin:10rem!important}}@media screen and (min-width:144rem){.only-xlg-ma10,.xlg-ma10{margin:10rem!important}}.mt10{margin-top:10rem!important}@media screen and (min-width:30rem){.sm-mt10{margin-top:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mt10{margin-top:10rem!important}}@media screen and (min-width:60rem){.md-mt10{margin-top:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mt10{margin-top:10rem!important}}@media screen and (min-width:90rem){.lg-mt10{margin-top:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mt10{margin-top:10rem!important}}@media screen and (min-width:144rem){.only-xlg-mt10,.xlg-mt10{margin-top:10rem!important}}.mr10{margin-right:10rem!important}@media screen and (min-width:30rem){.sm-mr10{margin-right:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mr10{margin-right:10rem!important}}@media screen and (min-width:60rem){.md-mr10{margin-right:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mr10{margin-right:10rem!important}}@media screen and (min-width:90rem){.lg-mr10{margin-right:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mr10{margin-right:10rem!important}}@media screen and (min-width:144rem){.only-xlg-mr10,.xlg-mr10{margin-right:10rem!important}}.mb10{margin-bottom:10rem!important}@media screen and (min-width:30rem){.sm-mb10{margin-bottom:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mb10{margin-bottom:10rem!important}}@media screen and (min-width:60rem){.md-mb10{margin-bottom:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mb10{margin-bottom:10rem!important}}@media screen and (min-width:90rem){.lg-mb10{margin-bottom:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mb10{margin-bottom:10rem!important}}@media screen and (min-width:144rem){.only-xlg-mb10,.xlg-mb10{margin-bottom:10rem!important}}.ml10{margin-left:10rem!important}@media screen and (min-width:30rem){.sm-ml10{margin-left:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ml10{margin-left:10rem!important}}@media screen and (min-width:60rem){.md-ml10{margin-left:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ml10{margin-left:10rem!important}}@media screen and (min-width:90rem){.lg-ml10{margin-left:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ml10{margin-left:10rem!important}}@media screen and (min-width:144rem){.only-xlg-ml10,.xlg-ml10{margin-left:10rem!important}}.mv10{margin-top:10rem!important;margin-bottom:10rem!important}@media screen and (min-width:30rem){.sm-mv10{margin-top:10rem!important;margin-bottom:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mv10{margin-top:10rem!important;margin-bottom:10rem!important}}@media screen and (min-width:60rem){.md-mv10{margin-top:10rem!important;margin-bottom:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mv10{margin-top:10rem!important;margin-bottom:10rem!important}}@media screen and (min-width:90rem){.lg-mv10{margin-top:10rem!important;margin-bottom:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mv10{margin-top:10rem!important;margin-bottom:10rem!important}}@media screen and (min-width:144rem){.only-xlg-mv10,.xlg-mv10{margin-top:10rem!important;margin-bottom:10rem!important}}.mh10{margin-left:10rem!important;margin-right:10rem!important}@media screen and (min-width:30rem){.sm-mh10{margin-left:10rem!important;margin-right:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mh10{margin-left:10rem!important;margin-right:10rem!important}}@media screen and (min-width:60rem){.md-mh10{margin-left:10rem!important;margin-right:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mh10{margin-left:10rem!important;margin-right:10rem!important}}@media screen and (min-width:90rem){.lg-mh10{margin-left:10rem!important;margin-right:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mh10{margin-left:10rem!important;margin-right:10rem!important}}@media screen and (min-width:144rem){.only-xlg-mh10,.xlg-mh10{margin-left:10rem!important;margin-right:10rem!important}}.ma0{margin:0!important}@media screen and (min-width:30rem){.sm-ma0{margin:0!important}}@media screen and (max-width:59.99999rem){.only-sm-ma0{margin:0!important}}@media screen and (min-width:60rem){.md-ma0{margin:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ma0{margin:0!important}}@media screen and (min-width:90rem){.lg-ma0{margin:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ma0{margin:0!important}}@media screen and (min-width:144rem){.only-xlg-ma0,.xlg-ma0{margin:0!important}}.mt0{margin-top:0!important}@media screen and (min-width:30rem){.sm-mt0{margin-top:0!important}}@media screen and (max-width:59.99999rem){.only-sm-mt0{margin-top:0!important}}@media screen and (min-width:60rem){.md-mt0{margin-top:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mt0{margin-top:0!important}}@media screen and (min-width:90rem){.lg-mt0{margin-top:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mt0{margin-top:0!important}}@media screen and (min-width:144rem){.only-xlg-mt0,.xlg-mt0{margin-top:0!important}}.mr0{margin-right:0!important}@media screen and (min-width:30rem){.sm-mr0{margin-right:0!important}}@media screen and (max-width:59.99999rem){.only-sm-mr0{margin-right:0!important}}@media screen and (min-width:60rem){.md-mr0{margin-right:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mr0{margin-right:0!important}}@media screen and (min-width:90rem){.lg-mr0{margin-right:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mr0{margin-right:0!important}}@media screen and (min-width:144rem){.only-xlg-mr0,.xlg-mr0{margin-right:0!important}}.mb0{margin-bottom:0!important}@media screen and (min-width:30rem){.sm-mb0{margin-bottom:0!important}}@media screen and (max-width:59.99999rem){.only-sm-mb0{margin-bottom:0!important}}@media screen and (min-width:60rem){.md-mb0{margin-bottom:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mb0{margin-bottom:0!important}}@media screen and (min-width:90rem){.lg-mb0{margin-bottom:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mb0{margin-bottom:0!important}}@media screen and (min-width:144rem){.only-xlg-mb0,.xlg-mb0{margin-bottom:0!important}}.ml0{margin-left:0!important}@media screen and (min-width:30rem){.sm-ml0{margin-left:0!important}}@media screen and (max-width:59.99999rem){.only-sm-ml0{margin-left:0!important}}@media screen and (min-width:60rem){.md-ml0{margin-left:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ml0{margin-left:0!important}}@media screen and (min-width:90rem){.lg-ml0{margin-left:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ml0{margin-left:0!important}}@media screen and (min-width:144rem){.only-xlg-ml0,.xlg-ml0{margin-left:0!important}}.mv0{margin-top:0!important;margin-bottom:0!important}@media screen and (min-width:30rem){.sm-mv0{margin-top:0!important;margin-bottom:0!important}}@media screen and (max-width:59.99999rem){.only-sm-mv0{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:60rem){.md-mv0{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mv0{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:90rem){.lg-mv0{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mv0{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:144rem){.only-xlg-mv0,.xlg-mv0{margin-top:0!important;margin-bottom:0!important}}.mh0{margin-left:0!important;margin-right:0!important}@media screen and (min-width:30rem){.sm-mh0{margin-left:0!important;margin-right:0!important}}@media screen and (max-width:59.99999rem){.only-sm-mh0{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:60rem){.md-mh0{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mh0{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:90rem){.lg-mh0{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mh0{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:144rem){.only-xlg-mh0,.xlg-mh0{margin-left:0!important;margin-right:0!important}}.xp{padding:0!important}.xpv{padding-top:0!important;padding-bottom:0!important}.xph{padding-left:0!important;padding-right:0!important}.xm{margin:0!important}.xmv{margin-top:0!important;margin-bottom:0!important}.xmh{margin-left:0!important;margin-right:0!important}@media screen and (min-width:30rem){.sm-xp{padding:0!important}}@media screen and (min-width:30rem){.sm-xpv{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:30rem){.sm-xph{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:30rem){.sm-center{padding-left:auto!important;padding-right:auto!important}}@media screen and (max-width:59.99999rem){.only-sm-xp{padding:0!important}}@media screen and (max-width:59.99999rem){.only-sm-xpv{padding-top:0!important;padding-bottom:0!important}}@media screen and (max-width:59.99999rem){.only-sm-xph{padding-left:0!important;padding-right:0!important}}@media screen and (max-width:59.99999rem){.only-sm-center{padding-left:auto!important;padding-right:auto!important}}@media screen and (min-width:60rem){.md-xp{padding:0!important}}@media screen and (min-width:60rem){.md-xpv{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:60rem){.md-xph{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:60rem){.md-center{padding-left:auto!important;padding-right:auto!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-xp{padding:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-xpv{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-xph{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-center{padding-left:auto!important;padding-right:auto!important}}@media screen and (min-width:90rem){.lg-xp{padding:0!important}}@media screen and (min-width:90rem){.lg-xpv{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:90rem){.lg-xph{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:90rem){.lg-center{padding-left:auto!important;padding-right:auto!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-xp{padding:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-xpv{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-xph{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-center{padding-left:auto!important;padding-right:auto!important}}@media screen and (min-width:144rem){.xlg-xp{padding:0!important}}@media screen and (min-width:144rem){.xlg-xpv{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:144rem){.xlg-xph{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:144rem){.xlg-center{padding-left:auto!important;padding-right:auto!important}}@media screen and (min-width:144rem){.only-xlg-xp{padding:0!important}}@media screen and (min-width:144rem){.only-xlg-xpv{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:144rem){.only-xlg-xph{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:144rem){.only-xlg-center{padding-left:auto!important;padding-right:auto!important}}@media screen and (min-width:30rem){.sm-xm{margin:0!important}}@media screen and (min-width:30rem){.sm-xmv{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:30rem){.sm-xmh{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:30rem){.sm-center{margin-left:auto!important;margin-right:auto!important}}@media screen and (max-width:59.99999rem){.only-sm-xm{margin:0!important}}@media screen and (max-width:59.99999rem){.only-sm-xmv{margin-top:0!important;margin-bottom:0!important}}@media screen and (max-width:59.99999rem){.only-sm-xmh{margin-left:0!important;margin-right:0!important}}@media screen and (max-width:59.99999rem){.only-sm-center{margin-left:auto!important;margin-right:auto!important}}@media screen and (min-width:60rem){.md-xm{margin:0!important}}@media screen and (min-width:60rem){.md-xmv{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:60rem){.md-xmh{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:60rem){.md-center{margin-left:auto!important;margin-right:auto!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-xm{margin:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-xmv{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-xmh{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-center{margin-left:auto!important;margin-right:auto!important}}@media screen and (min-width:90rem){.lg-xm{margin:0!important}}@media screen and (min-width:90rem){.lg-xmv{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:90rem){.lg-xmh{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:90rem){.lg-center{margin-left:auto!important;margin-right:auto!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-xm{margin:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-xmv{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-xmh{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-center{margin-left:auto!important;margin-right:auto!important}}@media screen and (min-width:144rem){.xlg-xm{margin:0!important}}@media screen and (min-width:144rem){.xlg-xmv{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:144rem){.xlg-xmh{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:144rem){.xlg-center{margin-left:auto!important;margin-right:auto!important}}@media screen and (min-width:144rem){.only-xlg-xm{margin:0!important}}@media screen and (min-width:144rem){.only-xlg-xmv{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:144rem){.only-xlg-xmh{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:144rem){.only-xlg-center{margin-left:auto!important;margin-right:auto!important}}.lh1{line-height:1!important}.lh1-1{line-height:1.1!important}.lh1-2{line-height:1.2!important}.lh1-3{line-height:1.3!important}.lh1-4{line-height:1.4!important}.lh1-5{line-height:1.5!important}.lh1-6{line-height:1.6!important}.lh1-7{line-height:1.7!important}.lh1-8{line-height:1.8!important}.lh1-9{line-height:1.9!important}.lh2{line-height:2!important}@media screen and (min-width:30rem){.sm-lh1{line-height:1!important}}@media screen and (min-width:30rem){.sm-lh1-1{line-height:1.1!important}}@media screen and (min-width:30rem){.sm-lh1-2{line-height:1.2!important}}@media screen and (min-width:30rem){.sm-lh1-3{line-height:1.3!important}}@media screen and (min-width:30rem){.sm-lh1-4{line-height:1.4!important}}@media screen and (min-width:30rem){.sm-lh1-5{line-height:1.5!important}}@media screen and (min-width:30rem){.sm-lh1-6{line-height:1.6!important}}@media screen and (min-width:30rem){.sm-lh1-7{line-height:1.7!important}}@media screen and (min-width:30rem){.sm-lh1-8{line-height:1.8!important}}@media screen and (min-width:30rem){.sm-lh1-9{line-height:1.9!important}}@media screen and (min-width:30rem){.sm-lh2{line-height:2!important}}@media screen and (max-width:59.99999rem){.only-sm-lh1{line-height:1!important}}@media screen and (max-width:59.99999rem){.only-sm-lh1-1{line-height:1.1!important}}@media screen and (max-width:59.99999rem){.only-sm-lh1-2{line-height:1.2!important}}@media screen and (max-width:59.99999rem){.only-sm-lh1-3{line-height:1.3!important}}@media screen and (max-width:59.99999rem){.only-sm-lh1-4{line-height:1.4!important}}@media screen and (max-width:59.99999rem){.only-sm-lh1-5{line-height:1.5!important}}@media screen and (max-width:59.99999rem){.only-sm-lh1-6{line-height:1.6!important}}@media screen and (max-width:59.99999rem){.only-sm-lh1-7{line-height:1.7!important}}@media screen and (max-width:59.99999rem){.only-sm-lh1-8{line-height:1.8!important}}@media screen and (max-width:59.99999rem){.only-sm-lh1-9{line-height:1.9!important}}@media screen and (max-width:59.99999rem){.only-sm-lh2{line-height:2!important}}@media screen and (min-width:60rem){.md-lh1{line-height:1!important}}@media screen and (min-width:60rem){.md-lh1-1{line-height:1.1!important}}@media screen and (min-width:60rem){.md-lh1-2{line-height:1.2!important}}@media screen and (min-width:60rem){.md-lh1-3{line-height:1.3!important}}@media screen and (min-width:60rem){.md-lh1-4{line-height:1.4!important}}@media screen and (min-width:60rem){.md-lh1-5{line-height:1.5!important}}@media screen and (min-width:60rem){.md-lh1-6{line-height:1.6!important}}@media screen and (min-width:60rem){.md-lh1-7{line-height:1.7!important}}@media screen and (min-width:60rem){.md-lh1-8{line-height:1.8!important}}@media screen and (min-width:60rem){.md-lh1-9{line-height:1.9!important}}@media screen and (min-width:60rem){.md-lh2{line-height:2!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-lh1{line-height:1!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-lh1-1{line-height:1.1!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-lh1-2{line-height:1.2!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-lh1-3{line-height:1.3!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-lh1-4{line-height:1.4!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-lh1-5{line-height:1.5!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-lh1-6{line-height:1.6!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-lh1-7{line-height:1.7!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-lh1-8{line-height:1.8!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-lh1-9{line-height:1.9!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-lh2{line-height:2!important}}@media screen and (min-width:90rem){.lg-lh1{line-height:1!important}}@media screen and (min-width:90rem){.lg-lh1-1{line-height:1.1!important}}@media screen and (min-width:90rem){.lg-lh1-2{line-height:1.2!important}}@media screen and (min-width:90rem){.lg-lh1-3{line-height:1.3!important}}@media screen and (min-width:90rem){.lg-lh1-4{line-height:1.4!important}}@media screen and (min-width:90rem){.lg-lh1-5{line-height:1.5!important}}@media screen and (min-width:90rem){.lg-lh1-6{line-height:1.6!important}}@media screen and (min-width:90rem){.lg-lh1-7{line-height:1.7!important}}@media screen and (min-width:90rem){.lg-lh1-8{line-height:1.8!important}}@media screen and (min-width:90rem){.lg-lh1-9{line-height:1.9!important}}@media screen and (min-width:90rem){.lg-lh2{line-height:2!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-lh1{line-height:1!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-lh1-1{line-height:1.1!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-lh1-2{line-height:1.2!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-lh1-3{line-height:1.3!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-lh1-4{line-height:1.4!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-lh1-5{line-height:1.5!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-lh1-6{line-height:1.6!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-lh1-7{line-height:1.7!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-lh1-8{line-height:1.8!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-lh1-9{line-height:1.9!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-lh2{line-height:2!important}}@media screen and (min-width:144rem){.xlg-lh1{line-height:1!important}}@media screen and (min-width:144rem){.xlg-lh1-1{line-height:1.1!important}}@media screen and (min-width:144rem){.xlg-lh1-2{line-height:1.2!important}}@media screen and (min-width:144rem){.xlg-lh1-3{line-height:1.3!important}}@media screen and (min-width:144rem){.xlg-lh1-4{line-height:1.4!important}}@media screen and (min-width:144rem){.xlg-lh1-5{line-height:1.5!important}}@media screen and (min-width:144rem){.xlg-lh1-6{line-height:1.6!important}}@media screen and (min-width:144rem){.xlg-lh1-7{line-height:1.7!important}}@media screen and (min-width:144rem){.xlg-lh1-8{line-height:1.8!important}}@media screen and (min-width:144rem){.xlg-lh1-9{line-height:1.9!important}}@media screen and (min-width:144rem){.xlg-lh2{line-height:2!important}}@media screen and (min-width:144rem){.only-xlg-lh1{line-height:1!important}}@media screen and (min-width:144rem){.only-xlg-lh1-1{line-height:1.1!important}}@media screen and (min-width:144rem){.only-xlg-lh1-2{line-height:1.2!important}}@media screen and (min-width:144rem){.only-xlg-lh1-3{line-height:1.3!important}}@media screen and (min-width:144rem){.only-xlg-lh1-4{line-height:1.4!important}}@media screen and (min-width:144rem){.only-xlg-lh1-5{line-height:1.5!important}}@media screen and (min-width:144rem){.only-xlg-lh1-6{line-height:1.6!important}}@media screen and (min-width:144rem){.only-xlg-lh1-7{line-height:1.7!important}}@media screen and (min-width:144rem){.only-xlg-lh1-8{line-height:1.8!important}}@media screen and (min-width:144rem){.only-xlg-lh1-9{line-height:1.9!important}}@media screen and (min-width:144rem){.only-xlg-lh2{line-height:2!important}}.ls1{letter-spacing:.1rem}@media screen and (min-width:30rem){.sm-ls1{letter-spacing:.1rem}}@media screen and (max-width:59.99999rem){.only-sm-ls1{letter-spacing:.1rem}}@media screen and (min-width:60rem){.md-ls1{letter-spacing:.1rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ls1{letter-spacing:.1rem}}@media screen and (min-width:90rem){.lg-ls1{letter-spacing:.1rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ls1{letter-spacing:.1rem}}@media screen and (min-width:144rem){.only-xlg-ls1,.xlg-ls1{letter-spacing:.1rem}}.ls2{letter-spacing:.2rem}@media screen and (min-width:30rem){.sm-ls2{letter-spacing:.2rem}}@media screen and (max-width:59.99999rem){.only-sm-ls2{letter-spacing:.2rem}}@media screen and (min-width:60rem){.md-ls2{letter-spacing:.2rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ls2{letter-spacing:.2rem}}@media screen and (min-width:90rem){.lg-ls2{letter-spacing:.2rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ls2{letter-spacing:.2rem}}@media screen and (min-width:144rem){.only-xlg-ls2,.xlg-ls2{letter-spacing:.2rem}}.ls3{letter-spacing:.3rem}@media screen and (min-width:30rem){.sm-ls3{letter-spacing:.3rem}}@media screen and (max-width:59.99999rem){.only-sm-ls3{letter-spacing:.3rem}}@media screen and (min-width:60rem){.md-ls3{letter-spacing:.3rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ls3{letter-spacing:.3rem}}@media screen and (min-width:90rem){.lg-ls3{letter-spacing:.3rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ls3{letter-spacing:.3rem}}@media screen and (min-width:144rem){.only-xlg-ls3,.xlg-ls3{letter-spacing:.3rem}}.ls4{letter-spacing:.4rem}@media screen and (min-width:30rem){.sm-ls4{letter-spacing:.4rem}}@media screen and (max-width:59.99999rem){.only-sm-ls4{letter-spacing:.4rem}}@media screen and (min-width:60rem){.md-ls4{letter-spacing:.4rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ls4{letter-spacing:.4rem}}@media screen and (min-width:90rem){.lg-ls4{letter-spacing:.4rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ls4{letter-spacing:.4rem}}@media screen and (min-width:144rem){.only-xlg-ls4,.xlg-ls4{letter-spacing:.4rem}}.ls5{letter-spacing:.5rem}@media screen and (min-width:30rem){.sm-ls5{letter-spacing:.5rem}}@media screen and (max-width:59.99999rem){.only-sm-ls5{letter-spacing:.5rem}}@media screen and (min-width:60rem){.md-ls5{letter-spacing:.5rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ls5{letter-spacing:.5rem}}@media screen and (min-width:90rem){.lg-ls5{letter-spacing:.5rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ls5{letter-spacing:.5rem}}@media screen and (min-width:144rem){.only-xlg-ls5,.xlg-ls5{letter-spacing:.5rem}}.ls6{letter-spacing:.6rem}@media screen and (min-width:30rem){.sm-ls6{letter-spacing:.6rem}}@media screen and (max-width:59.99999rem){.only-sm-ls6{letter-spacing:.6rem}}@media screen and (min-width:60rem){.md-ls6{letter-spacing:.6rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ls6{letter-spacing:.6rem}}@media screen and (min-width:90rem){.lg-ls6{letter-spacing:.6rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ls6{letter-spacing:.6rem}}@media screen and (min-width:144rem){.only-xlg-ls6,.xlg-ls6{letter-spacing:.6rem}}.ls7{letter-spacing:.7rem}@media screen and (min-width:30rem){.sm-ls7{letter-spacing:.7rem}}@media screen and (max-width:59.99999rem){.only-sm-ls7{letter-spacing:.7rem}}@media screen and (min-width:60rem){.md-ls7{letter-spacing:.7rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ls7{letter-spacing:.7rem}}@media screen and (min-width:90rem){.lg-ls7{letter-spacing:.7rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ls7{letter-spacing:.7rem}}@media screen and (min-width:144rem){.only-xlg-ls7,.xlg-ls7{letter-spacing:.7rem}}.ls8{letter-spacing:.8rem}@media screen and (min-width:30rem){.sm-ls8{letter-spacing:.8rem}}@media screen and (max-width:59.99999rem){.only-sm-ls8{letter-spacing:.8rem}}@media screen and (min-width:60rem){.md-ls8{letter-spacing:.8rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ls8{letter-spacing:.8rem}}@media screen and (min-width:90rem){.lg-ls8{letter-spacing:.8rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ls8{letter-spacing:.8rem}}@media screen and (min-width:144rem){.only-xlg-ls8,.xlg-ls8{letter-spacing:.8rem}}.ls9{letter-spacing:.9rem}@media screen and (min-width:30rem){.sm-ls9{letter-spacing:.9rem}}@media screen and (max-width:59.99999rem){.only-sm-ls9{letter-spacing:.9rem}}@media screen and (min-width:60rem){.md-ls9{letter-spacing:.9rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ls9{letter-spacing:.9rem}}@media screen and (min-width:90rem){.lg-ls9{letter-spacing:.9rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ls9{letter-spacing:.9rem}}@media screen and (min-width:144rem){.only-xlg-ls9,.xlg-ls9{letter-spacing:.9rem}}.ls10{letter-spacing:1rem}@media screen and (min-width:30rem){.sm-ls10{letter-spacing:1rem}}@media screen and (max-width:59.99999rem){.only-sm-ls10{letter-spacing:1rem}}@media screen and (min-width:60rem){.md-ls10{letter-spacing:1rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ls10{letter-spacing:1rem}}@media screen and (min-width:90rem){.lg-ls10{letter-spacing:1rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ls10{letter-spacing:1rem}}@media screen and (min-width:144rem){.only-xlg-ls10,.xlg-ls10{letter-spacing:1rem}}.ft1{font-size:10px;font-size:1rem}@media screen and (min-width:30rem){.sm-ft1{font-size:10px;font-size:1rem}}@media screen and (max-width:59.99999rem){.only-sm-ft1{font-size:10px;font-size:1rem}}@media screen and (min-width:60rem){.md-ft1{font-size:10px;font-size:1rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft1{font-size:10px;font-size:1rem}}@media screen and (min-width:90rem){.lg-ft1{font-size:10px;font-size:1rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft1{font-size:10px;font-size:1rem}}@media screen and (min-width:144rem){.only-xlg-ft1,.xlg-ft1{font-size:10px;font-size:1rem}}.ft2{font-size:11px;font-size:1.1rem}@media screen and (min-width:30rem){.sm-ft2{font-size:11px;font-size:1.1rem}}@media screen and (max-width:59.99999rem){.only-sm-ft2{font-size:11px;font-size:1.1rem}}@media screen and (min-width:60rem){.md-ft2{font-size:11px;font-size:1.1rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft2{font-size:11px;font-size:1.1rem}}@media screen and (min-width:90rem){.lg-ft2{font-size:11px;font-size:1.1rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft2{font-size:11px;font-size:1.1rem}}@media screen and (min-width:144rem){.only-xlg-ft2,.xlg-ft2{font-size:11px;font-size:1.1rem}}.ft3{font-size:12px;font-size:1.2rem}@media screen and (min-width:30rem){.sm-ft3{font-size:12px;font-size:1.2rem}}@media screen and (max-width:59.99999rem){.only-sm-ft3{font-size:12px;font-size:1.2rem}}@media screen and (min-width:60rem){.md-ft3{font-size:12px;font-size:1.2rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft3{font-size:12px;font-size:1.2rem}}@media screen and (min-width:90rem){.lg-ft3{font-size:12px;font-size:1.2rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft3{font-size:12px;font-size:1.2rem}}@media screen and (min-width:144rem){.only-xlg-ft3,.xlg-ft3{font-size:12px;font-size:1.2rem}}.ft4{font-size:15px;font-size:1.5rem}@media screen and (min-width:30rem){.sm-ft4{font-size:15px;font-size:1.5rem}}@media screen and (max-width:59.99999rem){.only-sm-ft4{font-size:15px;font-size:1.5rem}}@media screen and (min-width:60rem){.md-ft4{font-size:15px;font-size:1.5rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft4{font-size:15px;font-size:1.5rem}}@media screen and (min-width:90rem){.lg-ft4{font-size:15px;font-size:1.5rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft4{font-size:15px;font-size:1.5rem}}@media screen and (min-width:144rem){.only-xlg-ft4,.xlg-ft4{font-size:15px;font-size:1.5rem}}.ft5{font-size:16.5px;font-size:1.65rem}@media screen and (min-width:30rem){.sm-ft5{font-size:16.5px;font-size:1.65rem}}@media screen and (max-width:59.99999rem){.only-sm-ft5{font-size:16.5px;font-size:1.65rem}}@media screen and (min-width:60rem){.md-ft5{font-size:16.5px;font-size:1.65rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft5{font-size:16.5px;font-size:1.65rem}}@media screen and (min-width:90rem){.lg-ft5{font-size:16.5px;font-size:1.65rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft5{font-size:16.5px;font-size:1.65rem}}@media screen and (min-width:144rem){.only-xlg-ft5,.xlg-ft5{font-size:16.5px;font-size:1.65rem}}.ft6{font-size:18px;font-size:1.8rem}@media screen and (min-width:30rem){.sm-ft6{font-size:18px;font-size:1.8rem}}@media screen and (max-width:59.99999rem){.only-sm-ft6{font-size:18px;font-size:1.8rem}}@media screen and (min-width:60rem){.md-ft6{font-size:18px;font-size:1.8rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft6{font-size:18px;font-size:1.8rem}}@media screen and (min-width:90rem){.lg-ft6{font-size:18px;font-size:1.8rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft6{font-size:18px;font-size:1.8rem}}@media screen and (min-width:144rem){.only-xlg-ft6,.xlg-ft6{font-size:18px;font-size:1.8rem}}.ft7{font-size:22.5px;font-size:2.25rem}@media screen and (min-width:30rem){.sm-ft7{font-size:22.5px;font-size:2.25rem}}@media screen and (max-width:59.99999rem){.only-sm-ft7{font-size:22.5px;font-size:2.25rem}}@media screen and (min-width:60rem){.md-ft7{font-size:22.5px;font-size:2.25rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft7{font-size:22.5px;font-size:2.25rem}}@media screen and (min-width:90rem){.lg-ft7{font-size:22.5px;font-size:2.25rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft7{font-size:22.5px;font-size:2.25rem}}@media screen and (min-width:144rem){.only-xlg-ft7,.xlg-ft7{font-size:22.5px;font-size:2.25rem}}.ft8{font-size:24.75px;font-size:2.475rem}@media screen and (min-width:30rem){.sm-ft8{font-size:24.75px;font-size:2.475rem}}@media screen and (max-width:59.99999rem){.only-sm-ft8{font-size:24.75px;font-size:2.475rem}}@media screen and (min-width:60rem){.md-ft8{font-size:24.75px;font-size:2.475rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft8{font-size:24.75px;font-size:2.475rem}}@media screen and (min-width:90rem){.lg-ft8{font-size:24.75px;font-size:2.475rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft8{font-size:24.75px;font-size:2.475rem}}@media screen and (min-width:144rem){.only-xlg-ft8,.xlg-ft8{font-size:24.75px;font-size:2.475rem}}.ft9{font-size:27px;font-size:2.7rem}@media screen and (min-width:30rem){.sm-ft9{font-size:27px;font-size:2.7rem}}@media screen and (max-width:59.99999rem){.only-sm-ft9{font-size:27px;font-size:2.7rem}}@media screen and (min-width:60rem){.md-ft9{font-size:27px;font-size:2.7rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft9{font-size:27px;font-size:2.7rem}}@media screen and (min-width:90rem){.lg-ft9{font-size:27px;font-size:2.7rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft9{font-size:27px;font-size:2.7rem}}@media screen and (min-width:144rem){.only-xlg-ft9,.xlg-ft9{font-size:27px;font-size:2.7rem}}.ft10{font-size:33.75px;font-size:3.375rem}@media screen and (min-width:30rem){.sm-ft10{font-size:33.75px;font-size:3.375rem}}@media screen and (max-width:59.99999rem){.only-sm-ft10{font-size:33.75px;font-size:3.375rem}}@media screen and (min-width:60rem){.md-ft10{font-size:33.75px;font-size:3.375rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft10{font-size:33.75px;font-size:3.375rem}}@media screen and (min-width:90rem){.lg-ft10{font-size:33.75px;font-size:3.375rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft10{font-size:33.75px;font-size:3.375rem}}@media screen and (min-width:144rem){.only-xlg-ft10,.xlg-ft10{font-size:33.75px;font-size:3.375rem}}.ft11{font-size:37.13px;font-size:3.713rem}@media screen and (min-width:30rem){.sm-ft11{font-size:37.13px;font-size:3.713rem}}@media screen and (max-width:59.99999rem){.only-sm-ft11{font-size:37.13px;font-size:3.713rem}}@media screen and (min-width:60rem){.md-ft11{font-size:37.13px;font-size:3.713rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft11
gitextract_tbjnbn08/
├── .gitignore
├── .npmignore
├── LICENSE
├── README.md
├── beard.scss
├── bower.json
├── build_production/
│ ├── CNAME
│ ├── border-radius/
│ │ └── index.html
│ ├── borders/
│ │ └── index.html
│ ├── colors/
│ │ └── index.html
│ ├── configuration/
│ │ └── index.html
│ ├── css/
│ │ ├── main.css
│ │ └── vendor.css
│ ├── display/
│ │ └── index.html
│ ├── examples/
│ │ └── index.html
│ ├── flexbox/
│ │ └── index.html
│ ├── floats/
│ │ └── index.html
│ ├── fonts/
│ │ └── index.html
│ ├── grid/
│ │ └── index.html
│ ├── index.html
│ ├── installation/
│ │ └── index.html
│ ├── js/
│ │ └── app.js
│ ├── letter-spacing/
│ │ └── index.html
│ ├── line-heights/
│ │ └── index.html
│ ├── misc/
│ │ └── index.html
│ ├── overflow/
│ │ └── index.html
│ ├── philosophy/
│ │ └── index.html
│ ├── position/
│ │ └── index.html
│ ├── reset-and-base/
│ │ └── index.html
│ ├── responsive-prefixes/
│ │ └── index.html
│ ├── spacing/
│ │ └── index.html
│ ├── text-alignment/
│ │ └── index.html
│ └── tools/
│ └── index.html
├── config.php
├── dist/
│ └── beard.css
├── gulpfile.js
├── index.js
├── package.json
├── source/
│ ├── CNAME
│ ├── _assets/
│ │ ├── css/
│ │ │ ├── prism-ghcolors.css
│ │ │ └── prism.css
│ │ ├── js/
│ │ │ ├── main.js
│ │ │ └── prism.js
│ │ └── sass/
│ │ └── main.scss
│ ├── _layouts/
│ │ ├── master.blade.php
│ │ └── subpage.blade.php
│ ├── _partials/
│ │ ├── _footer.blade.php
│ │ ├── _header.blade.php
│ │ └── _sidebar.blade.php
│ ├── border-radius.md
│ ├── borders.md
│ ├── colors.md
│ ├── configuration.md
│ ├── css/
│ │ ├── main.css
│ │ └── vendor.css
│ ├── display.md
│ ├── examples.md
│ ├── flexbox.md
│ ├── floats.md
│ ├── fonts.md
│ ├── grid.md
│ ├── index.md
│ ├── installation.md
│ ├── js/
│ │ └── app.js
│ ├── letter-spacing.md
│ ├── line-heights.md
│ ├── misc.md
│ ├── overflow.md
│ ├── philosophy.md
│ ├── position.md
│ ├── reset-and-base.md
│ ├── responsive-prefixes.md
│ ├── spacing.md
│ ├── text-alignment.md
│ └── tools.md
└── stylesheets/
├── _base.scss
├── _beard.after.scss
├── _beard.before.scss
├── _generic.reset.scss
├── _helpers.border-radius.scss
├── _helpers.borders.scss
├── _helpers.colors.scss
├── _helpers.display.scss
├── _helpers.flex.scss
├── _helpers.floats.scss
├── _helpers.fonts.scss
├── _helpers.grid.scss
├── _helpers.letter-spacing.scss
├── _helpers.line-heights.scss
├── _helpers.misc.scss
├── _helpers.overflow.scss
├── _helpers.position.scss
├── _helpers.spacing.scss
├── _helpers.text-align.scss
├── _objects.media.scss
├── _settings.colors.scss
├── _settings.scss
├── _tools.appearance.scss
├── _tools.breakpoints.scss
├── _tools.colors.scss
├── _tools.font-size.scss
├── _tools.spacing.scss
└── _tools.user-drag.scss
SYMBOL INDEX (395 symbols across 3 files)
FILE: build_production/js/app.js
function t (line 1) | function t(e,n,r){if(i(e,n))return void(e[n]=r);if(e._isVue)return void ...
function e (line 1) | function e(t,e){if(i(t,e)){delete t[e];var n=t.__ob__;if(!n)return void(...
function i (line 1) | function i(t,e){return Pi.call(t,e)}
function n (line 1) | function n(t){return Ni.test(t)}
function r (line 1) | function r(t){var e=(t+"").charCodeAt(0);return 36===e||95===e}
function s (line 1) | function s(t){return null==t?"":t.toString()}
function a (line 1) | function a(t){if("string"!=typeof t)return t;var e=Number(t);return isNa...
function o (line 1) | function o(t){return"true"===t||"false"!==t&&t}
function l (line 1) | function l(t){var e=t.charCodeAt(0),i=t.charCodeAt(t.length-1);return e!...
function h (line 1) | function h(t){return t.replace(Oi,c)}
function c (line 1) | function c(t,e){return e?e.toUpperCase():""}
function u (line 1) | function u(t){return t.replace(Ti,"$1-$2").toLowerCase()}
function f (line 1) | function f(t){return t.replace(ji,c)}
function p (line 1) | function p(t,e){return function(i){var n=arguments.length;return n?n>1?t...
function d (line 1) | function d(t,e){e=e||0;for(var i=t.length-e,n=new Array(i);i--;)n[i]=t[i...
function v (line 1) | function v(t,e){for(var i=Object.keys(e),n=i.length;n--;)t[i[n]]=e[i[n]]...
function g (line 1) | function g(t){return null!==t&&"object"==typeof t}
function m (line 1) | function m(t){return Si.call(t)===Ei}
function b (line 1) | function b(t,e,i,n){Object.defineProperty(t,e,{value:i,enumerable:!!n,wr...
function _ (line 1) | function _(t,e){var i,n,r,s,a,o=function l(){var o=Date.now()-s;e>o&&o>=...
function y (line 1) | function y(t,e){for(var i=t.length;i--;)if(t[i]===e)return i;return-1}
function w (line 1) | function w(t){var e=function i(){return i.cancelled?void 0:t.apply(this,...
function k (line 1) | function k(t,e){return t==e||!(!g(t)||!g(e))&&JSON.stringify(t)===JSON.s...
function C (line 1) | function C(t){this.size=0,this.limit=t,this.head=this.tail=void 0,this._...
function $ (line 1) | function $(){var t,e=en.slice(ln,an).trim();if(e){t={};var i=e.match(vn)...
function x (line 1) | function x(t){if(gn.test(t))return{value:a(t),dynamic:!1};var e=l(t),i=e...
function A (line 1) | function A(t){var e=dn.get(t);if(e)return e;for(en=t,hn=cn=!1,un=fn=pn=0...
function P (line 1) | function P(t){return t.replace(bn,"\\$&")}
function N (line 1) | function N(){var t=P(An.delimiters[0]),e=P(An.delimiters[1]),i=P(An.unsa...
function O (line 1) | function O(t){_n||N();var e=_n.get(t);if(e)return e;if(!yn.test(t))retur...
function T (line 1) | function T(t,e){return t.length>1?t.map(function(t){return j(t,e)}).join...
function j (line 1) | function j(t,e,i){return t.tag?t.oneTime&&e?'"'+e.$eval(t.value)+'"':S(t...
function S (line 1) | function S(t,e){if(kn.test(t)){var i=A(t);return i.filters?"this._applyF...
function E (line 1) | function E(t,e,i,n){R(t,1,function(){e.appendChild(t)},i,n)}
function F (line 1) | function F(t,e,i,n){R(t,1,function(){I(t,e)},i,n)}
function D (line 1) | function D(t,e,i){R(t,-1,function(){z(t)},e,i)}
function R (line 1) | function R(t,e,i,n,r){var s=t.__v_trans;if(!s||!s.hooks&&!Ji||!n._isComp...
function B (line 1) | function B(t){return"string"==typeof t&&(t=document.querySelector(t)),t}
function W (line 1) | function W(t){if(!t)return!1;var e=t.ownerDocument.documentElement,i=t.p...
function L (line 1) | function L(t,e){var i=t.getAttribute(e);return null!==i&&t.removeAttribu...
function H (line 1) | function H(t,e){var i=L(t,":"+e);return null===i&&(i=L(t,"v-bind:"+e)),i}
function M (line 1) | function M(t,e){return t.hasAttribute(e)||t.hasAttribute(":"+e)||t.hasAt...
function I (line 1) | function I(t,e){e.parentNode.insertBefore(t,e)}
function V (line 1) | function V(t,e){e.nextSibling?I(t,e.nextSibling):e.parentNode.appendChil...
function z (line 1) | function z(t){t.parentNode.removeChild(t)}
function U (line 1) | function U(t,e){e.firstChild?I(t,e.firstChild):e.appendChild(t)}
function q (line 1) | function q(t,e){var i=t.parentNode;i&&i.replaceChild(e,t)}
function J (line 1) | function J(t,e,i,n){t.addEventListener(e,i,n)}
function Q (line 1) | function Q(t,e,i){t.removeEventListener(e,i)}
function Z (line 1) | function Z(t){var e=t.className;return"object"==typeof e&&(e=e.baseVal||...
function G (line 1) | function G(t,e){Hi&&!/svg$/.test(t.namespaceURI)?t.className=e:t.setAttr...
function Y (line 1) | function Y(t,e){if(t.classList)t.classList.add(e);else{var i=" "+Z(t)+" ...
function X (line 1) | function X(t,e){if(t.classList)t.classList.remove(e);else{for(var i=" "+...
function K (line 1) | function K(t,e){var i,n;if(it(t)&&ot(t.content)&&(t=t.content),t.hasChil...
function tt (line 1) | function tt(t){for(var e;e=t.firstChild,et(e);)t.removeChild(e);for(;e=t...
function et (line 1) | function et(t){return t&&(3===t.nodeType&&!t.data.trim()||8===t.nodeType)}
function it (line 1) | function it(t){return t.tagName&&"template"===t.tagName.toLowerCase()}
function nt (line 1) | function nt(t,e){var i=An.debug?document.createComment(t):document.creat...
function rt (line 1) | function rt(t){if(t.hasAttributes())for(var e=t.attributes,i=0,n=e.lengt...
function st (line 1) | function st(t,e,i){for(var n;t!==e;)n=t.nextSibling,i(t),t=n;i(e)}
function at (line 1) | function at(t,e,i,n,r){function s(){if(o++,a&&o>=l.length){for(var t=0;t...
function ot (line 1) | function ot(t){return t&&11===t.nodeType}
function lt (line 1) | function lt(t){if(t.outerHTML)return t.outerHTML;var e=document.createEl...
function ht (line 1) | function ht(t,e){var i=t.tagName.toLowerCase(),n=t.hasAttributes();if(Tn...
function ct (line 1) | function ct(t,e){var i=t.getAttribute("is");if(null!=i){if(mt(e,"compone...
function ut (line 1) | function ut(e,n){var r,s,a;for(r in n)s=e[r],a=n[r],i(e,r)?g(s)&&g(a)&&u...
function ft (line 1) | function ft(t,e){var i=Object.create(t||null);return e?v(i,vt(e)):i}
function pt (line 1) | function pt(t){if(t.components)for(var e,i=t.components=vt(t.components)...
function dt (line 1) | function dt(t){var e,i,n=t.props;if(Fi(n))for(t.props={},e=n.length;e--;...
function vt (line 1) | function vt(t){if(Fi(t)){for(var e,i={},n=t.length;n--;){e=t[n];var r="f...
function gt (line 1) | function gt(t,e,n){function r(i){var r=Sn[i]||En;a[i]=r(t[i],e[i],n,i)}p...
function mt (line 1) | function mt(t,e,i,n){if("string"==typeof i){var r,s=t[e],a=s[i]||s[r=h(i...
function bt (line 1) | function bt(){this.id=Fn++,this.subs=[]}
function _t (line 1) | function _t(t){Wn=!1,t(),Wn=!0}
function yt (line 1) | function yt(t){if(this.value=t,this.dep=new bt,b(t,"__ob__",this),Fi(t))...
function wt (line 1) | function wt(t,e){t.__proto__=e}
function kt (line 1) | function kt(t,e,i){for(var n=0,r=i.length;r>n;n++){var s=i[n];b(t,s,e[s])}}
function Ct (line 1) | function Ct(t,e){if(t&&"object"==typeof t){var n;return i(t,"__ob__")&&t...
function $t (line 1) | function $t(t,e,i){var n=new bt,r=Object.getOwnPropertyDescriptor(t,e);i...
function xt (line 1) | function xt(t){t.prototype._init=function(t){t=t||{},this.$el=null,this....
function At (line 1) | function At(t){if(void 0===t)return"eof";var e=t.charCodeAt(0);switch(e)...
function Pt (line 1) | function Pt(t){var e=t.trim();return("0"!==t.charAt(0)||!isNaN(t))&&(n(e...
function Nt (line 1) | function Nt(t){function e(){var e=t[c+1];return u===Yn&&"'"===e||u===Xn&...
function Ot (line 1) | function Ot(t){var e=Mn.get(t);return e||(e=Nt(t),e&&Mn.put(t,e)),e}
function Tt (line 1) | function Tt(t,e){return Lt(e).get(t)}
function jt (line 1) | function jt(e,i,n){var r=e;if("string"==typeof i&&(i=Nt(i)),!i||!g(e))re...
function St (line 1) | function St(){}
function Et (line 1) | function Et(t,e){var i=vr.length;return vr[i]=e?t.replace(hr,"\\n"):t,'"...
function Ft (line 1) | function Ft(t){var e=t.charAt(0),i=t.slice(1);return sr.test(i)?t:(i=i.i...
function Dt (line 1) | function Dt(t,e){return vr[e]}
function Rt (line 1) | function Rt(t){or.test(t),vr.length=0;var e=t.replace(cr,Et).replace(lr,...
function Bt (line 1) | function Bt(t){try{return new Function("scope","return "+t+";")}catch(e)...
function Wt (line 1) | function Wt(t){var e=Ot(t);return e?function(t,i){jt(t,e,i)}:void 0}
function Lt (line 1) | function Lt(t,e){t=t.trim();var i=nr.get(t);if(i)return e&&!i.set&&(i.se...
function Ht (line 1) | function Ht(t){return fr.test(t)&&!dr.test(t)&&"Math."!==t.slice(0,5)}
function Mt (line 1) | function Mt(){mr.length=0,br.length=0,_r={},yr={},wr=!1}
function It (line 1) | function It(){for(var t=!0;t;)t=!1,Vt(mr),Vt(br),mr.length?t=!0:(Bi&&An....
function Vt (line 1) | function Vt(t){for(var e=0;e<t.length;e++){var i=t[e],n=i.id;_r[n]=null,...
function zt (line 1) | function zt(t){var e=t.id;if(null==_r[e]){var i=t.user?br:mr;_r[e]=i.len...
function Ut (line 1) | function Ut(t,e,i,n){n&&v(this,n);var r="function"==typeof e;if(this.vm=...
function qt (line 1) | function qt(t,e){var i=void 0,n=void 0;e||(e=Cr,e.clear());var r=Fi(t),s...
function Jt (line 1) | function Jt(t){return it(t)&&ot(t.content)}
function Qt (line 1) | function Qt(t,e){var i=e?t:t.trim(),n=xr.get(i);if(n)return n;var r=docu...
function Zt (line 1) | function Zt(t){if(Jt(t))return Qt(t.innerHTML);if("SCRIPT"===t.tagName)r...
function Gt (line 1) | function Gt(t){if(!t.querySelectorAll)return t.cloneNode();var e,i,n,r=t...
function Yt (line 1) | function Yt(t,e,i){var n,r;return ot(t)?(tt(t),e?Gt(t):t):("string"==typ...
function Xt (line 1) | function Xt(t,e,i,n,r,s){this.children=[],this.childFrags=[],this.vm=e,t...
function Kt (line 1) | function Kt(t,e){this.inserted=!0;var i=e!==!1?F:I;i(this.node,t,this.vm...
function te (line 1) | function te(){this.inserted=!1;var t=W(this.node),e=this;this.beforeRemo...
function ee (line 1) | function ee(t,e){this.inserted=!0;var i=this.vm,n=e!==!1?F:I;st(this.nod...
function ie (line 1) | function ie(){this.inserted=!1;var t=this,e=W(this.node);this.beforeRemo...
function ne (line 1) | function ne(t){!t._isAttached&&W(t.$el)&&t._callHook("attached")}
function re (line 1) | function re(t){t._isAttached&&!W(t.$el)&&t._callHook("detached")}
function se (line 1) | function se(t,e){this.vm=t;var i,n="string"==typeof e;n||it(e)&&!e.hasAt...
function ae (line 1) | function ae(t,e,i){var n=t.node.previousSibling;if(n){for(t=n.__v_frag;!...
function oe (line 1) | function oe(t){var e=t.node;if(t.end)for(;!e.__vue__&&e!==t.end&&e.nextS...
function le (line 1) | function le(t){for(var e=-1,i=new Array(Math.floor(t));++e<t;)i[e]=e;ret...
function he (line 1) | function he(t,e,i,n){return n?"$index"===n?t:n.charAt(0).match(/\w/)?Tt(...
function ce (line 1) | function ce(t,e,i){for(var n,r,s,a=e?[]:null,o=0,l=t.options.length;l>o;...
function ue (line 1) | function ue(t,e){for(var i=t.length;i--;)if(k(t[i],e))return i;return-1}
function fe (line 1) | function fe(t,e){var i=e.map(function(t){var e=t.charCodeAt(0);return e>...
function pe (line 1) | function pe(t){return function(e){return e.stopPropagation(),t.call(this...
function de (line 1) | function de(t){return function(e){return e.preventDefault(),t.call(this,...
function ve (line 1) | function ve(t){return function(e){return e.target===e.currentTarget?t.ca...
function ge (line 1) | function ge(t){if(os[t])return os[t];var e=me(t);return os[t]=os[e]=e,e}
function me (line 1) | function me(t){t=u(t);var e=h(t),i=e.charAt(0).toUpperCase()+e.slice(1);...
function be (line 1) | function be(t){var e=[];if(Fi(t))for(var i=0,n=t.length;n>i;i++){var r=t...
function _e (line 1) | function _e(t,e,i){if(e=e.trim(),-1===e.indexOf(" "))return void i(t,e);...
function ye (line 1) | function ye(t,e,i){function n(){++s>=r?i():t[s].call(e,n)}var r=t.length...
function we (line 1) | function we(t,e,i){for(var r,s,a,o,l,c,f,p=[],d=Object.keys(e),v=d.lengt...
function ke (line 1) | function ke(t){return function(e,n){e._props={};for(var r,s,h,c,f,p=e.$o...
function Ce (line 1) | function Ce(t,e,i,n){var r=e.dynamic&&Ht(e.parentPath),s=i;void 0===s&&(...
function $e (line 1) | function $e(t,e,i){Ce(t,e,i,function(i){$t(t,e.path,i)})}
function xe (line 1) | function xe(t,e,i){Ce(t,e,i,function(i){t[e.path]=i})}
function Ae (line 1) | function Ae(t,e){var n=e.options;if(!i(n,"default"))return n.type!==Bool...
function Pe (line 1) | function Pe(t,e,i){if(!t.options.required&&(null===t.raw||null==e))retur...
function Ne (line 1) | function Ne(t,e,i){var n=t.options.coerce;return n&&"function"==typeof n...
function Oe (line 1) | function Oe(t,e){var i,n;return e===String?(n="string",i=typeof t===n):e...
function Te (line 1) | function Te(t){Ns.push(t),Os||(Os=!0,Xi(je))}
function je (line 1) | function je(){for(var t=document.documentElement.offsetHeight,e=0;e<Ns.l...
function Se (line 1) | function Se(t,e,i,n){this.id=e,this.el=t,this.enterClass=i&&i.enterClass...
function Ee (line 1) | function Ee(t){if(/svg$/.test(t.namespaceURI)){var e=t.getBoundingClient...
function Fe (line 1) | function Fe(t,e,i){var n=i||!e._asComponent?Me(t,e):null,r=n&&n.terminal...
function De (line 1) | function De(t,e){e._directives=[];var i=e._directives.length;t();var n=e...
function Re (line 1) | function Re(t,e){return t=t.descriptor.def.priority||zs,e=e.descriptor.d...
function Be (line 1) | function Be(t,e,i,n){function r(r){We(t,e,r),i&&n&&We(i,n)}return r.dirs...
function We (line 1) | function We(t,e,i){for(var n=e.length;n--;)e[n]._teardown()}
function Le (line 1) | function Le(t,e,i,n){var r=we(e,i,t),s=De(function(){r(t,n)},t);return B...
function He (line 1) | function He(t,e,i){var n,r,s=e._containerAttrs,a=e._replacerAttrs;return...
function Me (line 1) | function Me(t,e){var i=t.nodeType;return 1!==i||ri(t)?3===i&&t.data.trim...
function Ie (line 1) | function Ie(t,e){if("TEXTAREA"===t.tagName){var i=O(t.value);i&&(t.setAt...
function Ve (line 1) | function Ve(t,e){if(t._skip)return ze;var i=O(t.wholeText);if(!i)return ...
function ze (line 1) | function ze(t,e){z(e)}
function Ue (line 1) | function Ue(t,e){function i(e){if(!t.descriptor){var i=A(t.value);t.desc...
function qe (line 1) | function qe(t,e){return function(i,n,r,a){for(var o,l,h,c=e.cloneNode(!0...
function Je (line 1) | function Je(t,e){for(var i,n,r,s=[],a=0,o=t.length;o>a;a++)r=t[a],i=Me(r...
function Qe (line 1) | function Qe(t){return function(e,i,n,r,s){for(var a,o,l,h=0,c=0,u=t.leng...
function Ze (line 1) | function Ze(t,e){var i=t.tagName.toLowerCase();if(!Tn.test(i)){var n=mt(...
function Ge (line 1) | function Ge(t,e){var i=ht(t,e);if(i){var n=rt(t),r={name:"component",ref...
function Ye (line 1) | function Ye(t,e,i){if(null!==L(t,"v-pre"))return Xe;if(t.hasAttribute("v...
function Xe (line 1) | function Xe(){}
function Ke (line 1) | function Ke(t,e,i,n,r,s,a,o){var l=A(i),h={name:e,arg:a,expression:l.exp...
function ti (line 1) | function ti(t,e){function i(t,e,i){var n=i&&ni(i),r=!n&&A(s);v.push({nam...
function ei (line 1) | function ei(t){var e=Object.create(null),i=t.match(Is);if(i)for(var n=i....
function ii (line 1) | function ii(t){return function(e,i,n,r,s){for(var a=t.length;a--;)e._bin...
function ni (line 1) | function ni(t){for(var e=t.length;e--;)if(t[e].oneTime)return!0}
function ri (line 1) | function ri(t){return"SCRIPT"===t.tagName&&(!t.hasAttribute("type")||"te...
function si (line 1) | function si(t,e){return e&&(e._containerAttrs=oi(t)),it(t)&&(t=Yt(t)),e&...
function ai (line 1) | function ai(t,e){var i=e.template,n=Yt(i,!0);if(n){var r=n.firstChild,s=...
function oi (line 1) | function oi(t){return 1===t.nodeType&&t.hasAttributes()?d(t.attributes):...
function li (line 1) | function li(t,e){for(var i,n,r=t.attributes,s=r.length;s--;)i=r[s].name,...
function hi (line 1) | function hi(t,e){if(e){for(var i,n,r=t._slotContents=Object.create(null)...
function ci (line 1) | function ci(t,e){var i=document.createDocumentFragment();t=d(t);for(var ...
function ui (line 1) | function ui(t){function e(){}function n(t,e){var i=new Ut(e,t,null,{lazy...
function fi (line 1) | function fi(t){function e(t,e){for(var i,n,r,s=e.attributes,a=0,o=s.leng...
function pi (line 1) | function pi(){}
function di (line 1) | function di(t,e,i,n,r,s){this.vm=e,this.el=i,this.descriptor=t,this.name...
function vi (line 1) | function vi(t){t.prototype._updateRef=function(t){var e=this.$options._r...
function gi (line 2) | function gi(t){t.prototype._applyFilters=function(t,e,i,n){var r,s,a,o,l...
function mi (line 2) | function mi(t){function i(t){return JSON.parse(JSON.stringify(t))}t.prot...
function bi (line 2) | function bi(t){function e(t,e,n,r,s,a){e=i(e);var o=!W(e),l=r===!1||o?s:...
function _i (line 2) | function _i(t){function e(t,e,n){var r=t.$parent;if(r&&n&&!i.test(e))for...
function yi (line 2) | function yi(t){function e(){this._isAttached=!0,this._isReady=!0,this._c...
function wi (line 2) | function wi(t){this._init(t)}
function ki (line 2) | function ki(t,e,i){return i=i?parseInt(i,10):0,e=a(e),"number"==typeof e...
function Ci (line 2) | function Ci(t,e,i){if(t=Ks(t),null==e)return t;if("function"==typeof e)r...
function $i (line 2) | function $i(t){function e(t,e,i){var r=n[i];return r&&("$key"!==r&&(g(t)...
function xi (line 2) | function xi(t,e){var i;if(m(t)){var n=Object.keys(t);for(i=n.length;i--;...
function Ai (line 2) | function Ai(i){function n(t){return new Function("return function "+f(t)...
function t (line 2) | function t(){n=!1;var t=i.slice(0);i=[];for(var e=0;e<t.length;e++)t[e]()}
method transitionProp (line 2) | get transitionProp(){return qi}
method transitionEndEvent (line 2) | get transitionEndEvent(){return Ji}
method animationProp (line 2) | get animationProp(){return Qi}
method animationEndEvent (line 2) | get animationEndEvent(){return Zi}
method _Set (line 2) | get _Set(){return Ki}
function i (line 2) | function i(){t.style.display=e?"":"none"}
function t (line 2) | function t(){var t=i.checked;return t&&i.hasOwnProperty("_trueValue")?i....
FILE: index.js
function includePaths (line 3) | function includePaths() {
FILE: source/js/app.js
function t (line 1) | function t(e,n,r){if(i(e,n))return void(e[n]=r);if(e._isVue)return void ...
function e (line 1) | function e(t,e){if(i(t,e)){delete t[e];var n=t.__ob__;if(!n)return void(...
function i (line 1) | function i(t,e){return Pi.call(t,e)}
function n (line 1) | function n(t){return Ni.test(t)}
function r (line 1) | function r(t){var e=(t+"").charCodeAt(0);return 36===e||95===e}
function s (line 1) | function s(t){return null==t?"":t.toString()}
function a (line 1) | function a(t){if("string"!=typeof t)return t;var e=Number(t);return isNa...
function o (line 1) | function o(t){return"true"===t||"false"!==t&&t}
function l (line 1) | function l(t){var e=t.charCodeAt(0),i=t.charCodeAt(t.length-1);return e!...
function h (line 1) | function h(t){return t.replace(Oi,c)}
function c (line 1) | function c(t,e){return e?e.toUpperCase():""}
function u (line 1) | function u(t){return t.replace(Ti,"$1-$2").toLowerCase()}
function f (line 1) | function f(t){return t.replace(ji,c)}
function p (line 1) | function p(t,e){return function(i){var n=arguments.length;return n?n>1?t...
function d (line 1) | function d(t,e){e=e||0;for(var i=t.length-e,n=new Array(i);i--;)n[i]=t[i...
function v (line 1) | function v(t,e){for(var i=Object.keys(e),n=i.length;n--;)t[i[n]]=e[i[n]]...
function g (line 1) | function g(t){return null!==t&&"object"==typeof t}
function m (line 1) | function m(t){return Si.call(t)===Ei}
function b (line 1) | function b(t,e,i,n){Object.defineProperty(t,e,{value:i,enumerable:!!n,wr...
function _ (line 1) | function _(t,e){var i,n,r,s,a,o=function l(){var o=Date.now()-s;e>o&&o>=...
function y (line 1) | function y(t,e){for(var i=t.length;i--;)if(t[i]===e)return i;return-1}
function w (line 1) | function w(t){var e=function i(){return i.cancelled?void 0:t.apply(this,...
function k (line 1) | function k(t,e){return t==e||!(!g(t)||!g(e))&&JSON.stringify(t)===JSON.s...
function C (line 1) | function C(t){this.size=0,this.limit=t,this.head=this.tail=void 0,this._...
function $ (line 1) | function $(){var t,e=en.slice(ln,an).trim();if(e){t={};var i=e.match(vn)...
function x (line 1) | function x(t){if(gn.test(t))return{value:a(t),dynamic:!1};var e=l(t),i=e...
function A (line 1) | function A(t){var e=dn.get(t);if(e)return e;for(en=t,hn=cn=!1,un=fn=pn=0...
function P (line 1) | function P(t){return t.replace(bn,"\\$&")}
function N (line 1) | function N(){var t=P(An.delimiters[0]),e=P(An.delimiters[1]),i=P(An.unsa...
function O (line 1) | function O(t){_n||N();var e=_n.get(t);if(e)return e;if(!yn.test(t))retur...
function T (line 1) | function T(t,e){return t.length>1?t.map(function(t){return j(t,e)}).join...
function j (line 1) | function j(t,e,i){return t.tag?t.oneTime&&e?'"'+e.$eval(t.value)+'"':S(t...
function S (line 1) | function S(t,e){if(kn.test(t)){var i=A(t);return i.filters?"this._applyF...
function E (line 1) | function E(t,e,i,n){R(t,1,function(){e.appendChild(t)},i,n)}
function F (line 1) | function F(t,e,i,n){R(t,1,function(){I(t,e)},i,n)}
function D (line 1) | function D(t,e,i){R(t,-1,function(){z(t)},e,i)}
function R (line 1) | function R(t,e,i,n,r){var s=t.__v_trans;if(!s||!s.hooks&&!Ji||!n._isComp...
function B (line 1) | function B(t){return"string"==typeof t&&(t=document.querySelector(t)),t}
function W (line 1) | function W(t){if(!t)return!1;var e=t.ownerDocument.documentElement,i=t.p...
function L (line 1) | function L(t,e){var i=t.getAttribute(e);return null!==i&&t.removeAttribu...
function H (line 1) | function H(t,e){var i=L(t,":"+e);return null===i&&(i=L(t,"v-bind:"+e)),i}
function M (line 1) | function M(t,e){return t.hasAttribute(e)||t.hasAttribute(":"+e)||t.hasAt...
function I (line 1) | function I(t,e){e.parentNode.insertBefore(t,e)}
function V (line 1) | function V(t,e){e.nextSibling?I(t,e.nextSibling):e.parentNode.appendChil...
function z (line 1) | function z(t){t.parentNode.removeChild(t)}
function U (line 1) | function U(t,e){e.firstChild?I(t,e.firstChild):e.appendChild(t)}
function q (line 1) | function q(t,e){var i=t.parentNode;i&&i.replaceChild(e,t)}
function J (line 1) | function J(t,e,i,n){t.addEventListener(e,i,n)}
function Q (line 1) | function Q(t,e,i){t.removeEventListener(e,i)}
function Z (line 1) | function Z(t){var e=t.className;return"object"==typeof e&&(e=e.baseVal||...
function G (line 1) | function G(t,e){Hi&&!/svg$/.test(t.namespaceURI)?t.className=e:t.setAttr...
function Y (line 1) | function Y(t,e){if(t.classList)t.classList.add(e);else{var i=" "+Z(t)+" ...
function X (line 1) | function X(t,e){if(t.classList)t.classList.remove(e);else{for(var i=" "+...
function K (line 1) | function K(t,e){var i,n;if(it(t)&&ot(t.content)&&(t=t.content),t.hasChil...
function tt (line 1) | function tt(t){for(var e;e=t.firstChild,et(e);)t.removeChild(e);for(;e=t...
function et (line 1) | function et(t){return t&&(3===t.nodeType&&!t.data.trim()||8===t.nodeType)}
function it (line 1) | function it(t){return t.tagName&&"template"===t.tagName.toLowerCase()}
function nt (line 1) | function nt(t,e){var i=An.debug?document.createComment(t):document.creat...
function rt (line 1) | function rt(t){if(t.hasAttributes())for(var e=t.attributes,i=0,n=e.lengt...
function st (line 1) | function st(t,e,i){for(var n;t!==e;)n=t.nextSibling,i(t),t=n;i(e)}
function at (line 1) | function at(t,e,i,n,r){function s(){if(o++,a&&o>=l.length){for(var t=0;t...
function ot (line 1) | function ot(t){return t&&11===t.nodeType}
function lt (line 1) | function lt(t){if(t.outerHTML)return t.outerHTML;var e=document.createEl...
function ht (line 1) | function ht(t,e){var i=t.tagName.toLowerCase(),n=t.hasAttributes();if(Tn...
function ct (line 1) | function ct(t,e){var i=t.getAttribute("is");if(null!=i){if(mt(e,"compone...
function ut (line 1) | function ut(e,n){var r,s,a;for(r in n)s=e[r],a=n[r],i(e,r)?g(s)&&g(a)&&u...
function ft (line 1) | function ft(t,e){var i=Object.create(t||null);return e?v(i,vt(e)):i}
function pt (line 1) | function pt(t){if(t.components)for(var e,i=t.components=vt(t.components)...
function dt (line 1) | function dt(t){var e,i,n=t.props;if(Fi(n))for(t.props={},e=n.length;e--;...
function vt (line 1) | function vt(t){if(Fi(t)){for(var e,i={},n=t.length;n--;){e=t[n];var r="f...
function gt (line 1) | function gt(t,e,n){function r(i){var r=Sn[i]||En;a[i]=r(t[i],e[i],n,i)}p...
function mt (line 1) | function mt(t,e,i,n){if("string"==typeof i){var r,s=t[e],a=s[i]||s[r=h(i...
function bt (line 1) | function bt(){this.id=Fn++,this.subs=[]}
function _t (line 1) | function _t(t){Wn=!1,t(),Wn=!0}
function yt (line 1) | function yt(t){if(this.value=t,this.dep=new bt,b(t,"__ob__",this),Fi(t))...
function wt (line 1) | function wt(t,e){t.__proto__=e}
function kt (line 1) | function kt(t,e,i){for(var n=0,r=i.length;r>n;n++){var s=i[n];b(t,s,e[s])}}
function Ct (line 1) | function Ct(t,e){if(t&&"object"==typeof t){var n;return i(t,"__ob__")&&t...
function $t (line 1) | function $t(t,e,i){var n=new bt,r=Object.getOwnPropertyDescriptor(t,e);i...
function xt (line 1) | function xt(t){t.prototype._init=function(t){t=t||{},this.$el=null,this....
function At (line 1) | function At(t){if(void 0===t)return"eof";var e=t.charCodeAt(0);switch(e)...
function Pt (line 1) | function Pt(t){var e=t.trim();return("0"!==t.charAt(0)||!isNaN(t))&&(n(e...
function Nt (line 1) | function Nt(t){function e(){var e=t[c+1];return u===Yn&&"'"===e||u===Xn&...
function Ot (line 1) | function Ot(t){var e=Mn.get(t);return e||(e=Nt(t),e&&Mn.put(t,e)),e}
function Tt (line 1) | function Tt(t,e){return Lt(e).get(t)}
function jt (line 1) | function jt(e,i,n){var r=e;if("string"==typeof i&&(i=Nt(i)),!i||!g(e))re...
function St (line 1) | function St(){}
function Et (line 1) | function Et(t,e){var i=vr.length;return vr[i]=e?t.replace(hr,"\\n"):t,'"...
function Ft (line 1) | function Ft(t){var e=t.charAt(0),i=t.slice(1);return sr.test(i)?t:(i=i.i...
function Dt (line 1) | function Dt(t,e){return vr[e]}
function Rt (line 1) | function Rt(t){or.test(t),vr.length=0;var e=t.replace(cr,Et).replace(lr,...
function Bt (line 1) | function Bt(t){try{return new Function("scope","return "+t+";")}catch(e)...
function Wt (line 1) | function Wt(t){var e=Ot(t);return e?function(t,i){jt(t,e,i)}:void 0}
function Lt (line 1) | function Lt(t,e){t=t.trim();var i=nr.get(t);if(i)return e&&!i.set&&(i.se...
function Ht (line 1) | function Ht(t){return fr.test(t)&&!dr.test(t)&&"Math."!==t.slice(0,5)}
function Mt (line 1) | function Mt(){mr.length=0,br.length=0,_r={},yr={},wr=!1}
function It (line 1) | function It(){for(var t=!0;t;)t=!1,Vt(mr),Vt(br),mr.length?t=!0:(Bi&&An....
function Vt (line 1) | function Vt(t){for(var e=0;e<t.length;e++){var i=t[e],n=i.id;_r[n]=null,...
function zt (line 1) | function zt(t){var e=t.id;if(null==_r[e]){var i=t.user?br:mr;_r[e]=i.len...
function Ut (line 1) | function Ut(t,e,i,n){n&&v(this,n);var r="function"==typeof e;if(this.vm=...
function qt (line 1) | function qt(t,e){var i=void 0,n=void 0;e||(e=Cr,e.clear());var r=Fi(t),s...
function Jt (line 1) | function Jt(t){return it(t)&&ot(t.content)}
function Qt (line 1) | function Qt(t,e){var i=e?t:t.trim(),n=xr.get(i);if(n)return n;var r=docu...
function Zt (line 1) | function Zt(t){if(Jt(t))return Qt(t.innerHTML);if("SCRIPT"===t.tagName)r...
function Gt (line 1) | function Gt(t){if(!t.querySelectorAll)return t.cloneNode();var e,i,n,r=t...
function Yt (line 1) | function Yt(t,e,i){var n,r;return ot(t)?(tt(t),e?Gt(t):t):("string"==typ...
function Xt (line 1) | function Xt(t,e,i,n,r,s){this.children=[],this.childFrags=[],this.vm=e,t...
function Kt (line 1) | function Kt(t,e){this.inserted=!0;var i=e!==!1?F:I;i(this.node,t,this.vm...
function te (line 1) | function te(){this.inserted=!1;var t=W(this.node),e=this;this.beforeRemo...
function ee (line 1) | function ee(t,e){this.inserted=!0;var i=this.vm,n=e!==!1?F:I;st(this.nod...
function ie (line 1) | function ie(){this.inserted=!1;var t=this,e=W(this.node);this.beforeRemo...
function ne (line 1) | function ne(t){!t._isAttached&&W(t.$el)&&t._callHook("attached")}
function re (line 1) | function re(t){t._isAttached&&!W(t.$el)&&t._callHook("detached")}
function se (line 1) | function se(t,e){this.vm=t;var i,n="string"==typeof e;n||it(e)&&!e.hasAt...
function ae (line 1) | function ae(t,e,i){var n=t.node.previousSibling;if(n){for(t=n.__v_frag;!...
function oe (line 1) | function oe(t){var e=t.node;if(t.end)for(;!e.__vue__&&e!==t.end&&e.nextS...
function le (line 1) | function le(t){for(var e=-1,i=new Array(Math.floor(t));++e<t;)i[e]=e;ret...
function he (line 1) | function he(t,e,i,n){return n?"$index"===n?t:n.charAt(0).match(/\w/)?Tt(...
function ce (line 1) | function ce(t,e,i){for(var n,r,s,a=e?[]:null,o=0,l=t.options.length;l>o;...
function ue (line 1) | function ue(t,e){for(var i=t.length;i--;)if(k(t[i],e))return i;return-1}
function fe (line 1) | function fe(t,e){var i=e.map(function(t){var e=t.charCodeAt(0);return e>...
function pe (line 1) | function pe(t){return function(e){return e.stopPropagation(),t.call(this...
function de (line 1) | function de(t){return function(e){return e.preventDefault(),t.call(this,...
function ve (line 1) | function ve(t){return function(e){return e.target===e.currentTarget?t.ca...
function ge (line 1) | function ge(t){if(os[t])return os[t];var e=me(t);return os[t]=os[e]=e,e}
function me (line 1) | function me(t){t=u(t);var e=h(t),i=e.charAt(0).toUpperCase()+e.slice(1);...
function be (line 1) | function be(t){var e=[];if(Fi(t))for(var i=0,n=t.length;n>i;i++){var r=t...
function _e (line 1) | function _e(t,e,i){if(e=e.trim(),-1===e.indexOf(" "))return void i(t,e);...
function ye (line 1) | function ye(t,e,i){function n(){++s>=r?i():t[s].call(e,n)}var r=t.length...
function we (line 1) | function we(t,e,i){for(var r,s,a,o,l,c,f,p=[],d=Object.keys(e),v=d.lengt...
function ke (line 1) | function ke(t){return function(e,n){e._props={};for(var r,s,h,c,f,p=e.$o...
function Ce (line 1) | function Ce(t,e,i,n){var r=e.dynamic&&Ht(e.parentPath),s=i;void 0===s&&(...
function $e (line 1) | function $e(t,e,i){Ce(t,e,i,function(i){$t(t,e.path,i)})}
function xe (line 1) | function xe(t,e,i){Ce(t,e,i,function(i){t[e.path]=i})}
function Ae (line 1) | function Ae(t,e){var n=e.options;if(!i(n,"default"))return n.type!==Bool...
function Pe (line 1) | function Pe(t,e,i){if(!t.options.required&&(null===t.raw||null==e))retur...
function Ne (line 1) | function Ne(t,e,i){var n=t.options.coerce;return n&&"function"==typeof n...
function Oe (line 1) | function Oe(t,e){var i,n;return e===String?(n="string",i=typeof t===n):e...
function Te (line 1) | function Te(t){Ns.push(t),Os||(Os=!0,Xi(je))}
function je (line 1) | function je(){for(var t=document.documentElement.offsetHeight,e=0;e<Ns.l...
function Se (line 1) | function Se(t,e,i,n){this.id=e,this.el=t,this.enterClass=i&&i.enterClass...
function Ee (line 1) | function Ee(t){if(/svg$/.test(t.namespaceURI)){var e=t.getBoundingClient...
function Fe (line 1) | function Fe(t,e,i){var n=i||!e._asComponent?Me(t,e):null,r=n&&n.terminal...
function De (line 1) | function De(t,e){e._directives=[];var i=e._directives.length;t();var n=e...
function Re (line 1) | function Re(t,e){return t=t.descriptor.def.priority||zs,e=e.descriptor.d...
function Be (line 1) | function Be(t,e,i,n){function r(r){We(t,e,r),i&&n&&We(i,n)}return r.dirs...
function We (line 1) | function We(t,e,i){for(var n=e.length;n--;)e[n]._teardown()}
function Le (line 1) | function Le(t,e,i,n){var r=we(e,i,t),s=De(function(){r(t,n)},t);return B...
function He (line 1) | function He(t,e,i){var n,r,s=e._containerAttrs,a=e._replacerAttrs;return...
function Me (line 1) | function Me(t,e){var i=t.nodeType;return 1!==i||ri(t)?3===i&&t.data.trim...
function Ie (line 1) | function Ie(t,e){if("TEXTAREA"===t.tagName){var i=O(t.value);i&&(t.setAt...
function Ve (line 1) | function Ve(t,e){if(t._skip)return ze;var i=O(t.wholeText);if(!i)return ...
function ze (line 1) | function ze(t,e){z(e)}
function Ue (line 1) | function Ue(t,e){function i(e){if(!t.descriptor){var i=A(t.value);t.desc...
function qe (line 1) | function qe(t,e){return function(i,n,r,a){for(var o,l,h,c=e.cloneNode(!0...
function Je (line 1) | function Je(t,e){for(var i,n,r,s=[],a=0,o=t.length;o>a;a++)r=t[a],i=Me(r...
function Qe (line 1) | function Qe(t){return function(e,i,n,r,s){for(var a,o,l,h=0,c=0,u=t.leng...
function Ze (line 1) | function Ze(t,e){var i=t.tagName.toLowerCase();if(!Tn.test(i)){var n=mt(...
function Ge (line 1) | function Ge(t,e){var i=ht(t,e);if(i){var n=rt(t),r={name:"component",ref...
function Ye (line 1) | function Ye(t,e,i){if(null!==L(t,"v-pre"))return Xe;if(t.hasAttribute("v...
function Xe (line 1) | function Xe(){}
function Ke (line 1) | function Ke(t,e,i,n,r,s,a,o){var l=A(i),h={name:e,arg:a,expression:l.exp...
function ti (line 1) | function ti(t,e){function i(t,e,i){var n=i&&ni(i),r=!n&&A(s);v.push({nam...
function ei (line 1) | function ei(t){var e=Object.create(null),i=t.match(Is);if(i)for(var n=i....
function ii (line 1) | function ii(t){return function(e,i,n,r,s){for(var a=t.length;a--;)e._bin...
function ni (line 1) | function ni(t){for(var e=t.length;e--;)if(t[e].oneTime)return!0}
function ri (line 1) | function ri(t){return"SCRIPT"===t.tagName&&(!t.hasAttribute("type")||"te...
function si (line 1) | function si(t,e){return e&&(e._containerAttrs=oi(t)),it(t)&&(t=Yt(t)),e&...
function ai (line 1) | function ai(t,e){var i=e.template,n=Yt(i,!0);if(n){var r=n.firstChild,s=...
function oi (line 1) | function oi(t){return 1===t.nodeType&&t.hasAttributes()?d(t.attributes):...
function li (line 1) | function li(t,e){for(var i,n,r=t.attributes,s=r.length;s--;)i=r[s].name,...
function hi (line 1) | function hi(t,e){if(e){for(var i,n,r=t._slotContents=Object.create(null)...
function ci (line 1) | function ci(t,e){var i=document.createDocumentFragment();t=d(t);for(var ...
function ui (line 1) | function ui(t){function e(){}function n(t,e){var i=new Ut(e,t,null,{lazy...
function fi (line 1) | function fi(t){function e(t,e){for(var i,n,r,s=e.attributes,a=0,o=s.leng...
function pi (line 1) | function pi(){}
function di (line 1) | function di(t,e,i,n,r,s){this.vm=e,this.el=i,this.descriptor=t,this.name...
function vi (line 1) | function vi(t){t.prototype._updateRef=function(t){var e=this.$options._r...
function gi (line 2) | function gi(t){t.prototype._applyFilters=function(t,e,i,n){var r,s,a,o,l...
function mi (line 2) | function mi(t){function i(t){return JSON.parse(JSON.stringify(t))}t.prot...
function bi (line 2) | function bi(t){function e(t,e,n,r,s,a){e=i(e);var o=!W(e),l=r===!1||o?s:...
function _i (line 2) | function _i(t){function e(t,e,n){var r=t.$parent;if(r&&n&&!i.test(e))for...
function yi (line 2) | function yi(t){function e(){this._isAttached=!0,this._isReady=!0,this._c...
function wi (line 2) | function wi(t){this._init(t)}
function ki (line 2) | function ki(t,e,i){return i=i?parseInt(i,10):0,e=a(e),"number"==typeof e...
function Ci (line 2) | function Ci(t,e,i){if(t=Ks(t),null==e)return t;if("function"==typeof e)r...
function $i (line 2) | function $i(t){function e(t,e,i){var r=n[i];return r&&("$key"!==r&&(g(t)...
function xi (line 2) | function xi(t,e){var i;if(m(t)){var n=Object.keys(t);for(i=n.length;i--;...
function Ai (line 2) | function Ai(i){function n(t){return new Function("return function "+f(t)...
function t (line 2) | function t(){n=!1;var t=i.slice(0);i=[];for(var e=0;e<t.length;e++)t[e]()}
method transitionProp (line 2) | get transitionProp(){return qi}
method transitionEndEvent (line 2) | get transitionEndEvent(){return Ji}
method animationProp (line 2) | get animationProp(){return Qi}
method animationEndEvent (line 2) | get animationEndEvent(){return Zi}
method _Set (line 2) | get _Set(){return Ki}
function i (line 2) | function i(){t.style.display=e?"":"none"}
function t (line 2) | function t(){var t=i.checked;return t&&i.hasOwnProperty("_trueValue")?i....
Condensed preview — 103 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (1,364K chars).
[
{
"path": ".gitignore",
"chars": 56,
"preview": "build_local\nnode_modules\nvendor\nnpm-debug.log\n.DS_Store\n"
},
{
"path": ".npmignore",
"chars": 79,
"preview": "/build_local/\n/build_production/\n/node_modules/\n/source/\nconfig.php\ngulpfile.js"
},
{
"path": "LICENSE",
"chars": 1080,
"preview": "The MIT License (MIT)\n\nCopyright (c) 2014 David Hemphill\n\nPermission is hereby granted, free of charge, to any person ob"
},
{
"path": "README.md",
"chars": 1469,
"preview": "Beard\n=====\n\n[](https:/"
},
{
"path": "beard.scss",
"chars": 505,
"preview": "@import 'stylesheets/beard.before';\n\n// Custom colors, breakpoints and spacing helpers\n//-------------------------------"
},
{
"path": "bower.json",
"chars": 554,
"preview": "{\n \"name\": \"beard\",\n \"description\": \"A CSS framework for people with better things to do\",\n \"main\": [\n \"beard.sc"
},
{
"path": "build_production/CNAME",
"chars": 18,
"preview": "buildwithbeard.com"
},
{
"path": "build_production/border-radius/index.html",
"chars": 11763,
"preview": "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width="
},
{
"path": "build_production/borders/index.html",
"chars": 11618,
"preview": "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width="
},
{
"path": "build_production/colors/index.html",
"chars": 18897,
"preview": "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width="
},
{
"path": "build_production/configuration/index.html",
"chars": 13564,
"preview": "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width="
},
{
"path": "build_production/css/main.css",
"chars": 225919,
"preview": "a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,d"
},
{
"path": "build_production/css/vendor.css",
"chars": 1571,
"preview": "code[class*=language-],pre[class*=language-]{color:#777;font-family:Menlo,Consolas,Bitstream Vera Sans Mono,Courier New,"
},
{
"path": "build_production/display/index.html",
"chars": 11548,
"preview": "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width="
},
{
"path": "build_production/examples/index.html",
"chars": 12925,
"preview": "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width="
},
{
"path": "build_production/flexbox/index.html",
"chars": 15528,
"preview": "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width="
},
{
"path": "build_production/floats/index.html",
"chars": 11327,
"preview": "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width="
},
{
"path": "build_production/fonts/index.html",
"chars": 18509,
"preview": "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width="
},
{
"path": "build_production/grid/index.html",
"chars": 15000,
"preview": "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width="
},
{
"path": "build_production/index.html",
"chars": 11588,
"preview": "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width="
},
{
"path": "build_production/installation/index.html",
"chars": 11829,
"preview": "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width="
},
{
"path": "build_production/js/app.js",
"chars": 91482,
"preview": "!function(t,e){\"object\"==typeof exports&&\"undefined\"!=typeof module?module.exports=e():\"function\"==typeof define&&define"
},
{
"path": "build_production/letter-spacing/index.html",
"chars": 12293,
"preview": "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width="
},
{
"path": "build_production/line-heights/index.html",
"chars": 13032,
"preview": "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width="
},
{
"path": "build_production/misc/index.html",
"chars": 13438,
"preview": "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width="
},
{
"path": "build_production/overflow/index.html",
"chars": 10615,
"preview": "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width="
},
{
"path": "build_production/philosophy/index.html",
"chars": 13163,
"preview": "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width="
},
{
"path": "build_production/position/index.html",
"chars": 11406,
"preview": "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width="
},
{
"path": "build_production/reset-and-base/index.html",
"chars": 11246,
"preview": "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width="
},
{
"path": "build_production/responsive-prefixes/index.html",
"chars": 13997,
"preview": "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width="
},
{
"path": "build_production/spacing/index.html",
"chars": 13871,
"preview": "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width="
},
{
"path": "build_production/text-alignment/index.html",
"chars": 11090,
"preview": "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width="
},
{
"path": "build_production/tools/index.html",
"chars": 13132,
"preview": "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width="
},
{
"path": "config.php",
"chars": 46,
"preview": "<?php\n\nreturn [\n 'production' => false,\n];\n"
},
{
"path": "dist/beard.css",
"chars": 239422,
"preview": "a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,d"
},
{
"path": "gulpfile.js",
"chars": 692,
"preview": "var gulp = require('gulp');\nvar elixir = require('laravel-elixir');\nvar argv = require('yargs').argv;\n\nelixir.config.ass"
},
{
"path": "index.js",
"chars": 339,
"preview": "var path = require('path');\n\nfunction includePaths() {\n return [path.join(__dirname, 'stylesheets')];\n}\n\nmodule.expor"
},
{
"path": "package.json",
"chars": 1044,
"preview": "{\n \"name\": \"beardcss\",\n \"version\": \"2.2.4\",\n \"description\": \"A CSS framework for people with better things to do\",\n "
},
{
"path": "source/CNAME",
"chars": 18,
"preview": "buildwithbeard.com"
},
{
"path": "source/_assets/css/prism-ghcolors.css",
"chars": 2131,
"preview": "/**\n * GHColors theme by Avi Aryan (http://aviaryan.in)\n * Inspired by Github syntax coloring\n */\n\ncode[class*=\"language"
},
{
"path": "source/_assets/css/prism.css",
"chars": 2131,
"preview": "/**\n * GHColors theme by Avi Aryan (http://aviaryan.in)\n * Inspired by Github syntax coloring\n */\n\ncode[class*=\"language"
},
{
"path": "source/_assets/js/main.js",
"chars": 77,
"preview": "new Vue({\n el: 'body',\n data: {\n sidebarVisible: false,\n }\n})"
},
{
"path": "source/_assets/js/prism.js",
"chars": 14978,
"preview": "/* http://prismjs.com/download.html?themes=prism&languages=markup+css+clike+javascript+coffeescript+php+sass+scss&plugin"
},
{
"path": "source/_assets/sass/main.scss",
"chars": 2892,
"preview": "// Settings\n//-------------------------------------------------------------------------- */\n@import '../../../stylesheet"
},
{
"path": "source/_layouts/master.blade.php",
"chars": 865,
"preview": "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width="
},
{
"path": "source/_layouts/subpage.blade.php",
"chars": 179,
"preview": "@extends('_layouts.master')\n@section('content')\n<div class=\"wrap wrap--pad\">\n <div class=\"main-content md-ph6 pv3 md-"
},
{
"path": "source/_partials/_footer.blade.php",
"chars": 585,
"preview": "<footer class=\"wrap wrap--pad brdr1--top bcg10 pv4\">\n <div class=\"frame\">\n <div class=\"blk mb2 md-xmb\">\n "
},
{
"path": "source/_partials/_header.blade.php",
"chars": 1176,
"preview": "<header class=\"main-header\">\n <div class=\"flex jcsb aic pv1 md-pv2 ph3\">\n <div class=\"flex aic\">\n <"
},
{
"path": "source/_partials/_sidebar.blade.php",
"chars": 3675,
"preview": "<aside class=\"w100 brdr1--right bcg10\" :class=\"{ 'brdr1--top bcg10': sidebarVisible }\">\n <div class=\"ph2\">\n <h"
},
{
"path": "source/border-radius.md",
"chars": 1949,
"preview": "---\nextends: _layouts.subpage\nsection: subpage_content\n---\n<h2 class=\"tcg50 ft10 fw3 mb2 md-mb3\">Border Radius Helpers</"
},
{
"path": "source/borders.md",
"chars": 1805,
"preview": "---\nextends: _layouts.subpage\nsection: subpage_content\n---\n<h2 class=\"tcg50 ft10 fw3 mb2 md-mb3\">Borders</h2>\n<p class=\""
},
{
"path": "source/colors.md",
"chars": 8983,
"preview": "---\nextends: _layouts.subpage\nsection: subpage_content\n---\n\n<h3 class=\"tcg50 ft7 md-ft10 fw3 mb2 md-mb4\">Color Helpers</"
},
{
"path": "source/configuration.md",
"chars": 3750,
"preview": "---\nextends: _layouts.subpage\nsection: subpage_content\n---\n<h2 class=\"tcg50 ft10 fw3 mb2 md-mb3\">Configuration</h2>\n<p c"
},
{
"path": "source/css/main.css",
"chars": 225919,
"preview": "a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,d"
},
{
"path": "source/css/vendor.css",
"chars": 1571,
"preview": "code[class*=language-],pre[class*=language-]{color:#777;font-family:Menlo,Consolas,Bitstream Vera Sans Mono,Courier New,"
},
{
"path": "source/display.md",
"chars": 1684,
"preview": "---\nextends: _layouts.subpage\nsection: subpage_content\n---\n<h3 class=\"tcg50 ft7 md-ft10 fw3 mb2 md-mb3 flex aic acc\">Dis"
},
{
"path": "source/examples.md",
"chars": 2837,
"preview": "---\nextends: _layouts.subpage\nsection: subpage_content\n---\n\n<div class=\"frame mb4\">\n <div class=\"blk8\">\n <div "
},
{
"path": "source/flexbox.md",
"chars": 5719,
"preview": "---\nextends: _layouts.subpage\nsection: subpage_content\n---\n<h2 class=\"tcg50 ft10 fw3 mb2 md-mb3 flex aic acc\">Flexbox <a"
},
{
"path": "source/floats.md",
"chars": 1445,
"preview": "---\nextends: _layouts.subpage\nsection: subpage_content\n---\n<h3 class=\"tcg50 ft7 md-ft10 fw3 mb2 md-mb3 flex aic acc\">Flo"
},
{
"path": "source/fonts.md",
"chars": 8569,
"preview": "---\nextends: _layouts.subpage\nsection: subpage_content\n---\n<h3 class=\"tcg50 ft7 md-ft10 fw3 mb2 md-mb3 flex aic acc\">Fon"
},
{
"path": "source/grid.md",
"chars": 5193,
"preview": "---\nextends: _layouts.subpage\nsection: subpage_content\n---\n<h2 class=\"tcg50 ft10 fw3 mb2 md-mb3 flex aic acc\">Grid <a cl"
},
{
"path": "source/index.md",
"chars": 1661,
"preview": "---\nextends: _layouts.subpage\nsection: subpage_content\n---\n<h2 class=\"tcg50 ft10 fw3 mb2 md-mb3\">Quickstart</h2>\n\n<h3 cl"
},
{
"path": "source/installation.md",
"chars": 1916,
"preview": "---\nextends: _layouts.subpage\nsection: subpage_content\n---\n<h2 class=\"tcg50 ft10 fw3 mb2 md-mb3\">Installation</h2>\n\n<h3 "
},
{
"path": "source/js/app.js",
"chars": 91482,
"preview": "!function(t,e){\"object\"==typeof exports&&\"undefined\"!=typeof module?module.exports=e():\"function\"==typeof define&&define"
},
{
"path": "source/letter-spacing.md",
"chars": 2436,
"preview": "---\nextends: _layouts.subpage\nsection: subpage_content\n---\n<h3 class=\"tcg50 ft7 md-ft10 fw3 mb2 md-mb3 flex aic acc\">Let"
},
{
"path": "source/line-heights.md",
"chars": 3175,
"preview": "---\nextends: _layouts.subpage\nsection: subpage_content\n---\n<h3 class=\"tcg50 ft7 md-ft10 fw3 mb2 md-mb3 flex aic acc\">Lin"
},
{
"path": "source/misc.md",
"chars": 3626,
"preview": "---\nextends: _layouts.subpage\nsection: subpage_content\n---\n<h3 class=\"tcg50 ft7 md-ft10 fw3 mb2 md-mb3 flex aic acc\">Mis"
},
{
"path": "source/overflow.md",
"chars": 800,
"preview": "---\nextends: _layouts.subpage\nsection: subpage_content\n---\n<h3 class=\"tcg50 ft7 md-ft10 fw3 mb2 md-mb3 flex aic acc\">Ove"
},
{
"path": "source/philosophy.md",
"chars": 3165,
"preview": "---\nextends: _layouts.subpage\nsection: subpage_content\n---\n<h2 class=\"tcg50 ft10 fw3 mb2 md-mb3\">Philosophy</h2>\n<p clas"
},
{
"path": "source/position.md",
"chars": 1591,
"preview": "---\nextends: _layouts.subpage\nsection: subpage_content\n---\n<h3 class=\"tcg50 ft7 md-ft10 fw3 mb2 md-mb3 flex aic acc\">Pos"
},
{
"path": "source/reset-and-base.md",
"chars": 1366,
"preview": "---\nextends: _layouts.subpage\nsection: subpage_content\n---\n<h2 class=\"tcg50 ft10 fw3 mb2 md-mb3\">Reset & Base</h2>\n<"
},
{
"path": "source/responsive-prefixes.md",
"chars": 4061,
"preview": "---\nextends: _layouts.subpage\nsection: subpage_content\n---\n<h2 class=\"tcg50 ft10 fw3 mb2 md-mb3 flex aic acc\">Responsive"
},
{
"path": "source/spacing.md",
"chars": 3975,
"preview": "---\nextends: _layouts.subpage\nsection: subpage_content\n---\n<h3 class=\"tcg50 ft7 md-ft10 fw3 mb2 md-mb3 flex aic acc\">Spa"
},
{
"path": "source/text-alignment.md",
"chars": 1233,
"preview": "---\nextends: _layouts.subpage\nsection: subpage_content\n---\n<h3 class=\"tcg50 ft7 md-ft10 fw3 mb2 md-mb3 flex aic acc\">Tex"
},
{
"path": "source/tools.md",
"chars": 3089,
"preview": "---\nextends: _layouts.subpage\nsection: subpage_content\n---\n\n<h2 class=\"tcg50 ft10 fw3 mb2 md-mb3\">Tools</h2>\n<p class=\"t"
},
{
"path": "stylesheets/_base.scss",
"chars": 1151,
"preview": "@if $beard-base == true {\n // Base Elements\n //-----------------------------------------------------------------------"
},
{
"path": "stylesheets/_beard.after.scss",
"chars": 505,
"preview": "// Helpers\n//-------------------------------------------------------------------------- */\n@import 'helpers.text-align';"
},
{
"path": "stylesheets/_beard.before.scss",
"chars": 619,
"preview": "// Settings\n//-------------------------------------------------------------------------- */\n@import 'settings';\n@import "
},
{
"path": "stylesheets/_generic.reset.scss",
"chars": 1757,
"preview": "@if $beard-reset == true {\n a,\n abbr,\n acronym,\n address,\n applet,\n article,\n aside,\n audio,\n b,\n big,\n block"
},
{
"path": "stylesheets/_helpers.border-radius.scss",
"chars": 845,
"preview": "// Border Radius Helpers\n// ------------------------------------------------------------------------------------\n@for $i"
},
{
"path": "stylesheets/_helpers.borders.scss",
"chars": 647,
"preview": "// Border Helpers\n// -------------------------------------------------------------------------- */\n@for $i from 0 throug"
},
{
"path": "stylesheets/_helpers.colors.scss",
"chars": 1305,
"preview": "// Loop through Brand Colors and output classes for each type\n//--------------------------------------------------------"
},
{
"path": "stylesheets/_helpers.display.scss",
"chars": 1133,
"preview": "// Display Helpers\n// ------------------------------------------------------------------------------------\n.db { display"
},
{
"path": "stylesheets/_helpers.flex.scss",
"chars": 5375,
"preview": "// Flexbox Helpers\n// ------------------------------------------------------------------------------------ */\n.flex { di"
},
{
"path": "stylesheets/_helpers.floats.scss",
"chars": 614,
"preview": "// Float Helpers\n// ------------------------------------------------------------------------------------\n.fl { float: le"
},
{
"path": "stylesheets/_helpers.fonts.scss",
"chars": 1038,
"preview": "// Font Size Helpers\n// ------------------------------------------------------------------------------------ */\n@each $n"
},
{
"path": "stylesheets/_helpers.grid.scss",
"chars": 3885,
"preview": "// Response Flexbox Grid\n//-------------------------------------------------------------------------- */\n.wrap {\n mar"
},
{
"path": "stylesheets/_helpers.letter-spacing.scss",
"chars": 946,
"preview": "// Letter-spacing Options\n// ------------------------------------------------------------------------------------ */\n// "
},
{
"path": "stylesheets/_helpers.line-heights.scss",
"chars": 1522,
"preview": "// Line Height Helpers\n// ------------------------------------------------------------------------------------ */\n.lh1 {"
},
{
"path": "stylesheets/_helpers.misc.scss",
"chars": 2492,
"preview": "// Misceallaneous Helpers\n//-------------------------------------------------------------------------- */\n\n// Center\n//-"
},
{
"path": "stylesheets/_helpers.overflow.scss",
"chars": 217,
"preview": "// Overflow Helpers\n//-------------------------------------------------------------------------- */\n.ofh { overflow: hid"
},
{
"path": "stylesheets/_helpers.position.scss",
"chars": 480,
"preview": "// Position Helpers\n//-------------------------------------------------------------------------\n.relative { position: re"
},
{
"path": "stylesheets/_helpers.spacing.scss",
"chars": 5630,
"preview": "// Add the zero spacing helper manually so it's last in the source order\n@include new-spacing-helper(0);\n\n// Spacing Hel"
},
{
"path": "stylesheets/_helpers.text-align.scss",
"chars": 563,
"preview": "// Text Aligment Helpers\n// ------------------------------------------------------------------------------------\n.tal { "
},
{
"path": "stylesheets/_objects.media.scss",
"chars": 336,
"preview": "// Media Object\n//-------------------------------------------------------------------------- */\n.media {\n display: flex"
},
{
"path": "stylesheets/_settings.colors.scss",
"chars": 3668,
"preview": "// Global Colors\n// ------------------------------------------------------------------------------------ */\n$white: #fff"
},
{
"path": "stylesheets/_settings.scss",
"chars": 4364,
"preview": "// Settings\n//-------------------------------------------------------------------------- */\n// This file contains all of"
},
{
"path": "stylesheets/_tools.appearance.scss",
"chars": 219,
"preview": "// Appearance\n// ------------------------------------------------------------------------------------ */\n@mixin appearan"
},
{
"path": "stylesheets/_tools.breakpoints.scss",
"chars": 303,
"preview": "@mixin media($thepoint) {\n $feature: 'screen and ';\n $value: map-get($breakpoints, $thepoint);\n $media-query: $"
},
{
"path": "stylesheets/_tools.colors.scss",
"chars": 213,
"preview": "// Color Tools\n//-------------------------------------------------------------------------- */\n@mixin new-color($label, "
},
{
"path": "stylesheets/_tools.font-size.scss",
"chars": 249,
"preview": "// Font Size Mixin\n//-------------------------------------------------------------------------- */\n@function font-size($"
},
{
"path": "stylesheets/_tools.spacing.scss",
"chars": 474,
"preview": "// Tools to Generate Responsive Spacing Helpers\n//----------------------------------------------------------------------"
},
{
"path": "stylesheets/_tools.user-drag.scss",
"chars": 239,
"preview": "// Prevent the user from dragging the image\n// -------------------------------------------------------------------------"
}
]
About this extraction
This page contains the full source code of the monarkee/beard GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 103 files (1.3 MB), approximately 441.3k tokens, and a symbol index with 395 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.