jekyll-theme-primer 0.1.7 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/_layouts/default.html +1 -1
 - data/_sass/jekyll-theme-primer.scss +0 -1
 - data/_sass/primer-base/CHANGELOG.md +20 -0
 - data/_sass/primer-base/README.md +1 -1
 - data/_sass/primer-base/build/build.css +1 -2
 - data/_sass/primer-base/build/index.js +1 -0
 - data/_sass/primer-base/index.scss +1 -1
 - data/_sass/primer-base/lib/base.scss +1 -0
 - data/_sass/{normalize.css → primer-base/lib}/normalize.scss +6 -2
 - data/_sass/primer-base/lib/typography-base.scss +1 -1
 - data/_sass/primer-base/package.json +36 -34
 - data/_sass/primer-layout/CHANGELOG.md +19 -0
 - data/_sass/primer-layout/README.md +3 -7
 - data/_sass/primer-layout/build/build.css +1 -2
 - data/_sass/primer-layout/build/index.js +1 -0
 - data/_sass/primer-layout/index.scss +1 -0
 - data/_sass/primer-layout/lib/grid.scss +0 -1
 - data/_sass/primer-layout/package.json +35 -32
 - data/_sass/primer-markdown/CHANGELOG.md +29 -0
 - data/_sass/primer-markdown/README.md +1 -6
 - data/_sass/primer-markdown/build/build.css +1 -2
 - data/_sass/primer-markdown/build/index.js +1 -0
 - data/_sass/primer-markdown/lib/blob-csv.scss +3 -3
 - data/_sass/primer-markdown/lib/code.scss +2 -2
 - data/_sass/primer-markdown/lib/headings.scss +4 -4
 - data/_sass/primer-markdown/lib/images.scss +3 -3
 - data/_sass/primer-markdown/lib/lists.scss +1 -1
 - data/_sass/primer-markdown/lib/markdown-body.scss +9 -9
 - data/_sass/primer-markdown/lib/tables.scss +9 -5
 - data/_sass/primer-markdown/package.json +34 -31
 - data/_sass/primer-support/CHANGELOG.md +85 -0
 - data/_sass/primer-support/README.md +1 -1
 - data/_sass/primer-support/index.scss +5 -1
 - data/_sass/primer-support/lib/mixins/buttons.scss +156 -0
 - data/_sass/primer-support/lib/mixins/misc.scss +1 -1
 - data/_sass/primer-support/lib/mixins/typography.scss +4 -4
 - data/_sass/primer-support/lib/variables/color-system.scss +114 -0
 - data/_sass/primer-support/lib/variables/colors.scss +64 -0
 - data/_sass/primer-support/lib/variables/layout.scss +58 -0
 - data/_sass/primer-support/lib/variables/misc.scss +45 -0
 - data/_sass/primer-support/lib/variables/typography.scss +35 -0
 - data/_sass/primer-support/package.json +33 -29
 - data/_sass/primer-utilities/CHANGELOG.md +130 -0
 - data/_sass/primer-utilities/README.md +2 -2
 - data/_sass/primer-utilities/build/build.css +1 -2
 - data/_sass/primer-utilities/build/index.js +1 -2
 - data/_sass/primer-utilities/index.scss +5 -1
 - data/_sass/primer-utilities/lib/animations.scss +8 -11
 - data/_sass/primer-utilities/lib/borders.scss +61 -0
 - data/_sass/primer-utilities/lib/box-shadow.scss +26 -0
 - data/_sass/primer-utilities/lib/colors.scss +72 -10
 - data/_sass/primer-utilities/lib/flexbox.scss +80 -0
 - data/_sass/primer-utilities/lib/layout.scss +37 -50
 - data/_sass/primer-utilities/lib/margin.scss +37 -9
 - data/_sass/primer-utilities/lib/padding.scss +16 -3
 - data/_sass/primer-utilities/lib/typography.scss +65 -9
 - data/_sass/primer-utilities/lib/visibility-display.scss +95 -0
 - data/_sass/primer-utilities/package.json +35 -35
 - metadata +17 -10
 - data/_sass/normalize.css/CHANGELOG.md +0 -135
 - data/_sass/normalize.css/LICENSE.md +0 -21
 - data/_sass/normalize.css/README.md +0 -128
 - data/_sass/normalize.css/package.json +0 -111
 - data/_sass/primer-support/lib/variables.scss +0 -179
 - data/_sass/primer-utilities/lib/border.scss +0 -29
 
| 
         @@ -0,0 +1,45 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            // Miscellaneous variables
         
     | 
| 
      
 2 
     | 
    
         
            +
            // stylelint-disable declaration-bang-space-before
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            // Border size
         
     | 
| 
      
 5 
     | 
    
         
            +
            $border-width: 1px !default;
         
     | 
| 
      
 6 
     | 
    
         
            +
            $border-color: $border-gray !default;
         
     | 
| 
      
 7 
     | 
    
         
            +
            $border-style: solid !default;
         
     | 
| 
      
 8 
     | 
    
         
            +
            $border: $border-width $border-color $border-style !default;
         
     | 
| 
      
 9 
     | 
    
         
            +
            $border-radius: 3px !default;
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            // Custom explore grid border
         
     | 
| 
      
 12 
     | 
    
         
            +
            $exploregrid-item-border-radius: 4px;
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
            // Box shadow
         
     | 
| 
      
 15 
     | 
    
         
            +
            $box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1) !default;
         
     | 
| 
      
 16 
     | 
    
         
            +
            $box-shadow-medium: 0 1px 5px rgba(0, 0, 0, 0.15) !default;
         
     | 
| 
      
 17 
     | 
    
         
            +
            $box-shadow-large: 0 1px 15px rgba(0, 0, 0, 0.15) !default;
         
     | 
| 
      
 18 
     | 
    
         
            +
            $box-shadow-extra-large: 0 10px 50px rgba(0, 0, 0, 0.05) !default;
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
      
 20 
     | 
    
         
            +
            // Tooltips
         
     | 
| 
      
 21 
     | 
    
         
            +
            $tooltip-max-width: 250px !default;
         
     | 
| 
      
 22 
     | 
    
         
            +
            $tooltip-background-color: rgba(0, 0, 0, 0.8) !default;
         
     | 
| 
      
 23 
     | 
    
         
            +
            $tooltip-text-color: #fff !default;
         
     | 
| 
      
 24 
     | 
    
         
            +
            $tooltip-delay: 0.4s !default;
         
     | 
| 
      
 25 
     | 
    
         
            +
            $tooltip-duration: 0.1s !default;
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
            // Should be moved into custom github css
         
     | 
| 
      
 28 
     | 
    
         
            +
            $stats-switcher-py: 10px;
         
     | 
| 
      
 29 
     | 
    
         
            +
            // Future proof this `height` value by finding the computed line-height, then
         
     | 
| 
      
 30 
     | 
    
         
            +
            // adding the total value of the vertical padding. This var is used to toggle
         
     | 
| 
      
 31 
     | 
    
         
            +
            // between the stats bar and language breakdown.
         
     | 
| 
      
 32 
     | 
    
         
            +
            $stats-viewport-height: ($body-font-size * $body-line-height) + ($stats-switcher-py * 2);
         
     | 
| 
      
 33 
     | 
    
         
            +
             
     | 
| 
      
 34 
     | 
    
         
            +
            $min_tab_size: 1;
         
     | 
| 
      
 35 
     | 
    
         
            +
            $max_tab_size: 12;
         
     | 
| 
      
 36 
     | 
    
         
            +
             
     | 
| 
      
 37 
     | 
    
         
            +
            // Button and form variables
         
     | 
| 
      
 38 
     | 
    
         
            +
            $form-control-shadow: inset 0 1px 2px rgba($black, 0.075);
         
     | 
| 
      
 39 
     | 
    
         
            +
            $btn-input-focus-shadow: 0 0 0 0.2em rgba($blue, 0.3);
         
     | 
| 
      
 40 
     | 
    
         
            +
            $btn-active-shadow: inset 0 0.15em 0.3em rgba($black, 0.15);
         
     | 
| 
      
 41 
     | 
    
         
            +
             
     | 
| 
      
 42 
     | 
    
         
            +
            $btn-shadow-inner: inset 0 -1px 0 rgba($black, 0.15);
         
     | 
| 
      
 43 
     | 
    
         
            +
            $btn-shadow-outer: 0 1px 2px rgba($black, 0.15);
         
     | 
| 
      
 44 
     | 
    
         
            +
            $btn-shadow-hover: 0 6px 10px rgba($black, 0.15);
         
     | 
| 
      
 45 
     | 
    
         
            +
            $btn-shadow-active-inner: inset 0 0.125em 0.25em rgba($black, 0.25);
         
     | 
| 
         @@ -0,0 +1,35 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            // Typography variables
         
     | 
| 
      
 2 
     | 
    
         
            +
            // stylelint-disable declaration-bang-space-before
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            // Heading sizes
         
     | 
| 
      
 5 
     | 
    
         
            +
            $h00-size: 48px !default;
         
     | 
| 
      
 6 
     | 
    
         
            +
            $h0-size: 40px !default;
         
     | 
| 
      
 7 
     | 
    
         
            +
            $h1-size: 32px !default;
         
     | 
| 
      
 8 
     | 
    
         
            +
            $h2-size: 24px !default;
         
     | 
| 
      
 9 
     | 
    
         
            +
            $h3-size: 20px !default;
         
     | 
| 
      
 10 
     | 
    
         
            +
            $h4-size: 16px !default;
         
     | 
| 
      
 11 
     | 
    
         
            +
            $h5-size: 14px !default;
         
     | 
| 
      
 12 
     | 
    
         
            +
            $h6-size: 12px !default;
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
            $font-size-small: 12px !default;
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
            // Font weights
         
     | 
| 
      
 17 
     | 
    
         
            +
            $font-weight-bold: 600 !default;
         
     | 
| 
      
 18 
     | 
    
         
            +
            $font-weight-semibold: 500 !default;
         
     | 
| 
      
 19 
     | 
    
         
            +
            $font-weight-normal: 400 !default;
         
     | 
| 
      
 20 
     | 
    
         
            +
            $font-weight-light: 300 !default;
         
     | 
| 
      
 21 
     | 
    
         
            +
             
     | 
| 
      
 22 
     | 
    
         
            +
            // Line heights
         
     | 
| 
      
 23 
     | 
    
         
            +
            $lh-condensed-ultra: 1 !default;
         
     | 
| 
      
 24 
     | 
    
         
            +
            $lh-condensed: 1.25 !default;
         
     | 
| 
      
 25 
     | 
    
         
            +
            $lh-default: 1.5 !default;
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
            // Font stacks
         
     | 
| 
      
 28 
     | 
    
         
            +
            $body-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default;
         
     | 
| 
      
 29 
     | 
    
         
            +
             
     | 
| 
      
 30 
     | 
    
         
            +
            // Monospace font stack
         
     | 
| 
      
 31 
     | 
    
         
            +
            $mono-font: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace !default;
         
     | 
| 
      
 32 
     | 
    
         
            +
             
     | 
| 
      
 33 
     | 
    
         
            +
            // The base body size
         
     | 
| 
      
 34 
     | 
    
         
            +
            $body-font-size: 14px !default;
         
     | 
| 
      
 35 
     | 
    
         
            +
            $body-line-height: $lh-default !default;
         
     | 
| 
         @@ -2,75 +2,76 @@ 
     | 
|
| 
       2 
2 
     | 
    
         
             
              "_args": [
         
     | 
| 
       3 
3 
     | 
    
         
             
                [
         
     | 
| 
       4 
4 
     | 
    
         
             
                  {
         
     | 
| 
       5 
     | 
    
         
            -
                    "raw": "primer-support 
     | 
| 
      
 5 
     | 
    
         
            +
                    "raw": "primer-support@3.0.2",
         
     | 
| 
       6 
6 
     | 
    
         
             
                    "scope": null,
         
     | 
| 
       7 
7 
     | 
    
         
             
                    "escapedName": "primer-support",
         
     | 
| 
       8 
8 
     | 
    
         
             
                    "name": "primer-support",
         
     | 
| 
       9 
     | 
    
         
            -
                    "rawSpec": " 
     | 
| 
       10 
     | 
    
         
            -
                    "spec": " 
     | 
| 
       11 
     | 
    
         
            -
                    "type": " 
     | 
| 
      
 9 
     | 
    
         
            +
                    "rawSpec": "3.0.2",
         
     | 
| 
      
 10 
     | 
    
         
            +
                    "spec": "3.0.2",
         
     | 
| 
      
 11 
     | 
    
         
            +
                    "type": "version"
         
     | 
| 
       12 
12 
     | 
    
         
             
                  },
         
     | 
| 
       13 
     | 
    
         
            -
                  "/Users/benbalter/projects/ 
     | 
| 
      
 13 
     | 
    
         
            +
                  "/Users/benbalter/projects/primer"
         
     | 
| 
       14 
14 
     | 
    
         
             
                ]
         
     | 
| 
       15 
15 
     | 
    
         
             
              ],
         
     | 
| 
       16 
     | 
    
         
            -
              "_from": "primer-support 
     | 
| 
       17 
     | 
    
         
            -
              "_id": "primer-support@0. 
     | 
| 
      
 16 
     | 
    
         
            +
              "_from": "primer-support@3.0.2",
         
     | 
| 
      
 17 
     | 
    
         
            +
              "_id": "primer-support@3.0.2",
         
     | 
| 
       18 
18 
     | 
    
         
             
              "_inCache": true,
         
     | 
| 
       19 
19 
     | 
    
         
             
              "_location": "/primer-support",
         
     | 
| 
       20 
     | 
    
         
            -
              "_nodeVersion": " 
     | 
| 
      
 20 
     | 
    
         
            +
              "_nodeVersion": "7.7.3",
         
     | 
| 
       21 
21 
     | 
    
         
             
              "_npmOperationalInternal": {
         
     | 
| 
       22 
     | 
    
         
            -
                "host": "packages- 
     | 
| 
       23 
     | 
    
         
            -
                "tmp": "tmp/primer-support-0. 
     | 
| 
      
 22 
     | 
    
         
            +
                "host": "packages-18-east.internal.npmjs.com",
         
     | 
| 
      
 23 
     | 
    
         
            +
                "tmp": "tmp/primer-support-3.0.2.tgz_1490129546696_0.985271300887689"
         
     | 
| 
       24 
24 
     | 
    
         
             
              },
         
     | 
| 
       25 
25 
     | 
    
         
             
              "_npmUser": {
         
     | 
| 
       26 
26 
     | 
    
         
             
                "name": "jonrohan",
         
     | 
| 
       27 
27 
     | 
    
         
             
                "email": "yes@jonrohan.codes"
         
     | 
| 
       28 
28 
     | 
    
         
             
              },
         
     | 
| 
       29 
     | 
    
         
            -
              "_npmVersion": " 
     | 
| 
      
 29 
     | 
    
         
            +
              "_npmVersion": "4.1.2",
         
     | 
| 
       30 
30 
     | 
    
         
             
              "_phantomChildren": {},
         
     | 
| 
       31 
31 
     | 
    
         
             
              "_requested": {
         
     | 
| 
       32 
     | 
    
         
            -
                "raw": "primer-support 
     | 
| 
      
 32 
     | 
    
         
            +
                "raw": "primer-support@3.0.2",
         
     | 
| 
       33 
33 
     | 
    
         
             
                "scope": null,
         
     | 
| 
       34 
34 
     | 
    
         
             
                "escapedName": "primer-support",
         
     | 
| 
       35 
35 
     | 
    
         
             
                "name": "primer-support",
         
     | 
| 
       36 
     | 
    
         
            -
                "rawSpec": " 
     | 
| 
       37 
     | 
    
         
            -
                "spec": " 
     | 
| 
       38 
     | 
    
         
            -
                "type": " 
     | 
| 
      
 36 
     | 
    
         
            +
                "rawSpec": "3.0.2",
         
     | 
| 
      
 37 
     | 
    
         
            +
                "spec": "3.0.2",
         
     | 
| 
      
 38 
     | 
    
         
            +
                "type": "version"
         
     | 
| 
       39 
39 
     | 
    
         
             
              },
         
     | 
| 
       40 
40 
     | 
    
         
             
              "_requiredBy": [
         
     | 
| 
      
 41 
     | 
    
         
            +
                "#USER",
         
     | 
| 
       41 
42 
     | 
    
         
             
                "/",
         
     | 
| 
       42 
43 
     | 
    
         
             
                "/primer-base",
         
     | 
| 
       43 
44 
     | 
    
         
             
                "/primer-layout",
         
     | 
| 
       44 
45 
     | 
    
         
             
                "/primer-markdown",
         
     | 
| 
       45 
46 
     | 
    
         
             
                "/primer-utilities"
         
     | 
| 
       46 
47 
     | 
    
         
             
              ],
         
     | 
| 
       47 
     | 
    
         
            -
              "_resolved": "https://registry.npmjs.org/primer-support/-/primer-support-0. 
     | 
| 
       48 
     | 
    
         
            -
              "_shasum": " 
     | 
| 
      
 48 
     | 
    
         
            +
              "_resolved": "https://registry.npmjs.org/primer-support/-/primer-support-3.0.2.tgz",
         
     | 
| 
      
 49 
     | 
    
         
            +
              "_shasum": "53ab794dc7e492e66f60f3bae73c92ab0c030537",
         
     | 
| 
       49 
50 
     | 
    
         
             
              "_shrinkwrap": null,
         
     | 
| 
       50 
     | 
    
         
            -
              "_spec": "primer-support 
     | 
| 
       51 
     | 
    
         
            -
              "_where": "/Users/benbalter/projects/ 
     | 
| 
      
 51 
     | 
    
         
            +
              "_spec": "primer-support@3.0.2",
         
     | 
| 
      
 52 
     | 
    
         
            +
              "_where": "/Users/benbalter/projects/primer",
         
     | 
| 
       52 
53 
     | 
    
         
             
              "author": {
         
     | 
| 
       53 
54 
     | 
    
         
             
                "name": "GitHub, Inc."
         
     | 
| 
       54 
55 
     | 
    
         
             
              },
         
     | 
| 
       55 
56 
     | 
    
         
             
              "bugs": {
         
     | 
| 
       56 
     | 
    
         
            -
                "url": "https://github.com/primer/support/issues"
         
     | 
| 
      
 57 
     | 
    
         
            +
                "url": "https://github.com/primer/primer-support/issues"
         
     | 
| 
       57 
58 
     | 
    
         
             
              },
         
     | 
| 
       58 
59 
     | 
    
         
             
              "dependencies": {},
         
     | 
| 
       59 
60 
     | 
    
         
             
              "description": "Sass variables, mixins, and functions for use in our components.",
         
     | 
| 
       60 
61 
     | 
    
         
             
              "devDependencies": {
         
     | 
| 
       61 
     | 
    
         
            -
                "stylelint": " 
     | 
| 
       62 
     | 
    
         
            -
                "stylelint-config-primer": " 
     | 
| 
      
 62 
     | 
    
         
            +
                "stylelint": "*",
         
     | 
| 
      
 63 
     | 
    
         
            +
                "stylelint-config-primer": "*"
         
     | 
| 
       63 
64 
     | 
    
         
             
              },
         
     | 
| 
       64 
65 
     | 
    
         
             
              "directories": {},
         
     | 
| 
       65 
66 
     | 
    
         
             
              "dist": {
         
     | 
| 
       66 
     | 
    
         
            -
                "shasum": " 
     | 
| 
       67 
     | 
    
         
            -
                "tarball": "https://registry.npmjs.org/primer-support/-/primer-support-0. 
     | 
| 
      
 67 
     | 
    
         
            +
                "shasum": "53ab794dc7e492e66f60f3bae73c92ab0c030537",
         
     | 
| 
      
 68 
     | 
    
         
            +
                "tarball": "https://registry.npmjs.org/primer-support/-/primer-support-3.0.2.tgz"
         
     | 
| 
       68 
69 
     | 
    
         
             
              },
         
     | 
| 
       69 
70 
     | 
    
         
             
              "files": [
         
     | 
| 
       70 
71 
     | 
    
         
             
                "index.scss",
         
     | 
| 
       71 
72 
     | 
    
         
             
                "lib"
         
     | 
| 
       72 
73 
     | 
    
         
             
              ],
         
     | 
| 
       73 
     | 
    
         
            -
              "gitHead": " 
     | 
| 
      
 74 
     | 
    
         
            +
              "gitHead": "ae5852f055eb5fb9ec8ff143e0897e059e89124d",
         
     | 
| 
       74 
75 
     | 
    
         
             
              "homepage": "http://primercss.io/",
         
     | 
| 
       75 
76 
     | 
    
         
             
              "keywords": [
         
     | 
| 
       76 
77 
     | 
    
         
             
                "primer",
         
     | 
| 
         @@ -84,6 +85,10 @@ 
     | 
|
| 
       84 
85 
     | 
    
         
             
              ],
         
     | 
| 
       85 
86 
     | 
    
         
             
              "license": "MIT",
         
     | 
| 
       86 
87 
     | 
    
         
             
              "maintainers": [
         
     | 
| 
      
 88 
     | 
    
         
            +
                {
         
     | 
| 
      
 89 
     | 
    
         
            +
                  "name": "broccolini",
         
     | 
| 
      
 90 
     | 
    
         
            +
                  "email": "diana.mounter@gmail.com"
         
     | 
| 
      
 91 
     | 
    
         
            +
                },
         
     | 
| 
       87 
92 
     | 
    
         
             
                {
         
     | 
| 
       88 
93 
     | 
    
         
             
                  "name": "jonrohan",
         
     | 
| 
       89 
94 
     | 
    
         
             
                  "email": "yes@jonrohan.codes"
         
     | 
| 
         @@ -94,12 +99,11 @@ 
     | 
|
| 
       94 
99 
     | 
    
         
             
              "readme": "ERROR: No README data found!",
         
     | 
| 
       95 
100 
     | 
    
         
             
              "repository": {
         
     | 
| 
       96 
101 
     | 
    
         
             
                "type": "git",
         
     | 
| 
       97 
     | 
    
         
            -
                "url": "git+https://github.com/primer/support.git"
         
     | 
| 
      
 102 
     | 
    
         
            +
                "url": "git+https://github.com/primer/primer-support.git"
         
     | 
| 
       98 
103 
     | 
    
         
             
              },
         
     | 
| 
       99 
104 
     | 
    
         
             
              "scripts": {
         
     | 
| 
       100 
     | 
    
         
            -
                " 
     | 
| 
       101 
     | 
    
         
            -
                "test": "npm run lint"
         
     | 
| 
      
 105 
     | 
    
         
            +
                "test": "stylelint **/*.scss -c .stylelintrc.json -s scss"
         
     | 
| 
       102 
106 
     | 
    
         
             
              },
         
     | 
| 
       103 
107 
     | 
    
         
             
              "style": "index.scss",
         
     | 
| 
       104 
     | 
    
         
            -
              "version": "0. 
     | 
| 
      
 108 
     | 
    
         
            +
              "version": "3.0.2"
         
     | 
| 
       105 
109 
     | 
    
         
             
            }
         
     | 
| 
         @@ -1,3 +1,133 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # v4.1.1
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
             * Bump all the version numbers for readme - Mu-An Chiou [github/github@a9d152f](https://github.com/github/github/commit/a9d152f)
         
     | 
| 
      
 4 
     | 
    
         
            +
             * Fix all the travis badge URL - Mu-An Chiou [github/github@9cd6d84](https://github.com/github/github/commit/9cd6d84)
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            # v4.1.0
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            # v4.0.3
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
             * make  work as expected - Sophie Shepherd [github/github@6c85845](https://github.com/github/github/commit/6c85845)
         
     | 
| 
      
 12 
     | 
    
         
            +
             * primer version & CHANGELOG - Sophie Shepherd [github/github@9011d3b](https://github.com/github/github/commit/9011d3b)
         
     | 
| 
      
 13 
     | 
    
         
            +
             * clean up usage of shade-gradient - Sophie Shepherd [github/github@4097cbd](https://github.com/github/github/commit/4097cbd)
         
     | 
| 
      
 14 
     | 
    
         
            +
             * Add border utility and update primer - Mu-An Chiou [github/github@6870d3f](https://github.com/github/github/commit/6870d3f)
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
            # v4.0.1
         
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
      
 18 
     | 
    
         
            +
             * add border utility - broccolini [github/github@026d0dc](https://github.com/github/github/commit/026d0dc)
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
      
 20 
     | 
    
         
            +
            # v4.0.0
         
     | 
| 
      
 21 
     | 
    
         
            +
             
     | 
| 
      
 22 
     | 
    
         
            +
             * bump major version due to renaming in support and utils - broccolini [github/github@85b48ab](https://github.com/github/github/commit/85b48ab)
         
     | 
| 
      
 23 
     | 
    
         
            +
             * update and re-order docs - broccolini [github/github@17fd96f](https://github.com/github/github/commit/17fd96f)
         
     | 
| 
      
 24 
     | 
    
         
            +
             * add black alpha transparent border utility - broccolini [github/github@56d224a](https://github.com/github/github/commit/56d224a)
         
     | 
| 
      
 25 
     | 
    
         
            +
             * update border names in docs - broccolini [github/github@dc33e97](https://github.com/github/github/commit/dc33e97)
         
     | 
| 
      
 26 
     | 
    
         
            +
             * rename border utilities to match variables - broccolini [github/github@d0fdfb3](https://github.com/github/github/commit/d0fdfb3)
         
     | 
| 
      
 27 
     | 
    
         
            +
             * Bump version number and update changelog - Mu-An Chiou [github/github@050549f](https://github.com/github/github/commit/050549f)
         
     | 
| 
      
 28 
     | 
    
         
            +
             * Remove negative margin it's causing scrollbar problem and we don't actually need it - Mu-An Chiou [github/github@d813007](https://github.com/github/github/commit/d813007)
         
     | 
| 
      
 29 
     | 
    
         
            +
             * fix border blue colors - broccolini [github/github@957c87a](https://github.com/github/github/commit/957c87a)
         
     | 
| 
      
 30 
     | 
    
         
            +
             
     | 
| 
      
 31 
     | 
    
         
            +
            # v3.7.1
         
     | 
| 
      
 32 
     | 
    
         
            +
             
     | 
| 
      
 33 
     | 
    
         
            +
             * @broccolini's feedback - Sophie Shepherd [github/github@f9699ef](https://github.com/github/github/commit/f9699ef)
         
     | 
| 
      
 34 
     | 
    
         
            +
             * mdo's notes - Sophie Shepherd [github/github@bf6304c](https://github.com/github/github/commit/bf6304c)
         
     | 
| 
      
 35 
     | 
    
         
            +
             * bump version numbers - broccolini [github/github@34165ea](https://github.com/github/github/commit/34165ea)
         
     | 
| 
      
 36 
     | 
    
         
            +
             * decouple bg & text status pending colors and improve text contrast - broccolini [github/github@c541dca](https://github.com/github/github/commit/c541dca)
         
     | 
| 
      
 37 
     | 
    
         
            +
             
     | 
| 
      
 38 
     | 
    
         
            +
            # v3.7.0
         
     | 
| 
      
 39 
     | 
    
         
            +
             
     | 
| 
      
 40 
     | 
    
         
            +
             * update primer-core version number - broccolini [github/github@6846743](https://github.com/github/github/commit/6846743)
         
     | 
| 
      
 41 
     | 
    
         
            +
             * use one yellow for now for status-pending: - broccolini [github/github@9f3bd48](https://github.com/github/github/commit/9f3bd48)
         
     | 
| 
      
 42 
     | 
    
         
            +
             * bump version number on color utilities - broccolini [github/github@a52c6c2](https://github.com/github/github/commit/a52c6c2)
         
     | 
| 
      
 43 
     | 
    
         
            +
             * separate bg and text pending color - broccolini [github/github@2c285b7](https://github.com/github/github/commit/2c285b7)
         
     | 
| 
      
 44 
     | 
    
         
            +
             * update shade-gradient to use variable - broccolini [github/github@c63acfd](https://github.com/github/github/commit/c63acfd)
         
     | 
| 
      
 45 
     | 
    
         
            +
             * move this before responsive variants so we can override it by breakpoint - Mark Otto [github/github@e38f773](https://github.com/github/github/commit/e38f773)
         
     | 
| 
      
 46 
     | 
    
         
            +
             
     | 
| 
      
 47 
     | 
    
         
            +
            # v3.5.0
         
     | 
| 
      
 48 
     | 
    
         
            +
             
     | 
| 
      
 49 
     | 
    
         
            +
             * package version bump and update changelog for styleguide - Mark Otto [github/github@84ffd6d](https://github.com/github/github/commit/84ffd6d)
         
     | 
| 
      
 50 
     | 
    
         
            +
             * update comment for @pmarsceill - Mark Otto [github/github@b446760](https://github.com/github/github/commit/b446760)
         
     | 
| 
      
 51 
     | 
    
         
            +
             * colors, buttons, and more - Mark Otto [github/github@307d8ce](https://github.com/github/github/commit/307d8ce)
         
     | 
| 
      
 52 
     | 
    
         
            +
             * Bump version and update CHANGELOG - Mu-An Chiou [github/github@b4de751](https://github.com/github/github/commit/b4de751)
         
     | 
| 
      
 53 
     | 
    
         
            +
             * Add focus guide button - Mu-An Chiou [github/github@2101e25](https://github.com/github/github/commit/2101e25)
         
     | 
| 
      
 54 
     | 
    
         
            +
             * Add title and change button activation copy - Mu-An Chiou [github/github@35af0e4](https://github.com/github/github/commit/35af0e4)
         
     | 
| 
      
 55 
     | 
    
         
            +
             * initial docs - Caleb Winters [github/github@7a576e5](https://github.com/github/github/commit/7a576e5)
         
     | 
| 
      
 56 
     | 
    
         
            +
             * Add .sr-only doc - Mu-An Chiou [github/github@2068b05](https://github.com/github/github/commit/2068b05)
         
     | 
| 
      
 57 
     | 
    
         
            +
             * Move .sr-only to  to cored utility and add sr-only logout button - Mu-An Chiou [github/github@0c1a73f](https://github.com/github/github/commit/0c1a73f)
         
     | 
| 
      
 58 
     | 
    
         
            +
             
     | 
| 
      
 59 
     | 
    
         
            +
            # v3.3.1
         
     | 
| 
      
 60 
     | 
    
         
            +
             
     | 
| 
      
 61 
     | 
    
         
            +
             * bumping the version - Jon Rohan [github/github@4a72b25](https://github.com/github/github/commit/4a72b25)
         
     | 
| 
      
 62 
     | 
    
         
            +
             * flexbug copy tweak - broccolini [github/github@6a4a4d2](https://github.com/github/github/commit/6a4a4d2)
         
     | 
| 
      
 63 
     | 
    
         
            +
             
     | 
| 
      
 64 
     | 
    
         
            +
            # v3.3.0
         
     | 
| 
      
 65 
     | 
    
         
            +
             
     | 
| 
      
 66 
     | 
    
         
            +
             * Docs update - Patrick Marsceill [github/github@3acfa8e](https://github.com/github/github/commit/3acfa8e)
         
     | 
| 
      
 67 
     | 
    
         
            +
             * Comma splice - Patrick Marsceill [github/github@754ae36](https://github.com/github/github/commit/754ae36)
         
     | 
| 
      
 68 
     | 
    
         
            +
             * rip out box-shadows and use TOC not hard coded links - Patrick Marsceill [github/github@ba64689](https://github.com/github/github/commit/ba64689)
         
     | 
| 
      
 69 
     | 
    
         
            +
             * Makd small default - Patrick Marsceill [github/github@fcebabb](https://github.com/github/github/commit/fcebabb)
         
     | 
| 
      
 70 
     | 
    
         
            +
             * Tidy up the docs - Patrick Marsceill [github/github@04a5a9e](https://github.com/github/github/commit/04a5a9e)
         
     | 
| 
      
 71 
     | 
    
         
            +
             * Update old classname in docs - Patrick Marsceill [github/github@9a905ba](https://github.com/github/github/commit/9a905ba)
         
     | 
| 
      
 72 
     | 
    
         
            +
             * Use Box not utils for example - Patrick Marsceill [github/github@d10cba8](https://github.com/github/github/commit/d10cba8)
         
     | 
| 
      
 73 
     | 
    
         
            +
             * Update page heading levels for toc - Patrick Marsceill [github/github@8ffa7ab](https://github.com/github/github/commit/8ffa7ab)
         
     | 
| 
      
 74 
     | 
    
         
            +
             * Bump package version number - Patrick Marsceill [github/github@72e938a](https://github.com/github/github/commit/72e938a)
         
     | 
| 
      
 75 
     | 
    
         
            +
             * Update docs - Patrick Marsceill [github/github@36be95e](https://github.com/github/github/commit/36be95e)
         
     | 
| 
      
 76 
     | 
    
         
            +
             * Consolidate box-shadow styles - Patrick Marsceill [github/github@35cdd34](https://github.com/github/github/commit/35cdd34)
         
     | 
| 
      
 77 
     | 
    
         
            +
             * Implement shadow vars - Patrick Marsceill [github/github@8f8aaf0](https://github.com/github/github/commit/8f8aaf0)
         
     | 
| 
      
 78 
     | 
    
         
            +
             * add docs for flexbox bug - broccolini [github/github@ce472fc](https://github.com/github/github/commit/ce472fc)
         
     | 
| 
      
 79 
     | 
    
         
            +
             * add flex-shrink utility to review status - broccolini [github/github@2ac6ae8](https://github.com/github/github/commit/2ac6ae8)
         
     | 
| 
      
 80 
     | 
    
         
            +
             * bump version number - broccolini [github/github@903297b](https://github.com/github/github/commit/903297b)
         
     | 
| 
      
 81 
     | 
    
         
            +
             * add imports for new partials - broccolini [github/github@bdfb45c](https://github.com/github/github/commit/bdfb45c)
         
     | 
| 
      
 82 
     | 
    
         
            +
             * move flexbox styles into their own partial - broccolini [github/github@a82b8f3](https://github.com/github/github/commit/a82b8f3)
         
     | 
| 
      
 83 
     | 
    
         
            +
             * move display and visibility utilities into separate partial - broccolini [github/github@bcb21b0](https://github.com/github/github/commit/bcb21b0)
         
     | 
| 
      
 84 
     | 
    
         
            +
             * Disable selector-no-utility because this is the utility - Patrick Marsceill [github/github@d6871fb](https://github.com/github/github/commit/d6871fb)
         
     | 
| 
      
 85 
     | 
    
         
            +
             * add new docs - Patrick Marsceill [github/github@704fd67](https://github.com/github/github/commit/704fd67)
         
     | 
| 
      
 86 
     | 
    
         
            +
             * remove old documentation - Patrick Marsceill [github/github@449fb2a](https://github.com/github/github/commit/449fb2a)
         
     | 
| 
      
 87 
     | 
    
         
            +
             * Move legacy box-shadow to new scss partial - Patrick Marsceill [github/github@89bca94](https://github.com/github/github/commit/89bca94)
         
     | 
| 
      
 88 
     | 
    
         
            +
             * refactor numbering to include old box-shadow - Patrick Marsceill [github/github@414fd6a](https://github.com/github/github/commit/414fd6a)
         
     | 
| 
      
 89 
     | 
    
         
            +
             * depricate old box-shadow-large - Patrick Marsceill [github/github@73effa4](https://github.com/github/github/commit/73effa4)
         
     | 
| 
      
 90 
     | 
    
         
            +
             * Discrete box-shadow utils - Patrick Marsceill [github/github@d430697](https://github.com/github/github/commit/d430697)
         
     | 
| 
      
 91 
     | 
    
         
            +
             * Removing needless disables - Jon Rohan [github/github@6233c40](https://github.com/github/github/commit/6233c40)
         
     | 
| 
      
 92 
     | 
    
         
            +
             * Making updates to wording cc @broccolini - Jon Rohan [github/github@d2bf29f](https://github.com/github/github/commit/d2bf29f)
         
     | 
| 
      
 93 
     | 
    
         
            +
             * Make all href #url - Mu-An Chiou [github/github@27ba40c](https://github.com/github/github/commit/27ba40c)
         
     | 
| 
      
 94 
     | 
    
         
            +
             * Add wb-break-all to docs - Jason Long [github/github@169f2da](https://github.com/github/github/commit/169f2da)
         
     | 
| 
      
 95 
     | 
    
         
            +
             * adding text-gray-dark and more acurately mentioning standards - Jon Rohan [github/github@55de600](https://github.com/github/github/commit/55de600)
         
     | 
| 
      
 96 
     | 
    
         
            +
             * Bump version - Jason Long [github/github@2404538](https://github.com/github/github/commit/2404538)
         
     | 
| 
      
 97 
     | 
    
         
            +
             * Update typography.scss - Jason Long [github/github@ad36e9b](https://github.com/github/github/commit/ad36e9b)
         
     | 
| 
      
 98 
     | 
    
         
            +
             * update bg-yellow variables - broccolini [github/github@79701f2](https://github.com/github/github/commit/79701f2)
         
     | 
| 
      
 99 
     | 
    
         
            +
             * Remove trailing line break which confuses guide.rb - Mu-An Chiou [github/github@9028863](https://github.com/github/github/commit/9028863)
         
     | 
| 
      
 100 
     | 
    
         
            +
             * Improve code samples - Add URL to <a> - Add aria-label to <input> - Add type to <button> - Replace unnecessary <a> with <div> - Mu-An Chiou [github/github@42e67c8](https://github.com/github/github/commit/42e67c8)
         
     | 
| 
      
 101 
     | 
    
         
            +
             * Add border to show block difference - Mu-An Chiou [github/github@22f7bdd](https://github.com/github/github/commit/22f7bdd)
         
     | 
| 
      
 102 
     | 
    
         
            +
             * Link somewhere, since # shouldn't be allowed - Mu-An Chiou [github/github@09cb5f1](https://github.com/github/github/commit/09cb5f1)
         
     | 
| 
      
 103 
     | 
    
         
            +
             
     | 
| 
      
 104 
     | 
    
         
            +
            # v3.0.0
         
     | 
| 
      
 105 
     | 
    
         
            +
             
     | 
| 
      
 106 
     | 
    
         
            +
             
     | 
| 
      
 107 
     | 
    
         
            +
            # v2.0.0
         
     | 
| 
      
 108 
     | 
    
         
            +
             
     | 
| 
      
 109 
     | 
    
         
            +
             * Cutting new versions of primer modules - Jon Rohan [github/github@157f5ab](https://github.com/github/github/commit/157f5ab)
         
     | 
| 
      
 110 
     | 
    
         
            +
             * Updating layout hints - Jon Rohan [github/github@d6cc7dc](https://github.com/github/github/commit/d6cc7dc)
         
     | 
| 
      
 111 
     | 
    
         
            +
             * mentioning link instead of text - Jon Rohan [github/github@008fd98](https://github.com/github/github/commit/008fd98)
         
     | 
| 
      
 112 
     | 
    
         
            +
             * Updating the color hints to mention the variables - Jon Rohan [github/github@32a5752](https://github.com/github/github/commit/32a5752)
         
     | 
| 
      
 113 
     | 
    
         
            +
             * Replace instances that can be replaced. Delete shadows when on white bgs. - Sophie Shepherd [github/github@e33bf62](https://github.com/github/github/commit/e33bf62)
         
     | 
| 
      
 114 
     | 
    
         
            +
             * Add utility classes to typography scss - Sophie Shepherd [github/github@0116477](https://github.com/github/github/commit/0116477)
         
     | 
| 
      
 115 
     | 
    
         
            +
             * Rename repository with prefix primer- - Jon Rohan [github/github@ec8774a](https://github.com/github/github/commit/ec8774a)
         
     | 
| 
      
 116 
     | 
    
         
            +
             * Using 0 instead of 0px - Jon Rohan [github/github@3c5bcf5](https://github.com/github/github/commit/3c5bcf5)
         
     | 
| 
      
 117 
     | 
    
         
            +
             * new argument name, add comments in code - Caleb Winters [github/github@51251be](https://github.com/github/github/commit/51251be)
         
     | 
| 
      
 118 
     | 
    
         
            +
             * fix whitelisting - Caleb Winters [github/github@26fba58](https://github.com/github/github/commit/26fba58)
         
     | 
| 
      
 119 
     | 
    
         
            +
             * polishing the docs, adding better examples - Caleb Winters [github/github@a7c5fb6](https://github.com/github/github/commit/a7c5fb6)
         
     | 
| 
      
 120 
     | 
    
         
            +
             * change tag to experimental, add link to MDN - Caleb Winters [github/github@a47e282](https://github.com/github/github/commit/a47e282)
         
     | 
| 
      
 121 
     | 
    
         
            +
             * remove global flex property - Caleb Winters [github/github@16491b8](https://github.com/github/github/commit/16491b8)
         
     | 
| 
      
 122 
     | 
    
         
            +
             * Kill unneeded attribute - Patrick Marsceill [github/github@6c071dc](https://github.com/github/github/commit/6c071dc)
         
     | 
| 
      
 123 
     | 
    
         
            +
             * Make default box shadow a var and apply it to .box-shadow utility - Patrick Marsceill [github/github@bda03be](https://github.com/github/github/commit/bda03be)
         
     | 
| 
      
 124 
     | 
    
         
            +
             * Update box shadow to be better - Patrick Marsceill [github/github@6cbd1f0](https://github.com/github/github/commit/6cbd1f0)
         
     | 
| 
      
 125 
     | 
    
         
            +
             * list styles without admin.deps - Sophie Shepherd [github/github@450f684](https://github.com/github/github/commit/450f684)
         
     | 
| 
      
 126 
     | 
    
         
            +
             * Revert "Add list-style: none; utility" - Sophie Shepherd [github/github@c6d72f2](https://github.com/github/github/commit/c6d72f2)
         
     | 
| 
      
 127 
     | 
    
         
            +
             * Add list-style: none; utility - Sophie Shepherd [github/github@7a494d8](https://github.com/github/github/commit/7a494d8)
         
     | 
| 
      
 128 
     | 
    
         
            +
             * Add bg-shade-gradient - Patrick Marsceill [github/github@c7efe79](https://github.com/github/github/commit/c7efe79)
         
     | 
| 
      
 129 
     | 
    
         
            +
             * Separating out modules into primer-core and primer-product - Jon Rohan [github/github@ddf698c](https://github.com/github/github/commit/ddf698c)
         
     | 
| 
      
 130 
     | 
    
         
            +
             
     | 
| 
       1 
131 
     | 
    
         
             
            # v1.0.0
         
     | 
| 
       2 
132 
     | 
    
         | 
| 
       3 
133 
     | 
    
         
             
             * Updating to major new version - Jon Rohan [github/github@f0df999](https://github.com/github/github/commit/f0df999)
         
     | 
| 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            # Primer CSS Utilities
         
     | 
| 
       2 
2 
     | 
    
         | 
| 
       3 
3 
     | 
    
         
             
            [](https://www.npmjs.org/package/primer-utilities)
         
     | 
| 
       4 
     | 
    
         
            -
            [](https://travis-ci.org/primer/utilities)
         
     | 
| 
      
 4 
     | 
    
         
            +
            [](https://travis-ci.org/primer/primer-utilities)
         
     | 
| 
       5 
5 
     | 
    
         | 
| 
       6 
6 
     | 
    
         
             
            > There are a handful of utilities in Primer for quick behaviors, floats, colors, alignment, and more.
         
     | 
| 
       7 
7 
     | 
    
         | 
| 
         @@ -35,7 +35,7 @@ $ npm run build 
     | 
|
| 
       35 
35 
     | 
    
         | 
| 
       36 
36 
     | 
    
         
             
            ## Documentation
         
     | 
| 
       37 
37 
     | 
    
         | 
| 
       38 
     | 
    
         
            -
            You can read more about utilities in the [docs] 
     | 
| 
      
 38 
     | 
    
         
            +
            You can read more about utilities in the [docs folder](./docs/).
         
     | 
| 
       39 
39 
     | 
    
         | 
| 
       40 
40 
     | 
    
         
             
            ## License
         
     | 
| 
       41 
41 
     | 
    
         | 
| 
         @@ -1,2 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            .anim-fade-in{-webkit-animation-name:fade-in;animation-name:fade-in;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}.anim-fade-in.fast{-webkit-animation-duration:300ms;animation-duration:300ms}@-webkit-keyframes fade-in{0%{opacity:0}100%{opacity:1}}@keyframes fade-in{0%{opacity:0}100%{opacity:1}}.anim-fade-up{opacity:0;-webkit-animation-name:fade-up;animation-name:fade-up;-webkit-animation-duration:0.3s;animation-duration:0.3s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-animation-delay:1s;animation-delay:1s}@-webkit-keyframes fade-up{0%{opacity:0.8;-webkit-transform:translateY(100%);transform:translateY(100%)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fade-up{0%{opacity:0.8;-webkit-transform:translateY(100%);transform:translateY(100%)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}.anim-fade-down{-webkit-animation-name:fade-down;animation-name:fade-down;-webkit-animation-duration:0.3s;animation-duration:0.3s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes fade-down{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0.5;-webkit-transform:translateY(100%);transform:translateY(100%)}}@keyframes fade-down{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0.5;-webkit-transform:translateY(100%);transform:translateY(100%)}}.anim-grow-x{width:0%;-webkit-animation-name:grow-x;animation-name:grow-x;-webkit-animation-duration:0.3s;animation-duration:0.3s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-timing-function:ease;animation-timing-function:ease;-webkit-animation-delay:0.5s;animation-delay:0.5s}@-webkit-keyframes grow-x{to{width:100%}}@keyframes grow-x{to{width:100%}}.anim-shrink-x{-webkit-animation-name:shrink-x;animation-name:shrink-x;-webkit-animation-duration:0.3s;animation-duration:0.3s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-delay:0.5s;animation-delay:0.5s}@-webkit-keyframes shrink-x{to{width:0%}}@keyframes shrink-x{to{width:0%}}.anim-scale-in{-webkit-animation-name:scale-in;animation-name:scale-in;-webkit-animation-duration:0.15s;animation-duration:0.15s;-webkit-animation-timing-function:cubic-bezier(0.2, 0, 0.13, 1.5);animation-timing-function:cubic-bezier(0.2, 0, 0.13, 1.5)}@-webkit-keyframes scale-in{0%{opacity:0;-webkit-transform:scale(0.5);transform:scale(0.5)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes scale-in{0%{opacity:0;-webkit-transform:scale(0.5);transform:scale(0.5)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.anim-pulse{-webkit-animation-name:pulse;animation-name:pulse;-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}@-webkit-keyframes pulse{0%{opacity:0.3}10%{opacity:1}100%{opacity:0.3}}@keyframes pulse{0%{opacity:0.3}10%{opacity:1}100%{opacity:0.3}}.anim-pulse-in{-webkit-animation-name:pulse-in;animation-name:pulse-in;-webkit-animation-duration:0.5s;animation-duration:0.5s}@-webkit-keyframes pulse-in{0%{-webkit-transform:scale3d(1, 1, 1);transform:scale3d(1, 1, 1)}50%{-webkit-transform:scale3d(1.1, 1.1, 1.1);transform:scale3d(1.1, 1.1, 1.1)}100%{-webkit-transform:scale3d(1, 1, 1);transform:scale3d(1, 1, 1)}}@keyframes pulse-in{0%{-webkit-transform:scale3d(1, 1, 1);transform:scale3d(1, 1, 1)}50%{-webkit-transform:scale3d(1.1, 1.1, 1.1);transform:scale3d(1.1, 1.1, 1.1)}100%{-webkit-transform:scale3d(1, 1, 1);transform:scale3d(1, 1, 1)}}.border{border:1px #e5e5e5 solid !important}.border-top{border-top:1px #e5e5e5 solid !important}.border-right{border-right:1px #e5e5e5 solid !important}.border-bottom{border-bottom:1px #e5e5e5 solid !important}.border-left{border-left:1px #e5e5e5 solid !important}.border-y{border-top:1px #e5e5e5 solid !important;border-bottom:1px #e5e5e5 solid !important}.border-blue{border-color:#c5d5dd !important}.border-gray-light{border-color:#eee !important}.border-gray-dark{border-color:#ddd !important}.border-0{border:0 !important}.border-top-0{border-top:0 !important}.border-right-0{border-right:0 !important}.border-bottom-0{border-bottom:0 !important}.border-left-0{border-left:0 !important}.rounded-0{border-radius:0 !important}.rounded-1{border-radius:3px !important}.rounded-2{border-radius:6px !important}.bg-white{background-color:#fff !important}.bg-blue{background-color:#4078c0 !important}.bg-blue-light{background-color:#f2f8fa !important}.bg-gray-dark{background-color:#333 !important}.bg-gray{background-color:#f5f5f5 !important}.bg-gray-light{background-color:#fafafa !important}.bg-green{background-color:#6cc644 !important}.bg-red{background-color:#bd2c00 !important}.text-blue{color:#4078c0 !important}.text-red{color:#bd2c00 !important}.text-gray-light{color:#999 !important}.text-gray{color:#767676 !important}.text-gray-dark{color:#333 !important}.text-green{color:#55a532 !important}.text-orange{color:#c9510c !important}.text-purple{color:#6e5494 !important}.text-white{color:#fff !important}.text-inherit{color:inherit !important}.link-blue{color:#4078c0 !important}.link-gray-dark{color:#333 !important}.link-gray{color:#767676 !important}.text-renamed{color:#fffa5d !important}.text-pending{color:#cea61b !important}.muted-link{color:#767676 !important}.muted-link:hover{color:#4078c0 !important;text-decoration:none}.position-static{position:static !important}.position-relative{position:relative !important}.position-absolute{position:absolute !important}.position-fixed{position:fixed !important}.top-0{top:0 !important}.right-0{right:0 !important}.bottom-0{bottom:0 !important}.left-0{left:0 !important}.v-align-middle{vertical-align:middle !important}.v-align-top{vertical-align:top !important}.v-align-bottom{vertical-align:bottom !important}.v-align-text-top{vertical-align:text-top !important}.v-align-text-bottom{vertical-align:text-bottom !important}.overflow-hidden{overflow:hidden !important}.overflow-scroll{overflow:scroll !important}.overflow-auto{overflow:auto !important}.clearfix::before{display:table;content:""}.clearfix::after{display:table;clear:both;content:""}.float-right{float:right !important}.float-left{float:left !important}@media (min-width: 544px){.float-sm-left{float:left !important}.float-sm-right{float:right !important}}@media (min-width: 768px){.float-md-left{float:left !important}.float-md-right{float:right !important}}@media (min-width: 1004px){.float-lg-left{float:left !important}.float-lg-right{float:right !important}}@media (min-width: 1280px){.float-xl-left{float:left !important}.float-xl-right{float:right !important}}.width-fit{max-width:100% !important}.width-full{width:100% !important}.height-full{height:100% !important}.min-width-0{min-width:0 !important}.v-hidden{visibility:hidden !important}.v-visible{visibility:visible !important}.d-table{display:table !important}.d-table-cell{display:table-cell !important}.table-fixed{table-layout:fixed !important}.d-block{display:block !important}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-none{display:none !important}@media (min-width: 544px){.d-sm-table{display:table !important}.d-sm-table-cell{display:table-cell !important}.d-sm-block{display:block !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-none{display:none !important}}@media (min-width: 768px){.d-md-table{display:table !important}.d-md-table-cell{display:table-cell !important}.d-md-block{display:block !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-none{display:none !important}}@media (min-width: 1004px){.d-lg-table{display:table !important}.d-lg-table-cell{display:table-cell !important}.d-lg-block{display:block !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-none{display:none !important}}@media (min-width: 1280px){.d-xl-table{display:table !important}.d-xl-table-cell{display:table-cell !important}.d-xl-block{display:block !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-none{display:none !important}}@media (max-width: 544px){.hide-sm{display:none !important}}@media (min-width: 544px) and (max-width: 768px){.hide-md{display:none !important}}@media (min-width: 768px) and (max-width: 1004px){.hide-lg{display:none !important}}@media (min-width: 1004px){.hide-xl{display:none !important}}.m-0{margin:0 !important}.mt-0{margin-top:0 !important}.mr-0{margin-right:0 !important}.mb-0{margin-bottom:0 !important}.ml-0{margin-left:0 !important}.mx-0{margin-right:0 !important;margin-left:0 !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.m-1{margin:3px !important}.mt-1{margin-top:3px !important}.mr-1{margin-right:3px !important}.mb-1{margin-bottom:3px !important}.ml-1{margin-left:3px !important}.mx-1{margin-right:3px !important;margin-left:3px !important}.my-1{margin-top:3px !important;margin-bottom:3px !important}.m-2{margin:6px !important}.mt-2{margin-top:6px !important}.mr-2{margin-right:6px !important}.mb-2{margin-bottom:6px !important}.ml-2{margin-left:6px !important}.mx-2{margin-right:6px !important;margin-left:6px !important}.my-2{margin-top:6px !important;margin-bottom:6px !important}.m-3{margin:12px !important}.mt-3{margin-top:12px !important}.mr-3{margin-right:12px !important}.mb-3{margin-bottom:12px !important}.ml-3{margin-left:12px !important}.mx-3{margin-right:12px !important;margin-left:12px !important}.my-3{margin-top:12px !important;margin-bottom:12px !important}.m-4{margin:24px !important}.mt-4{margin-top:24px !important}.mr-4{margin-right:24px !important}.mb-4{margin-bottom:24px !important}.ml-4{margin-left:24px !important}.mx-4{margin-right:24px !important;margin-left:24px !important}.my-4{margin-top:24px !important;margin-bottom:24px !important}.m-5{margin:36px !important}.mt-5{margin-top:36px !important}.mr-5{margin-right:36px !important}.mb-5{margin-bottom:36px !important}.ml-5{margin-left:36px !important}.mx-5{margin-right:36px !important;margin-left:36px !important}.my-5{margin-top:36px !important;margin-bottom:36px !important}.m-6{margin:48px !important}.mt-6{margin-top:48px !important}.mr-6{margin-right:48px !important}.mb-6{margin-bottom:48px !important}.ml-6{margin-left:48px !important}.mx-6{margin-right:48px !important;margin-left:48px !important}.my-6{margin-top:48px !important;margin-bottom:48px !important}@media (min-width: 544px){.m-sm-0{margin:0 !important}.mt-sm-0{margin-top:0 !important}.mr-sm-0{margin-right:0 !important}.mb-sm-0{margin-bottom:0 !important}.ml-sm-0{margin-left:0 !important}.mx-sm-0{margin-right:0 !important;margin-left:0 !important}.my-sm-0{margin-top:0 !important;margin-bottom:0 !important}}@media (min-width: 544px){.m-sm-1{margin:3px !important}.mt-sm-1{margin-top:3px !important}.mr-sm-1{margin-right:3px !important}.mb-sm-1{margin-bottom:3px !important}.ml-sm-1{margin-left:3px !important}.mx-sm-1{margin-right:3px !important;margin-left:3px !important}.my-sm-1{margin-top:3px !important;margin-bottom:3px !important}}@media (min-width: 544px){.m-sm-2{margin:6px !important}.mt-sm-2{margin-top:6px !important}.mr-sm-2{margin-right:6px !important}.mb-sm-2{margin-bottom:6px !important}.ml-sm-2{margin-left:6px !important}.mx-sm-2{margin-right:6px !important;margin-left:6px !important}.my-sm-2{margin-top:6px !important;margin-bottom:6px !important}}@media (min-width: 544px){.m-sm-3{margin:12px !important}.mt-sm-3{margin-top:12px !important}.mr-sm-3{margin-right:12px !important}.mb-sm-3{margin-bottom:12px !important}.ml-sm-3{margin-left:12px !important}.mx-sm-3{margin-right:12px !important;margin-left:12px !important}.my-sm-3{margin-top:12px !important;margin-bottom:12px !important}}@media (min-width: 544px){.m-sm-4{margin:24px !important}.mt-sm-4{margin-top:24px !important}.mr-sm-4{margin-right:24px !important}.mb-sm-4{margin-bottom:24px !important}.ml-sm-4{margin-left:24px !important}.mx-sm-4{margin-right:24px !important;margin-left:24px !important}.my-sm-4{margin-top:24px !important;margin-bottom:24px !important}}@media (min-width: 544px){.m-sm-5{margin:36px !important}.mt-sm-5{margin-top:36px !important}.mr-sm-5{margin-right:36px !important}.mb-sm-5{margin-bottom:36px !important}.ml-sm-5{margin-left:36px !important}.mx-sm-5{margin-right:36px !important;margin-left:36px !important}.my-sm-5{margin-top:36px !important;margin-bottom:36px !important}}@media (min-width: 544px){.m-sm-6{margin:48px !important}.mt-sm-6{margin-top:48px !important}.mr-sm-6{margin-right:48px !important}.mb-sm-6{margin-bottom:48px !important}.ml-sm-6{margin-left:48px !important}.mx-sm-6{margin-right:48px !important;margin-left:48px !important}.my-sm-6{margin-top:48px !important;margin-bottom:48px !important}}@media (min-width: 768px){.m-md-0{margin:0 !important}.mt-md-0{margin-top:0 !important}.mr-md-0{margin-right:0 !important}.mb-md-0{margin-bottom:0 !important}.ml-md-0{margin-left:0 !important}.mx-md-0{margin-right:0 !important;margin-left:0 !important}.my-md-0{margin-top:0 !important;margin-bottom:0 !important}}@media (min-width: 768px){.m-md-1{margin:3px !important}.mt-md-1{margin-top:3px !important}.mr-md-1{margin-right:3px !important}.mb-md-1{margin-bottom:3px !important}.ml-md-1{margin-left:3px !important}.mx-md-1{margin-right:3px !important;margin-left:3px !important}.my-md-1{margin-top:3px !important;margin-bottom:3px !important}}@media (min-width: 768px){.m-md-2{margin:6px !important}.mt-md-2{margin-top:6px !important}.mr-md-2{margin-right:6px !important}.mb-md-2{margin-bottom:6px !important}.ml-md-2{margin-left:6px !important}.mx-md-2{margin-right:6px !important;margin-left:6px !important}.my-md-2{margin-top:6px !important;margin-bottom:6px !important}}@media (min-width: 768px){.m-md-3{margin:12px !important}.mt-md-3{margin-top:12px !important}.mr-md-3{margin-right:12px !important}.mb-md-3{margin-bottom:12px !important}.ml-md-3{margin-left:12px !important}.mx-md-3{margin-right:12px !important;margin-left:12px !important}.my-md-3{margin-top:12px !important;margin-bottom:12px !important}}@media (min-width: 768px){.m-md-4{margin:24px !important}.mt-md-4{margin-top:24px !important}.mr-md-4{margin-right:24px !important}.mb-md-4{margin-bottom:24px !important}.ml-md-4{margin-left:24px !important}.mx-md-4{margin-right:24px !important;margin-left:24px !important}.my-md-4{margin-top:24px !important;margin-bottom:24px !important}}@media (min-width: 768px){.m-md-5{margin:36px !important}.mt-md-5{margin-top:36px !important}.mr-md-5{margin-right:36px !important}.mb-md-5{margin-bottom:36px !important}.ml-md-5{margin-left:36px !important}.mx-md-5{margin-right:36px !important;margin-left:36px !important}.my-md-5{margin-top:36px !important;margin-bottom:36px !important}}@media (min-width: 768px){.m-md-6{margin:48px !important}.mt-md-6{margin-top:48px !important}.mr-md-6{margin-right:48px !important}.mb-md-6{margin-bottom:48px !important}.ml-md-6{margin-left:48px !important}.mx-md-6{margin-right:48px !important;margin-left:48px !important}.my-md-6{margin-top:48px !important;margin-bottom:48px !important}}@media (min-width: 1004px){.m-lg-0{margin:0 !important}.mt-lg-0{margin-top:0 !important}.mr-lg-0{margin-right:0 !important}.mb-lg-0{margin-bottom:0 !important}.ml-lg-0{margin-left:0 !important}.mx-lg-0{margin-right:0 !important;margin-left:0 !important}.my-lg-0{margin-top:0 !important;margin-bottom:0 !important}}@media (min-width: 1004px){.m-lg-1{margin:3px !important}.mt-lg-1{margin-top:3px !important}.mr-lg-1{margin-right:3px !important}.mb-lg-1{margin-bottom:3px !important}.ml-lg-1{margin-left:3px !important}.mx-lg-1{margin-right:3px !important;margin-left:3px !important}.my-lg-1{margin-top:3px !important;margin-bottom:3px !important}}@media (min-width: 1004px){.m-lg-2{margin:6px !important}.mt-lg-2{margin-top:6px !important}.mr-lg-2{margin-right:6px !important}.mb-lg-2{margin-bottom:6px !important}.ml-lg-2{margin-left:6px !important}.mx-lg-2{margin-right:6px !important;margin-left:6px !important}.my-lg-2{margin-top:6px !important;margin-bottom:6px !important}}@media (min-width: 1004px){.m-lg-3{margin:12px !important}.mt-lg-3{margin-top:12px !important}.mr-lg-3{margin-right:12px !important}.mb-lg-3{margin-bottom:12px !important}.ml-lg-3{margin-left:12px !important}.mx-lg-3{margin-right:12px !important;margin-left:12px !important}.my-lg-3{margin-top:12px !important;margin-bottom:12px !important}}@media (min-width: 1004px){.m-lg-4{margin:24px !important}.mt-lg-4{margin-top:24px !important}.mr-lg-4{margin-right:24px !important}.mb-lg-4{margin-bottom:24px !important}.ml-lg-4{margin-left:24px !important}.mx-lg-4{margin-right:24px !important;margin-left:24px !important}.my-lg-4{margin-top:24px !important;margin-bottom:24px !important}}@media (min-width: 1004px){.m-lg-5{margin:36px !important}.mt-lg-5{margin-top:36px !important}.mr-lg-5{margin-right:36px !important}.mb-lg-5{margin-bottom:36px !important}.ml-lg-5{margin-left:36px !important}.mx-lg-5{margin-right:36px !important;margin-left:36px !important}.my-lg-5{margin-top:36px !important;margin-bottom:36px !important}}@media (min-width: 1004px){.m-lg-6{margin:48px !important}.mt-lg-6{margin-top:48px !important}.mr-lg-6{margin-right:48px !important}.mb-lg-6{margin-bottom:48px !important}.ml-lg-6{margin-left:48px !important}.mx-lg-6{margin-right:48px !important;margin-left:48px !important}.my-lg-6{margin-top:48px !important;margin-bottom:48px !important}}@media (min-width: 1280px){.m-xl-0{margin:0 !important}.mt-xl-0{margin-top:0 !important}.mr-xl-0{margin-right:0 !important}.mb-xl-0{margin-bottom:0 !important}.ml-xl-0{margin-left:0 !important}.mx-xl-0{margin-right:0 !important;margin-left:0 !important}.my-xl-0{margin-top:0 !important;margin-bottom:0 !important}}@media (min-width: 1280px){.m-xl-1{margin:3px !important}.mt-xl-1{margin-top:3px !important}.mr-xl-1{margin-right:3px !important}.mb-xl-1{margin-bottom:3px !important}.ml-xl-1{margin-left:3px !important}.mx-xl-1{margin-right:3px !important;margin-left:3px !important}.my-xl-1{margin-top:3px !important;margin-bottom:3px !important}}@media (min-width: 1280px){.m-xl-2{margin:6px !important}.mt-xl-2{margin-top:6px !important}.mr-xl-2{margin-right:6px !important}.mb-xl-2{margin-bottom:6px !important}.ml-xl-2{margin-left:6px !important}.mx-xl-2{margin-right:6px !important;margin-left:6px !important}.my-xl-2{margin-top:6px !important;margin-bottom:6px !important}}@media (min-width: 1280px){.m-xl-3{margin:12px !important}.mt-xl-3{margin-top:12px !important}.mr-xl-3{margin-right:12px !important}.mb-xl-3{margin-bottom:12px !important}.ml-xl-3{margin-left:12px !important}.mx-xl-3{margin-right:12px !important;margin-left:12px !important}.my-xl-3{margin-top:12px !important;margin-bottom:12px !important}}@media (min-width: 1280px){.m-xl-4{margin:24px !important}.mt-xl-4{margin-top:24px !important}.mr-xl-4{margin-right:24px !important}.mb-xl-4{margin-bottom:24px !important}.ml-xl-4{margin-left:24px !important}.mx-xl-4{margin-right:24px !important;margin-left:24px !important}.my-xl-4{margin-top:24px !important;margin-bottom:24px !important}}@media (min-width: 1280px){.m-xl-5{margin:36px !important}.mt-xl-5{margin-top:36px !important}.mr-xl-5{margin-right:36px !important}.mb-xl-5{margin-bottom:36px !important}.ml-xl-5{margin-left:36px !important}.mx-xl-5{margin-right:36px !important;margin-left:36px !important}.my-xl-5{margin-top:36px !important;margin-bottom:36px !important}}@media (min-width: 1280px){.m-xl-6{margin:48px !important}.mt-xl-6{margin-top:48px !important}.mr-xl-6{margin-right:48px !important}.mb-xl-6{margin-bottom:48px !important}.ml-xl-6{margin-left:48px !important}.mx-xl-6{margin-right:48px !important;margin-left:48px !important}.my-xl-6{margin-top:48px !important;margin-bottom:48px !important}}.mx-auto{margin-right:auto !important;margin-left:auto !important}.p-0{padding:0 !important}.pt-0{padding-top:0 !important}.pr-0{padding-right:0 !important}.pb-0{padding-bottom:0 !important}.pl-0{padding-left:0 !important}.px-0{padding-right:0 !important;padding-left:0 !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.p-1{padding:3px !important}.pt-1{padding-top:3px !important}.pr-1{padding-right:3px !important}.pb-1{padding-bottom:3px !important}.pl-1{padding-left:3px !important}.px-1{padding-right:3px !important;padding-left:3px !important}.py-1{padding-top:3px !important;padding-bottom:3px !important}.p-2{padding:6px !important}.pt-2{padding-top:6px !important}.pr-2{padding-right:6px !important}.pb-2{padding-bottom:6px !important}.pl-2{padding-left:6px !important}.px-2{padding-right:6px !important;padding-left:6px !important}.py-2{padding-top:6px !important;padding-bottom:6px !important}.p-3{padding:12px !important}.pt-3{padding-top:12px !important}.pr-3{padding-right:12px !important}.pb-3{padding-bottom:12px !important}.pl-3{padding-left:12px !important}.px-3{padding-right:12px !important;padding-left:12px !important}.py-3{padding-top:12px !important;padding-bottom:12px !important}.p-4{padding:24px !important}.pt-4{padding-top:24px !important}.pr-4{padding-right:24px !important}.pb-4{padding-bottom:24px !important}.pl-4{padding-left:24px !important}.px-4{padding-right:24px !important;padding-left:24px !important}.py-4{padding-top:24px !important;padding-bottom:24px !important}.p-5{padding:36px !important}.pt-5{padding-top:36px !important}.pr-5{padding-right:36px !important}.pb-5{padding-bottom:36px !important}.pl-5{padding-left:36px !important}.px-5{padding-right:36px !important;padding-left:36px !important}.py-5{padding-top:36px !important;padding-bottom:36px !important}.p-6{padding:48px !important}.pt-6{padding-top:48px !important}.pr-6{padding-right:48px !important}.pb-6{padding-bottom:48px !important}.pl-6{padding-left:48px !important}.px-6{padding-right:48px !important;padding-left:48px !important}.py-6{padding-top:48px !important;padding-bottom:48px !important}@media (min-width: 544px){.p-sm-0{padding:0 !important}.pt-sm-0{padding-top:0 !important}.pr-sm-0{padding-right:0 !important}.pb-sm-0{padding-bottom:0 !important}.pl-sm-0{padding-left:0 !important}.px-sm-0{padding-right:0 !important;padding-left:0 !important}.py-sm-0{padding-top:0 !important;padding-bottom:0 !important}}@media (min-width: 544px){.p-sm-1{padding:3px !important}.pt-sm-1{padding-top:3px !important}.pr-sm-1{padding-right:3px !important}.pb-sm-1{padding-bottom:3px !important}.pl-sm-1{padding-left:3px !important}.px-sm-1{padding-right:3px !important;padding-left:3px !important}.py-sm-1{padding-top:3px !important;padding-bottom:3px !important}}@media (min-width: 544px){.p-sm-2{padding:6px !important}.pt-sm-2{padding-top:6px !important}.pr-sm-2{padding-right:6px !important}.pb-sm-2{padding-bottom:6px !important}.pl-sm-2{padding-left:6px !important}.px-sm-2{padding-right:6px !important;padding-left:6px !important}.py-sm-2{padding-top:6px !important;padding-bottom:6px !important}}@media (min-width: 544px){.p-sm-3{padding:12px !important}.pt-sm-3{padding-top:12px !important}.pr-sm-3{padding-right:12px !important}.pb-sm-3{padding-bottom:12px !important}.pl-sm-3{padding-left:12px !important}.px-sm-3{padding-right:12px !important;padding-left:12px !important}.py-sm-3{padding-top:12px !important;padding-bottom:12px !important}}@media (min-width: 544px){.p-sm-4{padding:24px !important}.pt-sm-4{padding-top:24px !important}.pr-sm-4{padding-right:24px !important}.pb-sm-4{padding-bottom:24px !important}.pl-sm-4{padding-left:24px !important}.px-sm-4{padding-right:24px !important;padding-left:24px !important}.py-sm-4{padding-top:24px !important;padding-bottom:24px !important}}@media (min-width: 544px){.p-sm-5{padding:36px !important}.pt-sm-5{padding-top:36px !important}.pr-sm-5{padding-right:36px !important}.pb-sm-5{padding-bottom:36px !important}.pl-sm-5{padding-left:36px !important}.px-sm-5{padding-right:36px !important;padding-left:36px !important}.py-sm-5{padding-top:36px !important;padding-bottom:36px !important}}@media (min-width: 544px){.p-sm-6{padding:48px !important}.pt-sm-6{padding-top:48px !important}.pr-sm-6{padding-right:48px !important}.pb-sm-6{padding-bottom:48px !important}.pl-sm-6{padding-left:48px !important}.px-sm-6{padding-right:48px !important;padding-left:48px !important}.py-sm-6{padding-top:48px !important;padding-bottom:48px !important}}@media (min-width: 768px){.p-md-0{padding:0 !important}.pt-md-0{padding-top:0 !important}.pr-md-0{padding-right:0 !important}.pb-md-0{padding-bottom:0 !important}.pl-md-0{padding-left:0 !important}.px-md-0{padding-right:0 !important;padding-left:0 !important}.py-md-0{padding-top:0 !important;padding-bottom:0 !important}}@media (min-width: 768px){.p-md-1{padding:3px !important}.pt-md-1{padding-top:3px !important}.pr-md-1{padding-right:3px !important}.pb-md-1{padding-bottom:3px !important}.pl-md-1{padding-left:3px !important}.px-md-1{padding-right:3px !important;padding-left:3px !important}.py-md-1{padding-top:3px !important;padding-bottom:3px !important}}@media (min-width: 768px){.p-md-2{padding:6px !important}.pt-md-2{padding-top:6px !important}.pr-md-2{padding-right:6px !important}.pb-md-2{padding-bottom:6px !important}.pl-md-2{padding-left:6px !important}.px-md-2{padding-right:6px !important;padding-left:6px !important}.py-md-2{padding-top:6px !important;padding-bottom:6px !important}}@media (min-width: 768px){.p-md-3{padding:12px !important}.pt-md-3{padding-top:12px !important}.pr-md-3{padding-right:12px !important}.pb-md-3{padding-bottom:12px !important}.pl-md-3{padding-left:12px !important}.px-md-3{padding-right:12px !important;padding-left:12px !important}.py-md-3{padding-top:12px !important;padding-bottom:12px !important}}@media (min-width: 768px){.p-md-4{padding:24px !important}.pt-md-4{padding-top:24px !important}.pr-md-4{padding-right:24px !important}.pb-md-4{padding-bottom:24px !important}.pl-md-4{padding-left:24px !important}.px-md-4{padding-right:24px !important;padding-left:24px !important}.py-md-4{padding-top:24px !important;padding-bottom:24px !important}}@media (min-width: 768px){.p-md-5{padding:36px !important}.pt-md-5{padding-top:36px !important}.pr-md-5{padding-right:36px !important}.pb-md-5{padding-bottom:36px !important}.pl-md-5{padding-left:36px !important}.px-md-5{padding-right:36px !important;padding-left:36px !important}.py-md-5{padding-top:36px !important;padding-bottom:36px !important}}@media (min-width: 768px){.p-md-6{padding:48px !important}.pt-md-6{padding-top:48px !important}.pr-md-6{padding-right:48px !important}.pb-md-6{padding-bottom:48px !important}.pl-md-6{padding-left:48px !important}.px-md-6{padding-right:48px !important;padding-left:48px !important}.py-md-6{padding-top:48px !important;padding-bottom:48px !important}}@media (min-width: 1004px){.p-lg-0{padding:0 !important}.pt-lg-0{padding-top:0 !important}.pr-lg-0{padding-right:0 !important}.pb-lg-0{padding-bottom:0 !important}.pl-lg-0{padding-left:0 !important}.px-lg-0{padding-right:0 !important;padding-left:0 !important}.py-lg-0{padding-top:0 !important;padding-bottom:0 !important}}@media (min-width: 1004px){.p-lg-1{padding:3px !important}.pt-lg-1{padding-top:3px !important}.pr-lg-1{padding-right:3px !important}.pb-lg-1{padding-bottom:3px !important}.pl-lg-1{padding-left:3px !important}.px-lg-1{padding-right:3px !important;padding-left:3px !important}.py-lg-1{padding-top:3px !important;padding-bottom:3px !important}}@media (min-width: 1004px){.p-lg-2{padding:6px !important}.pt-lg-2{padding-top:6px !important}.pr-lg-2{padding-right:6px !important}.pb-lg-2{padding-bottom:6px !important}.pl-lg-2{padding-left:6px !important}.px-lg-2{padding-right:6px !important;padding-left:6px !important}.py-lg-2{padding-top:6px !important;padding-bottom:6px !important}}@media (min-width: 1004px){.p-lg-3{padding:12px !important}.pt-lg-3{padding-top:12px !important}.pr-lg-3{padding-right:12px !important}.pb-lg-3{padding-bottom:12px !important}.pl-lg-3{padding-left:12px !important}.px-lg-3{padding-right:12px !important;padding-left:12px !important}.py-lg-3{padding-top:12px !important;padding-bottom:12px !important}}@media (min-width: 1004px){.p-lg-4{padding:24px !important}.pt-lg-4{padding-top:24px !important}.pr-lg-4{padding-right:24px !important}.pb-lg-4{padding-bottom:24px !important}.pl-lg-4{padding-left:24px !important}.px-lg-4{padding-right:24px !important;padding-left:24px !important}.py-lg-4{padding-top:24px !important;padding-bottom:24px !important}}@media (min-width: 1004px){.p-lg-5{padding:36px !important}.pt-lg-5{padding-top:36px !important}.pr-lg-5{padding-right:36px !important}.pb-lg-5{padding-bottom:36px !important}.pl-lg-5{padding-left:36px !important}.px-lg-5{padding-right:36px !important;padding-left:36px !important}.py-lg-5{padding-top:36px !important;padding-bottom:36px !important}}@media (min-width: 1004px){.p-lg-6{padding:48px !important}.pt-lg-6{padding-top:48px !important}.pr-lg-6{padding-right:48px !important}.pb-lg-6{padding-bottom:48px !important}.pl-lg-6{padding-left:48px !important}.px-lg-6{padding-right:48px !important;padding-left:48px !important}.py-lg-6{padding-top:48px !important;padding-bottom:48px !important}}@media (min-width: 1280px){.p-xl-0{padding:0 !important}.pt-xl-0{padding-top:0 !important}.pr-xl-0{padding-right:0 !important}.pb-xl-0{padding-bottom:0 !important}.pl-xl-0{padding-left:0 !important}.px-xl-0{padding-right:0 !important;padding-left:0 !important}.py-xl-0{padding-top:0 !important;padding-bottom:0 !important}}@media (min-width: 1280px){.p-xl-1{padding:3px !important}.pt-xl-1{padding-top:3px !important}.pr-xl-1{padding-right:3px !important}.pb-xl-1{padding-bottom:3px !important}.pl-xl-1{padding-left:3px !important}.px-xl-1{padding-right:3px !important;padding-left:3px !important}.py-xl-1{padding-top:3px !important;padding-bottom:3px !important}}@media (min-width: 1280px){.p-xl-2{padding:6px !important}.pt-xl-2{padding-top:6px !important}.pr-xl-2{padding-right:6px !important}.pb-xl-2{padding-bottom:6px !important}.pl-xl-2{padding-left:6px !important}.px-xl-2{padding-right:6px !important;padding-left:6px !important}.py-xl-2{padding-top:6px !important;padding-bottom:6px !important}}@media (min-width: 1280px){.p-xl-3{padding:12px !important}.pt-xl-3{padding-top:12px !important}.pr-xl-3{padding-right:12px !important}.pb-xl-3{padding-bottom:12px !important}.pl-xl-3{padding-left:12px !important}.px-xl-3{padding-right:12px !important;padding-left:12px !important}.py-xl-3{padding-top:12px !important;padding-bottom:12px !important}}@media (min-width: 1280px){.p-xl-4{padding:24px !important}.pt-xl-4{padding-top:24px !important}.pr-xl-4{padding-right:24px !important}.pb-xl-4{padding-bottom:24px !important}.pl-xl-4{padding-left:24px !important}.px-xl-4{padding-right:24px !important;padding-left:24px !important}.py-xl-4{padding-top:24px !important;padding-bottom:24px !important}}@media (min-width: 1280px){.p-xl-5{padding:36px !important}.pt-xl-5{padding-top:36px !important}.pr-xl-5{padding-right:36px !important}.pb-xl-5{padding-bottom:36px !important}.pl-xl-5{padding-left:36px !important}.px-xl-5{padding-right:36px !important;padding-left:36px !important}.py-xl-5{padding-top:36px !important;padding-bottom:36px !important}}@media (min-width: 1280px){.p-xl-6{padding:48px !important}.pt-xl-6{padding-top:48px !important}.pr-xl-6{padding-right:48px !important}.pb-xl-6{padding-bottom:48px !important}.pl-xl-6{padding-left:48px !important}.px-xl-6{padding-right:48px !important;padding-left:48px !important}.py-xl-6{padding-top:48px !important;padding-bottom:48px !important}}.h1,.h2,.h3,.h4,.h5,.h6{font-weight:600 !important}.h1{font-size:26px !important}@media (min-width: 768px){.h1{font-size:32px !important}}.h2{font-size:22px !important}@media (min-width: 768px){.h2{font-size:24px !important}}.h3{font-size:18px !important}@media (min-width: 768px){.h3{font-size:20px !important}}.h4{font-size:16px !important}@media (min-width: 768px){.h4{font-size:16px !important}}.h5{font-size:14px !important}.h6{font-size:12px !important}.f1{font-size:26px !important}@media (min-width: 768px){.f1{font-size:32px !important}}.f2{font-size:22px !important}@media (min-width: 768px){.f2{font-size:24px !important}}.f3{font-size:18px !important}@media (min-width: 768px){.f3{font-size:20px !important}}.f4{font-size:16px !important}@media (min-width: 768px){.f4{font-size:16px !important}}.f5{font-size:14px !important}.f6{font-size:12px !important}.f00-light{font-size:40px !important;font-weight:300 !important}@media (min-width: 768px){.f00-light{font-size:48px !important}}.f0-light{font-size:32px !important;font-weight:300 !important}@media (min-width: 768px){.f0-light{font-size:40px !important}}.f1-light{font-size:26px !important;font-weight:300 !important}@media (min-width: 768px){.f1-light{font-size:32px !important}}.f2-light{font-size:22px !important;font-weight:300 !important}@media (min-width: 768px){.f2-light{font-size:24px !important}}.f3-light{font-size:18px !important;font-weight:300 !important}@media (min-width: 768px){.f3-light{font-size:20px !important}}.text-small{font-size:12px !important}.lead{margin-bottom:30px;font-size:20px;font-weight:300;color:#555}.lh-condensed-ultra{line-height:1 !important}.lh-condensed{line-height:1.25 !important}.lh-default{line-height:1.5 !important}.text-right{text-align:right !important}.text-left{text-align:left !important}.text-center{text-align:center !important}.text-normal{font-weight:normal !important}.text-bold{font-weight:600 !important}.text-italic{font-style:italic !important}.text-uppercase{text-transform:uppercase !important}.no-underline{text-decoration:none !important}.no-wrap{white-space:nowrap !important}.text-emphasized{font-weight:600;color:#333}
         
     | 
| 
       2 
     | 
    
         
            -
             
     | 
| 
      
 1 
     | 
    
         
            +
            .anim-fade-in{-webkit-animation-name:fade-in;animation-name:fade-in;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}.anim-fade-in.fast{-webkit-animation-duration:300ms;animation-duration:300ms}@-webkit-keyframes fade-in{0%{opacity:0}100%{opacity:1}}@keyframes fade-in{0%{opacity:0}100%{opacity:1}}.anim-fade-up{opacity:0;-webkit-animation-name:fade-up;animation-name:fade-up;-webkit-animation-duration:0.3s;animation-duration:0.3s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-animation-delay:1s;animation-delay:1s}@-webkit-keyframes fade-up{0%{opacity:0.8;-webkit-transform:translateY(100%);transform:translateY(100%)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fade-up{0%{opacity:0.8;-webkit-transform:translateY(100%);transform:translateY(100%)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}.anim-fade-down{-webkit-animation-name:fade-down;animation-name:fade-down;-webkit-animation-duration:0.3s;animation-duration:0.3s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes fade-down{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0.5;-webkit-transform:translateY(100%);transform:translateY(100%)}}@keyframes fade-down{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0.5;-webkit-transform:translateY(100%);transform:translateY(100%)}}.anim-grow-x{width:0%;-webkit-animation-name:grow-x;animation-name:grow-x;-webkit-animation-duration:0.3s;animation-duration:0.3s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-timing-function:ease;animation-timing-function:ease;-webkit-animation-delay:0.5s;animation-delay:0.5s}@-webkit-keyframes grow-x{to{width:100%}}@keyframes grow-x{to{width:100%}}.anim-shrink-x{-webkit-animation-name:shrink-x;animation-name:shrink-x;-webkit-animation-duration:0.3s;animation-duration:0.3s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-delay:0.5s;animation-delay:0.5s}@-webkit-keyframes shrink-x{to{width:0%}}@keyframes shrink-x{to{width:0%}}.anim-scale-in{-webkit-animation-name:scale-in;animation-name:scale-in;-webkit-animation-duration:0.15s;animation-duration:0.15s;-webkit-animation-timing-function:cubic-bezier(0.2, 0, 0.13, 1.5);animation-timing-function:cubic-bezier(0.2, 0, 0.13, 1.5)}@-webkit-keyframes scale-in{0%{opacity:0;-webkit-transform:scale(0.5);transform:scale(0.5)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes scale-in{0%{opacity:0;-webkit-transform:scale(0.5);transform:scale(0.5)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.anim-pulse{-webkit-animation-name:pulse;animation-name:pulse;-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}@-webkit-keyframes pulse{0%{opacity:0.3}10%{opacity:1}100%{opacity:0.3}}@keyframes pulse{0%{opacity:0.3}10%{opacity:1}100%{opacity:0.3}}.anim-pulse-in{-webkit-animation-name:pulse-in;animation-name:pulse-in;-webkit-animation-duration:0.5s;animation-duration:0.5s}@-webkit-keyframes pulse-in{0%{-webkit-transform:scale3d(1, 1, 1);transform:scale3d(1, 1, 1)}50%{-webkit-transform:scale3d(1.1, 1.1, 1.1);transform:scale3d(1.1, 1.1, 1.1)}100%{-webkit-transform:scale3d(1, 1, 1);transform:scale3d(1, 1, 1)}}@keyframes pulse-in{0%{-webkit-transform:scale3d(1, 1, 1);transform:scale3d(1, 1, 1)}50%{-webkit-transform:scale3d(1.1, 1.1, 1.1);transform:scale3d(1.1, 1.1, 1.1)}100%{-webkit-transform:scale3d(1, 1, 1);transform:scale3d(1, 1, 1)}}.border{border:1px #e1e4e8 solid !important}.border-top{border-top:1px #e1e4e8 solid !important}.border-right{border-right:1px #e1e4e8 solid !important}.border-bottom{border-bottom:1px #e1e4e8 solid !important}.border-left{border-left:1px #e1e4e8 solid !important}.border-y{border-top:1px #e1e4e8 solid !important;border-bottom:1px #e1e4e8 solid !important}.border-dashed{border-style:dashed !important}.border-blue{border-color:#0366d6 !important}.border-blue-light{border-color:#c8e1ff !important}.border-green{border-color:#34d058 !important}.border-green-light{border-color:#a2cbac !important}.border-red{border-color:#d73a49 !important}.border-red-light{border-color:#cea0a5 !important}.border-yellow{border-color:#d9d0a5 !important}.border-gray-light{border-color:#eaecef !important}.border-gray-dark{border-color:#d1d5da !important}.border-black-fade{border-color:rgba(27,31,35,0.15) !important}.border-0{border:0 !important}.border-top-0{border-top:0 !important}.border-right-0{border-right:0 !important}.border-bottom-0{border-bottom:0 !important}.border-left-0{border-left:0 !important}.rounded-0{border-radius:0 !important}.rounded-1{border-radius:3px !important}.rounded-2{border-radius:6px !important}.box-shadow{box-shadow:0 1px 1px rgba(0,0,0,0.1) !important}.box-shadow-medium{box-shadow:0 1px 5px rgba(0,0,0,0.15) !important}.box-shadow-large{box-shadow:0 1px 15px rgba(0,0,0,0.15) !important}.box-shadow-extra-large{box-shadow:0 10px 50px rgba(0,0,0,0.05) !important}.box-shadow-none{box-shadow:none !important}.bg-white{background-color:#fff !important}.bg-blue{background-color:#0366d6 !important}.bg-blue-light{background-color:#f1f8ff !important}.bg-gray-dark{background-color:#24292e !important}.bg-gray{background-color:#f6f8fa !important}.bg-gray-light{background-color:#fafbfc !important}.bg-green{background-color:#28a745 !important}.bg-green-light{background-color:#dcffe4 !important}.bg-red{background-color:#d73a49 !important}.bg-red-light{background-color:#ffdce0 !important}.bg-yellow{background-color:#ffd33d !important}.bg-yellow-light{background-color:#fff5b1 !important}.bg-purple{background-color:#6f42c1 !important}.bg-purple-light{background-color:#f5f0ff !important}.bg-shade-gradient{background-image:-webkit-linear-gradient(top, rgba(0,0,0,0.065), transparent) !important;background-image:linear-gradient(180deg, rgba(0,0,0,0.065), transparent) !important;background-repeat:no-repeat !important;background-size:100% 200px !important}.text-blue{color:#0366d6 !important}.text-red{color:#cb2431 !important}.text-gray-light{color:#6a737d !important}.text-gray{color:#586069 !important}.text-gray-dark{color:#24292e !important}.text-green{color:#28a745 !important}.text-orange{color:#a04100 !important}.text-orange-light{color:#e36209 !important}.text-purple{color:#6f42c1 !important}.text-white{color:#fff !important}.text-inherit{color:inherit !important}.text-renamed{color:#ffd33d !important}.text-pending{color:#b08800 !important}.bg-pending{color:#dbab09 !important}.link-gray{color:#586069 !important}.link-gray:hover{color:#0366d6 !important}.link-gray-dark{color:#24292e !important}.link-gray-dark:hover{color:#0366d6 !important}.link-hover-blue:hover{color:#0366d6 !important}.muted-link{color:#586069 !important}.muted-link:hover{color:#0366d6 !important;text-decoration:none}.flex-row{-webkit-box-orient:horizontal !important;-webkit-box-direction:normal !important;flex-direction:row !important}.flex-row-reverse{-webkit-box-orient:horizontal !important;-webkit-box-direction:reverse !important;flex-direction:row-reverse !important}.flex-column{-webkit-box-orient:vertical !important;-webkit-box-direction:normal !important;flex-direction:column !important}.flex-wrap{flex-wrap:wrap !important}.flex-nowrap{flex-wrap:nowrap !important}.flex-justify-start{-webkit-box-pack:start !important;justify-content:flex-start !important}.flex-justify-end{-webkit-box-pack:end !important;justify-content:flex-end !important}.flex-justify-center{-webkit-box-pack:center !important;justify-content:center !important}.flex-justify-between{-webkit-box-pack:justify !important;justify-content:space-between !important}.flex-justify-around{justify-content:space-around !important}.flex-items-start{-webkit-box-align:start !important;align-items:flex-start !important}.flex-items-end{-webkit-box-align:end !important;align-items:flex-end !important}.flex-items-center{-webkit-box-align:center !important;align-items:center !important}.flex-items-baseline{-webkit-box-align:baseline !important;align-items:baseline !important}.flex-items-stretch{-webkit-box-align:stretch !important;align-items:stretch !important}.flex-content-start{align-content:flex-start !important}.flex-content-end{align-content:flex-end !important}.flex-content-center{align-content:center !important}.flex-content-between{align-content:space-between !important}.flex-content-around{align-content:space-around !important}.flex-content-stretch{align-content:stretch !important}.flex-auto{-webkit-box-flex:1 !important;flex:1 1 auto !important}.flex-shrink-0{flex-shrink:0 !important}.flex-self-auto{-ms-grid-row-align:auto !important;align-self:auto !important}.flex-self-start{align-self:flex-start !important}.flex-self-end{align-self:flex-end !important}.flex-self-center{-ms-grid-row-align:center !important;align-self:center !important}.flex-self-baseline{align-self:baseline !important}.flex-self-stretch{-ms-grid-row-align:stretch !important;align-self:stretch !important}.flex-item-equal{-webkit-box-flex:1;flex-grow:1;flex-basis:0}@media (min-width: 544px){.flex-sm-row{-webkit-box-orient:horizontal !important;-webkit-box-direction:normal !important;flex-direction:row !important}.flex-sm-row-reverse{-webkit-box-orient:horizontal !important;-webkit-box-direction:reverse !important;flex-direction:row-reverse !important}.flex-sm-column{-webkit-box-orient:vertical !important;-webkit-box-direction:normal !important;flex-direction:column !important}.flex-sm-wrap{flex-wrap:wrap !important}.flex-sm-nowrap{flex-wrap:nowrap !important}.flex-sm-justify-start{-webkit-box-pack:start !important;justify-content:flex-start !important}.flex-sm-justify-end{-webkit-box-pack:end !important;justify-content:flex-end !important}.flex-sm-justify-center{-webkit-box-pack:center !important;justify-content:center !important}.flex-sm-justify-between{-webkit-box-pack:justify !important;justify-content:space-between !important}.flex-sm-justify-around{justify-content:space-around !important}.flex-sm-items-start{-webkit-box-align:start !important;align-items:flex-start !important}.flex-sm-items-end{-webkit-box-align:end !important;align-items:flex-end !important}.flex-sm-items-center{-webkit-box-align:center !important;align-items:center !important}.flex-sm-items-baseline{-webkit-box-align:baseline !important;align-items:baseline !important}.flex-sm-items-stretch{-webkit-box-align:stretch !important;align-items:stretch !important}.flex-sm-content-start{align-content:flex-start !important}.flex-sm-content-end{align-content:flex-end !important}.flex-sm-content-center{align-content:center !important}.flex-sm-content-between{align-content:space-between !important}.flex-sm-content-around{align-content:space-around !important}.flex-sm-content-stretch{align-content:stretch !important}.flex-sm-auto{-webkit-box-flex:1 !important;flex:1 1 auto !important}.flex-sm-shrink-0{flex-shrink:0 !important}.flex-sm-self-auto{-ms-grid-row-align:auto !important;align-self:auto !important}.flex-sm-self-start{align-self:flex-start !important}.flex-sm-self-end{align-self:flex-end !important}.flex-sm-self-center{-ms-grid-row-align:center !important;align-self:center !important}.flex-sm-self-baseline{align-self:baseline !important}.flex-sm-self-stretch{-ms-grid-row-align:stretch !important;align-self:stretch !important}.flex-sm-item-equal{-webkit-box-flex:1;flex-grow:1;flex-basis:0}}@media (min-width: 768px){.flex-md-row{-webkit-box-orient:horizontal !important;-webkit-box-direction:normal !important;flex-direction:row !important}.flex-md-row-reverse{-webkit-box-orient:horizontal !important;-webkit-box-direction:reverse !important;flex-direction:row-reverse !important}.flex-md-column{-webkit-box-orient:vertical !important;-webkit-box-direction:normal !important;flex-direction:column !important}.flex-md-wrap{flex-wrap:wrap !important}.flex-md-nowrap{flex-wrap:nowrap !important}.flex-md-justify-start{-webkit-box-pack:start !important;justify-content:flex-start !important}.flex-md-justify-end{-webkit-box-pack:end !important;justify-content:flex-end !important}.flex-md-justify-center{-webkit-box-pack:center !important;justify-content:center !important}.flex-md-justify-between{-webkit-box-pack:justify !important;justify-content:space-between !important}.flex-md-justify-around{justify-content:space-around !important}.flex-md-items-start{-webkit-box-align:start !important;align-items:flex-start !important}.flex-md-items-end{-webkit-box-align:end !important;align-items:flex-end !important}.flex-md-items-center{-webkit-box-align:center !important;align-items:center !important}.flex-md-items-baseline{-webkit-box-align:baseline !important;align-items:baseline !important}.flex-md-items-stretch{-webkit-box-align:stretch !important;align-items:stretch !important}.flex-md-content-start{align-content:flex-start !important}.flex-md-content-end{align-content:flex-end !important}.flex-md-content-center{align-content:center !important}.flex-md-content-between{align-content:space-between !important}.flex-md-content-around{align-content:space-around !important}.flex-md-content-stretch{align-content:stretch !important}.flex-md-auto{-webkit-box-flex:1 !important;flex:1 1 auto !important}.flex-md-shrink-0{flex-shrink:0 !important}.flex-md-self-auto{-ms-grid-row-align:auto !important;align-self:auto !important}.flex-md-self-start{align-self:flex-start !important}.flex-md-self-end{align-self:flex-end !important}.flex-md-self-center{-ms-grid-row-align:center !important;align-self:center !important}.flex-md-self-baseline{align-self:baseline !important}.flex-md-self-stretch{-ms-grid-row-align:stretch !important;align-self:stretch !important}.flex-md-item-equal{-webkit-box-flex:1;flex-grow:1;flex-basis:0}}@media (min-width: 1012px){.flex-lg-row{-webkit-box-orient:horizontal !important;-webkit-box-direction:normal !important;flex-direction:row !important}.flex-lg-row-reverse{-webkit-box-orient:horizontal !important;-webkit-box-direction:reverse !important;flex-direction:row-reverse !important}.flex-lg-column{-webkit-box-orient:vertical !important;-webkit-box-direction:normal !important;flex-direction:column !important}.flex-lg-wrap{flex-wrap:wrap !important}.flex-lg-nowrap{flex-wrap:nowrap !important}.flex-lg-justify-start{-webkit-box-pack:start !important;justify-content:flex-start !important}.flex-lg-justify-end{-webkit-box-pack:end !important;justify-content:flex-end !important}.flex-lg-justify-center{-webkit-box-pack:center !important;justify-content:center !important}.flex-lg-justify-between{-webkit-box-pack:justify !important;justify-content:space-between !important}.flex-lg-justify-around{justify-content:space-around !important}.flex-lg-items-start{-webkit-box-align:start !important;align-items:flex-start !important}.flex-lg-items-end{-webkit-box-align:end !important;align-items:flex-end !important}.flex-lg-items-center{-webkit-box-align:center !important;align-items:center !important}.flex-lg-items-baseline{-webkit-box-align:baseline !important;align-items:baseline !important}.flex-lg-items-stretch{-webkit-box-align:stretch !important;align-items:stretch !important}.flex-lg-content-start{align-content:flex-start !important}.flex-lg-content-end{align-content:flex-end !important}.flex-lg-content-center{align-content:center !important}.flex-lg-content-between{align-content:space-between !important}.flex-lg-content-around{align-content:space-around !important}.flex-lg-content-stretch{align-content:stretch !important}.flex-lg-auto{-webkit-box-flex:1 !important;flex:1 1 auto !important}.flex-lg-shrink-0{flex-shrink:0 !important}.flex-lg-self-auto{-ms-grid-row-align:auto !important;align-self:auto !important}.flex-lg-self-start{align-self:flex-start !important}.flex-lg-self-end{align-self:flex-end !important}.flex-lg-self-center{-ms-grid-row-align:center !important;align-self:center !important}.flex-lg-self-baseline{align-self:baseline !important}.flex-lg-self-stretch{-ms-grid-row-align:stretch !important;align-self:stretch !important}.flex-lg-item-equal{-webkit-box-flex:1;flex-grow:1;flex-basis:0}}@media (min-width: 1280px){.flex-xl-row{-webkit-box-orient:horizontal !important;-webkit-box-direction:normal !important;flex-direction:row !important}.flex-xl-row-reverse{-webkit-box-orient:horizontal !important;-webkit-box-direction:reverse !important;flex-direction:row-reverse !important}.flex-xl-column{-webkit-box-orient:vertical !important;-webkit-box-direction:normal !important;flex-direction:column !important}.flex-xl-wrap{flex-wrap:wrap !important}.flex-xl-nowrap{flex-wrap:nowrap !important}.flex-xl-justify-start{-webkit-box-pack:start !important;justify-content:flex-start !important}.flex-xl-justify-end{-webkit-box-pack:end !important;justify-content:flex-end !important}.flex-xl-justify-center{-webkit-box-pack:center !important;justify-content:center !important}.flex-xl-justify-between{-webkit-box-pack:justify !important;justify-content:space-between !important}.flex-xl-justify-around{justify-content:space-around !important}.flex-xl-items-start{-webkit-box-align:start !important;align-items:flex-start !important}.flex-xl-items-end{-webkit-box-align:end !important;align-items:flex-end !important}.flex-xl-items-center{-webkit-box-align:center !important;align-items:center !important}.flex-xl-items-baseline{-webkit-box-align:baseline !important;align-items:baseline !important}.flex-xl-items-stretch{-webkit-box-align:stretch !important;align-items:stretch !important}.flex-xl-content-start{align-content:flex-start !important}.flex-xl-content-end{align-content:flex-end !important}.flex-xl-content-center{align-content:center !important}.flex-xl-content-between{align-content:space-between !important}.flex-xl-content-around{align-content:space-around !important}.flex-xl-content-stretch{align-content:stretch !important}.flex-xl-auto{-webkit-box-flex:1 !important;flex:1 1 auto !important}.flex-xl-shrink-0{flex-shrink:0 !important}.flex-xl-self-auto{-ms-grid-row-align:auto !important;align-self:auto !important}.flex-xl-self-start{align-self:flex-start !important}.flex-xl-self-end{align-self:flex-end !important}.flex-xl-self-center{-ms-grid-row-align:center !important;align-self:center !important}.flex-xl-self-baseline{align-self:baseline !important}.flex-xl-self-stretch{-ms-grid-row-align:stretch !important;align-self:stretch !important}.flex-xl-item-equal{-webkit-box-flex:1;flex-grow:1;flex-basis:0}}.position-static{position:static !important}.position-relative{position:relative !important}.position-absolute{position:absolute !important}.position-fixed{position:fixed !important}.top-0{top:0 !important}.right-0{right:0 !important}.bottom-0{bottom:0 !important}.left-0{left:0 !important}.v-align-middle{vertical-align:middle !important}.v-align-top{vertical-align:top !important}.v-align-bottom{vertical-align:bottom !important}.v-align-text-top{vertical-align:text-top !important}.v-align-text-bottom{vertical-align:text-bottom !important}.overflow-hidden{overflow:hidden !important}.overflow-scroll{overflow:scroll !important}.overflow-auto{overflow:auto !important}.clearfix::before{display:table;content:""}.clearfix::after{display:table;clear:both;content:""}.float-right{float:right !important}.float-left{float:left !important}.float-none{float:none !important}@media (min-width: 544px){.float-sm-left{float:left !important}.float-sm-right{float:right !important}.float-sm-none{float:none !important}}@media (min-width: 768px){.float-md-left{float:left !important}.float-md-right{float:right !important}.float-md-none{float:none !important}}@media (min-width: 1012px){.float-lg-left{float:left !important}.float-lg-right{float:right !important}.float-lg-none{float:none !important}}@media (min-width: 1280px){.float-xl-left{float:left !important}.float-xl-right{float:right !important}.float-xl-none{float:none !important}}.width-fit{max-width:100% !important}.width-full{width:100% !important}.height-full{height:100% !important}.min-width-0{min-width:0 !important}.direction-rtl{direction:rtl !important}.direction-ltr{direction:ltr !important}@media (min-width: 544px){.direction-sm-rtl{direction:rtl !important}.direction-sm-ltr{direction:ltr !important}}@media (min-width: 768px){.direction-md-rtl{direction:rtl !important}.direction-md-ltr{direction:ltr !important}}@media (min-width: 1012px){.direction-lg-rtl{direction:rtl !important}.direction-lg-ltr{direction:ltr !important}}@media (min-width: 1280px){.direction-xl-rtl{direction:rtl !important}.direction-xl-ltr{direction:ltr !important}}.m-0{margin:0 !important}.mt-0{margin-top:0 !important}.mr-0{margin-right:0 !important}.mb-0{margin-bottom:0 !important}.ml-0{margin-left:0 !important}.mt-n0{margin-top:-0 !important}.mr-n0{margin-right:-0 !important}.mb-n0{margin-bottom:-0 !important}.ml-n0{margin-left:-0 !important}.mx-0{margin-right:0 !important;margin-left:0 !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.m-1{margin:4px !important}.mt-1{margin-top:4px !important}.mr-1{margin-right:4px !important}.mb-1{margin-bottom:4px !important}.ml-1{margin-left:4px !important}.mt-n1{margin-top:-4px !important}.mr-n1{margin-right:-4px !important}.mb-n1{margin-bottom:-4px !important}.ml-n1{margin-left:-4px !important}.mx-1{margin-right:4px !important;margin-left:4px !important}.my-1{margin-top:4px !important;margin-bottom:4px !important}.m-2{margin:8px !important}.mt-2{margin-top:8px !important}.mr-2{margin-right:8px !important}.mb-2{margin-bottom:8px !important}.ml-2{margin-left:8px !important}.mt-n2{margin-top:-8px !important}.mr-n2{margin-right:-8px !important}.mb-n2{margin-bottom:-8px !important}.ml-n2{margin-left:-8px !important}.mx-2{margin-right:8px !important;margin-left:8px !important}.my-2{margin-top:8px !important;margin-bottom:8px !important}.m-3{margin:16px !important}.mt-3{margin-top:16px !important}.mr-3{margin-right:16px !important}.mb-3{margin-bottom:16px !important}.ml-3{margin-left:16px !important}.mt-n3{margin-top:-16px !important}.mr-n3{margin-right:-16px !important}.mb-n3{margin-bottom:-16px !important}.ml-n3{margin-left:-16px !important}.mx-3{margin-right:16px !important;margin-left:16px !important}.my-3{margin-top:16px !important;margin-bottom:16px !important}.m-4{margin:24px !important}.mt-4{margin-top:24px !important}.mr-4{margin-right:24px !important}.mb-4{margin-bottom:24px !important}.ml-4{margin-left:24px !important}.mt-n4{margin-top:-24px !important}.mr-n4{margin-right:-24px !important}.mb-n4{margin-bottom:-24px !important}.ml-n4{margin-left:-24px !important}.mx-4{margin-right:24px !important;margin-left:24px !important}.my-4{margin-top:24px !important;margin-bottom:24px !important}.m-5{margin:32px !important}.mt-5{margin-top:32px !important}.mr-5{margin-right:32px !important}.mb-5{margin-bottom:32px !important}.ml-5{margin-left:32px !important}.mt-n5{margin-top:-32px !important}.mr-n5{margin-right:-32px !important}.mb-n5{margin-bottom:-32px !important}.ml-n5{margin-left:-32px !important}.mx-5{margin-right:32px !important;margin-left:32px !important}.my-5{margin-top:32px !important;margin-bottom:32px !important}.m-6{margin:40px !important}.mt-6{margin-top:40px !important}.mr-6{margin-right:40px !important}.mb-6{margin-bottom:40px !important}.ml-6{margin-left:40px !important}.mt-n6{margin-top:-40px !important}.mr-n6{margin-right:-40px !important}.mb-n6{margin-bottom:-40px !important}.ml-n6{margin-left:-40px !important}.mx-6{margin-right:40px !important;margin-left:40px !important}.my-6{margin-top:40px !important;margin-bottom:40px !important}.mx-auto{margin-right:auto !important;margin-left:auto !important}@media (min-width: 544px){.m-sm-0{margin:0 !important}.mt-sm-0{margin-top:0 !important}.mr-sm-0{margin-right:0 !important}.mb-sm-0{margin-bottom:0 !important}.ml-sm-0{margin-left:0 !important}.mt-sm-n0{margin-top:-0 !important}.mr-sm-n0{margin-right:-0 !important}.mb-sm-n0{margin-bottom:-0 !important}.ml-sm-n0{margin-left:-0 !important}.mx-sm-0{margin-right:0 !important;margin-left:0 !important}.my-sm-0{margin-top:0 !important;margin-bottom:0 !important}}@media (min-width: 544px){.m-sm-1{margin:4px !important}.mt-sm-1{margin-top:4px !important}.mr-sm-1{margin-right:4px !important}.mb-sm-1{margin-bottom:4px !important}.ml-sm-1{margin-left:4px !important}.mt-sm-n1{margin-top:-4px !important}.mr-sm-n1{margin-right:-4px !important}.mb-sm-n1{margin-bottom:-4px !important}.ml-sm-n1{margin-left:-4px !important}.mx-sm-1{margin-right:4px !important;margin-left:4px !important}.my-sm-1{margin-top:4px !important;margin-bottom:4px !important}}@media (min-width: 544px){.m-sm-2{margin:8px !important}.mt-sm-2{margin-top:8px !important}.mr-sm-2{margin-right:8px !important}.mb-sm-2{margin-bottom:8px !important}.ml-sm-2{margin-left:8px !important}.mt-sm-n2{margin-top:-8px !important}.mr-sm-n2{margin-right:-8px !important}.mb-sm-n2{margin-bottom:-8px !important}.ml-sm-n2{margin-left:-8px !important}.mx-sm-2{margin-right:8px !important;margin-left:8px !important}.my-sm-2{margin-top:8px !important;margin-bottom:8px !important}}@media (min-width: 544px){.m-sm-3{margin:16px !important}.mt-sm-3{margin-top:16px !important}.mr-sm-3{margin-right:16px !important}.mb-sm-3{margin-bottom:16px !important}.ml-sm-3{margin-left:16px !important}.mt-sm-n3{margin-top:-16px !important}.mr-sm-n3{margin-right:-16px !important}.mb-sm-n3{margin-bottom:-16px !important}.ml-sm-n3{margin-left:-16px !important}.mx-sm-3{margin-right:16px !important;margin-left:16px !important}.my-sm-3{margin-top:16px !important;margin-bottom:16px !important}}@media (min-width: 544px){.m-sm-4{margin:24px !important}.mt-sm-4{margin-top:24px !important}.mr-sm-4{margin-right:24px !important}.mb-sm-4{margin-bottom:24px !important}.ml-sm-4{margin-left:24px !important}.mt-sm-n4{margin-top:-24px !important}.mr-sm-n4{margin-right:-24px !important}.mb-sm-n4{margin-bottom:-24px !important}.ml-sm-n4{margin-left:-24px !important}.mx-sm-4{margin-right:24px !important;margin-left:24px !important}.my-sm-4{margin-top:24px !important;margin-bottom:24px !important}}@media (min-width: 544px){.m-sm-5{margin:32px !important}.mt-sm-5{margin-top:32px !important}.mr-sm-5{margin-right:32px !important}.mb-sm-5{margin-bottom:32px !important}.ml-sm-5{margin-left:32px !important}.mt-sm-n5{margin-top:-32px !important}.mr-sm-n5{margin-right:-32px !important}.mb-sm-n5{margin-bottom:-32px !important}.ml-sm-n5{margin-left:-32px !important}.mx-sm-5{margin-right:32px !important;margin-left:32px !important}.my-sm-5{margin-top:32px !important;margin-bottom:32px !important}}@media (min-width: 544px){.m-sm-6{margin:40px !important}.mt-sm-6{margin-top:40px !important}.mr-sm-6{margin-right:40px !important}.mb-sm-6{margin-bottom:40px !important}.ml-sm-6{margin-left:40px !important}.mt-sm-n6{margin-top:-40px !important}.mr-sm-n6{margin-right:-40px !important}.mb-sm-n6{margin-bottom:-40px !important}.ml-sm-n6{margin-left:-40px !important}.mx-sm-6{margin-right:40px !important;margin-left:40px !important}.my-sm-6{margin-top:40px !important;margin-bottom:40px !important}}@media (min-width: 768px){.m-md-0{margin:0 !important}.mt-md-0{margin-top:0 !important}.mr-md-0{margin-right:0 !important}.mb-md-0{margin-bottom:0 !important}.ml-md-0{margin-left:0 !important}.mt-md-n0{margin-top:-0 !important}.mr-md-n0{margin-right:-0 !important}.mb-md-n0{margin-bottom:-0 !important}.ml-md-n0{margin-left:-0 !important}.mx-md-0{margin-right:0 !important;margin-left:0 !important}.my-md-0{margin-top:0 !important;margin-bottom:0 !important}}@media (min-width: 768px){.m-md-1{margin:4px !important}.mt-md-1{margin-top:4px !important}.mr-md-1{margin-right:4px !important}.mb-md-1{margin-bottom:4px !important}.ml-md-1{margin-left:4px !important}.mt-md-n1{margin-top:-4px !important}.mr-md-n1{margin-right:-4px !important}.mb-md-n1{margin-bottom:-4px !important}.ml-md-n1{margin-left:-4px !important}.mx-md-1{margin-right:4px !important;margin-left:4px !important}.my-md-1{margin-top:4px !important;margin-bottom:4px !important}}@media (min-width: 768px){.m-md-2{margin:8px !important}.mt-md-2{margin-top:8px !important}.mr-md-2{margin-right:8px !important}.mb-md-2{margin-bottom:8px !important}.ml-md-2{margin-left:8px !important}.mt-md-n2{margin-top:-8px !important}.mr-md-n2{margin-right:-8px !important}.mb-md-n2{margin-bottom:-8px !important}.ml-md-n2{margin-left:-8px !important}.mx-md-2{margin-right:8px !important;margin-left:8px !important}.my-md-2{margin-top:8px !important;margin-bottom:8px !important}}@media (min-width: 768px){.m-md-3{margin:16px !important}.mt-md-3{margin-top:16px !important}.mr-md-3{margin-right:16px !important}.mb-md-3{margin-bottom:16px !important}.ml-md-3{margin-left:16px !important}.mt-md-n3{margin-top:-16px !important}.mr-md-n3{margin-right:-16px !important}.mb-md-n3{margin-bottom:-16px !important}.ml-md-n3{margin-left:-16px !important}.mx-md-3{margin-right:16px !important;margin-left:16px !important}.my-md-3{margin-top:16px !important;margin-bottom:16px !important}}@media (min-width: 768px){.m-md-4{margin:24px !important}.mt-md-4{margin-top:24px !important}.mr-md-4{margin-right:24px !important}.mb-md-4{margin-bottom:24px !important}.ml-md-4{margin-left:24px !important}.mt-md-n4{margin-top:-24px !important}.mr-md-n4{margin-right:-24px !important}.mb-md-n4{margin-bottom:-24px !important}.ml-md-n4{margin-left:-24px !important}.mx-md-4{margin-right:24px !important;margin-left:24px !important}.my-md-4{margin-top:24px !important;margin-bottom:24px !important}}@media (min-width: 768px){.m-md-5{margin:32px !important}.mt-md-5{margin-top:32px !important}.mr-md-5{margin-right:32px !important}.mb-md-5{margin-bottom:32px !important}.ml-md-5{margin-left:32px !important}.mt-md-n5{margin-top:-32px !important}.mr-md-n5{margin-right:-32px !important}.mb-md-n5{margin-bottom:-32px !important}.ml-md-n5{margin-left:-32px !important}.mx-md-5{margin-right:32px !important;margin-left:32px !important}.my-md-5{margin-top:32px !important;margin-bottom:32px !important}}@media (min-width: 768px){.m-md-6{margin:40px !important}.mt-md-6{margin-top:40px !important}.mr-md-6{margin-right:40px !important}.mb-md-6{margin-bottom:40px !important}.ml-md-6{margin-left:40px !important}.mt-md-n6{margin-top:-40px !important}.mr-md-n6{margin-right:-40px !important}.mb-md-n6{margin-bottom:-40px !important}.ml-md-n6{margin-left:-40px !important}.mx-md-6{margin-right:40px !important;margin-left:40px !important}.my-md-6{margin-top:40px !important;margin-bottom:40px !important}}@media (min-width: 1012px){.m-lg-0{margin:0 !important}.mt-lg-0{margin-top:0 !important}.mr-lg-0{margin-right:0 !important}.mb-lg-0{margin-bottom:0 !important}.ml-lg-0{margin-left:0 !important}.mt-lg-n0{margin-top:-0 !important}.mr-lg-n0{margin-right:-0 !important}.mb-lg-n0{margin-bottom:-0 !important}.ml-lg-n0{margin-left:-0 !important}.mx-lg-0{margin-right:0 !important;margin-left:0 !important}.my-lg-0{margin-top:0 !important;margin-bottom:0 !important}}@media (min-width: 1012px){.m-lg-1{margin:4px !important}.mt-lg-1{margin-top:4px !important}.mr-lg-1{margin-right:4px !important}.mb-lg-1{margin-bottom:4px !important}.ml-lg-1{margin-left:4px !important}.mt-lg-n1{margin-top:-4px !important}.mr-lg-n1{margin-right:-4px !important}.mb-lg-n1{margin-bottom:-4px !important}.ml-lg-n1{margin-left:-4px !important}.mx-lg-1{margin-right:4px !important;margin-left:4px !important}.my-lg-1{margin-top:4px !important;margin-bottom:4px !important}}@media (min-width: 1012px){.m-lg-2{margin:8px !important}.mt-lg-2{margin-top:8px !important}.mr-lg-2{margin-right:8px !important}.mb-lg-2{margin-bottom:8px !important}.ml-lg-2{margin-left:8px !important}.mt-lg-n2{margin-top:-8px !important}.mr-lg-n2{margin-right:-8px !important}.mb-lg-n2{margin-bottom:-8px !important}.ml-lg-n2{margin-left:-8px !important}.mx-lg-2{margin-right:8px !important;margin-left:8px !important}.my-lg-2{margin-top:8px !important;margin-bottom:8px !important}}@media (min-width: 1012px){.m-lg-3{margin:16px !important}.mt-lg-3{margin-top:16px !important}.mr-lg-3{margin-right:16px !important}.mb-lg-3{margin-bottom:16px !important}.ml-lg-3{margin-left:16px !important}.mt-lg-n3{margin-top:-16px !important}.mr-lg-n3{margin-right:-16px !important}.mb-lg-n3{margin-bottom:-16px !important}.ml-lg-n3{margin-left:-16px !important}.mx-lg-3{margin-right:16px !important;margin-left:16px !important}.my-lg-3{margin-top:16px !important;margin-bottom:16px !important}}@media (min-width: 1012px){.m-lg-4{margin:24px !important}.mt-lg-4{margin-top:24px !important}.mr-lg-4{margin-right:24px !important}.mb-lg-4{margin-bottom:24px !important}.ml-lg-4{margin-left:24px !important}.mt-lg-n4{margin-top:-24px !important}.mr-lg-n4{margin-right:-24px !important}.mb-lg-n4{margin-bottom:-24px !important}.ml-lg-n4{margin-left:-24px !important}.mx-lg-4{margin-right:24px !important;margin-left:24px !important}.my-lg-4{margin-top:24px !important;margin-bottom:24px !important}}@media (min-width: 1012px){.m-lg-5{margin:32px !important}.mt-lg-5{margin-top:32px !important}.mr-lg-5{margin-right:32px !important}.mb-lg-5{margin-bottom:32px !important}.ml-lg-5{margin-left:32px !important}.mt-lg-n5{margin-top:-32px !important}.mr-lg-n5{margin-right:-32px !important}.mb-lg-n5{margin-bottom:-32px !important}.ml-lg-n5{margin-left:-32px !important}.mx-lg-5{margin-right:32px !important;margin-left:32px !important}.my-lg-5{margin-top:32px !important;margin-bottom:32px !important}}@media (min-width: 1012px){.m-lg-6{margin:40px !important}.mt-lg-6{margin-top:40px !important}.mr-lg-6{margin-right:40px !important}.mb-lg-6{margin-bottom:40px !important}.ml-lg-6{margin-left:40px !important}.mt-lg-n6{margin-top:-40px !important}.mr-lg-n6{margin-right:-40px !important}.mb-lg-n6{margin-bottom:-40px !important}.ml-lg-n6{margin-left:-40px !important}.mx-lg-6{margin-right:40px !important;margin-left:40px !important}.my-lg-6{margin-top:40px !important;margin-bottom:40px !important}}@media (min-width: 1280px){.m-xl-0{margin:0 !important}.mt-xl-0{margin-top:0 !important}.mr-xl-0{margin-right:0 !important}.mb-xl-0{margin-bottom:0 !important}.ml-xl-0{margin-left:0 !important}.mt-xl-n0{margin-top:-0 !important}.mr-xl-n0{margin-right:-0 !important}.mb-xl-n0{margin-bottom:-0 !important}.ml-xl-n0{margin-left:-0 !important}.mx-xl-0{margin-right:0 !important;margin-left:0 !important}.my-xl-0{margin-top:0 !important;margin-bottom:0 !important}}@media (min-width: 1280px){.m-xl-1{margin:4px !important}.mt-xl-1{margin-top:4px !important}.mr-xl-1{margin-right:4px !important}.mb-xl-1{margin-bottom:4px !important}.ml-xl-1{margin-left:4px !important}.mt-xl-n1{margin-top:-4px !important}.mr-xl-n1{margin-right:-4px !important}.mb-xl-n1{margin-bottom:-4px !important}.ml-xl-n1{margin-left:-4px !important}.mx-xl-1{margin-right:4px !important;margin-left:4px !important}.my-xl-1{margin-top:4px !important;margin-bottom:4px !important}}@media (min-width: 1280px){.m-xl-2{margin:8px !important}.mt-xl-2{margin-top:8px !important}.mr-xl-2{margin-right:8px !important}.mb-xl-2{margin-bottom:8px !important}.ml-xl-2{margin-left:8px !important}.mt-xl-n2{margin-top:-8px !important}.mr-xl-n2{margin-right:-8px !important}.mb-xl-n2{margin-bottom:-8px !important}.ml-xl-n2{margin-left:-8px !important}.mx-xl-2{margin-right:8px !important;margin-left:8px !important}.my-xl-2{margin-top:8px !important;margin-bottom:8px !important}}@media (min-width: 1280px){.m-xl-3{margin:16px !important}.mt-xl-3{margin-top:16px !important}.mr-xl-3{margin-right:16px !important}.mb-xl-3{margin-bottom:16px !important}.ml-xl-3{margin-left:16px !important}.mt-xl-n3{margin-top:-16px !important}.mr-xl-n3{margin-right:-16px !important}.mb-xl-n3{margin-bottom:-16px !important}.ml-xl-n3{margin-left:-16px !important}.mx-xl-3{margin-right:16px !important;margin-left:16px !important}.my-xl-3{margin-top:16px !important;margin-bottom:16px !important}}@media (min-width: 1280px){.m-xl-4{margin:24px !important}.mt-xl-4{margin-top:24px !important}.mr-xl-4{margin-right:24px !important}.mb-xl-4{margin-bottom:24px !important}.ml-xl-4{margin-left:24px !important}.mt-xl-n4{margin-top:-24px !important}.mr-xl-n4{margin-right:-24px !important}.mb-xl-n4{margin-bottom:-24px !important}.ml-xl-n4{margin-left:-24px !important}.mx-xl-4{margin-right:24px !important;margin-left:24px !important}.my-xl-4{margin-top:24px !important;margin-bottom:24px !important}}@media (min-width: 1280px){.m-xl-5{margin:32px !important}.mt-xl-5{margin-top:32px !important}.mr-xl-5{margin-right:32px !important}.mb-xl-5{margin-bottom:32px !important}.ml-xl-5{margin-left:32px !important}.mt-xl-n5{margin-top:-32px !important}.mr-xl-n5{margin-right:-32px !important}.mb-xl-n5{margin-bottom:-32px !important}.ml-xl-n5{margin-left:-32px !important}.mx-xl-5{margin-right:32px !important;margin-left:32px !important}.my-xl-5{margin-top:32px !important;margin-bottom:32px !important}}@media (min-width: 1280px){.m-xl-6{margin:40px !important}.mt-xl-6{margin-top:40px !important}.mr-xl-6{margin-right:40px !important}.mb-xl-6{margin-bottom:40px !important}.ml-xl-6{margin-left:40px !important}.mt-xl-n6{margin-top:-40px !important}.mr-xl-n6{margin-right:-40px !important}.mb-xl-n6{margin-bottom:-40px !important}.ml-xl-n6{margin-left:-40px !important}.mx-xl-6{margin-right:40px !important;margin-left:40px !important}.my-xl-6{margin-top:40px !important;margin-bottom:40px !important}}.p-0{padding:0 !important}.pt-0{padding-top:0 !important}.pr-0{padding-right:0 !important}.pb-0{padding-bottom:0 !important}.pl-0{padding-left:0 !important}.px-0{padding-right:0 !important;padding-left:0 !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.p-1{padding:4px !important}.pt-1{padding-top:4px !important}.pr-1{padding-right:4px !important}.pb-1{padding-bottom:4px !important}.pl-1{padding-left:4px !important}.px-1{padding-right:4px !important;padding-left:4px !important}.py-1{padding-top:4px !important;padding-bottom:4px !important}.p-2{padding:8px !important}.pt-2{padding-top:8px !important}.pr-2{padding-right:8px !important}.pb-2{padding-bottom:8px !important}.pl-2{padding-left:8px !important}.px-2{padding-right:8px !important;padding-left:8px !important}.py-2{padding-top:8px !important;padding-bottom:8px !important}.p-3{padding:16px !important}.pt-3{padding-top:16px !important}.pr-3{padding-right:16px !important}.pb-3{padding-bottom:16px !important}.pl-3{padding-left:16px !important}.px-3{padding-right:16px !important;padding-left:16px !important}.py-3{padding-top:16px !important;padding-bottom:16px !important}.p-4{padding:24px !important}.pt-4{padding-top:24px !important}.pr-4{padding-right:24px !important}.pb-4{padding-bottom:24px !important}.pl-4{padding-left:24px !important}.px-4{padding-right:24px !important;padding-left:24px !important}.py-4{padding-top:24px !important;padding-bottom:24px !important}.p-5{padding:32px !important}.pt-5{padding-top:32px !important}.pr-5{padding-right:32px !important}.pb-5{padding-bottom:32px !important}.pl-5{padding-left:32px !important}.px-5{padding-right:32px !important;padding-left:32px !important}.py-5{padding-top:32px !important;padding-bottom:32px !important}.p-6{padding:40px !important}.pt-6{padding-top:40px !important}.pr-6{padding-right:40px !important}.pb-6{padding-bottom:40px !important}.pl-6{padding-left:40px !important}.px-6{padding-right:40px !important;padding-left:40px !important}.py-6{padding-top:40px !important;padding-bottom:40px !important}@media (min-width: 544px){.p-sm-0{padding:0 !important}.pt-sm-0{padding-top:0 !important}.pr-sm-0{padding-right:0 !important}.pb-sm-0{padding-bottom:0 !important}.pl-sm-0{padding-left:0 !important}.px-sm-0{padding-right:0 !important;padding-left:0 !important}.py-sm-0{padding-top:0 !important;padding-bottom:0 !important}}@media (min-width: 544px){.p-sm-1{padding:4px !important}.pt-sm-1{padding-top:4px !important}.pr-sm-1{padding-right:4px !important}.pb-sm-1{padding-bottom:4px !important}.pl-sm-1{padding-left:4px !important}.px-sm-1{padding-right:4px !important;padding-left:4px !important}.py-sm-1{padding-top:4px !important;padding-bottom:4px !important}}@media (min-width: 544px){.p-sm-2{padding:8px !important}.pt-sm-2{padding-top:8px !important}.pr-sm-2{padding-right:8px !important}.pb-sm-2{padding-bottom:8px !important}.pl-sm-2{padding-left:8px !important}.px-sm-2{padding-right:8px !important;padding-left:8px !important}.py-sm-2{padding-top:8px !important;padding-bottom:8px !important}}@media (min-width: 544px){.p-sm-3{padding:16px !important}.pt-sm-3{padding-top:16px !important}.pr-sm-3{padding-right:16px !important}.pb-sm-3{padding-bottom:16px !important}.pl-sm-3{padding-left:16px !important}.px-sm-3{padding-right:16px !important;padding-left:16px !important}.py-sm-3{padding-top:16px !important;padding-bottom:16px !important}}@media (min-width: 544px){.p-sm-4{padding:24px !important}.pt-sm-4{padding-top:24px !important}.pr-sm-4{padding-right:24px !important}.pb-sm-4{padding-bottom:24px !important}.pl-sm-4{padding-left:24px !important}.px-sm-4{padding-right:24px !important;padding-left:24px !important}.py-sm-4{padding-top:24px !important;padding-bottom:24px !important}}@media (min-width: 544px){.p-sm-5{padding:32px !important}.pt-sm-5{padding-top:32px !important}.pr-sm-5{padding-right:32px !important}.pb-sm-5{padding-bottom:32px !important}.pl-sm-5{padding-left:32px !important}.px-sm-5{padding-right:32px !important;padding-left:32px !important}.py-sm-5{padding-top:32px !important;padding-bottom:32px !important}}@media (min-width: 544px){.p-sm-6{padding:40px !important}.pt-sm-6{padding-top:40px !important}.pr-sm-6{padding-right:40px !important}.pb-sm-6{padding-bottom:40px !important}.pl-sm-6{padding-left:40px !important}.px-sm-6{padding-right:40px !important;padding-left:40px !important}.py-sm-6{padding-top:40px !important;padding-bottom:40px !important}}@media (min-width: 768px){.p-md-0{padding:0 !important}.pt-md-0{padding-top:0 !important}.pr-md-0{padding-right:0 !important}.pb-md-0{padding-bottom:0 !important}.pl-md-0{padding-left:0 !important}.px-md-0{padding-right:0 !important;padding-left:0 !important}.py-md-0{padding-top:0 !important;padding-bottom:0 !important}}@media (min-width: 768px){.p-md-1{padding:4px !important}.pt-md-1{padding-top:4px !important}.pr-md-1{padding-right:4px !important}.pb-md-1{padding-bottom:4px !important}.pl-md-1{padding-left:4px !important}.px-md-1{padding-right:4px !important;padding-left:4px !important}.py-md-1{padding-top:4px !important;padding-bottom:4px !important}}@media (min-width: 768px){.p-md-2{padding:8px !important}.pt-md-2{padding-top:8px !important}.pr-md-2{padding-right:8px !important}.pb-md-2{padding-bottom:8px !important}.pl-md-2{padding-left:8px !important}.px-md-2{padding-right:8px !important;padding-left:8px !important}.py-md-2{padding-top:8px !important;padding-bottom:8px !important}}@media (min-width: 768px){.p-md-3{padding:16px !important}.pt-md-3{padding-top:16px !important}.pr-md-3{padding-right:16px !important}.pb-md-3{padding-bottom:16px !important}.pl-md-3{padding-left:16px !important}.px-md-3{padding-right:16px !important;padding-left:16px !important}.py-md-3{padding-top:16px !important;padding-bottom:16px !important}}@media (min-width: 768px){.p-md-4{padding:24px !important}.pt-md-4{padding-top:24px !important}.pr-md-4{padding-right:24px !important}.pb-md-4{padding-bottom:24px !important}.pl-md-4{padding-left:24px !important}.px-md-4{padding-right:24px !important;padding-left:24px !important}.py-md-4{padding-top:24px !important;padding-bottom:24px !important}}@media (min-width: 768px){.p-md-5{padding:32px !important}.pt-md-5{padding-top:32px !important}.pr-md-5{padding-right:32px !important}.pb-md-5{padding-bottom:32px !important}.pl-md-5{padding-left:32px !important}.px-md-5{padding-right:32px !important;padding-left:32px !important}.py-md-5{padding-top:32px !important;padding-bottom:32px !important}}@media (min-width: 768px){.p-md-6{padding:40px !important}.pt-md-6{padding-top:40px !important}.pr-md-6{padding-right:40px !important}.pb-md-6{padding-bottom:40px !important}.pl-md-6{padding-left:40px !important}.px-md-6{padding-right:40px !important;padding-left:40px !important}.py-md-6{padding-top:40px !important;padding-bottom:40px !important}}@media (min-width: 1012px){.p-lg-0{padding:0 !important}.pt-lg-0{padding-top:0 !important}.pr-lg-0{padding-right:0 !important}.pb-lg-0{padding-bottom:0 !important}.pl-lg-0{padding-left:0 !important}.px-lg-0{padding-right:0 !important;padding-left:0 !important}.py-lg-0{padding-top:0 !important;padding-bottom:0 !important}}@media (min-width: 1012px){.p-lg-1{padding:4px !important}.pt-lg-1{padding-top:4px !important}.pr-lg-1{padding-right:4px !important}.pb-lg-1{padding-bottom:4px !important}.pl-lg-1{padding-left:4px !important}.px-lg-1{padding-right:4px !important;padding-left:4px !important}.py-lg-1{padding-top:4px !important;padding-bottom:4px !important}}@media (min-width: 1012px){.p-lg-2{padding:8px !important}.pt-lg-2{padding-top:8px !important}.pr-lg-2{padding-right:8px !important}.pb-lg-2{padding-bottom:8px !important}.pl-lg-2{padding-left:8px !important}.px-lg-2{padding-right:8px !important;padding-left:8px !important}.py-lg-2{padding-top:8px !important;padding-bottom:8px !important}}@media (min-width: 1012px){.p-lg-3{padding:16px !important}.pt-lg-3{padding-top:16px !important}.pr-lg-3{padding-right:16px !important}.pb-lg-3{padding-bottom:16px !important}.pl-lg-3{padding-left:16px !important}.px-lg-3{padding-right:16px !important;padding-left:16px !important}.py-lg-3{padding-top:16px !important;padding-bottom:16px !important}}@media (min-width: 1012px){.p-lg-4{padding:24px !important}.pt-lg-4{padding-top:24px !important}.pr-lg-4{padding-right:24px !important}.pb-lg-4{padding-bottom:24px !important}.pl-lg-4{padding-left:24px !important}.px-lg-4{padding-right:24px !important;padding-left:24px !important}.py-lg-4{padding-top:24px !important;padding-bottom:24px !important}}@media (min-width: 1012px){.p-lg-5{padding:32px !important}.pt-lg-5{padding-top:32px !important}.pr-lg-5{padding-right:32px !important}.pb-lg-5{padding-bottom:32px !important}.pl-lg-5{padding-left:32px !important}.px-lg-5{padding-right:32px !important;padding-left:32px !important}.py-lg-5{padding-top:32px !important;padding-bottom:32px !important}}@media (min-width: 1012px){.p-lg-6{padding:40px !important}.pt-lg-6{padding-top:40px !important}.pr-lg-6{padding-right:40px !important}.pb-lg-6{padding-bottom:40px !important}.pl-lg-6{padding-left:40px !important}.px-lg-6{padding-right:40px !important;padding-left:40px !important}.py-lg-6{padding-top:40px !important;padding-bottom:40px !important}}@media (min-width: 1280px){.p-xl-0{padding:0 !important}.pt-xl-0{padding-top:0 !important}.pr-xl-0{padding-right:0 !important}.pb-xl-0{padding-bottom:0 !important}.pl-xl-0{padding-left:0 !important}.px-xl-0{padding-right:0 !important;padding-left:0 !important}.py-xl-0{padding-top:0 !important;padding-bottom:0 !important}}@media (min-width: 1280px){.p-xl-1{padding:4px !important}.pt-xl-1{padding-top:4px !important}.pr-xl-1{padding-right:4px !important}.pb-xl-1{padding-bottom:4px !important}.pl-xl-1{padding-left:4px !important}.px-xl-1{padding-right:4px !important;padding-left:4px !important}.py-xl-1{padding-top:4px !important;padding-bottom:4px !important}}@media (min-width: 1280px){.p-xl-2{padding:8px !important}.pt-xl-2{padding-top:8px !important}.pr-xl-2{padding-right:8px !important}.pb-xl-2{padding-bottom:8px !important}.pl-xl-2{padding-left:8px !important}.px-xl-2{padding-right:8px !important;padding-left:8px !important}.py-xl-2{padding-top:8px !important;padding-bottom:8px !important}}@media (min-width: 1280px){.p-xl-3{padding:16px !important}.pt-xl-3{padding-top:16px !important}.pr-xl-3{padding-right:16px !important}.pb-xl-3{padding-bottom:16px !important}.pl-xl-3{padding-left:16px !important}.px-xl-3{padding-right:16px !important;padding-left:16px !important}.py-xl-3{padding-top:16px !important;padding-bottom:16px !important}}@media (min-width: 1280px){.p-xl-4{padding:24px !important}.pt-xl-4{padding-top:24px !important}.pr-xl-4{padding-right:24px !important}.pb-xl-4{padding-bottom:24px !important}.pl-xl-4{padding-left:24px !important}.px-xl-4{padding-right:24px !important;padding-left:24px !important}.py-xl-4{padding-top:24px !important;padding-bottom:24px !important}}@media (min-width: 1280px){.p-xl-5{padding:32px !important}.pt-xl-5{padding-top:32px !important}.pr-xl-5{padding-right:32px !important}.pb-xl-5{padding-bottom:32px !important}.pl-xl-5{padding-left:32px !important}.px-xl-5{padding-right:32px !important;padding-left:32px !important}.py-xl-5{padding-top:32px !important;padding-bottom:32px !important}}@media (min-width: 1280px){.p-xl-6{padding:40px !important}.pt-xl-6{padding-top:40px !important}.pr-xl-6{padding-right:40px !important}.pb-xl-6{padding-bottom:40px !important}.pl-xl-6{padding-left:40px !important}.px-xl-6{padding-right:40px !important;padding-left:40px !important}.py-xl-6{padding-top:40px !important;padding-bottom:40px !important}}.h1{font-size:26px !important}@media (min-width: 768px){.h1{font-size:32px !important}}.h2{font-size:22px !important}@media (min-width: 768px){.h2{font-size:24px !important}}.h3{font-size:18px !important}@media (min-width: 768px){.h3{font-size:20px !important}}.h4{font-size:16px !important}@media (min-width: 768px){.h4{font-size:16px !important}}.h5{font-size:14px !important}.h6{font-size:12px !important}.h1,.h2,.h3,.h4,.h5,.h6{font-weight:600 !important}.f1{font-size:26px !important}@media (min-width: 768px){.f1{font-size:32px !important}}.f2{font-size:22px !important}@media (min-width: 768px){.f2{font-size:24px !important}}.f3{font-size:18px !important}@media (min-width: 768px){.f3{font-size:20px !important}}.f4{font-size:16px !important}@media (min-width: 768px){.f4{font-size:16px !important}}.f5{font-size:14px !important}.f6{font-size:12px !important}.f00-light{font-size:40px !important;font-weight:300 !important}@media (min-width: 768px){.f00-light{font-size:48px !important}}.f0-light{font-size:32px !important;font-weight:300 !important}@media (min-width: 768px){.f0-light{font-size:40px !important}}.f1-light{font-size:26px !important;font-weight:300 !important}@media (min-width: 768px){.f1-light{font-size:32px !important}}.f2-light{font-size:22px !important;font-weight:300 !important}@media (min-width: 768px){.f2-light{font-size:24px !important}}.f3-light{font-size:18px !important;font-weight:300 !important}@media (min-width: 768px){.f3-light{font-size:20px !important}}.text-small{font-size:12px !important}.lead{margin-bottom:30px;font-size:20px;font-weight:300;color:#555}.lh-condensed-ultra{line-height:1 !important}.lh-condensed{line-height:1.25 !important}.lh-default{line-height:1.5 !important}.text-right{text-align:right !important}.text-left{text-align:left !important}.text-center{text-align:center !important}@media (min-width: 544px){.text-sm-right{text-align:right !important}.text-sm-left{text-align:left !important}.text-sm-center{text-align:center !important}}@media (min-width: 768px){.text-md-right{text-align:right !important}.text-md-left{text-align:left !important}.text-md-center{text-align:center !important}}@media (min-width: 1012px){.text-lg-right{text-align:right !important}.text-lg-left{text-align:left !important}.text-lg-center{text-align:center !important}}@media (min-width: 1280px){.text-xl-right{text-align:right !important}.text-xl-left{text-align:left !important}.text-xl-center{text-align:center !important}}.text-normal{font-weight:normal !important}.text-bold{font-weight:600 !important}.text-italic{font-style:italic !important}.text-uppercase{text-transform:uppercase !important}.no-underline{text-decoration:none !important}.no-wrap{white-space:nowrap !important}.wb-break-all{word-break:break-all !important}.text-emphasized{font-weight:600;color:#24292e}.list-style-none{list-style:none !important}.text-shadow-dark{text-shadow:0 1px 1px rgba(0,0,0,0.25),0 1px 25px rgba(0,0,0,0.75)}.text-shadow-light{text-shadow:0 1px 0 rgba(255,255,255,0.5)}.v-hidden{visibility:hidden !important}.v-visible{visibility:visible !important}.d-table{display:table !important}.d-table-cell{display:table-cell !important}.table-fixed{table-layout:fixed !important}.d-block{display:block !important}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-flex{display:-webkit-box !important;display:flex !important}.d-inline-flex{display:-webkit-inline-box !important;display:inline-flex !important}.d-none{display:none !important}@media (min-width: 544px){.d-sm-table{display:table !important}.d-sm-table-cell{display:table-cell !important}.d-sm-block{display:block !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-flex{display:-webkit-box !important;display:flex !important}.d-sm-inline-flex{display:-webkit-inline-box !important;display:inline-flex !important}.d-sm-none{display:none !important}}@media (min-width: 768px){.d-md-table{display:table !important}.d-md-table-cell{display:table-cell !important}.d-md-block{display:block !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-flex{display:-webkit-box !important;display:flex !important}.d-md-inline-flex{display:-webkit-inline-box !important;display:inline-flex !important}.d-md-none{display:none !important}}@media (min-width: 1012px){.d-lg-table{display:table !important}.d-lg-table-cell{display:table-cell !important}.d-lg-block{display:block !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-flex{display:-webkit-box !important;display:flex !important}.d-lg-inline-flex{display:-webkit-inline-box !important;display:inline-flex !important}.d-lg-none{display:none !important}}@media (min-width: 1280px){.d-xl-table{display:table !important}.d-xl-table-cell{display:table-cell !important}.d-xl-block{display:block !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-flex{display:-webkit-box !important;display:flex !important}.d-xl-inline-flex{display:-webkit-inline-box !important;display:inline-flex !important}.d-xl-none{display:none !important}}@media (max-width: 544px){.hide-sm{display:none !important}}@media (min-width: 544px) and (max-width: 768px){.hide-md{display:none !important}}@media (min-width: 768px) and (max-width: 1012px){.hide-lg{display:none !important}}@media (min-width: 1012px){.hide-xl{display:none !important}}.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);word-wrap:normal;border:0}
         
     | 
| 
         @@ -1,2 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            module.exports = { 'cssstats': 
         
     | 
| 
       2 
     | 
    
         
            -
            {"size":34224,"gzipSize":4200,"humanizedSize":"33kB","humanizedGzipSize":"4kB","rules":{"total":689,"size":{"graph":[6,2,1,1,1,1,11,3,3,3,3,8,3,3,3,3,11,1,1,10,1,1,6,3,3,3,3,8,1,1,1,1,1,1,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,2,1,2,1,2,1,1,4,1,1,1,1,1,1,1,1,1,1,1,1,2],"max":11,"average":1.351233671988389}},"selectors":{"total":694,"type":4,"class":662,"id":0,"pseudoClass":1,"pseudoElement":2,"values":[".anim-fade-in",".anim-fade-in.fast","0%","100%","0%","100%",".anim-fade-up","0%","100%","0%","100%",".anim-fade-down","0%","100%","0%","100%",".anim-grow-x","to","to",".anim-shrink-x","to","to",".anim-scale-in","0%","100%","0%","100%",".anim-pulse","0%","10%","100%","0%","10%","100%",".anim-pulse-in","0%","50%","100%","0%","50%","100%",".border",".border-top",".border-right",".border-bottom",".border-left",".border-y",".border-blue",".border-gray-light",".border-gray-dark",".border-0",".border-top-0",".border-right-0",".border-bottom-0",".border-left-0",".rounded-0",".rounded-1",".rounded-2",".bg-white",".bg-blue",".bg-blue-light",".bg-gray-dark",".bg-gray",".bg-gray-light",".bg-green",".bg-red",".text-blue",".text-red",".text-gray-light",".text-gray",".text-gray-dark",".text-green",".text-orange",".text-purple",".text-white",".text-inherit",".link-blue",".link-gray-dark",".link-gray",".text-renamed",".text-pending",".muted-link",".muted-link:hover",".position-static",".position-relative",".position-absolute",".position-fixed",".top-0",".right-0",".bottom-0",".left-0",".v-align-middle",".v-align-top",".v-align-bottom",".v-align-text-top",".v-align-text-bottom",".overflow-hidden",".overflow-scroll",".overflow-auto",".clearfix::before",".clearfix::after",".float-right",".float-left",".float-sm-left",".float-sm-right",".float-md-left",".float-md-right",".float-lg-left",".float-lg-right",".float-xl-left",".float-xl-right",".width-fit",".width-full",".height-full",".min-width-0",".v-hidden",".v-visible",".d-table",".d-table-cell",".table-fixed",".d-block",".d-inline",".d-inline-block",".d-none",".d-sm-table",".d-sm-table-cell",".d-sm-block",".d-sm-inline",".d-sm-inline-block",".d-sm-none",".d-md-table",".d-md-table-cell",".d-md-block",".d-md-inline",".d-md-inline-block",".d-md-none",".d-lg-table",".d-lg-table-cell",".d-lg-block",".d-lg-inline",".d-lg-inline-block",".d-lg-none",".d-xl-table",".d-xl-table-cell",".d-xl-block",".d-xl-inline",".d-xl-inline-block",".d-xl-none",".hide-sm",".hide-md",".hide-lg",".hide-xl",".m-0",".mt-0",".mr-0",".mb-0",".ml-0",".mx-0",".my-0",".m-1",".mt-1",".mr-1",".mb-1",".ml-1",".mx-1",".my-1",".m-2",".mt-2",".mr-2",".mb-2",".ml-2",".mx-2",".my-2",".m-3",".mt-3",".mr-3",".mb-3",".ml-3",".mx-3",".my-3",".m-4",".mt-4",".mr-4",".mb-4",".ml-4",".mx-4",".my-4",".m-5",".mt-5",".mr-5",".mb-5",".ml-5",".mx-5",".my-5",".m-6",".mt-6",".mr-6",".mb-6",".ml-6",".mx-6",".my-6",".m-sm-0",".mt-sm-0",".mr-sm-0",".mb-sm-0",".ml-sm-0",".mx-sm-0",".my-sm-0",".m-sm-1",".mt-sm-1",".mr-sm-1",".mb-sm-1",".ml-sm-1",".mx-sm-1",".my-sm-1",".m-sm-2",".mt-sm-2",".mr-sm-2",".mb-sm-2",".ml-sm-2",".mx-sm-2",".my-sm-2",".m-sm-3",".mt-sm-3",".mr-sm-3",".mb-sm-3",".ml-sm-3",".mx-sm-3",".my-sm-3",".m-sm-4",".mt-sm-4",".mr-sm-4",".mb-sm-4",".ml-sm-4",".mx-sm-4",".my-sm-4",".m-sm-5",".mt-sm-5",".mr-sm-5",".mb-sm-5",".ml-sm-5",".mx-sm-5",".my-sm-5",".m-sm-6",".mt-sm-6",".mr-sm-6",".mb-sm-6",".ml-sm-6",".mx-sm-6",".my-sm-6",".m-md-0",".mt-md-0",".mr-md-0",".mb-md-0",".ml-md-0",".mx-md-0",".my-md-0",".m-md-1",".mt-md-1",".mr-md-1",".mb-md-1",".ml-md-1",".mx-md-1",".my-md-1",".m-md-2",".mt-md-2",".mr-md-2",".mb-md-2",".ml-md-2",".mx-md-2",".my-md-2",".m-md-3",".mt-md-3",".mr-md-3",".mb-md-3",".ml-md-3",".mx-md-3",".my-md-3",".m-md-4",".mt-md-4",".mr-md-4",".mb-md-4",".ml-md-4",".mx-md-4",".my-md-4",".m-md-5",".mt-md-5",".mr-md-5",".mb-md-5",".ml-md-5",".mx-md-5",".my-md-5",".m-md-6",".mt-md-6",".mr-md-6",".mb-md-6",".ml-md-6",".mx-md-6",".my-md-6",".m-lg-0",".mt-lg-0",".mr-lg-0",".mb-lg-0",".ml-lg-0",".mx-lg-0",".my-lg-0",".m-lg-1",".mt-lg-1",".mr-lg-1",".mb-lg-1",".ml-lg-1",".mx-lg-1",".my-lg-1",".m-lg-2",".mt-lg-2",".mr-lg-2",".mb-lg-2",".ml-lg-2",".mx-lg-2",".my-lg-2",".m-lg-3",".mt-lg-3",".mr-lg-3",".mb-lg-3",".ml-lg-3",".mx-lg-3",".my-lg-3",".m-lg-4",".mt-lg-4",".mr-lg-4",".mb-lg-4",".ml-lg-4",".mx-lg-4",".my-lg-4",".m-lg-5",".mt-lg-5",".mr-lg-5",".mb-lg-5",".ml-lg-5",".mx-lg-5",".my-lg-5",".m-lg-6",".mt-lg-6",".mr-lg-6",".mb-lg-6",".ml-lg-6",".mx-lg-6",".my-lg-6",".m-xl-0",".mt-xl-0",".mr-xl-0",".mb-xl-0",".ml-xl-0",".mx-xl-0",".my-xl-0",".m-xl-1",".mt-xl-1",".mr-xl-1",".mb-xl-1",".ml-xl-1",".mx-xl-1",".my-xl-1",".m-xl-2",".mt-xl-2",".mr-xl-2",".mb-xl-2",".ml-xl-2",".mx-xl-2",".my-xl-2",".m-xl-3",".mt-xl-3",".mr-xl-3",".mb-xl-3",".ml-xl-3",".mx-xl-3",".my-xl-3",".m-xl-4",".mt-xl-4",".mr-xl-4",".mb-xl-4",".ml-xl-4",".mx-xl-4",".my-xl-4",".m-xl-5",".mt-xl-5",".mr-xl-5",".mb-xl-5",".ml-xl-5",".mx-xl-5",".my-xl-5",".m-xl-6",".mt-xl-6",".mr-xl-6",".mb-xl-6",".ml-xl-6",".mx-xl-6",".my-xl-6",".mx-auto",".p-0",".pt-0",".pr-0",".pb-0",".pl-0",".px-0",".py-0",".p-1",".pt-1",".pr-1",".pb-1",".pl-1",".px-1",".py-1",".p-2",".pt-2",".pr-2",".pb-2",".pl-2",".px-2",".py-2",".p-3",".pt-3",".pr-3",".pb-3",".pl-3",".px-3",".py-3",".p-4",".pt-4",".pr-4",".pb-4",".pl-4",".px-4",".py-4",".p-5",".pt-5",".pr-5",".pb-5",".pl-5",".px-5",".py-5",".p-6",".pt-6",".pr-6",".pb-6",".pl-6",".px-6",".py-6",".p-sm-0",".pt-sm-0",".pr-sm-0",".pb-sm-0",".pl-sm-0",".px-sm-0",".py-sm-0",".p-sm-1",".pt-sm-1",".pr-sm-1",".pb-sm-1",".pl-sm-1",".px-sm-1",".py-sm-1",".p-sm-2",".pt-sm-2",".pr-sm-2",".pb-sm-2",".pl-sm-2",".px-sm-2",".py-sm-2",".p-sm-3",".pt-sm-3",".pr-sm-3",".pb-sm-3",".pl-sm-3",".px-sm-3",".py-sm-3",".p-sm-4",".pt-sm-4",".pr-sm-4",".pb-sm-4",".pl-sm-4",".px-sm-4",".py-sm-4",".p-sm-5",".pt-sm-5",".pr-sm-5",".pb-sm-5",".pl-sm-5",".px-sm-5",".py-sm-5",".p-sm-6",".pt-sm-6",".pr-sm-6",".pb-sm-6",".pl-sm-6",".px-sm-6",".py-sm-6",".p-md-0",".pt-md-0",".pr-md-0",".pb-md-0",".pl-md-0",".px-md-0",".py-md-0",".p-md-1",".pt-md-1",".pr-md-1",".pb-md-1",".pl-md-1",".px-md-1",".py-md-1",".p-md-2",".pt-md-2",".pr-md-2",".pb-md-2",".pl-md-2",".px-md-2",".py-md-2",".p-md-3",".pt-md-3",".pr-md-3",".pb-md-3",".pl-md-3",".px-md-3",".py-md-3",".p-md-4",".pt-md-4",".pr-md-4",".pb-md-4",".pl-md-4",".px-md-4",".py-md-4",".p-md-5",".pt-md-5",".pr-md-5",".pb-md-5",".pl-md-5",".px-md-5",".py-md-5",".p-md-6",".pt-md-6",".pr-md-6",".pb-md-6",".pl-md-6",".px-md-6",".py-md-6",".p-lg-0",".pt-lg-0",".pr-lg-0",".pb-lg-0",".pl-lg-0",".px-lg-0",".py-lg-0",".p-lg-1",".pt-lg-1",".pr-lg-1",".pb-lg-1",".pl-lg-1",".px-lg-1",".py-lg-1",".p-lg-2",".pt-lg-2",".pr-lg-2",".pb-lg-2",".pl-lg-2",".px-lg-2",".py-lg-2",".p-lg-3",".pt-lg-3",".pr-lg-3",".pb-lg-3",".pl-lg-3",".px-lg-3",".py-lg-3",".p-lg-4",".pt-lg-4",".pr-lg-4",".pb-lg-4",".pl-lg-4",".px-lg-4",".py-lg-4",".p-lg-5",".pt-lg-5",".pr-lg-5",".pb-lg-5",".pl-lg-5",".px-lg-5",".py-lg-5",".p-lg-6",".pt-lg-6",".pr-lg-6",".pb-lg-6",".pl-lg-6",".px-lg-6",".py-lg-6",".p-xl-0",".pt-xl-0",".pr-xl-0",".pb-xl-0",".pl-xl-0",".px-xl-0",".py-xl-0",".p-xl-1",".pt-xl-1",".pr-xl-1",".pb-xl-1",".pl-xl-1",".px-xl-1",".py-xl-1",".p-xl-2",".pt-xl-2",".pr-xl-2",".pb-xl-2",".pl-xl-2",".px-xl-2",".py-xl-2",".p-xl-3",".pt-xl-3",".pr-xl-3",".pb-xl-3",".pl-xl-3",".px-xl-3",".py-xl-3",".p-xl-4",".pt-xl-4",".pr-xl-4",".pb-xl-4",".pl-xl-4",".px-xl-4",".py-xl-4",".p-xl-5",".pt-xl-5",".pr-xl-5",".pb-xl-5",".pl-xl-5",".px-xl-5",".py-xl-5",".p-xl-6",".pt-xl-6",".pr-xl-6",".pb-xl-6",".pl-xl-6",".px-xl-6",".py-xl-6",".h1",".h2",".h3",".h4",".h5",".h6",".h1",".h1",".h2",".h2",".h3",".h3",".h4",".h4",".h5",".h6",".f1",".f1",".f2",".f2",".f3",".f3",".f4",".f4",".f5",".f6",".f00-light",".f00-light",".f0-light",".f0-light",".f1-light",".f1-light",".f2-light",".f2-light",".f3-light",".f3-light",".text-small",".lead",".lh-condensed-ultra",".lh-condensed",".lh-default",".text-right",".text-left",".text-center",".text-normal",".text-bold",".text-italic",".text-uppercase",".no-underline",".no-wrap",".text-emphasized"],"specificity":{"max":20,"average":9.61671469740634}},"declarations":{"total":931,"unique":233,"properties":{"-webkit-animation-name":["fade-in","fade-up","fade-down","grow-x","shrink-x","scale-in","pulse","pulse-in"],"animation-name":["fade-in","fade-up","fade-down","grow-x","shrink-x","scale-in","pulse","pulse-in"],"-webkit-animation-duration":["1s","300ms","0.3s","0.3s","0.3s","0.3s","0.15s","2s","0.5s"],"animation-duration":["1s","300ms","0.3s","0.3s","0.3s","0.3s","0.15s","2s","0.5s"],"-webkit-animation-timing-function":["ease-in-out","ease-out","ease-in","ease","ease-in-out","cubic-bezier(0.2, 0, 0.13, 1.5)","linear"],"animation-timing-function":["ease-in-out","ease-out","ease-in","ease","ease-in-out","cubic-bezier(0.2, 0, 0.13, 1.5)","linear"],"opacity":["0","1","0","1","0","0.8","1","0.8","1","1","0.5","1","0.5","0","1","0","1","0.3","1","0.3","0.3","1","0.3"],"-webkit-animation-fill-mode":["forwards","forwards","forwards","forwards"],"animation-fill-mode":["forwards","forwards","forwards","forwards"],"-webkit-animation-delay":["1s","0.5s","0.5s"],"animation-delay":["1s","0.5s","0.5s"],"-webkit-transform":["translateY(100%)","translateY(0)","translateY(100%)","translateY(0)","translateY(0)","translateY(100%)","translateY(0)","translateY(100%)","scale(0.5)","scale(1)","scale(0.5)","scale(1)","scale3d(1, 1, 1)","scale3d(1.1, 1.1, 1.1)","scale3d(1, 1, 1)","scale3d(1, 1, 1)","scale3d(1.1, 1.1, 1.1)","scale3d(1, 1, 1)"],"transform":["translateY(100%)","translateY(0)","translateY(100%)","translateY(0)","translateY(0)","translateY(100%)","translateY(0)","translateY(100%)","scale(0.5)","scale(1)","scale(0.5)","scale(1)","scale3d(1, 1, 1)","scale3d(1.1, 1.1, 1.1)","scale3d(1, 1, 1)","scale3d(1, 1, 1)","scale3d(1.1, 1.1, 1.1)","scale3d(1, 1, 1)"],"width":["0%","100%","100%","0%","0%","100%"],"-webkit-animation-iteration-count":["infinite"],"animation-iteration-count":["infinite"],"border":["1px #e5e5e5 solid","0"],"border-top":["1px #e5e5e5 solid","1px #e5e5e5 solid","0"],"border-right":["1px #e5e5e5 solid","0"],"border-bottom":["1px #e5e5e5 solid","1px #e5e5e5 solid","0"],"border-left":["1px #e5e5e5 solid","0"],"border-color":["#c5d5dd","#eee","#ddd"],"border-radius":["0","3px","6px"],"background-color":["#fff","#4078c0","#f2f8fa","#333","#f5f5f5","#fafafa","#6cc644","#bd2c00"],"color":["#4078c0","#bd2c00","#999","#767676","#333","#55a532","#c9510c","#6e5494","#fff","inherit","#4078c0","#333","#767676","#fffa5d","#cea61b","#767676","#4078c0","#555","#333"],"text-decoration":["none","none"],"position":["static","relative","absolute","fixed"],"top":["0"],"right":["0"],"bottom":["0"],"left":["0"],"vertical-align":["middle","top","bottom","text-top","text-bottom"],"overflow":["hidden","scroll","auto"],"display":["table","table","table","table-cell","block","inline","inline-block","none","table","table-cell","block","inline","inline-block","none","table","table-cell","block","inline","inline-block","none","table","table-cell","block","inline","inline-block","none","table","table-cell","block","inline","inline-block","none","none","none","none","none"],"content":["\"\"","\"\""],"clear":["both"],"float":["right","left","left","right","left","right","left","right","left","right"],"max-width":["100%"],"height":["100%"],"min-width":["0"],"visibility":["hidden","visible"],"table-layout":["fixed"],"margin":["0","3px","6px","12px","24px","36px","48px","0","3px","6px","12px","24px","36px","48px","0","3px","6px","12px","24px","36px","48px","0","3px","6px","12px","24px","36px","48px","0","3px","6px","12px","24px","36px","48px"],"margin-top":["0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px","0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px","0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px","0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px","0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px"],"margin-right":["0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px","0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px","0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px","0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px","0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px","auto"],"margin-bottom":["0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px","0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px","0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px","0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px","0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px","30px"],"margin-left":["0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px","0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px","0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px","0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px","0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px","auto"],"padding":["0","3px","6px","12px","24px","36px","48px","0","3px","6px","12px","24px","36px","48px","0","3px","6px","12px","24px","36px","48px","0","3px","6px","12px","24px","36px","48px","0","3px","6px","12px","24px","36px","48px"],"padding-top":["0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px","0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px","0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px","0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px","0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px"],"padding-right":["0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px","0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px","0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px","0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px","0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px"],"padding-bottom":["0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px","0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px","0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px","0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px","0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px"],"padding-left":["0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px","0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px","0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px","0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px","0","0","3px","3px","6px","6px","12px","12px","24px","24px","36px","36px","48px","48px"],"font-weight":["600","300","300","300","300","300","300","normal","600","600"],"font-size":["26px","32px","22px","24px","18px","20px","16px","16px","14px","12px","26px","32px","22px","24px","18px","20px","16px","16px","14px","12px","40px","48px","32px","40px","26px","32px","22px","24px","18px","20px","12px","20px"],"line-height":["1","1.25","1.5"],"text-align":["right","left","center"],"font-style":["italic"],"text-transform":["uppercase"],"white-space":["nowrap"]}},"mediaQueries":{"total":81,"unique":7,"values":["(min-width: 544px)","(min-width: 768px)","(min-width: 1004px)","(min-width: 1280px)","(min-width: 544px)","(min-width: 768px)","(min-width: 1004px)","(min-width: 1280px)","(max-width: 544px)","(min-width: 544px) and (max-width: 768px)","(min-width: 768px) and (max-width: 1004px)","(min-width: 1004px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 1004px)","(min-width: 1004px)","(min-width: 1004px)","(min-width: 1004px)","(min-width: 1004px)","(min-width: 1004px)","(min-width: 1004px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 1004px)","(min-width: 1004px)","(min-width: 1004px)","(min-width: 1004px)","(min-width: 1004px)","(min-width: 1004px)","(min-width: 1004px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)"],"contents":[{"value":"(min-width: 544px)","rules":{"total":2,"size":{"graph":[1,1],"max":1,"average":1}},"selectors":{"total":2,"type":0,"class":2,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".float-sm-left",".float-sm-right"],"specificity":{"max":10,"average":10}},"declarations":{"total":2,"unique":2,"properties":{"float":["left","right"]}}},{"value":"(min-width: 768px)","rules":{"total":2,"size":{"graph":[1,1],"max":1,"average":1}},"selectors":{"total":2,"type":0,"class":2,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".float-md-left",".float-md-right"],"specificity":{"max":10,"average":10}},"declarations":{"total":2,"unique":2,"properties":{"float":["left","right"]}}},{"value":"(min-width: 1004px)","rules":{"total":2,"size":{"graph":[1,1],"max":1,"average":1}},"selectors":{"total":2,"type":0,"class":2,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".float-lg-left",".float-lg-right"],"specificity":{"max":10,"average":10}},"declarations":{"total":2,"unique":2,"properties":{"float":["left","right"]}}},{"value":"(min-width: 1280px)","rules":{"total":2,"size":{"graph":[1,1],"max":1,"average":1}},"selectors":{"total":2,"type":0,"class":2,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".float-xl-left",".float-xl-right"],"specificity":{"max":10,"average":10}},"declarations":{"total":2,"unique":2,"properties":{"float":["left","right"]}}},{"value":"(min-width: 544px)","rules":{"total":6,"size":{"graph":[1,1,1,1,1,1],"max":1,"average":1}},"selectors":{"total":6,"type":0,"class":6,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".d-sm-table",".d-sm-table-cell",".d-sm-block",".d-sm-inline",".d-sm-inline-block",".d-sm-none"],"specificity":{"max":10,"average":10}},"declarations":{"total":6,"unique":6,"properties":{"display":["table","table-cell","block","inline","inline-block","none"]}}},{"value":"(min-width: 768px)","rules":{"total":6,"size":{"graph":[1,1,1,1,1,1],"max":1,"average":1}},"selectors":{"total":6,"type":0,"class":6,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".d-md-table",".d-md-table-cell",".d-md-block",".d-md-inline",".d-md-inline-block",".d-md-none"],"specificity":{"max":10,"average":10}},"declarations":{"total":6,"unique":6,"properties":{"display":["table","table-cell","block","inline","inline-block","none"]}}},{"value":"(min-width: 1004px)","rules":{"total":6,"size":{"graph":[1,1,1,1,1,1],"max":1,"average":1}},"selectors":{"total":6,"type":0,"class":6,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".d-lg-table",".d-lg-table-cell",".d-lg-block",".d-lg-inline",".d-lg-inline-block",".d-lg-none"],"specificity":{"max":10,"average":10}},"declarations":{"total":6,"unique":6,"properties":{"display":["table","table-cell","block","inline","inline-block","none"]}}},{"value":"(min-width: 1280px)","rules":{"total":6,"size":{"graph":[1,1,1,1,1,1],"max":1,"average":1}},"selectors":{"total":6,"type":0,"class":6,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".d-xl-table",".d-xl-table-cell",".d-xl-block",".d-xl-inline",".d-xl-inline-block",".d-xl-none"],"specificity":{"max":10,"average":10}},"declarations":{"total":6,"unique":6,"properties":{"display":["table","table-cell","block","inline","inline-block","none"]}}},{"value":"(max-width: 544px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1}},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".hide-sm"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"display":["none"]}}},{"value":"(min-width: 544px) and (max-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1}},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".hide-md"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"display":["none"]}}},{"value":"(min-width: 768px) and (max-width: 1004px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1}},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".hide-lg"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"display":["none"]}}},{"value":"(min-width: 1004px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1}},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".hide-xl"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"display":["none"]}}},{"value":"(min-width: 544px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-sm-0",".mt-sm-0",".mr-sm-0",".mb-sm-0",".ml-sm-0",".mx-sm-0",".my-sm-0"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"margin":["0"],"margin-top":["0","0"],"margin-right":["0","0"],"margin-bottom":["0","0"],"margin-left":["0","0"]}}},{"value":"(min-width: 544px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-sm-1",".mt-sm-1",".mr-sm-1",".mb-sm-1",".ml-sm-1",".mx-sm-1",".my-sm-1"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"margin":["3px"],"margin-top":["3px","3px"],"margin-right":["3px","3px"],"margin-bottom":["3px","3px"],"margin-left":["3px","3px"]}}},{"value":"(min-width: 544px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-sm-2",".mt-sm-2",".mr-sm-2",".mb-sm-2",".ml-sm-2",".mx-sm-2",".my-sm-2"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"margin":["6px"],"margin-top":["6px","6px"],"margin-right":["6px","6px"],"margin-bottom":["6px","6px"],"margin-left":["6px","6px"]}}},{"value":"(min-width: 544px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-sm-3",".mt-sm-3",".mr-sm-3",".mb-sm-3",".ml-sm-3",".mx-sm-3",".my-sm-3"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"margin":["12px"],"margin-top":["12px","12px"],"margin-right":["12px","12px"],"margin-bottom":["12px","12px"],"margin-left":["12px","12px"]}}},{"value":"(min-width: 544px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-sm-4",".mt-sm-4",".mr-sm-4",".mb-sm-4",".ml-sm-4",".mx-sm-4",".my-sm-4"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"margin":["24px"],"margin-top":["24px","24px"],"margin-right":["24px","24px"],"margin-bottom":["24px","24px"],"margin-left":["24px","24px"]}}},{"value":"(min-width: 544px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-sm-5",".mt-sm-5",".mr-sm-5",".mb-sm-5",".ml-sm-5",".mx-sm-5",".my-sm-5"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"margin":["36px"],"margin-top":["36px","36px"],"margin-right":["36px","36px"],"margin-bottom":["36px","36px"],"margin-left":["36px","36px"]}}},{"value":"(min-width: 544px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-sm-6",".mt-sm-6",".mr-sm-6",".mb-sm-6",".ml-sm-6",".mx-sm-6",".my-sm-6"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"margin":["48px"],"margin-top":["48px","48px"],"margin-right":["48px","48px"],"margin-bottom":["48px","48px"],"margin-left":["48px","48px"]}}},{"value":"(min-width: 768px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-md-0",".mt-md-0",".mr-md-0",".mb-md-0",".ml-md-0",".mx-md-0",".my-md-0"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"margin":["0"],"margin-top":["0","0"],"margin-right":["0","0"],"margin-bottom":["0","0"],"margin-left":["0","0"]}}},{"value":"(min-width: 768px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-md-1",".mt-md-1",".mr-md-1",".mb-md-1",".ml-md-1",".mx-md-1",".my-md-1"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"margin":["3px"],"margin-top":["3px","3px"],"margin-right":["3px","3px"],"margin-bottom":["3px","3px"],"margin-left":["3px","3px"]}}},{"value":"(min-width: 768px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-md-2",".mt-md-2",".mr-md-2",".mb-md-2",".ml-md-2",".mx-md-2",".my-md-2"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"margin":["6px"],"margin-top":["6px","6px"],"margin-right":["6px","6px"],"margin-bottom":["6px","6px"],"margin-left":["6px","6px"]}}},{"value":"(min-width: 768px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-md-3",".mt-md-3",".mr-md-3",".mb-md-3",".ml-md-3",".mx-md-3",".my-md-3"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"margin":["12px"],"margin-top":["12px","12px"],"margin-right":["12px","12px"],"margin-bottom":["12px","12px"],"margin-left":["12px","12px"]}}},{"value":"(min-width: 768px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-md-4",".mt-md-4",".mr-md-4",".mb-md-4",".ml-md-4",".mx-md-4",".my-md-4"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"margin":["24px"],"margin-top":["24px","24px"],"margin-right":["24px","24px"],"margin-bottom":["24px","24px"],"margin-left":["24px","24px"]}}},{"value":"(min-width: 768px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-md-5",".mt-md-5",".mr-md-5",".mb-md-5",".ml-md-5",".mx-md-5",".my-md-5"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"margin":["36px"],"margin-top":["36px","36px"],"margin-right":["36px","36px"],"margin-bottom":["36px","36px"],"margin-left":["36px","36px"]}}},{"value":"(min-width: 768px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-md-6",".mt-md-6",".mr-md-6",".mb-md-6",".ml-md-6",".mx-md-6",".my-md-6"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"margin":["48px"],"margin-top":["48px","48px"],"margin-right":["48px","48px"],"margin-bottom":["48px","48px"],"margin-left":["48px","48px"]}}},{"value":"(min-width: 1004px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-lg-0",".mt-lg-0",".mr-lg-0",".mb-lg-0",".ml-lg-0",".mx-lg-0",".my-lg-0"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"margin":["0"],"margin-top":["0","0"],"margin-right":["0","0"],"margin-bottom":["0","0"],"margin-left":["0","0"]}}},{"value":"(min-width: 1004px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-lg-1",".mt-lg-1",".mr-lg-1",".mb-lg-1",".ml-lg-1",".mx-lg-1",".my-lg-1"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"margin":["3px"],"margin-top":["3px","3px"],"margin-right":["3px","3px"],"margin-bottom":["3px","3px"],"margin-left":["3px","3px"]}}},{"value":"(min-width: 1004px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-lg-2",".mt-lg-2",".mr-lg-2",".mb-lg-2",".ml-lg-2",".mx-lg-2",".my-lg-2"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"margin":["6px"],"margin-top":["6px","6px"],"margin-right":["6px","6px"],"margin-bottom":["6px","6px"],"margin-left":["6px","6px"]}}},{"value":"(min-width: 1004px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-lg-3",".mt-lg-3",".mr-lg-3",".mb-lg-3",".ml-lg-3",".mx-lg-3",".my-lg-3"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"margin":["12px"],"margin-top":["12px","12px"],"margin-right":["12px","12px"],"margin-bottom":["12px","12px"],"margin-left":["12px","12px"]}}},{"value":"(min-width: 1004px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-lg-4",".mt-lg-4",".mr-lg-4",".mb-lg-4",".ml-lg-4",".mx-lg-4",".my-lg-4"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"margin":["24px"],"margin-top":["24px","24px"],"margin-right":["24px","24px"],"margin-bottom":["24px","24px"],"margin-left":["24px","24px"]}}},{"value":"(min-width: 1004px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-lg-5",".mt-lg-5",".mr-lg-5",".mb-lg-5",".ml-lg-5",".mx-lg-5",".my-lg-5"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"margin":["36px"],"margin-top":["36px","36px"],"margin-right":["36px","36px"],"margin-bottom":["36px","36px"],"margin-left":["36px","36px"]}}},{"value":"(min-width: 1004px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-lg-6",".mt-lg-6",".mr-lg-6",".mb-lg-6",".ml-lg-6",".mx-lg-6",".my-lg-6"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"margin":["48px"],"margin-top":["48px","48px"],"margin-right":["48px","48px"],"margin-bottom":["48px","48px"],"margin-left":["48px","48px"]}}},{"value":"(min-width: 1280px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-xl-0",".mt-xl-0",".mr-xl-0",".mb-xl-0",".ml-xl-0",".mx-xl-0",".my-xl-0"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"margin":["0"],"margin-top":["0","0"],"margin-right":["0","0"],"margin-bottom":["0","0"],"margin-left":["0","0"]}}},{"value":"(min-width: 1280px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-xl-1",".mt-xl-1",".mr-xl-1",".mb-xl-1",".ml-xl-1",".mx-xl-1",".my-xl-1"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"margin":["3px"],"margin-top":["3px","3px"],"margin-right":["3px","3px"],"margin-bottom":["3px","3px"],"margin-left":["3px","3px"]}}},{"value":"(min-width: 1280px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-xl-2",".mt-xl-2",".mr-xl-2",".mb-xl-2",".ml-xl-2",".mx-xl-2",".my-xl-2"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"margin":["6px"],"margin-top":["6px","6px"],"margin-right":["6px","6px"],"margin-bottom":["6px","6px"],"margin-left":["6px","6px"]}}},{"value":"(min-width: 1280px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-xl-3",".mt-xl-3",".mr-xl-3",".mb-xl-3",".ml-xl-3",".mx-xl-3",".my-xl-3"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"margin":["12px"],"margin-top":["12px","12px"],"margin-right":["12px","12px"],"margin-bottom":["12px","12px"],"margin-left":["12px","12px"]}}},{"value":"(min-width: 1280px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-xl-4",".mt-xl-4",".mr-xl-4",".mb-xl-4",".ml-xl-4",".mx-xl-4",".my-xl-4"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"margin":["24px"],"margin-top":["24px","24px"],"margin-right":["24px","24px"],"margin-bottom":["24px","24px"],"margin-left":["24px","24px"]}}},{"value":"(min-width: 1280px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-xl-5",".mt-xl-5",".mr-xl-5",".mb-xl-5",".ml-xl-5",".mx-xl-5",".my-xl-5"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"margin":["36px"],"margin-top":["36px","36px"],"margin-right":["36px","36px"],"margin-bottom":["36px","36px"],"margin-left":["36px","36px"]}}},{"value":"(min-width: 1280px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-xl-6",".mt-xl-6",".mr-xl-6",".mb-xl-6",".ml-xl-6",".mx-xl-6",".my-xl-6"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"margin":["48px"],"margin-top":["48px","48px"],"margin-right":["48px","48px"],"margin-bottom":["48px","48px"],"margin-left":["48px","48px"]}}},{"value":"(min-width: 544px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-sm-0",".pt-sm-0",".pr-sm-0",".pb-sm-0",".pl-sm-0",".px-sm-0",".py-sm-0"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["0"],"padding-top":["0","0"],"padding-right":["0","0"],"padding-bottom":["0","0"],"padding-left":["0","0"]}}},{"value":"(min-width: 544px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-sm-1",".pt-sm-1",".pr-sm-1",".pb-sm-1",".pl-sm-1",".px-sm-1",".py-sm-1"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["3px"],"padding-top":["3px","3px"],"padding-right":["3px","3px"],"padding-bottom":["3px","3px"],"padding-left":["3px","3px"]}}},{"value":"(min-width: 544px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-sm-2",".pt-sm-2",".pr-sm-2",".pb-sm-2",".pl-sm-2",".px-sm-2",".py-sm-2"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["6px"],"padding-top":["6px","6px"],"padding-right":["6px","6px"],"padding-bottom":["6px","6px"],"padding-left":["6px","6px"]}}},{"value":"(min-width: 544px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-sm-3",".pt-sm-3",".pr-sm-3",".pb-sm-3",".pl-sm-3",".px-sm-3",".py-sm-3"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["12px"],"padding-top":["12px","12px"],"padding-right":["12px","12px"],"padding-bottom":["12px","12px"],"padding-left":["12px","12px"]}}},{"value":"(min-width: 544px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-sm-4",".pt-sm-4",".pr-sm-4",".pb-sm-4",".pl-sm-4",".px-sm-4",".py-sm-4"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["24px"],"padding-top":["24px","24px"],"padding-right":["24px","24px"],"padding-bottom":["24px","24px"],"padding-left":["24px","24px"]}}},{"value":"(min-width: 544px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-sm-5",".pt-sm-5",".pr-sm-5",".pb-sm-5",".pl-sm-5",".px-sm-5",".py-sm-5"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["36px"],"padding-top":["36px","36px"],"padding-right":["36px","36px"],"padding-bottom":["36px","36px"],"padding-left":["36px","36px"]}}},{"value":"(min-width: 544px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-sm-6",".pt-sm-6",".pr-sm-6",".pb-sm-6",".pl-sm-6",".px-sm-6",".py-sm-6"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["48px"],"padding-top":["48px","48px"],"padding-right":["48px","48px"],"padding-bottom":["48px","48px"],"padding-left":["48px","48px"]}}},{"value":"(min-width: 768px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-md-0",".pt-md-0",".pr-md-0",".pb-md-0",".pl-md-0",".px-md-0",".py-md-0"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["0"],"padding-top":["0","0"],"padding-right":["0","0"],"padding-bottom":["0","0"],"padding-left":["0","0"]}}},{"value":"(min-width: 768px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-md-1",".pt-md-1",".pr-md-1",".pb-md-1",".pl-md-1",".px-md-1",".py-md-1"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["3px"],"padding-top":["3px","3px"],"padding-right":["3px","3px"],"padding-bottom":["3px","3px"],"padding-left":["3px","3px"]}}},{"value":"(min-width: 768px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-md-2",".pt-md-2",".pr-md-2",".pb-md-2",".pl-md-2",".px-md-2",".py-md-2"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["6px"],"padding-top":["6px","6px"],"padding-right":["6px","6px"],"padding-bottom":["6px","6px"],"padding-left":["6px","6px"]}}},{"value":"(min-width: 768px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-md-3",".pt-md-3",".pr-md-3",".pb-md-3",".pl-md-3",".px-md-3",".py-md-3"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["12px"],"padding-top":["12px","12px"],"padding-right":["12px","12px"],"padding-bottom":["12px","12px"],"padding-left":["12px","12px"]}}},{"value":"(min-width: 768px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-md-4",".pt-md-4",".pr-md-4",".pb-md-4",".pl-md-4",".px-md-4",".py-md-4"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["24px"],"padding-top":["24px","24px"],"padding-right":["24px","24px"],"padding-bottom":["24px","24px"],"padding-left":["24px","24px"]}}},{"value":"(min-width: 768px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-md-5",".pt-md-5",".pr-md-5",".pb-md-5",".pl-md-5",".px-md-5",".py-md-5"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["36px"],"padding-top":["36px","36px"],"padding-right":["36px","36px"],"padding-bottom":["36px","36px"],"padding-left":["36px","36px"]}}},{"value":"(min-width: 768px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-md-6",".pt-md-6",".pr-md-6",".pb-md-6",".pl-md-6",".px-md-6",".py-md-6"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["48px"],"padding-top":["48px","48px"],"padding-right":["48px","48px"],"padding-bottom":["48px","48px"],"padding-left":["48px","48px"]}}},{"value":"(min-width: 1004px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-lg-0",".pt-lg-0",".pr-lg-0",".pb-lg-0",".pl-lg-0",".px-lg-0",".py-lg-0"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["0"],"padding-top":["0","0"],"padding-right":["0","0"],"padding-bottom":["0","0"],"padding-left":["0","0"]}}},{"value":"(min-width: 1004px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-lg-1",".pt-lg-1",".pr-lg-1",".pb-lg-1",".pl-lg-1",".px-lg-1",".py-lg-1"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["3px"],"padding-top":["3px","3px"],"padding-right":["3px","3px"],"padding-bottom":["3px","3px"],"padding-left":["3px","3px"]}}},{"value":"(min-width: 1004px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-lg-2",".pt-lg-2",".pr-lg-2",".pb-lg-2",".pl-lg-2",".px-lg-2",".py-lg-2"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["6px"],"padding-top":["6px","6px"],"padding-right":["6px","6px"],"padding-bottom":["6px","6px"],"padding-left":["6px","6px"]}}},{"value":"(min-width: 1004px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-lg-3",".pt-lg-3",".pr-lg-3",".pb-lg-3",".pl-lg-3",".px-lg-3",".py-lg-3"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["12px"],"padding-top":["12px","12px"],"padding-right":["12px","12px"],"padding-bottom":["12px","12px"],"padding-left":["12px","12px"]}}},{"value":"(min-width: 1004px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-lg-4",".pt-lg-4",".pr-lg-4",".pb-lg-4",".pl-lg-4",".px-lg-4",".py-lg-4"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["24px"],"padding-top":["24px","24px"],"padding-right":["24px","24px"],"padding-bottom":["24px","24px"],"padding-left":["24px","24px"]}}},{"value":"(min-width: 1004px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-lg-5",".pt-lg-5",".pr-lg-5",".pb-lg-5",".pl-lg-5",".px-lg-5",".py-lg-5"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["36px"],"padding-top":["36px","36px"],"padding-right":["36px","36px"],"padding-bottom":["36px","36px"],"padding-left":["36px","36px"]}}},{"value":"(min-width: 1004px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-lg-6",".pt-lg-6",".pr-lg-6",".pb-lg-6",".pl-lg-6",".px-lg-6",".py-lg-6"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["48px"],"padding-top":["48px","48px"],"padding-right":["48px","48px"],"padding-bottom":["48px","48px"],"padding-left":["48px","48px"]}}},{"value":"(min-width: 1280px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-xl-0",".pt-xl-0",".pr-xl-0",".pb-xl-0",".pl-xl-0",".px-xl-0",".py-xl-0"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["0"],"padding-top":["0","0"],"padding-right":["0","0"],"padding-bottom":["0","0"],"padding-left":["0","0"]}}},{"value":"(min-width: 1280px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-xl-1",".pt-xl-1",".pr-xl-1",".pb-xl-1",".pl-xl-1",".px-xl-1",".py-xl-1"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["3px"],"padding-top":["3px","3px"],"padding-right":["3px","3px"],"padding-bottom":["3px","3px"],"padding-left":["3px","3px"]}}},{"value":"(min-width: 1280px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-xl-2",".pt-xl-2",".pr-xl-2",".pb-xl-2",".pl-xl-2",".px-xl-2",".py-xl-2"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["6px"],"padding-top":["6px","6px"],"padding-right":["6px","6px"],"padding-bottom":["6px","6px"],"padding-left":["6px","6px"]}}},{"value":"(min-width: 1280px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-xl-3",".pt-xl-3",".pr-xl-3",".pb-xl-3",".pl-xl-3",".px-xl-3",".py-xl-3"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["12px"],"padding-top":["12px","12px"],"padding-right":["12px","12px"],"padding-bottom":["12px","12px"],"padding-left":["12px","12px"]}}},{"value":"(min-width: 1280px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-xl-4",".pt-xl-4",".pr-xl-4",".pb-xl-4",".pl-xl-4",".px-xl-4",".py-xl-4"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["24px"],"padding-top":["24px","24px"],"padding-right":["24px","24px"],"padding-bottom":["24px","24px"],"padding-left":["24px","24px"]}}},{"value":"(min-width: 1280px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-xl-5",".pt-xl-5",".pr-xl-5",".pb-xl-5",".pl-xl-5",".px-xl-5",".py-xl-5"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["36px"],"padding-top":["36px","36px"],"padding-right":["36px","36px"],"padding-bottom":["36px","36px"],"padding-left":["36px","36px"]}}},{"value":"(min-width: 1280px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-xl-6",".pt-xl-6",".pr-xl-6",".pb-xl-6",".pl-xl-6",".px-xl-6",".py-xl-6"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["48px"],"padding-top":["48px","48px"],"padding-right":["48px","48px"],"padding-bottom":["48px","48px"],"padding-left":["48px","48px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1}},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".h1"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["32px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1}},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".h2"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["24px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1}},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".h3"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["20px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1}},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".h4"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["16px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1}},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".f1"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["32px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1}},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".f2"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["24px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1}},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".f3"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["20px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1}},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".f4"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["16px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1}},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".f00-light"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["48px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1}},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".f0-light"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["40px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1}},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".f1-light"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["32px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1}},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".f2-light"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["24px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1}},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".f3-light"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["20px"]}}}]}}}
         
     | 
| 
      
 1 
     | 
    
         
            +
            module.exports = {"cssstats":{"size":55091,"gzipSize":6680,"humanizedSize":"54kB","humanizedGzipSize":"7kB","rules":{"total":1045,"size":{"graph":[6,2,1,1,1,1,11,3,3,3,3,8,3,3,3,3,11,1,1,10,1,1,6,3,3,3,3,8,1,1,1,1,1,1,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,3,3,1,1,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,2,1,2,1,1,2,1,2,3,3,3,3,1,1,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,2,1,2,1,1,2,1,2,3,3,3,3,1,1,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,2,1,2,1,1,2,1,2,3,3,3,3,1,1,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,2,1,2,1,1,2,1,2,3,3,3,3,1,1,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,2,1,2,1,1,2,1,2,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,2,1,2,1,2,1,1,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,8],"max":11,"average":1.3511961722488037}},"selectors":{"total":1050,"type":4,"class":1018,"id":0,"pseudoClass":4,"pseudoElement":2,"values":[".anim-fade-in",".anim-fade-in.fast","0%","100%","0%","100%",".anim-fade-up","0%","100%","0%","100%",".anim-fade-down","0%","100%","0%","100%",".anim-grow-x","to","to",".anim-shrink-x","to","to",".anim-scale-in","0%","100%","0%","100%",".anim-pulse","0%","10%","100%","0%","10%","100%",".anim-pulse-in","0%","50%","100%","0%","50%","100%",".border",".border-top",".border-right",".border-bottom",".border-left",".border-y",".border-dashed",".border-blue",".border-blue-light",".border-green",".border-green-light",".border-red",".border-red-light",".border-yellow",".border-gray-light",".border-gray-dark",".border-black-fade",".border-0",".border-top-0",".border-right-0",".border-bottom-0",".border-left-0",".rounded-0",".rounded-1",".rounded-2",".box-shadow",".box-shadow-medium",".box-shadow-large",".box-shadow-extra-large",".box-shadow-none",".bg-white",".bg-blue",".bg-blue-light",".bg-gray-dark",".bg-gray",".bg-gray-light",".bg-green",".bg-green-light",".bg-red",".bg-red-light",".bg-yellow",".bg-yellow-light",".bg-purple",".bg-purple-light",".bg-shade-gradient",".text-blue",".text-red",".text-gray-light",".text-gray",".text-gray-dark",".text-green",".text-orange",".text-orange-light",".text-purple",".text-white",".text-inherit",".text-renamed",".text-pending",".bg-pending",".link-gray",".link-gray:hover",".link-gray-dark",".link-gray-dark:hover",".link-hover-blue:hover",".muted-link",".muted-link:hover",".flex-row",".flex-row-reverse",".flex-column",".flex-wrap",".flex-nowrap",".flex-justify-start",".flex-justify-end",".flex-justify-center",".flex-justify-between",".flex-justify-around",".flex-items-start",".flex-items-end",".flex-items-center",".flex-items-baseline",".flex-items-stretch",".flex-content-start",".flex-content-end",".flex-content-center",".flex-content-between",".flex-content-around",".flex-content-stretch",".flex-auto",".flex-shrink-0",".flex-self-auto",".flex-self-start",".flex-self-end",".flex-self-center",".flex-self-baseline",".flex-self-stretch",".flex-item-equal",".flex-sm-row",".flex-sm-row-reverse",".flex-sm-column",".flex-sm-wrap",".flex-sm-nowrap",".flex-sm-justify-start",".flex-sm-justify-end",".flex-sm-justify-center",".flex-sm-justify-between",".flex-sm-justify-around",".flex-sm-items-start",".flex-sm-items-end",".flex-sm-items-center",".flex-sm-items-baseline",".flex-sm-items-stretch",".flex-sm-content-start",".flex-sm-content-end",".flex-sm-content-center",".flex-sm-content-between",".flex-sm-content-around",".flex-sm-content-stretch",".flex-sm-auto",".flex-sm-shrink-0",".flex-sm-self-auto",".flex-sm-self-start",".flex-sm-self-end",".flex-sm-self-center",".flex-sm-self-baseline",".flex-sm-self-stretch",".flex-sm-item-equal",".flex-md-row",".flex-md-row-reverse",".flex-md-column",".flex-md-wrap",".flex-md-nowrap",".flex-md-justify-start",".flex-md-justify-end",".flex-md-justify-center",".flex-md-justify-between",".flex-md-justify-around",".flex-md-items-start",".flex-md-items-end",".flex-md-items-center",".flex-md-items-baseline",".flex-md-items-stretch",".flex-md-content-start",".flex-md-content-end",".flex-md-content-center",".flex-md-content-between",".flex-md-content-around",".flex-md-content-stretch",".flex-md-auto",".flex-md-shrink-0",".flex-md-self-auto",".flex-md-self-start",".flex-md-self-end",".flex-md-self-center",".flex-md-self-baseline",".flex-md-self-stretch",".flex-md-item-equal",".flex-lg-row",".flex-lg-row-reverse",".flex-lg-column",".flex-lg-wrap",".flex-lg-nowrap",".flex-lg-justify-start",".flex-lg-justify-end",".flex-lg-justify-center",".flex-lg-justify-between",".flex-lg-justify-around",".flex-lg-items-start",".flex-lg-items-end",".flex-lg-items-center",".flex-lg-items-baseline",".flex-lg-items-stretch",".flex-lg-content-start",".flex-lg-content-end",".flex-lg-content-center",".flex-lg-content-between",".flex-lg-content-around",".flex-lg-content-stretch",".flex-lg-auto",".flex-lg-shrink-0",".flex-lg-self-auto",".flex-lg-self-start",".flex-lg-self-end",".flex-lg-self-center",".flex-lg-self-baseline",".flex-lg-self-stretch",".flex-lg-item-equal",".flex-xl-row",".flex-xl-row-reverse",".flex-xl-column",".flex-xl-wrap",".flex-xl-nowrap",".flex-xl-justify-start",".flex-xl-justify-end",".flex-xl-justify-center",".flex-xl-justify-between",".flex-xl-justify-around",".flex-xl-items-start",".flex-xl-items-end",".flex-xl-items-center",".flex-xl-items-baseline",".flex-xl-items-stretch",".flex-xl-content-start",".flex-xl-content-end",".flex-xl-content-center",".flex-xl-content-between",".flex-xl-content-around",".flex-xl-content-stretch",".flex-xl-auto",".flex-xl-shrink-0",".flex-xl-self-auto",".flex-xl-self-start",".flex-xl-self-end",".flex-xl-self-center",".flex-xl-self-baseline",".flex-xl-self-stretch",".flex-xl-item-equal",".position-static",".position-relative",".position-absolute",".position-fixed",".top-0",".right-0",".bottom-0",".left-0",".v-align-middle",".v-align-top",".v-align-bottom",".v-align-text-top",".v-align-text-bottom",".overflow-hidden",".overflow-scroll",".overflow-auto",".clearfix::before",".clearfix::after",".float-right",".float-left",".float-none",".float-sm-left",".float-sm-right",".float-sm-none",".float-md-left",".float-md-right",".float-md-none",".float-lg-left",".float-lg-right",".float-lg-none",".float-xl-left",".float-xl-right",".float-xl-none",".width-fit",".width-full",".height-full",".min-width-0",".direction-rtl",".direction-ltr",".direction-sm-rtl",".direction-sm-ltr",".direction-md-rtl",".direction-md-ltr",".direction-lg-rtl",".direction-lg-ltr",".direction-xl-rtl",".direction-xl-ltr",".m-0",".mt-0",".mr-0",".mb-0",".ml-0",".mt-n0",".mr-n0",".mb-n0",".ml-n0",".mx-0",".my-0",".m-1",".mt-1",".mr-1",".mb-1",".ml-1",".mt-n1",".mr-n1",".mb-n1",".ml-n1",".mx-1",".my-1",".m-2",".mt-2",".mr-2",".mb-2",".ml-2",".mt-n2",".mr-n2",".mb-n2",".ml-n2",".mx-2",".my-2",".m-3",".mt-3",".mr-3",".mb-3",".ml-3",".mt-n3",".mr-n3",".mb-n3",".ml-n3",".mx-3",".my-3",".m-4",".mt-4",".mr-4",".mb-4",".ml-4",".mt-n4",".mr-n4",".mb-n4",".ml-n4",".mx-4",".my-4",".m-5",".mt-5",".mr-5",".mb-5",".ml-5",".mt-n5",".mr-n5",".mb-n5",".ml-n5",".mx-5",".my-5",".m-6",".mt-6",".mr-6",".mb-6",".ml-6",".mt-n6",".mr-n6",".mb-n6",".ml-n6",".mx-6",".my-6",".mx-auto",".m-sm-0",".mt-sm-0",".mr-sm-0",".mb-sm-0",".ml-sm-0",".mt-sm-n0",".mr-sm-n0",".mb-sm-n0",".ml-sm-n0",".mx-sm-0",".my-sm-0",".m-sm-1",".mt-sm-1",".mr-sm-1",".mb-sm-1",".ml-sm-1",".mt-sm-n1",".mr-sm-n1",".mb-sm-n1",".ml-sm-n1",".mx-sm-1",".my-sm-1",".m-sm-2",".mt-sm-2",".mr-sm-2",".mb-sm-2",".ml-sm-2",".mt-sm-n2",".mr-sm-n2",".mb-sm-n2",".ml-sm-n2",".mx-sm-2",".my-sm-2",".m-sm-3",".mt-sm-3",".mr-sm-3",".mb-sm-3",".ml-sm-3",".mt-sm-n3",".mr-sm-n3",".mb-sm-n3",".ml-sm-n3",".mx-sm-3",".my-sm-3",".m-sm-4",".mt-sm-4",".mr-sm-4",".mb-sm-4",".ml-sm-4",".mt-sm-n4",".mr-sm-n4",".mb-sm-n4",".ml-sm-n4",".mx-sm-4",".my-sm-4",".m-sm-5",".mt-sm-5",".mr-sm-5",".mb-sm-5",".ml-sm-5",".mt-sm-n5",".mr-sm-n5",".mb-sm-n5",".ml-sm-n5",".mx-sm-5",".my-sm-5",".m-sm-6",".mt-sm-6",".mr-sm-6",".mb-sm-6",".ml-sm-6",".mt-sm-n6",".mr-sm-n6",".mb-sm-n6",".ml-sm-n6",".mx-sm-6",".my-sm-6",".m-md-0",".mt-md-0",".mr-md-0",".mb-md-0",".ml-md-0",".mt-md-n0",".mr-md-n0",".mb-md-n0",".ml-md-n0",".mx-md-0",".my-md-0",".m-md-1",".mt-md-1",".mr-md-1",".mb-md-1",".ml-md-1",".mt-md-n1",".mr-md-n1",".mb-md-n1",".ml-md-n1",".mx-md-1",".my-md-1",".m-md-2",".mt-md-2",".mr-md-2",".mb-md-2",".ml-md-2",".mt-md-n2",".mr-md-n2",".mb-md-n2",".ml-md-n2",".mx-md-2",".my-md-2",".m-md-3",".mt-md-3",".mr-md-3",".mb-md-3",".ml-md-3",".mt-md-n3",".mr-md-n3",".mb-md-n3",".ml-md-n3",".mx-md-3",".my-md-3",".m-md-4",".mt-md-4",".mr-md-4",".mb-md-4",".ml-md-4",".mt-md-n4",".mr-md-n4",".mb-md-n4",".ml-md-n4",".mx-md-4",".my-md-4",".m-md-5",".mt-md-5",".mr-md-5",".mb-md-5",".ml-md-5",".mt-md-n5",".mr-md-n5",".mb-md-n5",".ml-md-n5",".mx-md-5",".my-md-5",".m-md-6",".mt-md-6",".mr-md-6",".mb-md-6",".ml-md-6",".mt-md-n6",".mr-md-n6",".mb-md-n6",".ml-md-n6",".mx-md-6",".my-md-6",".m-lg-0",".mt-lg-0",".mr-lg-0",".mb-lg-0",".ml-lg-0",".mt-lg-n0",".mr-lg-n0",".mb-lg-n0",".ml-lg-n0",".mx-lg-0",".my-lg-0",".m-lg-1",".mt-lg-1",".mr-lg-1",".mb-lg-1",".ml-lg-1",".mt-lg-n1",".mr-lg-n1",".mb-lg-n1",".ml-lg-n1",".mx-lg-1",".my-lg-1",".m-lg-2",".mt-lg-2",".mr-lg-2",".mb-lg-2",".ml-lg-2",".mt-lg-n2",".mr-lg-n2",".mb-lg-n2",".ml-lg-n2",".mx-lg-2",".my-lg-2",".m-lg-3",".mt-lg-3",".mr-lg-3",".mb-lg-3",".ml-lg-3",".mt-lg-n3",".mr-lg-n3",".mb-lg-n3",".ml-lg-n3",".mx-lg-3",".my-lg-3",".m-lg-4",".mt-lg-4",".mr-lg-4",".mb-lg-4",".ml-lg-4",".mt-lg-n4",".mr-lg-n4",".mb-lg-n4",".ml-lg-n4",".mx-lg-4",".my-lg-4",".m-lg-5",".mt-lg-5",".mr-lg-5",".mb-lg-5",".ml-lg-5",".mt-lg-n5",".mr-lg-n5",".mb-lg-n5",".ml-lg-n5",".mx-lg-5",".my-lg-5",".m-lg-6",".mt-lg-6",".mr-lg-6",".mb-lg-6",".ml-lg-6",".mt-lg-n6",".mr-lg-n6",".mb-lg-n6",".ml-lg-n6",".mx-lg-6",".my-lg-6",".m-xl-0",".mt-xl-0",".mr-xl-0",".mb-xl-0",".ml-xl-0",".mt-xl-n0",".mr-xl-n0",".mb-xl-n0",".ml-xl-n0",".mx-xl-0",".my-xl-0",".m-xl-1",".mt-xl-1",".mr-xl-1",".mb-xl-1",".ml-xl-1",".mt-xl-n1",".mr-xl-n1",".mb-xl-n1",".ml-xl-n1",".mx-xl-1",".my-xl-1",".m-xl-2",".mt-xl-2",".mr-xl-2",".mb-xl-2",".ml-xl-2",".mt-xl-n2",".mr-xl-n2",".mb-xl-n2",".ml-xl-n2",".mx-xl-2",".my-xl-2",".m-xl-3",".mt-xl-3",".mr-xl-3",".mb-xl-3",".ml-xl-3",".mt-xl-n3",".mr-xl-n3",".mb-xl-n3",".ml-xl-n3",".mx-xl-3",".my-xl-3",".m-xl-4",".mt-xl-4",".mr-xl-4",".mb-xl-4",".ml-xl-4",".mt-xl-n4",".mr-xl-n4",".mb-xl-n4",".ml-xl-n4",".mx-xl-4",".my-xl-4",".m-xl-5",".mt-xl-5",".mr-xl-5",".mb-xl-5",".ml-xl-5",".mt-xl-n5",".mr-xl-n5",".mb-xl-n5",".ml-xl-n5",".mx-xl-5",".my-xl-5",".m-xl-6",".mt-xl-6",".mr-xl-6",".mb-xl-6",".ml-xl-6",".mt-xl-n6",".mr-xl-n6",".mb-xl-n6",".ml-xl-n6",".mx-xl-6",".my-xl-6",".p-0",".pt-0",".pr-0",".pb-0",".pl-0",".px-0",".py-0",".p-1",".pt-1",".pr-1",".pb-1",".pl-1",".px-1",".py-1",".p-2",".pt-2",".pr-2",".pb-2",".pl-2",".px-2",".py-2",".p-3",".pt-3",".pr-3",".pb-3",".pl-3",".px-3",".py-3",".p-4",".pt-4",".pr-4",".pb-4",".pl-4",".px-4",".py-4",".p-5",".pt-5",".pr-5",".pb-5",".pl-5",".px-5",".py-5",".p-6",".pt-6",".pr-6",".pb-6",".pl-6",".px-6",".py-6",".p-sm-0",".pt-sm-0",".pr-sm-0",".pb-sm-0",".pl-sm-0",".px-sm-0",".py-sm-0",".p-sm-1",".pt-sm-1",".pr-sm-1",".pb-sm-1",".pl-sm-1",".px-sm-1",".py-sm-1",".p-sm-2",".pt-sm-2",".pr-sm-2",".pb-sm-2",".pl-sm-2",".px-sm-2",".py-sm-2",".p-sm-3",".pt-sm-3",".pr-sm-3",".pb-sm-3",".pl-sm-3",".px-sm-3",".py-sm-3",".p-sm-4",".pt-sm-4",".pr-sm-4",".pb-sm-4",".pl-sm-4",".px-sm-4",".py-sm-4",".p-sm-5",".pt-sm-5",".pr-sm-5",".pb-sm-5",".pl-sm-5",".px-sm-5",".py-sm-5",".p-sm-6",".pt-sm-6",".pr-sm-6",".pb-sm-6",".pl-sm-6",".px-sm-6",".py-sm-6",".p-md-0",".pt-md-0",".pr-md-0",".pb-md-0",".pl-md-0",".px-md-0",".py-md-0",".p-md-1",".pt-md-1",".pr-md-1",".pb-md-1",".pl-md-1",".px-md-1",".py-md-1",".p-md-2",".pt-md-2",".pr-md-2",".pb-md-2",".pl-md-2",".px-md-2",".py-md-2",".p-md-3",".pt-md-3",".pr-md-3",".pb-md-3",".pl-md-3",".px-md-3",".py-md-3",".p-md-4",".pt-md-4",".pr-md-4",".pb-md-4",".pl-md-4",".px-md-4",".py-md-4",".p-md-5",".pt-md-5",".pr-md-5",".pb-md-5",".pl-md-5",".px-md-5",".py-md-5",".p-md-6",".pt-md-6",".pr-md-6",".pb-md-6",".pl-md-6",".px-md-6",".py-md-6",".p-lg-0",".pt-lg-0",".pr-lg-0",".pb-lg-0",".pl-lg-0",".px-lg-0",".py-lg-0",".p-lg-1",".pt-lg-1",".pr-lg-1",".pb-lg-1",".pl-lg-1",".px-lg-1",".py-lg-1",".p-lg-2",".pt-lg-2",".pr-lg-2",".pb-lg-2",".pl-lg-2",".px-lg-2",".py-lg-2",".p-lg-3",".pt-lg-3",".pr-lg-3",".pb-lg-3",".pl-lg-3",".px-lg-3",".py-lg-3",".p-lg-4",".pt-lg-4",".pr-lg-4",".pb-lg-4",".pl-lg-4",".px-lg-4",".py-lg-4",".p-lg-5",".pt-lg-5",".pr-lg-5",".pb-lg-5",".pl-lg-5",".px-lg-5",".py-lg-5",".p-lg-6",".pt-lg-6",".pr-lg-6",".pb-lg-6",".pl-lg-6",".px-lg-6",".py-lg-6",".p-xl-0",".pt-xl-0",".pr-xl-0",".pb-xl-0",".pl-xl-0",".px-xl-0",".py-xl-0",".p-xl-1",".pt-xl-1",".pr-xl-1",".pb-xl-1",".pl-xl-1",".px-xl-1",".py-xl-1",".p-xl-2",".pt-xl-2",".pr-xl-2",".pb-xl-2",".pl-xl-2",".px-xl-2",".py-xl-2",".p-xl-3",".pt-xl-3",".pr-xl-3",".pb-xl-3",".pl-xl-3",".px-xl-3",".py-xl-3",".p-xl-4",".pt-xl-4",".pr-xl-4",".pb-xl-4",".pl-xl-4",".px-xl-4",".py-xl-4",".p-xl-5",".pt-xl-5",".pr-xl-5",".pb-xl-5",".pl-xl-5",".px-xl-5",".py-xl-5",".p-xl-6",".pt-xl-6",".pr-xl-6",".pb-xl-6",".pl-xl-6",".px-xl-6",".py-xl-6",".h1",".h1",".h2",".h2",".h3",".h3",".h4",".h4",".h5",".h6",".h1",".h2",".h3",".h4",".h5",".h6",".f1",".f1",".f2",".f2",".f3",".f3",".f4",".f4",".f5",".f6",".f00-light",".f00-light",".f0-light",".f0-light",".f1-light",".f1-light",".f2-light",".f2-light",".f3-light",".f3-light",".text-small",".lead",".lh-condensed-ultra",".lh-condensed",".lh-default",".text-right",".text-left",".text-center",".text-sm-right",".text-sm-left",".text-sm-center",".text-md-right",".text-md-left",".text-md-center",".text-lg-right",".text-lg-left",".text-lg-center",".text-xl-right",".text-xl-left",".text-xl-center",".text-normal",".text-bold",".text-italic",".text-uppercase",".no-underline",".no-wrap",".wb-break-all",".text-emphasized",".list-style-none",".text-shadow-dark",".text-shadow-light",".v-hidden",".v-visible",".d-table",".d-table-cell",".table-fixed",".d-block",".d-inline",".d-inline-block",".d-flex",".d-inline-flex",".d-none",".d-sm-table",".d-sm-table-cell",".d-sm-block",".d-sm-inline",".d-sm-inline-block",".d-sm-flex",".d-sm-inline-flex",".d-sm-none",".d-md-table",".d-md-table-cell",".d-md-block",".d-md-inline",".d-md-inline-block",".d-md-flex",".d-md-inline-flex",".d-md-none",".d-lg-table",".d-lg-table-cell",".d-lg-block",".d-lg-inline",".d-lg-inline-block",".d-lg-flex",".d-lg-inline-flex",".d-lg-none",".d-xl-table",".d-xl-table-cell",".d-xl-block",".d-xl-inline",".d-xl-inline-block",".d-xl-flex",".d-xl-inline-flex",".d-xl-none",".hide-sm",".hide-md",".hide-lg",".hide-xl",".sr-only"],"specificity":{"max":20,"average":9.775238095238095}},"declarations":{"total":1412,"unique":349,"properties":{"-webkit-animation-name":["fade-in","fade-up","fade-down","grow-x","shrink-x","scale-in","pulse","pulse-in"],"animation-name":["fade-in","fade-up","fade-down","grow-x","shrink-x","scale-in","pulse","pulse-in"],"-webkit-animation-duration":["1s","300ms","0.3s","0.3s","0.3s","0.3s","0.15s","2s","0.5s"],"animation-duration":["1s","300ms","0.3s","0.3s","0.3s","0.3s","0.15s","2s","0.5s"],"-webkit-animation-timing-function":["ease-in-out","ease-out","ease-in","ease","ease-in-out","cubic-bezier(0.2, 0, 0.13, 1.5)","linear"],"animation-timing-function":["ease-in-out","ease-out","ease-in","ease","ease-in-out","cubic-bezier(0.2, 0, 0.13, 1.5)","linear"],"opacity":["0","1","0","1","0","0.8","1","0.8","1","1","0.5","1","0.5","0","1","0","1","0.3","1","0.3","0.3","1","0.3"],"-webkit-animation-fill-mode":["forwards","forwards","forwards","forwards"],"animation-fill-mode":["forwards","forwards","forwards","forwards"],"-webkit-animation-delay":["1s","0.5s","0.5s"],"animation-delay":["1s","0.5s","0.5s"],"-webkit-transform":["translateY(100%)","translateY(0)","translateY(100%)","translateY(0)","translateY(0)","translateY(100%)","translateY(0)","translateY(100%)","scale(0.5)","scale(1)","scale(0.5)","scale(1)","scale3d(1, 1, 1)","scale3d(1.1, 1.1, 1.1)","scale3d(1, 1, 1)","scale3d(1, 1, 1)","scale3d(1.1, 1.1, 1.1)","scale3d(1, 1, 1)"],"transform":["translateY(100%)","translateY(0)","translateY(100%)","translateY(0)","translateY(0)","translateY(100%)","translateY(0)","translateY(100%)","scale(0.5)","scale(1)","scale(0.5)","scale(1)","scale3d(1, 1, 1)","scale3d(1.1, 1.1, 1.1)","scale3d(1, 1, 1)","scale3d(1, 1, 1)","scale3d(1.1, 1.1, 1.1)","scale3d(1, 1, 1)"],"width":["0%","100%","100%","0%","0%","100%","1px"],"-webkit-animation-iteration-count":["infinite"],"animation-iteration-count":["infinite"],"border":["1px #e1e4e8 solid","0","0"],"border-top":["1px #e1e4e8 solid","1px #e1e4e8 solid","0"],"border-right":["1px #e1e4e8 solid","0"],"border-bottom":["1px #e1e4e8 solid","1px #e1e4e8 solid","0"],"border-left":["1px #e1e4e8 solid","0"],"border-style":["dashed"],"border-color":["#0366d6","#c8e1ff","#34d058","#a2cbac","#d73a49","#cea0a5","#d9d0a5","#eaecef","#d1d5da","rgba(27,31,35,0.15)"],"border-radius":["0","3px","6px"],"box-shadow":["0 1px 1px rgba(0,0,0,0.1)","0 1px 5px rgba(0,0,0,0.15)","0 1px 15px rgba(0,0,0,0.15)","0 10px 50px rgba(0,0,0,0.05)","none"],"background-color":["#fff","#0366d6","#f1f8ff","#24292e","#f6f8fa","#fafbfc","#28a745","#dcffe4","#d73a49","#ffdce0","#ffd33d","#fff5b1","#6f42c1","#f5f0ff"],"background-image":["-webkit-linear-gradient(top, rgba(0,0,0,0.065), transparent)","linear-gradient(180deg, rgba(0,0,0,0.065), transparent)"],"background-repeat":["no-repeat"],"background-size":["100% 200px"],"color":["#0366d6","#cb2431","#6a737d","#586069","#24292e","#28a745","#a04100","#e36209","#6f42c1","#fff","inherit","#ffd33d","#b08800","#dbab09","#586069","#0366d6","#24292e","#0366d6","#0366d6","#586069","#0366d6","#555","#24292e"],"text-decoration":["none","none"],"-webkit-box-orient":["horizontal","horizontal","vertical","horizontal","horizontal","vertical","horizontal","horizontal","vertical","horizontal","horizontal","vertical","horizontal","horizontal","vertical"],"-webkit-box-direction":["normal","reverse","normal","normal","reverse","normal","normal","reverse","normal","normal","reverse","normal","normal","reverse","normal"],"flex-direction":["row","row-reverse","column","row","row-reverse","column","row","row-reverse","column","row","row-reverse","column","row","row-reverse","column"],"flex-wrap":["wrap","nowrap","wrap","nowrap","wrap","nowrap","wrap","nowrap","wrap","nowrap"],"-webkit-box-pack":["start","end","center","justify","start","end","center","justify","start","end","center","justify","start","end","center","justify","start","end","center","justify"],"justify-content":["flex-start","flex-end","center","space-between","space-around","flex-start","flex-end","center","space-between","space-around","flex-start","flex-end","center","space-between","space-around","flex-start","flex-end","center","space-between","space-around","flex-start","flex-end","center","space-between","space-around"],"-webkit-box-align":["start","end","center","baseline","stretch","start","end","center","baseline","stretch","start","end","center","baseline","stretch","start","end","center","baseline","stretch","start","end","center","baseline","stretch"],"align-items":["flex-start","flex-end","center","baseline","stretch","flex-start","flex-end","center","baseline","stretch","flex-start","flex-end","center","baseline","stretch","flex-start","flex-end","center","baseline","stretch","flex-start","flex-end","center","baseline","stretch"],"align-content":["flex-start","flex-end","center","space-between","space-around","stretch","flex-start","flex-end","center","space-between","space-around","stretch","flex-start","flex-end","center","space-between","space-around","stretch","flex-start","flex-end","center","space-between","space-around","stretch","flex-start","flex-end","center","space-between","space-around","stretch"],"-webkit-box-flex":["1","1","1","1","1","1","1","1","1","1"],"flex":["1 1 auto","1 1 auto","1 1 auto","1 1 auto","1 1 auto"],"flex-shrink":["0","0","0","0","0"],"-ms-grid-row-align":["auto","center","stretch","auto","center","stretch","auto","center","stretch","auto","center","stretch","auto","center","stretch"],"align-self":["auto","flex-start","flex-end","center","baseline","stretch","auto","flex-start","flex-end","center","baseline","stretch","auto","flex-start","flex-end","center","baseline","stretch","auto","flex-start","flex-end","center","baseline","stretch","auto","flex-start","flex-end","center","baseline","stretch"],"flex-grow":["1","1","1","1","1"],"flex-basis":["0","0","0","0","0"],"position":["static","relative","absolute","fixed","absolute"],"top":["0"],"right":["0"],"bottom":["0"],"left":["0"],"vertical-align":["middle","top","bottom","text-top","text-bottom"],"overflow":["hidden","scroll","auto","hidden"],"display":["table","table","table","table-cell","block","inline","inline-block","-webkit-box","flex","-webkit-inline-box","inline-flex","none","table","table-cell","block","inline","inline-block","-webkit-box","flex","-webkit-inline-box","inline-flex","none","table","table-cell","block","inline","inline-block","-webkit-box","flex","-webkit-inline-box","inline-flex","none","table","table-cell","block","inline","inline-block","-webkit-box","flex","-webkit-inline-box","inline-flex","none","table","table-cell","block","inline","inline-block","-webkit-box","flex","-webkit-inline-box","inline-flex","none","none","none","none","none"],"content":["\"\"","\"\""],"clear":["both"],"float":["right","left","none","left","right","none","left","right","none","left","right","none","left","right","none"],"max-width":["100%"],"height":["100%","1px"],"min-width":["0"],"direction":["rtl","ltr","rtl","ltr","rtl","ltr","rtl","ltr","rtl","ltr"],"margin":["0","4px","8px","16px","24px","32px","40px","0","4px","8px","16px","24px","32px","40px","0","4px","8px","16px","24px","32px","40px","0","4px","8px","16px","24px","32px","40px","0","4px","8px","16px","24px","32px","40px"],"margin-top":["0","-0","0","4px","-4px","4px","8px","-8px","8px","16px","-16px","16px","24px","-24px","24px","32px","-32px","32px","40px","-40px","40px","0","-0","0","4px","-4px","4px","8px","-8px","8px","16px","-16px","16px","24px","-24px","24px","32px","-32px","32px","40px","-40px","40px","0","-0","0","4px","-4px","4px","8px","-8px","8px","16px","-16px","16px","24px","-24px","24px","32px","-32px","32px","40px","-40px","40px","0","-0","0","4px","-4px","4px","8px","-8px","8px","16px","-16px","16px","24px","-24px","24px","32px","-32px","32px","40px","-40px","40px","0","-0","0","4px","-4px","4px","8px","-8px","8px","16px","-16px","16px","24px","-24px","24px","32px","-32px","32px","40px","-40px","40px"],"margin-right":["0","-0","0","4px","-4px","4px","8px","-8px","8px","16px","-16px","16px","24px","-24px","24px","32px","-32px","32px","40px","-40px","40px","auto","0","-0","0","4px","-4px","4px","8px","-8px","8px","16px","-16px","16px","24px","-24px","24px","32px","-32px","32px","40px","-40px","40px","0","-0","0","4px","-4px","4px","8px","-8px","8px","16px","-16px","16px","24px","-24px","24px","32px","-32px","32px","40px","-40px","40px","0","-0","0","4px","-4px","4px","8px","-8px","8px","16px","-16px","16px","24px","-24px","24px","32px","-32px","32px","40px","-40px","40px","0","-0","0","4px","-4px","4px","8px","-8px","8px","16px","-16px","16px","24px","-24px","24px","32px","-32px","32px","40px","-40px","40px"],"margin-bottom":["0","-0","0","4px","-4px","4px","8px","-8px","8px","16px","-16px","16px","24px","-24px","24px","32px","-32px","32px","40px","-40px","40px","0","-0","0","4px","-4px","4px","8px","-8px","8px","16px","-16px","16px","24px","-24px","24px","32px","-32px","32px","40px","-40px","40px","0","-0","0","4px","-4px","4px","8px","-8px","8px","16px","-16px","16px","24px","-24px","24px","32px","-32px","32px","40px","-40px","40px","0","-0","0","4px","-4px","4px","8px","-8px","8px","16px","-16px","16px","24px","-24px","24px","32px","-32px","32px","40px","-40px","40px","0","-0","0","4px","-4px","4px","8px","-8px","8px","16px","-16px","16px","24px","-24px","24px","32px","-32px","32px","40px","-40px","40px","30px"],"margin-left":["0","-0","0","4px","-4px","4px","8px","-8px","8px","16px","-16px","16px","24px","-24px","24px","32px","-32px","32px","40px","-40px","40px","auto","0","-0","0","4px","-4px","4px","8px","-8px","8px","16px","-16px","16px","24px","-24px","24px","32px","-32px","32px","40px","-40px","40px","0","-0","0","4px","-4px","4px","8px","-8px","8px","16px","-16px","16px","24px","-24px","24px","32px","-32px","32px","40px","-40px","40px","0","-0","0","4px","-4px","4px","8px","-8px","8px","16px","-16px","16px","24px","-24px","24px","32px","-32px","32px","40px","-40px","40px","0","-0","0","4px","-4px","4px","8px","-8px","8px","16px","-16px","16px","24px","-24px","24px","32px","-32px","32px","40px","-40px","40px"],"padding":["0","4px","8px","16px","24px","32px","40px","0","4px","8px","16px","24px","32px","40px","0","4px","8px","16px","24px","32px","40px","0","4px","8px","16px","24px","32px","40px","0","4px","8px","16px","24px","32px","40px","0"],"padding-top":["0","0","4px","4px","8px","8px","16px","16px","24px","24px","32px","32px","40px","40px","0","0","4px","4px","8px","8px","16px","16px","24px","24px","32px","32px","40px","40px","0","0","4px","4px","8px","8px","16px","16px","24px","24px","32px","32px","40px","40px","0","0","4px","4px","8px","8px","16px","16px","24px","24px","32px","32px","40px","40px","0","0","4px","4px","8px","8px","16px","16px","24px","24px","32px","32px","40px","40px"],"padding-right":["0","0","4px","4px","8px","8px","16px","16px","24px","24px","32px","32px","40px","40px","0","0","4px","4px","8px","8px","16px","16px","24px","24px","32px","32px","40px","40px","0","0","4px","4px","8px","8px","16px","16px","24px","24px","32px","32px","40px","40px","0","0","4px","4px","8px","8px","16px","16px","24px","24px","32px","32px","40px","40px","0","0","4px","4px","8px","8px","16px","16px","24px","24px","32px","32px","40px","40px"],"padding-bottom":["0","0","4px","4px","8px","8px","16px","16px","24px","24px","32px","32px","40px","40px","0","0","4px","4px","8px","8px","16px","16px","24px","24px","32px","32px","40px","40px","0","0","4px","4px","8px","8px","16px","16px","24px","24px","32px","32px","40px","40px","0","0","4px","4px","8px","8px","16px","16px","24px","24px","32px","32px","40px","40px","0","0","4px","4px","8px","8px","16px","16px","24px","24px","32px","32px","40px","40px"],"padding-left":["0","0","4px","4px","8px","8px","16px","16px","24px","24px","32px","32px","40px","40px","0","0","4px","4px","8px","8px","16px","16px","24px","24px","32px","32px","40px","40px","0","0","4px","4px","8px","8px","16px","16px","24px","24px","32px","32px","40px","40px","0","0","4px","4px","8px","8px","16px","16px","24px","24px","32px","32px","40px","40px","0","0","4px","4px","8px","8px","16px","16px","24px","24px","32px","32px","40px","40px"],"font-size":["26px","32px","22px","24px","18px","20px","16px","16px","14px","12px","26px","32px","22px","24px","18px","20px","16px","16px","14px","12px","40px","48px","32px","40px","26px","32px","22px","24px","18px","20px","12px","20px"],"font-weight":["600","300","300","300","300","300","300","normal","600","600"],"line-height":["1","1.25","1.5"],"text-align":["right","left","center","right","left","center","right","left","center","right","left","center","right","left","center"],"font-style":["italic"],"text-transform":["uppercase"],"white-space":["nowrap"],"word-break":["break-all"],"list-style":["none"],"text-shadow":["0 1px 1px rgba(0,0,0,0.25),0 1px 25px rgba(0,0,0,0.75)","0 1px 0 rgba(255,255,255,0.5)"],"visibility":["hidden","visible"],"table-layout":["fixed"],"clip":["rect(0, 0, 0, 0)"],"word-wrap":["normal"]}},"mediaQueries":{"total":93,"unique":7,"values":["(min-width: 544px)","(min-width: 768px)","(min-width: 1012px)","(min-width: 1280px)","(min-width: 544px)","(min-width: 768px)","(min-width: 1012px)","(min-width: 1280px)","(min-width: 544px)","(min-width: 768px)","(min-width: 1012px)","(min-width: 1280px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 544px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1012px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 1280px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 768px)","(min-width: 544px)","(min-width: 768px)","(min-width: 1012px)","(min-width: 1280px)","(min-width: 544px)","(min-width: 768px)","(min-width: 1012px)","(min-width: 1280px)","(max-width: 544px)","(min-width: 544px) and (max-width: 768px)","(min-width: 768px) and (max-width: 1012px)","(min-width: 1012px)"],"contents":[{"value":"(min-width: 544px)","rules":{"total":30,"size":{"graph":[3,3,3,1,1,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,2,1,2,1,1,2,1,2,3],"max":3,"average":1.7}},"selectors":{"total":30,"type":0,"class":30,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".flex-sm-row",".flex-sm-row-reverse",".flex-sm-column",".flex-sm-wrap",".flex-sm-nowrap",".flex-sm-justify-start",".flex-sm-justify-end",".flex-sm-justify-center",".flex-sm-justify-between",".flex-sm-justify-around",".flex-sm-items-start",".flex-sm-items-end",".flex-sm-items-center",".flex-sm-items-baseline",".flex-sm-items-stretch",".flex-sm-content-start",".flex-sm-content-end",".flex-sm-content-center",".flex-sm-content-between",".flex-sm-content-around",".flex-sm-content-stretch",".flex-sm-auto",".flex-sm-shrink-0",".flex-sm-self-auto",".flex-sm-self-start",".flex-sm-self-end",".flex-sm-self-center",".flex-sm-self-baseline",".flex-sm-self-stretch",".flex-sm-item-equal"],"specificity":{"max":10,"average":10}},"declarations":{"total":51,"unique":48,"properties":{"-webkit-box-orient":["horizontal","horizontal","vertical"],"-webkit-box-direction":["normal","reverse","normal"],"flex-direction":["row","row-reverse","column"],"flex-wrap":["wrap","nowrap"],"-webkit-box-pack":["start","end","center","justify"],"justify-content":["flex-start","flex-end","center","space-between","space-around"],"-webkit-box-align":["start","end","center","baseline","stretch"],"align-items":["flex-start","flex-end","center","baseline","stretch"],"align-content":["flex-start","flex-end","center","space-between","space-around","stretch"],"-webkit-box-flex":["1","1"],"flex":["1 1 auto"],"flex-shrink":["0"],"-ms-grid-row-align":["auto","center","stretch"],"align-self":["auto","flex-start","flex-end","center","baseline","stretch"],"flex-grow":["1"],"flex-basis":["0"]}}},{"value":"(min-width: 768px)","rules":{"total":30,"size":{"graph":[3,3,3,1,1,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,2,1,2,1,1,2,1,2,3],"max":3,"average":1.7}},"selectors":{"total":30,"type":0,"class":30,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".flex-md-row",".flex-md-row-reverse",".flex-md-column",".flex-md-wrap",".flex-md-nowrap",".flex-md-justify-start",".flex-md-justify-end",".flex-md-justify-center",".flex-md-justify-between",".flex-md-justify-around",".flex-md-items-start",".flex-md-items-end",".flex-md-items-center",".flex-md-items-baseline",".flex-md-items-stretch",".flex-md-content-start",".flex-md-content-end",".flex-md-content-center",".flex-md-content-between",".flex-md-content-around",".flex-md-content-stretch",".flex-md-auto",".flex-md-shrink-0",".flex-md-self-auto",".flex-md-self-start",".flex-md-self-end",".flex-md-self-center",".flex-md-self-baseline",".flex-md-self-stretch",".flex-md-item-equal"],"specificity":{"max":10,"average":10}},"declarations":{"total":51,"unique":48,"properties":{"-webkit-box-orient":["horizontal","horizontal","vertical"],"-webkit-box-direction":["normal","reverse","normal"],"flex-direction":["row","row-reverse","column"],"flex-wrap":["wrap","nowrap"],"-webkit-box-pack":["start","end","center","justify"],"justify-content":["flex-start","flex-end","center","space-between","space-around"],"-webkit-box-align":["start","end","center","baseline","stretch"],"align-items":["flex-start","flex-end","center","baseline","stretch"],"align-content":["flex-start","flex-end","center","space-between","space-around","stretch"],"-webkit-box-flex":["1","1"],"flex":["1 1 auto"],"flex-shrink":["0"],"-ms-grid-row-align":["auto","center","stretch"],"align-self":["auto","flex-start","flex-end","center","baseline","stretch"],"flex-grow":["1"],"flex-basis":["0"]}}},{"value":"(min-width: 1012px)","rules":{"total":30,"size":{"graph":[3,3,3,1,1,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,2,1,2,1,1,2,1,2,3],"max":3,"average":1.7}},"selectors":{"total":30,"type":0,"class":30,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".flex-lg-row",".flex-lg-row-reverse",".flex-lg-column",".flex-lg-wrap",".flex-lg-nowrap",".flex-lg-justify-start",".flex-lg-justify-end",".flex-lg-justify-center",".flex-lg-justify-between",".flex-lg-justify-around",".flex-lg-items-start",".flex-lg-items-end",".flex-lg-items-center",".flex-lg-items-baseline",".flex-lg-items-stretch",".flex-lg-content-start",".flex-lg-content-end",".flex-lg-content-center",".flex-lg-content-between",".flex-lg-content-around",".flex-lg-content-stretch",".flex-lg-auto",".flex-lg-shrink-0",".flex-lg-self-auto",".flex-lg-self-start",".flex-lg-self-end",".flex-lg-self-center",".flex-lg-self-baseline",".flex-lg-self-stretch",".flex-lg-item-equal"],"specificity":{"max":10,"average":10}},"declarations":{"total":51,"unique":48,"properties":{"-webkit-box-orient":["horizontal","horizontal","vertical"],"-webkit-box-direction":["normal","reverse","normal"],"flex-direction":["row","row-reverse","column"],"flex-wrap":["wrap","nowrap"],"-webkit-box-pack":["start","end","center","justify"],"justify-content":["flex-start","flex-end","center","space-between","space-around"],"-webkit-box-align":["start","end","center","baseline","stretch"],"align-items":["flex-start","flex-end","center","baseline","stretch"],"align-content":["flex-start","flex-end","center","space-between","space-around","stretch"],"-webkit-box-flex":["1","1"],"flex":["1 1 auto"],"flex-shrink":["0"],"-ms-grid-row-align":["auto","center","stretch"],"align-self":["auto","flex-start","flex-end","center","baseline","stretch"],"flex-grow":["1"],"flex-basis":["0"]}}},{"value":"(min-width: 1280px)","rules":{"total":30,"size":{"graph":[3,3,3,1,1,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,2,1,2,1,1,2,1,2,3],"max":3,"average":1.7}},"selectors":{"total":30,"type":0,"class":30,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".flex-xl-row",".flex-xl-row-reverse",".flex-xl-column",".flex-xl-wrap",".flex-xl-nowrap",".flex-xl-justify-start",".flex-xl-justify-end",".flex-xl-justify-center",".flex-xl-justify-between",".flex-xl-justify-around",".flex-xl-items-start",".flex-xl-items-end",".flex-xl-items-center",".flex-xl-items-baseline",".flex-xl-items-stretch",".flex-xl-content-start",".flex-xl-content-end",".flex-xl-content-center",".flex-xl-content-between",".flex-xl-content-around",".flex-xl-content-stretch",".flex-xl-auto",".flex-xl-shrink-0",".flex-xl-self-auto",".flex-xl-self-start",".flex-xl-self-end",".flex-xl-self-center",".flex-xl-self-baseline",".flex-xl-self-stretch",".flex-xl-item-equal"],"specificity":{"max":10,"average":10}},"declarations":{"total":51,"unique":48,"properties":{"-webkit-box-orient":["horizontal","horizontal","vertical"],"-webkit-box-direction":["normal","reverse","normal"],"flex-direction":["row","row-reverse","column"],"flex-wrap":["wrap","nowrap"],"-webkit-box-pack":["start","end","center","justify"],"justify-content":["flex-start","flex-end","center","space-between","space-around"],"-webkit-box-align":["start","end","center","baseline","stretch"],"align-items":["flex-start","flex-end","center","baseline","stretch"],"align-content":["flex-start","flex-end","center","space-between","space-around","stretch"],"-webkit-box-flex":["1","1"],"flex":["1 1 auto"],"flex-shrink":["0"],"-ms-grid-row-align":["auto","center","stretch"],"align-self":["auto","flex-start","flex-end","center","baseline","stretch"],"flex-grow":["1"],"flex-basis":["0"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,1],"max":1,"average":1}},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".float-sm-left",".float-sm-right",".float-sm-none"],"specificity":{"max":10,"average":10}},"declarations":{"total":3,"unique":3,"properties":{"float":["left","right","none"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,1],"max":1,"average":1}},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".float-md-left",".float-md-right",".float-md-none"],"specificity":{"max":10,"average":10}},"declarations":{"total":3,"unique":3,"properties":{"float":["left","right","none"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,1],"max":1,"average":1}},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".float-lg-left",".float-lg-right",".float-lg-none"],"specificity":{"max":10,"average":10}},"declarations":{"total":3,"unique":3,"properties":{"float":["left","right","none"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,1],"max":1,"average":1}},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".float-xl-left",".float-xl-right",".float-xl-none"],"specificity":{"max":10,"average":10}},"declarations":{"total":3,"unique":3,"properties":{"float":["left","right","none"]}}},{"value":"(min-width: 544px)","rules":{"total":2,"size":{"graph":[1,1],"max":1,"average":1}},"selectors":{"total":2,"type":0,"class":2,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".direction-sm-rtl",".direction-sm-ltr"],"specificity":{"max":10,"average":10}},"declarations":{"total":2,"unique":2,"properties":{"direction":["rtl","ltr"]}}},{"value":"(min-width: 768px)","rules":{"total":2,"size":{"graph":[1,1],"max":1,"average":1}},"selectors":{"total":2,"type":0,"class":2,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".direction-md-rtl",".direction-md-ltr"],"specificity":{"max":10,"average":10}},"declarations":{"total":2,"unique":2,"properties":{"direction":["rtl","ltr"]}}},{"value":"(min-width: 1012px)","rules":{"total":2,"size":{"graph":[1,1],"max":1,"average":1}},"selectors":{"total":2,"type":0,"class":2,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".direction-lg-rtl",".direction-lg-ltr"],"specificity":{"max":10,"average":10}},"declarations":{"total":2,"unique":2,"properties":{"direction":["rtl","ltr"]}}},{"value":"(min-width: 1280px)","rules":{"total":2,"size":{"graph":[1,1],"max":1,"average":1}},"selectors":{"total":2,"type":0,"class":2,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".direction-xl-rtl",".direction-xl-ltr"],"specificity":{"max":10,"average":10}},"declarations":{"total":2,"unique":2,"properties":{"direction":["rtl","ltr"]}}},{"value":"(min-width: 544px)","rules":{"total":11,"size":{"graph":[1,1,1,1,1,1,1,1,1,2,2],"max":2,"average":1.1818181818181819}},"selectors":{"total":11,"type":0,"class":11,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-sm-0",".mt-sm-0",".mr-sm-0",".mb-sm-0",".ml-sm-0",".mt-sm-n0",".mr-sm-n0",".mb-sm-n0",".ml-sm-n0",".mx-sm-0",".my-sm-0"],"specificity":{"max":10,"average":10}},"declarations":{"total":13,"unique":9,"properties":{"margin":["0"],"margin-top":["0","-0","0"],"margin-right":["0","-0","0"],"margin-bottom":["0","-0","0"],"margin-left":["0","-0","0"]}}},{"value":"(min-width: 544px)","rules":{"total":11,"size":{"graph":[1,1,1,1,1,1,1,1,1,2,2],"max":2,"average":1.1818181818181819}},"selectors":{"total":11,"type":0,"class":11,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-sm-1",".mt-sm-1",".mr-sm-1",".mb-sm-1",".ml-sm-1",".mt-sm-n1",".mr-sm-n1",".mb-sm-n1",".ml-sm-n1",".mx-sm-1",".my-sm-1"],"specificity":{"max":10,"average":10}},"declarations":{"total":13,"unique":9,"properties":{"margin":["4px"],"margin-top":["4px","-4px","4px"],"margin-right":["4px","-4px","4px"],"margin-bottom":["4px","-4px","4px"],"margin-left":["4px","-4px","4px"]}}},{"value":"(min-width: 544px)","rules":{"total":11,"size":{"graph":[1,1,1,1,1,1,1,1,1,2,2],"max":2,"average":1.1818181818181819}},"selectors":{"total":11,"type":0,"class":11,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-sm-2",".mt-sm-2",".mr-sm-2",".mb-sm-2",".ml-sm-2",".mt-sm-n2",".mr-sm-n2",".mb-sm-n2",".ml-sm-n2",".mx-sm-2",".my-sm-2"],"specificity":{"max":10,"average":10}},"declarations":{"total":13,"unique":9,"properties":{"margin":["8px"],"margin-top":["8px","-8px","8px"],"margin-right":["8px","-8px","8px"],"margin-bottom":["8px","-8px","8px"],"margin-left":["8px","-8px","8px"]}}},{"value":"(min-width: 544px)","rules":{"total":11,"size":{"graph":[1,1,1,1,1,1,1,1,1,2,2],"max":2,"average":1.1818181818181819}},"selectors":{"total":11,"type":0,"class":11,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-sm-3",".mt-sm-3",".mr-sm-3",".mb-sm-3",".ml-sm-3",".mt-sm-n3",".mr-sm-n3",".mb-sm-n3",".ml-sm-n3",".mx-sm-3",".my-sm-3"],"specificity":{"max":10,"average":10}},"declarations":{"total":13,"unique":9,"properties":{"margin":["16px"],"margin-top":["16px","-16px","16px"],"margin-right":["16px","-16px","16px"],"margin-bottom":["16px","-16px","16px"],"margin-left":["16px","-16px","16px"]}}},{"value":"(min-width: 544px)","rules":{"total":11,"size":{"graph":[1,1,1,1,1,1,1,1,1,2,2],"max":2,"average":1.1818181818181819}},"selectors":{"total":11,"type":0,"class":11,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-sm-4",".mt-sm-4",".mr-sm-4",".mb-sm-4",".ml-sm-4",".mt-sm-n4",".mr-sm-n4",".mb-sm-n4",".ml-sm-n4",".mx-sm-4",".my-sm-4"],"specificity":{"max":10,"average":10}},"declarations":{"total":13,"unique":9,"properties":{"margin":["24px"],"margin-top":["24px","-24px","24px"],"margin-right":["24px","-24px","24px"],"margin-bottom":["24px","-24px","24px"],"margin-left":["24px","-24px","24px"]}}},{"value":"(min-width: 544px)","rules":{"total":11,"size":{"graph":[1,1,1,1,1,1,1,1,1,2,2],"max":2,"average":1.1818181818181819}},"selectors":{"total":11,"type":0,"class":11,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-sm-5",".mt-sm-5",".mr-sm-5",".mb-sm-5",".ml-sm-5",".mt-sm-n5",".mr-sm-n5",".mb-sm-n5",".ml-sm-n5",".mx-sm-5",".my-sm-5"],"specificity":{"max":10,"average":10}},"declarations":{"total":13,"unique":9,"properties":{"margin":["32px"],"margin-top":["32px","-32px","32px"],"margin-right":["32px","-32px","32px"],"margin-bottom":["32px","-32px","32px"],"margin-left":["32px","-32px","32px"]}}},{"value":"(min-width: 544px)","rules":{"total":11,"size":{"graph":[1,1,1,1,1,1,1,1,1,2,2],"max":2,"average":1.1818181818181819}},"selectors":{"total":11,"type":0,"class":11,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-sm-6",".mt-sm-6",".mr-sm-6",".mb-sm-6",".ml-sm-6",".mt-sm-n6",".mr-sm-n6",".mb-sm-n6",".ml-sm-n6",".mx-sm-6",".my-sm-6"],"specificity":{"max":10,"average":10}},"declarations":{"total":13,"unique":9,"properties":{"margin":["40px"],"margin-top":["40px","-40px","40px"],"margin-right":["40px","-40px","40px"],"margin-bottom":["40px","-40px","40px"],"margin-left":["40px","-40px","40px"]}}},{"value":"(min-width: 768px)","rules":{"total":11,"size":{"graph":[1,1,1,1,1,1,1,1,1,2,2],"max":2,"average":1.1818181818181819}},"selectors":{"total":11,"type":0,"class":11,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-md-0",".mt-md-0",".mr-md-0",".mb-md-0",".ml-md-0",".mt-md-n0",".mr-md-n0",".mb-md-n0",".ml-md-n0",".mx-md-0",".my-md-0"],"specificity":{"max":10,"average":10}},"declarations":{"total":13,"unique":9,"properties":{"margin":["0"],"margin-top":["0","-0","0"],"margin-right":["0","-0","0"],"margin-bottom":["0","-0","0"],"margin-left":["0","-0","0"]}}},{"value":"(min-width: 768px)","rules":{"total":11,"size":{"graph":[1,1,1,1,1,1,1,1,1,2,2],"max":2,"average":1.1818181818181819}},"selectors":{"total":11,"type":0,"class":11,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-md-1",".mt-md-1",".mr-md-1",".mb-md-1",".ml-md-1",".mt-md-n1",".mr-md-n1",".mb-md-n1",".ml-md-n1",".mx-md-1",".my-md-1"],"specificity":{"max":10,"average":10}},"declarations":{"total":13,"unique":9,"properties":{"margin":["4px"],"margin-top":["4px","-4px","4px"],"margin-right":["4px","-4px","4px"],"margin-bottom":["4px","-4px","4px"],"margin-left":["4px","-4px","4px"]}}},{"value":"(min-width: 768px)","rules":{"total":11,"size":{"graph":[1,1,1,1,1,1,1,1,1,2,2],"max":2,"average":1.1818181818181819}},"selectors":{"total":11,"type":0,"class":11,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-md-2",".mt-md-2",".mr-md-2",".mb-md-2",".ml-md-2",".mt-md-n2",".mr-md-n2",".mb-md-n2",".ml-md-n2",".mx-md-2",".my-md-2"],"specificity":{"max":10,"average":10}},"declarations":{"total":13,"unique":9,"properties":{"margin":["8px"],"margin-top":["8px","-8px","8px"],"margin-right":["8px","-8px","8px"],"margin-bottom":["8px","-8px","8px"],"margin-left":["8px","-8px","8px"]}}},{"value":"(min-width: 768px)","rules":{"total":11,"size":{"graph":[1,1,1,1,1,1,1,1,1,2,2],"max":2,"average":1.1818181818181819}},"selectors":{"total":11,"type":0,"class":11,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-md-3",".mt-md-3",".mr-md-3",".mb-md-3",".ml-md-3",".mt-md-n3",".mr-md-n3",".mb-md-n3",".ml-md-n3",".mx-md-3",".my-md-3"],"specificity":{"max":10,"average":10}},"declarations":{"total":13,"unique":9,"properties":{"margin":["16px"],"margin-top":["16px","-16px","16px"],"margin-right":["16px","-16px","16px"],"margin-bottom":["16px","-16px","16px"],"margin-left":["16px","-16px","16px"]}}},{"value":"(min-width: 768px)","rules":{"total":11,"size":{"graph":[1,1,1,1,1,1,1,1,1,2,2],"max":2,"average":1.1818181818181819}},"selectors":{"total":11,"type":0,"class":11,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-md-4",".mt-md-4",".mr-md-4",".mb-md-4",".ml-md-4",".mt-md-n4",".mr-md-n4",".mb-md-n4",".ml-md-n4",".mx-md-4",".my-md-4"],"specificity":{"max":10,"average":10}},"declarations":{"total":13,"unique":9,"properties":{"margin":["24px"],"margin-top":["24px","-24px","24px"],"margin-right":["24px","-24px","24px"],"margin-bottom":["24px","-24px","24px"],"margin-left":["24px","-24px","24px"]}}},{"value":"(min-width: 768px)","rules":{"total":11,"size":{"graph":[1,1,1,1,1,1,1,1,1,2,2],"max":2,"average":1.1818181818181819}},"selectors":{"total":11,"type":0,"class":11,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-md-5",".mt-md-5",".mr-md-5",".mb-md-5",".ml-md-5",".mt-md-n5",".mr-md-n5",".mb-md-n5",".ml-md-n5",".mx-md-5",".my-md-5"],"specificity":{"max":10,"average":10}},"declarations":{"total":13,"unique":9,"properties":{"margin":["32px"],"margin-top":["32px","-32px","32px"],"margin-right":["32px","-32px","32px"],"margin-bottom":["32px","-32px","32px"],"margin-left":["32px","-32px","32px"]}}},{"value":"(min-width: 768px)","rules":{"total":11,"size":{"graph":[1,1,1,1,1,1,1,1,1,2,2],"max":2,"average":1.1818181818181819}},"selectors":{"total":11,"type":0,"class":11,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-md-6",".mt-md-6",".mr-md-6",".mb-md-6",".ml-md-6",".mt-md-n6",".mr-md-n6",".mb-md-n6",".ml-md-n6",".mx-md-6",".my-md-6"],"specificity":{"max":10,"average":10}},"declarations":{"total":13,"unique":9,"properties":{"margin":["40px"],"margin-top":["40px","-40px","40px"],"margin-right":["40px","-40px","40px"],"margin-bottom":["40px","-40px","40px"],"margin-left":["40px","-40px","40px"]}}},{"value":"(min-width: 1012px)","rules":{"total":11,"size":{"graph":[1,1,1,1,1,1,1,1,1,2,2],"max":2,"average":1.1818181818181819}},"selectors":{"total":11,"type":0,"class":11,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-lg-0",".mt-lg-0",".mr-lg-0",".mb-lg-0",".ml-lg-0",".mt-lg-n0",".mr-lg-n0",".mb-lg-n0",".ml-lg-n0",".mx-lg-0",".my-lg-0"],"specificity":{"max":10,"average":10}},"declarations":{"total":13,"unique":9,"properties":{"margin":["0"],"margin-top":["0","-0","0"],"margin-right":["0","-0","0"],"margin-bottom":["0","-0","0"],"margin-left":["0","-0","0"]}}},{"value":"(min-width: 1012px)","rules":{"total":11,"size":{"graph":[1,1,1,1,1,1,1,1,1,2,2],"max":2,"average":1.1818181818181819}},"selectors":{"total":11,"type":0,"class":11,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-lg-1",".mt-lg-1",".mr-lg-1",".mb-lg-1",".ml-lg-1",".mt-lg-n1",".mr-lg-n1",".mb-lg-n1",".ml-lg-n1",".mx-lg-1",".my-lg-1"],"specificity":{"max":10,"average":10}},"declarations":{"total":13,"unique":9,"properties":{"margin":["4px"],"margin-top":["4px","-4px","4px"],"margin-right":["4px","-4px","4px"],"margin-bottom":["4px","-4px","4px"],"margin-left":["4px","-4px","4px"]}}},{"value":"(min-width: 1012px)","rules":{"total":11,"size":{"graph":[1,1,1,1,1,1,1,1,1,2,2],"max":2,"average":1.1818181818181819}},"selectors":{"total":11,"type":0,"class":11,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-lg-2",".mt-lg-2",".mr-lg-2",".mb-lg-2",".ml-lg-2",".mt-lg-n2",".mr-lg-n2",".mb-lg-n2",".ml-lg-n2",".mx-lg-2",".my-lg-2"],"specificity":{"max":10,"average":10}},"declarations":{"total":13,"unique":9,"properties":{"margin":["8px"],"margin-top":["8px","-8px","8px"],"margin-right":["8px","-8px","8px"],"margin-bottom":["8px","-8px","8px"],"margin-left":["8px","-8px","8px"]}}},{"value":"(min-width: 1012px)","rules":{"total":11,"size":{"graph":[1,1,1,1,1,1,1,1,1,2,2],"max":2,"average":1.1818181818181819}},"selectors":{"total":11,"type":0,"class":11,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-lg-3",".mt-lg-3",".mr-lg-3",".mb-lg-3",".ml-lg-3",".mt-lg-n3",".mr-lg-n3",".mb-lg-n3",".ml-lg-n3",".mx-lg-3",".my-lg-3"],"specificity":{"max":10,"average":10}},"declarations":{"total":13,"unique":9,"properties":{"margin":["16px"],"margin-top":["16px","-16px","16px"],"margin-right":["16px","-16px","16px"],"margin-bottom":["16px","-16px","16px"],"margin-left":["16px","-16px","16px"]}}},{"value":"(min-width: 1012px)","rules":{"total":11,"size":{"graph":[1,1,1,1,1,1,1,1,1,2,2],"max":2,"average":1.1818181818181819}},"selectors":{"total":11,"type":0,"class":11,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-lg-4",".mt-lg-4",".mr-lg-4",".mb-lg-4",".ml-lg-4",".mt-lg-n4",".mr-lg-n4",".mb-lg-n4",".ml-lg-n4",".mx-lg-4",".my-lg-4"],"specificity":{"max":10,"average":10}},"declarations":{"total":13,"unique":9,"properties":{"margin":["24px"],"margin-top":["24px","-24px","24px"],"margin-right":["24px","-24px","24px"],"margin-bottom":["24px","-24px","24px"],"margin-left":["24px","-24px","24px"]}}},{"value":"(min-width: 1012px)","rules":{"total":11,"size":{"graph":[1,1,1,1,1,1,1,1,1,2,2],"max":2,"average":1.1818181818181819}},"selectors":{"total":11,"type":0,"class":11,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-lg-5",".mt-lg-5",".mr-lg-5",".mb-lg-5",".ml-lg-5",".mt-lg-n5",".mr-lg-n5",".mb-lg-n5",".ml-lg-n5",".mx-lg-5",".my-lg-5"],"specificity":{"max":10,"average":10}},"declarations":{"total":13,"unique":9,"properties":{"margin":["32px"],"margin-top":["32px","-32px","32px"],"margin-right":["32px","-32px","32px"],"margin-bottom":["32px","-32px","32px"],"margin-left":["32px","-32px","32px"]}}},{"value":"(min-width: 1012px)","rules":{"total":11,"size":{"graph":[1,1,1,1,1,1,1,1,1,2,2],"max":2,"average":1.1818181818181819}},"selectors":{"total":11,"type":0,"class":11,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-lg-6",".mt-lg-6",".mr-lg-6",".mb-lg-6",".ml-lg-6",".mt-lg-n6",".mr-lg-n6",".mb-lg-n6",".ml-lg-n6",".mx-lg-6",".my-lg-6"],"specificity":{"max":10,"average":10}},"declarations":{"total":13,"unique":9,"properties":{"margin":["40px"],"margin-top":["40px","-40px","40px"],"margin-right":["40px","-40px","40px"],"margin-bottom":["40px","-40px","40px"],"margin-left":["40px","-40px","40px"]}}},{"value":"(min-width: 1280px)","rules":{"total":11,"size":{"graph":[1,1,1,1,1,1,1,1,1,2,2],"max":2,"average":1.1818181818181819}},"selectors":{"total":11,"type":0,"class":11,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-xl-0",".mt-xl-0",".mr-xl-0",".mb-xl-0",".ml-xl-0",".mt-xl-n0",".mr-xl-n0",".mb-xl-n0",".ml-xl-n0",".mx-xl-0",".my-xl-0"],"specificity":{"max":10,"average":10}},"declarations":{"total":13,"unique":9,"properties":{"margin":["0"],"margin-top":["0","-0","0"],"margin-right":["0","-0","0"],"margin-bottom":["0","-0","0"],"margin-left":["0","-0","0"]}}},{"value":"(min-width: 1280px)","rules":{"total":11,"size":{"graph":[1,1,1,1,1,1,1,1,1,2,2],"max":2,"average":1.1818181818181819}},"selectors":{"total":11,"type":0,"class":11,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-xl-1",".mt-xl-1",".mr-xl-1",".mb-xl-1",".ml-xl-1",".mt-xl-n1",".mr-xl-n1",".mb-xl-n1",".ml-xl-n1",".mx-xl-1",".my-xl-1"],"specificity":{"max":10,"average":10}},"declarations":{"total":13,"unique":9,"properties":{"margin":["4px"],"margin-top":["4px","-4px","4px"],"margin-right":["4px","-4px","4px"],"margin-bottom":["4px","-4px","4px"],"margin-left":["4px","-4px","4px"]}}},{"value":"(min-width: 1280px)","rules":{"total":11,"size":{"graph":[1,1,1,1,1,1,1,1,1,2,2],"max":2,"average":1.1818181818181819}},"selectors":{"total":11,"type":0,"class":11,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-xl-2",".mt-xl-2",".mr-xl-2",".mb-xl-2",".ml-xl-2",".mt-xl-n2",".mr-xl-n2",".mb-xl-n2",".ml-xl-n2",".mx-xl-2",".my-xl-2"],"specificity":{"max":10,"average":10}},"declarations":{"total":13,"unique":9,"properties":{"margin":["8px"],"margin-top":["8px","-8px","8px"],"margin-right":["8px","-8px","8px"],"margin-bottom":["8px","-8px","8px"],"margin-left":["8px","-8px","8px"]}}},{"value":"(min-width: 1280px)","rules":{"total":11,"size":{"graph":[1,1,1,1,1,1,1,1,1,2,2],"max":2,"average":1.1818181818181819}},"selectors":{"total":11,"type":0,"class":11,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-xl-3",".mt-xl-3",".mr-xl-3",".mb-xl-3",".ml-xl-3",".mt-xl-n3",".mr-xl-n3",".mb-xl-n3",".ml-xl-n3",".mx-xl-3",".my-xl-3"],"specificity":{"max":10,"average":10}},"declarations":{"total":13,"unique":9,"properties":{"margin":["16px"],"margin-top":["16px","-16px","16px"],"margin-right":["16px","-16px","16px"],"margin-bottom":["16px","-16px","16px"],"margin-left":["16px","-16px","16px"]}}},{"value":"(min-width: 1280px)","rules":{"total":11,"size":{"graph":[1,1,1,1,1,1,1,1,1,2,2],"max":2,"average":1.1818181818181819}},"selectors":{"total":11,"type":0,"class":11,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-xl-4",".mt-xl-4",".mr-xl-4",".mb-xl-4",".ml-xl-4",".mt-xl-n4",".mr-xl-n4",".mb-xl-n4",".ml-xl-n4",".mx-xl-4",".my-xl-4"],"specificity":{"max":10,"average":10}},"declarations":{"total":13,"unique":9,"properties":{"margin":["24px"],"margin-top":["24px","-24px","24px"],"margin-right":["24px","-24px","24px"],"margin-bottom":["24px","-24px","24px"],"margin-left":["24px","-24px","24px"]}}},{"value":"(min-width: 1280px)","rules":{"total":11,"size":{"graph":[1,1,1,1,1,1,1,1,1,2,2],"max":2,"average":1.1818181818181819}},"selectors":{"total":11,"type":0,"class":11,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-xl-5",".mt-xl-5",".mr-xl-5",".mb-xl-5",".ml-xl-5",".mt-xl-n5",".mr-xl-n5",".mb-xl-n5",".ml-xl-n5",".mx-xl-5",".my-xl-5"],"specificity":{"max":10,"average":10}},"declarations":{"total":13,"unique":9,"properties":{"margin":["32px"],"margin-top":["32px","-32px","32px"],"margin-right":["32px","-32px","32px"],"margin-bottom":["32px","-32px","32px"],"margin-left":["32px","-32px","32px"]}}},{"value":"(min-width: 1280px)","rules":{"total":11,"size":{"graph":[1,1,1,1,1,1,1,1,1,2,2],"max":2,"average":1.1818181818181819}},"selectors":{"total":11,"type":0,"class":11,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".m-xl-6",".mt-xl-6",".mr-xl-6",".mb-xl-6",".ml-xl-6",".mt-xl-n6",".mr-xl-n6",".mb-xl-n6",".ml-xl-n6",".mx-xl-6",".my-xl-6"],"specificity":{"max":10,"average":10}},"declarations":{"total":13,"unique":9,"properties":{"margin":["40px"],"margin-top":["40px","-40px","40px"],"margin-right":["40px","-40px","40px"],"margin-bottom":["40px","-40px","40px"],"margin-left":["40px","-40px","40px"]}}},{"value":"(min-width: 544px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-sm-0",".pt-sm-0",".pr-sm-0",".pb-sm-0",".pl-sm-0",".px-sm-0",".py-sm-0"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["0"],"padding-top":["0","0"],"padding-right":["0","0"],"padding-bottom":["0","0"],"padding-left":["0","0"]}}},{"value":"(min-width: 544px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-sm-1",".pt-sm-1",".pr-sm-1",".pb-sm-1",".pl-sm-1",".px-sm-1",".py-sm-1"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["4px"],"padding-top":["4px","4px"],"padding-right":["4px","4px"],"padding-bottom":["4px","4px"],"padding-left":["4px","4px"]}}},{"value":"(min-width: 544px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-sm-2",".pt-sm-2",".pr-sm-2",".pb-sm-2",".pl-sm-2",".px-sm-2",".py-sm-2"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["8px"],"padding-top":["8px","8px"],"padding-right":["8px","8px"],"padding-bottom":["8px","8px"],"padding-left":["8px","8px"]}}},{"value":"(min-width: 544px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-sm-3",".pt-sm-3",".pr-sm-3",".pb-sm-3",".pl-sm-3",".px-sm-3",".py-sm-3"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["16px"],"padding-top":["16px","16px"],"padding-right":["16px","16px"],"padding-bottom":["16px","16px"],"padding-left":["16px","16px"]}}},{"value":"(min-width: 544px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-sm-4",".pt-sm-4",".pr-sm-4",".pb-sm-4",".pl-sm-4",".px-sm-4",".py-sm-4"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["24px"],"padding-top":["24px","24px"],"padding-right":["24px","24px"],"padding-bottom":["24px","24px"],"padding-left":["24px","24px"]}}},{"value":"(min-width: 544px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-sm-5",".pt-sm-5",".pr-sm-5",".pb-sm-5",".pl-sm-5",".px-sm-5",".py-sm-5"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["32px"],"padding-top":["32px","32px"],"padding-right":["32px","32px"],"padding-bottom":["32px","32px"],"padding-left":["32px","32px"]}}},{"value":"(min-width: 544px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-sm-6",".pt-sm-6",".pr-sm-6",".pb-sm-6",".pl-sm-6",".px-sm-6",".py-sm-6"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["40px"],"padding-top":["40px","40px"],"padding-right":["40px","40px"],"padding-bottom":["40px","40px"],"padding-left":["40px","40px"]}}},{"value":"(min-width: 768px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-md-0",".pt-md-0",".pr-md-0",".pb-md-0",".pl-md-0",".px-md-0",".py-md-0"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["0"],"padding-top":["0","0"],"padding-right":["0","0"],"padding-bottom":["0","0"],"padding-left":["0","0"]}}},{"value":"(min-width: 768px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-md-1",".pt-md-1",".pr-md-1",".pb-md-1",".pl-md-1",".px-md-1",".py-md-1"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["4px"],"padding-top":["4px","4px"],"padding-right":["4px","4px"],"padding-bottom":["4px","4px"],"padding-left":["4px","4px"]}}},{"value":"(min-width: 768px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-md-2",".pt-md-2",".pr-md-2",".pb-md-2",".pl-md-2",".px-md-2",".py-md-2"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["8px"],"padding-top":["8px","8px"],"padding-right":["8px","8px"],"padding-bottom":["8px","8px"],"padding-left":["8px","8px"]}}},{"value":"(min-width: 768px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-md-3",".pt-md-3",".pr-md-3",".pb-md-3",".pl-md-3",".px-md-3",".py-md-3"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["16px"],"padding-top":["16px","16px"],"padding-right":["16px","16px"],"padding-bottom":["16px","16px"],"padding-left":["16px","16px"]}}},{"value":"(min-width: 768px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-md-4",".pt-md-4",".pr-md-4",".pb-md-4",".pl-md-4",".px-md-4",".py-md-4"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["24px"],"padding-top":["24px","24px"],"padding-right":["24px","24px"],"padding-bottom":["24px","24px"],"padding-left":["24px","24px"]}}},{"value":"(min-width: 768px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-md-5",".pt-md-5",".pr-md-5",".pb-md-5",".pl-md-5",".px-md-5",".py-md-5"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["32px"],"padding-top":["32px","32px"],"padding-right":["32px","32px"],"padding-bottom":["32px","32px"],"padding-left":["32px","32px"]}}},{"value":"(min-width: 768px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-md-6",".pt-md-6",".pr-md-6",".pb-md-6",".pl-md-6",".px-md-6",".py-md-6"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["40px"],"padding-top":["40px","40px"],"padding-right":["40px","40px"],"padding-bottom":["40px","40px"],"padding-left":["40px","40px"]}}},{"value":"(min-width: 1012px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-lg-0",".pt-lg-0",".pr-lg-0",".pb-lg-0",".pl-lg-0",".px-lg-0",".py-lg-0"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["0"],"padding-top":["0","0"],"padding-right":["0","0"],"padding-bottom":["0","0"],"padding-left":["0","0"]}}},{"value":"(min-width: 1012px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-lg-1",".pt-lg-1",".pr-lg-1",".pb-lg-1",".pl-lg-1",".px-lg-1",".py-lg-1"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["4px"],"padding-top":["4px","4px"],"padding-right":["4px","4px"],"padding-bottom":["4px","4px"],"padding-left":["4px","4px"]}}},{"value":"(min-width: 1012px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-lg-2",".pt-lg-2",".pr-lg-2",".pb-lg-2",".pl-lg-2",".px-lg-2",".py-lg-2"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["8px"],"padding-top":["8px","8px"],"padding-right":["8px","8px"],"padding-bottom":["8px","8px"],"padding-left":["8px","8px"]}}},{"value":"(min-width: 1012px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-lg-3",".pt-lg-3",".pr-lg-3",".pb-lg-3",".pl-lg-3",".px-lg-3",".py-lg-3"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["16px"],"padding-top":["16px","16px"],"padding-right":["16px","16px"],"padding-bottom":["16px","16px"],"padding-left":["16px","16px"]}}},{"value":"(min-width: 1012px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-lg-4",".pt-lg-4",".pr-lg-4",".pb-lg-4",".pl-lg-4",".px-lg-4",".py-lg-4"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["24px"],"padding-top":["24px","24px"],"padding-right":["24px","24px"],"padding-bottom":["24px","24px"],"padding-left":["24px","24px"]}}},{"value":"(min-width: 1012px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-lg-5",".pt-lg-5",".pr-lg-5",".pb-lg-5",".pl-lg-5",".px-lg-5",".py-lg-5"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["32px"],"padding-top":["32px","32px"],"padding-right":["32px","32px"],"padding-bottom":["32px","32px"],"padding-left":["32px","32px"]}}},{"value":"(min-width: 1012px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-lg-6",".pt-lg-6",".pr-lg-6",".pb-lg-6",".pl-lg-6",".px-lg-6",".py-lg-6"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["40px"],"padding-top":["40px","40px"],"padding-right":["40px","40px"],"padding-bottom":["40px","40px"],"padding-left":["40px","40px"]}}},{"value":"(min-width: 1280px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-xl-0",".pt-xl-0",".pr-xl-0",".pb-xl-0",".pl-xl-0",".px-xl-0",".py-xl-0"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["0"],"padding-top":["0","0"],"padding-right":["0","0"],"padding-bottom":["0","0"],"padding-left":["0","0"]}}},{"value":"(min-width: 1280px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-xl-1",".pt-xl-1",".pr-xl-1",".pb-xl-1",".pl-xl-1",".px-xl-1",".py-xl-1"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["4px"],"padding-top":["4px","4px"],"padding-right":["4px","4px"],"padding-bottom":["4px","4px"],"padding-left":["4px","4px"]}}},{"value":"(min-width: 1280px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-xl-2",".pt-xl-2",".pr-xl-2",".pb-xl-2",".pl-xl-2",".px-xl-2",".py-xl-2"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["8px"],"padding-top":["8px","8px"],"padding-right":["8px","8px"],"padding-bottom":["8px","8px"],"padding-left":["8px","8px"]}}},{"value":"(min-width: 1280px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-xl-3",".pt-xl-3",".pr-xl-3",".pb-xl-3",".pl-xl-3",".px-xl-3",".py-xl-3"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["16px"],"padding-top":["16px","16px"],"padding-right":["16px","16px"],"padding-bottom":["16px","16px"],"padding-left":["16px","16px"]}}},{"value":"(min-width: 1280px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-xl-4",".pt-xl-4",".pr-xl-4",".pb-xl-4",".pl-xl-4",".px-xl-4",".py-xl-4"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["24px"],"padding-top":["24px","24px"],"padding-right":["24px","24px"],"padding-bottom":["24px","24px"],"padding-left":["24px","24px"]}}},{"value":"(min-width: 1280px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-xl-5",".pt-xl-5",".pr-xl-5",".pb-xl-5",".pl-xl-5",".px-xl-5",".py-xl-5"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["32px"],"padding-top":["32px","32px"],"padding-right":["32px","32px"],"padding-bottom":["32px","32px"],"padding-left":["32px","32px"]}}},{"value":"(min-width: 1280px)","rules":{"total":7,"size":{"graph":[1,1,1,1,1,2,2],"max":2,"average":1.2857142857142858}},"selectors":{"total":7,"type":0,"class":7,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".p-xl-6",".pt-xl-6",".pr-xl-6",".pb-xl-6",".pl-xl-6",".px-xl-6",".py-xl-6"],"specificity":{"max":10,"average":10}},"declarations":{"total":9,"unique":5,"properties":{"padding":["40px"],"padding-top":["40px","40px"],"padding-right":["40px","40px"],"padding-bottom":["40px","40px"],"padding-left":["40px","40px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1}},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".h1"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["32px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1}},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".h2"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["24px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1}},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".h3"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["20px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1}},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".h4"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["16px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1}},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".f1"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["32px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1}},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".f2"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["24px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1}},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".f3"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["20px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1}},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".f4"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["16px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1}},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".f00-light"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["48px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1}},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".f0-light"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["40px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1}},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".f1-light"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["32px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1}},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".f2-light"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["24px"]}}},{"value":"(min-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1}},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".f3-light"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"font-size":["20px"]}}},{"value":"(min-width: 544px)","rules":{"total":3,"size":{"graph":[1,1,1],"max":1,"average":1}},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".text-sm-right",".text-sm-left",".text-sm-center"],"specificity":{"max":10,"average":10}},"declarations":{"total":3,"unique":3,"properties":{"text-align":["right","left","center"]}}},{"value":"(min-width: 768px)","rules":{"total":3,"size":{"graph":[1,1,1],"max":1,"average":1}},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".text-md-right",".text-md-left",".text-md-center"],"specificity":{"max":10,"average":10}},"declarations":{"total":3,"unique":3,"properties":{"text-align":["right","left","center"]}}},{"value":"(min-width: 1012px)","rules":{"total":3,"size":{"graph":[1,1,1],"max":1,"average":1}},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".text-lg-right",".text-lg-left",".text-lg-center"],"specificity":{"max":10,"average":10}},"declarations":{"total":3,"unique":3,"properties":{"text-align":["right","left","center"]}}},{"value":"(min-width: 1280px)","rules":{"total":3,"size":{"graph":[1,1,1],"max":1,"average":1}},"selectors":{"total":3,"type":0,"class":3,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".text-xl-right",".text-xl-left",".text-xl-center"],"specificity":{"max":10,"average":10}},"declarations":{"total":3,"unique":3,"properties":{"text-align":["right","left","center"]}}},{"value":"(min-width: 544px)","rules":{"total":8,"size":{"graph":[1,1,1,1,1,2,2,1],"max":2,"average":1.25}},"selectors":{"total":8,"type":0,"class":8,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".d-sm-table",".d-sm-table-cell",".d-sm-block",".d-sm-inline",".d-sm-inline-block",".d-sm-flex",".d-sm-inline-flex",".d-sm-none"],"specificity":{"max":10,"average":10}},"declarations":{"total":10,"unique":10,"properties":{"display":["table","table-cell","block","inline","inline-block","-webkit-box","flex","-webkit-inline-box","inline-flex","none"]}}},{"value":"(min-width: 768px)","rules":{"total":8,"size":{"graph":[1,1,1,1,1,2,2,1],"max":2,"average":1.25}},"selectors":{"total":8,"type":0,"class":8,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".d-md-table",".d-md-table-cell",".d-md-block",".d-md-inline",".d-md-inline-block",".d-md-flex",".d-md-inline-flex",".d-md-none"],"specificity":{"max":10,"average":10}},"declarations":{"total":10,"unique":10,"properties":{"display":["table","table-cell","block","inline","inline-block","-webkit-box","flex","-webkit-inline-box","inline-flex","none"]}}},{"value":"(min-width: 1012px)","rules":{"total":8,"size":{"graph":[1,1,1,1,1,2,2,1],"max":2,"average":1.25}},"selectors":{"total":8,"type":0,"class":8,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".d-lg-table",".d-lg-table-cell",".d-lg-block",".d-lg-inline",".d-lg-inline-block",".d-lg-flex",".d-lg-inline-flex",".d-lg-none"],"specificity":{"max":10,"average":10}},"declarations":{"total":10,"unique":10,"properties":{"display":["table","table-cell","block","inline","inline-block","-webkit-box","flex","-webkit-inline-box","inline-flex","none"]}}},{"value":"(min-width: 1280px)","rules":{"total":8,"size":{"graph":[1,1,1,1,1,2,2,1],"max":2,"average":1.25}},"selectors":{"total":8,"type":0,"class":8,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".d-xl-table",".d-xl-table-cell",".d-xl-block",".d-xl-inline",".d-xl-inline-block",".d-xl-flex",".d-xl-inline-flex",".d-xl-none"],"specificity":{"max":10,"average":10}},"declarations":{"total":10,"unique":10,"properties":{"display":["table","table-cell","block","inline","inline-block","-webkit-box","flex","-webkit-inline-box","inline-flex","none"]}}},{"value":"(max-width: 544px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1}},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".hide-sm"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"display":["none"]}}},{"value":"(min-width: 544px) and (max-width: 768px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1}},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".hide-md"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"display":["none"]}}},{"value":"(min-width: 768px) and (max-width: 1012px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1}},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".hide-lg"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"display":["none"]}}},{"value":"(min-width: 1012px)","rules":{"total":1,"size":{"graph":[1],"max":1,"average":1}},"selectors":{"total":1,"type":0,"class":1,"id":0,"pseudoClass":0,"pseudoElement":0,"values":[".hide-xl"],"specificity":{"max":10,"average":10}},"declarations":{"total":1,"unique":1,"properties":{"display":["none"]}}}]}}}
         
     | 
| 
         @@ -1,9 +1,13 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            @import "primer-support/index.scss";
         
     | 
| 
       2 
2 
     | 
    
         
             
            // utilities
         
     | 
| 
       3 
3 
     | 
    
         
             
            @import "./lib/animations.scss";
         
     | 
| 
       4 
     | 
    
         
            -
            @import "./lib/ 
     | 
| 
      
 4 
     | 
    
         
            +
            @import "./lib/borders.scss";
         
     | 
| 
      
 5 
     | 
    
         
            +
            @import "./lib/box-shadow.scss";
         
     | 
| 
       5 
6 
     | 
    
         
             
            @import "./lib/colors.scss";
         
     | 
| 
      
 7 
     | 
    
         
            +
            @import "./lib/flexbox.scss";
         
     | 
| 
       6 
8 
     | 
    
         
             
            @import "./lib/layout.scss";
         
     | 
| 
       7 
9 
     | 
    
         
             
            @import "./lib/margin.scss";
         
     | 
| 
       8 
10 
     | 
    
         
             
            @import "./lib/padding.scss";
         
     | 
| 
       9 
11 
     | 
    
         
             
            @import "./lib/typography.scss";
         
     | 
| 
      
 12 
     | 
    
         
            +
            // Visibility and display should always come last in the imports so that they override other utilities with !important
         
     | 
| 
      
 13 
     | 
    
         
            +
            @import "./lib/visibility-display.scss";
         
     | 
| 
         @@ -1,5 +1,5 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            // This file contains reusable animations for github.
         
     | 
| 
       2 
     | 
    
         
            -
             
     | 
| 
      
 2 
     | 
    
         
            +
            // stylelint-disable primer/selector-no-utility
         
     | 
| 
       3 
3 
     | 
    
         
             
            // Fade in
         
     | 
| 
       4 
4 
     | 
    
         
             
            // A class to fade in an element on the page.
         
     | 
| 
       5 
5 
     | 
    
         
             
            .anim-fade-in {
         
     | 
| 
         @@ -22,8 +22,7 @@ 
     | 
|
| 
       22 
22 
     | 
    
         
             
              }
         
     | 
| 
       23 
23 
     | 
    
         
             
            }
         
     | 
| 
       24 
24 
     | 
    
         | 
| 
       25 
     | 
    
         
            -
             
     | 
| 
       26 
     | 
    
         
            -
            // A class that will fade in and slide up an element
         
     | 
| 
      
 25 
     | 
    
         
            +
            /* Fade in and slide up an element */
         
     | 
| 
       27 
26 
     | 
    
         
             
            .anim-fade-up {
         
     | 
| 
       28 
27 
     | 
    
         
             
              opacity: 0;
         
     | 
| 
       29 
28 
     | 
    
         
             
              animation-name: fade-up;
         
     | 
| 
         @@ -45,8 +44,7 @@ 
     | 
|
| 
       45 
44 
     | 
    
         
             
              }
         
     | 
| 
       46 
45 
     | 
    
         
             
            }
         
     | 
| 
       47 
46 
     | 
    
         | 
| 
       48 
     | 
    
         
            -
             
     | 
| 
       49 
     | 
    
         
            -
            // A class that will fade an element out and slide down.
         
     | 
| 
      
 47 
     | 
    
         
            +
            /* Fade an element out and slide down */
         
     | 
| 
       50 
48 
     | 
    
         
             
            .anim-fade-down {
         
     | 
| 
       51 
49 
     | 
    
         
             
              animation-name: fade-down;
         
     | 
| 
       52 
50 
     | 
    
         
             
              animation-duration: 0.3s;
         
     | 
| 
         @@ -66,8 +64,7 @@ 
     | 
|
| 
       66 
64 
     | 
    
         
             
              }
         
     | 
| 
       67 
65 
     | 
    
         
             
            }
         
     | 
| 
       68 
66 
     | 
    
         | 
| 
       69 
     | 
    
         
            -
             
     | 
| 
       70 
     | 
    
         
            -
            // A class that will grow an element width from 0 to 100%
         
     | 
| 
      
 67 
     | 
    
         
            +
            /* Grow an element width from 0 to 100% */
         
     | 
| 
       71 
68 
     | 
    
         
             
            .anim-grow-x {
         
     | 
| 
       72 
69 
     | 
    
         
             
              width: 0%;
         
     | 
| 
       73 
70 
     | 
    
         
             
              animation-name: grow-x;
         
     | 
| 
         @@ -81,8 +78,7 @@ 
     | 
|
| 
       81 
78 
     | 
    
         
             
              to { width: 100%; }
         
     | 
| 
       82 
79 
     | 
    
         
             
            }
         
     | 
| 
       83 
80 
     | 
    
         | 
| 
       84 
     | 
    
         
            -
             
     | 
| 
       85 
     | 
    
         
            -
            // A class that will shrink an element from 100% to 0%
         
     | 
| 
      
 81 
     | 
    
         
            +
            /* Shrink an element from 100% to 0% */
         
     | 
| 
       86 
82 
     | 
    
         
             
            .anim-shrink-x {
         
     | 
| 
       87 
83 
     | 
    
         
             
              animation-name: shrink-x;
         
     | 
| 
       88 
84 
     | 
    
         
             
              animation-duration: 0.3s;
         
     | 
| 
         @@ -95,8 +91,7 @@ 
     | 
|
| 
       95 
91 
     | 
    
         
             
              to { width: 0%; }
         
     | 
| 
       96 
92 
     | 
    
         
             
            }
         
     | 
| 
       97 
93 
     | 
    
         | 
| 
       98 
     | 
    
         
            -
             
     | 
| 
       99 
     | 
    
         
            -
            // A class to fade in an element and scale it fast
         
     | 
| 
      
 94 
     | 
    
         
            +
            /* Fade in an element and scale it fast */
         
     | 
| 
       100 
95 
     | 
    
         
             
            .anim-scale-in {
         
     | 
| 
       101 
96 
     | 
    
         
             
              animation-name: scale-in;
         
     | 
| 
       102 
97 
     | 
    
         
             
              animation-duration: 0.15s;
         
     | 
| 
         @@ -115,6 +110,7 @@ 
     | 
|
| 
       115 
110 
     | 
    
         
             
              }
         
     | 
| 
       116 
111 
     | 
    
         
             
            }
         
     | 
| 
       117 
112 
     | 
    
         | 
| 
      
 113 
     | 
    
         
            +
            /* Pulse an element's opacity */
         
     | 
| 
       118 
114 
     | 
    
         
             
            .anim-pulse {
         
     | 
| 
       119 
115 
     | 
    
         
             
              animation-name: pulse;
         
     | 
| 
       120 
116 
     | 
    
         
             
              animation-duration: 2s;
         
     | 
| 
         @@ -136,6 +132,7 @@ 
     | 
|
| 
       136 
132 
     | 
    
         
             
              }
         
     | 
| 
       137 
133 
     | 
    
         
             
            }
         
     | 
| 
       138 
134 
     | 
    
         | 
| 
      
 135 
     | 
    
         
            +
            /* Pulse in an element */
         
     | 
| 
       139 
136 
     | 
    
         
             
            .anim-pulse-in {
         
     | 
| 
       140 
137 
     | 
    
         
             
              animation-name: pulse-in;
         
     | 
| 
       141 
138 
     | 
    
         
             
              animation-duration: 0.5s;
         
     |