Give – Donation Plugin and Fundraising Platform - Version 2.6.0

Version Description

Download this release

Release Info

Developer dlocc
Plugin Icon 128x128 Give – Donation Plugin and Fundraising Platform
Version 2.6.0
Comparing to
See all releases

Code changes from version 2.5.13 to 2.6.0

.eslintrc.json DELETED
@@ -1,175 +0,0 @@
1
- {
2
- "root": true,
3
- "parser": "babel-eslint",
4
- "extends": ["wordpress", "plugin:react/recommended"],
5
- "env": {
6
- "browser": false,
7
- "es6": true,
8
- "node": true,
9
- "mocha": true
10
- },
11
- "parserOptions": {
12
- "sourceType": "module",
13
- "ecmaFeatures": {
14
- "jsx": true
15
- }
16
- },
17
- "globals": {
18
- "wp": true,
19
- "wpApiSettings": true,
20
- "window": true,
21
- "document": true,
22
- "giveApiSettings": true
23
- },
24
- "plugins": ["react"],
25
- "settings": {
26
- "react": {
27
- "pragma": "wp"
28
- }
29
- },
30
- "rules": {
31
- "linebreak-style": 0,
32
- "array-bracket-spacing": ["error", "always"],
33
- "brace-style": ["error", "1tbs"],
34
- "camelcase": ["error", {"properties": "never"}],
35
- "comma-dangle": ["error", "always-multiline"],
36
- "comma-spacing": "error",
37
- "comma-style": "error",
38
- "computed-property-spacing": ["error", "always"],
39
- "constructor-super": "error",
40
- "dot-notation": "error",
41
- "eol-last": "error",
42
- "eqeqeq": "error",
43
- "func-call-spacing": "error",
44
- "indent": ["error", "tab", {"SwitchCase": 1}],
45
- "jsx-quotes": "error",
46
- "key-spacing": "error",
47
- "keyword-spacing": "error",
48
- "lines-around-comment": "off",
49
- "no-alert": "error",
50
- "no-bitwise": "error",
51
- "no-caller": "error",
52
- "no-console": "error",
53
- "no-const-assign": "error",
54
- "no-debugger": "error",
55
- "no-dupe-args": "error",
56
- "no-dupe-class-members": "error",
57
- "no-dupe-keys": "error",
58
- "no-duplicate-case": "error",
59
- "no-duplicate-imports": "error",
60
- "no-else-return": "error",
61
- "no-eval": "error",
62
- "no-extra-semi": "error",
63
- "no-fallthrough": "error",
64
- "no-lonely-if": "error",
65
- "no-mixed-operators": "error",
66
- "no-mixed-spaces-and-tabs": "error",
67
- "no-multiple-empty-lines": ["error", {"max": 1}],
68
- "no-multi-spaces": "error",
69
- "no-multi-str": "off",
70
- "no-negated-in-lhs": "error",
71
- "no-nested-ternary": "error",
72
- "no-redeclare": "error",
73
- "no-restricted-syntax": [
74
- "error",
75
- {
76
- "selector": "ImportDeclaration[source.value=/^@wordpress\\u002F.+\\u002F/]",
77
- "message": "Path access on WordPress dependencies is not allowed."
78
- },
79
- {
80
- "selector": "ImportDeclaration[source.value=/^blocks$/]",
81
- "message": "Use @wordpress/blocks as import path instead."
82
- },
83
- {
84
- "selector": "ImportDeclaration[source.value=/^components$/]",
85
- "message": "Use @wordpress/components as import path instead."
86
- },
87
- {
88
- "selector": "ImportDeclaration[source.value=/^date$/]",
89
- "message": "Use @wordpress/date as import path instead."
90
- },
91
- {
92
- "selector": "ImportDeclaration[source.value=/^editor$/]",
93
- "message": "Use @wordpress/editor as import path instead."
94
- },
95
- {
96
- "selector": "ImportDeclaration[source.value=/^element$/]",
97
- "message": "Use @wordpress/element as import path instead."
98
- },
99
- {
100
- "selector": "ImportDeclaration[source.value=/^i18n$/]",
101
- "message": "Use @wordpress/i18n as import path instead."
102
- },
103
- {
104
- "selector": "ImportDeclaration[source.value=/^data$/]",
105
- "message": "Use @wordpress/data as import path instead."
106
- },
107
- {
108
- "selector": "ImportDeclaration[source.value=/^utils$/]",
109
- "message": "Use @wordpress/utils as import path instead."
110
- },
111
- {
112
- "selector": "CallExpression[callee.name=/^__|_n|_x$/]:not([arguments.0.type=/^Literal|BinaryExpression$/])",
113
- "message": "Translate function arguments must be string literals."
114
- },
115
- {
116
- "selector": "CallExpression[callee.name=/^_n|_x$/]:not([arguments.1.type=/^Literal|BinaryExpression$/])",
117
- "message": "Translate function arguments must be string literals."
118
- },
119
- {
120
- "selector": "CallExpression[callee.name=_nx]:not([arguments.2.type=/^Literal|BinaryExpression$/])",
121
- "message": "Translate function arguments must be string literals."
122
- }
123
- ],
124
- "no-shadow": "error",
125
- "no-undef": "error",
126
- "no-undef-init": "error",
127
- "no-unreachable": "error",
128
- "no-unsafe-negation": "error",
129
- "no-unused-expressions": "error",
130
- "no-unused-vars": "error",
131
- "no-useless-computed-key": "error",
132
- "no-useless-constructor": "error",
133
- "no-useless-return": "error",
134
- "no-var": "error",
135
- "no-whitespace-before-property": "error",
136
- "object-curly-spacing": ["error", "always"],
137
- "padded-blocks": ["error", "never"],
138
- "prefer-const": "error",
139
- "quote-props": ["error", "as-needed"],
140
- "react/display-name": "off",
141
- "react/jsx-curly-spacing": [
142
- "error",
143
- {
144
- "when": "always",
145
- "children": true
146
- }
147
- ],
148
- "react/jsx-equals-spacing": "error",
149
- "react/jsx-indent": ["error", "tab"],
150
- "react/jsx-indent-props": ["error", "tab"],
151
- "react/jsx-key": "error",
152
- "react/jsx-tag-spacing": "error",
153
- "react/no-children-prop": "off",
154
- "react/no-find-dom-node": "warn",
155
- "react/prop-types": "off",
156
- "semi": "error",
157
- "semi-spacing": "error",
158
- "space-before-blocks": ["error", "always"],
159
- "space-before-function-paren": ["error", "never"],
160
- "space-in-parens": ["error", "always"],
161
- "space-infix-ops": ["error", {"int32Hint": false}],
162
- "space-unary-ops": [
163
- "error",
164
- {
165
- "overrides": {
166
- "!": true
167
- }
168
- }
169
- ],
170
- "template-curly-spacing": ["error", "always"],
171
- "valid-jsdoc": ["error", {"requireReturn": false}],
172
- "valid-typeof": "error",
173
- "yoda": "off"
174
- }
175
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
.huskyrc.json DELETED
@@ -1,5 +0,0 @@
1
- {
2
- "hooks": {
3
- "pre-commit": "lint-staged"
4
- }
5
- }
 
 
 
 
 
.lintstagedrc.json DELETED
@@ -1,6 +0,0 @@
1
- {
2
- "*.json": ["prettier --write", "git add"],
3
- "*.php": ["npm run lint:textdomain", "./vendor/bin/phpcbf --standard=WordPress", "git add"],
4
- "*.{js,jsx}": ["eslint --fix", "git add"],
5
- "*.scss": ["stylelint --fix", "git add"]
6
- }
 
 
 
 
 
 
.prettierignore DELETED
@@ -1,13 +0,0 @@
1
- # Ignore node modules
2
- node_modules/*
3
-
4
- # Ignore Composer packages
5
- vendor/*
6
-
7
- # Ignore Directories
8
- sample-data/*
9
-
10
- # Ignore Files
11
- phpcs.xml
12
- package-lock.json
13
- composer.lock
 
 
 
 
 
 
 
 
 
 
 
 
 
.prettierrc.json DELETED
@@ -1,7 +0,0 @@
1
- {
2
- "tabWidth": 4,
3
- "trailingComma": "es5",
4
- "printWidth": 120,
5
- "bracketSpacing": false,
6
- "singleQuote": true
7
- }
 
 
 
 
 
 
 
.stylelintrc.json DELETED
@@ -1,4 +0,0 @@
1
- {
2
- "extends": ["stylelint-config-wordpress", "stylelint-prettier/recommended"],
3
- "rules": {}
4
- }
 
 
 
 
assets/dist/css/admin-reports-widget.css ADDED
@@ -0,0 +1 @@
 
1
+ .givewp-reports-widget-container{position:relative;height:auto;width:100%}#givewp_reports_widget{background:#f9f9f9}#givewp_reports_widget .inside{margin-top:0}a.givewp-reports-link{float:right;height:100%;font-size:14px;text-decoration:none!important;margin:0}.givewp-grid{display:grid;grid-template-columns:repeat(12,1fr)}.givewp-card{background:#fff;border-radius:5px;box-shadow:0 3px 6px rgba(68,68,68,.05),0 3px 6px rgba(68,68,68,.05);display:flex;flex-direction:column}.givewp-card>.title{font-weight:900;padding:16px;font-size:15px}.givewp-card>.content{padding:0;flex:1;display:flex;position:relative;flex-direction:column}@media (max-width:768px){.givewp-card{grid-column:span 12!important}}.givewp-chart-title>.givewp-chart-title-text{font-weight:600;font-size:15px;white-space:nowrap}.givewp-chart-canvas{border-radius:5px;overflow:hidden}#givewp-chartjs-tooltip{min-width:106px;text-align:center;border-radius:3px;overflow:hidden;display:flex;flex-direction:column;transform:translate(-50%)}#givewp-chartjs-tooltip .givewp-tooltip-header{background:#666;padding:8px 12px;color:#fff;font-size:15px;border-radius:3px 3px 0 0}#givewp-chartjs-tooltip .givewp-tooltip-body{padding:8px 12px;color:#e4e4e4;font-size:12px;background:#555;border-radius:0 0 3px 3px}#givewp-chartjs-tooltip .givewp-tooltip-caret{height:14px;width:20px;margin:0 auto;transform:translate3d(0,-1px,0);background:#555;clip-path:polygon(50% 100%,0 0,100% 0)}.givewp-legend{display:flex;flex-direction:column}.givewp-legend>.item{display:flex;min-height:40px;height:auto;font-size:12px;cursor:pointer}.givewp-legend>.item:nth-of-type(2n){background:#f4f4f4}.givewp-legend>.item.inactive{opacity:.3}.givewp-legend>.item>.bar{width:8px;background:#e5e5e5}.givewp-legend>.item>.label{flex:1;margin:14px 8px;font-weight:500}.givewp-legend>.item>.data{margin:14px 8px;width:76px}.givewp-legend>.item>.percent{margin:14px 16px 14px 8px}.givewp-spinner{display:inline-block;width:34px;height:18px}.givewp-spinner:after{content:" ";display:block;width:18px;height:18px;margin:0 8px;border-radius:50%;border-color:#66bb6a transparent;border-style:solid;border-width:3px;animation:givewp-spinner 1.2s linear infinite}@keyframes givewp-spinner{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.givewp-tooltip{min-width:106px;text-align:center;border-radius:3px;overflow:hidden;display:flex;flex-direction:column;transform:translate(-50%,-100%);position:absolute;font-weight:500;top:0;left:0}.givewp-tooltip .givewp-tooltip__header{background:#666;padding:8px 12px;color:#fff;font-size:15px;border-radius:3px 3px 0 0}.givewp-tooltip .givewp-tooltip__body{padding:8px 12px;color:#e4e4e4;font-size:12px;background:#555;border-radius:0 0 3px 3px}.givewp-tooltip .givewp-tooltip__caret{height:14px;width:20px;margin:0 auto;transform:translate3d(0,-1px,0);background:#555;clip-path:polygon(50% 100%,0 0,100% 0)}.givewp-mini-chart{height:100%;width:calc(100% - 32px);padding:16px 0 16px 16px;display:flex;flex-direction:column;justify-content:space-evenly}.givewp-mini-chart>.header{display:flex;align-items:center;justify-content:space-between;padding-bottom:8px}.givewp-mini-chart>.header>.title{text-transform:uppercase;font-weight:600;font-size:12px;color:#82878c}.givewp-mini-chart>.header>.indicator{display:flex;align-items:center;font-size:14px;font-weight:600;cursor:default}.givewp-mini-chart>.header>.indicator>svg{margin-right:4px}.givewp-mini-chart>.content{display:flex;align-items:center;justify-content:space-between}.givewp-mini-chart>.content>.amount{font-weight:600;font-size:25px}.givewp-mini-chart>.content>.chart{width:35%;transform:translateY(-4px)}.givewp-mini-chart>.content.stacked{flex-direction:column-reverse}.givewp-mini-chart>.content.stacked>.chart{width:75%;transform:translateY(0);margin-bottom:16px}.givewp-chart-title{display:flex;align-items:center;justify-content:space-between;font-weight:600;padding:16px;font-size:15px}.givewp-chart-canvas{display:flex;flex:1;align-items:center;background:#f4f4f4}.givewp-chart-canvas canvas{position:relative}#givewp-mini-chartjs-tooltip{min-width:106px;text-align:center;border-radius:3px;overflow:hidden;display:flex;flex-direction:column;transform:translate(-50%)}#givewp-mini-chartjs-tooltip .givewp-mini-tooltip-header{background:#666;padding:8px 12px;color:#fff;font-size:15px;border-radius:3px 3px 0 0}#givewp-mini-chartjs-tooltip .givewp-mini-tooltip-body{padding:8px 12px;color:#e4e4e4;font-size:12px;background:#555;border-radius:0 0 3px 3px}#givewp-mini-chartjs-tooltip .givewp-mini-tooltip-caret{height:14px;width:20px;margin:0 auto;transform:translate3d(0,-1px,0);background:#555;clip-path:polygon(50% 100%,0 0,100% 0)}.givewp-loading-overlay{justify-content:center;background:hsla(0,0%,100%,.8);z-index:899;pointer-events:none;border-radius:5px;overflow:hidden}.givewp-loading-overlay,.givewp-not-found-notice{display:flex;align-items:center;position:absolute;height:100%;width:100%}.givewp-not-found-notice{z-index:999;flex-direction:column;justify-content:flex-start;font-weight:500;background:hsla(0,0%,93.3%,.7)}.givewp-not-found-notice .givewp-not-found-card{padding:1.5em 3em;box-shadow:0 3px 6px rgba(68,68,68,.05),0 3px 6px rgba(68,68,68,.05);display:flex;flex-direction:column;align-items:center;text-align:center;border-radius:5px;overflow:hidden;margin-top:180px;background:#fff;width:22em}.givewp-not-found-notice .givewp-not-found-card h2{font-size:20px;margin-bottom:18px;font-weight:500;line-height:1.2}.givewp-not-found-notice .givewp-not-found-card p{font-size:13px;font-weight:400;margin:0}.givewp-not-found-notice .givewp-not-found-card>button{cursor:pointer;background:#66bb6a;border-radius:5px;color:#fff;display:inline-block;margin-top:28px;margin-bottom:15px;padding:12px 28px;text-decoration:none;border:solid #407543;border-width:1px 1px 3px;font-size:13px;font-weight:400}.givewp-not-found-notice .givewp-not-found-card>button:hover{background:#5aa55e}.givewp-not-found-notice .givewp-not-found-card>button:focus{outline:none;box-shadow:none;border-color:#407543}.givewp-loading-notice{height:auto;width:100%;display:flex;flex-direction:column;align-items:center;justify-content:flex-start;font-weight:500}.givewp-loading-notice .givewp-loading-notice__card{box-shadow:0 3px 6px rgba(68,68,68,.05),0 3px 6px rgba(68,68,68,.05);display:flex;flex-direction:column;align-items:center;text-align:center;border-radius:5px;overflow:hidden;margin-top:100px;margin-bottom:120px;background:#fff;width:18em;padding:2.5em 3em 1.5em}.givewp-loading-notice .givewp-loading-notice__card h2{font-size:20px;margin-bottom:18px;font-weight:500;line-height:1.2}.givewp-loading-notice .givewp-loading-notice__card p{font-size:13px;font-weight:400;margin:0}.givewp-mini-period-selector{float:right;display:flex;align-items:center}.givewp-mini-period-selector>.group{margin-left:16px;display:flex}.givewp-mini-period-selector>.group>button{background:#f7f7f7;height:32px;display:flex;align-items:center;justify-content:center;border-radius:0;border:1px solid #ddd;border-width:1px 1px 3px 0;padding:0 16px;font-size:14px;font-weight:400;cursor:pointer;margin:0}.givewp-mini-period-selector>.group>button:first-of-type{border-radius:3px 0 0 3px;border-width:1px 1px 3px}.givewp-mini-period-selector>.group>button:last-of-type{border-radius:0 3px 3px 0;border-width:1px 1px 3px 0}.givewp-mini-period-selector>.group>button.selected{background:#ddd}.givewp-mini-period-selector>.group>button:focus{outline:none;box-shadow:none;border-color:#ddd}
assets/dist/css/admin-reports-widget.rtl.css ADDED
@@ -0,0 +1 @@
 
1
+ .givewp-reports-widget-container{position:relative;height:auto;width:100%}#givewp_reports_widget{background:#f9f9f9}#givewp_reports_widget .inside{margin-top:0}a.givewp-reports-link{float:left;height:100%;font-size:14px;text-decoration:none!important;margin:0}.givewp-grid{display:grid;grid-template-columns:repeat(12,1fr)}.givewp-card{background:#fff;border-radius:5px;box-shadow:0 3px 6px rgba(68,68,68,.05),0 3px 6px rgba(68,68,68,.05);display:flex;flex-direction:column}.givewp-card>.title{font-weight:900;padding:16px;font-size:15px}.givewp-card>.content{padding:0;flex:1;display:flex;position:relative;flex-direction:column}@media (max-width:768px){.givewp-card{grid-column:span 12!important}}.givewp-chart-title>.givewp-chart-title-text{font-weight:600;font-size:15px;white-space:nowrap}.givewp-chart-canvas{border-radius:5px;overflow:hidden}#givewp-chartjs-tooltip{min-width:106px;text-align:center;border-radius:3px;overflow:hidden;display:flex;flex-direction:column;transform:translate(50%)}#givewp-chartjs-tooltip .givewp-tooltip-header{background:#666;padding:8px 12px;color:#fff;font-size:15px;border-radius:3px 3px 0 0}#givewp-chartjs-tooltip .givewp-tooltip-body{padding:8px 12px;color:#e4e4e4;font-size:12px;background:#555;border-radius:0 0 3px 3px}#givewp-chartjs-tooltip .givewp-tooltip-caret{height:14px;width:20px;margin:0 auto;transform:translate3d(0,-1px,0);background:#555;clip-path:polygon(50% 100%,0 0,100% 0)}.givewp-legend{display:flex;flex-direction:column}.givewp-legend>.item{display:flex;min-height:40px;height:auto;font-size:12px;cursor:pointer}.givewp-legend>.item:nth-of-type(2n){background:#f4f4f4}.givewp-legend>.item.inactive{opacity:.3}.givewp-legend>.item>.bar{width:8px;background:#e5e5e5}.givewp-legend>.item>.label{flex:1;margin:14px 8px;font-weight:500}.givewp-legend>.item>.data{margin:14px 8px;width:76px}.givewp-legend>.item>.percent{margin:14px 8px 14px 16px}.givewp-spinner{display:inline-block;width:34px;height:18px}.givewp-spinner:after{content:" ";display:block;width:18px;height:18px;margin:0 8px;border-radius:50%;border-color:#66bb6a transparent;border-style:solid;border-width:3px;animation:givewp-spinner 1.2s linear infinite}@keyframes givewp-spinner{0%{transform:rotate(0deg)}to{transform:rotate(-1turn)}}.givewp-tooltip{min-width:106px;text-align:center;border-radius:3px;overflow:hidden;display:flex;flex-direction:column;transform:translate(50%,-100%);position:absolute;font-weight:500;top:0;right:0}.givewp-tooltip .givewp-tooltip__header{background:#666;padding:8px 12px;color:#fff;font-size:15px;border-radius:3px 3px 0 0}.givewp-tooltip .givewp-tooltip__body{padding:8px 12px;color:#e4e4e4;font-size:12px;background:#555;border-radius:0 0 3px 3px}.givewp-tooltip .givewp-tooltip__caret{height:14px;width:20px;margin:0 auto;transform:translate3d(0,-1px,0);background:#555;clip-path:polygon(50% 100%,0 0,100% 0)}.givewp-mini-chart{height:100%;width:calc(100% - 32px);padding:16px 16px 16px 0;display:flex;flex-direction:column;justify-content:space-evenly}.givewp-mini-chart>.header{display:flex;align-items:center;justify-content:space-between;padding-bottom:8px}.givewp-mini-chart>.header>.title{text-transform:uppercase;font-weight:600;font-size:12px;color:#82878c}.givewp-mini-chart>.header>.indicator{display:flex;align-items:center;font-size:14px;font-weight:600;cursor:default}.givewp-mini-chart>.header>.indicator>svg{margin-left:4px}.givewp-mini-chart>.content{display:flex;align-items:center;justify-content:space-between}.givewp-mini-chart>.content>.amount{font-weight:600;font-size:25px}.givewp-mini-chart>.content>.chart{width:35%;transform:translateY(-4px)}.givewp-mini-chart>.content.stacked{flex-direction:column-reverse}.givewp-mini-chart>.content.stacked>.chart{width:75%;transform:translateY(0);margin-bottom:16px}.givewp-chart-title{display:flex;align-items:center;justify-content:space-between;font-weight:600;padding:16px;font-size:15px}.givewp-chart-canvas{display:flex;flex:1;align-items:center;background:#f4f4f4}.givewp-chart-canvas canvas{position:relative}#givewp-mini-chartjs-tooltip{min-width:106px;text-align:center;border-radius:3px;overflow:hidden;display:flex;flex-direction:column;transform:translate(50%)}#givewp-mini-chartjs-tooltip .givewp-mini-tooltip-header{background:#666;padding:8px 12px;color:#fff;font-size:15px;border-radius:3px 3px 0 0}#givewp-mini-chartjs-tooltip .givewp-mini-tooltip-body{padding:8px 12px;color:#e4e4e4;font-size:12px;background:#555;border-radius:0 0 3px 3px}#givewp-mini-chartjs-tooltip .givewp-mini-tooltip-caret{height:14px;width:20px;margin:0 auto;transform:translate3d(0,-1px,0);background:#555;clip-path:polygon(50% 100%,0 0,100% 0)}.givewp-loading-overlay{justify-content:center;background:hsla(0,0%,100%,.8);z-index:899;pointer-events:none;border-radius:5px;overflow:hidden}.givewp-loading-overlay,.givewp-not-found-notice{display:flex;align-items:center;position:absolute;height:100%;width:100%}.givewp-not-found-notice{z-index:999;flex-direction:column;justify-content:flex-start;font-weight:500;background:hsla(0,0%,93.3%,.7)}.givewp-not-found-notice .givewp-not-found-card{padding:1.5em 3em;box-shadow:0 3px 6px rgba(68,68,68,.05),0 3px 6px rgba(68,68,68,.05);display:flex;flex-direction:column;align-items:center;text-align:center;border-radius:5px;overflow:hidden;margin-top:180px;background:#fff;width:22em}.givewp-not-found-notice .givewp-not-found-card h2{font-size:20px;margin-bottom:18px;font-weight:500;line-height:1.2}.givewp-not-found-notice .givewp-not-found-card p{font-size:13px;font-weight:400;margin:0}.givewp-not-found-notice .givewp-not-found-card>button{cursor:pointer;background:#66bb6a;border-radius:5px;color:#fff;display:inline-block;margin-top:28px;margin-bottom:15px;padding:12px 28px;text-decoration:none;border:solid #407543;border-width:1px 1px 3px;font-size:13px;font-weight:400}.givewp-not-found-notice .givewp-not-found-card>button:hover{background:#5aa55e}.givewp-not-found-notice .givewp-not-found-card>button:focus{outline:none;box-shadow:none;border-color:#407543}.givewp-loading-notice{height:auto;width:100%;display:flex;flex-direction:column;align-items:center;justify-content:flex-start;font-weight:500}.givewp-loading-notice .givewp-loading-notice__card{box-shadow:0 3px 6px rgba(68,68,68,.05),0 3px 6px rgba(68,68,68,.05);display:flex;flex-direction:column;align-items:center;text-align:center;border-radius:5px;overflow:hidden;margin-top:100px;margin-bottom:120px;background:#fff;width:18em;padding:2.5em 3em 1.5em}.givewp-loading-notice .givewp-loading-notice__card h2{font-size:20px;margin-bottom:18px;font-weight:500;line-height:1.2}.givewp-loading-notice .givewp-loading-notice__card p{font-size:13px;font-weight:400;margin:0}.givewp-mini-period-selector{float:left;display:flex;align-items:center}.givewp-mini-period-selector>.group{margin-right:16px;display:flex}.givewp-mini-period-selector>.group>button{background:#f7f7f7;height:32px;display:flex;align-items:center;justify-content:center;border-radius:0;border:1px solid #ddd;border-width:1px 0 3px 1px;padding:0 16px;font-size:14px;font-weight:400;cursor:pointer;margin:0}.givewp-mini-period-selector>.group>button:first-of-type{border-radius:0 3px 3px 0;border-width:1px 1px 3px}.givewp-mini-period-selector>.group>button:last-of-type{border-radius:3px 0 0 3px;border-width:1px 0 3px 1px}.givewp-mini-period-selector>.group>button.selected{background:#ddd}.givewp-mini-period-selector>.group>button:focus{outline:none;box-shadow:none;border-color:#ddd}
assets/dist/css/admin-reports.css ADDED
@@ -0,0 +1 @@
 
1
+ .givewp-inline-period-selector{position:absolute;top:0;right:0;min-height:50px;padding:10px 20px}.givewp-period-selector{float:right;display:flex;align-items:center;height:50px}.givewp-period-selector>.datepicker{border:solid #ddd;border-width:1px 1px 3px;background:#f7f7f7;height:28px;border-radius:3px;padding-left:22px}.givewp-period-selector>.datepicker .CalendarDay__selected_span{background:#91c896;color:#fff;border:1px solid #66bb6a}.givewp-period-selector>.datepicker .CalendarDay__selected{background:#66bb6a;color:#fff;border:1px double #47814a}.givewp-period-selector>.datepicker .CalendarDay__hovered_span,.givewp-period-selector>.datepicker .CalendarDay__hovered_span:hover{background:#91c896;color:#fff;border:1px solid #66bb6a}.givewp-period-selector>.datepicker .DayPickerNavigation_button__horizontalDefault{top:12px}.givewp-period-selector>.datepicker .DateRangePickerInput{border:none;background:none;height:28px}.givewp-period-selector>.datepicker .DateRangePicker_picker{border-radius:3px}.givewp-period-selector>.datepicker .DateInput{background:none}.givewp-period-selector>.datepicker .DayPicker_weekHeader{top:52px}.givewp-period-selector>.datepicker input[type=text]{height:28px;min-height:28px;border:none;background:none;border-radius:3px;overflow:hidden;font-size:14px}.givewp-period-selector>.datepicker input[type=text]:focus{box-shadow:none;border:none}.givewp-period-selector>.icon{height:32px;width:32px;position:absolute;pointer-events:none;display:flex;align-items:center;justify-content:center}.givewp-period-selector>.group{margin-left:16px;display:flex}.givewp-period-selector>.group>button{background:#f7f7f7;height:32px;display:flex;align-items:center;justify-content:center;border-radius:0;border:1px solid #ddd;border-width:1px 1px 3px 0;padding:0 16px;cursor:pointer;margin:0}.givewp-period-selector>.group>button:first-of-type{border-radius:3px 0 0 3px;border-width:1px 1px 3px}.givewp-period-selector>.group>button:last-of-type{border-radius:0 3px 3px 0;border-width:1px 1px 3px 0}.givewp-period-selector>.group>button.selected{background:#ddd}.givewp-period-selector>.group>button:focus{outline:none;box-shadow:none;border-color:#ddd}.givewp-grid{display:grid;grid-template-columns:repeat(12,1fr)}.givewp-card{background:#fff;border-radius:5px;box-shadow:0 3px 6px rgba(68,68,68,.05),0 3px 6px rgba(68,68,68,.05);display:flex;flex-direction:column}.givewp-card>.title{font-weight:900;padding:16px;font-size:15px}.givewp-card>.content{padding:0;flex:1;display:flex;position:relative;flex-direction:column}@media (max-width:768px){.givewp-card{grid-column:span 12!important}}.givewp-chart-title>.givewp-chart-title-text{font-weight:600;font-size:15px;white-space:nowrap}.givewp-chart-canvas{border-radius:5px;overflow:hidden}#givewp-chartjs-tooltip{min-width:106px;text-align:center;border-radius:3px;overflow:hidden;display:flex;flex-direction:column;transform:translate(-50%)}#givewp-chartjs-tooltip .givewp-tooltip-header{background:#666;padding:8px 12px;color:#fff;font-size:15px;border-radius:3px 3px 0 0}#givewp-chartjs-tooltip .givewp-tooltip-body{padding:8px 12px;color:#e4e4e4;font-size:12px;background:#555;border-radius:0 0 3px 3px}#givewp-chartjs-tooltip .givewp-tooltip-caret{height:14px;width:20px;margin:0 auto;transform:translate3d(0,-1px,0);background:#555;clip-path:polygon(50% 100%,0 0,100% 0)}.givewp-legend{display:flex;flex-direction:column}.givewp-legend>.item{display:flex;min-height:40px;height:auto;font-size:12px;cursor:pointer}.givewp-legend>.item:nth-of-type(2n){background:#f4f4f4}.givewp-legend>.item.inactive{opacity:.3}.givewp-legend>.item>.bar{width:8px;background:#e5e5e5}.givewp-legend>.item>.label{flex:1;margin:14px 8px;font-weight:500}.givewp-legend>.item>.data{margin:14px 8px;width:76px}.givewp-legend>.item>.percent{margin:14px 16px 14px 8px}.givewp-spinner{display:inline-block;width:34px;height:18px}.givewp-spinner:after{content:" ";display:block;width:18px;height:18px;margin:0 8px;border-radius:50%;border-color:#66bb6a transparent;border-style:solid;border-width:3px;animation:givewp-spinner 1.2s linear infinite}@keyframes givewp-spinner{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.givewp-tooltip{min-width:106px;text-align:center;border-radius:3px;overflow:hidden;display:flex;flex-direction:column;transform:translate(-50%,-100%);position:absolute;font-weight:500;top:0;left:0}.givewp-tooltip .givewp-tooltip__header{background:#666;padding:8px 12px;color:#fff;font-size:15px;border-radius:3px 3px 0 0}.givewp-tooltip .givewp-tooltip__body{padding:8px 12px;color:#e4e4e4;font-size:12px;background:#555;border-radius:0 0 3px 3px}.givewp-tooltip .givewp-tooltip__caret{height:14px;width:20px;margin:0 auto;transform:translate3d(0,-1px,0);background:#555;clip-path:polygon(50% 100%,0 0,100% 0)}.givewp-mini-chart{height:100%;width:calc(100% - 32px);padding:16px 0 16px 16px;display:flex;flex-direction:column;justify-content:space-evenly}.givewp-mini-chart>.header{display:flex;align-items:center;justify-content:space-between;padding-bottom:8px}.givewp-mini-chart>.header>.title{text-transform:uppercase;font-weight:600;font-size:12px;color:#82878c}.givewp-mini-chart>.header>.indicator{display:flex;align-items:center;font-size:14px;font-weight:600;cursor:default}.givewp-mini-chart>.header>.indicator>svg{margin-right:4px}.givewp-mini-chart>.content{display:flex;align-items:center;justify-content:space-between}.givewp-mini-chart>.content>.amount{font-weight:600;font-size:25px}.givewp-mini-chart>.content>.chart{width:35%;transform:translateY(-4px)}.givewp-mini-chart>.content.stacked{flex-direction:column-reverse}.givewp-mini-chart>.content.stacked>.chart{width:75%;transform:translateY(0);margin-bottom:16px}.givewp-chart-title{display:flex;align-items:center;justify-content:space-between;font-weight:600;padding:16px;font-size:15px}.givewp-chart-canvas{display:flex;flex:1;align-items:center;background:#f4f4f4}.givewp-chart-canvas canvas{position:relative}#givewp-mini-chartjs-tooltip{min-width:106px;text-align:center;border-radius:3px;overflow:hidden;display:flex;flex-direction:column;transform:translate(-50%)}#givewp-mini-chartjs-tooltip .givewp-mini-tooltip-header{background:#666;padding:8px 12px;color:#fff;font-size:15px;border-radius:3px 3px 0 0}#givewp-mini-chartjs-tooltip .givewp-mini-tooltip-body{padding:8px 12px;color:#e4e4e4;font-size:12px;background:#555;border-radius:0 0 3px 3px}#givewp-mini-chartjs-tooltip .givewp-mini-tooltip-caret{height:14px;width:20px;margin:0 auto;transform:translate3d(0,-1px,0);background:#555;clip-path:polygon(50% 100%,0 0,100% 0)}.givewp-loading-overlay{display:flex;align-items:center;justify-content:center;position:absolute;height:100%;width:100%;background:hsla(0,0%,100%,.8);z-index:899;pointer-events:none;border-radius:5px;overflow:hidden}.givewp-list-title{display:flex;align-items:center;justify-content:space-between;font-weight:600;padding:16px;font-size:15px}.givewp-list{max-height:432px;overflow-y:auto;overflow-x:hidden}.givewp-list>*{background:#f4f4f4}.givewp-list>:nth-of-type(2n){background:#fff}.givewp-list-notice{width:100%;height:240px;display:flex;align-items:center;justify-content:center;background:#fafafa}.givewp-donation-link{display:contents;text-decoration:inherit;color:inherit}.givewp-donation-link:hover{color:#5a5a5a}.givewp-donation-item{height:72px;display:flex;align-items:center}.givewp-donation-item .icon{height:36px;width:36px;display:flex;align-items:center;margin-left:16px}.givewp-donation-item .info{margin-right:16px;text-transform:capitalize}.givewp-donation-item .info:last-of-type{flex:1;text-align:right}.givewp-donation-item p{margin:0;font-size:14px}.givewp-donation-item .elapsed{color:#82878c;font-size:12px;margin-left:4px;text-transform:lowercase}.givewp-donation-item .source{font-weight:lighter}.give-donor-link{display:contents;text-decoration:inherit;color:inherit}.give-donor-link:hover{color:#5a5a5a}.give-donor-item{display:flex;align-items:center;height:72px;padding:0 16px}.give-donor-item>img{object-fit:cover;height:40px;width:40px;border-radius:50%;overflow:hidden}.give-donor-item>.give-donor-initials{display:flex;align-items:center;justify-content:center;height:36px;width:36px;border-radius:50%;overflow:hidden;color:#fff;background:#d75a4b}.give-donor-item>.give-donor-info{flex:1;overflow:hidden;margin-left:12px}.give-donor-item>.give-donor-totals{text-align:right}.give-donor-item p{margin:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.location-item{height:72px;display:flex;align-items:center;padding:0 16px}.location-item p{margin:0}.location-item>.flag{object-fit:cover;width:36px;height:36px;border-radius:50%;overflow:hidden}.location-item>.info{flex:1;margin-left:16px}.location-item>.donations{text-align:right}.givewp-export-button{padding:8px 12px;background:#f7f7f7;text-decoration:none;border-radius:3px;border:solid #ddd;border-width:1px 1px 3px;color:#333;font-weight:500;font-size:12px}.givewp-table-title{display:flex;align-items:center;justify-content:space-between;font-weight:600;padding:16px;font-size:15px}.givewp-table{display:flex;flex-direction:column;max-height:320px;overflow-y:auto;overflow-x:hidden}.givewp-table>*{display:flex;min-height:40px;height:auto;font-size:14px;padding:8px 16px}.givewp-table>*>*{flex:1}.givewp-table>.givewp-table-header{font-weight:500;background:#f4f4f4;position:sticky;top:0;display:flex;align-items:center;box-shadow:0 0 8px #b8b8b8}.givewp-table>.givewp-table-row{background:#fff}.givewp-table>.givewp-table-row:nth-of-type(odd){background:#f4f4f4}.givewp-table>.givewp-table-row>.givewp-table-row-item{display:flex;align-items:center}.givewp-not-found-notice{height:100%;width:100%;position:absolute;z-index:999;display:flex;flex-direction:column;align-items:center;justify-content:flex-start;font-weight:500;background:hsla(0,0%,93.3%,.7)}.givewp-not-found-notice .givewp-not-found-card{padding:1.5em 3em;box-shadow:0 3px 6px rgba(68,68,68,.05),0 3px 6px rgba(68,68,68,.05);display:flex;flex-direction:column;align-items:center;text-align:center;border-radius:5px;overflow:hidden;margin-top:180px;background:#fff;width:22em}.givewp-not-found-notice .givewp-not-found-card h2{font-size:20px;margin-bottom:18px;font-weight:500;line-height:1.2}.givewp-not-found-notice .givewp-not-found-card p{font-size:13px;font-weight:400;margin:0}.givewp-not-found-notice .givewp-not-found-card>button{cursor:pointer;background:#66bb6a;border-radius:5px;color:#fff;display:inline-block;margin-top:28px;margin-bottom:15px;padding:12px 28px;text-decoration:none;border:solid #407543;border-width:1px 1px 3px;font-size:13px;font-weight:400}.givewp-not-found-notice .givewp-not-found-card>button:hover{background:#5aa55e}.givewp-not-found-notice .givewp-not-found-card>button:focus{outline:none;box-shadow:none;border-color:#407543}.givewp-loading-notice{height:auto;width:100%;display:flex;flex-direction:column;align-items:center;justify-content:flex-start;font-weight:500}.givewp-loading-notice .givewp-loading-notice__card{box-shadow:0 3px 6px rgba(68,68,68,.05),0 3px 6px rgba(68,68,68,.05);display:flex;flex-direction:column;align-items:center;text-align:center;border-radius:5px;overflow:hidden;margin-top:100px;margin-bottom:120px;background:#fff;width:18em;padding:2.5em 3em 1.5em}.givewp-loading-notice .givewp-loading-notice__card h2{font-size:20px;margin-bottom:18px;font-weight:500;line-height:1.2}.givewp-loading-notice .givewp-loading-notice__card p{font-size:13px;font-weight:400;margin:0}
assets/dist/css/admin-reports.rtl.css ADDED
@@ -0,0 +1 @@
 
1
+ .givewp-inline-period-selector{position:absolute;top:0;left:0;min-height:50px;padding:10px 20px}.givewp-period-selector{float:left;display:flex;align-items:center;height:50px}.givewp-period-selector>.datepicker{border:solid #ddd;border-width:1px 1px 3px;background:#f7f7f7;height:28px;border-radius:3px;padding-right:22px}.givewp-period-selector>.datepicker .CalendarDay__selected_span{background:#91c896;color:#fff;border:1px solid #66bb6a}.givewp-period-selector>.datepicker .CalendarDay__selected{background:#66bb6a;color:#fff;border:1px double #47814a}.givewp-period-selector>.datepicker .CalendarDay__hovered_span,.givewp-period-selector>.datepicker .CalendarDay__hovered_span:hover{background:#91c896;color:#fff;border:1px solid #66bb6a}.givewp-period-selector>.datepicker .DayPickerNavigation_button__horizontalDefault{top:12px}.givewp-period-selector>.datepicker .DateRangePickerInput{border:none;background:none;height:28px}.givewp-period-selector>.datepicker .DateRangePicker_picker{border-radius:3px}.givewp-period-selector>.datepicker .DateInput{background:none}.givewp-period-selector>.datepicker .DayPicker_weekHeader{top:52px}.givewp-period-selector>.datepicker input[type=text]{height:28px;min-height:28px;border:none;background:none;border-radius:3px;overflow:hidden;font-size:14px}.givewp-period-selector>.datepicker input[type=text]:focus{box-shadow:none;border:none}.givewp-period-selector>.icon{height:32px;width:32px;position:absolute;pointer-events:none;display:flex;align-items:center;justify-content:center}.givewp-period-selector>.group{margin-right:16px;display:flex}.givewp-period-selector>.group>button{background:#f7f7f7;height:32px;display:flex;align-items:center;justify-content:center;border-radius:0;border:1px solid #ddd;border-width:1px 0 3px 1px;padding:0 16px;cursor:pointer;margin:0}.givewp-period-selector>.group>button:first-of-type{border-radius:0 3px 3px 0;border-width:1px 1px 3px}.givewp-period-selector>.group>button:last-of-type{border-radius:3px 0 0 3px;border-width:1px 0 3px 1px}.givewp-period-selector>.group>button.selected{background:#ddd}.givewp-period-selector>.group>button:focus{outline:none;box-shadow:none;border-color:#ddd}.givewp-grid{display:grid;grid-template-columns:repeat(12,1fr)}.givewp-card{background:#fff;border-radius:5px;box-shadow:0 3px 6px rgba(68,68,68,.05),0 3px 6px rgba(68,68,68,.05);display:flex;flex-direction:column}.givewp-card>.title{font-weight:900;padding:16px;font-size:15px}.givewp-card>.content{padding:0;flex:1;display:flex;position:relative;flex-direction:column}@media (max-width:768px){.givewp-card{grid-column:span 12!important}}.givewp-chart-title>.givewp-chart-title-text{font-weight:600;font-size:15px;white-space:nowrap}.givewp-chart-canvas{border-radius:5px;overflow:hidden}#givewp-chartjs-tooltip{min-width:106px;text-align:center;border-radius:3px;overflow:hidden;display:flex;flex-direction:column;transform:translate(50%)}#givewp-chartjs-tooltip .givewp-tooltip-header{background:#666;padding:8px 12px;color:#fff;font-size:15px;border-radius:3px 3px 0 0}#givewp-chartjs-tooltip .givewp-tooltip-body{padding:8px 12px;color:#e4e4e4;font-size:12px;background:#555;border-radius:0 0 3px 3px}#givewp-chartjs-tooltip .givewp-tooltip-caret{height:14px;width:20px;margin:0 auto;transform:translate3d(0,-1px,0);background:#555;clip-path:polygon(50% 100%,0 0,100% 0)}.givewp-legend{display:flex;flex-direction:column}.givewp-legend>.item{display:flex;min-height:40px;height:auto;font-size:12px;cursor:pointer}.givewp-legend>.item:nth-of-type(2n){background:#f4f4f4}.givewp-legend>.item.inactive{opacity:.3}.givewp-legend>.item>.bar{width:8px;background:#e5e5e5}.givewp-legend>.item>.label{flex:1;margin:14px 8px;font-weight:500}.givewp-legend>.item>.data{margin:14px 8px;width:76px}.givewp-legend>.item>.percent{margin:14px 8px 14px 16px}.givewp-spinner{display:inline-block;width:34px;height:18px}.givewp-spinner:after{content:" ";display:block;width:18px;height:18px;margin:0 8px;border-radius:50%;border-color:#66bb6a transparent;border-style:solid;border-width:3px;animation:givewp-spinner 1.2s linear infinite}@keyframes givewp-spinner{0%{transform:rotate(0deg)}to{transform:rotate(-1turn)}}.givewp-tooltip{min-width:106px;text-align:center;border-radius:3px;overflow:hidden;display:flex;flex-direction:column;transform:translate(50%,-100%);position:absolute;font-weight:500;top:0;right:0}.givewp-tooltip .givewp-tooltip__header{background:#666;padding:8px 12px;color:#fff;font-size:15px;border-radius:3px 3px 0 0}.givewp-tooltip .givewp-tooltip__body{padding:8px 12px;color:#e4e4e4;font-size:12px;background:#555;border-radius:0 0 3px 3px}.givewp-tooltip .givewp-tooltip__caret{height:14px;width:20px;margin:0 auto;transform:translate3d(0,-1px,0);background:#555;clip-path:polygon(50% 100%,0 0,100% 0)}.givewp-mini-chart{height:100%;width:calc(100% - 32px);padding:16px 16px 16px 0;display:flex;flex-direction:column;justify-content:space-evenly}.givewp-mini-chart>.header{display:flex;align-items:center;justify-content:space-between;padding-bottom:8px}.givewp-mini-chart>.header>.title{text-transform:uppercase;font-weight:600;font-size:12px;color:#82878c}.givewp-mini-chart>.header>.indicator{display:flex;align-items:center;font-size:14px;font-weight:600;cursor:default}.givewp-mini-chart>.header>.indicator>svg{margin-left:4px}.givewp-mini-chart>.content{display:flex;align-items:center;justify-content:space-between}.givewp-mini-chart>.content>.amount{font-weight:600;font-size:25px}.givewp-mini-chart>.content>.chart{width:35%;transform:translateY(-4px)}.givewp-mini-chart>.content.stacked{flex-direction:column-reverse}.givewp-mini-chart>.content.stacked>.chart{width:75%;transform:translateY(0);margin-bottom:16px}.givewp-chart-title{display:flex;align-items:center;justify-content:space-between;font-weight:600;padding:16px;font-size:15px}.givewp-chart-canvas{display:flex;flex:1;align-items:center;background:#f4f4f4}.givewp-chart-canvas canvas{position:relative}#givewp-mini-chartjs-tooltip{min-width:106px;text-align:center;border-radius:3px;overflow:hidden;display:flex;flex-direction:column;transform:translate(50%)}#givewp-mini-chartjs-tooltip .givewp-mini-tooltip-header{background:#666;padding:8px 12px;color:#fff;font-size:15px;border-radius:3px 3px 0 0}#givewp-mini-chartjs-tooltip .givewp-mini-tooltip-body{padding:8px 12px;color:#e4e4e4;font-size:12px;background:#555;border-radius:0 0 3px 3px}#givewp-mini-chartjs-tooltip .givewp-mini-tooltip-caret{height:14px;width:20px;margin:0 auto;transform:translate3d(0,-1px,0);background:#555;clip-path:polygon(50% 100%,0 0,100% 0)}.givewp-loading-overlay{display:flex;align-items:center;justify-content:center;position:absolute;height:100%;width:100%;background:hsla(0,0%,100%,.8);z-index:899;pointer-events:none;border-radius:5px;overflow:hidden}.givewp-list-title{display:flex;align-items:center;justify-content:space-between;font-weight:600;padding:16px;font-size:15px}.givewp-list{max-height:432px;overflow-y:auto;overflow-x:hidden}.givewp-list>*{background:#f4f4f4}.givewp-list>:nth-of-type(2n){background:#fff}.givewp-list-notice{width:100%;height:240px;display:flex;align-items:center;justify-content:center;background:#fafafa}.givewp-donation-link{display:contents;text-decoration:inherit;color:inherit}.givewp-donation-link:hover{color:#5a5a5a}.givewp-donation-item{height:72px;display:flex;align-items:center}.givewp-donation-item .icon{height:36px;width:36px;display:flex;align-items:center;margin-right:16px}.givewp-donation-item .info{margin-left:16px;text-transform:capitalize}.givewp-donation-item .info:last-of-type{flex:1;text-align:left}.givewp-donation-item p{margin:0;font-size:14px}.givewp-donation-item .elapsed{color:#82878c;font-size:12px;margin-right:4px;text-transform:lowercase}.givewp-donation-item .source{font-weight:lighter}.give-donor-link{display:contents;text-decoration:inherit;color:inherit}.give-donor-link:hover{color:#5a5a5a}.give-donor-item{display:flex;align-items:center;height:72px;padding:0 16px}.give-donor-item>img{object-fit:cover;height:40px;width:40px;border-radius:50%;overflow:hidden}.give-donor-item>.give-donor-initials{display:flex;align-items:center;justify-content:center;height:36px;width:36px;border-radius:50%;overflow:hidden;color:#fff;background:#d75a4b}.give-donor-item>.give-donor-info{flex:1;overflow:hidden;margin-right:12px}.give-donor-item>.give-donor-totals{text-align:left}.give-donor-item p{margin:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.location-item{height:72px;display:flex;align-items:center;padding:0 16px}.location-item p{margin:0}.location-item>.flag{object-fit:cover;width:36px;height:36px;border-radius:50%;overflow:hidden}.location-item>.info{flex:1;margin-right:16px}.location-item>.donations{text-align:left}.givewp-export-button{padding:8px 12px;background:#f7f7f7;text-decoration:none;border-radius:3px;border:solid #ddd;border-width:1px 1px 3px;color:#333;font-weight:500;font-size:12px}.givewp-table-title{display:flex;align-items:center;justify-content:space-between;font-weight:600;padding:16px;font-size:15px}.givewp-table{display:flex;flex-direction:column;max-height:320px;overflow-y:auto;overflow-x:hidden}.givewp-table>*{display:flex;min-height:40px;height:auto;font-size:14px;padding:8px 16px}.givewp-table>*>*{flex:1}.givewp-table>.givewp-table-header{font-weight:500;background:#f4f4f4;position:sticky;top:0;display:flex;align-items:center;box-shadow:0 0 8px #b8b8b8}.givewp-table>.givewp-table-row{background:#fff}.givewp-table>.givewp-table-row:nth-of-type(odd){background:#f4f4f4}.givewp-table>.givewp-table-row>.givewp-table-row-item{display:flex;align-items:center}.givewp-not-found-notice{height:100%;width:100%;position:absolute;z-index:999;display:flex;flex-direction:column;align-items:center;justify-content:flex-start;font-weight:500;background:hsla(0,0%,93.3%,.7)}.givewp-not-found-notice .givewp-not-found-card{padding:1.5em 3em;box-shadow:0 3px 6px rgba(68,68,68,.05),0 3px 6px rgba(68,68,68,.05);display:flex;flex-direction:column;align-items:center;text-align:center;border-radius:5px;overflow:hidden;margin-top:180px;background:#fff;width:22em}.givewp-not-found-notice .givewp-not-found-card h2{font-size:20px;margin-bottom:18px;font-weight:500;line-height:1.2}.givewp-not-found-notice .givewp-not-found-card p{font-size:13px;font-weight:400;margin:0}.givewp-not-found-notice .givewp-not-found-card>button{cursor:pointer;background:#66bb6a;border-radius:5px;color:#fff;display:inline-block;margin-top:28px;margin-bottom:15px;padding:12px 28px;text-decoration:none;border:solid #407543;border-width:1px 1px 3px;font-size:13px;font-weight:400}.givewp-not-found-notice .givewp-not-found-card>button:hover{background:#5aa55e}.givewp-not-found-notice .givewp-not-found-card>button:focus{outline:none;box-shadow:none;border-color:#407543}.givewp-loading-notice{height:auto;width:100%;display:flex;flex-direction:column;align-items:center;justify-content:flex-start;font-weight:500}.givewp-loading-notice .givewp-loading-notice__card{box-shadow:0 3px 6px rgba(68,68,68,.05),0 3px 6px rgba(68,68,68,.05);display:flex;flex-direction:column;align-items:center;text-align:center;border-radius:5px;overflow:hidden;margin-top:100px;margin-bottom:120px;background:#fff;width:18em;padding:2.5em 3em 1.5em}.givewp-loading-notice .givewp-loading-notice__card h2{font-size:20px;margin-bottom:18px;font-weight:500;line-height:1.2}.givewp-loading-notice .givewp-loading-notice__card p{font-size:13px;font-weight:400;margin:0}
assets/dist/css/admin.css CHANGED
@@ -14,4 +14,4 @@ This file is generated by `grunt build`, do not edit it by hand.
14
  * To view and modify this theme, visit http://jqueryui.com/themeroller/?bgShadowXPos=&bgOverlayXPos=&bgErrorXPos=&bgHighlightXPos=&bgContentXPos=&bgHeaderXPos=&bgActiveXPos=&bgHoverXPos=&bgDefaultXPos=&bgShadowYPos=&bgOverlayYPos=&bgErrorYPos=&bgHighlightYPos=&bgContentYPos=&bgHeaderYPos=&bgActiveYPos=&bgHoverYPos=&bgDefaultYPos=&bgShadowRepeat=&bgOverlayRepeat=&bgErrorRepeat=&bgHighlightRepeat=&bgContentRepeat=&bgHeaderRepeat=&bgActiveRepeat=&bgHoverRepeat=&bgDefaultRepeat=&iconsHover=url(%22images%2Fui-icons_555555_256x240.png%22)&iconsHighlight=url(%22images%2Fui-icons_777620_256x240.png%22)&iconsHeader=url(%22images%2Fui-icons_444444_256x240.png%22)&iconsError=url(%22images%2Fui-icons_cc0000_256x240.png%22)&iconsDefault=url(%22images%2Fui-icons_777777_256x240.png%22)&iconsContent=url(%22images%2Fui-icons_444444_256x240.png%22)&iconsActive=url(%22images%2Fui-icons_ffffff_256x240.png%22)&bgImgUrlShadow=&bgImgUrlOverlay=&bgImgUrlHover=&bgImgUrlHighlight=&bgImgUrlHeader=&bgImgUrlError=&bgImgUrlDefault=&bgImgUrlContent=&bgImgUrlActive=&opacityFilterShadow=Alpha(Opacity%3D30)&opacityFilterOverlay=Alpha(Opacity%3D30)&opacityShadowPerc=30&opacityOverlayPerc=30&iconColorHover=%23555555&iconColorHighlight=%23777620&iconColorHeader=%23444444&iconColorError=%23cc0000&iconColorDefault=%23777777&iconColorContent=%23444444&iconColorActive=%23ffffff&bgImgOpacityShadow=0&bgImgOpacityOverlay=0&bgImgOpacityError=95&bgImgOpacityHighlight=55&bgImgOpacityContent=75&bgImgOpacityHeader=75&bgImgOpacityActive=65&bgImgOpacityHover=75&bgImgOpacityDefault=75&bgTextureShadow=flat&bgTextureOverlay=flat&bgTextureError=flat&bgTextureHighlight=flat&bgTextureContent=flat&bgTextureHeader=flat&bgTextureActive=flat&bgTextureHover=flat&bgTextureDefault=flat&cornerRadius=3px&fwDefault=normal&ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&cornerRadiusShadow=8px&thicknessShadow=5px&offsetLeftShadow=0px&offsetTopShadow=0px&opacityShadow=.3&bgColorShadow=%23666666&opacityOverlay=.3&bgColorOverlay=%23aaaaaa&fcError=%235f3f3f&borderColorError=%23f1a899&bgColorError=%23fddfdf&fcHighlight=%23777620&borderColorHighlight=%23dad55e&bgColorHighlight=%23fffa90&fcContent=%23333333&borderColorContent=%23dddddd&bgColorContent=%23ffffff&fcHeader=%23333333&borderColorHeader=%23dddddd&bgColorHeader=%23e9e9e9&fcActive=%23ffffff&borderColorActive=%23003eff&bgColorActive=%23007fff&fcHover=%232b2b2b&borderColorHover=%23cccccc&bgColorHover=%23ededed&fcDefault=%23454545&borderColorDefault=%23c5c5c5&bgColorDefault=%23f6f6f6
15
  * Copyright jQuery Foundation and other contributors; Licensed MIT */.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:after,.ui-helper-clearfix:before{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0;padding:.5em .5em .5em .7em;font-size:100%}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{margin:0;cursor:pointer;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-item-wrapper{position:relative;padding:3px 1em 3px .4em}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0}.ui-menu .ui-state-active,.ui-menu .ui-state-focus{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item-wrapper{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-button{padding:.4em 1em;display:inline-block;position:relative;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:visible}.ui-button,.ui-button:active,.ui-button:hover,.ui-button:link,.ui-button:visited{text-decoration:none}.ui-button-icon-only{width:2em;box-sizing:border-box;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-button-icon-only{text-indent:0}.ui-button-icon-only .ui-icon{position:absolute;top:50%;left:50%;margin-top:-8px;margin-left:-8px}.ui-button.ui-icon-notext .ui-icon{padding:0;width:2.1em;height:2.1em;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-icon-notext .ui-icon{width:auto;height:auto;text-indent:0;white-space:normal;padding:.4em 1em}button.ui-button::-moz-focus-inner,input.ui-button::-moz-focus-inner{border:0;padding:0}.ui-controlgroup{vertical-align:middle;display:inline-block}.ui-controlgroup>.ui-controlgroup-item{float:left;margin-left:0;margin-right:0}.ui-controlgroup>.ui-controlgroup-item.ui-visual-focus,.ui-controlgroup>.ui-controlgroup-item:focus{z-index:9999}.ui-controlgroup-vertical>.ui-controlgroup-item{display:block;float:none;width:100%;margin-top:0;margin-bottom:0;text-align:left}.ui-controlgroup-vertical .ui-controlgroup-item{box-sizing:border-box}.ui-controlgroup .ui-controlgroup-label{padding:.4em 1em}.ui-controlgroup .ui-controlgroup-label span{font-size:80%}.ui-controlgroup-horizontal .ui-controlgroup-label+.ui-controlgroup-item{border-left:none}.ui-controlgroup-vertical .ui-controlgroup-label+.ui-controlgroup-item{border-top:none}.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content{border-right:none}.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content{border-bottom:none}.ui-controlgroup-vertical .ui-spinner-input{width:75%;width:calc(100% - 2.4em)}.ui-controlgroup-vertical .ui-spinner .ui-spinner-up{border-top-style:solid}.ui-checkboxradio-label .ui-icon-background{box-shadow:inset 1px 1px 1px #ccc;border-radius:.12em;border:none}.ui-checkboxradio-radio-label .ui-icon-background{width:16px;height:16px;border-radius:1em;overflow:visible;border:none}.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon{background-image:none;width:8px;height:8px;border-width:4px;border-style:solid}.ui-checkboxradio-disabled{pointer-events:none}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-next-hover,.ui-datepicker .ui-datepicker-prev-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-next span,.ui-datepicker .ui-datepicker-prev span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:700;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td a,.ui-datepicker td span{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-datepicker .ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat;left:.5em;top:.3em}.ui-dialog{position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:20px;margin:-10px 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-n{height:2px;top:0}.ui-dialog .ui-resizable-e{width:2px;right:0}.ui-dialog .ui-resizable-s{height:2px;bottom:0}.ui-dialog .ui-resizable-w{width:2px;left:0}.ui-dialog .ui-resizable-ne,.ui-dialog .ui-resizable-nw,.ui-dialog .ui-resizable-se,.ui-dialog .ui-resizable-sw{width:7px;height:7px}.ui-dialog .ui-resizable-se{right:0;bottom:0}.ui-dialog .ui-resizable-sw{left:0;bottom:0}.ui-dialog .ui-resizable-ne{right:0;top:0}.ui-dialog .ui-resizable-nw{left:0;top:0}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-autohide .ui-resizable-handle,.ui-resizable-disabled .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");height:100%;filter:alpha(opacity=25);opacity:.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted #000}.ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;left:0;display:none}.ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:700;line-height:1.5;padding:2px .4em;margin:.5em 0 0;height:auto;border:0}.ui-selectmenu-open{display:block}.ui-selectmenu-text{display:block;margin-right:20px;overflow:hidden;text-overflow:ellipsis}.ui-selectmenu-button.ui-button{text-align:left;white-space:nowrap;width:14em}.ui-selectmenu-icon.ui-icon{float:right;margin-top:0}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default;-ms-touch-action:none;touch-action:none}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:none;color:inherit;padding:.222em 0;vertical-align:middle;margin:.2em 2em .2em .4em}.ui-spinner-button{width:1.6em;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top-style:none;border-bottom-style:none;border-right-style:none}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px}body .ui-tooltip{border-width:2px}.ui-widget{font-family:Arial,Helvetica,sans-serif}.ui-widget,.ui-widget .ui-widget{font-size:1em}.ui-widget button,.ui-widget input,.ui-widget select,.ui-widget textarea{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget.ui-widget-content{border:1px solid #c5c5c5}.ui-widget-content{border:1px solid #ddd;background:#fff;color:#333}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #ddd;background:#e9e9e9;color:#333;font-weight:700}.ui-widget-header a{color:#333}.ui-button,.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default,html .ui-button.ui-state-disabled:active,html .ui-button.ui-state-disabled:hover{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:400;color:#454545}.ui-button,.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited,a.ui-button,a:link.ui-button,a:visited.ui-button{color:#454545;text-decoration:none}.ui-button:focus,.ui-button:hover,.ui-state-focus,.ui-state-hover,.ui-widget-content .ui-state-focus,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-focus,.ui-widget-header .ui-state-hover{border:1px solid #ccc;background:#ededed;font-weight:400;color:#2b2b2b}.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited,.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,a.ui-button:focus,a.ui-button:hover{color:#2b2b2b;text-decoration:none}.ui-visual-focus{box-shadow:0 0 3px 1px #5e9ed6}.ui-button.ui-state-active:hover,.ui-button:active,.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active,a.ui-button:active{border:1px solid #003eff;background:#007fff;font-weight:400;color:#fff}.ui-icon-background,.ui-state-active .ui-icon-background{border:#003eff;background-color:#fff}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#fff;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #dad55e;background:#fffa90;color:#777620}.ui-state-checked{border:1px solid #dad55e;background:#fffa90}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#777620}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #f1a899;background:#fddfdf;color:#5f3f3f}.ui-state-error-text,.ui-state-error a,.ui-widget-content .ui-state-error-text,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error-text,.ui-widget-header .ui-state-error a{color:#5f3f3f}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:700}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:400}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon,.ui-widget-header .ui-icon{background-image:url(../images/ui-icons_444444_256x240.png)}.ui-button:focus .ui-icon,.ui-button:hover .ui-icon,.ui-state-focus .ui-icon,.ui-state-hover .ui-icon{background-image:url(../images/ui-icons_555555_256x240.png)}.ui-button:active .ui-icon,.ui-state-active .ui-icon{background-image:url(../images/ui-icons_ffffff_256x240.png)}.ui-button .ui-state-highlight.ui-icon,.ui-state-highlight .ui-icon{background-image:url(../images/ui-icons_777620_256x240.png)}.ui-state-error-text .ui-icon,.ui-state-error .ui-icon{background-image:url(../images/ui-icons_cc0000_256x240.png)}.ui-button .ui-icon{background-image:url(../images/ui-icons_777777_256x240.png)}.ui-icon-blank{background-position:16px 16px}.ui-icon-caret-1-n{background-position:0 0}.ui-icon-caret-1-ne{background-position:-16px 0}.ui-icon-caret-1-e{background-position:-32px 0}.ui-icon-caret-1-se{background-position:-48px 0}.ui-icon-caret-1-s{background-position:-65px 0}.ui-icon-caret-1-sw{background-position:-80px 0}.ui-icon-caret-1-w{background-position:-96px 0}.ui-icon-caret-1-nw{background-position:-112px 0}.ui-icon-caret-2-n-s{background-position:-128px 0}.ui-icon-caret-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-65px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-65px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:1px -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-first,.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-left,.ui-corner-tl,.ui-corner-top{border-top-left-radius:3px}.ui-corner-all,.ui-corner-right,.ui-corner-top,.ui-corner-tr{border-top-right-radius:3px}.ui-corner-all,.ui-corner-bl,.ui-corner-bottom,.ui-corner-left{border-bottom-left-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-br,.ui-corner-right{border-bottom-right-radius:3px}.ui-widget-overlay{background:#aaa;opacity:.003;filter:Alpha(Opacity=0.3)}.ui-widget-shadow{-webkit-box-shadow:0 0 5px #666;box-shadow:0 0 5px #666}/*! Hint.css - v2.5.0 - 2017-04-23
16
  * http://kushagragour.in/lab/hint/
17
- * Copyright (c) 2017 Kushagra Gour */[class*=hint--]{position:relative;display:inline-block}[class*=hint--]:after,[class*=hint--]:before{position:absolute;-webkit-transform:translateZ(0);-moz-transform:translateZ(0);transform:translateZ(0);visibility:hidden;opacity:0;z-index:1000000;pointer-events:none;-webkit-transition:.3s ease;-moz-transition:.3s ease;transition:.3s ease;-webkit-transition-delay:0s;-moz-transition-delay:0s;transition-delay:0s}[class*=hint--]:hover:after,[class*=hint--]:hover:before{visibility:visible;opacity:1;-webkit-transition-delay:.1s;-moz-transition-delay:.1s;transition-delay:.1s}[class*=hint--]:before{content:"";position:absolute;background:0 0;border:6px solid transparent;z-index:1000001}[class*=hint--]:after{background:#383838;color:#fff;padding:8px 10px;font-size:12px;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;line-height:12px;white-space:nowrap;text-shadow:0 -1px 0 #000;box-shadow:4px 4px 8px rgba(0,0,0,.3)}[class*=hint--][aria-label]:after{content:attr(aria-label)}[class*=hint--][data-hint]:after{content:attr(data-hint)}[aria-label=""]:after,[aria-label=""]:before,[data-hint=""]:after,[data-hint=""]:before{display:none!important}.hint--top-left:before,.hint--top-right:before,.hint--top:before{border-top-color:#383838}.hint--bottom-left:before,.hint--bottom-right:before,.hint--bottom:before{border-bottom-color:#383838}.hint--top:after,.hint--top:before{bottom:100%;left:50%}.hint--top:before{margin-bottom:-11px;left:calc(50% - 6px)}.hint--top:after{-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);transform:translateX(-50%)}.hint--top:hover:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--top:hover:after{-webkit-transform:translateX(-50%) translateY(-8px);-moz-transform:translateX(-50%) translateY(-8px);transform:translateX(-50%) translateY(-8px)}.hint--bottom:after,.hint--bottom:before{top:100%;left:50%}.hint--bottom:before{margin-top:-11px;left:calc(50% - 6px)}.hint--bottom:after{-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);transform:translateX(-50%)}.hint--bottom:hover:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--bottom:hover:after{-webkit-transform:translateX(-50%) translateY(8px);-moz-transform:translateX(-50%) translateY(8px);transform:translateX(-50%) translateY(8px)}.hint--right:before{border-right-color:#383838;margin-left:-11px;margin-bottom:-6px}.hint--right:after{margin-bottom:-14px}.hint--right:after,.hint--right:before{left:100%;bottom:50%}.hint--right:hover:after,.hint--right:hover:before{-webkit-transform:translateX(8px);-moz-transform:translateX(8px);transform:translateX(8px)}.hint--left:before{border-left-color:#383838;margin-right:-11px;margin-bottom:-6px}.hint--left:after{margin-bottom:-14px}.hint--left:after,.hint--left:before{right:100%;bottom:50%}.hint--left:hover:after,.hint--left:hover:before{-webkit-transform:translateX(-8px);-moz-transform:translateX(-8px);transform:translateX(-8px)}.hint--top-left:after,.hint--top-left:before{bottom:100%;left:50%}.hint--top-left:before{margin-bottom:-11px;left:calc(50% - 6px)}.hint--top-left:after{-webkit-transform:translateX(-100%);-moz-transform:translateX(-100%);transform:translateX(-100%);margin-left:12px}.hint--top-left:hover:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--top-left:hover:after{-webkit-transform:translateX(-100%) translateY(-8px);-moz-transform:translateX(-100%) translateY(-8px);transform:translateX(-100%) translateY(-8px)}.hint--top-right:after,.hint--top-right:before{bottom:100%;left:50%}.hint--top-right:before{margin-bottom:-11px;left:calc(50% - 6px)}.hint--top-right:after{-webkit-transform:translateX(0);-moz-transform:translateX(0);transform:translateX(0);margin-left:-12px}.hint--top-right:hover:after,.hint--top-right:hover:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--bottom-left:after,.hint--bottom-left:before{top:100%;left:50%}.hint--bottom-left:before{margin-top:-11px;left:calc(50% - 6px)}.hint--bottom-left:after{-webkit-transform:translateX(-100%);-moz-transform:translateX(-100%);transform:translateX(-100%);margin-left:12px}.hint--bottom-left:hover:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--bottom-left:hover:after{-webkit-transform:translateX(-100%) translateY(8px);-moz-transform:translateX(-100%) translateY(8px);transform:translateX(-100%) translateY(8px)}.hint--bottom-right:after,.hint--bottom-right:before{top:100%;left:50%}.hint--bottom-right:before{margin-top:-11px;left:calc(50% - 6px)}.hint--bottom-right:after{-webkit-transform:translateX(0);-moz-transform:translateX(0);transform:translateX(0);margin-left:-12px}.hint--bottom-right:hover:after,.hint--bottom-right:hover:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--large:after,.hint--medium:after,.hint--small:after{white-space:normal;line-height:1.4em;word-wrap:break-word}.hint--small:after{width:80px}.hint--medium:after{width:150px}.hint--large:after{width:300px}.hint--error:after{background-color:#b34e4d;text-shadow:0 -1px 0 #592726}.hint--error.hint--top-left:before,.hint--error.hint--top-right:before,.hint--error.hint--top:before{border-top-color:#b34e4d}.hint--error.hint--bottom-left:before,.hint--error.hint--bottom-right:before,.hint--error.hint--bottom:before{border-bottom-color:#b34e4d}.hint--error.hint--left:before{border-left-color:#b34e4d}.hint--error.hint--right:before{border-right-color:#b34e4d}.hint--warning:after{background-color:#c09854;text-shadow:0 -1px 0 #6c5328}.hint--warning.hint--top-left:before,.hint--warning.hint--top-right:before,.hint--warning.hint--top:before{border-top-color:#c09854}.hint--warning.hint--bottom-left:before,.hint--warning.hint--bottom-right:before,.hint--warning.hint--bottom:before{border-bottom-color:#c09854}.hint--warning.hint--left:before{border-left-color:#c09854}.hint--warning.hint--right:before{border-right-color:#c09854}.hint--info:after{background-color:#3986ac;text-shadow:0 -1px 0 #1a3c4d}.hint--info.hint--top-left:before,.hint--info.hint--top-right:before,.hint--info.hint--top:before{border-top-color:#3986ac}.hint--info.hint--bottom-left:before,.hint--info.hint--bottom-right:before,.hint--info.hint--bottom:before{border-bottom-color:#3986ac}.hint--info.hint--left:before{border-left-color:#3986ac}.hint--info.hint--right:before{border-right-color:#3986ac}.hint--success:after{background-color:#458746;text-shadow:0 -1px 0 #1a321a}.hint--success.hint--top-left:before,.hint--success.hint--top-right:before,.hint--success.hint--top:before{border-top-color:#458746}.hint--success.hint--bottom-left:before,.hint--success.hint--bottom-right:before,.hint--success.hint--bottom:before{border-bottom-color:#458746}.hint--success.hint--left:before{border-left-color:#458746}.hint--success.hint--right:before{border-right-color:#458746}.hint--always:after,.hint--always:before{opacity:1;visibility:visible}.hint--always.hint--top:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--always.hint--top:after{-webkit-transform:translateX(-50%) translateY(-8px);-moz-transform:translateX(-50%) translateY(-8px);transform:translateX(-50%) translateY(-8px)}.hint--always.hint--top-left:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--always.hint--top-left:after{-webkit-transform:translateX(-100%) translateY(-8px);-moz-transform:translateX(-100%) translateY(-8px);transform:translateX(-100%) translateY(-8px)}.hint--always.hint--top-right:after,.hint--always.hint--top-right:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--always.hint--bottom:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--always.hint--bottom:after{-webkit-transform:translateX(-50%) translateY(8px);-moz-transform:translateX(-50%) translateY(8px);transform:translateX(-50%) translateY(8px)}.hint--always.hint--bottom-left:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--always.hint--bottom-left:after{-webkit-transform:translateX(-100%) translateY(8px);-moz-transform:translateX(-100%) translateY(8px);transform:translateX(-100%) translateY(8px)}.hint--always.hint--bottom-right:after,.hint--always.hint--bottom-right:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--always.hint--left:after,.hint--always.hint--left:before{-webkit-transform:translateX(-8px);-moz-transform:translateX(-8px);transform:translateX(-8px)}.hint--always.hint--right:after,.hint--always.hint--right:before{-webkit-transform:translateX(8px);-moz-transform:translateX(8px);transform:translateX(8px)}.hint--rounded:after{border-radius:4px}.hint--no-animate:after,.hint--no-animate:before{-webkit-transition-duration:0s;-moz-transition-duration:0s;transition-duration:0s}.hint--bounce:after,.hint--bounce:before{-webkit-transition:opacity .3s ease,visibility .3s ease,-webkit-transform .3s cubic-bezier(.71,1.7,.77,1.24);-moz-transition:opacity .3s ease,visibility .3s ease,-moz-transform .3s cubic-bezier(.71,1.7,.77,1.24);transition:opacity .3s ease,visibility .3s ease,transform .3s cubic-bezier(.71,1.7,.77,1.24)}.mfp-bg{z-index:1000001;overflow:hidden;background:#0b0b0b;opacity:.8}.mfp-bg,.mfp-wrap{top:0;left:0;width:100%;height:100%;position:fixed}.mfp-wrap{z-index:1000002;outline:none!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{content:"";display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1000004}.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1000003}.mfp-preloader a{color:#ccc}.mfp-preloader a:hover{color:#fff}.mfp-s-error .mfp-content,.mfp-s-ready .mfp-preloader{display:none}button.mfp-arrow,button.mfp-close{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:none;padding:0;z-index:1000005;box-shadow:none;touch-action:manipulation}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;color:#fff;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:focus,.mfp-close:hover{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{color:#fff;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#ccc;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;top:50%;margin:-55px 0 0;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:focus,.mfp-arrow:hover{opacity:1}.mfp-arrow:after,.mfp-arrow:before{content:"";display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after{border-right:17px solid #fff;margin-left:31px}.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right:after{border-left:17px solid #fff;margin-left:39px}.mfp-arrow-right:before{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;box-sizing:border-box;padding:40px 0;margin:0 auto}.mfp-figure,img.mfp-img{line-height:0}.mfp-figure:after{content:"";position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-height:300px),screen and (max-width:800px) and (orientation:landscape){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}@font-face{font-family:give-icomoon;src:url(../fonts/icomoon.eot);src:url(../fonts/icomoon.eot#iefix) format("embedded-opentype"),url(../fonts/icomoon.woff) format("woff"),url(../images/icomoon.svg#icomoon) format("svg");font-weight:400;font-style:normal}.give-icon:before{font-style:normal}[class*=" give-icon-"],[class^=give-icon-]{font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.give-icon-lamp:before{content:"\e603"}.give-icon-heart:before{content:"\e604"}.give-icon-question:before{content:"\e602"}.give-icon-info:before{content:"\e601"}.give-icon-new-tab:before{content:"\ea7e"}.give-icon-alert:before{content:"\f02d"}.give-icon-help:before{content:"\e606"}.give-icon-spinner:before{content:"\e605"}.give-icon-spinner2:before{content:"\e607"}.give-icon-plus:before{content:"\e040"}.give-icon-minus:before{content:"\e041"}.give-icon-locked:before{content:"\e600"}.dashicons-give:before{font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\e800"}.fa-spin{-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.give-modal{box-shadow:0 15px 10px -5px rgba(0,0,0,.15);position:relative;background:#fff;font-family:Arial,Baskerville,monospace;font-size:16px;width:auto;max-width:500px;margin:60px auto 20px;border-top:5px solid transparent;line-height:1.5}.give-modal--success{border-top-color:#46b450}.give-modal--notice{border-top-color:#00a0d2}.give-modal--warning{border-top-color:#ffb900}.give-modal--error{border-top-color:#dc3232}.give-modal__body{padding:1.5rem}.give-modal__body>:last-child{margin-bottom:0}.give-modal__title{margin:0 0 .75rem;padding:0}.give-modal__description{margin:0 0 1.5rem;padding:0}.give-modal .give-spinner-wrap{margin-left:40%}.give-modal .give-modal__controls{position:relative;padding:1rem 1.5rem;background-color:#fbfbfb;border-top:1px solid #d7d7d7;text-align:right}.give-modal .give-modal__controls .spinner{display:none;visibility:visible;margin-left:0;float:left}.give-modal--additional-link{float:left;line-height:26px}.modal-fade-slide .give-modal--zoom{opacity:0;transition:all .2s ease-out;transform:translateY(-20px) perspective(600px) rotateX(10deg)}.modal-fade-slide.mfp-ready .give-modal--zoom{opacity:1;transform:translateY(0) perspective(600px) rotateX(0)}.modal-fade-slide.mfp-removing .give-modal--zoom{opacity:0;transform:translateY(-10px) perspective(600px) rotateX(10deg)}.modal-fade-slide.mfp-bg{opacity:0;transition:opacity .3s ease-out}.modal-fade-slide.mfp-ready.mfp-bg{opacity:.8}.modal-fade-slide.mfp-removing.mfp-bg{opacity:0}.give-button{display:inline-block;height:30px;line-height:28px;padding:0 12px 2px;cursor:pointer;border-width:1px;border-style:solid;-webkit-appearance:none;border-radius:3px;white-space:nowrap;box-sizing:border-box;margin-left:.5rem;font-weight:400;font-size:.9em}.give-button:active{transform:translateY(1px)}.give-button--primary{background:#0085ba;border-color:#0073aa #006799 #006799;box-shadow:0 1px 0 #006799;color:#fff;text-decoration:none;text-shadow:0 -1px 1px #006799,1px 0 1px #006799,0 1px 1px #006799,-1px 0 1px #006799;outline:0}.give-button--primary:hover{background:#008ec2;border-color:#006799;color:#fff}.give-button--primary:active{background:#0073aa;border-color:#006799;box-shadow:inset 0 2px 0 #006799;vertical-align:top}.give-button--primary:focus{background:#0073aa;border-color:#006799;color:#fff;box-shadow:0 1px 0 #0073aa,0 0 2px 1px #33b3db}.give-button--secondary{color:#555;border-color:#ccc;background:#f7f7f7;box-shadow:0 1px 0 #ccc;vertical-align:top}.give-button--secondary:hover{background:#fafafa;border-color:#999;color:#23282d}.give-button--secondary:active{background:#eee;border-color:#999;box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5)}.give-button--secondary:focus{background:#eee}.give-notice{position:relative}@font-face{font-family:give-icomoon;font-weight:400;font-style:normal}.give-metabox-tabs li .give-icon:before{font-family:give-icomoon;src:url(../fonts/icomoon.eot);src:url(../fonts/icomoon.eot#iefix) format("embedded-opentype"),url(../fonts/icomoon.woff) format("woff"),url(../images/icomoon.svg#icomoon) format("svg");speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:12px;vertical-align:top;line-height:20px;margin:0 5px 0 0}.give-metabox-tabs li .give-icon-default:before{content:"\e903"}.give-metabox-tabs li .give-icon-heart:before{content:"\e604"}.give-metabox-tabs li .give-icon-target:before{content:"\e901"}.give-metabox-tabs li .give-icon-display:before{content:"\e90c"}.give-metabox-tabs li .give-icon-edit:before{content:"\e902"}.give-metabox-tabs li .give-icon-checklist:before{position:relative;top:1px;content:"\e900"}.give-metabox-tabs li .give-icon-purse:before{content:"\e8df"}.give-metabox-tabs li .dashicons{font-size:14px;width:14px;line-height:20px}.give-grid-row{position:relative;width:100%}.give-grid-row [class^=give-grid-col]{float:left;margin:.5rem 1%;min-height:.125rem}.give-grid-row:after{content:"";display:table;clear:both}.give-grid-col-1{width:6.33333%}.give-grid-col-2{width:14.66667%}.give-grid-col-3{width:23%}.give-grid-col-4{width:31.33333%}.give-grid-col-5{width:39.66667%}.give-grid-col-6{width:48%}.give-grid-col-7{width:56.33333%}.give-grid-col-8{width:64.66667%}.give-grid-col-9{width:73%}.give-grid-col-10{width:81.33333%}.give-grid-col-11{width:89.66667%}.give-grid-col-12{width:98%}@media only screen and (max-width:33.75em){.give-grid-row [class^=give-grid-col]{width:98%}}.give_options_panel input[type=email],.give_options_panel input[type=text]{padding:3px 5px;width:100%;line-height:2;box-shadow:0 0 0 transparent;border-radius:4px;border:1px solid #7e8993;background-color:#fff;color:#32373c}input.give-text-small,input.give-text_small{width:100px!important}input.give-text-medium,input.give-text_medium{width:200px!important}.give-hidden,.post-type-give_forms .tablenav #post-query-submit{display:none}.give_options_panel .give-time-field{width:65px}.give_options_panel .give-money-field{width:75px;margin-right:0;margin-left:0}.give_options_panel .give-money-symbol{border:1px solid #7e8993;background:#fcfcfc;margin:0;font-size:14px;padding:8px 10px 9px}.give_options_panel .give-money-symbol-before{border-right:0;margin-right:-5px;border-radius:4px 0 0 4px}.give_options_panel .give-money-symbol-before+.give-money-field{border-top-left-radius:0;border-bottom-left-radius:0}.give_options_panel .give-money-symbol-after{margin-left:-5px;border-radius:0 4px 4px 0}.give_options_panel .give-money-symbol-after+.give-money-field{border-top-right-radius:0;border-bottom-right-radius:0}.give-underline{text-decoration:underline}#give-bulk-donors div[id^=give-donor-]{display:block;overflow:hidden}.shortcode-wrap{margin:1px 14px 12px 11px}.shortcode-wrap label{margin:0 0 3px;display:block;cursor:default}.shortcode-wrap .shortcode-input{margin:0;width:100%}input.shortcode-input{width:100%}.price .give_price_range_high,.price .give_price_range_low,.price .give_price_range_sep{display:inline-block}.js-give-shortcode-button{font-weight:400;cursor:help}.js-give-shortcode-button:after{box-shadow:0 1px 1px 0 rgba(0,0,0,.1);text-shadow:none}.js-give-shortcode-button .dashicons{font-size:16px;width:16px;vertical-align:middle;color:inherit;margin-right:2px}@media only screen and (min-width:782px) and (max-width:1260px){.js-give-shortcode-button .give-button-text{display:none}}.give-tooltip{margin:0 3px;padding:0;font-size:14px;-moz-transition:.2s all linear;-o-transition:.2s all linear;transition:all .2s linear;color:rgba(51,51,51,.5);position:relative;top:1px}.give-tooltip:hover{color:#333}#give-metabox-form-data .inside{margin:0;padding:0}#give-metabox-form-data .give-metabox-panel-wrap{background:#fff;overflow:hidden}#give-metabox-form-data .give_options_panel{display:none;padding-left:170px}#give-metabox-form-data .give_options_panel.active,.no-js #give-metabox-form-data .give_options_panel{display:block}#give-metabox-form-data .give_options_panel .give-field-wrap{padding:1em 20px 1em 162px;margin:0;border-bottom:1px solid #eee}#give-metabox-form-data .give_options_panel .give-field-wrap>label,#give-metabox-form-data .give_options_panel .give-field-wrap>span.give-field-label{float:left;width:135px;padding:0;margin:2px 0 0 -150px;line-height:18px;font-size:12px;font-weight:400}#give-metabox-form-data .give_options_panel .give-field-wrap .give-field-description{color:#aaa;font-size:12px;line-height:18px;display:block;padding-top:10px;font-style:italic}#give-metabox-form-data .give_options_panel .give-field-wrap ul{margin:0}#give-metabox-form-data .give_options_panel .give-field-wrap .mce-container iframe{min-height:250px!important}#give-metabox-form-data .give_options_panel .give-field-wrap .wp-editor-wrap{display:inline-block;width:100%}#give-metabox-form-data .give_options_panel textarea.give-field{width:100%}#give-metabox-form-data .give_options_panel .give-field-wrap:hover .give-field-row-actions{display:block}#give-metabox-form-data .give_options_panel .give-field-wrap:last-child{border-bottom:0}#give-metabox-form-data .give_options_panel .give-inline-radio-fields li{display:inline-block;margin-right:15px}#give-metabox-form-data .give_options_panel .give-repeatable-field-section{padding:10px;background:#f5f5f5}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-repeatable-fields-section-wrapper{width:100%;background-color:#fff;border-collapse:collapse}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-row{border-bottom:15px solid #f5f5f5;background-color:#fff}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-template{display:none}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-row:last-child{border-bottom:10px solid #f5f5f5}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-column{padding:0}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-remove{float:right;width:22px;height:36px;padding:0;display:block;text-align:center;line-height:34px;font-size:21px;font-weight:300;cursor:pointer}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-remove:hover{background-color:red;color:#fff;width:22px;height:22px;border-radius:30px;margin-top:8px;line-height:19px}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-row-head{border-bottom:1px solid #eee;cursor:move}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-row-head h2{text-align:left!important}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-row.closed .toggle-indicator:before{content:"\f140"}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-row .give-move .toggle-indicator:before{margin-left:7px}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-add-repeater-field-section-row-wrap{background-color:#f5f5f5}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-add-repeater-field-section-row{margin:5px}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-field-wrap:last-child{border-bottom:1px solid #eee}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-ui-placeholder-state-highlight{background-color:#68bb6c}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-repeater-field-name{border:0!important;padding:0!important}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-repeater-field-description{color:#aaa;font-size:12px;line-height:18px;display:block;padding-bottom:10px;font-style:italic}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .ui-sortable-helper{display:table!important}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-row.ui-sortable-helper{border-bottom:0}#give-metabox-form-data .give-minmax-wrap{display:block;margin-bottom:.5rem}#give-metabox-form-data .give-minmax-wrap label{display:inline-block;width:120px;font-size:12px}#give-metabox-form-data .give-minmax-wrap input{margin-left:1px;position:relative;z-index:1;border-radius:0 4px 4px 0}#_give_donation_levels_field .give-row:nth-of-type(2) .give-remove{display:none!important}#give-metabox-form-data .give-metabox-tabs{margin:0;max-width:170px;float:left;line-height:1em;padding:0 0 10px;position:relative;background-color:#fafafa;border-right:1px solid #eee;box-sizing:border-box}#give-metabox-form-data .give-metabox-tabs:after{content:"";display:block;width:100%;height:9999em;position:absolute;bottom:-9999em;left:0;background-color:#fafafa;border-right:1px solid #eee}#give-metabox-form-data .give-metabox-tabs li{margin:0;padding:0;display:block;position:relative}#give-metabox-form-data .give-metabox-tabs li a{margin:0;padding:10px;display:block;box-shadow:none;text-decoration:none;line-height:20px!important;border-bottom:1px solid #eee;overflow:hidden}#give-metabox-form-data .give-metabox-tabs li a span.give-label{width:122px;display:inline-block}#give-metabox-form-data .give-metabox-tabs .give-metabox-sub-tabs li{background-color:#f1f1f1}#give-metabox-form-data .give-metabox-tabs .give-metabox-sub-tabs li a{border-bottom-color:#e5e5e5}#give-metabox-form-data .give-metabox-tabs li.active>a{color:#555;position:relative;background-color:#eee}#give-metabox-form-data .give-metabox-tabs li.has-sub-fields.active>a{background-color:#ddd}#give-metabox-form-data .give-metabox-tabs li.has-sub-fields:not(.active):hover ul.give-metabox-sub-tabs{display:block;position:absolute;bottom:0;left:166px;width:170px;max-height:250px}@media (max-width:550px),only screen and (min-width:851px) and (max-width:1025px){#give-metabox-form-data ul.give-metabox-tabs{min-width:40px}#give-metabox-form-data ul.give-metabox-tabs li>a{text-align:center}#give-metabox-form-data ul.give-metabox-tabs li>a:before{margin-right:0;font-size:15px}#give-metabox-form-data ul.give-metabox-tabs li>a span.give-label{display:none}#give-metabox-form-data ul.give-metabox-tabs li>a span.give-icon:before{margin:0}#give-metabox-form-data .give_options_panel{padding-left:40px}#give-metabox-form-data .give_options_panel .give-field-wrap{padding:10px}#give-metabox-form-data .give_options_panel .give-field-wrap label,#give-metabox-form-data .give_options_panel .give-field-wrap span.give-field-label{display:block;float:none;margin:0 0 10px;font-size:14px;width:100%}}.chosen-container-single a.chosen-single{background:#fff!important}.give-docs-link{text-align:right;margin-right:15px}.give-docs-link a{color:#999;text-decoration:none;font-style:italic}.give-docs-link a:hover{color:#0073aa}.give-docs-link a span{font-style:normal}.post-type-give_forms #posts-filter .search-box{display:none}.post-type-give_forms #posts-filter .tablenav.top{position:relative;margin:42px 0 0;height:auto}.post-type-give_forms #posts-filter .tablenav.top #give-forms-advanced-filter{margin:0 0 10px}.post-type-give_forms #posts-filter .tablenav.top #give-forms-advanced-filter #give-forms-goal-filter{width:255px}.post-type-give_forms #posts-filter .tablenav.top #give-forms-advanced-filter a{display:inline-block;margin:0}.post-type-give_forms #posts-filter .tablenav.top #give-forms-advanced-filter #give-forms-search-input{margin-right:6px}.post-type-give_forms #posts-filter .tablenav.top .actions{position:absolute;left:230px;bottom:10px}.post-type-give_forms #posts-filter .tablenav.top .actions.bulkactions{left:0}@-moz-document url-prefix(){.give_options_panel .give-money-symbol{padding:8.5px 10px}}#give-addons.wrap{margin:0!important}.give_forms_page_give-addons #wpbody-content{padding-bottom:0}.give-addons-header{padding:10px 20px;margin:0 0 0 -22px;background:url(../images/give-faces-bg.png) repeat 0 0 #0e0e0e;overflow:hidden}.give-addons-header .give-admin-logo{float:left}.give-addons-header .give-admin-logo a{box-shadow:none;outline:none}.give-addons-header .give-admin-logo img{max-width:237px}.give-addons-header .give-admin-logo span{display:none}.give-core-bundles-container{text-align:center;margin:80px 0 120px}.give-core-bundles-container h2.give-core-bundles-intro-heading{font-size:42px;line-height:1.2em;margin:0 0 20px;padding:0}.give-core-bundles-container p.give-core-bundles-intro-subheading{font-size:20px;margin:0}.give-price-bundles-wrap{padding:0 40px 100px;font-family:Montserrat,sans-serif;max-width:1200px;margin:0 auto}.give-price-bundles-wrap .dashicons-yes{color:#66bb6a;position:relative;top:-2px}.give-price-bundles-wrap .dashicons-no-alt{color:#d75a4a;position:relative;top:-2px}.give-price-bundles-wrap .dashicons-star-filled{color:#ff960e;font-size:16px}div.bundle{float:left;width:31.333%;background:#fff;text-align:center;box-shadow:0 0 20px rgba(0,0,0,.25);position:relative;min-height:775px}div.bundle:hover{box-shadow:0 0 25px rgba(0,0,0,.3)}div.bundle.featured-bundle{margin-top:-50px;width:36.333%;z-index:9;position:relative;min-height:845px}div.bundle.featured-bundle .bundle-title-wrap{background-color:#66bb6a}div.bundle.featured-bundle div.bundle-price-wrap{background:#f5f3e9}div.bundle.featured-bundle div.bundle-price-wrap .bundle-price{font-size:72px}div.bundle.featured-bundle div.bundle-price-wrap .bundle-dollar-sign,div.bundle.featured-bundle div.bundle-price-wrap .bundle-per-month,div.bundle.featured-bundle div.bundle-price-wrap .bundle-price{color:#66bb6a}div.bundle.featured-bundle .bundle-cta-wrap{bottom:50px}div.bundle.featured-bundle .bundle-cta-wrap>a{padding:20px 0;font-size:23px}div.bundle div.bundle-title-wrap{background-color:#8f8f8f;text-align:center;padding:0 20px;margin:0;height:100px;box-sizing:border-box}div.bundle div.bundle-title-wrap>h2{margin:0;padding:0;color:#fff;text-shadow:1px 1px 1px rgba(0,0,0,.3);text-transform:uppercase;font-size:42px;line-height:100px}div.bundle div.bundle-title-wrap .bundle-popular{background:#ff960e;text-shadow:0 1px 0 #c16d00;color:#fff;text-transform:uppercase;padding:5px 12px 4px;margin:0;font-size:15px;border-radius:6px;position:relative;top:-9px;border-bottom:2px solid #c16d00}div.bundle div.bundle-price-wrap{background:#f9f8f2;text-align:center;color:#8f8f8f;padding:40px 0}div.bundle div.bundle-price-wrap .bundle-price{color:#8f8f8f;font-size:64px;line-height:1em}div.bundle div.bundle-price-wrap .bundle-price-p{margin:0 20px 0 0}div.bundle div.bundle-price-wrap .bundle-dollar-sign{color:#8f8f8f;font-size:36px}div.bundle div.bundle-price-wrap .bundle-per-month{color:#8f8f8f;font-size:25px;margin-right:-30px}div.bundle div.bundle-price-wrap .bundle-per-year{display:block;font-style:italic}div.bundle .bundle-quote{text-align:center;color:#999688;padding:25px 0;margin:0;font-style:italic;font-size:16px}ul.bundle-features{list-style:none;padding:25px;border-top:1px solid #ddd;text-align:left;width:225px;margin:0 auto}ul.bundle-features .label-give{font-size:13px;width:25px;height:25px;line-height:25px;padding:0;margin:0 5px 0 0;top:-1px;position:relative;display:inline-block}ul.bundle-features .label-give a{color:#fff}ul.bundle-features>li{margin:10px 0 0;padding:5px 0 0;font-size:15px}ul.bundle-features>li:first-child{margin-top:0;padding-top:0}ul.bundle-features .initial-bundle-feature>span{font-weight:600}ul.bundle-features .highlighted-addons{margin:0 0 0 20px;padding:0;font-size:14px;list-style:none}ul.bundle-features .highlighted-addons>li{list-style-type:none;margin:10px 0 0;padding:0;line-height:1em}ul.bundle-features .magnific-inline{text-decoration:none;color:#000;box-shadow:none;outline:none;cursor:default}ul.bundle-features .magnific-inline .hint,ul.bundle-features .magnific-inline:after,ul.bundle-features .magnific-inline:before{display:none}.bundle-cta-wrap{position:absolute;bottom:36px;left:0;right:0}.bundle-cta-wrap a{text-decoration:none;text-transform:uppercase;color:#fff;background:#66bb6a;border-radius:500px;padding:15px 0;display:block;box-shadow:0 5px 5px 0 rgba(0,0,0,.2);line-height:1.2em}.bundle-cta-wrap a:hover{background:#71c074}.give-addons-directory-wrap{background:#fff;margin:0 0 0 -20px;padding:70px 20px 60px;font-family:Montserrat,sans-serif;text-align:center}.give-addons-directory-wrap title{display:block;font-size:30px;margin:0 0 50px;line-height:1.2em}.give-addons-directory-wrap .type-download{display:inline-block;text-align:left;margin:0 2em 2em 0!important;padding:0;vertical-align:top;width:365px;text-decoration:none;color:inherit;border:1px solid #ddd;min-height:420px;overflow:hidden;background:#fcfcfc;box-shadow:inset 0 1px 0 hsla(0,0%,100%,.2),inset 0 -1px 0 rgba(0,0,0,.1);transition-property:border,background,color;transition-duration:.05s;transition-timing-function:ease-in-out;position:relative}.give-addons-directory-wrap .type-download:hover{border:1px solid #d1d1d1}.give-addons-directory-wrap .type-download>.featured-img img{border-bottom:1px solid #ddd}.give-addons-directory-wrap .type-download .addon-content{*zoom:1;padding:15px 20px}.give-addons-directory-wrap .type-download .addon-content:after,.give-addons-directory-wrap .type-download .addon-content:before{content:" ";display:table}.give-addons-directory-wrap .type-download .addon-content:after{clear:both}.give-addons-directory-wrap .type-download .addon-content .addon-heading{margin:0 0 10px;font-size:20px;line-height:30px}.give-addons-directory-wrap .type-download .addon-content .addon-heading a{color:#66bb6a;outline:none;text-decoration:none;box-shadow:none}.give-addons-directory-wrap .type-download .addon-footer-wrap{border-top:1px solid #ddd;position:absolute;bottom:2px;left:0;width:100%;background-color:#fff;padding:15px 20px}@media (min-width:1350px){div.bundle .bundle-quote{padding-left:45px;padding-right:45px}div.bundle .bundle-cta-wrap{margin:0 40px}div.bundle .bundle-cta-wrap a{font-size:20px}}@media (max-width:1349px){.give-price-bundles-wrap{margin-left:-20px}div.bundle .bundle-quote{padding-left:10px;padding-right:10px}div.bundle .bundle-cta-wrap{margin:0 25px}div.bundle .bundle-cta-wrap a{font-size:18px}}@media (max-width:850px){.give-price-bundles-wrap{padding:40px 30px}.give-core-bundles-container{margin:30px 0 60px}div.bundle,div.bundle.featured-bundle{width:100%;margin:0 0 30px}}#give-dashboard-widgets-wrap .inside{padding-top:0;padding-bottom:0}.give_forms_page_give-reports #give-dashboard-widgets-wrap .inside{padding-left:0}#give-dashboard-widgets-wrap .inside #give-graphs-filter{float:none}#give-dashboard-widgets-wrap .postbox{margin-bottom:10px}#give-dashboard-widgets-wrap table.reports-table{clear:none}#give-dashboard-widgets-wrap #give-date-range-options{float:left}#give-dashboard-widgets-wrap #give-date-range-options>span{float:left;line-height:30px;font-style:italic;padding:0 5px 0 0}#give-graphs-filter{float:right}#give-graphs-filter .tablenav{margin:0 0 0 17px}#give-graphs-filter .tablenav .actions{padding:0}.give-graph .y1Axis{color:#66bb6a!important}.give-graph .y2Axis{color:#546e7a!important}body.give_forms_page_give-payment-history h1.nav-tab-wrapper,body.give_forms_page_give-payment-history h2.nav-tab-wrapper,body.give_forms_page_give-reports h1.nav-tab-wrapper,body.give_forms_page_give-reports h2.nav-tab-wrapper{margin-bottom:10px}body.give_forms_page_give-payment-history .actions,body.give_forms_page_give-reports .actions{padding-top:0}body.give_forms_page_give-payment-history .pagination-links,body.give_forms_page_give-reports .pagination-links{margin-left:10px}body.give_forms_page_give-payment-history p.donor-search,body.give_forms_page_give-reports p.donor-search{margin-right:10px}body.give_forms_page_give-payment-history .tablenav-right .tablenav-pages,body.give_forms_page_give-reports .tablenav-right .tablenav-pages{float:right}body.give_forms_page_give-payment-history .tablenav-right #give-reports-view,body.give_forms_page_give-reports .tablenav-right #give-reports-view{margin-top:0}body.give_forms_page_give-payment-history .tablenav-right .actions,body.give_forms_page_give-payment-history p.search-box,body.give_forms_page_give-reports .tablenav-right .actions,body.give_forms_page_give-reports p.search-box{float:left}body.give_forms_page_give-payment-history .reports-table-nav.tablenav.top,body.give_forms_page_give-reports .reports-table-nav.tablenav.top{width:100%;float:none;margin:0 0 10px}body.give_forms_page_give-payment-history .reports-forms-details-wrap.top,body.give_forms_page_give-reports .reports-forms-details-wrap.top{float:right;overflow:hidden}body.give_forms_page_give-payment-history .reports-forms-details-wrap.top #give-reports-filter,body.give_forms_page_give-reports .reports-forms-details-wrap.top #give-reports-filter{float:left}body.give_forms_page_give-payment-history .reports-forms-details-wrap.top>.actions,body.give_forms_page_give-reports .reports-forms-details-wrap.top>.actions{padding-right:0}body.give_forms_page_give-payment-history .tablenav.bottom,body.give_forms_page_give-reports .tablenav.bottom{margin-top:10px}body.give_forms_page_give-payment-history h2.reports-earnings-title,body.give_forms_page_give-reports h2.reports-earnings-title{margin:7px 0 0}body.give_forms_page_give-payment-history .reports-views-wrap,body.give_forms_page_give-reports .reports-views-wrap{padding:3px 0 0}body.give_forms_page_give-payment-history .wrap.give-reports-donors-wrap,body.give_forms_page_give-reports .wrap.give-reports-donors-wrap{margin-right:0;margin-bottom:10px}body.give_forms_page_give-payment-history .widefat tbody td,body.give_forms_page_give-payment-history .widefat tbody th,body.give_forms_page_give-reports .widefat tbody td,body.give_forms_page_give-reports .widefat tbody th{padding-top:12px;padding-bottom:12px}body.give_forms_page_give-reports table.export-options-table tbody td{padding:20px 12px;vertical-align:top}body.give_forms_page_give-reports table.export-options-table .give-export-form{position:relative}body.give_forms_page_give-reports table.export-options-table .give-export-form .notice-wrap{background-color:transparent;padding:12px 12px 4px;margin:2px 0 -16px -11px;overflow:auto}body.give_forms_page_give-reports table.export-options-table .give-export-form .notice-wrap .spinner{margin:-2px -12px 8px 0}body.give_forms_page_give-reports table.export-options-table span#give-end-wrap input,body.give_forms_page_give-reports table.export-options-table span#give-start-wrap input{width:100px}#export-donor-options-wrap p{padding:20px 0 0;margin:0;font-weight:700}#export-donor-options-wrap ul{max-width:900px;overflow:hidden}#export-donor-options-wrap ul li{margin:0;padding:0 5px 5px 0;box-sizing:border-box;float:left;width:33%}.settings-excludes-list{max-height:120px;overflow:auto;padding:.5rem;border:1px solid #ddd}.settings-excludes-list li{margin:3px 0}#give-tools-recount-form .notice-wrap{position:relative;min-height:25px;margin:10px -12px -12px;background:#efefef;padding:10px 12px 12px;border-top:1px solid #e5e5e5}#give-tools-recount-form .notice-wrap .give-progress{position:absolute;top:15px}#give-tools-recount-form .notice-wrap .spinner{position:absolute;right:14px;top:13px;margin:0}#give-tools-recount-form .notice-wrap #give-batch-success{margin-bottom:6px}.recount-stats-controls form{display:inline}.give-recount-stats-descriptions{margin:8px 0 0;display:block}.give-recount-stats-descriptions span{line-height:24px;font-size:13px;font-style:italic;font-weight:400;color:#aaa;margin:0;display:none}.gateways-report-tablenav .actions.bulkactions{padding-right:0}table.give-table td{vertical-align:middle}table.give-table td.row-title h3{margin:0 0 .4em;font-size:1.2em}table.give-table td.row-title p{font-size:13px;font-style:italic;font-weight:400;color:#aaa;margin:0}#give-graphs-filter>.tablenav{height:auto}#give-logs-filter .search-box{float:right}#give-logs-filter .tablenav.top{float:left;clear:none;margin-top:0}.give-welcome-wrap{margin:0 0 0 -20px;padding:0}.give-welcome-header{background:#fff;height:100%;min-width:1000px}.give-welcome-header .give-welcome-header-inner{max-width:900px;margin:0;padding:25px 250px 20px 30px;position:relative}.give-welcome-header .give-welcome-h1{margin:0 200px 0 0;padding:0;color:#32373c;line-height:1.2em;font-size:2.8em;font-weight:600;display:inline-block;margin-right:15px!important}.give-welcome-header .give-welcome-h1:before{background:url(../images/give-icon-full-circle.svg);width:36px;height:36px;content:" ";display:block;float:left;margin:0 10px 0 0;position:relative;top:4px}.give-welcome-header .give-welcome-text{font-size:20px;margin:20px 0 30px;padding:0}.give-badge{background:url(../images/give-badge.png) no-repeat 0 0 transparent;padding-top:150px;height:52px;width:185px;color:#fff;font-weight:700;font-size:14px;text-align:center;text-shadow:0 1px 0 rgba(0,0,0,.8);margin:0;position:absolute;top:30px;right:20px}.give-welcome-content-wrap{padding:0;margin:0}.give-welcome-content-wrap.give-changelog-wrap{width:1140px}.give-welcome-content-intro{font-size:22px;font-style:italic;color:#8e8e8e;margin:50px 30px 60px;max-width:1400px;min-width:1000px}.give-ipad-showcase-wrap{border:3px solid #9199a5;border-radius:10px;position:relative;box-shadow:0 .75rem 2rem rgba(0,0,0,.4)}.give-ipad-showcase-wrap .give-ipad-showcase-inner{background:#fafbfb;border:10px solid #1e2026;border-radius:7px;display:grid}.give-ipad-showcase-wrap img{height:auto;max-width:100%}.give-feature-section{margin:0;padding:120px 30px}.give-feature-section__inner{display:flex;flex-direction:row;margin:0;align-items:center;justify-content:center;max-width:1400px;min-width:1000px}.give-feature-section:first-of-type{padding-top:0}.give-feature-section__step2{background:#fff}.give-feature-section span.dashicons{width:16px;height:16px;font-size:14px;margin:6px 0 0}.give-feature-section .give-feature-section-item{display:flex;width:50%}.give-feature-section .give-feature-section-item__container{padding:0 60px 0 0;margin:0}.give-feature-section .give-feature-section-item__container-right{padding-left:60px;padding-right:20px}.give-feature-section .give-feature-section-item h3{font-size:24px;font-weight:500;margin:0 0 20px}.give-feature-section .give-feature-section-item h3>.give-feature-section-item-number{background:#fff;width:40px;height:40px;margin:0 10px 0 0;padding:0;line-height:40px;text-align:center;color:#777;box-shadow:0 1px 3px 0 rgba(0,0,0,.2);border-radius:50%;display:inline-block;font-size:22px}.give-feature-section .give-feature-section-item p{font-size:16px}.give-feature-section .give-feature-section-item .give-welcome-gateway-notice{font-size:12px!important;line-height:16px}.give-feature-section .give-feature-btns{margin:30px 0 20px}.give-feature-section .give-feature-btns li{display:inline;margin:0 25px 0 0}.give-feature-section .give-feature-btns .give-feature-btn-link{font-size:15px;line-height:30px}.social-items-wrap,.social-items-wrap>div{display:inline-block}.social-items-wrap .twitter-item-wrap{margin:0 20px 10px 0}.give-welcome-widgets{background:#fff;text-align:center;padding:100px 0 160px}.give-welcome-widgets p{font-size:16px}.give-welcome-widgets__inner{max-width:1400px}.give-welcome-widgets__heading{max-width:500px;margin:0 auto 100px}.give-welcome-widgets__heading h2{font-size:26px;font-weight:500}.give-welcome-widgets__heading .button{margin-top:10px;font-size:15px}.give-welcome-widgets__col{float:left;width:33.33%;box-sizing:border-box;padding:0 20px}.give-welcome-widgets__col h3{font-size:22px;font-weight:500}.give-welcome-widgets__col h3:before{background:url(../images/happy-face.svg) no-repeat top transparent;opacity:.3;content:" ";width:100%;height:85px;display:inline-block;font-size:80px;-moz-transition:.2s all linear;-o-transition:.2s all linear;transition:all .2s linear}.give-welcome-widgets__col p{font-size:13px}.give-welcome-widgets__col:hover h3:before{opacity:.45}.give-welcome-widgets__addons h3:before{background:url(../images/shopping-cart.svg) no-repeat top transparent}.give-welcome-widgets__documentation h3:before{background:url(../images/docs-book.svg) no-repeat top transparent}.give-welcome-widgets__col-inner{max-width:300px;margin:0 auto}.give-welcome-widgets__link{font-weight:700;font-size:15px}.give-contributor-group{list-style:none}.give-contributor-group img{border-radius:50%}.give-contributor-group .give-contributor{margin:0 10px 45px 0;display:inline-block;width:140px;text-align:center}.give-contributor-group .give-contributor a{outline:none;box-shadow:none}.give-contributor-group .give-contributor span{display:block;margin:3px 0 0;font-weight:700}.give-newsletter-form-wrap{margin:10px 0 15px;padding:10px 15px 15px;background:#f1f1f1;border:1px solid #ddd;max-width:900px}.give-newsletter-form-wrap .give-newsletter-intro{font-size:14px;font-style:italic;color:#777;margin:0}.give-newsletter-form-wrap .button,.give-newsletter-form-wrap input[type=email],.give-newsletter-form-wrap input[type=text]{width:100%;height:36px}.give-newsletter-form-wrap td{padding:0 10px 0 0}.give-newsletter-form-wrap div.give-newsletter-confirmation{background:#fff;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1);margin:5px 10px 4px 5px;padding:1px 12px;border-left:4px solid #7ad03a;display:none}.give-newsletter-form-wrap div.give-newsletter-confirmation>p{margin:.5em 0;padding:2px}.give-changelog-wrap .give-changelog{max-height:510px;margin:0 0 100px 30px;padding:20px;overflow-y:scroll;overflow-x:hidden;font-size:18px;line-height:28px;background:#fff;border:1px solid #ddd}.give-changelog-wrap .give-changelog br:first-child,.give-changelog-wrap .give-changelog br:first-child+br{display:none}.give-changelog-wrap .give-changelog h4{margin:0 0 10px;border-bottom:1px solid #e2e2e2;padding:0 0 6px;font-size:20px}.give-changelog-wrap .give-changelog h4+br{display:none}.dashboard_page_give-changelog #wpbody-content,.dashboard_page_give-getting-started #wpbody-content{padding-bottom:0}#give-paypal-connect{background:#039cde;color:#fff;font-size:14px;line-height:30px;font-weight:700;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;box-shadow:none;text-decoration:none;padding:8px 20px;border-radius:40px}#give-paypal-connect span:before{content:" ";width:16px;height:16px;display:inline-block;margin:0 8px 0 0;background-image:url(../images/paypal-48.png);background-size:16px;position:relative;top:2px}#give_donor_export_form{margin:0 0 5px}#give_donor_export #give_donor_export_form_chosen{display:block;margin:5px 0 1px}.column-status .give-donation-status,.column-status .give-test-mode-transactions-label{display:inline-block}.column-status .give-test-mode-transactions-label{margin:0 5px;vertical-align:middle}.give-settings-page .give-settings-section-content{display:flex;background-color:#f4f4f4;border-radius:8px;-webkit-box-shadow:0 0 5px 0 #ddd;-moz-box-shadow:0 0 5px 0 #ddd;box-shadow:0 0 5px 0 #ddd}.give-settings-page .give-settings-section-content .give-settings-section-group-menu{width:250px}.give-settings-page .give-settings-section-content .give-settings-section-group-menu ul,.give-settings-page .give-settings-section-content .give-settings-section-group-menu ul li{margin:0}.give-settings-page .give-settings-section-content .give-settings-section-group-menu ul li a{display:block;padding:20px;text-decoration:none;color:#333;font-weight:600;outline:none;box-shadow:none}.give-settings-page .give-settings-section-content .give-settings-section-group-menu ul li a:hover{background-color:#ebebeb}.give-settings-page .give-settings-section-content .give-settings-section-group-menu ul li a.active{background-color:#fff;border-left:4px solid #66bb6a;color:#333}.give-settings-page .give-settings-section-content .give-settings-section-group-content{width:100%;background:#fff;padding:10px 30px;border-bottom-right-radius:8px;border-top-right-radius:8px;min-height:400px}@media only screen and (max-width:480px){.give-settings-page .give-settings-section-content{flex-flow:row wrap}.give-settings-page .give-settings-section-content .give-settings-section-group-menu{width:100%}.give-settings-page .give-settings-section-content .give-settings-section-group-content{padding:10px}}.give-settings-page{margin:0 20px 0 2px}.give-settings-page #poststuff{padding-top:25px}.give-settings-page .give-settings-header{background:#fff;padding:10px 20px;margin:0 -20px 0 -22px}.give-settings-page .give-settings-heading-sep{font-size:14px;line-height:32px;width:15px}.give-settings-page .nav-tab-wrapper{height:54px;margin:0 -20px 0 -22px}.give-settings-page .give-subsubsub{list-style:none;margin:12px 0 3px;padding:0;float:left}.give-settings-page .give-subsubsub li{display:inline-block;margin:0 0 0 3px;padding:0;white-space:nowrap;color:#d3d3d3;font-weight:300;font-size:16px}.give-settings-page .give-subsubsub a{line-height:2;padding:.2em;margin:0 3px 0 0;text-decoration:none;font-size:14px;box-shadow:none;font-weight:400}.give-settings-page .give-subsubsub a.current{color:#000;font-weight:600;border:none}.give-settings-page .give-setting-tab-body{max-width:1260px}.give-settings-page div.give-submit-wrap{margin:20px 0}.give-settings-page .give_forms_page_give-payment-history .postbox .hndle{cursor:default}.give-settings-page .give-input-field{width:25em}.give-settings-page table table input[type=text]{width:15em}.give-settings-page .give-repeat-setting-field{margin:10px 0}.give-settings-page .give-remove-setting-field{width:25px;height:25px;padding:0;text-align:center;line-height:22px;font-size:21px;font-weight:300;cursor:pointer;margin-left:20px;display:inline-block}.give-settings-page .give-remove-setting-field:hover{background-color:red;color:#fff;border-radius:30px}.give-settings-page .give-forminp p:first-child .give-remove-setting-field{display:none}.give-settings-page .export-options-table tr.give-import-option:nth-child(odd){background:#f4f3f3}.give-settings-page .export-options-table tr.give-import-option:nth-child(odd) th{vertical-align:middle}.give-settings-page .export-options-table .give-import-dropdown:nth-child(2),.give-settings-page .export-options-table tr.give-import-option th:first-child{width:250px}.give-setting-tab-header{clear:both;overflow:hidden;margin:30px 0}.give-setting-tab-header h2{margin-top:8px}.give-setting-tab-header p{margin-top:0;margin-bottom:0}.give-radio-inline ul{margin-top:0}.give-radio-inline li{display:inline-block;margin:0 0 0 15px}.give-radio-inline li:first-child{margin-left:0}.give-tools-setting-page .bulkactions{overflow:visible}.form-table td.give-radio-inline fieldset li>label{margin:5px 0 0!important}div.give-field-description,p.give-field-description{color:#666;font-style:italic;font-size:14px!important;line-height:22px}div.give-field-description strong,p.give-field-description strong{color:#777}.give-setting-tab-header h2{float:left;display:inline-block;width:220px;font-style:italic;color:#aaa;margin:0;font-size:14px}.gateway-enabled-wrap{background-color:#f7f7f7;border:1px solid #e5e5e5}.gateway-enabled-wrap .gateway-enabled-settings-title{display:grid;grid-template-columns:.5fr 2.5fr 5fr 1fr 1fr;grid-gap:20px;border-bottom:1px solid #e5e5e5;padding:1rem;font-weight:600}.gateway-enabled-wrap .ui-sortable-placeholder{visibility:visible!important;border:2px dashed #e5e5e5;transition:all .2s ease}.gateway-enabled-wrap .ui-sortable-helper{background-color:#fafafa;box-shadow:0 4px 20px -5px rgba(0,0,0,.25);border:1px solid #e5e5e5;padding:.5rem!important}.give-payment-gatways-list{margin:0;padding:1rem}.give-payment-gatways-list li{display:grid;grid-template-columns:.5fr 2.5fr 5fr 1fr 1fr;align-items:center;grid-gap:20px;margin:0;padding:.5rem 0}.give-payment-gatways-list li:first-child{padding-top:0}.give-payment-gatways-list li:last-child{padding-bottom:0}.give-payment-gatways-list li .checkout-label{padding:3px 5px}.give-payment-gatways-list li .gateways-checkbox,.give-payment-gatways-list li .gateways-radio{justify-self:center}.give-payment-gatways-list li span.give-drag-handle{padding:3px 4px 0 0;font-size:15px;font-weight:400;color:#bdbdbd;cursor:move}.give-payment-gatways-list li span.give-drag-handle:hover{color:#333}.give-gateways-notice{display:table;width:100%;max-width:1240px;background:#fff;margin:15px 0 0;padding:0;border:1px solid #e3e3e3}.give-gateways-notice .give-gateways-cc-icon{margin:0;padding:0 15px 0 25px;height:30px;width:30px;display:table-cell;vertical-align:middle}.give-gateways-notice .give-gateways-cc-icon svg{position:relative;top:2px;width:50px;height:40px}.give-gateways-notice .give-gateways-notice-title{font-size:16px;margin:20px 20px 0;padding:0}.give-gateways-notice .give-gateways-notice-message{line-height:24px;font-size:14px;margin:5px 20px 20px}.give-gateways-notice .give-gateways-notice-button{display:table-cell;vertical-align:middle;text-align:right;margin:0;padding:0 15px 0 0;width:200px}.give-gateways-notice .give-gateways-notice-button #give-stripe-connect{margin:0 0 10px}.give-gateways-notice .give-gateways-notice-button .give-view-gateways-btn{text-align:center;width:190px}.give-email-tags-wrap{margin:5px 0 0}.give-email-tags-wrap code{font-style:normal;padding:1px 2px;font-size:12px}.give-email-tags-wrap span{display:block;color:#aaa;font-style:italic;margin:0 0 2px;font-size:13px}.give-email-tags-wrap .give_price_tag,.give-email-tags-wrap .give_receipt_id_tag{display:none}.give-setting-tab-header-emails{margin:20px 0}.give-setting-tab-header-emails hr,.give-settings-admin-email-section .tablenav,.give-settings-donor-email-section .tablenav,.give-settings-email-settings-section .tablenav{display:none}.give-settings-admin-email-section .tablenav.bottom+.give-setting-tab-header-emails,.give-settings-donor-email-section .tablenav.bottom+.give-setting-tab-header-emails,.give-settings-email-settings-section .tablenav.bottom+.give-setting-tab-header-emails{margin:20px 0}.give-settings-admin-email-section .tablenav.bottom+.give-setting-tab-header-emails hr,.give-settings-donor-email-section .tablenav.bottom+.give-setting-tab-header-emails hr,.give-settings-email-settings-section .tablenav.bottom+.give-setting-tab-header-emails hr{display:block}.giveemailnotifications .check-column{padding:13px 10px 0 20px!important}.giveemailnotifications td.check-column input{display:none}.giveemailnotifications th.check-column .give-email-notification-status{color:#fff;cursor:pointer}.giveemailnotifications th.check-column .give-email-notification-status[data-edit="1"] i.dashicons{border-radius:1em;padding:2px}.giveemailnotifications th.check-column .give-email-notification-disabled:hover .dashicons-no-alt,.giveemailnotifications th.check-column .give-email-notification-enabled .dashicons-yes{background:#46b450}.giveemailnotifications th.check-column .give-email-notification-enabled .dashicons-lock{color:#46b450}.giveemailnotifications th.check-column .give-email-notification-disabled .dashicons-no-alt,.giveemailnotifications th.check-column .give-email-notification-enabled:hover .dashicons-yes{background:#bbb}.giveemailnotifications th.check-column .give-email-notification-disabled .dashicons-lock{color:#bbb}.giveemailnotifications th.check-column .dashicons-no-alt:hover:before{content:"\f147"!important}.giveemailnotifications th.check-column .dashicons-yes:hover:before{content:"\f335"!important}.giveemailnotifications .spinner.is-active{margin:0 0 0 2px;float:none}#system-info-textarea{width:800px;height:600px;font-family:Menlo,Monaco,monospace;background:#fff;white-space:pre;overflow:auto;display:block;direction:ltr}#give-download-sysinfo{margin:0}#api .tablenav .actions{overflow:visible}a.give-delete{color:#a00}.give-table thead th{padding:8px 10px!important}.post-type-give_forms .mce-container iframe,.post-type-give_forms .wp-editor-area{min-height:400px}.give-field-description{color:#aaa;font-style:italic;margin:0;padding-top:.5em}.give-image-thumb{position:relative;margin-top:14px}.give-image-thumb span.give-delete-image-thumb{position:absolute;background:red;color:#fff;border-radius:30px;left:-10px;top:-10px;cursor:pointer}.give-image-thumb img{max-width:250px;border:4px solid #fff}.give_email_access_link_tag{display:none}.give-license-settings-wrap{max-width:1240px;min-width:1000px;margin:20px 0 0 -10px;padding:0}.give-license-top-widget{border:1px solid #dbdbdb;min-height:250px}.give-license-top-widget .give-license-widget-heading{font-size:20px;margin:0 0 15px;padding:0 0 15px;border-bottom:1px solid #dbdbdb;line-height:1.2em}.give-license-top-widget .give-license-widget-heading .dashicons{height:25px;width:25px;font-size:28px;margin:-5px 10px 0 0}.give-license-top-widget .give-field-description{margin:0 0 20px;padding:0}#give-license-activator-wrap{background:#fff;margin:0;padding:30px}#give-license-activator-wrap .give-license-activation-form{background:#f4f4f4;padding:10px;position:relative}#give-license-activator-wrap .give-license-notices{position:absolute;background:#f4f4f4;top:0;left:0;height:100%;width:100%;padding:20px;z-index:3;box-sizing:border-box;display:none}#give-license-activator-wrap .give-license-notices .notice{position:relative;padding-right:40px}#give-license-activator-wrap #give-license-activator{font-size:22px;height:55px;padding:0 15px;margin:0 0 10px;width:100%}#give-license-activator-wrap .button{height:45px;width:100%;font-size:18px;display:block;clear:both;margin:0}#give-addon-uploader-wrap{background:#fff;padding:30px 25px 25px;margin:0}.give-upload-addon-form-wrap{position:relative}.give-upload-addon-form-wrap .give-upload-addon-instructions{margin:0;padding:0;opacity:.4;font-size:16px}.give-upload-addon-form-wrap .give-upload-addon-instructions span{display:block;margin:8px 0;font-size:14px}.give-upload-addon-form-wrap #give-upload-addon-file-select{display:none}.give-upload-addon-form-wrap .give-spinner-wrap{position:absolute;left:0;top:0;right:0;bottom:0;z-index:99;background-color:#fff}.give-upload-addon-form-wrap .give-spinner-wrap .give-spinner-inner{margin-top:5%;margin-left:42%}.give-upload-addon-form{background:#f4f4f4;padding:25px;text-align:center;outline:2px dashed #e2e2e2;outline-offset:-10px;transition:outline-offset .15s ease-in-out,background-color .15s linear;position:relative}.give-upload-addon-form.give-dropzone-active{outline-offset:-13px;outline:2px dashed #c6c6c6;background:#eaeaea}.give-upload-addon-form .give-addon-upload-notices{position:absolute;background:hsla(0,0%,100%,.66);top:0;left:0;height:100%;width:100%;padding:20px;z-index:3;text-align:left;box-sizing:border-box;display:none}.give-upload-addon-form .give-activate-addon-wrap{display:none;border:1px solid #dbdbdb;background:#fff;position:absolute;padding-top:20px;top:0;left:0;height:100%;width:100%;z-index:4;box-sizing:border-box}.give-upload-addon-form .give-activate-addon-wrap .dashicons{color:#66bb6a}#give-licenses-container{position:relative}#give-licenses-container .give-spinner-wrap{position:absolute;left:0;top:0;right:0;bottom:0;z-index:99;background-color:#fff}#give-licenses-container .give-spinner-wrap .give-spinner-inner{margin-top:5%;margin-left:45%}.give-licenses-list-header{margin:20px 0 30px;padding:0}.give-licenses-list-header h2{float:left;margin:0 0 20px;padding:0;font-size:18px}.give-licenses-list-header #give-refresh-button-wrap{float:left;margin:-6px 0 0 25px}.give-licenses-list-header #give-refresh-button-wrap #give-last-refresh-notice{margin:0 0 0 10px;line-height:28px;color:#666}.give-licenses-list-header hr{clear:both}.give-addon-wrap{border:1px solid #dbdbdb;background:#fff;padding:0;margin:0 0 20px;position:relative}.give-addon-wrap .give-license-top{background:#f4f4f4;border-bottom:1px solid #dbdbdb;display:flex;color:#333}.give-addon-wrap .give-license-notice-container.give-addon-notice-shown{background:#f4f4f4;border-bottom:1px solid #dbdbdb;padding:30px}.give-addon-wrap .give-license-notice-container.give-addon-notice-shown .notice{margin:0}.give-addon-wrap .give-license-top-header{display:block;font-size:15px;margin:0 0 20px;font-weight:700;color:#23282d}.give-addon-wrap .give-license-top-column{float:left;padding:30px;flex:1}.give-addon-wrap .give-license-top-column.give-license-info-field-wrap,.give-addon-wrap .give-license-top-column.give-license-key-field-wrap{border-right:1px solid #dbdbdb}.give-addon-wrap .give-license-top-column.give-license-key-field-wrap{flex:1.45;padding-right:10px}.give-addon-wrap .give-license-top-column.give-license-info-field-wrap .give-field-description{padding-top:0}.give-addon-wrap .give-license__status{margin:10px 0 0 -4px;padding:0}.give-addon-wrap .give-license__status .dashicons-yes{color:#66bb6a}.give-addon-wrap .give-license__status .dashicons-no{color:#a00}.give-addon-wrap .give-license__key{display:inline-block}.give-addon-wrap .give-license__key input[type=text]{margin:0 10px 0 0}.give-addon-wrap .give-license__key button{font-size:15px;position:relative;top:-1px}@media (min-width:1400px){.give-addon-wrap .give-license__key input[type=text]{min-width:290px;height:40px;font-size:18px;padding:10px}.give-addon-wrap .give-license__key button{width:110px;height:40px}}@media (max-width:1399px){.give-addon-wrap .give-license__key input[type=text]{min-width:230px;height:35px;font-size:15px;padding:8px}.give-addon-wrap .give-license__key button{width:85px;height:35px;font-size:1em}}.give-addon-wrap .give-license-action-link{display:block;margin:0 0 15px;box-shadow:none}.give-addon-wrap .give-license-renewal-date .dashicons{opacity:.8;margin:0 3px 0 0;position:relative;top:-2px}.give-addon-wrap .give-license-activations-remaining-icon{border-radius:100%;height:20px;width:20px;display:inline-block;padding:1px;font-size:12px;line-height:20px;text-align:center;font-weight:700;margin:0 2px 0 0}.give-addon-wrap .give-plugin__info{padding:6px 9px}.give-addon-wrap .give-plugin__status{border:none;padding:0 5px;line-height:20px!important}.give-addon-info-wrap{margin:30px;padding:20px;background:#f4f4f4;border:1px solid #dbdbdb;color:#333}.give-addon-info-wrap .give-addon-info-left{float:left}.give-addon-info-wrap .give-addon-name{font-weight:700;font-size:14px}.give-addon-info-wrap .give-addon-version{font-size:11px;margin:0 0 0 20px}.give-addon-info-wrap .give-addon-info-right{float:right}.give-addon-info-wrap .give-addon-info-right .give-button{margin:-5px 0 0;position:relative;top:2px}.give-addon-info-wrap .give-addon-info-right .give-button .dashicons{font-size:14px;width:14px;height:14px;margin-right:3px;margin-top:5px}.give-addon-info-wrap .give-addon-activation-status{border-radius:4px;color:#fff;background:#777;padding:3px 8px;margin:0 15px 0 0;font-size:11px}.give-addon-info-wrap .give-addon-activation-status__activated{background:#7ad03a;text-shadow:0 0 1px #4b8420}.give-addon-info-wrap .give-addon-view-changelog{margin:0 15px 0 0;font-size:12px}.give-filters{clear:both;background:#f5f5f5;border:1px solid #dfdfdf;padding:12px 12px 0}.give-filters .give-donation-forms-filter .chosen-single{height:28px;line-height:28px}.give-filters .chosen-container-single .chosen-single div b{background-position:0 4px}.give-filters .chosen-container-active.chosen-with-drop .chosen-single div b{background-position:-18px 6px}.give-filters #give-payment-form-filter,.give-filters #give_donation_forms_filter{display:inline-block;width:300px}@media screen and (max-width:782px){.give-filters #give-payment-form-filter,.give-filters #give_donation_forms_filter{width:100%}}.give-filters #give-payment-date-filters label,.give-filters #give-payment-form-filter label{vertical-align:initial}.give-filters #give-payment-date-filters label.give-donation-forms-filter-label,.give-filters #give-payment-form-filter label.give-donation-forms-filter-label{vertical-align:middle}.give-filters #give_donation_forms_filter{width:255px}@media screen and (max-width:782px){.give-filters #give_donation_forms_filter{width:100%;max-width:100%}}.give-filters:after{content:"";display:table;clear:both}.give-filter{display:block;margin-bottom:12px;width:100%}.give-filter:after{content:"";display:table;clear:both}.give-filter label{display:block;margin-right:4px}.give-filter input{margin:0}.give-filter input[type=text]{height:28px;width:100%}.give-filter input[type=search],.give-filter input[type=text]{height:28px}.give-filter .button{height:28px;line-height:26px;margin:0;padding:0 10px 1px}.give-filter select{width:100%}@media screen and (min-width:783px){.give-filter{float:left;margin-right:18px;width:auto}.give-filter label{display:inline-block}.give-filter input[type=text]{display:inline-block;width:144px}}.give-filter-search input[type=search]#give-payments-search-input{display:block;float:left;width:205px;max-width:100%}.give-filter-search input[type=submit]{display:block;float:right;width:30%}@media screen and (min-width:783px){.give-filter-search input[type=search]{display:inline-block;margin-right:4px;width:auto}.give-filter-search input[type=submit]{display:inline-block;width:auto}}@media screen and (min-width:600px){.give-filter-half{float:left;width:49%}.give-filter-half:last-child{float:right}}@media screen and (min-width:783px){.give-filter-half{width:auto}.give-filter-half:last-child{float:left}.give-filter-half input[type=text]{width:96px}}.give-clear-filters-button{margin-left:8px}.give-submit-wrap{clear:both;background:#f5f5f5;border:1px solid #dfdfdf;margin:8px 0;padding:12px;font-size:13px;line-height:2.1em}#give-payment-filters ul.subsubsub{margin-bottom:8px}#give-payments-advanced-filter ul.subsubsub{margin-bottom:12px}#give-payments-filter .tablenav.top{float:none}#give-payments-filter .tablenav.top .bulkactions{margin-top:1px;padding-top:0}#give-payments-filter .give-email-column-value{font-size:14px;font-weight:700}#give-payments-filter #the-list .check-column input{margin-top:1px}#give-payments-filter .column-details{width:50px}#give-payments-filter .column-amount{width:120px}tr.status-refunded td{background:#cecece;border-top-color:#ccc}.wp-list-table.forms th#date{width:140px}.give-mobile-link{line-height:32px;vertical-align:middle}.give-mobile-link img{max-width:80%;height:auto;float:left}.give-donation-status>span{display:inline-block;width:12px;height:12px;position:relative;top:1px;margin:0;padding:0;border-radius:50%;background:#888;line-height:16px}.give-donation-status.status-pending>span{background-color:#ffba00}.give-donation-status.status-complete>span,.give-donation-status.status-publish>span{background-color:#7ad03a}.give-donation-status.status-refunded>span{background-color:#777}.give-donation-status.status-failed>span{background-color:#a00}.give-donation-status.status-abandoned>span{background-color:#333}.give-donation-status.status-revoked>span{background-color:#d9534f}.give-donation-status.status-give_subscription>span,.give-donation-status.status-renewal>span,.give-donation-status.status-subscription>span{background-color:#5bc0de}#test-payment-label{padding:.2em .4em .3em;font-size:11px;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em;background-color:#ffba00;margin:0 15px;vertical-align:middle}#test-payment-label:hover{color:#fff;text-decoration:none}#give-payments-filter .give-payment-id{padding:.2em .4em .3em;font-size:11px;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em;font-weight:400}#give-payments-filter .give-payment-id:hover{color:#fff;text-decoration:none}#give-payments-filter .column-details{padding-right:30px}#give-payments-filter .give-donation-status{display:inline-block}#give-order-update .give-donation-status{display:inline-block;float:none;margin:0 10px;position:relative;top:3px}#give-order-update .give-order-top{border-bottom:1px solid #eee;overflow-x:auto;white-space:nowrap;width:100%}#give-order-update .give-order-top h3.hndle{float:left;border:none;display:inline-block}#give-order-update .give-order-top .delete-donation{display:inline-block;float:right}#give-order-update .give-order-top .delete-donation a{width:18px;height:16px;display:block;margin:11px 15px;content:"\f182";font-size:18px;color:#b5b5b5}#give-order-update .give-order-top .delete-donation a:focus,#give-order-update .give-order-top .delete-donation a:hover{color:red;box-shadow:none}.column-donation_form .donation-level-text-wrap{font-style:italic;display:block}@media handheld,only screen and (max-width:640px){.wp-list-table.forms th{width:auto!important}}.download_page_give-payment-history .ui-dialog .ui-dialog-titlebar-close span{margin-left:-8px;margin-top:-8px}.give-admin-box .label{font-weight:600}.give-admin-box-inside{margin:0;padding:3px 10px;clear:both;border-bottom:1px solid #eee;word-break:break-word}.give-admin-box-inside .strong{font-weight:600}.give-admin-box .right{float:right}#give-order-details .inside,#give-order-update .inside{margin:0;padding:0}#give-order-update input.give_datepicker{width:180px}#give-order-update input[type=number].give-payment-time-hour,#give-order-update input[type=number].give-payment-time-min{width:50px}.give-admin-box-inside:last-child{border-bottom:0}#give-edit-order-form .data-payment-key{word-break:break-all}.give-order-update-box #major-publishing-actions .button-secondary{margin-right:10px}#give-donation-overview th{text-align:left}#give-donation-overview .give-select-chosen{width:97%}#give-edit-order-form .row{margin-top:10px}#give-donation-overview ul,#give-donor-details .order-data-address input,#give-donor-details .order-data-column p.data input,#give-edit-order-form .column input,#give-order-address-country-wrap select{clear:both;display:block}.give-order-data input.small-text{margin:0}#give-order-update span.label{display:inline;width:50px}.give-order-update-box .button-primary{margin-right:0}#give-edit-order-form .column .description{padding-right:10px}#give-donation-overview .inside>ul>li,#give-donation-overview .row>ul>li,#give-edit-order-form .column{display:inline-block;position:relative;vertical-align:top}#give-donation-overview ul{font-size:0}#give-donation-overview ul li{font-size:13px}#give-donation-overview ul li.actions{text-align:right;min-width:200px}#give-donation-overview ul li.remove{text-align:right}#give-donation-overview ul .row{padding:12px;border-bottom:1px solid #eee}#give-order-data .data span{color:#666;font-weight:600}input.give-price-field{width:80px;padding:3px 5px}.give_forms_page_give-payment-history.js .postbox .hndle{cursor:default}#give-payment-notes textarea{min-height:150px}#give-payment-notes #give-add-payment-note{margin:6px 0 15px}#give_comment{min-height:150px}#give-billing-details .column>div{margin:0 0 10px}#give-billing-details label{display:block;margin-bottom:5px}#give-billing-details .column-container{padding:5px 0 10px}#give-billing-details input[type=text]{width:98%}#give-billing-details .chosen-container{width:98%!important}@media screen and (min-width:1200px){#give-edit-order-form .column{width:33%}#give-order-address .column{width:49%}#give-donation-overview.columns-4 li.actions{width:25%;margin-top:0;margin-right:0}}@media screen and (max-width:1199px){#give-edit-order-form .column{width:49%}}@media screen and (max-width:782px){.order-data-column input[type=email]{padding:6px 10px}}#give-donation-overview .inside,#give-donor-details .inside{margin-top:0}.give_forms_page_give-payment-history #give-dashboard-widgets-wrap #side-sortables{padding-top:0}.give-select-chosen .spinner{position:absolute;right:5px;top:2px;z-index:999}.give-select-chosen-ajax .spinner{visibility:visible}.give-select-chosen-ajax.chosen-container-single .chosen-search input[type=text],.give-select-chosen-ajax .chosen-search input[type=text]{background-image:none!important}.give-dashboard-widget .give-dashboard-today{text-align:center}.give-dashboard-widget .give-dashboard-today .give-dashboard-date-today{margin:10px 0 0;padding:0}.give-dashboard-widget .give-dashboard-today .give-dashboard-happy-day{padding:3px;margin:0}.give-dashboard-widget .give-dashboard-today .give-dashboard-today-earnings{font-size:42px;color:#4ead61;font-weight:700;margin:15px 0 0;line-height:1}.give-dashboard-widget .give-dashboard-today .give-donations-today{font-size:18px;font-weight:700;margin:0 0 30px;padding:4px 0 1px}.give-dashboard-widget .give-dashboard-today .give-last-seven{font-size:14px;font-weight:700;padding:0;margin:0 0 30px}.give-dashboard-widget .give-table-stats{width:100%;text-align:center;margin:0;table-layout:fixed;border-top:1px solid #ececec;border-spacing:0}.give-dashboard-widget .give-table-stats .give-dashboard-stat-total,.give-dashboard-widget .give-table-stats .give-dashboard-stat-total-label{padding:0;margin:0}.give-dashboard-widget .give-table-stats .give-dashboard-stat-total{color:#4ead61;font-weight:700;font-size:16px}#give_dashboard_sales>.inside{padding:0}#give_dashboard_sales .give-table-stats td{padding:10px 0}#give_dashboard_sales .give-table-stats td:first-of-type{border-right:1px solid #ececec}#give_dashboard_sales .give-table-stats tr#give-table-stats-tr-1 td{border-bottom:1px solid #ececec}#dashboard_right_now .give-forms-count:before{font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:18px;width:18px;height:18px;content:"\e800"}.give-range_slider_field{margin-top:.8rem}.give_forms_page_give-donors .wp-heading-inline+.notice:first-of-type{margin-top:25px}.give_forms_page_give-donors .give-nav-tab-wrapper{margin:10px -20px 20px}.give_forms_page_give-donors #give-donors-filter{position:relative}.give_forms_page_give-donors #give-donors-filter p.search-box{margin:0}.give_forms_page_give-donors #give-donors-search-filter{display:block;overflow:hidden}.give_forms_page_give-donors #give-donor-card-wrapper{margin-left:-1px;z-index:2;min-height:200px}.give_forms_page_give-donors #give-donor-card-wrapper input{font-weight:400}.give_forms_page_give-donors #give-donor-card-wrapper .donor-section{border-bottom:1px solid #eee;margin-bottom:10px}.give_forms_page_give-donors #give-donor-card-wrapper .donor-section .give-donor-search-box{margin-right:25px;width:auto;display:inline-block;float:left}.give_forms_page_give-donors #give-donor-card-wrapper .donor-section table{margin-bottom:0}.give_forms_page_give-donors #give-donor-card-wrapper>div:first-child{padding-top:20px}.give_forms_page_give-donors #give-donor-card-wrapper>div:last-child{padding-bottom:20px;border:none}.give_forms_page_give-donors #give-donor-card-wrapper .avatar-wrap{padding:0 15px 15px 0;text-align:center;float:left}.give_forms_page_give-donors #give-donor-card-wrapper .avatar-wrap img{border-radius:50%}.give_forms_page_give-donors #give-donor-card-wrapper a.delete{text-decoration:none;color:red;margin-right:5px}.give_forms_page_give-donors #give-donor-card-wrapper .donor-bio-header .donor-since{margin:10px 0;font-size:16px}.give_forms_page_give-donors #give-donor-card-wrapper .donor-bio-header .donor-id{display:inline-block;font-size:24px;font-weight:600;margin-right:10px}.give_forms_page_give-donors #give-donor-card-wrapper .donor-bio-header .donor-name-wrap{display:inline-block}.give_forms_page_give-donors #give-donor-card-wrapper .donor-bio-header .donor-edit-link{margin-bottom:15px}.give_forms_page_give-donors #give-donor-filters .give-donor-search-box{display:inline-block;float:left;margin-right:18px}.give_forms_page_give-donors #give-donor-filters .give-donor-search-box input#give-donors-search-input{width:205px;max-width:100%}.give_forms_page_give-donors #give-donor-filters label{vertical-align:initial}.give_forms_page_give-donors #give-donor-filters label.give-donation-forms-filter-label{vertical-align:middle}.give_forms_page_give-donors .donor-main-wrapper{clear:both;margin:0 0 20px}@media (max-width:655px){.give_forms_page_give-donors .donor-main-wrapper{width:100%}}.give_forms_page_give-donors .donor-main-wrapper table{margin:0}.give_forms_page_give-donors .donor-main-wrapper input[type=email],.give_forms_page_give-donors .donor-main-wrapper input[type=number],.give_forms_page_give-donors .donor-main-wrapper input[type=text]{width:200px}.give_forms_page_give-donors #donor-summary{padding:0 20px}.give_forms_page_give-donors #donor-summary:after{font-family:dashicons;content:"\f110";position:absolute;top:10px;right:10px;font-size:100px;color:#f0f0f0;z-index:0}.give_forms_page_give-donors #give-donor-card-wrapper .donor-address-wrapper{width:202px}.give_forms_page_give-donors #give-donor-card-wrapper .donor-address-wrapper span[data-key=line2]{display:table;clear:both}.give_forms_page_give-donors #give-donor-card-wrapper .donor-address-wrapper select{width:200px}.give_forms_page_give-donors #give-donor-card-wrapper .donor-info{min-height:185px}.give_forms_page_give-donors #give-donor-card-wrapper .info-wrapper{min-height:125px}.give_forms_page_give-donors .donor-info .donor-name{font-size:24px;font-weight:600}.give_forms_page_give-donors #disconnect-donor,.give_forms_page_give-donors #view-user-profile{font-size:12px;font-weight:400;text-decoration:none}.give_forms_page_give-donors #donor-edit-actions{text-align:center;margin-bottom:20px;line-height:28px}.give_forms_page_give-donors #donor-edit-actions .button-secondary{margin-right:10px}.give_forms_page_give-donors #give-donor-card-wrapper .edit-item{display:none}.give_forms_page_give-donors #give-donor-card-wrapper .give_user_search_results{left:1px;top:16px}.give_forms_page_give-donors #give-donor-card-wrapper .give_user_search_results ul{width:200px}.give_forms_page_give-donors #donor-stats-wrapper{margin:0 auto;text-align:center;padding:15px}.give_forms_page_give-donors #donor-stats-wrapper ul{margin:0;padding:0;overflow:hidden}.give_forms_page_give-donors #donor-stats-wrapper ul li{width:50%;float:left;line-height:22px;font-size:14px;margin:0}.give_forms_page_give-donors #donor-stats-wrapper a{text-decoration:none}.give_forms_page_give-donors #donor-stats-wrapper .dashicons{color:#888}.give_forms_page_give-donors #donor-tables-wrapper table{width:100%;text-align:center}.give_forms_page_give-donors #donor-tables-wrapper th{text-align:center}.give_forms_page_give-donors #donor-tables-wrapper .donations tr>td:first-child,.give_forms_page_give-donors #donor-tables-wrapper .donations tr>th:first-child,.give_forms_page_give-donors #donor-tables-wrapper .emails tr>td:first-child,.give_forms_page_give-donors #donor-tables-wrapper .emails tr>th:first-child{text-align:left}.give_forms_page_give-donors #donor-tables-wrapper .donations tr>td:only-child{text-align:center}.give_forms_page_give-donors #donor-notes-wrapper{min-height:50px}.give_forms_page_give-donors .donor-notes-header img,.give_forms_page_give-donors .donor-notes-header span{font-weight:600;line-height:30px;vertical-align:middle}.give_forms_page_give-donors .donor-note-input{width:100%;margin-bottom:5px}.give_forms_page_give-donors #give-donor-notes div:nth-of-type(2n){background-color:#f9f9f9}.give_forms_page_give-donors #give-donor-notes .donor-note-wrapper{border-bottom:1px solid #f9f9f9;min-height:38px;padding:0}.give_forms_page_give-donors #give-donor-notes .donor-note-wrapper .note-content-wrap{padding:10px 12px;line-height:20px;font-size:14px}.give_forms_page_give-donors #give-donor-notes .give-no-donor-notes{text-align:center;padding:20px}.give_forms_page_give-donors .donor-note-wrapper span{display:block}.give_forms_page_give-donors .delete-donor{text-align:center}.give_forms_page_give-donors .give-lock-block{margin-left:-25px;text-decoration:none;font-size:14px;margin-right:3px}.give_forms_page_give-donors .give-lock-block i{color:#000;font-size:14px}.give_forms_page_give-donors #donor-address-wrapper .give-no-address-message{margin:.5rem 1%;line-height:3.4em}.give_forms_page_give-donors #donor-address-wrapper .give-donor-addresses .inside{padding-bottom:0}.give_forms_page_give-donors #donor-address-wrapper .add-new-address{margin:.5rem 1%!important}.give_forms_page_give-donors #donor-address-wrapper .add-new-address-form-hidden{position:absolute;right:13px;left:13px;top:0;visibility:hidden}.give_forms_page_give-donors #donor-address-wrapper .all-address .address{min-height:146px;border:1px solid #dad9d9;padding:9px;border-radius:5px;background-color:#fff}.give_forms_page_give-donors #donor-address-wrapper .all-address .address .address-number-label{color:grey;cursor:default}.give_forms_page_give-donors #donor-address-wrapper .all-address .address a{text-decoration:none}.give_forms_page_give-donors .comments td:nth-child(3n){text-align:left}.give_forms_page_give-donors .give-donor-admin-avatar{width:40px;height:40px;border-radius:50%;border:1px solid #e5e5e5;float:left;vertical-align:middle;margin-right:10px;line-height:40px;text-align:center}.give_forms_page_give-donors .give-donor-admin-avatar img{border-radius:50%;width:40px;height:40px}.give_forms_page_give-donors .give-donor-name-text{font-weight:600;font-size:14px}.give_forms_page_give-donors .give-donor-id{color:#555}.give_forms_page_give-donors .give-donor-name:focus{box-shadow:none;outline:none}.give_forms_page_give-donors #donor-avatar .give-donor-admin-avatar,.give_forms_page_give-donors #donor-avatar img{width:96px;height:96px;line-height:96px;margin-right:0;font-size:36px}@media screen and (max-width:782px){#wp-content-media-buttons a.give-thickbox{padding:6px 14px;line-height:normal;font-size:14px;height:auto}.wp-media-buttons span#give-media-button{margin-top:0!important;margin-left:2px!important}}.mce-primary.mce-give-primary button{padding-right:10px;padding-left:10px}.wp-core-ui .give-admin-button{padding-left:7px;padding-right:7px}.give-admin-button-icon{display:inline-block;width:18px;height:18px;vertical-align:text-top;margin:0 2px}.give-admin-button-icon:before{font:400 18px/1 dashicons;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.give-admin-button-icon-update:before{content:"\f463"}.give-status-table{margin-bottom:1em}.give-status-table h2{font-size:14px;margin:0}.give-status-table tr:nth-child(2n) td,.give-status-table tr:nth-child(2n) th{background:#fcfcfc}.give-status-table th{font-weight:700;padding:9px}.give-status-table td:first-child{width:33%}.give-status-table td.help{width:1em}.give-status-table td{padding:9px;font-size:1.1em}.give-status-table td mark{background:transparent none}.give-status-table td mark.yes{color:#7ad03a}.give-status-table td mark.no{color:#999}.give-status-table td mark.error{color:#a00}.give-status-table td ul{margin:0}.wrap div.give-debug-report-wrapper{margin-bottom:5px}.wrap div.give-debug-report-wrapper p{font-size:18px;margin:1em 0 .7em;padding:0}.wrap div.give-debug-report-wrapper .give-debug-report-actions{margin:0 0 1.7em}.wrap div.give-debug-report-wrapper .give-debug-report-actions .js-give-debug-report-button{margin-right:10px}.wrap div.give-debug-report-wrapper .give-debug-report-actions .dashicons{font-size:16px;position:relative;top:4px;left:-2px}.give-debug-report{display:none;margin:10px 0;padding:0;position:relative}.give-debug-report textarea{font-family:monospace;width:100%;margin:0;height:300px;padding:20px;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;resize:none;font-size:12px;line-height:20px;outline:0}.give-progress{height:15px;width:95%;border-radius:4px;overflow:hidden;background-color:#f5f5f5}.give-progress>div{height:100%;width:0}.admin-color-fresh .give-progress div,.give-progress div{background:#0073aa}.admin-color-light .give-progress div{background:#888}.admin-color-blue .give-progress div{background:#096484}.admin-color-coffee .give-progress div{background:#c7a589}.admin-color-ectoplasm .give-progress div{background:#a3b745}.admin-color-midnight .give-progress div{background:#e14d43}.admin-color-sunrise .give-progress div{background:#dd823b}.give-spinner-wrapper{position:absolute;left:0;right:0;bottom:0;top:0;background:hsla(0,0%,96.1%,.57);z-index:1;display:none}.give-spinner-wrapper.is-active{display:inline-block}.give-spinner-wrapper .aligncenter{position:absolute;top:50%;left:50%;margin:10px 10px 0 0}.give-spinner.spinner.is-active{margin:0 0 0 2px;float:none}ul.give-radio-inline input,ul.give-radio-inline li{display:inline-block!important}.chosen-container a{transition:none}.give-width-25em{width:25em}.give-spinner-wrap{position:relative}.give-spinner-wrap .spinner{float:none;margin-top:0;margin-right:0}.give-update-panel-content p{font-size:16px}#give-updates .give-update-panel-content{margin:0 0 30px}#give-updates .give-update-panel-content p{font-size:17px;font-style:italic;margin:0}#give-updates .dashicons-no-alt{color:red}#give-updates .dashicons-yes{color:green}#give-updates #give-db-updates .spinner{margin-top:0}#give-updates #give-updates-content{max-width:1200px}#give-updates .give-update-paused-text-p{margin:0 20px 0 0;line-height:30px;font-style:italic;font-size:14px}body.give_forms_page_give-updates .give-run-update-containt .give-run-update-button{margin-right:10px}.give-blank-slate{background:#fff;border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04);margin:0 auto;padding:40px;text-align:center}.give-blank-slate :last-child{margin-bottom:0}.give-blank-slate__cta,.give-blank-slate__heading,.give-blank-slate__help,.give-blank-slate__message{margin:0 0 10px}.give-blank-slate__image{display:block;height:80px!important;margin:0 auto 10px;width:auto}.give-blank-slate__select{margin-bottom:20px}.give-blank-slate__help{color:#666;font-style:italic}.give-blank-slate__help a{display:inline-block;text-decoration:underline}.give-blank-slate a.give-blank-slate__cta{display:inline-block;font-size:1.2em;height:auto;margin:0 0 10px;padding:.75em 1.5em}.chosen-container-single .chosen-single{background:#fff;height:30px;line-height:30px;border:1px solid #7e8993;box-shadow:none}.chosen-container-single .chosen-single span{font-size:14px}.chosen-container-single .chosen-single div b,.chosen-container-single.chosen-with-drop .chosen-single div b{background-position-y:4px}.chosen-container-active.chosen-with-drop .chosen-single{background:#fff}.chosen-container .chosen-results li.highlighted{background:#3875d7;color:#fff}.chosen-container-multi .chosen-choices{border:1px solid #aaa;background-image:none}.chosen-container-multi .chosen-choices li.search-choice{background-image:none}.give-tools-setting-page-import h1.handle{padding:15px 0 0}.give-tools-setting-page-import .give-progress-steps{width:100%;padding:0 0 24px;margin-left:0;list-style:none outside;overflow:hidden;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex}.give-tools-setting-page-import .give-progress-steps li{width:25%;float:left;padding:0 0 1.2em;margin:0;text-align:center;position:relative;border-bottom:4px solid #ccc;line-height:1.4em}.give-tools-setting-page-import .give-progress-steps li.active{border-color:#4ead61;color:#4ead61}.give-tools-setting-page-import .give-progress-steps li.active:before{border-color:#4ead61;color:#4ead61;background:#4ead61}.give-tools-setting-page-import .give-progress-steps li:before{content:"";border:4px solid #ccc;border-radius:100%;width:10px;height:10px;position:absolute;bottom:0;left:50%;margin-left:-6px;margin-bottom:-10px;background:#fff}.give-tools-setting-page-import .step-4 h2{text-align:center;font-size:20px!important}.give-tools-setting-page-import .step-4 p{text-align:center}.give-tools-setting-page-import .button-secondary.step-4,.give-tools-setting-page-import .give-image-thumb{display:none}.give-tools-setting-page-import h2#give-import-title{background:#f3f3f3;font-size:15px;font-weight:600;margin:-8px -22px 11px;padding:12px 22px}.give-tools-setting-page-import table.step-2 h2#give-import-title{font-size:small;font-weight:inherit}.give-tools-setting-page-import table.step-2 .give-import-donation-required-fields-title{font-size:18px;font-weight:600;margin:0}.give-tools-setting-page-import table.step-2 .give-import-donation-required-fields{white-space:nowrap;overflow:hidden}.give-tools-setting-page-import table.step-2 .give-import-donation-required-fields li{display:inline-block;margin:0 10% 0 0}.give-tools-setting-page-import table.step-2 .give-import-donation-required-fields li span.give-import-donation-required-symbol{border-radius:1em;vertical-align:middle;padding:2px;background:#46b450;color:#fff}.give-tools-setting-page-import table.step-2 .give-import-donation-required-fields li span.dashicons-no-alt{background:#bbb}.give-tools-setting-page-import .give-progress{margin-top:7px}.give-import-core-settings .give-progress-steps li{width:33.33%}.give-import-core-settings .step-3 h2{text-align:center;font-size:20px!important}.give-import-core-settings .step-3 p{text-align:center}form.give-import-form table.widefat{border:none}.wrap .give-importer-h1{margin:0;padding:20px 0}.give-tools-setting-page #give-export_donations-form table{padding-left:10px}.give-tools-setting-page #give-export_donations-form table tbody h2{padding:8px 0 0}.give-tools-setting-page #give-export_donations-form table tbody td.row-title{width:30%;vertical-align:top}.give-tools-setting-page #give-export_donations-form table tbody td ul.give-export-option-ul{margin-top:5px}.give-tools-setting-page #give-export_donations-form table tbody p.give-field-description{display:table;width:100%}.give-tools-setting-page #give-export_donations-form table tbody .add-notices{margin-top:15px}.give-tools-setting-page #give-export_donations-form table tbody .add-notices .give-progress{margin-top:7px}.give-tools-setting-page #give-export_donations-form table tbody .chosen-container-multi .chosen-choices{min-height:30px}.give-tools-setting-page #give-export_donations-form table tbody .chosen-container-multi .chosen-choices li{margin:4px 4px 4px 0}.give-tools-setting-page #give-export_donations-form .give-export-option{display:flex;flex-flow:row wrap;border-top:1px solid #e5e5e5;border-left:1px solid #e5e5e5}.give-tools-setting-page #give-export_donations-form .give-export-option ul{margin-bottom:1rem}.give-tools-setting-page #give-export_donations-form .give-export-option ul li{position:relative;margin-bottom:.7rem;padding:0 1rem}.give-tools-setting-page #give-export_donations-form .give-export-option ul li label{display:block;padding-left:22px}.give-tools-setting-page #give-export_donations-form .give-export-option ul li label input{position:absolute;top:6px;left:15px}.give-tools-setting-page #give-export_donations-form .give-export-option ul .give-export-option-label{font-size:15px;font-weight:500;border-bottom:1px solid #e5e5e5;margin-bottom:1rem;padding:1rem}.give-tools-setting-page #give-export_donations-form .give-export-option>li{border-right:1px solid #e5e5e5;border-bottom:1px solid #e5e5e5;width:33%;margin-bottom:0}.give-tools-setting-page .give-export-donors .give-progress{margin-top:7px}#give-export-donations .give_forms_categories,#give-export-donations .give_forms_tags{min-width:250px;margin:0 0 10px;display:block}#give-export-donations .give_forms_categories input,#give-export-donations .give_forms_tags input{color:#999}#give-export-donations div.chosen-container ul.chosen-choices{border:1px solid #ddd}#give-export-donations div.chosen-container ul.chosen-choices input.chosen-search-input{border:1px solid #ddd;height:20px}#give-export-donations select{vertical-align:inherit;margin:0;height:26px;line-height:26px;border:1px solid #ddd}@media only screen and (max-width:1080px){.give-tools-setting-page #give-export_donations-form .give-export-option>li{width:49.5%}}@media only screen and (max-width:782px){.give-tools-setting-page #give-export_donations-form .give-export-option>li{width:49.5%}.give-tools-setting-page #give-export_donations-form .give-export-option ul li label{padding-left:32px}.give-tools-setting-page #give-export_donations-form .give-export-option ul li label input{top:0}}.give-admin-progress-bar{height:8px;position:relative;background:#eee;border-radius:25px;overflow:hidden;margin:5px 0 2px}.give-admin-progress-bar>span{display:block;height:100%;border-top-right-radius:8px;border-bottom-right-radius:8px;border-top-left-radius:20px;border-bottom-left-radius:20px;background-color:#2bc253;position:relative;overflow:hidden}.give-admin-goal-achieved>.dashicons{color:#ffba00;font-size:13px;height:16px;width:13px;line-height:18px}#give-form-goal-stats .inside{margin:0;padding:15px;text-align:center}#give-form-goal-stats .give-admin-progress-bar{margin-bottom:10px}#give-form-goal-stats .give-admin-goal-achieved{display:block;margin-top:6px}.give-nav-tab-wrapper{background:#ddd;border:none!important;padding-top:0;overflow:hidden}.give-nav-tab-wrapper .nav-tab{border:none;margin:0;padding:15px 30px;outline:none;box-shadow:none;background:#ddd}.give-nav-tab-wrapper .nav-tab:hover{background:#ebebeb}.give-nav-tab-wrapper .nav-tab.nav-tab-active{background:#f1f1f1;box-shadow:inset 0 4px 0 #66bb6a;margin:0}@media screen and (max-width:600px){.give-nav-tab-wrapper{position:relative;padding-top:0!important}.give-nav-tab-wrapper>a{width:100%;box-sizing:border-box;margin:0;background-color:#fff;border:1px solid #ccc}.give-nav-tab-wrapper>a:hover{border-bottom:1px solid #ccc}.give-nav-tab-wrapper div.give-sub-nav-tab-wrapper{position:absolute;top:0;right:0}.give-nav-tab-wrapper div.give-sub-nav-tab-wrapper #give-show-sub-nav{height:28px;width:30px;border-radius:0;margin:0}.give-nav-tab-wrapper div.give-sub-nav-tab-wrapper #give-show-sub-nav>span.dashicons{margin:6px auto 0;display:block}.give-nav-tab-wrapper div.give-sub-nav-tab-wrapper nav.give-sub-nav-tab{top:35px;right:0;left:auto}.give-nav-tab-wrapper div.give-sub-nav-tab-wrapper nav.give-sub-nav-tab a{background:#fff}.give-nav-tab-wrapper div.give-sub-nav-tab-wrapper nav.give-sub-nav-tab a:hover{background:#e5e5e5}.give-mobile-hidden{display:none}}.give-sub-nav-tab-wrapper{position:relative;z-index:999;float:left;display:none}.give-sub-nav-tab-wrapper nav.give-sub-nav-tab{border:1px solid #f1f1f1;border-bottom:none;position:absolute;top:37px;right:0}.give-sub-nav-tab-wrapper nav.give-sub-nav-tab a{float:left;background:#fff;padding:8px 10px;clear:both;text-decoration:none;border-bottom:1px solid #f1f1f1;min-width:170px;color:#555;font-size:14px;font-weight:600}.give-sub-nav-tab-wrapper nav.give-sub-nav-tab a:hover{background:#ebebeb}#give-show-sub-nav{text-decoration:none;padding:3px 4px;border-bottom:1px solid #ccc;line-height:0;background:#fff;border-radius:4px;margin:15px 0 0 10px}#give-show-sub-nav>span.dashicons{font-size:16px;height:16px;width:16px}#give-show-sub-nav:active,#give-show-sub-nav:hover{outline:none;box-shadow:inset 0 0 4px #ddd}.give_forms_page_give-subscriptions .wp-header-end+.notice,.post-type-give_forms .wp-header-end+.notice{margin-top:11px}.give_forms_page_give-subscriptions #give-subscription-details-h1,.give_forms_page_give-subscriptions #give-subscription-list-h1,.give_forms_page_give-subscriptions .wp-heading-inline,.post-type-give_forms #give-subscription-details-h1,.post-type-give_forms #give-subscription-list-h1,.post-type-give_forms .wp-heading-inline{margin:0;padding:10px 0}.give_forms_page_give-subscriptions #give-subscription-details-h1:before,.give_forms_page_give-subscriptions #give-subscription-list-h1:before,.give_forms_page_give-subscriptions .wp-heading-inline:before,.post-type-give_forms #give-subscription-details-h1:before,.post-type-give_forms #give-subscription-list-h1:before,.post-type-give_forms .wp-heading-inline:before{background:url(../images/give-icon-full-circle.svg);width:30px;height:30px;content:" ";display:block;float:left;margin-right:12px}.give_forms_page_give-subscriptions #wpcontent,.post-type-give_forms #wpcontent{padding:0}.give_forms_page_give-subscriptions #wpbody,.post-type-give_forms #wpbody{color:#000;padding-left:20px;position:relative}.give_forms_page_give-subscriptions #wpbody:after,.post-type-give_forms #wpbody:after{content:"";background-color:#fff;border-bottom:1px solid #dbdbdb;height:72px;left:0;top:46px;position:absolute;width:100%;z-index:-1}@media (min-width:601px){.give_forms_page_give-subscriptions #wpbody:after,.post-type-give_forms #wpbody:after{top:0}}.give_forms_page_give-subscriptions #wpbody .wrap:not(.give-settings-page),.post-type-give_forms #wpbody .wrap:not(.give-settings-page){margin-top:12px}.give_forms_page_give-subscriptions #wpbody .wp-header-end,.post-type-give_forms #wpbody .wp-header-end{margin-top:6px}@media (min-width:601px){.give_forms_page_give-subscriptions #wpbody .wp-header-end,.post-type-give_forms #wpbody .wp-header-end{margin-top:15px}}@media (min-width:601px){.give_forms_page_give-subscriptions.give_forms_page_give-donors #wpbody .wp-header-end,.give_forms_page_give-subscriptions.give_forms_page_give-subscriptions #wpbody .wp-header-end,.post-type-give_forms.give_forms_page_give-donors #wpbody .wp-header-end,.post-type-give_forms.give_forms_page_give-subscriptions #wpbody .wp-header-end{margin-top:25px}}.give_forms_page_give-subscriptions #wpbody #screen-meta-links,.post-type-give_forms #wpbody #screen-meta-links{display:none}@media (min-width:783px){.give_forms_page_give-subscriptions #screen-meta,.post-type-give_forms #screen-meta{background-color:#fff;border:0;margin:0}.give_forms_page_give-subscriptions #screen-meta-links,.post-type-give_forms #screen-meta-links{position:absolute;top:0;right:0;z-index:1}}.give-subheader{background:#fff;margin:0 0 0 -22px;padding:12px 20px}.give-subheader .give-subheader-right-text{float:right;font-size:13px;line-height:22px;font-style:italic;color:#555;margin:0;padding:0}.give-subheader h1{float:left;font-size:15px;line-height:22px;color:#555;font-weight:600;margin:0;padding:0}@media (max-width:700px){.give-subheader{text-align:center}.give-subheader .give-subheader-right-text,.give-subheader h1{float:none}}
14
  * To view and modify this theme, visit http://jqueryui.com/themeroller/?bgShadowXPos=&bgOverlayXPos=&bgErrorXPos=&bgHighlightXPos=&bgContentXPos=&bgHeaderXPos=&bgActiveXPos=&bgHoverXPos=&bgDefaultXPos=&bgShadowYPos=&bgOverlayYPos=&bgErrorYPos=&bgHighlightYPos=&bgContentYPos=&bgHeaderYPos=&bgActiveYPos=&bgHoverYPos=&bgDefaultYPos=&bgShadowRepeat=&bgOverlayRepeat=&bgErrorRepeat=&bgHighlightRepeat=&bgContentRepeat=&bgHeaderRepeat=&bgActiveRepeat=&bgHoverRepeat=&bgDefaultRepeat=&iconsHover=url(%22images%2Fui-icons_555555_256x240.png%22)&iconsHighlight=url(%22images%2Fui-icons_777620_256x240.png%22)&iconsHeader=url(%22images%2Fui-icons_444444_256x240.png%22)&iconsError=url(%22images%2Fui-icons_cc0000_256x240.png%22)&iconsDefault=url(%22images%2Fui-icons_777777_256x240.png%22)&iconsContent=url(%22images%2Fui-icons_444444_256x240.png%22)&iconsActive=url(%22images%2Fui-icons_ffffff_256x240.png%22)&bgImgUrlShadow=&bgImgUrlOverlay=&bgImgUrlHover=&bgImgUrlHighlight=&bgImgUrlHeader=&bgImgUrlError=&bgImgUrlDefault=&bgImgUrlContent=&bgImgUrlActive=&opacityFilterShadow=Alpha(Opacity%3D30)&opacityFilterOverlay=Alpha(Opacity%3D30)&opacityShadowPerc=30&opacityOverlayPerc=30&iconColorHover=%23555555&iconColorHighlight=%23777620&iconColorHeader=%23444444&iconColorError=%23cc0000&iconColorDefault=%23777777&iconColorContent=%23444444&iconColorActive=%23ffffff&bgImgOpacityShadow=0&bgImgOpacityOverlay=0&bgImgOpacityError=95&bgImgOpacityHighlight=55&bgImgOpacityContent=75&bgImgOpacityHeader=75&bgImgOpacityActive=65&bgImgOpacityHover=75&bgImgOpacityDefault=75&bgTextureShadow=flat&bgTextureOverlay=flat&bgTextureError=flat&bgTextureHighlight=flat&bgTextureContent=flat&bgTextureHeader=flat&bgTextureActive=flat&bgTextureHover=flat&bgTextureDefault=flat&cornerRadius=3px&fwDefault=normal&ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&cornerRadiusShadow=8px&thicknessShadow=5px&offsetLeftShadow=0px&offsetTopShadow=0px&opacityShadow=.3&bgColorShadow=%23666666&opacityOverlay=.3&bgColorOverlay=%23aaaaaa&fcError=%235f3f3f&borderColorError=%23f1a899&bgColorError=%23fddfdf&fcHighlight=%23777620&borderColorHighlight=%23dad55e&bgColorHighlight=%23fffa90&fcContent=%23333333&borderColorContent=%23dddddd&bgColorContent=%23ffffff&fcHeader=%23333333&borderColorHeader=%23dddddd&bgColorHeader=%23e9e9e9&fcActive=%23ffffff&borderColorActive=%23003eff&bgColorActive=%23007fff&fcHover=%232b2b2b&borderColorHover=%23cccccc&bgColorHover=%23ededed&fcDefault=%23454545&borderColorDefault=%23c5c5c5&bgColorDefault=%23f6f6f6
15
  * Copyright jQuery Foundation and other contributors; Licensed MIT */.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:after,.ui-helper-clearfix:before{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0;padding:.5em .5em .5em .7em;font-size:100%}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{margin:0;cursor:pointer;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-item-wrapper{position:relative;padding:3px 1em 3px .4em}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0}.ui-menu .ui-state-active,.ui-menu .ui-state-focus{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item-wrapper{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-button{padding:.4em 1em;display:inline-block;position:relative;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:visible}.ui-button,.ui-button:active,.ui-button:hover,.ui-button:link,.ui-button:visited{text-decoration:none}.ui-button-icon-only{width:2em;box-sizing:border-box;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-button-icon-only{text-indent:0}.ui-button-icon-only .ui-icon{position:absolute;top:50%;left:50%;margin-top:-8px;margin-left:-8px}.ui-button.ui-icon-notext .ui-icon{padding:0;width:2.1em;height:2.1em;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-icon-notext .ui-icon{width:auto;height:auto;text-indent:0;white-space:normal;padding:.4em 1em}button.ui-button::-moz-focus-inner,input.ui-button::-moz-focus-inner{border:0;padding:0}.ui-controlgroup{vertical-align:middle;display:inline-block}.ui-controlgroup>.ui-controlgroup-item{float:left;margin-left:0;margin-right:0}.ui-controlgroup>.ui-controlgroup-item.ui-visual-focus,.ui-controlgroup>.ui-controlgroup-item:focus{z-index:9999}.ui-controlgroup-vertical>.ui-controlgroup-item{display:block;float:none;width:100%;margin-top:0;margin-bottom:0;text-align:left}.ui-controlgroup-vertical .ui-controlgroup-item{box-sizing:border-box}.ui-controlgroup .ui-controlgroup-label{padding:.4em 1em}.ui-controlgroup .ui-controlgroup-label span{font-size:80%}.ui-controlgroup-horizontal .ui-controlgroup-label+.ui-controlgroup-item{border-left:none}.ui-controlgroup-vertical .ui-controlgroup-label+.ui-controlgroup-item{border-top:none}.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content{border-right:none}.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content{border-bottom:none}.ui-controlgroup-vertical .ui-spinner-input{width:75%;width:calc(100% - 2.4em)}.ui-controlgroup-vertical .ui-spinner .ui-spinner-up{border-top-style:solid}.ui-checkboxradio-label .ui-icon-background{box-shadow:inset 1px 1px 1px #ccc;border-radius:.12em;border:none}.ui-checkboxradio-radio-label .ui-icon-background{width:16px;height:16px;border-radius:1em;overflow:visible;border:none}.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon{background-image:none;width:8px;height:8px;border-width:4px;border-style:solid}.ui-checkboxradio-disabled{pointer-events:none}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-next-hover,.ui-datepicker .ui-datepicker-prev-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-next span,.ui-datepicker .ui-datepicker-prev span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:700;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td a,.ui-datepicker td span{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-datepicker .ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat;left:.5em;top:.3em}.ui-dialog{position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:20px;margin:-10px 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-n{height:2px;top:0}.ui-dialog .ui-resizable-e{width:2px;right:0}.ui-dialog .ui-resizable-s{height:2px;bottom:0}.ui-dialog .ui-resizable-w{width:2px;left:0}.ui-dialog .ui-resizable-ne,.ui-dialog .ui-resizable-nw,.ui-dialog .ui-resizable-se,.ui-dialog .ui-resizable-sw{width:7px;height:7px}.ui-dialog .ui-resizable-se{right:0;bottom:0}.ui-dialog .ui-resizable-sw{left:0;bottom:0}.ui-dialog .ui-resizable-ne{right:0;top:0}.ui-dialog .ui-resizable-nw{left:0;top:0}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-autohide .ui-resizable-handle,.ui-resizable-disabled .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");height:100%;filter:alpha(opacity=25);opacity:.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted #000}.ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;left:0;display:none}.ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:700;line-height:1.5;padding:2px .4em;margin:.5em 0 0;height:auto;border:0}.ui-selectmenu-open{display:block}.ui-selectmenu-text{display:block;margin-right:20px;overflow:hidden;text-overflow:ellipsis}.ui-selectmenu-button.ui-button{text-align:left;white-space:nowrap;width:14em}.ui-selectmenu-icon.ui-icon{float:right;margin-top:0}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default;-ms-touch-action:none;touch-action:none}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:none;color:inherit;padding:.222em 0;vertical-align:middle;margin:.2em 2em .2em .4em}.ui-spinner-button{width:1.6em;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top-style:none;border-bottom-style:none;border-right-style:none}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px}body .ui-tooltip{border-width:2px}.ui-widget{font-family:Arial,Helvetica,sans-serif}.ui-widget,.ui-widget .ui-widget{font-size:1em}.ui-widget button,.ui-widget input,.ui-widget select,.ui-widget textarea{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget.ui-widget-content{border:1px solid #c5c5c5}.ui-widget-content{border:1px solid #ddd;background:#fff;color:#333}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #ddd;background:#e9e9e9;color:#333;font-weight:700}.ui-widget-header a{color:#333}.ui-button,.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default,html .ui-button.ui-state-disabled:active,html .ui-button.ui-state-disabled:hover{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:400;color:#454545}.ui-button,.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited,a.ui-button,a:link.ui-button,a:visited.ui-button{color:#454545;text-decoration:none}.ui-button:focus,.ui-button:hover,.ui-state-focus,.ui-state-hover,.ui-widget-content .ui-state-focus,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-focus,.ui-widget-header .ui-state-hover{border:1px solid #ccc;background:#ededed;font-weight:400;color:#2b2b2b}.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited,.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,a.ui-button:focus,a.ui-button:hover{color:#2b2b2b;text-decoration:none}.ui-visual-focus{box-shadow:0 0 3px 1px #5e9ed6}.ui-button.ui-state-active:hover,.ui-button:active,.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active,a.ui-button:active{border:1px solid #003eff;background:#007fff;font-weight:400;color:#fff}.ui-icon-background,.ui-state-active .ui-icon-background{border:#003eff;background-color:#fff}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#fff;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #dad55e;background:#fffa90;color:#777620}.ui-state-checked{border:1px solid #dad55e;background:#fffa90}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#777620}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #f1a899;background:#fddfdf;color:#5f3f3f}.ui-state-error-text,.ui-state-error a,.ui-widget-content .ui-state-error-text,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error-text,.ui-widget-header .ui-state-error a{color:#5f3f3f}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:700}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:400}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon,.ui-widget-header .ui-icon{background-image:url(../images/ui-icons_444444_256x240.png)}.ui-button:focus .ui-icon,.ui-button:hover .ui-icon,.ui-state-focus .ui-icon,.ui-state-hover .ui-icon{background-image:url(../images/ui-icons_555555_256x240.png)}.ui-button:active .ui-icon,.ui-state-active .ui-icon{background-image:url(../images/ui-icons_ffffff_256x240.png)}.ui-button .ui-state-highlight.ui-icon,.ui-state-highlight .ui-icon{background-image:url(../images/ui-icons_777620_256x240.png)}.ui-state-error-text .ui-icon,.ui-state-error .ui-icon{background-image:url(../images/ui-icons_cc0000_256x240.png)}.ui-button .ui-icon{background-image:url(../images/ui-icons_777777_256x240.png)}.ui-icon-blank{background-position:16px 16px}.ui-icon-caret-1-n{background-position:0 0}.ui-icon-caret-1-ne{background-position:-16px 0}.ui-icon-caret-1-e{background-position:-32px 0}.ui-icon-caret-1-se{background-position:-48px 0}.ui-icon-caret-1-s{background-position:-65px 0}.ui-icon-caret-1-sw{background-position:-80px 0}.ui-icon-caret-1-w{background-position:-96px 0}.ui-icon-caret-1-nw{background-position:-112px 0}.ui-icon-caret-2-n-s{background-position:-128px 0}.ui-icon-caret-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-65px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-65px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:1px -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-first,.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-left,.ui-corner-tl,.ui-corner-top{border-top-left-radius:3px}.ui-corner-all,.ui-corner-right,.ui-corner-top,.ui-corner-tr{border-top-right-radius:3px}.ui-corner-all,.ui-corner-bl,.ui-corner-bottom,.ui-corner-left{border-bottom-left-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-br,.ui-corner-right{border-bottom-right-radius:3px}.ui-widget-overlay{background:#aaa;opacity:.003;filter:Alpha(Opacity=0.3)}.ui-widget-shadow{-webkit-box-shadow:0 0 5px #666;box-shadow:0 0 5px #666}/*! Hint.css - v2.5.0 - 2017-04-23
16
  * http://kushagragour.in/lab/hint/
17
+ * Copyright (c) 2017 Kushagra Gour */[class*=hint--]{position:relative;display:inline-block}[class*=hint--]:after,[class*=hint--]:before{position:absolute;-webkit-transform:translateZ(0);-moz-transform:translateZ(0);transform:translateZ(0);visibility:hidden;opacity:0;z-index:1000000;pointer-events:none;-webkit-transition:.3s ease;-moz-transition:.3s ease;transition:.3s ease;-webkit-transition-delay:0s;-moz-transition-delay:0s;transition-delay:0s}[class*=hint--]:hover:after,[class*=hint--]:hover:before{visibility:visible;opacity:1;-webkit-transition-delay:.1s;-moz-transition-delay:.1s;transition-delay:.1s}[class*=hint--]:before{content:"";position:absolute;background:0 0;border:6px solid transparent;z-index:1000001}[class*=hint--]:after{background:#383838;color:#fff;padding:8px 10px;font-size:12px;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;line-height:12px;white-space:nowrap;text-shadow:0 -1px 0 #000;box-shadow:4px 4px 8px rgba(0,0,0,.3)}[class*=hint--][aria-label]:after{content:attr(aria-label)}[class*=hint--][data-hint]:after{content:attr(data-hint)}[aria-label=""]:after,[aria-label=""]:before,[data-hint=""]:after,[data-hint=""]:before{display:none!important}.hint--top-left:before,.hint--top-right:before,.hint--top:before{border-top-color:#383838}.hint--bottom-left:before,.hint--bottom-right:before,.hint--bottom:before{border-bottom-color:#383838}.hint--top:after,.hint--top:before{bottom:100%;left:50%}.hint--top:before{margin-bottom:-11px;left:calc(50% - 6px)}.hint--top:after{-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);transform:translateX(-50%)}.hint--top:hover:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--top:hover:after{-webkit-transform:translateX(-50%) translateY(-8px);-moz-transform:translateX(-50%) translateY(-8px);transform:translateX(-50%) translateY(-8px)}.hint--bottom:after,.hint--bottom:before{top:100%;left:50%}.hint--bottom:before{margin-top:-11px;left:calc(50% - 6px)}.hint--bottom:after{-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);transform:translateX(-50%)}.hint--bottom:hover:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--bottom:hover:after{-webkit-transform:translateX(-50%) translateY(8px);-moz-transform:translateX(-50%) translateY(8px);transform:translateX(-50%) translateY(8px)}.hint--right:before{border-right-color:#383838;margin-left:-11px;margin-bottom:-6px}.hint--right:after{margin-bottom:-14px}.hint--right:after,.hint--right:before{left:100%;bottom:50%}.hint--right:hover:after,.hint--right:hover:before{-webkit-transform:translateX(8px);-moz-transform:translateX(8px);transform:translateX(8px)}.hint--left:before{border-left-color:#383838;margin-right:-11px;margin-bottom:-6px}.hint--left:after{margin-bottom:-14px}.hint--left:after,.hint--left:before{right:100%;bottom:50%}.hint--left:hover:after,.hint--left:hover:before{-webkit-transform:translateX(-8px);-moz-transform:translateX(-8px);transform:translateX(-8px)}.hint--top-left:after,.hint--top-left:before{bottom:100%;left:50%}.hint--top-left:before{margin-bottom:-11px;left:calc(50% - 6px)}.hint--top-left:after{-webkit-transform:translateX(-100%);-moz-transform:translateX(-100%);transform:translateX(-100%);margin-left:12px}.hint--top-left:hover:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--top-left:hover:after{-webkit-transform:translateX(-100%) translateY(-8px);-moz-transform:translateX(-100%) translateY(-8px);transform:translateX(-100%) translateY(-8px)}.hint--top-right:after,.hint--top-right:before{bottom:100%;left:50%}.hint--top-right:before{margin-bottom:-11px;left:calc(50% - 6px)}.hint--top-right:after{-webkit-transform:translateX(0);-moz-transform:translateX(0);transform:translateX(0);margin-left:-12px}.hint--top-right:hover:after,.hint--top-right:hover:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--bottom-left:after,.hint--bottom-left:before{top:100%;left:50%}.hint--bottom-left:before{margin-top:-11px;left:calc(50% - 6px)}.hint--bottom-left:after{-webkit-transform:translateX(-100%);-moz-transform:translateX(-100%);transform:translateX(-100%);margin-left:12px}.hint--bottom-left:hover:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--bottom-left:hover:after{-webkit-transform:translateX(-100%) translateY(8px);-moz-transform:translateX(-100%) translateY(8px);transform:translateX(-100%) translateY(8px)}.hint--bottom-right:after,.hint--bottom-right:before{top:100%;left:50%}.hint--bottom-right:before{margin-top:-11px;left:calc(50% - 6px)}.hint--bottom-right:after{-webkit-transform:translateX(0);-moz-transform:translateX(0);transform:translateX(0);margin-left:-12px}.hint--bottom-right:hover:after,.hint--bottom-right:hover:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--large:after,.hint--medium:after,.hint--small:after{white-space:normal;line-height:1.4em;word-wrap:break-word}.hint--small:after{width:80px}.hint--medium:after{width:150px}.hint--large:after{width:300px}.hint--error:after{background-color:#b34e4d;text-shadow:0 -1px 0 #592726}.hint--error.hint--top-left:before,.hint--error.hint--top-right:before,.hint--error.hint--top:before{border-top-color:#b34e4d}.hint--error.hint--bottom-left:before,.hint--error.hint--bottom-right:before,.hint--error.hint--bottom:before{border-bottom-color:#b34e4d}.hint--error.hint--left:before{border-left-color:#b34e4d}.hint--error.hint--right:before{border-right-color:#b34e4d}.hint--warning:after{background-color:#c09854;text-shadow:0 -1px 0 #6c5328}.hint--warning.hint--top-left:before,.hint--warning.hint--top-right:before,.hint--warning.hint--top:before{border-top-color:#c09854}.hint--warning.hint--bottom-left:before,.hint--warning.hint--bottom-right:before,.hint--warning.hint--bottom:before{border-bottom-color:#c09854}.hint--warning.hint--left:before{border-left-color:#c09854}.hint--warning.hint--right:before{border-right-color:#c09854}.hint--info:after{background-color:#3986ac;text-shadow:0 -1px 0 #1a3c4d}.hint--info.hint--top-left:before,.hint--info.hint--top-right:before,.hint--info.hint--top:before{border-top-color:#3986ac}.hint--info.hint--bottom-left:before,.hint--info.hint--bottom-right:before,.hint--info.hint--bottom:before{border-bottom-color:#3986ac}.hint--info.hint--left:before{border-left-color:#3986ac}.hint--info.hint--right:before{border-right-color:#3986ac}.hint--success:after{background-color:#458746;text-shadow:0 -1px 0 #1a321a}.hint--success.hint--top-left:before,.hint--success.hint--top-right:before,.hint--success.hint--top:before{border-top-color:#458746}.hint--success.hint--bottom-left:before,.hint--success.hint--bottom-right:before,.hint--success.hint--bottom:before{border-bottom-color:#458746}.hint--success.hint--left:before{border-left-color:#458746}.hint--success.hint--right:before{border-right-color:#458746}.hint--always:after,.hint--always:before{opacity:1;visibility:visible}.hint--always.hint--top:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--always.hint--top:after{-webkit-transform:translateX(-50%) translateY(-8px);-moz-transform:translateX(-50%) translateY(-8px);transform:translateX(-50%) translateY(-8px)}.hint--always.hint--top-left:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--always.hint--top-left:after{-webkit-transform:translateX(-100%) translateY(-8px);-moz-transform:translateX(-100%) translateY(-8px);transform:translateX(-100%) translateY(-8px)}.hint--always.hint--top-right:after,.hint--always.hint--top-right:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--always.hint--bottom:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--always.hint--bottom:after{-webkit-transform:translateX(-50%) translateY(8px);-moz-transform:translateX(-50%) translateY(8px);transform:translateX(-50%) translateY(8px)}.hint--always.hint--bottom-left:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--always.hint--bottom-left:after{-webkit-transform:translateX(-100%) translateY(8px);-moz-transform:translateX(-100%) translateY(8px);transform:translateX(-100%) translateY(8px)}.hint--always.hint--bottom-right:after,.hint--always.hint--bottom-right:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--always.hint--left:after,.hint--always.hint--left:before{-webkit-transform:translateX(-8px);-moz-transform:translateX(-8px);transform:translateX(-8px)}.hint--always.hint--right:after,.hint--always.hint--right:before{-webkit-transform:translateX(8px);-moz-transform:translateX(8px);transform:translateX(8px)}.hint--rounded:after{border-radius:4px}.hint--no-animate:after,.hint--no-animate:before{-webkit-transition-duration:0s;-moz-transition-duration:0s;transition-duration:0s}.hint--bounce:after,.hint--bounce:before{-webkit-transition:opacity .3s ease,visibility .3s ease,-webkit-transform .3s cubic-bezier(.71,1.7,.77,1.24);-moz-transition:opacity .3s ease,visibility .3s ease,-moz-transform .3s cubic-bezier(.71,1.7,.77,1.24);transition:opacity .3s ease,visibility .3s ease,transform .3s cubic-bezier(.71,1.7,.77,1.24)}.mfp-bg{z-index:1000001;overflow:hidden;background:#0b0b0b;opacity:.8}.mfp-bg,.mfp-wrap{top:0;left:0;width:100%;height:100%;position:fixed}.mfp-wrap{z-index:1000002;outline:none!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{content:"";display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1000004}.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1000003}.mfp-preloader a{color:#ccc}.mfp-preloader a:hover{color:#fff}.mfp-s-error .mfp-content,.mfp-s-ready .mfp-preloader{display:none}button.mfp-arrow,button.mfp-close{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:none;padding:0;z-index:1000005;box-shadow:none;touch-action:manipulation}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;color:#fff;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:focus,.mfp-close:hover{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{color:#fff;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#ccc;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;top:50%;margin:-55px 0 0;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:focus,.mfp-arrow:hover{opacity:1}.mfp-arrow:after,.mfp-arrow:before{content:"";display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after{border-right:17px solid #fff;margin-left:31px}.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right:after{border-left:17px solid #fff;margin-left:39px}.mfp-arrow-right:before{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;box-sizing:border-box;padding:40px 0;margin:0 auto}.mfp-figure,img.mfp-img{line-height:0}.mfp-figure:after{content:"";position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-height:300px),screen and (max-width:800px) and (orientation:landscape){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}@font-face{font-family:give-icomoon;src:url(../fonts/icomoon.eot);src:url(../fonts/icomoon.eot#iefix) format("embedded-opentype"),url(../fonts/icomoon.woff) format("woff"),url(../images/icomoon.svg#icomoon) format("svg");font-weight:400;font-style:normal}.give-icon:before{font-style:normal}[class*=" give-icon-"],[class^=give-icon-]{font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.give-icon-lamp:before{content:"\e603"}.give-icon-heart:before{content:"\e604"}.give-icon-question:before{content:"\e602"}.give-icon-info:before{content:"\e601"}.give-icon-new-tab:before{content:"\ea7e"}.give-icon-alert:before{content:"\f02d"}.give-icon-help:before{content:"\e606"}.give-icon-spinner:before{content:"\e605"}.give-icon-spinner2:before{content:"\e607"}.give-icon-plus:before{content:"\e040"}.give-icon-minus:before{content:"\e041"}.give-icon-locked:before{content:"\e600"}.dashicons-give:before{font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\e800"}.fa-spin{-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.give-modal{box-shadow:0 15px 10px -5px rgba(0,0,0,.15);position:relative;background:#fff;font-family:Arial,Baskerville,monospace;font-size:16px;width:auto;max-width:500px;margin:60px auto 20px;border-top:5px solid transparent;line-height:1.5}.give-modal--success{border-top-color:#46b450}.give-modal--notice{border-top-color:#00a0d2}.give-modal--warning{border-top-color:#ffb900}.give-modal--error{border-top-color:#dc3232}.give-modal__body{padding:1.5rem}.give-modal__body>:last-child{margin-bottom:0}.give-modal__title{margin:0 0 .75rem;padding:0}.give-modal__description{margin:0 0 1.5rem;padding:0}.give-modal .give-spinner-wrap{margin-left:40%}.give-modal .give-modal__controls{position:relative;padding:1rem 1.5rem;background-color:#fbfbfb;border-top:1px solid #d7d7d7;text-align:right}.give-modal .give-modal__controls .spinner{display:none;visibility:visible;margin-left:0;float:left}.give-modal--additional-link{float:left;line-height:26px}.modal-fade-slide .give-modal--zoom{opacity:0;transition:all .2s ease-out;transform:translateY(-20px) perspective(600px) rotateX(10deg)}.modal-fade-slide.mfp-ready .give-modal--zoom{opacity:1;transform:translateY(0) perspective(600px) rotateX(0)}.modal-fade-slide.mfp-removing .give-modal--zoom{opacity:0;transform:translateY(-10px) perspective(600px) rotateX(10deg)}.modal-fade-slide.mfp-bg{opacity:0;transition:opacity .3s ease-out}.modal-fade-slide.mfp-ready.mfp-bg{opacity:.8}.modal-fade-slide.mfp-removing.mfp-bg{opacity:0}.give-button{display:inline-block;height:30px;line-height:28px;padding:0 12px 2px;cursor:pointer;border-width:1px;border-style:solid;-webkit-appearance:none;border-radius:3px;white-space:nowrap;box-sizing:border-box;margin-left:.5rem;font-weight:400;font-size:.9em}.give-button:active{transform:translateY(1px)}.give-button--primary{background:#0085ba;border-color:#0073aa #006799 #006799;box-shadow:0 1px 0 #006799;color:#fff;text-decoration:none;text-shadow:0 -1px 1px #006799,1px 0 1px #006799,0 1px 1px #006799,-1px 0 1px #006799;outline:0}.give-button--primary:hover{background:#008ec2;border-color:#006799;color:#fff}.give-button--primary:active{background:#0073aa;border-color:#006799;box-shadow:inset 0 2px 0 #006799;vertical-align:top}.give-button--primary:focus{background:#0073aa;border-color:#006799;color:#fff;box-shadow:0 1px 0 #0073aa,0 0 2px 1px #33b3db}.give-button--secondary{color:#555;border-color:#ccc;background:#f7f7f7;box-shadow:0 1px 0 #ccc;vertical-align:top}.give-button--secondary:hover{background:#fafafa;border-color:#999;color:#23282d}.give-button--secondary:active{background:#eee;border-color:#999;box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5)}.give-button--secondary:focus{background:#eee}.give-notice{position:relative}@font-face{font-family:give-icomoon;font-weight:400;font-style:normal}.give-metabox-tabs li .give-icon:before{font-family:give-icomoon;src:url(../fonts/icomoon.eot);src:url(../fonts/icomoon.eot#iefix) format("embedded-opentype"),url(../fonts/icomoon.woff) format("woff"),url(../images/icomoon.svg#icomoon) format("svg");speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:12px;vertical-align:top;line-height:20px;margin:0 5px 0 0}.give-metabox-tabs li .give-icon-default:before{content:"\e903"}.give-metabox-tabs li .give-icon-heart:before{content:"\e604"}.give-metabox-tabs li .give-icon-target:before{content:"\e901"}.give-metabox-tabs li .give-icon-display:before{content:"\e90c"}.give-metabox-tabs li .give-icon-edit:before{content:"\e902"}.give-metabox-tabs li .give-icon-checklist:before{position:relative;top:1px;content:"\e900"}.give-metabox-tabs li .give-icon-purse:before{content:"\e8df"}.give-metabox-tabs li .dashicons{font-size:14px;width:14px;line-height:20px}.give-grid-row{position:relative;width:100%}.give-grid-row [class^=give-grid-col]{float:left;margin:.5rem 1%;min-height:.125rem}.give-grid-row:after{content:"";display:table;clear:both}.give-grid-col-1{width:6.33333%}.give-grid-col-2{width:14.66667%}.give-grid-col-3{width:23%}.give-grid-col-4{width:31.33333%}.give-grid-col-5{width:39.66667%}.give-grid-col-6{width:48%}.give-grid-col-7{width:56.33333%}.give-grid-col-8{width:64.66667%}.give-grid-col-9{width:73%}.give-grid-col-10{width:81.33333%}.give-grid-col-11{width:89.66667%}.give-grid-col-12{width:98%}@media only screen and (max-width:33.75em){.give-grid-row [class^=give-grid-col]{width:98%}}.give_options_panel input[type=email],.give_options_panel input[type=text]{padding:3px 5px;width:100%;line-height:2;box-shadow:0 0 0 transparent;border-radius:4px;border:1px solid #7e8993;background-color:#fff;color:#32373c}input.give-text-small,input.give-text_small{width:100px!important}input.give-text-medium,input.give-text_medium{width:200px!important}.give-hidden,.post-type-give_forms .tablenav #post-query-submit{display:none}.give_options_panel .give-time-field{width:65px}.give_options_panel .give-money-field{width:75px;margin-right:0;margin-left:0}.give_options_panel .give-money-symbol{border:1px solid #7e8993;background:#fcfcfc;margin:0;font-size:14px;padding:8px 10px 9px}.give_options_panel .give-money-symbol-before{border-right:0;margin-right:-5px;border-radius:4px 0 0 4px}.give_options_panel .give-money-symbol-before+.give-money-field{border-top-left-radius:0;border-bottom-left-radius:0}.give_options_panel .give-money-symbol-after{margin-left:-5px;border-radius:0 4px 4px 0}.give_options_panel .give-money-symbol-after+.give-money-field{border-top-right-radius:0;border-bottom-right-radius:0}.give-underline{text-decoration:underline}#give-bulk-donors div[id^=give-donor-]{display:block;overflow:hidden}.shortcode-wrap{margin:1px 14px 12px 11px}.shortcode-wrap label{margin:0 0 3px;display:block;cursor:default}.shortcode-wrap .shortcode-input{margin:0;width:100%}input.shortcode-input{width:100%}.price .give_price_range_high,.price .give_price_range_low,.price .give_price_range_sep{display:inline-block}.js-give-shortcode-button{font-weight:400;cursor:help}.js-give-shortcode-button:after{box-shadow:0 1px 1px 0 rgba(0,0,0,.1);text-shadow:none}.js-give-shortcode-button .dashicons{font-size:16px;width:16px;vertical-align:middle;color:inherit;margin-right:2px}@media only screen and (min-width:782px) and (max-width:1260px){.js-give-shortcode-button .give-button-text{display:none}}.give-tooltip{margin:0 3px;padding:0;font-size:14px;-moz-transition:.2s all linear;-o-transition:.2s all linear;transition:all .2s linear;color:rgba(51,51,51,.5);position:relative;top:1px}.give-tooltip:hover{color:#333}#give-metabox-form-data .inside{margin:0;padding:0}#give-metabox-form-data .give-metabox-panel-wrap{background:#fff;overflow:hidden}#give-metabox-form-data .give_options_panel{display:none;padding-left:170px}#give-metabox-form-data .give_options_panel.active,.no-js #give-metabox-form-data .give_options_panel{display:block}#give-metabox-form-data .give_options_panel .give-field-wrap{padding:1em 20px 1em 162px;margin:0;border-bottom:1px solid #eee}#give-metabox-form-data .give_options_panel .give-field-wrap>label,#give-metabox-form-data .give_options_panel .give-field-wrap>span.give-field-label{float:left;width:135px;padding:0;margin:2px 0 0 -150px;line-height:18px;font-size:12px;font-weight:400}#give-metabox-form-data .give_options_panel .give-field-wrap .give-field-description{color:#aaa;font-size:12px;line-height:18px;display:block;padding-top:10px;font-style:italic}#give-metabox-form-data .give_options_panel .give-field-wrap ul{margin:0}#give-metabox-form-data .give_options_panel .give-field-wrap .mce-container iframe{min-height:250px!important}#give-metabox-form-data .give_options_panel .give-field-wrap .wp-editor-wrap{display:inline-block;width:100%}#give-metabox-form-data .give_options_panel textarea.give-field{width:100%}#give-metabox-form-data .give_options_panel .give-field-wrap:hover .give-field-row-actions{display:block}#give-metabox-form-data .give_options_panel .give-field-wrap:last-child{border-bottom:0}#give-metabox-form-data .give_options_panel .give-inline-radio-fields li{display:inline-block;margin-right:15px}#give-metabox-form-data .give_options_panel .give-repeatable-field-section{padding:10px;background:#f5f5f5}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-repeatable-fields-section-wrapper{width:100%;background-color:#fff;border-collapse:collapse}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-row{border-bottom:15px solid #f5f5f5;background-color:#fff}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-template{display:none}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-row:last-child{border-bottom:10px solid #f5f5f5}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-column{padding:0}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-remove{float:right;width:22px;height:36px;padding:0;display:block;text-align:center;line-height:34px;font-size:21px;font-weight:300;cursor:pointer}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-remove:hover{background-color:red;color:#fff;width:22px;height:22px;border-radius:30px;margin-top:8px;line-height:19px}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-row-head{border-bottom:1px solid #eee;cursor:move}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-row-head h2{text-align:left!important}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-row.closed .toggle-indicator:before{content:"\f140"}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-row .give-move .toggle-indicator:before{margin-left:7px}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-add-repeater-field-section-row-wrap{background-color:#f5f5f5}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-add-repeater-field-section-row{margin:5px}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-field-wrap:last-child{border-bottom:1px solid #eee}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-ui-placeholder-state-highlight{background-color:#68bb6c}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-repeater-field-name{border:0!important;padding:0!important}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-repeater-field-description{color:#aaa;font-size:12px;line-height:18px;display:block;padding-bottom:10px;font-style:italic}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .ui-sortable-helper{display:table!important}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-row.ui-sortable-helper{border-bottom:0}#give-metabox-form-data .give-minmax-wrap{display:block;margin-bottom:.5rem}#give-metabox-form-data .give-minmax-wrap label{display:inline-block;width:120px;font-size:12px}#give-metabox-form-data .give-minmax-wrap input{margin-left:1px;position:relative;z-index:1;border-radius:0 4px 4px 0}#_give_donation_levels_field .give-row:nth-of-type(2) .give-remove{display:none!important}#give-metabox-form-data .give-metabox-tabs{margin:0;max-width:170px;float:left;line-height:1em;padding:0 0 10px;position:relative;background-color:#fafafa;border-right:1px solid #eee;box-sizing:border-box}#give-metabox-form-data .give-metabox-tabs:after{content:"";display:block;width:100%;height:9999em;position:absolute;bottom:-9999em;left:0;background-color:#fafafa;border-right:1px solid #eee}#give-metabox-form-data .give-metabox-tabs li{margin:0;padding:0;display:block;position:relative}#give-metabox-form-data .give-metabox-tabs li a{margin:0;padding:10px;display:block;box-shadow:none;text-decoration:none;line-height:20px!important;border-bottom:1px solid #eee;overflow:hidden}#give-metabox-form-data .give-metabox-tabs li a span.give-label{width:122px;display:inline-block}#give-metabox-form-data .give-metabox-tabs .give-metabox-sub-tabs li{background-color:#f1f1f1}#give-metabox-form-data .give-metabox-tabs .give-metabox-sub-tabs li a{border-bottom-color:#e5e5e5}#give-metabox-form-data .give-metabox-tabs li.active>a{color:#555;position:relative;background-color:#eee}#give-metabox-form-data .give-metabox-tabs li.has-sub-fields.active>a{background-color:#ddd}#give-metabox-form-data .give-metabox-tabs li.has-sub-fields:not(.active):hover ul.give-metabox-sub-tabs{display:block;position:absolute;bottom:0;left:166px;width:170px;max-height:250px}@media (max-width:550px),only screen and (min-width:851px) and (max-width:1025px){#give-metabox-form-data ul.give-metabox-tabs{min-width:40px}#give-metabox-form-data ul.give-metabox-tabs li>a{text-align:center}#give-metabox-form-data ul.give-metabox-tabs li>a:before{margin-right:0;font-size:15px}#give-metabox-form-data ul.give-metabox-tabs li>a span.give-label{display:none}#give-metabox-form-data ul.give-metabox-tabs li>a span.give-icon:before{margin:0}#give-metabox-form-data .give_options_panel{padding-left:40px}#give-metabox-form-data .give_options_panel .give-field-wrap{padding:10px}#give-metabox-form-data .give_options_panel .give-field-wrap label,#give-metabox-form-data .give_options_panel .give-field-wrap span.give-field-label{display:block;float:none;margin:0 0 10px;font-size:14px;width:100%}}.chosen-container-single a.chosen-single{background:#fff!important}.give-docs-link{text-align:right;margin-right:15px}.give-docs-link a{color:#999;text-decoration:none;font-style:italic}.give-docs-link a:hover{color:#0073aa}.give-docs-link a span{font-style:normal}.post-type-give_forms #posts-filter .search-box{display:none}.post-type-give_forms #posts-filter .tablenav.top{position:relative;margin:42px 0 0;height:auto}.post-type-give_forms #posts-filter .tablenav.top #give-forms-advanced-filter{margin:0 0 10px}.post-type-give_forms #posts-filter .tablenav.top #give-forms-advanced-filter #give-forms-goal-filter{width:255px}.post-type-give_forms #posts-filter .tablenav.top #give-forms-advanced-filter a{display:inline-block;margin:0}.post-type-give_forms #posts-filter .tablenav.top #give-forms-advanced-filter #give-forms-search-input{margin-right:6px}.post-type-give_forms #posts-filter .tablenav.top .actions{position:absolute;left:230px;bottom:10px}.post-type-give_forms #posts-filter .tablenav.top .actions.bulkactions{left:0}@-moz-document url-prefix(){.give_options_panel .give-money-symbol{padding:8.5px 10px}}#give-dashboard-widgets-wrap .inside{padding-top:0;padding-bottom:0}.give_forms_page_give-reports #give-dashboard-widgets-wrap .inside{padding-left:0}#give-dashboard-widgets-wrap .inside #give-graphs-filter{float:none}#give-dashboard-widgets-wrap .postbox{margin-bottom:10px}#give-dashboard-widgets-wrap table.reports-table{clear:none}#give-dashboard-widgets-wrap #give-date-range-options{float:left}#give-dashboard-widgets-wrap #give-date-range-options>span{float:left;line-height:30px;font-style:italic;padding:0 5px 0 0}#give-graphs-filter{float:right}#give-graphs-filter .tablenav{margin:0 0 0 17px}#give-graphs-filter .tablenav .actions{padding:0}.give-graph .y1Axis{color:#66bb6a!important}.give-graph .y2Axis{color:#546e7a!important}body.give_forms_page_give-payment-history h1.nav-tab-wrapper,body.give_forms_page_give-payment-history h2.nav-tab-wrapper,body.give_forms_page_give-reports h1.nav-tab-wrapper,body.give_forms_page_give-reports h2.nav-tab-wrapper{margin-bottom:10px}body.give_forms_page_give-payment-history .actions,body.give_forms_page_give-reports .actions{padding-top:0}body.give_forms_page_give-payment-history .pagination-links,body.give_forms_page_give-reports .pagination-links{margin-left:10px}body.give_forms_page_give-payment-history p.donor-search,body.give_forms_page_give-reports p.donor-search{margin-right:10px}body.give_forms_page_give-payment-history .tablenav-right .tablenav-pages,body.give_forms_page_give-reports .tablenav-right .tablenav-pages{float:right}body.give_forms_page_give-payment-history .tablenav-right #give-reports-view,body.give_forms_page_give-reports .tablenav-right #give-reports-view{margin-top:0}body.give_forms_page_give-payment-history .tablenav-right .actions,body.give_forms_page_give-payment-history p.search-box,body.give_forms_page_give-reports .tablenav-right .actions,body.give_forms_page_give-reports p.search-box{float:left}body.give_forms_page_give-payment-history .reports-table-nav.tablenav.top,body.give_forms_page_give-reports .reports-table-nav.tablenav.top{width:100%;float:none;margin:0 0 10px}body.give_forms_page_give-payment-history .reports-forms-details-wrap.top,body.give_forms_page_give-reports .reports-forms-details-wrap.top{float:right;overflow:hidden}body.give_forms_page_give-payment-history .reports-forms-details-wrap.top #give-reports-filter,body.give_forms_page_give-reports .reports-forms-details-wrap.top #give-reports-filter{float:left}body.give_forms_page_give-payment-history .reports-forms-details-wrap.top>.actions,body.give_forms_page_give-reports .reports-forms-details-wrap.top>.actions{padding-right:0}body.give_forms_page_give-payment-history .tablenav.bottom,body.give_forms_page_give-reports .tablenav.bottom{margin-top:10px}body.give_forms_page_give-payment-history h2.reports-earnings-title,body.give_forms_page_give-reports h2.reports-earnings-title{margin:7px 0 0}body.give_forms_page_give-payment-history .reports-views-wrap,body.give_forms_page_give-reports .reports-views-wrap{padding:3px 0 0}body.give_forms_page_give-payment-history .wrap.give-reports-donors-wrap,body.give_forms_page_give-reports .wrap.give-reports-donors-wrap{margin-right:0;margin-bottom:10px}body.give_forms_page_give-payment-history .widefat tbody td,body.give_forms_page_give-payment-history .widefat tbody th,body.give_forms_page_give-reports .widefat tbody td,body.give_forms_page_give-reports .widefat tbody th{padding-top:12px;padding-bottom:12px}body.give_forms_page_give-reports table.export-options-table tbody td{padding:20px 12px;vertical-align:top}body.give_forms_page_give-reports table.export-options-table .give-export-form{position:relative}body.give_forms_page_give-reports table.export-options-table .give-export-form .notice-wrap{background-color:transparent;padding:12px 12px 4px;margin:2px 0 -16px -11px;overflow:auto}body.give_forms_page_give-reports table.export-options-table .give-export-form .notice-wrap .spinner{margin:-2px -12px 8px 0}body.give_forms_page_give-reports table.export-options-table span#give-end-wrap input,body.give_forms_page_give-reports table.export-options-table span#give-start-wrap input{width:100px}#export-donor-options-wrap p{padding:20px 0 0;margin:0;font-weight:700}#export-donor-options-wrap ul{max-width:900px;overflow:hidden}#export-donor-options-wrap ul li{margin:0;padding:0 5px 5px 0;box-sizing:border-box;float:left;width:33%}.settings-excludes-list{max-height:120px;overflow:auto;padding:.5rem;border:1px solid #ddd}.settings-excludes-list li{margin:3px 0}#give-tools-recount-form .notice-wrap{position:relative;min-height:25px;margin:10px -12px -12px;background:#efefef;padding:10px 12px 12px;border-top:1px solid #e5e5e5}#give-tools-recount-form .notice-wrap .give-progress{position:absolute;top:15px}#give-tools-recount-form .notice-wrap .spinner{position:absolute;right:14px;top:13px;margin:0}#give-tools-recount-form .notice-wrap #give-batch-success{margin-bottom:6px}.recount-stats-controls form{display:inline}.give-recount-stats-descriptions{margin:8px 0 0;display:block}.give-recount-stats-descriptions span{line-height:24px;font-size:13px;font-style:italic;font-weight:400;color:#aaa;margin:0;display:none}.gateways-report-tablenav .actions.bulkactions{padding-right:0}table.give-table td{vertical-align:middle}table.give-table td.row-title h3{margin:0 0 .4em;font-size:1.2em}table.give-table td.row-title p{font-size:13px;font-style:italic;font-weight:400;color:#aaa;margin:0}#give-graphs-filter>.tablenav{height:auto}#give-logs-filter .search-box{float:right}#give-logs-filter .tablenav.top{float:left;clear:none;margin-top:0}.give-welcome-wrap{margin:0 0 0 -20px;padding:0}.give-welcome-header{background:#fff;height:100%;min-width:1000px}.give-welcome-header .give-welcome-header-inner{max-width:900px;margin:0;padding:25px 250px 20px 30px;position:relative}.give-welcome-header .give-welcome-h1{margin:0 200px 0 0;padding:0;color:#32373c;line-height:1.2em;font-size:2.8em;font-weight:600;display:inline-block;margin-right:15px!important}.give-welcome-header .give-welcome-h1:before{background:url(../images/give-icon-full-circle.svg);width:36px;height:36px;content:" ";display:block;float:left;margin:0 10px 0 0;position:relative;top:4px}.give-welcome-header .give-welcome-text{font-size:20px;margin:20px 0 30px;padding:0}.give-badge{background:url(../images/give-badge.png) no-repeat 0 0 transparent;padding-top:150px;height:52px;width:185px;color:#fff;font-weight:700;font-size:14px;text-align:center;text-shadow:0 1px 0 rgba(0,0,0,.8);margin:0;position:absolute;top:30px;right:20px}.give-welcome-content-wrap{padding:0;margin:0}.give-welcome-content-wrap.give-changelog-wrap{width:1140px}.give-welcome-content-intro{font-size:22px;font-style:italic;color:#8e8e8e;margin:50px 30px 60px;max-width:1400px;min-width:1000px}.give-ipad-showcase-wrap{border:3px solid #9199a5;border-radius:10px;position:relative;box-shadow:0 .75rem 2rem rgba(0,0,0,.4)}.give-ipad-showcase-wrap .give-ipad-showcase-inner{background:#fafbfb;border:10px solid #1e2026;border-radius:7px;display:grid}.give-ipad-showcase-wrap img{height:auto;max-width:100%}.give-feature-section{margin:0;padding:120px 30px}.give-feature-section__inner{display:flex;flex-direction:row;margin:0;align-items:center;justify-content:center;max-width:1400px;min-width:1000px}.give-feature-section:first-of-type{padding-top:0}.give-feature-section__step2{background:#fff}.give-feature-section span.dashicons{width:16px;height:16px;font-size:14px;margin:6px 0 0}.give-feature-section .give-feature-section-item{display:flex;width:50%}.give-feature-section .give-feature-section-item__container{padding:0 60px 0 0;margin:0}.give-feature-section .give-feature-section-item__container-right{padding-left:60px;padding-right:20px}.give-feature-section .give-feature-section-item h3{font-size:24px;font-weight:500;margin:0 0 20px}.give-feature-section .give-feature-section-item h3>.give-feature-section-item-number{background:#fff;width:40px;height:40px;margin:0 10px 0 0;padding:0;line-height:40px;text-align:center;color:#777;box-shadow:0 1px 3px 0 rgba(0,0,0,.2);border-radius:50%;display:inline-block;font-size:22px}.give-feature-section .give-feature-section-item p{font-size:16px}.give-feature-section .give-feature-section-item .give-welcome-gateway-notice{font-size:12px!important;line-height:16px}.give-feature-section .give-feature-btns{margin:30px 0 20px}.give-feature-section .give-feature-btns li{display:inline;margin:0 25px 0 0}.give-feature-section .give-feature-btns .give-feature-btn-link{font-size:15px;line-height:30px}.social-items-wrap,.social-items-wrap>div{display:inline-block}.social-items-wrap .twitter-item-wrap{margin:0 20px 10px 0}.give-welcome-widgets{background:#fff;text-align:center;padding:100px 0 160px}.give-welcome-widgets p{font-size:16px}.give-welcome-widgets__inner{max-width:1400px}.give-welcome-widgets__heading{max-width:500px;margin:0 auto 100px}.give-welcome-widgets__heading h2{font-size:26px;font-weight:500}.give-welcome-widgets__heading .button{margin-top:10px;font-size:15px}.give-welcome-widgets__col{float:left;width:33.33%;box-sizing:border-box;padding:0 20px}.give-welcome-widgets__col h3{font-size:22px;font-weight:500}.give-welcome-widgets__col h3:before{background:url(../images/happy-face.svg) no-repeat top transparent;opacity:.3;content:" ";width:100%;height:85px;display:inline-block;font-size:80px;-moz-transition:.2s all linear;-o-transition:.2s all linear;transition:all .2s linear}.give-welcome-widgets__col p{font-size:13px}.give-welcome-widgets__col:hover h3:before{opacity:.45}.give-welcome-widgets__addons h3:before{background:url(../images/shopping-cart.svg) no-repeat top transparent}.give-welcome-widgets__documentation h3:before{background:url(../images/docs-book.svg) no-repeat top transparent}.give-welcome-widgets__col-inner{max-width:300px;margin:0 auto}.give-welcome-widgets__link{font-weight:700;font-size:15px}.give-contributor-group{list-style:none}.give-contributor-group img{border-radius:50%}.give-contributor-group .give-contributor{margin:0 10px 45px 0;display:inline-block;width:140px;text-align:center}.give-contributor-group .give-contributor a{outline:none;box-shadow:none}.give-contributor-group .give-contributor span{display:block;margin:3px 0 0;font-weight:700}.give-newsletter-form-wrap{margin:10px 0 15px;padding:10px 15px 15px;background:#f1f1f1;border:1px solid #ddd;max-width:900px}.give-newsletter-form-wrap .give-newsletter-intro{font-size:14px;font-style:italic;color:#777;margin:0 0 15px}.give-newsletter-form-wrap ._form-content{display:flex;justify-content:space-between}.give-newsletter-form-wrap ._form-content>div{width:32%}.give-newsletter-form-wrap .button,.give-newsletter-form-wrap input[type=email],.give-newsletter-form-wrap input[type=text]{width:100%;height:36px}.give-newsletter-form-wrap div._form-thank-you{background:#fff;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1);margin:5px 10px 4px 5px;padding:12px;border-left:4px solid #7ad03a;display:none}.give-newsletter-form-wrap div._form-thank-you>p{margin:.5em 0;padding:2px}.give-changelog-wrap .give-changelog{max-height:510px;margin:0 0 100px 30px;padding:20px;overflow-y:scroll;overflow-x:hidden;font-size:18px;line-height:28px;background:#fff;border:1px solid #ddd}.give-changelog-wrap .give-changelog br:first-child,.give-changelog-wrap .give-changelog br:first-child+br{display:none}.give-changelog-wrap .give-changelog h4{margin:0 0 10px;border-bottom:1px solid #e2e2e2;padding:0 0 6px;font-size:20px}.give-changelog-wrap .give-changelog h4+br{display:none}.dashboard_page_give-changelog #wpbody-content,.dashboard_page_give-getting-started #wpbody-content{padding-bottom:0}#give-paypal-connect{background:#039cde;color:#fff;font-size:14px;line-height:30px;font-weight:700;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;box-shadow:none;text-decoration:none;padding:8px 20px;border-radius:40px}#give-paypal-connect span:before{content:" ";width:16px;height:16px;display:inline-block;margin:0 8px 0 0;background-image:url(../images/paypal-48.png);background-size:16px;position:relative;top:2px}#give_donor_export_form{margin:0 0 5px}#give_donor_export #give_donor_export_form_chosen{display:block;margin:5px 0 1px}.column-status .give-donation-status,.column-status .give-test-mode-transactions-label{display:inline-block}.column-status .give-test-mode-transactions-label{margin:0 5px;vertical-align:middle}.give-settings-page .give-settings-section-content{display:flex;background-color:#f4f4f4;border-radius:8px;-webkit-box-shadow:0 0 5px 0 #ddd;-moz-box-shadow:0 0 5px 0 #ddd;box-shadow:0 0 5px 0 #ddd}.give-settings-page .give-settings-section-content .give-settings-section-group-menu{width:250px}.give-settings-page .give-settings-section-content .give-settings-section-group-menu ul,.give-settings-page .give-settings-section-content .give-settings-section-group-menu ul li{margin:0}.give-settings-page .give-settings-section-content .give-settings-section-group-menu ul li a{display:block;padding:20px;text-decoration:none;color:#333;font-weight:600;outline:none;box-shadow:none}.give-settings-page .give-settings-section-content .give-settings-section-group-menu ul li a:hover{background-color:#ebebeb}.give-settings-page .give-settings-section-content .give-settings-section-group-menu ul li a.active{background-color:#fff;border-left:4px solid #66bb6a;color:#333}.give-settings-page .give-settings-section-content .give-settings-section-group-content{width:100%;background:#fff;padding:10px 30px;border-bottom-right-radius:8px;border-top-right-radius:8px;min-height:400px}@media only screen and (max-width:480px){.give-settings-page .give-settings-section-content{flex-flow:row wrap}.give-settings-page .give-settings-section-content .give-settings-section-group-menu{width:100%}.give-settings-page .give-settings-section-content .give-settings-section-group-content{padding:10px}}.give-settings-page{margin:0 20px 0 2px}.give-settings-page #poststuff{padding-top:25px}.give-settings-page .give-settings-header{background:#fff;padding:10px 20px;margin:0 -20px 0 -22px}.give-settings-page .give-settings-heading-sep{font-size:14px;line-height:32px;width:15px}.give-settings-page .nav-tab-wrapper{height:54px;margin:0 -20px 0 -22px}.give-settings-page .give-subsubsub{list-style:none;margin:12px 0 3px;padding:0;float:left}.give-settings-page .give-subsubsub li{display:inline-block;margin:0 0 0 3px;padding:0;white-space:nowrap;color:#d3d3d3;font-weight:300;font-size:16px}.give-settings-page .give-subsubsub a{line-height:2;padding:.2em;margin:0 3px 0 0;text-decoration:none;font-size:14px;box-shadow:none;font-weight:400}.give-settings-page .give-subsubsub a.current{color:#000;font-weight:600;border:none}.give-settings-page .give-setting-tab-body{max-width:1260px}.give-settings-page div.give-submit-wrap{margin:20px 0}.give-settings-page .give_forms_page_give-payment-history .postbox .hndle{cursor:default}.give-settings-page .give-input-field{width:25em}.give-settings-page table table input[type=text]{width:15em}.give-settings-page .give-repeat-setting-field{margin:10px 0}.give-settings-page .give-remove-setting-field{width:25px;height:25px;padding:0;text-align:center;line-height:22px;font-size:21px;font-weight:300;cursor:pointer;margin-left:20px;display:inline-block}.give-settings-page .give-remove-setting-field:hover{background-color:red;color:#fff;border-radius:30px}.give-settings-page .give-forminp p:first-child .give-remove-setting-field{display:none}.give-settings-page .export-options-table tr.give-import-option:nth-child(odd){background:#f4f3f3}.give-settings-page .export-options-table tr.give-import-option:nth-child(odd) th{vertical-align:middle}.give-settings-page .export-options-table .give-import-dropdown:nth-child(2),.give-settings-page .export-options-table tr.give-import-option th:first-child{width:250px}.give-setting-tab-header{clear:both;overflow:hidden;margin:30px 0}.give-setting-tab-header h2{margin-top:8px}.give-setting-tab-header p{margin-top:0;margin-bottom:0}.give-radio-inline ul{margin-top:0}.give-radio-inline li{display:inline-block;margin:0 0 0 15px}.give-radio-inline li:first-child{margin-left:0}.give-tools-setting-page .bulkactions{overflow:visible}.form-table td.give-radio-inline fieldset li>label{margin:5px 0 0!important}div.give-field-description,p.give-field-description{color:#666;font-style:italic;font-size:14px!important;line-height:22px}div.give-field-description strong,p.give-field-description strong{color:#777}.give-setting-tab-header h2{float:left;display:inline-block;width:220px;font-style:italic;color:#aaa;margin:0;font-size:14px}.gateway-enabled-wrap{background-color:#f7f7f7;border:1px solid #e5e5e5}.gateway-enabled-wrap .gateway-enabled-settings-title{display:grid;grid-template-columns:.5fr 2.5fr 5fr 1fr 1fr;grid-gap:20px;border-bottom:1px solid #e5e5e5;padding:1rem;font-weight:600}.gateway-enabled-wrap .ui-sortable-placeholder{visibility:visible!important;border:2px dashed #e5e5e5;transition:all .2s ease}.gateway-enabled-wrap .ui-sortable-helper{background-color:#fafafa;box-shadow:0 4px 20px -5px rgba(0,0,0,.25);border:1px solid #e5e5e5;padding:.5rem!important}.give-payment-gatways-list{margin:0;padding:1rem}.give-payment-gatways-list li{display:grid;grid-template-columns:.5fr 2.5fr 5fr 1fr 1fr;align-items:center;grid-gap:20px;margin:0;padding:.5rem 0}.give-payment-gatways-list li:first-child{padding-top:0}.give-payment-gatways-list li:last-child{padding-bottom:0}.give-payment-gatways-list li .checkout-label{padding:3px 5px}.give-payment-gatways-list li .gateways-checkbox,.give-payment-gatways-list li .gateways-radio{justify-self:center}.give-payment-gatways-list li span.give-drag-handle{padding:3px 4px 0 0;font-size:15px;font-weight:400;color:#bdbdbd;cursor:move}.give-payment-gatways-list li span.give-drag-handle:hover{color:#333}.give-gateways-notice{display:table;width:100%;max-width:1240px;background:#fff;margin:15px 0 0;padding:0;border:1px solid #e3e3e3}.give-gateways-notice .give-gateways-cc-icon{margin:0;padding:0 15px 0 25px;height:30px;width:30px;display:table-cell;vertical-align:middle}.give-gateways-notice .give-gateways-cc-icon svg{position:relative;top:2px;width:50px;height:40px}.give-gateways-notice .give-gateways-notice-title{font-size:16px;margin:20px 20px 0;padding:0}.give-gateways-notice .give-gateways-notice-message{line-height:24px;font-size:14px;margin:5px 20px 20px}.give-gateways-notice .give-gateways-notice-button{display:table-cell;vertical-align:middle;text-align:right;margin:0;padding:0 15px 0 0;width:200px}.give-gateways-notice .give-gateways-notice-button #give-stripe-connect{margin:0 0 10px}.give-gateways-notice .give-gateways-notice-button .give-view-gateways-btn{text-align:center;width:190px}.give-email-tags-wrap{margin:5px 0 0}.give-email-tags-wrap code{font-style:normal;padding:1px 2px;font-size:12px}.give-email-tags-wrap span{display:block;color:#aaa;font-style:italic;margin:0 0 2px;font-size:13px}.give-email-tags-wrap .give_price_tag,.give-email-tags-wrap .give_receipt_id_tag{display:none}.give-setting-tab-header-emails{margin:20px 0}.give-setting-tab-header-emails hr,.give-settings-admin-email-section .tablenav,.give-settings-donor-email-section .tablenav,.give-settings-email-settings-section .tablenav{display:none}.give-settings-admin-email-section .tablenav.bottom+.give-setting-tab-header-emails,.give-settings-donor-email-section .tablenav.bottom+.give-setting-tab-header-emails,.give-settings-email-settings-section .tablenav.bottom+.give-setting-tab-header-emails{margin:20px 0}.give-settings-admin-email-section .tablenav.bottom+.give-setting-tab-header-emails hr,.give-settings-donor-email-section .tablenav.bottom+.give-setting-tab-header-emails hr,.give-settings-email-settings-section .tablenav.bottom+.give-setting-tab-header-emails hr{display:block}.giveemailnotifications .check-column{padding:13px 10px 0 20px!important}.giveemailnotifications td.check-column input{display:none}.giveemailnotifications th.check-column .give-email-notification-status{color:#fff;cursor:pointer}.giveemailnotifications th.check-column .give-email-notification-status[data-edit="1"] i.dashicons{border-radius:1em;padding:2px}.giveemailnotifications th.check-column .give-email-notification-disabled:hover .dashicons-no-alt,.giveemailnotifications th.check-column .give-email-notification-enabled .dashicons-yes{background:#46b450}.giveemailnotifications th.check-column .give-email-notification-enabled .dashicons-lock{color:#46b450}.giveemailnotifications th.check-column .give-email-notification-disabled .dashicons-no-alt,.giveemailnotifications th.check-column .give-email-notification-enabled:hover .dashicons-yes{background:#bbb}.giveemailnotifications th.check-column .give-email-notification-disabled .dashicons-lock{color:#bbb}.giveemailnotifications th.check-column .dashicons-no-alt:hover:before{content:"\f147"!important}.giveemailnotifications th.check-column .dashicons-yes:hover:before{content:"\f335"!important}.giveemailnotifications .spinner.is-active{margin:0 0 0 2px;float:none}#system-info-textarea{width:800px;height:600px;font-family:Menlo,Monaco,monospace;background:#fff;white-space:pre;overflow:auto;display:block;direction:ltr}#give-download-sysinfo{margin:0}#api .tablenav .actions{overflow:visible}a.give-delete{color:#a00}.give-table thead th{padding:8px 10px!important}.post-type-give_forms .mce-container iframe,.post-type-give_forms .wp-editor-area{min-height:400px}.give-field-description{color:#aaa;font-style:italic;margin:0;padding-top:.5em}.give-image-thumb{position:relative;margin-top:14px}.give-image-thumb span.give-delete-image-thumb{position:absolute;background:red;color:#fff;border-radius:30px;left:-10px;top:-10px;cursor:pointer}.give-image-thumb img{max-width:250px;border:4px solid #fff}.give_email_access_link_tag{display:none}.give-license-settings-wrap{max-width:1240px;min-width:1000px;margin:20px 0 0 -10px;padding:0}.give-license-top-widget{border:1px solid #dbdbdb;min-height:250px}.give-license-top-widget .give-license-widget-heading{font-size:20px;margin:0 0 15px;padding:0 0 15px;border-bottom:1px solid #dbdbdb;line-height:1.2em}.give-license-top-widget .give-license-widget-heading .dashicons{height:25px;width:25px;font-size:28px;margin:-5px 10px 0 0}.give-license-top-widget .give-field-description{margin:0 0 20px;padding:0}#give-license-activator-wrap{background:#fff;margin:0;padding:30px}#give-license-activator-wrap .give-license-activation-form{background:#f4f4f4;padding:10px;position:relative}#give-license-activator-wrap .give-license-notices{position:absolute;background:#f4f4f4;top:0;left:0;height:100%;width:100%;padding:20px;z-index:3;box-sizing:border-box;display:none}#give-license-activator-wrap .give-license-notices .notice{position:relative;padding-right:40px}#give-license-activator-wrap #give-license-activator{font-size:22px;height:55px;padding:0 15px;margin:0 0 10px;width:100%}#give-license-activator-wrap .button{height:45px;width:100%;font-size:18px;display:block;clear:both;margin:0}#give-addon-uploader-wrap{background:#fff;padding:30px 25px 25px;margin:0}.give-upload-addon-form-wrap{position:relative}.give-upload-addon-form-wrap .give-upload-addon-instructions{margin:0;padding:0;opacity:.4;font-size:16px}.give-upload-addon-form-wrap .give-upload-addon-instructions span{display:block;margin:8px 0;font-size:14px}.give-upload-addon-form-wrap #give-upload-addon-file-select{display:none}.give-upload-addon-form-wrap .give-spinner-wrap{position:absolute;left:0;top:0;right:0;bottom:0;z-index:99;background-color:#fff}.give-upload-addon-form-wrap .give-spinner-wrap .give-spinner-inner{margin-top:5%;margin-left:42%}.give-upload-addon-form{background:#f4f4f4;padding:25px;text-align:center;outline:2px dashed #e2e2e2;outline-offset:-10px;transition:outline-offset .15s ease-in-out,background-color .15s linear;position:relative}.give-upload-addon-form.give-dropzone-active{outline-offset:-13px;outline:2px dashed #c6c6c6;background:#eaeaea}.give-upload-addon-form .give-addon-upload-notices{position:absolute;background:hsla(0,0%,100%,.66);top:0;left:0;height:100%;width:100%;padding:20px;z-index:3;text-align:left;box-sizing:border-box;display:none}.give-upload-addon-form .give-activate-addon-wrap{display:none;border:1px solid #dbdbdb;background:#fff;position:absolute;padding-top:20px;top:0;left:0;height:100%;width:100%;z-index:4;box-sizing:border-box}.give-upload-addon-form .give-activate-addon-wrap .dashicons{color:#66bb6a}#give-licenses-container{position:relative}#give-licenses-container .give-spinner-wrap{position:absolute;left:0;top:0;right:0;bottom:0;z-index:99;background-color:#fff}#give-licenses-container .give-spinner-wrap .give-spinner-inner{margin-top:5%;margin-left:45%}.give-licenses-list-header{margin:20px 0 30px;padding:0}.give-licenses-list-header h2{float:left;margin:0 0 20px;padding:0;font-size:18px}.give-licenses-list-header #give-refresh-button-wrap{float:left;margin:-6px 0 0 25px}.give-licenses-list-header #give-refresh-button-wrap #give-last-refresh-notice{margin:0 0 0 10px;line-height:28px;color:#666}.give-licenses-list-header hr{clear:both}.give-addon-wrap{border:1px solid #dbdbdb;background:#fff;padding:0;margin:0 0 20px;position:relative}.give-addon-wrap .give-license-top{background:#f4f4f4;border-bottom:1px solid #dbdbdb;display:flex;color:#333}.give-addon-wrap .give-license-notice-container.give-addon-notice-shown{background:#f4f4f4;border-bottom:1px solid #dbdbdb;padding:30px}.give-addon-wrap .give-license-notice-container.give-addon-notice-shown .notice{margin:0}.give-addon-wrap .give-license-top-header{display:block;font-size:15px;margin:0 0 20px;font-weight:700;color:#23282d}.give-addon-wrap .give-license-top-column{float:left;padding:30px;flex:1}.give-addon-wrap .give-license-top-column.give-license-info-field-wrap,.give-addon-wrap .give-license-top-column.give-license-key-field-wrap{border-right:1px solid #dbdbdb}.give-addon-wrap .give-license-top-column.give-license-key-field-wrap{flex:1.45;padding-right:10px}.give-addon-wrap .give-license-top-column.give-license-info-field-wrap .give-field-description{padding-top:0}.give-addon-wrap .give-license__status{margin:10px 0 0 -4px;padding:0}.give-addon-wrap .give-license__status .dashicons-yes{color:#66bb6a}.give-addon-wrap .give-license__status .dashicons-no{color:#a00}.give-addon-wrap .give-license__key{display:inline-block}.give-addon-wrap .give-license__key input[type=text]{margin:0 10px 0 0}.give-addon-wrap .give-license__key button{font-size:15px;position:relative;top:-1px}@media (min-width:1400px){.give-addon-wrap .give-license__key input[type=text]{min-width:290px;height:40px;font-size:18px;padding:10px}.give-addon-wrap .give-license__key button{width:110px;height:40px}}@media (max-width:1399px){.give-addon-wrap .give-license__key input[type=text]{min-width:230px;height:35px;font-size:15px;padding:8px}.give-addon-wrap .give-license__key button{width:85px;height:35px;font-size:1em}}.give-addon-wrap .give-license-action-link{display:block;margin:0 0 15px;box-shadow:none}.give-addon-wrap .give-license-renewal-date .dashicons{opacity:.8;margin:0 3px 0 0;position:relative;top:-2px}.give-addon-wrap .give-license-activations-remaining-icon{border-radius:100%;height:20px;width:20px;display:inline-block;padding:1px;font-size:12px;line-height:20px;text-align:center;font-weight:700;margin:0 2px 0 0}.give-addon-wrap .give-plugin__info{padding:6px 9px}.give-addon-wrap .give-plugin__status{border:none;padding:0 5px;line-height:20px!important}.give-addon-info-wrap{margin:30px;padding:20px;background:#f4f4f4;border:1px solid #dbdbdb;color:#333}.give-addon-info-wrap .give-addon-info-left{float:left}.give-addon-info-wrap .give-addon-name{font-weight:700;font-size:14px}.give-addon-info-wrap .give-addon-version{font-size:11px;margin:0 0 0 20px}.give-addon-info-wrap .give-addon-info-right{float:right}.give-addon-info-wrap .give-addon-info-right .give-button{margin:-5px 0 0;position:relative;top:2px}.give-addon-info-wrap .give-addon-info-right .give-button .dashicons{font-size:14px;width:14px;height:14px;margin-right:3px;margin-top:5px}.give-addon-info-wrap .give-addon-activation-status{border-radius:4px;color:#fff;background:#777;padding:3px 8px;margin:0 15px 0 0;font-size:11px}.give-addon-info-wrap .give-addon-activation-status__activated{background:#7ad03a;text-shadow:0 0 1px #4b8420}.give-addon-info-wrap .give-addon-view-changelog{margin:0 15px 0 0;font-size:12px}.give-filters{clear:both;background:#f5f5f5;border:1px solid #dfdfdf;padding:12px 12px 0}.give-filters .give-donation-forms-filter .chosen-single{height:28px;line-height:28px}.give-filters .chosen-container-single .chosen-single div b{background-position:0 4px}.give-filters .chosen-container-active.chosen-with-drop .chosen-single div b{background-position:-18px 6px}.give-filters #give-payment-form-filter,.give-filters #give_donation_forms_filter{display:inline-block;width:300px}@media screen and (max-width:782px){.give-filters #give-payment-form-filter,.give-filters #give_donation_forms_filter{width:100%}}.give-filters #give-payment-date-filters label,.give-filters #give-payment-form-filter label{vertical-align:initial}.give-filters #give-payment-date-filters label.give-donation-forms-filter-label,.give-filters #give-payment-form-filter label.give-donation-forms-filter-label{vertical-align:middle}.give-filters #give_donation_forms_filter{width:255px}@media screen and (max-width:782px){.give-filters #give_donation_forms_filter{width:100%;max-width:100%}}.give-filters:after{content:"";display:table;clear:both}.give-filter{display:block;margin-bottom:12px;width:100%}.give-filter:after{content:"";display:table;clear:both}.give-filter label{display:block;margin-right:4px}.give-filter input{margin:0}.give-filter input[type=text]{height:28px;width:100%}.give-filter input[type=search],.give-filter input[type=text]{height:28px}.give-filter .button{height:28px;line-height:26px;margin:0;padding:0 10px 1px}.give-filter select{width:100%}@media screen and (min-width:783px){.give-filter{float:left;margin-right:18px;width:auto}.give-filter label{display:inline-block}.give-filter input[type=text]{display:inline-block;width:144px}}.give-filter-search input[type=search]#give-payments-search-input{display:block;float:left;width:205px;max-width:100%}.give-filter-search input[type=submit]{display:block;float:right;width:30%}@media screen and (min-width:783px){.give-filter-search input[type=search]{display:inline-block;margin-right:4px;width:auto}.give-filter-search input[type=submit]{display:inline-block;width:auto}}@media screen and (min-width:600px){.give-filter-half{float:left;width:49%}.give-filter-half:last-child{float:right}}@media screen and (min-width:783px){.give-filter-half{width:auto}.give-filter-half:last-child{float:left}.give-filter-half input[type=text]{width:96px}}.give-clear-filters-button{margin-left:8px}.give-submit-wrap{clear:both;background:#f5f5f5;border:1px solid #dfdfdf;margin:8px 0;padding:12px;font-size:13px;line-height:2.1em}#give-payment-filters ul.subsubsub{margin-bottom:8px}#give-payments-advanced-filter ul.subsubsub{margin-bottom:12px}#give-payments-filter .tablenav.top{float:none}#give-payments-filter .tablenav.top .bulkactions{margin-top:1px;padding-top:0}#give-payments-filter .give-email-column-value{font-size:14px;font-weight:700}#give-payments-filter #the-list .check-column input{margin-top:1px}#give-payments-filter .column-details{width:50px}#give-payments-filter .column-amount{width:120px}tr.status-refunded td{background:#cecece;border-top-color:#ccc}.wp-list-table.forms th#date{width:140px}.give-mobile-link{line-height:32px;vertical-align:middle}.give-mobile-link img{max-width:80%;height:auto;float:left}.give-donation-status>span{display:inline-block;width:12px;height:12px;position:relative;top:1px;margin:0;padding:0;border-radius:50%;background:#888;line-height:16px}.give-donation-status.status-pending>span{background-color:#ffba00}.give-donation-status.status-complete>span,.give-donation-status.status-publish>span{background-color:#7ad03a}.give-donation-status.status-refunded>span{background-color:#777}.give-donation-status.status-failed>span{background-color:#a00}.give-donation-status.status-abandoned>span{background-color:#333}.give-donation-status.status-revoked>span{background-color:#d9534f}.give-donation-status.status-give_subscription>span,.give-donation-status.status-renewal>span,.give-donation-status.status-subscription>span{background-color:#5bc0de}#test-payment-label{padding:.2em .4em .3em;font-size:11px;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em;background-color:#ffba00;margin:0 15px;vertical-align:middle}#test-payment-label:hover{color:#fff;text-decoration:none}#give-payments-filter .give-payment-id{padding:.2em .4em .3em;font-size:11px;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em;font-weight:400}#give-payments-filter .give-payment-id:hover{color:#fff;text-decoration:none}#give-payments-filter .column-details{padding-right:30px}#give-payments-filter .give-donation-status{display:inline-block}#give-order-update .give-donation-status{display:inline-block;float:none;margin:0 10px;position:relative;top:3px}#give-order-update .give-order-top{border-bottom:1px solid #eee;overflow-x:auto;white-space:nowrap;width:100%}#give-order-update .give-order-top h3.hndle{float:left;border:none;display:inline-block}#give-order-update .give-order-top .delete-donation{display:inline-block;float:right}#give-order-update .give-order-top .delete-donation a{width:18px;height:16px;display:block;margin:11px 15px;content:"\f182";font-size:18px;color:#b5b5b5}#give-order-update .give-order-top .delete-donation a:focus,#give-order-update .give-order-top .delete-donation a:hover{color:red;box-shadow:none}.column-donation_form .donation-level-text-wrap{font-style:italic;display:block}@media handheld,only screen and (max-width:640px){.wp-list-table.forms th{width:auto!important}}.download_page_give-payment-history .ui-dialog .ui-dialog-titlebar-close span{margin-left:-8px;margin-top:-8px}.give-admin-box .label{font-weight:600}.give-admin-box-inside{margin:0;padding:3px 10px;clear:both;border-bottom:1px solid #eee;word-break:break-word}.give-admin-box-inside .strong{font-weight:600}.give-admin-box .right{float:right}#give-order-details .inside,#give-order-update .inside{margin:0;padding:0}#give-order-update input.give_datepicker{width:180px}#give-order-update input[type=number].give-payment-time-hour,#give-order-update input[type=number].give-payment-time-min{width:50px}.give-admin-box-inside:last-child{border-bottom:0}#give-edit-order-form .data-payment-key{word-break:break-all}.give-order-update-box #major-publishing-actions .button-secondary{margin-right:10px}#give-donation-overview th{text-align:left}#give-donation-overview .give-select-chosen{width:97%}#give-edit-order-form .row{margin-top:10px}#give-donation-overview ul,#give-donor-details .order-data-address input,#give-donor-details .order-data-column p.data input,#give-edit-order-form .column input,#give-order-address-country-wrap select{clear:both;display:block}.give-order-data input.small-text{margin:0}#give-order-update span.label{display:inline;width:50px}.give-order-update-box .button-primary{margin-right:0}#give-edit-order-form .column .description{padding-right:10px}#give-donation-overview .inside>ul>li,#give-donation-overview .row>ul>li,#give-edit-order-form .column{display:inline-block;position:relative;vertical-align:top}#give-donation-overview ul{font-size:0}#give-donation-overview ul li{font-size:13px}#give-donation-overview ul li.actions{text-align:right;min-width:200px}#give-donation-overview ul li.remove{text-align:right}#give-donation-overview ul .row{padding:12px;border-bottom:1px solid #eee}#give-order-data .data span{color:#666;font-weight:600}input.give-price-field{width:80px;padding:3px 5px}.give_forms_page_give-payment-history.js .postbox .hndle{cursor:default}#give-payment-notes textarea{min-height:150px}#give-payment-notes #give-add-payment-note{margin:6px 0 15px}#give_comment{min-height:150px}#give-billing-details .column>div{margin:0 0 10px}#give-billing-details label{display:block;margin-bottom:5px}#give-billing-details .column-container{padding:5px 0 10px}#give-billing-details input[type=text]{width:98%}#give-billing-details .chosen-container{width:98%!important}@media screen and (min-width:1200px){#give-edit-order-form .column{width:33%}#give-order-address .column{width:49%}#give-donation-overview.columns-4 li.actions{width:25%;margin-top:0;margin-right:0}}@media screen and (max-width:1199px){#give-edit-order-form .column{width:49%}}@media screen and (max-width:782px){.order-data-column input[type=email]{padding:6px 10px}}#give-donation-overview .inside,#give-donor-details .inside{margin-top:0}.give_forms_page_give-payment-history #give-dashboard-widgets-wrap #side-sortables{padding-top:0}.give-select-chosen .spinner{position:absolute;right:5px;top:2px;z-index:999}.give-select-chosen-ajax .spinner{visibility:visible}.give-select-chosen-ajax.chosen-container-single .chosen-search input[type=text],.give-select-chosen-ajax .chosen-search input[type=text]{background-image:none!important}.give-dashboard-widget .give-dashboard-today{text-align:center}.give-dashboard-widget .give-dashboard-today .give-dashboard-date-today{margin:10px 0 0;padding:0}.give-dashboard-widget .give-dashboard-today .give-dashboard-happy-day{padding:3px;margin:0}.give-dashboard-widget .give-dashboard-today .give-dashboard-today-earnings{font-size:42px;color:#4ead61;font-weight:700;margin:15px 0 0;line-height:1}.give-dashboard-widget .give-dashboard-today .give-donations-today{font-size:18px;font-weight:700;margin:0 0 30px;padding:4px 0 1px}.give-dashboard-widget .give-dashboard-today .give-last-seven{font-size:14px;font-weight:700;padding:0;margin:0 0 30px}.give-dashboard-widget .give-table-stats{width:100%;text-align:center;margin:0;table-layout:fixed;border-top:1px solid #ececec;border-spacing:0}.give-dashboard-widget .give-table-stats .give-dashboard-stat-total,.give-dashboard-widget .give-table-stats .give-dashboard-stat-total-label{padding:0;margin:0}.give-dashboard-widget .give-table-stats .give-dashboard-stat-total{color:#4ead61;font-weight:700;font-size:16px}#give_dashboard_sales>.inside{padding:0}#give_dashboard_sales .give-table-stats td{padding:10px 0}#give_dashboard_sales .give-table-stats td:first-of-type{border-right:1px solid #ececec}#give_dashboard_sales .give-table-stats tr#give-table-stats-tr-1 td{border-bottom:1px solid #ececec}#dashboard_right_now .give-forms-count:before{font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:18px;width:18px;height:18px;content:"\e800"}.give-range_slider_field{margin-top:.8rem}.give_forms_page_give-donors .wp-heading-inline+.notice:first-of-type{margin-top:25px}.give_forms_page_give-donors .give-nav-tab-wrapper{margin:10px -20px 20px}.give_forms_page_give-donors #give-donors-filter{position:relative}.give_forms_page_give-donors #give-donors-filter p.search-box{margin:0}.give_forms_page_give-donors #give-donors-search-filter{display:block;overflow:hidden}.give_forms_page_give-donors #give-donor-card-wrapper{margin-left:-1px;z-index:2;min-height:200px}.give_forms_page_give-donors #give-donor-card-wrapper input{font-weight:400}.give_forms_page_give-donors #give-donor-card-wrapper .donor-section{border-bottom:1px solid #eee;margin-bottom:10px}.give_forms_page_give-donors #give-donor-card-wrapper .donor-section .give-donor-search-box{margin-right:25px;width:auto;display:inline-block;float:left}.give_forms_page_give-donors #give-donor-card-wrapper .donor-section table{margin-bottom:0}.give_forms_page_give-donors #give-donor-card-wrapper>div:first-child{padding-top:20px}.give_forms_page_give-donors #give-donor-card-wrapper>div:last-child{padding-bottom:20px;border:none}.give_forms_page_give-donors #give-donor-card-wrapper .avatar-wrap{padding:0 15px 15px 0;text-align:center;float:left}.give_forms_page_give-donors #give-donor-card-wrapper .avatar-wrap img{border-radius:50%}.give_forms_page_give-donors #give-donor-card-wrapper a.delete{text-decoration:none;color:red;margin-right:5px}.give_forms_page_give-donors #give-donor-card-wrapper .donor-bio-header .donor-since{margin:10px 0;font-size:16px}.give_forms_page_give-donors #give-donor-card-wrapper .donor-bio-header .donor-id{display:inline-block;font-size:24px;font-weight:600;margin-right:10px}.give_forms_page_give-donors #give-donor-card-wrapper .donor-bio-header .donor-name-wrap{display:inline-block}.give_forms_page_give-donors #give-donor-card-wrapper .donor-bio-header .donor-edit-link{margin-bottom:15px}.give_forms_page_give-donors #give-donor-filters .give-donor-search-box{display:inline-block;float:left;margin-right:18px}.give_forms_page_give-donors #give-donor-filters .give-donor-search-box input#give-donors-search-input{width:205px;max-width:100%}.give_forms_page_give-donors #give-donor-filters label{vertical-align:initial}.give_forms_page_give-donors #give-donor-filters label.give-donation-forms-filter-label{vertical-align:middle}.give_forms_page_give-donors .donor-main-wrapper{clear:both;margin:0 0 20px}@media (max-width:655px){.give_forms_page_give-donors .donor-main-wrapper{width:100%}}.give_forms_page_give-donors .donor-main-wrapper table{margin:0}.give_forms_page_give-donors .donor-main-wrapper input[type=email],.give_forms_page_give-donors .donor-main-wrapper input[type=number],.give_forms_page_give-donors .donor-main-wrapper input[type=text]{width:200px}.give_forms_page_give-donors #donor-summary{padding:0 20px}.give_forms_page_give-donors #donor-summary:after{font-family:dashicons;content:"\f110";position:absolute;top:10px;right:10px;font-size:100px;color:#f0f0f0;z-index:0}.give_forms_page_give-donors #give-donor-card-wrapper .donor-address-wrapper{width:202px}.give_forms_page_give-donors #give-donor-card-wrapper .donor-address-wrapper span[data-key=line2]{display:table;clear:both}.give_forms_page_give-donors #give-donor-card-wrapper .donor-address-wrapper select{width:200px}.give_forms_page_give-donors #give-donor-card-wrapper .donor-info{min-height:185px}.give_forms_page_give-donors #give-donor-card-wrapper .info-wrapper{min-height:125px}.give_forms_page_give-donors .donor-info .donor-name{font-size:24px;font-weight:600}.give_forms_page_give-donors #disconnect-donor,.give_forms_page_give-donors #view-user-profile{font-size:12px;font-weight:400;text-decoration:none}.give_forms_page_give-donors #donor-edit-actions{text-align:center;margin-bottom:20px;line-height:28px}.give_forms_page_give-donors #donor-edit-actions .button-secondary{margin-right:10px}.give_forms_page_give-donors #give-donor-card-wrapper .edit-item{display:none}.give_forms_page_give-donors #give-donor-card-wrapper .give_user_search_results{left:1px;top:16px}.give_forms_page_give-donors #give-donor-card-wrapper .give_user_search_results ul{width:200px}.give_forms_page_give-donors #donor-stats-wrapper{margin:0 auto;text-align:center;padding:15px}.give_forms_page_give-donors #donor-stats-wrapper ul{margin:0;padding:0;overflow:hidden}.give_forms_page_give-donors #donor-stats-wrapper ul li{width:50%;float:left;line-height:22px;font-size:14px;margin:0}.give_forms_page_give-donors #donor-stats-wrapper a{text-decoration:none}.give_forms_page_give-donors #donor-stats-wrapper .dashicons{color:#888}.give_forms_page_give-donors #donor-tables-wrapper table{width:100%;text-align:center}.give_forms_page_give-donors #donor-tables-wrapper th{text-align:center}.give_forms_page_give-donors #donor-tables-wrapper .donations tr>td:first-child,.give_forms_page_give-donors #donor-tables-wrapper .donations tr>th:first-child,.give_forms_page_give-donors #donor-tables-wrapper .emails tr>td:first-child,.give_forms_page_give-donors #donor-tables-wrapper .emails tr>th:first-child{text-align:left}.give_forms_page_give-donors #donor-tables-wrapper .donations tr>td:only-child{text-align:center}.give_forms_page_give-donors #donor-notes-wrapper{min-height:50px}.give_forms_page_give-donors .donor-notes-header img,.give_forms_page_give-donors .donor-notes-header span{font-weight:600;line-height:30px;vertical-align:middle}.give_forms_page_give-donors .donor-note-input{width:100%;margin-bottom:5px}.give_forms_page_give-donors #give-donor-notes div:nth-of-type(2n){background-color:#f9f9f9}.give_forms_page_give-donors #give-donor-notes .donor-note-wrapper{border-bottom:1px solid #f9f9f9;min-height:38px;padding:0}.give_forms_page_give-donors #give-donor-notes .donor-note-wrapper .note-content-wrap{padding:10px 12px;line-height:20px;font-size:14px}.give_forms_page_give-donors #give-donor-notes .give-no-donor-notes{text-align:center;padding:20px}.give_forms_page_give-donors .donor-note-wrapper span{display:block}.give_forms_page_give-donors .delete-donor{text-align:center}.give_forms_page_give-donors .give-lock-block{margin-left:-25px;text-decoration:none;font-size:14px;margin-right:3px}.give_forms_page_give-donors .give-lock-block i{color:#000;font-size:14px}.give_forms_page_give-donors #donor-address-wrapper .give-no-address-message{margin:.5rem 1%;line-height:3.4em}.give_forms_page_give-donors #donor-address-wrapper .give-donor-addresses .inside{padding-bottom:0}.give_forms_page_give-donors #donor-address-wrapper .add-new-address{margin:.5rem 1%!important}.give_forms_page_give-donors #donor-address-wrapper .add-new-address-form-hidden{position:absolute;right:13px;left:13px;top:0;visibility:hidden}.give_forms_page_give-donors #donor-address-wrapper .all-address .address{min-height:146px;border:1px solid #dad9d9;padding:9px;border-radius:5px;background-color:#fff}.give_forms_page_give-donors #donor-address-wrapper .all-address .address .address-number-label{color:grey;cursor:default}.give_forms_page_give-donors #donor-address-wrapper .all-address .address a{text-decoration:none}.give_forms_page_give-donors .comments td:nth-child(3n){text-align:left}.give_forms_page_give-donors .give-donor-admin-avatar{width:40px;height:40px;border-radius:50%;border:1px solid #e5e5e5;float:left;vertical-align:middle;margin-right:10px;line-height:40px;text-align:center}.give_forms_page_give-donors .give-donor-admin-avatar img{border-radius:50%;width:40px;height:40px}.give_forms_page_give-donors .give-donor-name-text{font-weight:600;font-size:14px}.give_forms_page_give-donors .give-donor-id{color:#555}.give_forms_page_give-donors .give-donor-name:focus{box-shadow:none;outline:none}.give_forms_page_give-donors #donor-avatar .give-donor-admin-avatar,.give_forms_page_give-donors #donor-avatar img{width:96px;height:96px;line-height:96px;margin-right:0;font-size:36px}@media screen and (max-width:782px){#wp-content-media-buttons a.give-thickbox{padding:6px 14px;line-height:normal;font-size:14px;height:auto}.wp-media-buttons span#give-media-button{margin-top:0!important;margin-left:2px!important}}.mce-primary.mce-give-primary button{padding-right:10px;padding-left:10px}.wp-core-ui .give-admin-button{padding-left:7px;padding-right:7px}.give-admin-button-icon{display:inline-block;width:18px;height:18px;vertical-align:text-top;margin:0 2px}.give-admin-button-icon:before{font:400 18px/1 dashicons;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.give-admin-button-icon-update:before{content:"\f463"}.give-status-table{margin-bottom:1em}.give-status-table h2{font-size:14px;margin:0}.give-status-table tr:nth-child(2n) td,.give-status-table tr:nth-child(2n) th{background:#fcfcfc}.give-status-table th{font-weight:700;padding:9px}.give-status-table td:first-child{width:33%}.give-status-table td.help{width:1em}.give-status-table td{padding:9px;font-size:1.1em}.give-status-table td mark{background:transparent none}.give-status-table td mark.yes{color:#7ad03a}.give-status-table td mark.no{color:#999}.give-status-table td mark.error{color:#a00}.give-status-table td ul{margin:0}.wrap div.give-debug-report-wrapper{margin-bottom:5px}.wrap div.give-debug-report-wrapper p{font-size:18px;margin:1em 0 .7em;padding:0}.wrap div.give-debug-report-wrapper .give-debug-report-actions{margin:0 0 1.7em}.wrap div.give-debug-report-wrapper .give-debug-report-actions .js-give-debug-report-button{margin-right:10px}.wrap div.give-debug-report-wrapper .give-debug-report-actions .dashicons{font-size:16px;position:relative;top:4px;left:-2px}.give-debug-report{display:none;margin:10px 0;padding:0;position:relative}.give-debug-report textarea{font-family:monospace;width:100%;margin:0;height:300px;padding:20px;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;resize:none;font-size:12px;line-height:20px;outline:0}.give-progress{height:15px;width:95%;border-radius:4px;overflow:hidden;background-color:#f5f5f5}.give-progress>div{height:100%;width:0}.admin-color-fresh .give-progress div,.give-progress div{background:#0073aa}.admin-color-light .give-progress div{background:#888}.admin-color-blue .give-progress div{background:#096484}.admin-color-coffee .give-progress div{background:#c7a589}.admin-color-ectoplasm .give-progress div{background:#a3b745}.admin-color-midnight .give-progress div{background:#e14d43}.admin-color-sunrise .give-progress div{background:#dd823b}.give-spinner-wrapper{position:absolute;left:0;right:0;bottom:0;top:0;background:hsla(0,0%,96.1%,.57);z-index:1;display:none}.give-spinner-wrapper.is-active{display:inline-block}.give-spinner-wrapper .aligncenter{position:absolute;top:50%;left:50%;margin:10px 10px 0 0}.give-spinner.spinner.is-active{margin:0 0 0 2px;float:none}ul.give-radio-inline input,ul.give-radio-inline li{display:inline-block!important}.chosen-container a{transition:none}.give-width-25em{width:25em}.give-spinner-wrap{position:relative}.give-spinner-wrap .spinner{float:none;margin-top:0;margin-right:0}.give-update-panel-content p{font-size:16px}#give-updates .give-update-panel-content{margin:0 0 30px}#give-updates .give-update-panel-content p{font-size:17px;font-style:italic;margin:0}#give-updates .dashicons-no-alt{color:red}#give-updates .dashicons-yes{color:green}#give-updates #give-db-updates .spinner{margin-top:0}#give-updates #give-updates-content{max-width:1200px}#give-updates .give-update-paused-text-p{margin:0 20px 0 0;line-height:30px;font-style:italic;font-size:14px}body.give_forms_page_give-updates .give-run-update-containt .give-run-update-button{margin-right:10px}.give-blank-slate{background:#fff;border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04);margin:0 auto;padding:40px;text-align:center}.give-blank-slate :last-child{margin-bottom:0}.give-blank-slate__cta,.give-blank-slate__heading,.give-blank-slate__help,.give-blank-slate__message{margin:0 0 10px}.give-blank-slate__image{display:block;height:80px!important;margin:0 auto 10px;width:auto}.give-blank-slate__select{margin-bottom:20px}.give-blank-slate__help{color:#666;font-style:italic}.give-blank-slate__help a{display:inline-block;text-decoration:underline}.give-blank-slate a.give-blank-slate__cta{display:inline-block;font-size:1.2em;height:auto;margin:0 0 10px;padding:.75em 1.5em}.chosen-container-single .chosen-single{background:#fff;height:30px;line-height:30px;border:1px solid #7e8993;box-shadow:none}.chosen-container-single .chosen-single span{font-size:14px}.chosen-container-single .chosen-single div b,.chosen-container-single.chosen-with-drop .chosen-single div b{background-position-y:4px}.chosen-container-active.chosen-with-drop .chosen-single{background:#fff}.chosen-container .chosen-results li.highlighted{background:#3875d7;color:#fff}.chosen-container-multi .chosen-choices{border:1px solid #aaa;background-image:none}.chosen-container-multi .chosen-choices li.search-choice{background-image:none}.give-tools-setting-page-import h1.handle{padding:15px 0 0}.give-tools-setting-page-import .give-progress-steps{width:100%;padding:0 0 24px;margin-left:0;list-style:none outside;overflow:hidden;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex}.give-tools-setting-page-import .give-progress-steps li{width:25%;float:left;padding:0 0 1.2em;margin:0;text-align:center;position:relative;border-bottom:4px solid #ccc;line-height:1.4em}.give-tools-setting-page-import .give-progress-steps li.active{border-color:#4ead61;color:#4ead61}.give-tools-setting-page-import .give-progress-steps li.active:before{border-color:#4ead61;color:#4ead61;background:#4ead61}.give-tools-setting-page-import .give-progress-steps li:before{content:"";border:4px solid #ccc;border-radius:100%;width:10px;height:10px;position:absolute;bottom:0;left:50%;margin-left:-6px;margin-bottom:-10px;background:#fff}.give-tools-setting-page-import .step-4 h2{text-align:center;font-size:20px!important}.give-tools-setting-page-import .step-4 p{text-align:center}.give-tools-setting-page-import .button-secondary.step-4,.give-tools-setting-page-import .give-image-thumb{display:none}.give-tools-setting-page-import h2#give-import-title{background:#f3f3f3;font-size:15px;font-weight:600;margin:-8px -22px 11px;padding:12px 22px}.give-tools-setting-page-import table.step-2 h2#give-import-title{font-size:small;font-weight:inherit}.give-tools-setting-page-import table.step-2 .give-import-donation-required-fields-title{font-size:18px;font-weight:600;margin:0}.give-tools-setting-page-import table.step-2 .give-import-donation-required-fields{white-space:nowrap;overflow:hidden}.give-tools-setting-page-import table.step-2 .give-import-donation-required-fields li{display:inline-block;margin:0 10% 0 0}.give-tools-setting-page-import table.step-2 .give-import-donation-required-fields li span.give-import-donation-required-symbol{border-radius:1em;vertical-align:middle;padding:2px;background:#46b450;color:#fff}.give-tools-setting-page-import table.step-2 .give-import-donation-required-fields li span.dashicons-no-alt{background:#bbb}.give-tools-setting-page-import .give-progress{margin-top:7px}.give-import-core-settings .give-progress-steps li{width:33.33%}.give-import-core-settings .step-3 h2{text-align:center;font-size:20px!important}.give-import-core-settings .step-3 p{text-align:center}form.give-import-form table.widefat{border:none}.wrap .give-importer-h1{margin:0;padding:20px 0}.give-tools-setting-page #give-export_donations-form table{padding-left:10px}.give-tools-setting-page #give-export_donations-form table tbody h2{padding:8px 0 0}.give-tools-setting-page #give-export_donations-form table tbody td.row-title{width:30%;vertical-align:top}.give-tools-setting-page #give-export_donations-form table tbody td ul.give-export-option-ul{margin-top:5px}.give-tools-setting-page #give-export_donations-form table tbody p.give-field-description{display:table;width:100%}.give-tools-setting-page #give-export_donations-form table tbody .add-notices{margin-top:15px}.give-tools-setting-page #give-export_donations-form table tbody .add-notices .give-progress{margin-top:7px}.give-tools-setting-page #give-export_donations-form table tbody .chosen-container-multi .chosen-choices{min-height:30px}.give-tools-setting-page #give-export_donations-form table tbody .chosen-container-multi .chosen-choices li{margin:4px 4px 4px 0}.give-tools-setting-page #give-export_donations-form .give-export-option{display:flex;flex-flow:row wrap;border-top:1px solid #e5e5e5;border-left:1px solid #e5e5e5}.give-tools-setting-page #give-export_donations-form .give-export-option ul{margin-bottom:1rem}.give-tools-setting-page #give-export_donations-form .give-export-option ul li{position:relative;margin-bottom:.7rem;padding:0 1rem}.give-tools-setting-page #give-export_donations-form .give-export-option ul li label{display:block;padding-left:22px}.give-tools-setting-page #give-export_donations-form .give-export-option ul li label input{position:absolute;top:6px;left:15px}.give-tools-setting-page #give-export_donations-form .give-export-option ul .give-export-option-label{font-size:15px;font-weight:500;border-bottom:1px solid #e5e5e5;margin-bottom:1rem;padding:1rem}.give-tools-setting-page #give-export_donations-form .give-export-option>li{border-right:1px solid #e5e5e5;border-bottom:1px solid #e5e5e5;width:33%;margin-bottom:0}.give-tools-setting-page .give-export-donors .give-progress{margin-top:7px}#give-export-donations .give_forms_categories,#give-export-donations .give_forms_tags{min-width:250px;margin:0 0 10px;display:block}#give-export-donations .give_forms_categories input,#give-export-donations .give_forms_tags input{color:#999}#give-export-donations div.chosen-container ul.chosen-choices{border:1px solid #ddd}#give-export-donations div.chosen-container ul.chosen-choices input.chosen-search-input{border:1px solid #ddd;height:20px}#give-export-donations select{vertical-align:inherit;margin:0;height:26px;line-height:26px;border:1px solid #ddd}@media only screen and (max-width:1080px){.give-tools-setting-page #give-export_donations-form .give-export-option>li{width:49.5%}}@media only screen and (max-width:782px){.give-tools-setting-page #give-export_donations-form .give-export-option>li{width:49.5%}.give-tools-setting-page #give-export_donations-form .give-export-option ul li label{padding-left:32px}.give-tools-setting-page #give-export_donations-form .give-export-option ul li label input{top:0}}.give-admin-progress-bar{height:8px;position:relative;background:#eee;border-radius:25px;overflow:hidden;margin:5px 0 2px}.give-admin-progress-bar>span{display:block;height:100%;border-top-right-radius:8px;border-bottom-right-radius:8px;border-top-left-radius:20px;border-bottom-left-radius:20px;background-color:#2bc253;position:relative;overflow:hidden}.give-admin-goal-achieved>.dashicons{color:#ffba00;font-size:13px;height:16px;width:13px;line-height:18px}#give-form-goal-stats .inside{margin:0;padding:15px;text-align:center}#give-form-goal-stats .give-admin-progress-bar{margin-bottom:10px}#give-form-goal-stats .give-admin-goal-achieved{display:block;margin-top:6px}.give-nav-tab-wrapper{background:#ddd;border:none!important;padding-top:0;overflow:hidden}.give-nav-tab-wrapper .nav-tab{border:none;margin:0;padding:15px 30px;outline:none;box-shadow:none;background:#ddd}.give-nav-tab-wrapper .nav-tab:hover{background:#ebebeb}.give-nav-tab-wrapper .nav-tab.nav-tab-active{background:#f1f1f1;box-shadow:inset 0 4px 0 #66bb6a;margin:0}@media screen and (max-width:600px){.give-nav-tab-wrapper{position:relative;padding-top:0!important}.give-nav-tab-wrapper>a{width:100%;box-sizing:border-box;margin:0;background-color:#fff;border:1px solid #ccc}.give-nav-tab-wrapper>a:hover{border-bottom:1px solid #ccc}.give-nav-tab-wrapper div.give-sub-nav-tab-wrapper{position:absolute;top:0;right:0}.give-nav-tab-wrapper div.give-sub-nav-tab-wrapper #give-show-sub-nav{height:28px;width:30px;border-radius:0;margin:0}.give-nav-tab-wrapper div.give-sub-nav-tab-wrapper #give-show-sub-nav>span.dashicons{margin:6px auto 0;display:block}.give-nav-tab-wrapper div.give-sub-nav-tab-wrapper nav.give-sub-nav-tab{top:35px;right:0;left:auto}.give-nav-tab-wrapper div.give-sub-nav-tab-wrapper nav.give-sub-nav-tab a{background:#fff}.give-nav-tab-wrapper div.give-sub-nav-tab-wrapper nav.give-sub-nav-tab a:hover{background:#e5e5e5}.give-mobile-hidden{display:none}}.give-sub-nav-tab-wrapper{position:relative;z-index:999;float:left;display:none}.give-sub-nav-tab-wrapper nav.give-sub-nav-tab{border:1px solid #f1f1f1;border-bottom:none;position:absolute;top:37px;right:0}.give-sub-nav-tab-wrapper nav.give-sub-nav-tab a{float:left;background:#fff;padding:8px 10px;clear:both;text-decoration:none;border-bottom:1px solid #f1f1f1;min-width:170px;color:#555;font-size:14px;font-weight:600}.give-sub-nav-tab-wrapper nav.give-sub-nav-tab a:hover{background:#ebebeb}#give-show-sub-nav{text-decoration:none;padding:3px 4px;border-bottom:1px solid #ccc;line-height:0;background:#fff;border-radius:4px;margin:15px 0 0 10px}#give-show-sub-nav>span.dashicons{font-size:16px;height:16px;width:16px}#give-show-sub-nav:active,#give-show-sub-nav:hover{outline:none;box-shadow:inset 0 0 4px #ddd}.give-upsell-notice{border:1px solid #e2e2e2;padding:10px;margin:10px;box-shadow:1px 1px 5px #e2e2e2;display:flex;align-items:center}.give-upsell-notice a{text-decoration:none}.give-upsell-notice .description,.give-upsell-notice .icon{font-style:normal}.give-upsell-notice .icon{color:#aaa;font-size:30px;line-height:22px;width:30px}.give-upsell-notice .description{padding:0 10px}.give-upsell-notice a.view-addon-link{background:none!important;margin-left:auto}.give_forms_page_give-subscriptions .wp-header-end+.notice,.post-type-give_forms .wp-header-end+.notice{margin-top:11px}.give_forms_page_give-subscriptions #give-subscription-details-h1,.give_forms_page_give-subscriptions #give-subscription-list-h1,.give_forms_page_give-subscriptions .wp-heading-inline,.post-type-give_forms #give-subscription-details-h1,.post-type-give_forms #give-subscription-list-h1,.post-type-give_forms .wp-heading-inline{margin:0;padding:10px 0}.give_forms_page_give-subscriptions #give-subscription-details-h1:before,.give_forms_page_give-subscriptions #give-subscription-list-h1:before,.give_forms_page_give-subscriptions .wp-heading-inline:before,.post-type-give_forms #give-subscription-details-h1:before,.post-type-give_forms #give-subscription-list-h1:before,.post-type-give_forms .wp-heading-inline:before{background:url(../images/give-icon-full-circle.svg);width:30px;height:30px;content:" ";display:block;float:left;margin-right:12px}.give_forms_page_give-subscriptions #wpcontent,.post-type-give_forms #wpcontent{padding:0}.give_forms_page_give-subscriptions #wpbody,.post-type-give_forms #wpbody{color:#000;padding-left:20px;position:relative}.give_forms_page_give-subscriptions #wpbody:after,.post-type-give_forms #wpbody:after{content:"";background-color:#fff;border-bottom:1px solid #dbdbdb;height:72px;left:0;top:46px;position:absolute;width:100%;z-index:-1}@media (min-width:601px){.give_forms_page_give-subscriptions #wpbody:after,.post-type-give_forms #wpbody:after{top:0}}.give_forms_page_give-subscriptions #wpbody .wrap:not(.give-settings-page),.post-type-give_forms #wpbody .wrap:not(.give-settings-page){margin-top:12px}.give_forms_page_give-subscriptions #wpbody .wp-header-end,.post-type-give_forms #wpbody .wp-header-end{margin-top:6px}@media (min-width:601px){.give_forms_page_give-subscriptions #wpbody .wp-header-end,.post-type-give_forms #wpbody .wp-header-end{margin-top:15px}}@media (min-width:601px){.give_forms_page_give-subscriptions.give_forms_page_give-donors #wpbody .wp-header-end,.give_forms_page_give-subscriptions.give_forms_page_give-subscriptions #wpbody .wp-header-end,.post-type-give_forms.give_forms_page_give-donors #wpbody .wp-header-end,.post-type-give_forms.give_forms_page_give-subscriptions #wpbody .wp-header-end{margin-top:25px}}.give_forms_page_give-subscriptions #wpbody #screen-meta-links,.post-type-give_forms #wpbody #screen-meta-links{display:none}@media (min-width:783px){.give_forms_page_give-subscriptions #screen-meta,.post-type-give_forms #screen-meta{background-color:#fff;border:0;margin:0}.give_forms_page_give-subscriptions #screen-meta-links,.post-type-give_forms #screen-meta-links{position:absolute;top:0;right:0;z-index:1}}.give-subheader{background:#fff;margin:0 0 0 -22px;padding:12px 20px}.give-subheader .give-subheader-right-text{float:right;font-size:13px;line-height:22px;font-style:italic;color:#555;margin:0;padding:0}.give-subheader h1{float:left;font-size:15px;line-height:22px;color:#555;font-weight:600;margin:0;padding:0}@media (max-width:700px){.give-subheader{text-align:center}.give-subheader .give-subheader-right-text,.give-subheader h1{float:none}}
assets/dist/css/admin.rtl.css CHANGED
@@ -14,4 +14,4 @@ This file is generated by `grunt build`, do not edit it by hand.
14
  * To view and modify this theme, visit http://jqueryui.com/themeroller/?bgShadowXPos=&bgOverlayXPos=&bgErrorXPos=&bgHighlightXPos=&bgContentXPos=&bgHeaderXPos=&bgActiveXPos=&bgHoverXPos=&bgDefaultXPos=&bgShadowYPos=&bgOverlayYPos=&bgErrorYPos=&bgHighlightYPos=&bgContentYPos=&bgHeaderYPos=&bgActiveYPos=&bgHoverYPos=&bgDefaultYPos=&bgShadowRepeat=&bgOverlayRepeat=&bgErrorRepeat=&bgHighlightRepeat=&bgContentRepeat=&bgHeaderRepeat=&bgActiveRepeat=&bgHoverRepeat=&bgDefaultRepeat=&iconsHover=url(%22images%2Fui-icons_555555_256x240.png%22)&iconsHighlight=url(%22images%2Fui-icons_777620_256x240.png%22)&iconsHeader=url(%22images%2Fui-icons_444444_256x240.png%22)&iconsError=url(%22images%2Fui-icons_cc0000_256x240.png%22)&iconsDefault=url(%22images%2Fui-icons_777777_256x240.png%22)&iconsContent=url(%22images%2Fui-icons_444444_256x240.png%22)&iconsActive=url(%22images%2Fui-icons_ffffff_256x240.png%22)&bgImgUrlShadow=&bgImgUrlOverlay=&bgImgUrlHover=&bgImgUrlHighlight=&bgImgUrlHeader=&bgImgUrlError=&bgImgUrlDefault=&bgImgUrlContent=&bgImgUrlActive=&opacityFilterShadow=Alpha(Opacity%3D30)&opacityFilterOverlay=Alpha(Opacity%3D30)&opacityShadowPerc=30&opacityOverlayPerc=30&iconColorHover=%23555555&iconColorHighlight=%23777620&iconColorHeader=%23444444&iconColorError=%23cc0000&iconColorDefault=%23777777&iconColorContent=%23444444&iconColorActive=%23ffffff&bgImgOpacityShadow=0&bgImgOpacityOverlay=0&bgImgOpacityError=95&bgImgOpacityHighlight=55&bgImgOpacityContent=75&bgImgOpacityHeader=75&bgImgOpacityActive=65&bgImgOpacityHover=75&bgImgOpacityDefault=75&bgTextureShadow=flat&bgTextureOverlay=flat&bgTextureError=flat&bgTextureHighlight=flat&bgTextureContent=flat&bgTextureHeader=flat&bgTextureActive=flat&bgTextureHover=flat&bgTextureDefault=flat&cornerRadius=3px&fwDefault=normal&ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&cornerRadiusShadow=8px&thicknessShadow=5px&offsetLeftShadow=0px&offsetTopShadow=0px&opacityShadow=.3&bgColorShadow=%23666666&opacityOverlay=.3&bgColorOverlay=%23aaaaaa&fcError=%235f3f3f&borderColorError=%23f1a899&bgColorError=%23fddfdf&fcHighlight=%23777620&borderColorHighlight=%23dad55e&bgColorHighlight=%23fffa90&fcContent=%23333333&borderColorContent=%23dddddd&bgColorContent=%23ffffff&fcHeader=%23333333&borderColorHeader=%23dddddd&bgColorHeader=%23e9e9e9&fcActive=%23ffffff&borderColorActive=%23003eff&bgColorActive=%23007fff&fcHover=%232b2b2b&borderColorHover=%23cccccc&bgColorHover=%23ededed&fcDefault=%23454545&borderColorDefault=%23c5c5c5&bgColorDefault=%23f6f6f6
15
  * Copyright jQuery Foundation and other contributors; Licensed MIT */.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:after,.ui-helper-clearfix:before{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;right:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{right:50%;margin-right:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;right:0;width:100%;height:100%}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0;padding:.5em .7em .5em .5em;font-size:100%}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;right:0;cursor:default}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{margin:0;cursor:pointer;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-item-wrapper{position:relative;padding:3px .4em 3px 1em}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0}.ui-menu .ui-state-active,.ui-menu .ui-state-focus{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item-wrapper{padding-right:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;right:.2em;margin:auto 0}.ui-menu .ui-menu-icon{right:auto;left:0}.ui-button{padding:.4em 1em;display:inline-block;position:relative;line-height:normal;margin-left:.1em;cursor:pointer;vertical-align:middle;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:visible}.ui-button,.ui-button:active,.ui-button:hover,.ui-button:link,.ui-button:visited{text-decoration:none}.ui-button-icon-only{width:2em;box-sizing:border-box;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-button-icon-only{text-indent:0}.ui-button-icon-only .ui-icon{position:absolute;top:50%;right:50%;margin-top:-8px;margin-right:-8px}.ui-button.ui-icon-notext .ui-icon{padding:0;width:2.1em;height:2.1em;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-icon-notext .ui-icon{width:auto;height:auto;text-indent:0;white-space:normal;padding:.4em 1em}button.ui-button::-moz-focus-inner,input.ui-button::-moz-focus-inner{border:0;padding:0}.ui-controlgroup{vertical-align:middle;display:inline-block}.ui-controlgroup>.ui-controlgroup-item{float:right;margin-right:0;margin-left:0}.ui-controlgroup>.ui-controlgroup-item.ui-visual-focus,.ui-controlgroup>.ui-controlgroup-item:focus{z-index:9999}.ui-controlgroup-vertical>.ui-controlgroup-item{display:block;float:none;width:100%;margin-top:0;margin-bottom:0;text-align:right}.ui-controlgroup-vertical .ui-controlgroup-item{box-sizing:border-box}.ui-controlgroup .ui-controlgroup-label{padding:.4em 1em}.ui-controlgroup .ui-controlgroup-label span{font-size:80%}.ui-controlgroup-horizontal .ui-controlgroup-label+.ui-controlgroup-item{border-right:none}.ui-controlgroup-vertical .ui-controlgroup-label+.ui-controlgroup-item{border-top:none}.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content{border-left:none}.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content{border-bottom:none}.ui-controlgroup-vertical .ui-spinner-input{width:75%;width:calc(100% - 2.4em)}.ui-controlgroup-vertical .ui-spinner .ui-spinner-up{border-top-style:solid}.ui-checkboxradio-label .ui-icon-background{box-shadow:inset -1px 1px 1px #ccc;border-radius:.12em;border:none}.ui-checkboxradio-radio-label .ui-icon-background{width:16px;height:16px;border-radius:1em;overflow:visible;border:none}.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon{background-image:none;width:8px;height:8px;border-width:4px;border-style:solid}.ui-checkboxradio-disabled{pointer-events:none}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-next-hover,.ui-datepicker .ui-datepicker-prev-hover{top:1px}.ui-datepicker .ui-datepicker-prev{right:2px}.ui-datepicker .ui-datepicker-next{left:2px}.ui-datepicker .ui-datepicker-prev-hover{right:1px}.ui-datepicker .ui-datepicker-next-hover{left:1px}.ui-datepicker .ui-datepicker-next span,.ui-datepicker .ui-datepicker-prev span{display:block;position:absolute;right:50%;margin-right:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:700;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td a,.ui-datepicker td span{display:block;padding:.2em;text-align:left;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0;padding:0 .2em;border-right:0;border-left:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:left;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:right}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:right}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:right}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:ltr}.ui-datepicker-rtl .ui-datepicker-prev{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-next{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:left}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0;border-right-width:1px}.ui-datepicker .ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat;right:.5em;top:.3em}.ui-dialog{position:absolute;top:0;right:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:right;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;left:.3em;top:50%;width:20px;margin:-10px 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:right;border-width:1px 0 0;background-image:none;margin-top:.5em;padding:.3em .4em .5em 1em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:left}.ui-dialog .ui-dialog-buttonpane button{margin:.5em 0 .5em .4em;cursor:pointer}.ui-dialog .ui-resizable-n{height:2px;top:0}.ui-dialog .ui-resizable-e{width:2px;left:0}.ui-dialog .ui-resizable-s{height:2px;bottom:0}.ui-dialog .ui-resizable-w{width:2px;right:0}.ui-dialog .ui-resizable-ne,.ui-dialog .ui-resizable-nw,.ui-dialog .ui-resizable-se,.ui-dialog .ui-resizable-sw{width:7px;height:7px}.ui-dialog .ui-resizable-se{left:0;bottom:0}.ui-dialog .ui-resizable-sw{right:0;bottom:0}.ui-dialog .ui-resizable-ne{left:0;top:0}.ui-dialog .ui-resizable-nw{right:0;top:0}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-autohide .ui-resizable-handle,.ui-resizable-disabled .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;right:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;right:0}.ui-resizable-e{cursor:e-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-se{cursor:sw-resize;width:12px;height:12px;left:1px;bottom:1px}.ui-resizable-sw{cursor:se-resize;width:9px;height:9px;right:-5px;bottom:-5px}.ui-resizable-nw{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-resizable-ne{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-progressbar{height:2em;text-align:right;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");height:100%;filter:alpha(opacity=25);opacity:.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted #000}.ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;right:0;display:none}.ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:700;line-height:1.5;padding:2px .4em;margin:.5em 0 0;height:auto;border:0}.ui-selectmenu-open{display:block}.ui-selectmenu-text{display:block;margin-left:20px;overflow:hidden;text-overflow:ellipsis}.ui-selectmenu-button.ui-button{text-align:right;white-space:nowrap;width:14em}.ui-selectmenu-icon.ui-icon{float:left;margin-top:0}.ui-slider{position:relative;text-align:right}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default;-ms-touch-action:none;touch-action:none}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:100% 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-right:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{right:0}.ui-slider-horizontal .ui-slider-range-max{left:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{right:-.3em;margin-right:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{right:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:none;color:inherit;padding:.222em 0;vertical-align:middle;margin:.2em .4em .2em 2em}.ui-spinner-button{width:1.6em;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;left:0}.ui-spinner a.ui-spinner-button{border-top-style:none;border-bottom-style:none;border-left-style:none}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:right;position:relative;top:0;margin:1px 0 0 .2em;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:right;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px}body .ui-tooltip{border-width:2px}.ui-widget{font-family:Arial,Helvetica,sans-serif}.ui-widget,.ui-widget .ui-widget{font-size:1em}.ui-widget button,.ui-widget input,.ui-widget select,.ui-widget textarea{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget.ui-widget-content{border:1px solid #c5c5c5}.ui-widget-content{border:1px solid #ddd;background:#fff;color:#333}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #ddd;background:#e9e9e9;color:#333;font-weight:700}.ui-widget-header a{color:#333}.ui-button,.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default,html .ui-button.ui-state-disabled:active,html .ui-button.ui-state-disabled:hover{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:400;color:#454545}.ui-button,.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited,a.ui-button,a:link.ui-button,a:visited.ui-button{color:#454545;text-decoration:none}.ui-button:focus,.ui-button:hover,.ui-state-focus,.ui-state-hover,.ui-widget-content .ui-state-focus,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-focus,.ui-widget-header .ui-state-hover{border:1px solid #ccc;background:#ededed;font-weight:400;color:#2b2b2b}.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited,.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,a.ui-button:focus,a.ui-button:hover{color:#2b2b2b;text-decoration:none}.ui-visual-focus{box-shadow:0 0 3px 1px #5e9ed6}.ui-button.ui-state-active:hover,.ui-button:active,.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active,a.ui-button:active{border:1px solid #003eff;background:#007fff;font-weight:400;color:#fff}.ui-icon-background,.ui-state-active .ui-icon-background{border:#003eff;background-color:#fff}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#fff;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #dad55e;background:#fffa90;color:#777620}.ui-state-checked{border:1px solid #dad55e;background:#fffa90}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#777620}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #f1a899;background:#fddfdf;color:#5f3f3f}.ui-state-error-text,.ui-state-error a,.ui-widget-content .ui-state-error-text,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error-text,.ui-widget-header .ui-state-error a{color:#5f3f3f}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:700}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:400}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon,.ui-widget-header .ui-icon{background-image:url(../images/ui-icons_444444_256x240.png)}.ui-button:focus .ui-icon,.ui-button:hover .ui-icon,.ui-state-focus .ui-icon,.ui-state-hover .ui-icon{background-image:url(../images/ui-icons_555555_256x240.png)}.ui-button:active .ui-icon,.ui-state-active .ui-icon{background-image:url(../images/ui-icons_ffffff_256x240.png)}.ui-button .ui-state-highlight.ui-icon,.ui-state-highlight .ui-icon{background-image:url(../images/ui-icons_777620_256x240.png)}.ui-state-error-text .ui-icon,.ui-state-error .ui-icon{background-image:url(../images/ui-icons_cc0000_256x240.png)}.ui-button .ui-icon{background-image:url(../images/ui-icons_777777_256x240.png)}.ui-icon-blank{background-position:16px 16px}.ui-icon-caret-1-n{background-position:100% 0}.ui-icon-caret-1-ne{background-position:-16px 0}.ui-icon-caret-1-e{background-position:-32px 0}.ui-icon-caret-1-se{background-position:-48px 0}.ui-icon-caret-1-s{background-position:-65px 0}.ui-icon-caret-1-sw{background-position:-80px 0}.ui-icon-caret-1-w{background-position:-96px 0}.ui-icon-caret-1-nw{background-position:-112px 0}.ui-icon-caret-2-n-s{background-position:-128px 0}.ui-icon-caret-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:100% -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-65px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:100% -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-65px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:1px -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:100% -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:100% -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:100% -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:100% -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:100% -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:100% -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:100% -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-first,.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:100% -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:100% -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:100% -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:100% -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-left,.ui-corner-tl,.ui-corner-top{border-top-right-radius:3px}.ui-corner-all,.ui-corner-right,.ui-corner-top,.ui-corner-tr{border-top-left-radius:3px}.ui-corner-all,.ui-corner-bl,.ui-corner-bottom,.ui-corner-left{border-bottom-right-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-br,.ui-corner-right{border-bottom-left-radius:3px}.ui-widget-overlay{background:#aaa;opacity:.003;filter:Alpha(Opacity=0.3)}.ui-widget-shadow{-webkit-box-shadow:0 0 5px #666;box-shadow:0 0 5px #666}/*! Hint.css - v2.5.0 - 2017-04-23
16
  * http://kushagragour.in/lab/hint/
17
- * Copyright (c) 2017 Kushagra Gour */[class*=hint--]{position:relative;display:inline-block}[class*=hint--]:after,[class*=hint--]:before{position:absolute;-webkit-transform:translateZ(0);-moz-transform:translateZ(0);transform:translateZ(0);visibility:hidden;opacity:0;z-index:1000000;pointer-events:none;-webkit-transition:.3s ease;-moz-transition:.3s ease;transition:.3s ease;-webkit-transition-delay:0s;-moz-transition-delay:0s;transition-delay:0s}[class*=hint--]:hover:after,[class*=hint--]:hover:before{visibility:visible;opacity:1;-webkit-transition-delay:.1s;-moz-transition-delay:.1s;transition-delay:.1s}[class*=hint--]:before{content:"";position:absolute;background:100% 0;border:6px solid transparent;z-index:1000001}[class*=hint--]:after{background:#383838;color:#fff;padding:8px 10px;font-size:12px;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;line-height:12px;white-space:nowrap;text-shadow:0 -1px 0 #000;box-shadow:-4px 4px 8px rgba(0,0,0,.3)}[class*=hint--][aria-label]:after{content:attr(aria-label)}[class*=hint--][data-hint]:after{content:attr(data-hint)}[aria-label=""]:after,[aria-label=""]:before,[data-hint=""]:after,[data-hint=""]:before{display:none!important}.hint--top-left:before,.hint--top-right:before,.hint--top:before{border-top-color:#383838}.hint--bottom-left:before,.hint--bottom-right:before,.hint--bottom:before{border-bottom-color:#383838}.hint--top:after,.hint--top:before{bottom:100%;right:50%}.hint--top:before{margin-bottom:-11px;right:calc(50% - 6px)}.hint--top:after{-webkit-transform:translateX(50%);-moz-transform:translateX(50%);transform:translateX(50%)}.hint--top:hover:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--top:hover:after{-webkit-transform:translateX(50%) translateY(-8px);-moz-transform:translateX(50%) translateY(-8px);transform:translateX(50%) translateY(-8px)}.hint--bottom:after,.hint--bottom:before{top:100%;right:50%}.hint--bottom:before{margin-top:-11px;right:calc(50% - 6px)}.hint--bottom:after{-webkit-transform:translateX(50%);-moz-transform:translateX(50%);transform:translateX(50%)}.hint--bottom:hover:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--bottom:hover:after{-webkit-transform:translateX(50%) translateY(8px);-moz-transform:translateX(50%) translateY(8px);transform:translateX(50%) translateY(8px)}.hint--right:before{border-left-color:#383838;margin-right:-11px;margin-bottom:-6px}.hint--right:after{margin-bottom:-14px}.hint--right:after,.hint--right:before{right:100%;bottom:50%}.hint--right:hover:after,.hint--right:hover:before{-webkit-transform:translateX(-8px);-moz-transform:translateX(-8px);transform:translateX(-8px)}.hint--left:before{border-right-color:#383838;margin-left:-11px;margin-bottom:-6px}.hint--left:after{margin-bottom:-14px}.hint--left:after,.hint--left:before{left:100%;bottom:50%}.hint--left:hover:after,.hint--left:hover:before{-webkit-transform:translateX(8px);-moz-transform:translateX(8px);transform:translateX(8px)}.hint--top-left:after,.hint--top-left:before{bottom:100%;right:50%}.hint--top-left:before{margin-bottom:-11px;right:calc(50% - 6px)}.hint--top-left:after{-webkit-transform:translateX(100%);-moz-transform:translateX(100%);transform:translateX(100%);margin-right:12px}.hint--top-left:hover:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--top-left:hover:after{-webkit-transform:translateX(100%) translateY(-8px);-moz-transform:translateX(100%) translateY(-8px);transform:translateX(100%) translateY(-8px)}.hint--top-right:after,.hint--top-right:before{bottom:100%;right:50%}.hint--top-right:before{margin-bottom:-11px;right:calc(50% - 6px)}.hint--top-right:after{-webkit-transform:translateX(0);-moz-transform:translateX(0);transform:translateX(0);margin-right:-12px}.hint--top-right:hover:after,.hint--top-right:hover:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--bottom-left:after,.hint--bottom-left:before{top:100%;right:50%}.hint--bottom-left:before{margin-top:-11px;right:calc(50% - 6px)}.hint--bottom-left:after{-webkit-transform:translateX(100%);-moz-transform:translateX(100%);transform:translateX(100%);margin-right:12px}.hint--bottom-left:hover:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--bottom-left:hover:after{-webkit-transform:translateX(100%) translateY(8px);-moz-transform:translateX(100%) translateY(8px);transform:translateX(100%) translateY(8px)}.hint--bottom-right:after,.hint--bottom-right:before{top:100%;right:50%}.hint--bottom-right:before{margin-top:-11px;right:calc(50% - 6px)}.hint--bottom-right:after{-webkit-transform:translateX(0);-moz-transform:translateX(0);transform:translateX(0);margin-right:-12px}.hint--bottom-right:hover:after,.hint--bottom-right:hover:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--large:after,.hint--medium:after,.hint--small:after{white-space:normal;line-height:1.4em;word-wrap:break-word}.hint--small:after{width:80px}.hint--medium:after{width:150px}.hint--large:after{width:300px}.hint--error:after{background-color:#b34e4d;text-shadow:0 -1px 0 #592726}.hint--error.hint--top-left:before,.hint--error.hint--top-right:before,.hint--error.hint--top:before{border-top-color:#b34e4d}.hint--error.hint--bottom-left:before,.hint--error.hint--bottom-right:before,.hint--error.hint--bottom:before{border-bottom-color:#b34e4d}.hint--error.hint--left:before{border-right-color:#b34e4d}.hint--error.hint--right:before{border-left-color:#b34e4d}.hint--warning:after{background-color:#c09854;text-shadow:0 -1px 0 #6c5328}.hint--warning.hint--top-left:before,.hint--warning.hint--top-right:before,.hint--warning.hint--top:before{border-top-color:#c09854}.hint--warning.hint--bottom-left:before,.hint--warning.hint--bottom-right:before,.hint--warning.hint--bottom:before{border-bottom-color:#c09854}.hint--warning.hint--left:before{border-right-color:#c09854}.hint--warning.hint--right:before{border-left-color:#c09854}.hint--info:after{background-color:#3986ac;text-shadow:0 -1px 0 #1a3c4d}.hint--info.hint--top-left:before,.hint--info.hint--top-right:before,.hint--info.hint--top:before{border-top-color:#3986ac}.hint--info.hint--bottom-left:before,.hint--info.hint--bottom-right:before,.hint--info.hint--bottom:before{border-bottom-color:#3986ac}.hint--info.hint--left:before{border-right-color:#3986ac}.hint--info.hint--right:before{border-left-color:#3986ac}.hint--success:after{background-color:#458746;text-shadow:0 -1px 0 #1a321a}.hint--success.hint--top-left:before,.hint--success.hint--top-right:before,.hint--success.hint--top:before{border-top-color:#458746}.hint--success.hint--bottom-left:before,.hint--success.hint--bottom-right:before,.hint--success.hint--bottom:before{border-bottom-color:#458746}.hint--success.hint--left:before{border-right-color:#458746}.hint--success.hint--right:before{border-left-color:#458746}.hint--always:after,.hint--always:before{opacity:1;visibility:visible}.hint--always.hint--top:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--always.hint--top:after{-webkit-transform:translateX(50%) translateY(-8px);-moz-transform:translateX(50%) translateY(-8px);transform:translateX(50%) translateY(-8px)}.hint--always.hint--top-left:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--always.hint--top-left:after{-webkit-transform:translateX(100%) translateY(-8px);-moz-transform:translateX(100%) translateY(-8px);transform:translateX(100%) translateY(-8px)}.hint--always.hint--top-right:after,.hint--always.hint--top-right:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--always.hint--bottom:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--always.hint--bottom:after{-webkit-transform:translateX(50%) translateY(8px);-moz-transform:translateX(50%) translateY(8px);transform:translateX(50%) translateY(8px)}.hint--always.hint--bottom-left:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--always.hint--bottom-left:after{-webkit-transform:translateX(100%) translateY(8px);-moz-transform:translateX(100%) translateY(8px);transform:translateX(100%) translateY(8px)}.hint--always.hint--bottom-right:after,.hint--always.hint--bottom-right:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--always.hint--left:after,.hint--always.hint--left:before{-webkit-transform:translateX(8px);-moz-transform:translateX(8px);transform:translateX(8px)}.hint--always.hint--right:after,.hint--always.hint--right:before{-webkit-transform:translateX(-8px);-moz-transform:translateX(-8px);transform:translateX(-8px)}.hint--rounded:after{border-radius:4px}.hint--no-animate:after,.hint--no-animate:before{-webkit-transition-duration:0s;-moz-transition-duration:0s;transition-duration:0s}.hint--bounce:after,.hint--bounce:before{-webkit-transition:opacity .3s ease,visibility .3s ease,-webkit-transform .3s cubic-bezier(.71,1.7,.77,1.24);-moz-transition:opacity .3s ease,visibility .3s ease,-moz-transform .3s cubic-bezier(.71,1.7,.77,1.24);transition:opacity .3s ease,visibility .3s ease,transform .3s cubic-bezier(.71,1.7,.77,1.24)}.mfp-bg{z-index:1000001;overflow:hidden;background:#0b0b0b;opacity:.8}.mfp-bg,.mfp-wrap{top:0;right:0;width:100%;height:100%;position:fixed}.mfp-wrap{z-index:1000002;outline:none!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;right:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{content:"";display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:right;z-index:1000004}.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;right:8px;left:8px;z-index:1000003}.mfp-preloader a{color:#ccc}.mfp-preloader a:hover{color:#fff}.mfp-s-error .mfp-content,.mfp-s-ready .mfp-preloader{display:none}button.mfp-arrow,button.mfp-close{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:none;padding:0;z-index:1000005;box-shadow:none;touch-action:manipulation}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;left:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 10px 18px 0;color:#fff;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:focus,.mfp-close:hover{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{color:#fff;left:-6px;text-align:left;padding-left:6px;width:100%}.mfp-counter{position:absolute;top:0;left:0;color:#ccc;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;top:50%;margin:-55px 0 0;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:focus,.mfp-arrow:hover{opacity:1}.mfp-arrow:after,.mfp-arrow:before{content:"";display:block;width:0;height:0;position:absolute;right:0;top:0;margin-top:35px;margin-right:35px;border:inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{right:0}.mfp-arrow-left:after{border-left:17px solid #fff;margin-right:31px}.mfp-arrow-left:before{margin-right:25px;border-left:27px solid #3f3f3f}.mfp-arrow-right{left:0}.mfp-arrow-right:after{border-right:17px solid #fff;margin-right:39px}.mfp-arrow-right:before{border-right:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;right:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;box-sizing:border-box;padding:40px 0;margin:0 auto}.mfp-figure,img.mfp-img{line-height:0}.mfp-figure:after{content:"";position:absolute;right:0;top:40px;bottom:40px;display:block;left:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;right:0;width:100%;cursor:auto}.mfp-title{text-align:right;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-left:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-height:300px),screen and (max-width:800px) and (orientation:landscape){.mfp-img-mobile .mfp-image-holder{padding-right:0;padding-left:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-right:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{left:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;left:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:100%;transform-origin:100%}.mfp-arrow-right{-webkit-transform-origin:0;transform-origin:0}.mfp-container{padding-right:6px;padding-left:6px}}@font-face{font-family:give-icomoon;src:url(../fonts/icomoon.eot);src:url(../fonts/icomoon.eot#iefix) format("embedded-opentype"),url(../fonts/icomoon.woff) format("woff"),url(../images/icomoon.svg#icomoon) format("svg");font-weight:400;font-style:normal}.give-icon:before{font-style:normal}[class*=" give-icon-"],[class^=give-icon-]{font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.give-icon-lamp:before{content:"\e603"}.give-icon-heart:before{content:"\e604"}.give-icon-question:before{content:"\e602"}.give-icon-info:before{content:"\e601"}.give-icon-new-tab:before{content:"\ea7e"}.give-icon-alert:before{content:"\f02d"}.give-icon-help:before{content:"\e606"}.give-icon-spinner:before{content:"\e605"}.give-icon-spinner2:before{content:"\e607"}.give-icon-plus:before{content:"\e040"}.give-icon-minus:before{content:"\e041"}.give-icon-locked:before{content:"\e600"}.dashicons-give:before{font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\e800"}.fa-spin{-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-359deg);transform:rotate(-359deg)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-359deg);transform:rotate(-359deg)}}.give-modal{box-shadow:0 15px 10px -5px rgba(0,0,0,.15);position:relative;background:#fff;font-family:Arial,Baskerville,monospace;font-size:16px;width:auto;max-width:500px;margin:60px auto 20px;border-top:5px solid transparent;line-height:1.5}.give-modal--success{border-top-color:#46b450}.give-modal--notice{border-top-color:#00a0d2}.give-modal--warning{border-top-color:#ffb900}.give-modal--error{border-top-color:#dc3232}.give-modal__body{padding:1.5rem}.give-modal__body>:last-child{margin-bottom:0}.give-modal__title{margin:0 0 .75rem;padding:0}.give-modal__description{margin:0 0 1.5rem;padding:0}.give-modal .give-spinner-wrap{margin-right:40%}.give-modal .give-modal__controls{position:relative;padding:1rem 1.5rem;background-color:#fbfbfb;border-top:1px solid #d7d7d7;text-align:left}.give-modal .give-modal__controls .spinner{display:none;visibility:visible;margin-right:0;float:right}.give-modal--additional-link{float:right;line-height:26px}.modal-fade-slide .give-modal--zoom{opacity:0;transition:all .2s ease-out;transform:translateY(-20px) perspective(600px) rotateX(10deg)}.modal-fade-slide.mfp-ready .give-modal--zoom{opacity:1;transform:translateY(0) perspective(600px) rotateX(0)}.modal-fade-slide.mfp-removing .give-modal--zoom{opacity:0;transform:translateY(-10px) perspective(600px) rotateX(10deg)}.modal-fade-slide.mfp-bg{opacity:0;transition:opacity .3s ease-out}.modal-fade-slide.mfp-ready.mfp-bg{opacity:.8}.modal-fade-slide.mfp-removing.mfp-bg{opacity:0}.give-button{display:inline-block;height:30px;line-height:28px;padding:0 12px 2px;cursor:pointer;border-width:1px;border-style:solid;-webkit-appearance:none;border-radius:3px;white-space:nowrap;box-sizing:border-box;margin-right:.5rem;font-weight:400;font-size:.9em}.give-button:active{transform:translateY(1px)}.give-button--primary{background:#0085ba;border-color:#0073aa #006799 #006799;box-shadow:0 1px 0 #006799;color:#fff;text-decoration:none;text-shadow:0 -1px 1px #006799,-1px 0 1px #006799,0 1px 1px #006799,1px 0 1px #006799;outline:0}.give-button--primary:hover{background:#008ec2;border-color:#006799;color:#fff}.give-button--primary:active{background:#0073aa;border-color:#006799;box-shadow:inset 0 2px 0 #006799;vertical-align:top}.give-button--primary:focus{background:#0073aa;border-color:#006799;color:#fff;box-shadow:0 1px 0 #0073aa,0 0 2px 1px #33b3db}.give-button--secondary{color:#555;border-color:#ccc;background:#f7f7f7;box-shadow:0 1px 0 #ccc;vertical-align:top}.give-button--secondary:hover{background:#fafafa;border-color:#999;color:#23282d}.give-button--secondary:active{background:#eee;border-color:#999;box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5)}.give-button--secondary:focus{background:#eee}.give-notice{position:relative}@font-face{font-family:give-icomoon;font-weight:400;font-style:normal}.give-metabox-tabs li .give-icon:before{font-family:give-icomoon;src:url(../fonts/icomoon.eot);src:url(../fonts/icomoon.eot#iefix) format("embedded-opentype"),url(../fonts/icomoon.woff) format("woff"),url(../images/icomoon.svg#icomoon) format("svg");speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:12px;vertical-align:top;line-height:20px;margin:0 0 0 5px}.give-metabox-tabs li .give-icon-default:before{content:"\e903"}.give-metabox-tabs li .give-icon-heart:before{content:"\e604"}.give-metabox-tabs li .give-icon-target:before{content:"\e901"}.give-metabox-tabs li .give-icon-display:before{content:"\e90c"}.give-metabox-tabs li .give-icon-edit:before{content:"\e902"}.give-metabox-tabs li .give-icon-checklist:before{position:relative;top:1px;content:"\e900"}.give-metabox-tabs li .give-icon-purse:before{content:"\e8df"}.give-metabox-tabs li .dashicons{font-size:14px;width:14px;line-height:20px}.give-grid-row{position:relative;width:100%}.give-grid-row [class^=give-grid-col]{float:right;margin:.5rem 1%;min-height:.125rem}.give-grid-row:after{content:"";display:table;clear:both}.give-grid-col-1{width:6.33333%}.give-grid-col-2{width:14.66667%}.give-grid-col-3{width:23%}.give-grid-col-4{width:31.33333%}.give-grid-col-5{width:39.66667%}.give-grid-col-6{width:48%}.give-grid-col-7{width:56.33333%}.give-grid-col-8{width:64.66667%}.give-grid-col-9{width:73%}.give-grid-col-10{width:81.33333%}.give-grid-col-11{width:89.66667%}.give-grid-col-12{width:98%}@media only screen and (max-width:33.75em){.give-grid-row [class^=give-grid-col]{width:98%}}.give_options_panel input[type=email],.give_options_panel input[type=text]{padding:3px 5px;width:100%;line-height:2;box-shadow:0 0 0 transparent;border-radius:4px;border:1px solid #7e8993;background-color:#fff;color:#32373c}input.give-text-small,input.give-text_small{width:100px!important}input.give-text-medium,input.give-text_medium{width:200px!important}.give-hidden,.post-type-give_forms .tablenav #post-query-submit{display:none}.give_options_panel .give-time-field{width:65px}.give_options_panel .give-money-field{width:75px;margin-left:0;margin-right:0}.give_options_panel .give-money-symbol{border:1px solid #7e8993;background:#fcfcfc;margin:0;font-size:14px;padding:8px 10px 9px}.give_options_panel .give-money-symbol-before{border-left:0;margin-left:-5px;border-radius:0 4px 4px 0}.give_options_panel .give-money-symbol-before+.give-money-field{border-top-right-radius:0;border-bottom-right-radius:0}.give_options_panel .give-money-symbol-after{margin-right:-5px;border-radius:4px 0 0 4px}.give_options_panel .give-money-symbol-after+.give-money-field{border-top-left-radius:0;border-bottom-left-radius:0}.give-underline{text-decoration:underline}#give-bulk-donors div[id^=give-donor-]{display:block;overflow:hidden}.shortcode-wrap{margin:1px 11px 12px 14px}.shortcode-wrap label{margin:0 0 3px;display:block;cursor:default}.shortcode-wrap .shortcode-input{margin:0;width:100%}input.shortcode-input{width:100%}.price .give_price_range_high,.price .give_price_range_low,.price .give_price_range_sep{display:inline-block}.js-give-shortcode-button{font-weight:400;cursor:help}.js-give-shortcode-button:after{box-shadow:0 1px 1px 0 rgba(0,0,0,.1);text-shadow:none}.js-give-shortcode-button .dashicons{font-size:16px;width:16px;vertical-align:middle;color:inherit;margin-left:2px}@media only screen and (min-width:782px) and (max-width:1260px){.js-give-shortcode-button .give-button-text{display:none}}.give-tooltip{margin:0 3px;padding:0;font-size:14px;-moz-transition:.2s all linear;-o-transition:.2s all linear;transition:all .2s linear;color:rgba(51,51,51,.5);position:relative;top:1px}.give-tooltip:hover{color:#333}#give-metabox-form-data .inside{margin:0;padding:0}#give-metabox-form-data .give-metabox-panel-wrap{background:#fff;overflow:hidden}#give-metabox-form-data .give_options_panel{display:none;padding-right:170px}#give-metabox-form-data .give_options_panel.active,.no-js #give-metabox-form-data .give_options_panel{display:block}#give-metabox-form-data .give_options_panel .give-field-wrap{padding:1em 162px 1em 20px;margin:0;border-bottom:1px solid #eee}#give-metabox-form-data .give_options_panel .give-field-wrap>label,#give-metabox-form-data .give_options_panel .give-field-wrap>span.give-field-label{float:right;width:135px;padding:0;margin:2px -150px 0 0;line-height:18px;font-size:12px;font-weight:400}#give-metabox-form-data .give_options_panel .give-field-wrap .give-field-description{color:#aaa;font-size:12px;line-height:18px;display:block;padding-top:10px;font-style:italic}#give-metabox-form-data .give_options_panel .give-field-wrap ul{margin:0}#give-metabox-form-data .give_options_panel .give-field-wrap .mce-container iframe{min-height:250px!important}#give-metabox-form-data .give_options_panel .give-field-wrap .wp-editor-wrap{display:inline-block;width:100%}#give-metabox-form-data .give_options_panel textarea.give-field{width:100%}#give-metabox-form-data .give_options_panel .give-field-wrap:hover .give-field-row-actions{display:block}#give-metabox-form-data .give_options_panel .give-field-wrap:last-child{border-bottom:0}#give-metabox-form-data .give_options_panel .give-inline-radio-fields li{display:inline-block;margin-left:15px}#give-metabox-form-data .give_options_panel .give-repeatable-field-section{padding:10px;background:#f5f5f5}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-repeatable-fields-section-wrapper{width:100%;background-color:#fff;border-collapse:collapse}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-row{border-bottom:15px solid #f5f5f5;background-color:#fff}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-template{display:none}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-row:last-child{border-bottom:10px solid #f5f5f5}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-column{padding:0}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-remove{float:left;width:22px;height:36px;padding:0;display:block;text-align:center;line-height:34px;font-size:21px;font-weight:300;cursor:pointer}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-remove:hover{background-color:red;color:#fff;width:22px;height:22px;border-radius:30px;margin-top:8px;line-height:19px}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-row-head{border-bottom:1px solid #eee;cursor:move}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-row-head h2{text-align:right!important}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-row.closed .toggle-indicator:before{content:"\f140"}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-row .give-move .toggle-indicator:before{margin-right:7px}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-add-repeater-field-section-row-wrap{background-color:#f5f5f5}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-add-repeater-field-section-row{margin:5px}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-field-wrap:last-child{border-bottom:1px solid #eee}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-ui-placeholder-state-highlight{background-color:#68bb6c}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-repeater-field-name{border:0!important;padding:0!important}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-repeater-field-description{color:#aaa;font-size:12px;line-height:18px;display:block;padding-bottom:10px;font-style:italic}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .ui-sortable-helper{display:table!important}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-row.ui-sortable-helper{border-bottom:0}#give-metabox-form-data .give-minmax-wrap{display:block;margin-bottom:.5rem}#give-metabox-form-data .give-minmax-wrap label{display:inline-block;width:120px;font-size:12px}#give-metabox-form-data .give-minmax-wrap input{margin-right:1px;position:relative;z-index:1;border-radius:4px 0 0 4px}#_give_donation_levels_field .give-row:nth-of-type(2) .give-remove{display:none!important}#give-metabox-form-data .give-metabox-tabs{margin:0;max-width:170px;float:right;line-height:1em;padding:0 0 10px;position:relative;background-color:#fafafa;border-left:1px solid #eee;box-sizing:border-box}#give-metabox-form-data .give-metabox-tabs:after{content:"";display:block;width:100%;height:9999em;position:absolute;bottom:-9999em;right:0;background-color:#fafafa;border-left:1px solid #eee}#give-metabox-form-data .give-metabox-tabs li{margin:0;padding:0;display:block;position:relative}#give-metabox-form-data .give-metabox-tabs li a{margin:0;padding:10px;display:block;box-shadow:none;text-decoration:none;line-height:20px!important;border-bottom:1px solid #eee;overflow:hidden}#give-metabox-form-data .give-metabox-tabs li a span.give-label{width:122px;display:inline-block}#give-metabox-form-data .give-metabox-tabs .give-metabox-sub-tabs li{background-color:#f1f1f1}#give-metabox-form-data .give-metabox-tabs .give-metabox-sub-tabs li a{border-bottom-color:#e5e5e5}#give-metabox-form-data .give-metabox-tabs li.active>a{color:#555;position:relative;background-color:#eee}#give-metabox-form-data .give-metabox-tabs li.has-sub-fields.active>a{background-color:#ddd}#give-metabox-form-data .give-metabox-tabs li.has-sub-fields:not(.active):hover ul.give-metabox-sub-tabs{display:block;position:absolute;bottom:0;right:166px;width:170px;max-height:250px}@media (max-width:550px),only screen and (min-width:851px) and (max-width:1025px){#give-metabox-form-data ul.give-metabox-tabs{min-width:40px}#give-metabox-form-data ul.give-metabox-tabs li>a{text-align:center}#give-metabox-form-data ul.give-metabox-tabs li>a:before{margin-left:0;font-size:15px}#give-metabox-form-data ul.give-metabox-tabs li>a span.give-label{display:none}#give-metabox-form-data ul.give-metabox-tabs li>a span.give-icon:before{margin:0}#give-metabox-form-data .give_options_panel{padding-right:40px}#give-metabox-form-data .give_options_panel .give-field-wrap{padding:10px}#give-metabox-form-data .give_options_panel .give-field-wrap label,#give-metabox-form-data .give_options_panel .give-field-wrap span.give-field-label{display:block;float:none;margin:0 0 10px;font-size:14px;width:100%}}.chosen-container-single a.chosen-single{background:#fff!important}.give-docs-link{text-align:left;margin-left:15px}.give-docs-link a{color:#999;text-decoration:none;font-style:italic}.give-docs-link a:hover{color:#0073aa}.give-docs-link a span{font-style:normal}.post-type-give_forms #posts-filter .search-box{display:none}.post-type-give_forms #posts-filter .tablenav.top{position:relative;margin:42px 0 0;height:auto}.post-type-give_forms #posts-filter .tablenav.top #give-forms-advanced-filter{margin:0 0 10px}.post-type-give_forms #posts-filter .tablenav.top #give-forms-advanced-filter #give-forms-goal-filter{width:255px}.post-type-give_forms #posts-filter .tablenav.top #give-forms-advanced-filter a{display:inline-block;margin:0}.post-type-give_forms #posts-filter .tablenav.top #give-forms-advanced-filter #give-forms-search-input{margin-left:6px}.post-type-give_forms #posts-filter .tablenav.top .actions{position:absolute;right:230px;bottom:10px}.post-type-give_forms #posts-filter .tablenav.top .actions.bulkactions{right:0}@-moz-document url-prefix(){.give_options_panel .give-money-symbol{padding:8.5px 10px}}#give-addons.wrap{margin:0!important}.give_forms_page_give-addons #wpbody-content{padding-bottom:0}.give-addons-header{padding:10px 20px;margin:0 -22px 0 0;background:url(../images/give-faces-bg.png) repeat 100% 0 #0e0e0e;overflow:hidden}.give-addons-header .give-admin-logo{float:right}.give-addons-header .give-admin-logo a{box-shadow:none;outline:none}.give-addons-header .give-admin-logo img{max-width:237px}.give-addons-header .give-admin-logo span{display:none}.give-core-bundles-container{text-align:center;margin:80px 0 120px}.give-core-bundles-container h2.give-core-bundles-intro-heading{font-size:42px;line-height:1.2em;margin:0 0 20px;padding:0}.give-core-bundles-container p.give-core-bundles-intro-subheading{font-size:20px;margin:0}.give-price-bundles-wrap{padding:0 40px 100px;font-family:Montserrat,sans-serif;max-width:1200px;margin:0 auto}.give-price-bundles-wrap .dashicons-yes{color:#66bb6a;position:relative;top:-2px}.give-price-bundles-wrap .dashicons-no-alt{color:#d75a4a;position:relative;top:-2px}.give-price-bundles-wrap .dashicons-star-filled{color:#ff960e;font-size:16px}div.bundle{float:right;width:31.333%;background:#fff;text-align:center;box-shadow:0 0 20px rgba(0,0,0,.25);position:relative;min-height:775px}div.bundle:hover{box-shadow:0 0 25px rgba(0,0,0,.3)}div.bundle.featured-bundle{margin-top:-50px;width:36.333%;z-index:9;position:relative;min-height:845px}div.bundle.featured-bundle .bundle-title-wrap{background-color:#66bb6a}div.bundle.featured-bundle div.bundle-price-wrap{background:#f5f3e9}div.bundle.featured-bundle div.bundle-price-wrap .bundle-price{font-size:72px}div.bundle.featured-bundle div.bundle-price-wrap .bundle-dollar-sign,div.bundle.featured-bundle div.bundle-price-wrap .bundle-per-month,div.bundle.featured-bundle div.bundle-price-wrap .bundle-price{color:#66bb6a}div.bundle.featured-bundle .bundle-cta-wrap{bottom:50px}div.bundle.featured-bundle .bundle-cta-wrap>a{padding:20px 0;font-size:23px}div.bundle div.bundle-title-wrap{background-color:#8f8f8f;text-align:center;padding:0 20px;margin:0;height:100px;box-sizing:border-box}div.bundle div.bundle-title-wrap>h2{margin:0;padding:0;color:#fff;text-shadow:-1px 1px 1px rgba(0,0,0,.3);text-transform:uppercase;font-size:42px;line-height:100px}div.bundle div.bundle-title-wrap .bundle-popular{background:#ff960e;text-shadow:0 1px 0 #c16d00;color:#fff;text-transform:uppercase;padding:5px 12px 4px;margin:0;font-size:15px;border-radius:6px;position:relative;top:-9px;border-bottom:2px solid #c16d00}div.bundle div.bundle-price-wrap{background:#f9f8f2;text-align:center;color:#8f8f8f;padding:40px 0}div.bundle div.bundle-price-wrap .bundle-price{color:#8f8f8f;font-size:64px;line-height:1em}div.bundle div.bundle-price-wrap .bundle-price-p{margin:0 0 0 20px}div.bundle div.bundle-price-wrap .bundle-dollar-sign{color:#8f8f8f;font-size:36px}div.bundle div.bundle-price-wrap .bundle-per-month{color:#8f8f8f;font-size:25px;margin-left:-30px}div.bundle div.bundle-price-wrap .bundle-per-year{display:block;font-style:italic}div.bundle .bundle-quote{text-align:center;color:#999688;padding:25px 0;margin:0;font-style:italic;font-size:16px}ul.bundle-features{list-style:none;padding:25px;border-top:1px solid #ddd;text-align:right;width:225px;margin:0 auto}ul.bundle-features .label-give{font-size:13px;width:25px;height:25px;line-height:25px;padding:0;margin:0 0 0 5px;top:-1px;position:relative;display:inline-block}ul.bundle-features .label-give a{color:#fff}ul.bundle-features>li{margin:10px 0 0;padding:5px 0 0;font-size:15px}ul.bundle-features>li:first-child{margin-top:0;padding-top:0}ul.bundle-features .initial-bundle-feature>span{font-weight:600}ul.bundle-features .highlighted-addons{margin:0 20px 0 0;padding:0;font-size:14px;list-style:none}ul.bundle-features .highlighted-addons>li{list-style-type:none;margin:10px 0 0;padding:0;line-height:1em}ul.bundle-features .magnific-inline{text-decoration:none;color:#000;box-shadow:none;outline:none;cursor:default}ul.bundle-features .magnific-inline .hint,ul.bundle-features .magnific-inline:after,ul.bundle-features .magnific-inline:before{display:none}.bundle-cta-wrap{position:absolute;bottom:36px;right:0;left:0}.bundle-cta-wrap a{text-decoration:none;text-transform:uppercase;color:#fff;background:#66bb6a;border-radius:500px;padding:15px 0;display:block;box-shadow:0 5px 5px 0 rgba(0,0,0,.2);line-height:1.2em}.bundle-cta-wrap a:hover{background:#71c074}.give-addons-directory-wrap{background:#fff;margin:0 -20px 0 0;padding:70px 20px 60px;font-family:Montserrat,sans-serif;text-align:center}.give-addons-directory-wrap title{display:block;font-size:30px;margin:0 0 50px;line-height:1.2em}.give-addons-directory-wrap .type-download{display:inline-block;text-align:right;margin:0 0 2em 2em!important;padding:0;vertical-align:top;width:365px;text-decoration:none;color:inherit;border:1px solid #ddd;min-height:420px;overflow:hidden;background:#fcfcfc;box-shadow:inset 0 1px 0 hsla(0,0%,100%,.2),inset 0 -1px 0 rgba(0,0,0,.1);transition-property:border,background,color;transition-duration:.05s;transition-timing-function:ease-in-out;position:relative}.give-addons-directory-wrap .type-download:hover{border:1px solid #d1d1d1}.give-addons-directory-wrap .type-download>.featured-img img{border-bottom:1px solid #ddd}.give-addons-directory-wrap .type-download .addon-content{*zoom:1;padding:15px 20px}.give-addons-directory-wrap .type-download .addon-content:after,.give-addons-directory-wrap .type-download .addon-content:before{content:" ";display:table}.give-addons-directory-wrap .type-download .addon-content:after{clear:both}.give-addons-directory-wrap .type-download .addon-content .addon-heading{margin:0 0 10px;font-size:20px;line-height:30px}.give-addons-directory-wrap .type-download .addon-content .addon-heading a{color:#66bb6a;outline:none;text-decoration:none;box-shadow:none}.give-addons-directory-wrap .type-download .addon-footer-wrap{border-top:1px solid #ddd;position:absolute;bottom:2px;right:0;width:100%;background-color:#fff;padding:15px 20px}@media (min-width:1350px){div.bundle .bundle-quote{padding-right:45px;padding-left:45px}div.bundle .bundle-cta-wrap{margin:0 40px}div.bundle .bundle-cta-wrap a{font-size:20px}}@media (max-width:1349px){.give-price-bundles-wrap{margin-right:-20px}div.bundle .bundle-quote{padding-right:10px;padding-left:10px}div.bundle .bundle-cta-wrap{margin:0 25px}div.bundle .bundle-cta-wrap a{font-size:18px}}@media (max-width:850px){.give-price-bundles-wrap{padding:40px 30px}.give-core-bundles-container{margin:30px 0 60px}div.bundle,div.bundle.featured-bundle{width:100%;margin:0 0 30px}}#give-dashboard-widgets-wrap .inside{padding-top:0;padding-bottom:0}.give_forms_page_give-reports #give-dashboard-widgets-wrap .inside{padding-right:0}#give-dashboard-widgets-wrap .inside #give-graphs-filter{float:none}#give-dashboard-widgets-wrap .postbox{margin-bottom:10px}#give-dashboard-widgets-wrap table.reports-table{clear:none}#give-dashboard-widgets-wrap #give-date-range-options{float:right}#give-dashboard-widgets-wrap #give-date-range-options>span{float:right;line-height:30px;font-style:italic;padding:0 0 0 5px}#give-graphs-filter{float:left}#give-graphs-filter .tablenav{margin:0 17px 0 0}#give-graphs-filter .tablenav .actions{padding:0}.give-graph .y1Axis{color:#66bb6a!important}.give-graph .y2Axis{color:#546e7a!important}body.give_forms_page_give-payment-history h1.nav-tab-wrapper,body.give_forms_page_give-payment-history h2.nav-tab-wrapper,body.give_forms_page_give-reports h1.nav-tab-wrapper,body.give_forms_page_give-reports h2.nav-tab-wrapper{margin-bottom:10px}body.give_forms_page_give-payment-history .actions,body.give_forms_page_give-reports .actions{padding-top:0}body.give_forms_page_give-payment-history .pagination-links,body.give_forms_page_give-reports .pagination-links{margin-right:10px}body.give_forms_page_give-payment-history p.donor-search,body.give_forms_page_give-reports p.donor-search{margin-left:10px}body.give_forms_page_give-payment-history .tablenav-right .tablenav-pages,body.give_forms_page_give-reports .tablenav-right .tablenav-pages{float:left}body.give_forms_page_give-payment-history .tablenav-right #give-reports-view,body.give_forms_page_give-reports .tablenav-right #give-reports-view{margin-top:0}body.give_forms_page_give-payment-history .tablenav-right .actions,body.give_forms_page_give-payment-history p.search-box,body.give_forms_page_give-reports .tablenav-right .actions,body.give_forms_page_give-reports p.search-box{float:right}body.give_forms_page_give-payment-history .reports-table-nav.tablenav.top,body.give_forms_page_give-reports .reports-table-nav.tablenav.top{width:100%;float:none;margin:0 0 10px}body.give_forms_page_give-payment-history .reports-forms-details-wrap.top,body.give_forms_page_give-reports .reports-forms-details-wrap.top{float:left;overflow:hidden}body.give_forms_page_give-payment-history .reports-forms-details-wrap.top #give-reports-filter,body.give_forms_page_give-reports .reports-forms-details-wrap.top #give-reports-filter{float:right}body.give_forms_page_give-payment-history .reports-forms-details-wrap.top>.actions,body.give_forms_page_give-reports .reports-forms-details-wrap.top>.actions{padding-left:0}body.give_forms_page_give-payment-history .tablenav.bottom,body.give_forms_page_give-reports .tablenav.bottom{margin-top:10px}body.give_forms_page_give-payment-history h2.reports-earnings-title,body.give_forms_page_give-reports h2.reports-earnings-title{margin:7px 0 0}body.give_forms_page_give-payment-history .reports-views-wrap,body.give_forms_page_give-reports .reports-views-wrap{padding:3px 0 0}body.give_forms_page_give-payment-history .wrap.give-reports-donors-wrap,body.give_forms_page_give-reports .wrap.give-reports-donors-wrap{margin-left:0;margin-bottom:10px}body.give_forms_page_give-payment-history .widefat tbody td,body.give_forms_page_give-payment-history .widefat tbody th,body.give_forms_page_give-reports .widefat tbody td,body.give_forms_page_give-reports .widefat tbody th{padding-top:12px;padding-bottom:12px}body.give_forms_page_give-reports table.export-options-table tbody td{padding:20px 12px;vertical-align:top}body.give_forms_page_give-reports table.export-options-table .give-export-form{position:relative}body.give_forms_page_give-reports table.export-options-table .give-export-form .notice-wrap{background-color:transparent;padding:12px 12px 4px;margin:2px -11px -16px 0;overflow:auto}body.give_forms_page_give-reports table.export-options-table .give-export-form .notice-wrap .spinner{margin:-2px 0 8px -12px}body.give_forms_page_give-reports table.export-options-table span#give-end-wrap input,body.give_forms_page_give-reports table.export-options-table span#give-start-wrap input{width:100px}#export-donor-options-wrap p{padding:20px 0 0;margin:0;font-weight:700}#export-donor-options-wrap ul{max-width:900px;overflow:hidden}#export-donor-options-wrap ul li{margin:0;padding:0 0 5px 5px;box-sizing:border-box;float:right;width:33%}.settings-excludes-list{max-height:120px;overflow:auto;padding:.5rem;border:1px solid #ddd}.settings-excludes-list li{margin:3px 0}#give-tools-recount-form .notice-wrap{position:relative;min-height:25px;margin:10px -12px -12px;background:#efefef;padding:10px 12px 12px;border-top:1px solid #e5e5e5}#give-tools-recount-form .notice-wrap .give-progress{position:absolute;top:15px}#give-tools-recount-form .notice-wrap .spinner{position:absolute;left:14px;top:13px;margin:0}#give-tools-recount-form .notice-wrap #give-batch-success{margin-bottom:6px}.recount-stats-controls form{display:inline}.give-recount-stats-descriptions{margin:8px 0 0;display:block}.give-recount-stats-descriptions span{line-height:24px;font-size:13px;font-style:italic;font-weight:400;color:#aaa;margin:0;display:none}.gateways-report-tablenav .actions.bulkactions{padding-left:0}table.give-table td{vertical-align:middle}table.give-table td.row-title h3{margin:0 0 .4em;font-size:1.2em}table.give-table td.row-title p{font-size:13px;font-style:italic;font-weight:400;color:#aaa;margin:0}#give-graphs-filter>.tablenav{height:auto}#give-logs-filter .search-box{float:left}#give-logs-filter .tablenav.top{float:right;clear:none;margin-top:0}.give-welcome-wrap{margin:0 -20px 0 0;padding:0}.give-welcome-header{background:#fff;height:100%;min-width:1000px}.give-welcome-header .give-welcome-header-inner{max-width:900px;margin:0;padding:25px 30px 20px 250px;position:relative}.give-welcome-header .give-welcome-h1{margin:0 0 0 200px;padding:0;color:#32373c;line-height:1.2em;font-size:2.8em;font-weight:600;display:inline-block;margin-left:15px!important}.give-welcome-header .give-welcome-h1:before{background:url(../images/give-icon-full-circle.svg);width:36px;height:36px;content:" ";display:block;float:right;margin:0 0 0 10px;position:relative;top:4px}.give-welcome-header .give-welcome-text{font-size:20px;margin:20px 0 30px;padding:0}.give-badge{background:url(../images/give-badge.png) no-repeat 100% 0 transparent;padding-top:150px;height:52px;width:185px;color:#fff;font-weight:700;font-size:14px;text-align:center;text-shadow:0 1px 0 rgba(0,0,0,.8);margin:0;position:absolute;top:30px;left:20px}.give-welcome-content-wrap{padding:0;margin:0}.give-welcome-content-wrap.give-changelog-wrap{width:1140px}.give-welcome-content-intro{font-size:22px;font-style:italic;color:#8e8e8e;margin:50px 30px 60px;max-width:1400px;min-width:1000px}.give-ipad-showcase-wrap{border:3px solid #9199a5;border-radius:10px;position:relative;box-shadow:0 .75rem 2rem rgba(0,0,0,.4)}.give-ipad-showcase-wrap .give-ipad-showcase-inner{background:#fafbfb;border:10px solid #1e2026;border-radius:7px;display:grid}.give-ipad-showcase-wrap img{height:auto;max-width:100%}.give-feature-section{margin:0;padding:120px 30px}.give-feature-section__inner{display:flex;flex-direction:row;margin:0;align-items:center;justify-content:center;max-width:1400px;min-width:1000px}.give-feature-section:first-of-type{padding-top:0}.give-feature-section__step2{background:#fff}.give-feature-section span.dashicons{width:16px;height:16px;font-size:14px;margin:6px 0 0}.give-feature-section .give-feature-section-item{display:flex;width:50%}.give-feature-section .give-feature-section-item__container{padding:0 0 0 60px;margin:0}.give-feature-section .give-feature-section-item__container-right{padding-right:60px;padding-left:20px}.give-feature-section .give-feature-section-item h3{font-size:24px;font-weight:500;margin:0 0 20px}.give-feature-section .give-feature-section-item h3>.give-feature-section-item-number{background:#fff;width:40px;height:40px;margin:0 0 0 10px;padding:0;line-height:40px;text-align:center;color:#777;box-shadow:0 1px 3px 0 rgba(0,0,0,.2);border-radius:50%;display:inline-block;font-size:22px}.give-feature-section .give-feature-section-item p{font-size:16px}.give-feature-section .give-feature-section-item .give-welcome-gateway-notice{font-size:12px!important;line-height:16px}.give-feature-section .give-feature-btns{margin:30px 0 20px}.give-feature-section .give-feature-btns li{display:inline;margin:0 0 0 25px}.give-feature-section .give-feature-btns .give-feature-btn-link{font-size:15px;line-height:30px}.social-items-wrap,.social-items-wrap>div{display:inline-block}.social-items-wrap .twitter-item-wrap{margin:0 0 10px 20px}.give-welcome-widgets{background:#fff;text-align:center;padding:100px 0 160px}.give-welcome-widgets p{font-size:16px}.give-welcome-widgets__inner{max-width:1400px}.give-welcome-widgets__heading{max-width:500px;margin:0 auto 100px}.give-welcome-widgets__heading h2{font-size:26px;font-weight:500}.give-welcome-widgets__heading .button{margin-top:10px;font-size:15px}.give-welcome-widgets__col{float:right;width:33.33%;box-sizing:border-box;padding:0 20px}.give-welcome-widgets__col h3{font-size:22px;font-weight:500}.give-welcome-widgets__col h3:before{background:url(../images/happy-face.svg) no-repeat top transparent;opacity:.3;content:" ";width:100%;height:85px;display:inline-block;font-size:80px;-moz-transition:.2s all linear;-o-transition:.2s all linear;transition:all .2s linear}.give-welcome-widgets__col p{font-size:13px}.give-welcome-widgets__col:hover h3:before{opacity:.45}.give-welcome-widgets__addons h3:before{background:url(../images/shopping-cart.svg) no-repeat top transparent}.give-welcome-widgets__documentation h3:before{background:url(../images/docs-book.svg) no-repeat top transparent}.give-welcome-widgets__col-inner{max-width:300px;margin:0 auto}.give-welcome-widgets__link{font-weight:700;font-size:15px}.give-contributor-group{list-style:none}.give-contributor-group img{border-radius:50%}.give-contributor-group .give-contributor{margin:0 0 45px 10px;display:inline-block;width:140px;text-align:center}.give-contributor-group .give-contributor a{outline:none;box-shadow:none}.give-contributor-group .give-contributor span{display:block;margin:3px 0 0;font-weight:700}.give-newsletter-form-wrap{margin:10px 0 15px;padding:10px 15px 15px;background:#f1f1f1;border:1px solid #ddd;max-width:900px}.give-newsletter-form-wrap .give-newsletter-intro{font-size:14px;font-style:italic;color:#777;margin:0}.give-newsletter-form-wrap .button,.give-newsletter-form-wrap input[type=email],.give-newsletter-form-wrap input[type=text]{width:100%;height:36px}.give-newsletter-form-wrap td{padding:0 0 0 10px}.give-newsletter-form-wrap div.give-newsletter-confirmation{background:#fff;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1);margin:5px 5px 4px 10px;padding:1px 12px;border-right:4px solid #7ad03a;display:none}.give-newsletter-form-wrap div.give-newsletter-confirmation>p{margin:.5em 0;padding:2px}.give-changelog-wrap .give-changelog{max-height:510px;margin:0 30px 100px 0;padding:20px;overflow-y:scroll;overflow-x:hidden;font-size:18px;line-height:28px;background:#fff;border:1px solid #ddd}.give-changelog-wrap .give-changelog br:first-child,.give-changelog-wrap .give-changelog br:first-child+br{display:none}.give-changelog-wrap .give-changelog h4{margin:0 0 10px;border-bottom:1px solid #e2e2e2;padding:0 0 6px;font-size:20px}.give-changelog-wrap .give-changelog h4+br{display:none}.dashboard_page_give-changelog #wpbody-content,.dashboard_page_give-getting-started #wpbody-content{padding-bottom:0}#give-paypal-connect{background:#039cde;color:#fff;font-size:14px;line-height:30px;font-weight:700;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;box-shadow:none;text-decoration:none;padding:8px 20px;border-radius:40px}#give-paypal-connect span:before{content:" ";width:16px;height:16px;display:inline-block;margin:0 0 0 8px;background-image:url(../images/paypal-48.png);background-size:16px;position:relative;top:2px}#give_donor_export_form{margin:0 0 5px}#give_donor_export #give_donor_export_form_chosen{display:block;margin:5px 0 1px}.column-status .give-donation-status,.column-status .give-test-mode-transactions-label{display:inline-block}.column-status .give-test-mode-transactions-label{margin:0 5px;vertical-align:middle}.give-settings-page .give-settings-section-content{display:flex;background-color:#f4f4f4;border-radius:8px;-webkit-box-shadow:0 0 5px 0 #ddd;-moz-box-shadow:0 0 5px 0 #ddd;box-shadow:0 0 5px 0 #ddd}.give-settings-page .give-settings-section-content .give-settings-section-group-menu{width:250px}.give-settings-page .give-settings-section-content .give-settings-section-group-menu ul,.give-settings-page .give-settings-section-content .give-settings-section-group-menu ul li{margin:0}.give-settings-page .give-settings-section-content .give-settings-section-group-menu ul li a{display:block;padding:20px;text-decoration:none;color:#333;font-weight:600;outline:none;box-shadow:none}.give-settings-page .give-settings-section-content .give-settings-section-group-menu ul li a:hover{background-color:#ebebeb}.give-settings-page .give-settings-section-content .give-settings-section-group-menu ul li a.active{background-color:#fff;border-right:4px solid #66bb6a;color:#333}.give-settings-page .give-settings-section-content .give-settings-section-group-content{width:100%;background:#fff;padding:10px 30px;border-bottom-left-radius:8px;border-top-left-radius:8px;min-height:400px}@media only screen and (max-width:480px){.give-settings-page .give-settings-section-content{flex-flow:row wrap}.give-settings-page .give-settings-section-content .give-settings-section-group-menu{width:100%}.give-settings-page .give-settings-section-content .give-settings-section-group-content{padding:10px}}.give-settings-page{margin:0 2px 0 20px}.give-settings-page #poststuff{padding-top:25px}.give-settings-page .give-settings-header{background:#fff;padding:10px 20px;margin:0 -22px 0 -20px}.give-settings-page .give-settings-heading-sep{font-size:14px;line-height:32px;width:15px}.give-settings-page .nav-tab-wrapper{height:54px;margin:0 -22px 0 -20px}.give-settings-page .give-subsubsub{list-style:none;margin:12px 0 3px;padding:0;float:right}.give-settings-page .give-subsubsub li{display:inline-block;margin:0 3px 0 0;padding:0;white-space:nowrap;color:#d3d3d3;font-weight:300;font-size:16px}.give-settings-page .give-subsubsub a{line-height:2;padding:.2em;margin:0 0 0 3px;text-decoration:none;font-size:14px;box-shadow:none;font-weight:400}.give-settings-page .give-subsubsub a.current{color:#000;font-weight:600;border:none}.give-settings-page .give-setting-tab-body{max-width:1260px}.give-settings-page div.give-submit-wrap{margin:20px 0}.give-settings-page .give_forms_page_give-payment-history .postbox .hndle{cursor:default}.give-settings-page .give-input-field{width:25em}.give-settings-page table table input[type=text]{width:15em}.give-settings-page .give-repeat-setting-field{margin:10px 0}.give-settings-page .give-remove-setting-field{width:25px;height:25px;padding:0;text-align:center;line-height:22px;font-size:21px;font-weight:300;cursor:pointer;margin-right:20px;display:inline-block}.give-settings-page .give-remove-setting-field:hover{background-color:red;color:#fff;border-radius:30px}.give-settings-page .give-forminp p:first-child .give-remove-setting-field{display:none}.give-settings-page .export-options-table tr.give-import-option:nth-child(odd){background:#f4f3f3}.give-settings-page .export-options-table tr.give-import-option:nth-child(odd) th{vertical-align:middle}.give-settings-page .export-options-table .give-import-dropdown:nth-child(2),.give-settings-page .export-options-table tr.give-import-option th:first-child{width:250px}.give-setting-tab-header{clear:both;overflow:hidden;margin:30px 0}.give-setting-tab-header h2{margin-top:8px}.give-setting-tab-header p{margin-top:0;margin-bottom:0}.give-radio-inline ul{margin-top:0}.give-radio-inline li{display:inline-block;margin:0 15px 0 0}.give-radio-inline li:first-child{margin-right:0}.give-tools-setting-page .bulkactions{overflow:visible}.form-table td.give-radio-inline fieldset li>label{margin:5px 0 0!important}div.give-field-description,p.give-field-description{color:#666;font-style:italic;font-size:14px!important;line-height:22px}div.give-field-description strong,p.give-field-description strong{color:#777}.give-setting-tab-header h2{float:right;display:inline-block;width:220px;font-style:italic;color:#aaa;margin:0;font-size:14px}.gateway-enabled-wrap{background-color:#f7f7f7;border:1px solid #e5e5e5}.gateway-enabled-wrap .gateway-enabled-settings-title{display:grid;grid-template-columns:.5fr 2.5fr 5fr 1fr 1fr;grid-gap:20px;border-bottom:1px solid #e5e5e5;padding:1rem;font-weight:600}.gateway-enabled-wrap .ui-sortable-placeholder{visibility:visible!important;border:2px dashed #e5e5e5;transition:all .2s ease}.gateway-enabled-wrap .ui-sortable-helper{background-color:#fafafa;box-shadow:0 4px 20px -5px rgba(0,0,0,.25);border:1px solid #e5e5e5;padding:.5rem!important}.give-payment-gatways-list{margin:0;padding:1rem}.give-payment-gatways-list li{display:grid;grid-template-columns:.5fr 2.5fr 5fr 1fr 1fr;align-items:center;grid-gap:20px;margin:0;padding:.5rem 0}.give-payment-gatways-list li:first-child{padding-top:0}.give-payment-gatways-list li:last-child{padding-bottom:0}.give-payment-gatways-list li .checkout-label{padding:3px 5px}.give-payment-gatways-list li .gateways-checkbox,.give-payment-gatways-list li .gateways-radio{justify-self:center}.give-payment-gatways-list li span.give-drag-handle{padding:3px 0 0 4px;font-size:15px;font-weight:400;color:#bdbdbd;cursor:move}.give-payment-gatways-list li span.give-drag-handle:hover{color:#333}.give-gateways-notice{display:table;width:100%;max-width:1240px;background:#fff;margin:15px 0 0;padding:0;border:1px solid #e3e3e3}.give-gateways-notice .give-gateways-cc-icon{margin:0;padding:0 25px 0 15px;height:30px;width:30px;display:table-cell;vertical-align:middle}.give-gateways-notice .give-gateways-cc-icon svg{position:relative;top:2px;width:50px;height:40px}.give-gateways-notice .give-gateways-notice-title{font-size:16px;margin:20px 20px 0;padding:0}.give-gateways-notice .give-gateways-notice-message{line-height:24px;font-size:14px;margin:5px 20px 20px}.give-gateways-notice .give-gateways-notice-button{display:table-cell;vertical-align:middle;text-align:left;margin:0;padding:0 0 0 15px;width:200px}.give-gateways-notice .give-gateways-notice-button #give-stripe-connect{margin:0 0 10px}.give-gateways-notice .give-gateways-notice-button .give-view-gateways-btn{text-align:center;width:190px}.give-email-tags-wrap{margin:5px 0 0}.give-email-tags-wrap code{font-style:normal;padding:1px 2px;font-size:12px}.give-email-tags-wrap span{display:block;color:#aaa;font-style:italic;margin:0 0 2px;font-size:13px}.give-email-tags-wrap .give_price_tag,.give-email-tags-wrap .give_receipt_id_tag{display:none}.give-setting-tab-header-emails{margin:20px 0}.give-setting-tab-header-emails hr,.give-settings-admin-email-section .tablenav,.give-settings-donor-email-section .tablenav,.give-settings-email-settings-section .tablenav{display:none}.give-settings-admin-email-section .tablenav.bottom+.give-setting-tab-header-emails,.give-settings-donor-email-section .tablenav.bottom+.give-setting-tab-header-emails,.give-settings-email-settings-section .tablenav.bottom+.give-setting-tab-header-emails{margin:20px 0}.give-settings-admin-email-section .tablenav.bottom+.give-setting-tab-header-emails hr,.give-settings-donor-email-section .tablenav.bottom+.give-setting-tab-header-emails hr,.give-settings-email-settings-section .tablenav.bottom+.give-setting-tab-header-emails hr{display:block}.giveemailnotifications .check-column{padding:13px 20px 0 10px!important}.giveemailnotifications td.check-column input{display:none}.giveemailnotifications th.check-column .give-email-notification-status{color:#fff;cursor:pointer}.giveemailnotifications th.check-column .give-email-notification-status[data-edit="1"] i.dashicons{border-radius:1em;padding:2px}.giveemailnotifications th.check-column .give-email-notification-disabled:hover .dashicons-no-alt,.giveemailnotifications th.check-column .give-email-notification-enabled .dashicons-yes{background:#46b450}.giveemailnotifications th.check-column .give-email-notification-enabled .dashicons-lock{color:#46b450}.giveemailnotifications th.check-column .give-email-notification-disabled .dashicons-no-alt,.giveemailnotifications th.check-column .give-email-notification-enabled:hover .dashicons-yes{background:#bbb}.giveemailnotifications th.check-column .give-email-notification-disabled .dashicons-lock{color:#bbb}.giveemailnotifications th.check-column .dashicons-no-alt:hover:before{content:"\f147"!important}.giveemailnotifications th.check-column .dashicons-yes:hover:before{content:"\f335"!important}.giveemailnotifications .spinner.is-active{margin:0 2px 0 0;float:none}#system-info-textarea{width:800px;height:600px;font-family:Menlo,Monaco,monospace;background:#fff;white-space:pre;overflow:auto;display:block;direction:rtl}#give-download-sysinfo{margin:0}#api .tablenav .actions{overflow:visible}a.give-delete{color:#a00}.give-table thead th{padding:8px 10px!important}.post-type-give_forms .mce-container iframe,.post-type-give_forms .wp-editor-area{min-height:400px}.give-field-description{color:#aaa;font-style:italic;margin:0;padding-top:.5em}.give-image-thumb{position:relative;margin-top:14px}.give-image-thumb span.give-delete-image-thumb{position:absolute;background:red;color:#fff;border-radius:30px;right:-10px;top:-10px;cursor:pointer}.give-image-thumb img{max-width:250px;border:4px solid #fff}.give_email_access_link_tag{display:none}.give-license-settings-wrap{max-width:1240px;min-width:1000px;margin:20px -10px 0 0;padding:0}.give-license-top-widget{border:1px solid #dbdbdb;min-height:250px}.give-license-top-widget .give-license-widget-heading{font-size:20px;margin:0 0 15px;padding:0 0 15px;border-bottom:1px solid #dbdbdb;line-height:1.2em}.give-license-top-widget .give-license-widget-heading .dashicons{height:25px;width:25px;font-size:28px;margin:-5px 0 0 10px}.give-license-top-widget .give-field-description{margin:0 0 20px;padding:0}#give-license-activator-wrap{background:#fff;margin:0;padding:30px}#give-license-activator-wrap .give-license-activation-form{background:#f4f4f4;padding:10px;position:relative}#give-license-activator-wrap .give-license-notices{position:absolute;background:#f4f4f4;top:0;right:0;height:100%;width:100%;padding:20px;z-index:3;box-sizing:border-box;display:none}#give-license-activator-wrap .give-license-notices .notice{position:relative;padding-left:40px}#give-license-activator-wrap #give-license-activator{font-size:22px;height:55px;padding:0 15px;margin:0 0 10px;width:100%}#give-license-activator-wrap .button{height:45px;width:100%;font-size:18px;display:block;clear:both;margin:0}#give-addon-uploader-wrap{background:#fff;padding:30px 25px 25px;margin:0}.give-upload-addon-form-wrap{position:relative}.give-upload-addon-form-wrap .give-upload-addon-instructions{margin:0;padding:0;opacity:.4;font-size:16px}.give-upload-addon-form-wrap .give-upload-addon-instructions span{display:block;margin:8px 0;font-size:14px}.give-upload-addon-form-wrap #give-upload-addon-file-select{display:none}.give-upload-addon-form-wrap .give-spinner-wrap{position:absolute;right:0;top:0;left:0;bottom:0;z-index:99;background-color:#fff}.give-upload-addon-form-wrap .give-spinner-wrap .give-spinner-inner{margin-top:5%;margin-right:42%}.give-upload-addon-form{background:#f4f4f4;padding:25px;text-align:center;outline:2px dashed #e2e2e2;outline-offset:-10px;transition:outline-offset .15s ease-in-out,background-color .15s linear;position:relative}.give-upload-addon-form.give-dropzone-active{outline-offset:-13px;outline:2px dashed #c6c6c6;background:#eaeaea}.give-upload-addon-form .give-addon-upload-notices{position:absolute;background:hsla(0,0%,100%,.66);top:0;right:0;height:100%;width:100%;padding:20px;z-index:3;text-align:right;box-sizing:border-box;display:none}.give-upload-addon-form .give-activate-addon-wrap{display:none;border:1px solid #dbdbdb;background:#fff;position:absolute;padding-top:20px;top:0;right:0;height:100%;width:100%;z-index:4;box-sizing:border-box}.give-upload-addon-form .give-activate-addon-wrap .dashicons{color:#66bb6a}#give-licenses-container{position:relative}#give-licenses-container .give-spinner-wrap{position:absolute;right:0;top:0;left:0;bottom:0;z-index:99;background-color:#fff}#give-licenses-container .give-spinner-wrap .give-spinner-inner{margin-top:5%;margin-right:45%}.give-licenses-list-header{margin:20px 0 30px;padding:0}.give-licenses-list-header h2{float:right;margin:0 0 20px;padding:0;font-size:18px}.give-licenses-list-header #give-refresh-button-wrap{float:right;margin:-6px 25px 0 0}.give-licenses-list-header #give-refresh-button-wrap #give-last-refresh-notice{margin:0 10px 0 0;line-height:28px;color:#666}.give-licenses-list-header hr{clear:both}.give-addon-wrap{border:1px solid #dbdbdb;background:#fff;padding:0;margin:0 0 20px;position:relative}.give-addon-wrap .give-license-top{background:#f4f4f4;border-bottom:1px solid #dbdbdb;display:flex;color:#333}.give-addon-wrap .give-license-notice-container.give-addon-notice-shown{background:#f4f4f4;border-bottom:1px solid #dbdbdb;padding:30px}.give-addon-wrap .give-license-notice-container.give-addon-notice-shown .notice{margin:0}.give-addon-wrap .give-license-top-header{display:block;font-size:15px;margin:0 0 20px;font-weight:700;color:#23282d}.give-addon-wrap .give-license-top-column{float:right;padding:30px;flex:1}.give-addon-wrap .give-license-top-column.give-license-info-field-wrap,.give-addon-wrap .give-license-top-column.give-license-key-field-wrap{border-left:1px solid #dbdbdb}.give-addon-wrap .give-license-top-column.give-license-key-field-wrap{flex:1.45;padding-left:10px}.give-addon-wrap .give-license-top-column.give-license-info-field-wrap .give-field-description{padding-top:0}.give-addon-wrap .give-license__status{margin:10px -4px 0 0;padding:0}.give-addon-wrap .give-license__status .dashicons-yes{color:#66bb6a}.give-addon-wrap .give-license__status .dashicons-no{color:#a00}.give-addon-wrap .give-license__key{display:inline-block}.give-addon-wrap .give-license__key input[type=text]{margin:0 0 0 10px}.give-addon-wrap .give-license__key button{font-size:15px;position:relative;top:-1px}@media (min-width:1400px){.give-addon-wrap .give-license__key input[type=text]{min-width:290px;height:40px;font-size:18px;padding:10px}.give-addon-wrap .give-license__key button{width:110px;height:40px}}@media (max-width:1399px){.give-addon-wrap .give-license__key input[type=text]{min-width:230px;height:35px;font-size:15px;padding:8px}.give-addon-wrap .give-license__key button{width:85px;height:35px;font-size:1em}}.give-addon-wrap .give-license-action-link{display:block;margin:0 0 15px;box-shadow:none}.give-addon-wrap .give-license-renewal-date .dashicons{opacity:.8;margin:0 0 0 3px;position:relative;top:-2px}.give-addon-wrap .give-license-activations-remaining-icon{border-radius:100%;height:20px;width:20px;display:inline-block;padding:1px;font-size:12px;line-height:20px;text-align:center;font-weight:700;margin:0 0 0 2px}.give-addon-wrap .give-plugin__info{padding:6px 9px}.give-addon-wrap .give-plugin__status{border:none;padding:0 5px;line-height:20px!important}.give-addon-info-wrap{margin:30px;padding:20px;background:#f4f4f4;border:1px solid #dbdbdb;color:#333}.give-addon-info-wrap .give-addon-info-left{float:right}.give-addon-info-wrap .give-addon-name{font-weight:700;font-size:14px}.give-addon-info-wrap .give-addon-version{font-size:11px;margin:0 20px 0 0}.give-addon-info-wrap .give-addon-info-right{float:left}.give-addon-info-wrap .give-addon-info-right .give-button{margin:-5px 0 0;position:relative;top:2px}.give-addon-info-wrap .give-addon-info-right .give-button .dashicons{font-size:14px;width:14px;height:14px;margin-left:3px;margin-top:5px}.give-addon-info-wrap .give-addon-activation-status{border-radius:4px;color:#fff;background:#777;padding:3px 8px;margin:0 0 0 15px;font-size:11px}.give-addon-info-wrap .give-addon-activation-status__activated{background:#7ad03a;text-shadow:0 0 1px #4b8420}.give-addon-info-wrap .give-addon-view-changelog{margin:0 0 0 15px;font-size:12px}.give-filters{clear:both;background:#f5f5f5;border:1px solid #dfdfdf;padding:12px 12px 0}.give-filters .give-donation-forms-filter .chosen-single{height:28px;line-height:28px}.give-filters .chosen-container-single .chosen-single div b{background-position:100% 4px}.give-filters .chosen-container-active.chosen-with-drop .chosen-single div b{background-position:-18px 6px}.give-filters #give-payment-form-filter,.give-filters #give_donation_forms_filter{display:inline-block;width:300px}@media screen and (max-width:782px){.give-filters #give-payment-form-filter,.give-filters #give_donation_forms_filter{width:100%}}.give-filters #give-payment-date-filters label,.give-filters #give-payment-form-filter label{vertical-align:initial}.give-filters #give-payment-date-filters label.give-donation-forms-filter-label,.give-filters #give-payment-form-filter label.give-donation-forms-filter-label{vertical-align:middle}.give-filters #give_donation_forms_filter{width:255px}@media screen and (max-width:782px){.give-filters #give_donation_forms_filter{width:100%;max-width:100%}}.give-filters:after{content:"";display:table;clear:both}.give-filter{display:block;margin-bottom:12px;width:100%}.give-filter:after{content:"";display:table;clear:both}.give-filter label{display:block;margin-left:4px}.give-filter input{margin:0}.give-filter input[type=text]{height:28px;width:100%}.give-filter input[type=search],.give-filter input[type=text]{height:28px}.give-filter .button{height:28px;line-height:26px;margin:0;padding:0 10px 1px}.give-filter select{width:100%}@media screen and (min-width:783px){.give-filter{float:right;margin-left:18px;width:auto}.give-filter label{display:inline-block}.give-filter input[type=text]{display:inline-block;width:144px}}.give-filter-search input[type=search]#give-payments-search-input{display:block;float:right;width:205px;max-width:100%}.give-filter-search input[type=submit]{display:block;float:left;width:30%}@media screen and (min-width:783px){.give-filter-search input[type=search]{display:inline-block;margin-left:4px;width:auto}.give-filter-search input[type=submit]{display:inline-block;width:auto}}@media screen and (min-width:600px){.give-filter-half{float:right;width:49%}.give-filter-half:last-child{float:left}}@media screen and (min-width:783px){.give-filter-half{width:auto}.give-filter-half:last-child{float:right}.give-filter-half input[type=text]{width:96px}}.give-clear-filters-button{margin-right:8px}.give-submit-wrap{clear:both;background:#f5f5f5;border:1px solid #dfdfdf;margin:8px 0;padding:12px;font-size:13px;line-height:2.1em}#give-payment-filters ul.subsubsub{margin-bottom:8px}#give-payments-advanced-filter ul.subsubsub{margin-bottom:12px}#give-payments-filter .tablenav.top{float:none}#give-payments-filter .tablenav.top .bulkactions{margin-top:1px;padding-top:0}#give-payments-filter .give-email-column-value{font-size:14px;font-weight:700}#give-payments-filter #the-list .check-column input{margin-top:1px}#give-payments-filter .column-details{width:50px}#give-payments-filter .column-amount{width:120px}tr.status-refunded td{background:#cecece;border-top-color:#ccc}.wp-list-table.forms th#date{width:140px}.give-mobile-link{line-height:32px;vertical-align:middle}.give-mobile-link img{max-width:80%;height:auto;float:right}.give-donation-status>span{display:inline-block;width:12px;height:12px;position:relative;top:1px;margin:0;padding:0;border-radius:50%;background:#888;line-height:16px}.give-donation-status.status-pending>span{background-color:#ffba00}.give-donation-status.status-complete>span,.give-donation-status.status-publish>span{background-color:#7ad03a}.give-donation-status.status-refunded>span{background-color:#777}.give-donation-status.status-failed>span{background-color:#a00}.give-donation-status.status-abandoned>span{background-color:#333}.give-donation-status.status-revoked>span{background-color:#d9534f}.give-donation-status.status-give_subscription>span,.give-donation-status.status-renewal>span,.give-donation-status.status-subscription>span{background-color:#5bc0de}#test-payment-label{padding:.2em .4em .3em;font-size:11px;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em;background-color:#ffba00;margin:0 15px;vertical-align:middle}#test-payment-label:hover{color:#fff;text-decoration:none}#give-payments-filter .give-payment-id{padding:.2em .4em .3em;font-size:11px;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em;font-weight:400}#give-payments-filter .give-payment-id:hover{color:#fff;text-decoration:none}#give-payments-filter .column-details{padding-left:30px}#give-payments-filter .give-donation-status{display:inline-block}#give-order-update .give-donation-status{display:inline-block;float:none;margin:0 10px;position:relative;top:3px}#give-order-update .give-order-top{border-bottom:1px solid #eee;overflow-x:auto;white-space:nowrap;width:100%}#give-order-update .give-order-top h3.hndle{float:right;border:none;display:inline-block}#give-order-update .give-order-top .delete-donation{display:inline-block;float:left}#give-order-update .give-order-top .delete-donation a{width:18px;height:16px;display:block;margin:11px 15px;content:"\f182";font-size:18px;color:#b5b5b5}#give-order-update .give-order-top .delete-donation a:focus,#give-order-update .give-order-top .delete-donation a:hover{color:red;box-shadow:none}.column-donation_form .donation-level-text-wrap{font-style:italic;display:block}@media handheld,only screen and (max-width:640px){.wp-list-table.forms th{width:auto!important}}.download_page_give-payment-history .ui-dialog .ui-dialog-titlebar-close span{margin-right:-8px;margin-top:-8px}.give-admin-box .label{font-weight:600}.give-admin-box-inside{margin:0;padding:3px 10px;clear:both;border-bottom:1px solid #eee;word-break:break-word}.give-admin-box-inside .strong{font-weight:600}.give-admin-box .right{float:left}#give-order-details .inside,#give-order-update .inside{margin:0;padding:0}#give-order-update input.give_datepicker{width:180px}#give-order-update input[type=number].give-payment-time-hour,#give-order-update input[type=number].give-payment-time-min{width:50px}.give-admin-box-inside:last-child{border-bottom:0}#give-edit-order-form .data-payment-key{word-break:break-all}.give-order-update-box #major-publishing-actions .button-secondary{margin-left:10px}#give-donation-overview th{text-align:right}#give-donation-overview .give-select-chosen{width:97%}#give-edit-order-form .row{margin-top:10px}#give-donation-overview ul,#give-donor-details .order-data-address input,#give-donor-details .order-data-column p.data input,#give-edit-order-form .column input,#give-order-address-country-wrap select{clear:both;display:block}.give-order-data input.small-text{margin:0}#give-order-update span.label{display:inline;width:50px}.give-order-update-box .button-primary{margin-left:0}#give-edit-order-form .column .description{padding-left:10px}#give-donation-overview .inside>ul>li,#give-donation-overview .row>ul>li,#give-edit-order-form .column{display:inline-block;position:relative;vertical-align:top}#give-donation-overview ul{font-size:0}#give-donation-overview ul li{font-size:13px}#give-donation-overview ul li.actions{text-align:left;min-width:200px}#give-donation-overview ul li.remove{text-align:left}#give-donation-overview ul .row{padding:12px;border-bottom:1px solid #eee}#give-order-data .data span{color:#666;font-weight:600}input.give-price-field{width:80px;padding:3px 5px}.give_forms_page_give-payment-history.js .postbox .hndle{cursor:default}#give-payment-notes textarea{min-height:150px}#give-payment-notes #give-add-payment-note{margin:6px 0 15px}#give_comment{min-height:150px}#give-billing-details .column>div{margin:0 0 10px}#give-billing-details label{display:block;margin-bottom:5px}#give-billing-details .column-container{padding:5px 0 10px}#give-billing-details input[type=text]{width:98%}#give-billing-details .chosen-container{width:98%!important}@media screen and (min-width:1200px){#give-edit-order-form .column{width:33%}#give-order-address .column{width:49%}#give-donation-overview.columns-4 li.actions{width:25%;margin-top:0;margin-left:0}}@media screen and (max-width:1199px){#give-edit-order-form .column{width:49%}}@media screen and (max-width:782px){.order-data-column input[type=email]{padding:6px 10px}}#give-donation-overview .inside,#give-donor-details .inside{margin-top:0}.give_forms_page_give-payment-history #give-dashboard-widgets-wrap #side-sortables{padding-top:0}.give-select-chosen .spinner{position:absolute;left:5px;top:2px;z-index:999}.give-select-chosen-ajax .spinner{visibility:visible}.give-select-chosen-ajax.chosen-container-single .chosen-search input[type=text],.give-select-chosen-ajax .chosen-search input[type=text]{background-image:none!important}.give-dashboard-widget .give-dashboard-today{text-align:center}.give-dashboard-widget .give-dashboard-today .give-dashboard-date-today{margin:10px 0 0;padding:0}.give-dashboard-widget .give-dashboard-today .give-dashboard-happy-day{padding:3px;margin:0}.give-dashboard-widget .give-dashboard-today .give-dashboard-today-earnings{font-size:42px;color:#4ead61;font-weight:700;margin:15px 0 0;line-height:1}.give-dashboard-widget .give-dashboard-today .give-donations-today{font-size:18px;font-weight:700;margin:0 0 30px;padding:4px 0 1px}.give-dashboard-widget .give-dashboard-today .give-last-seven{font-size:14px;font-weight:700;padding:0;margin:0 0 30px}.give-dashboard-widget .give-table-stats{width:100%;text-align:center;margin:0;table-layout:fixed;border-top:1px solid #ececec;border-spacing:0}.give-dashboard-widget .give-table-stats .give-dashboard-stat-total,.give-dashboard-widget .give-table-stats .give-dashboard-stat-total-label{padding:0;margin:0}.give-dashboard-widget .give-table-stats .give-dashboard-stat-total{color:#4ead61;font-weight:700;font-size:16px}#give_dashboard_sales>.inside{padding:0}#give_dashboard_sales .give-table-stats td{padding:10px 0}#give_dashboard_sales .give-table-stats td:first-of-type{border-left:1px solid #ececec}#give_dashboard_sales .give-table-stats tr#give-table-stats-tr-1 td{border-bottom:1px solid #ececec}#dashboard_right_now .give-forms-count:before{font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:18px;width:18px;height:18px;content:"\e800"}.give-range_slider_field{margin-top:.8rem}.give_forms_page_give-donors .wp-heading-inline+.notice:first-of-type{margin-top:25px}.give_forms_page_give-donors .give-nav-tab-wrapper{margin:10px -20px 20px}.give_forms_page_give-donors #give-donors-filter{position:relative}.give_forms_page_give-donors #give-donors-filter p.search-box{margin:0}.give_forms_page_give-donors #give-donors-search-filter{display:block;overflow:hidden}.give_forms_page_give-donors #give-donor-card-wrapper{margin-right:-1px;z-index:2;min-height:200px}.give_forms_page_give-donors #give-donor-card-wrapper input{font-weight:400}.give_forms_page_give-donors #give-donor-card-wrapper .donor-section{border-bottom:1px solid #eee;margin-bottom:10px}.give_forms_page_give-donors #give-donor-card-wrapper .donor-section .give-donor-search-box{margin-left:25px;width:auto;display:inline-block;float:right}.give_forms_page_give-donors #give-donor-card-wrapper .donor-section table{margin-bottom:0}.give_forms_page_give-donors #give-donor-card-wrapper>div:first-child{padding-top:20px}.give_forms_page_give-donors #give-donor-card-wrapper>div:last-child{padding-bottom:20px;border:none}.give_forms_page_give-donors #give-donor-card-wrapper .avatar-wrap{padding:0 0 15px 15px;text-align:center;float:right}.give_forms_page_give-donors #give-donor-card-wrapper .avatar-wrap img{border-radius:50%}.give_forms_page_give-donors #give-donor-card-wrapper a.delete{text-decoration:none;color:red;margin-left:5px}.give_forms_page_give-donors #give-donor-card-wrapper .donor-bio-header .donor-since{margin:10px 0;font-size:16px}.give_forms_page_give-donors #give-donor-card-wrapper .donor-bio-header .donor-id{display:inline-block;font-size:24px;font-weight:600;margin-left:10px}.give_forms_page_give-donors #give-donor-card-wrapper .donor-bio-header .donor-name-wrap{display:inline-block}.give_forms_page_give-donors #give-donor-card-wrapper .donor-bio-header .donor-edit-link{margin-bottom:15px}.give_forms_page_give-donors #give-donor-filters .give-donor-search-box{display:inline-block;float:right;margin-left:18px}.give_forms_page_give-donors #give-donor-filters .give-donor-search-box input#give-donors-search-input{width:205px;max-width:100%}.give_forms_page_give-donors #give-donor-filters label{vertical-align:initial}.give_forms_page_give-donors #give-donor-filters label.give-donation-forms-filter-label{vertical-align:middle}.give_forms_page_give-donors .donor-main-wrapper{clear:both;margin:0 0 20px}@media (max-width:655px){.give_forms_page_give-donors .donor-main-wrapper{width:100%}}.give_forms_page_give-donors .donor-main-wrapper table{margin:0}.give_forms_page_give-donors .donor-main-wrapper input[type=email],.give_forms_page_give-donors .donor-main-wrapper input[type=number],.give_forms_page_give-donors .donor-main-wrapper input[type=text]{width:200px}.give_forms_page_give-donors #donor-summary{padding:0 20px}.give_forms_page_give-donors #donor-summary:after{font-family:dashicons;content:"\f110";position:absolute;top:10px;left:10px;font-size:100px;color:#f0f0f0;z-index:0}.give_forms_page_give-donors #give-donor-card-wrapper .donor-address-wrapper{width:202px}.give_forms_page_give-donors #give-donor-card-wrapper .donor-address-wrapper span[data-key=line2]{display:table;clear:both}.give_forms_page_give-donors #give-donor-card-wrapper .donor-address-wrapper select{width:200px}.give_forms_page_give-donors #give-donor-card-wrapper .donor-info{min-height:185px}.give_forms_page_give-donors #give-donor-card-wrapper .info-wrapper{min-height:125px}.give_forms_page_give-donors .donor-info .donor-name{font-size:24px;font-weight:600}.give_forms_page_give-donors #disconnect-donor,.give_forms_page_give-donors #view-user-profile{font-size:12px;font-weight:400;text-decoration:none}.give_forms_page_give-donors #donor-edit-actions{text-align:center;margin-bottom:20px;line-height:28px}.give_forms_page_give-donors #donor-edit-actions .button-secondary{margin-left:10px}.give_forms_page_give-donors #give-donor-card-wrapper .edit-item{display:none}.give_forms_page_give-donors #give-donor-card-wrapper .give_user_search_results{right:1px;top:16px}.give_forms_page_give-donors #give-donor-card-wrapper .give_user_search_results ul{width:200px}.give_forms_page_give-donors #donor-stats-wrapper{margin:0 auto;text-align:center;padding:15px}.give_forms_page_give-donors #donor-stats-wrapper ul{margin:0;padding:0;overflow:hidden}.give_forms_page_give-donors #donor-stats-wrapper ul li{width:50%;float:right;line-height:22px;font-size:14px;margin:0}.give_forms_page_give-donors #donor-stats-wrapper a{text-decoration:none}.give_forms_page_give-donors #donor-stats-wrapper .dashicons{color:#888}.give_forms_page_give-donors #donor-tables-wrapper table{width:100%;text-align:center}.give_forms_page_give-donors #donor-tables-wrapper th{text-align:center}.give_forms_page_give-donors #donor-tables-wrapper .donations tr>td:first-child,.give_forms_page_give-donors #donor-tables-wrapper .donations tr>th:first-child,.give_forms_page_give-donors #donor-tables-wrapper .emails tr>td:first-child,.give_forms_page_give-donors #donor-tables-wrapper .emails tr>th:first-child{text-align:right}.give_forms_page_give-donors #donor-tables-wrapper .donations tr>td:only-child{text-align:center}.give_forms_page_give-donors #donor-notes-wrapper{min-height:50px}.give_forms_page_give-donors .donor-notes-header img,.give_forms_page_give-donors .donor-notes-header span{font-weight:600;line-height:30px;vertical-align:middle}.give_forms_page_give-donors .donor-note-input{width:100%;margin-bottom:5px}.give_forms_page_give-donors #give-donor-notes div:nth-of-type(2n){background-color:#f9f9f9}.give_forms_page_give-donors #give-donor-notes .donor-note-wrapper{border-bottom:1px solid #f9f9f9;min-height:38px;padding:0}.give_forms_page_give-donors #give-donor-notes .donor-note-wrapper .note-content-wrap{padding:10px 12px;line-height:20px;font-size:14px}.give_forms_page_give-donors #give-donor-notes .give-no-donor-notes{text-align:center;padding:20px}.give_forms_page_give-donors .donor-note-wrapper span{display:block}.give_forms_page_give-donors .delete-donor{text-align:center}.give_forms_page_give-donors .give-lock-block{margin-right:-25px;text-decoration:none;font-size:14px;margin-left:3px}.give_forms_page_give-donors .give-lock-block i{color:#000;font-size:14px}.give_forms_page_give-donors #donor-address-wrapper .give-no-address-message{margin:.5rem 1%;line-height:3.4em}.give_forms_page_give-donors #donor-address-wrapper .give-donor-addresses .inside{padding-bottom:0}.give_forms_page_give-donors #donor-address-wrapper .add-new-address{margin:.5rem 1%!important}.give_forms_page_give-donors #donor-address-wrapper .add-new-address-form-hidden{position:absolute;left:13px;right:13px;top:0;visibility:hidden}.give_forms_page_give-donors #donor-address-wrapper .all-address .address{min-height:146px;border:1px solid #dad9d9;padding:9px;border-radius:5px;background-color:#fff}.give_forms_page_give-donors #donor-address-wrapper .all-address .address .address-number-label{color:grey;cursor:default}.give_forms_page_give-donors #donor-address-wrapper .all-address .address a{text-decoration:none}.give_forms_page_give-donors .comments td:nth-child(3n){text-align:right}.give_forms_page_give-donors .give-donor-admin-avatar{width:40px;height:40px;border-radius:50%;border:1px solid #e5e5e5;float:right;vertical-align:middle;margin-left:10px;line-height:40px;text-align:center}.give_forms_page_give-donors .give-donor-admin-avatar img{border-radius:50%;width:40px;height:40px}.give_forms_page_give-donors .give-donor-name-text{font-weight:600;font-size:14px}.give_forms_page_give-donors .give-donor-id{color:#555}.give_forms_page_give-donors .give-donor-name:focus{box-shadow:none;outline:none}.give_forms_page_give-donors #donor-avatar .give-donor-admin-avatar,.give_forms_page_give-donors #donor-avatar img{width:96px;height:96px;line-height:96px;margin-left:0;font-size:36px}@media screen and (max-width:782px){#wp-content-media-buttons a.give-thickbox{padding:6px 14px;line-height:normal;font-size:14px;height:auto}.wp-media-buttons span#give-media-button{margin-top:0!important;margin-right:2px!important}}.mce-primary.mce-give-primary button{padding-left:10px;padding-right:10px}.wp-core-ui .give-admin-button{padding-right:7px;padding-left:7px}.give-admin-button-icon{display:inline-block;width:18px;height:18px;vertical-align:text-top;margin:0 2px}.give-admin-button-icon:before{font:400 18px/1 dashicons;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.give-admin-button-icon-update:before{content:"\f463"}.give-status-table{margin-bottom:1em}.give-status-table h2{font-size:14px;margin:0}.give-status-table tr:nth-child(2n) td,.give-status-table tr:nth-child(2n) th{background:#fcfcfc}.give-status-table th{font-weight:700;padding:9px}.give-status-table td:first-child{width:33%}.give-status-table td.help{width:1em}.give-status-table td{padding:9px;font-size:1.1em}.give-status-table td mark{background:transparent none}.give-status-table td mark.yes{color:#7ad03a}.give-status-table td mark.no{color:#999}.give-status-table td mark.error{color:#a00}.give-status-table td ul{margin:0}.wrap div.give-debug-report-wrapper{margin-bottom:5px}.wrap div.give-debug-report-wrapper p{font-size:18px;margin:1em 0 .7em;padding:0}.wrap div.give-debug-report-wrapper .give-debug-report-actions{margin:0 0 1.7em}.wrap div.give-debug-report-wrapper .give-debug-report-actions .js-give-debug-report-button{margin-left:10px}.wrap div.give-debug-report-wrapper .give-debug-report-actions .dashicons{font-size:16px;position:relative;top:4px;right:-2px}.give-debug-report{display:none;margin:10px 0;padding:0;position:relative}.give-debug-report textarea{font-family:monospace;width:100%;margin:0;height:300px;padding:20px;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;resize:none;font-size:12px;line-height:20px;outline:0}.give-progress{height:15px;width:95%;border-radius:4px;overflow:hidden;background-color:#f5f5f5}.give-progress>div{height:100%;width:0}.admin-color-fresh .give-progress div,.give-progress div{background:#0073aa}.admin-color-light .give-progress div{background:#888}.admin-color-blue .give-progress div{background:#096484}.admin-color-coffee .give-progress div{background:#c7a589}.admin-color-ectoplasm .give-progress div{background:#a3b745}.admin-color-midnight .give-progress div{background:#e14d43}.admin-color-sunrise .give-progress div{background:#dd823b}.give-spinner-wrapper{position:absolute;right:0;left:0;bottom:0;top:0;background:hsla(0,0%,96.1%,.57);z-index:1;display:none}.give-spinner-wrapper.is-active{display:inline-block}.give-spinner-wrapper .aligncenter{position:absolute;top:50%;right:50%;margin:10px 0 0 10px}.give-spinner.spinner.is-active{margin:0 2px 0 0;float:none}ul.give-radio-inline input,ul.give-radio-inline li{display:inline-block!important}.chosen-container a{transition:none}.give-width-25em{width:25em}.give-spinner-wrap{position:relative}.give-spinner-wrap .spinner{float:none;margin-top:0;margin-left:0}.give-update-panel-content p{font-size:16px}#give-updates .give-update-panel-content{margin:0 0 30px}#give-updates .give-update-panel-content p{font-size:17px;font-style:italic;margin:0}#give-updates .dashicons-no-alt{color:red}#give-updates .dashicons-yes{color:green}#give-updates #give-db-updates .spinner{margin-top:0}#give-updates #give-updates-content{max-width:1200px}#give-updates .give-update-paused-text-p{margin:0 0 0 20px;line-height:30px;font-style:italic;font-size:14px}body.give_forms_page_give-updates .give-run-update-containt .give-run-update-button{margin-left:10px}.give-blank-slate{background:#fff;border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04);margin:0 auto;padding:40px;text-align:center}.give-blank-slate :last-child{margin-bottom:0}.give-blank-slate__cta,.give-blank-slate__heading,.give-blank-slate__help,.give-blank-slate__message{margin:0 0 10px}.give-blank-slate__image{display:block;height:80px!important;margin:0 auto 10px;width:auto}.give-blank-slate__select{margin-bottom:20px}.give-blank-slate__help{color:#666;font-style:italic}.give-blank-slate__help a{display:inline-block;text-decoration:underline}.give-blank-slate a.give-blank-slate__cta{display:inline-block;font-size:1.2em;height:auto;margin:0 0 10px;padding:.75em 1.5em}.chosen-container-single .chosen-single{background:#fff;height:30px;line-height:30px;border:1px solid #7e8993;box-shadow:none}.chosen-container-single .chosen-single span{font-size:14px}.chosen-container-single .chosen-single div b,.chosen-container-single.chosen-with-drop .chosen-single div b{background-position-y:4px}.chosen-container-active.chosen-with-drop .chosen-single{background:#fff}.chosen-container .chosen-results li.highlighted{background:#3875d7;color:#fff}.chosen-container-multi .chosen-choices{border:1px solid #aaa;background-image:none}.chosen-container-multi .chosen-choices li.search-choice{background-image:none}.give-tools-setting-page-import h1.handle{padding:15px 0 0}.give-tools-setting-page-import .give-progress-steps{width:100%;padding:0 0 24px;margin-right:0;list-style:none outside;overflow:hidden;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex}.give-tools-setting-page-import .give-progress-steps li{width:25%;float:right;padding:0 0 1.2em;margin:0;text-align:center;position:relative;border-bottom:4px solid #ccc;line-height:1.4em}.give-tools-setting-page-import .give-progress-steps li.active{border-color:#4ead61;color:#4ead61}.give-tools-setting-page-import .give-progress-steps li.active:before{border-color:#4ead61;color:#4ead61;background:#4ead61}.give-tools-setting-page-import .give-progress-steps li:before{content:"";border:4px solid #ccc;border-radius:100%;width:10px;height:10px;position:absolute;bottom:0;right:50%;margin-right:-6px;margin-bottom:-10px;background:#fff}.give-tools-setting-page-import .step-4 h2{text-align:center;font-size:20px!important}.give-tools-setting-page-import .step-4 p{text-align:center}.give-tools-setting-page-import .button-secondary.step-4,.give-tools-setting-page-import .give-image-thumb{display:none}.give-tools-setting-page-import h2#give-import-title{background:#f3f3f3;font-size:15px;font-weight:600;margin:-8px -22px 11px;padding:12px 22px}.give-tools-setting-page-import table.step-2 h2#give-import-title{font-size:small;font-weight:inherit}.give-tools-setting-page-import table.step-2 .give-import-donation-required-fields-title{font-size:18px;font-weight:600;margin:0}.give-tools-setting-page-import table.step-2 .give-import-donation-required-fields{white-space:nowrap;overflow:hidden}.give-tools-setting-page-import table.step-2 .give-import-donation-required-fields li{display:inline-block;margin:0 0 0 10%}.give-tools-setting-page-import table.step-2 .give-import-donation-required-fields li span.give-import-donation-required-symbol{border-radius:1em;vertical-align:middle;padding:2px;background:#46b450;color:#fff}.give-tools-setting-page-import table.step-2 .give-import-donation-required-fields li span.dashicons-no-alt{background:#bbb}.give-tools-setting-page-import .give-progress{margin-top:7px}.give-import-core-settings .give-progress-steps li{width:33.33%}.give-import-core-settings .step-3 h2{text-align:center;font-size:20px!important}.give-import-core-settings .step-3 p{text-align:center}form.give-import-form table.widefat{border:none}.wrap .give-importer-h1{margin:0;padding:20px 0}.give-tools-setting-page #give-export_donations-form table{padding-right:10px}.give-tools-setting-page #give-export_donations-form table tbody h2{padding:8px 0 0}.give-tools-setting-page #give-export_donations-form table tbody td.row-title{width:30%;vertical-align:top}.give-tools-setting-page #give-export_donations-form table tbody td ul.give-export-option-ul{margin-top:5px}.give-tools-setting-page #give-export_donations-form table tbody p.give-field-description{display:table;width:100%}.give-tools-setting-page #give-export_donations-form table tbody .add-notices{margin-top:15px}.give-tools-setting-page #give-export_donations-form table tbody .add-notices .give-progress{margin-top:7px}.give-tools-setting-page #give-export_donations-form table tbody .chosen-container-multi .chosen-choices{min-height:30px}.give-tools-setting-page #give-export_donations-form table tbody .chosen-container-multi .chosen-choices li{margin:4px 0 4px 4px}.give-tools-setting-page #give-export_donations-form .give-export-option{display:flex;flex-flow:row wrap;border-top:1px solid #e5e5e5;border-right:1px solid #e5e5e5}.give-tools-setting-page #give-export_donations-form .give-export-option ul{margin-bottom:1rem}.give-tools-setting-page #give-export_donations-form .give-export-option ul li{position:relative;margin-bottom:.7rem;padding:0 1rem}.give-tools-setting-page #give-export_donations-form .give-export-option ul li label{display:block;padding-right:22px}.give-tools-setting-page #give-export_donations-form .give-export-option ul li label input{position:absolute;top:6px;right:15px}.give-tools-setting-page #give-export_donations-form .give-export-option ul .give-export-option-label{font-size:15px;font-weight:500;border-bottom:1px solid #e5e5e5;margin-bottom:1rem;padding:1rem}.give-tools-setting-page #give-export_donations-form .give-export-option>li{border-left:1px solid #e5e5e5;border-bottom:1px solid #e5e5e5;width:33%;margin-bottom:0}.give-tools-setting-page .give-export-donors .give-progress{margin-top:7px}#give-export-donations .give_forms_categories,#give-export-donations .give_forms_tags{min-width:250px;margin:0 0 10px;display:block}#give-export-donations .give_forms_categories input,#give-export-donations .give_forms_tags input{color:#999}#give-export-donations div.chosen-container ul.chosen-choices{border:1px solid #ddd}#give-export-donations div.chosen-container ul.chosen-choices input.chosen-search-input{border:1px solid #ddd;height:20px}#give-export-donations select{vertical-align:inherit;margin:0;height:26px;line-height:26px;border:1px solid #ddd}@media only screen and (max-width:1080px){.give-tools-setting-page #give-export_donations-form .give-export-option>li{width:49.5%}}@media only screen and (max-width:782px){.give-tools-setting-page #give-export_donations-form .give-export-option>li{width:49.5%}.give-tools-setting-page #give-export_donations-form .give-export-option ul li label{padding-right:32px}.give-tools-setting-page #give-export_donations-form .give-export-option ul li label input{top:0}}.give-admin-progress-bar{height:8px;position:relative;background:#eee;border-radius:25px;overflow:hidden;margin:5px 0 2px}.give-admin-progress-bar>span{display:block;height:100%;border-top-left-radius:8px;border-bottom-left-radius:8px;border-top-right-radius:20px;border-bottom-right-radius:20px;background-color:#2bc253;position:relative;overflow:hidden}.give-admin-goal-achieved>.dashicons{color:#ffba00;font-size:13px;height:16px;width:13px;line-height:18px}#give-form-goal-stats .inside{margin:0;padding:15px;text-align:center}#give-form-goal-stats .give-admin-progress-bar{margin-bottom:10px}#give-form-goal-stats .give-admin-goal-achieved{display:block;margin-top:6px}.give-nav-tab-wrapper{background:#ddd;border:none!important;padding-top:0;overflow:hidden}.give-nav-tab-wrapper .nav-tab{border:none;margin:0;padding:15px 30px;outline:none;box-shadow:none;background:#ddd}.give-nav-tab-wrapper .nav-tab:hover{background:#ebebeb}.give-nav-tab-wrapper .nav-tab.nav-tab-active{background:#f1f1f1;box-shadow:inset 0 4px 0 #66bb6a;margin:0}@media screen and (max-width:600px){.give-nav-tab-wrapper{position:relative;padding-top:0!important}.give-nav-tab-wrapper>a{width:100%;box-sizing:border-box;margin:0;background-color:#fff;border:1px solid #ccc}.give-nav-tab-wrapper>a:hover{border-bottom:1px solid #ccc}.give-nav-tab-wrapper div.give-sub-nav-tab-wrapper{position:absolute;top:0;left:0}.give-nav-tab-wrapper div.give-sub-nav-tab-wrapper #give-show-sub-nav{height:28px;width:30px;border-radius:0;margin:0}.give-nav-tab-wrapper div.give-sub-nav-tab-wrapper #give-show-sub-nav>span.dashicons{margin:6px auto 0;display:block}.give-nav-tab-wrapper div.give-sub-nav-tab-wrapper nav.give-sub-nav-tab{top:35px;left:0;right:auto}.give-nav-tab-wrapper div.give-sub-nav-tab-wrapper nav.give-sub-nav-tab a{background:#fff}.give-nav-tab-wrapper div.give-sub-nav-tab-wrapper nav.give-sub-nav-tab a:hover{background:#e5e5e5}.give-mobile-hidden{display:none}}.give-sub-nav-tab-wrapper{position:relative;z-index:999;float:right;display:none}.give-sub-nav-tab-wrapper nav.give-sub-nav-tab{border:1px solid #f1f1f1;border-bottom:none;position:absolute;top:37px;left:0}.give-sub-nav-tab-wrapper nav.give-sub-nav-tab a{float:right;background:#fff;padding:8px 10px;clear:both;text-decoration:none;border-bottom:1px solid #f1f1f1;min-width:170px;color:#555;font-size:14px;font-weight:600}.give-sub-nav-tab-wrapper nav.give-sub-nav-tab a:hover{background:#ebebeb}#give-show-sub-nav{text-decoration:none;padding:3px 4px;border-bottom:1px solid #ccc;line-height:0;background:#fff;border-radius:4px;margin:15px 10px 0 0}#give-show-sub-nav>span.dashicons{font-size:16px;height:16px;width:16px}#give-show-sub-nav:active,#give-show-sub-nav:hover{outline:none;box-shadow:inset 0 0 4px #ddd}.give_forms_page_give-subscriptions .wp-header-end+.notice,.post-type-give_forms .wp-header-end+.notice{margin-top:11px}.give_forms_page_give-subscriptions #give-subscription-details-h1,.give_forms_page_give-subscriptions #give-subscription-list-h1,.give_forms_page_give-subscriptions .wp-heading-inline,.post-type-give_forms #give-subscription-details-h1,.post-type-give_forms #give-subscription-list-h1,.post-type-give_forms .wp-heading-inline{margin:0;padding:10px 0}.give_forms_page_give-subscriptions #give-subscription-details-h1:before,.give_forms_page_give-subscriptions #give-subscription-list-h1:before,.give_forms_page_give-subscriptions .wp-heading-inline:before,.post-type-give_forms #give-subscription-details-h1:before,.post-type-give_forms #give-subscription-list-h1:before,.post-type-give_forms .wp-heading-inline:before{background:url(../images/give-icon-full-circle.svg);width:30px;height:30px;content:" ";display:block;float:right;margin-left:12px}.give_forms_page_give-subscriptions #wpcontent,.post-type-give_forms #wpcontent{padding:0}.give_forms_page_give-subscriptions #wpbody,.post-type-give_forms #wpbody{color:#000;padding-right:20px;position:relative}.give_forms_page_give-subscriptions #wpbody:after,.post-type-give_forms #wpbody:after{content:"";background-color:#fff;border-bottom:1px solid #dbdbdb;height:72px;right:0;top:46px;position:absolute;width:100%;z-index:-1}@media (min-width:601px){.give_forms_page_give-subscriptions #wpbody:after,.post-type-give_forms #wpbody:after{top:0}}.give_forms_page_give-subscriptions #wpbody .wrap:not(.give-settings-page),.post-type-give_forms #wpbody .wrap:not(.give-settings-page){margin-top:12px}.give_forms_page_give-subscriptions #wpbody .wp-header-end,.post-type-give_forms #wpbody .wp-header-end{margin-top:6px}@media (min-width:601px){.give_forms_page_give-subscriptions #wpbody .wp-header-end,.post-type-give_forms #wpbody .wp-header-end{margin-top:15px}}@media (min-width:601px){.give_forms_page_give-subscriptions.give_forms_page_give-donors #wpbody .wp-header-end,.give_forms_page_give-subscriptions.give_forms_page_give-subscriptions #wpbody .wp-header-end,.post-type-give_forms.give_forms_page_give-donors #wpbody .wp-header-end,.post-type-give_forms.give_forms_page_give-subscriptions #wpbody .wp-header-end{margin-top:25px}}.give_forms_page_give-subscriptions #wpbody #screen-meta-links,.post-type-give_forms #wpbody #screen-meta-links{display:none}@media (min-width:783px){.give_forms_page_give-subscriptions #screen-meta,.post-type-give_forms #screen-meta{background-color:#fff;border:0;margin:0}.give_forms_page_give-subscriptions #screen-meta-links,.post-type-give_forms #screen-meta-links{position:absolute;top:0;left:0;z-index:1}}.give-subheader{background:#fff;margin:0 -22px 0 0;padding:12px 20px}.give-subheader .give-subheader-right-text{float:left;font-size:13px;line-height:22px;font-style:italic;color:#555;margin:0;padding:0}.give-subheader h1{float:right;font-size:15px;line-height:22px;color:#555;font-weight:600;margin:0;padding:0}@media (max-width:700px){.give-subheader{text-align:center}.give-subheader .give-subheader-right-text,.give-subheader h1{float:none}}
14
  * To view and modify this theme, visit http://jqueryui.com/themeroller/?bgShadowXPos=&bgOverlayXPos=&bgErrorXPos=&bgHighlightXPos=&bgContentXPos=&bgHeaderXPos=&bgActiveXPos=&bgHoverXPos=&bgDefaultXPos=&bgShadowYPos=&bgOverlayYPos=&bgErrorYPos=&bgHighlightYPos=&bgContentYPos=&bgHeaderYPos=&bgActiveYPos=&bgHoverYPos=&bgDefaultYPos=&bgShadowRepeat=&bgOverlayRepeat=&bgErrorRepeat=&bgHighlightRepeat=&bgContentRepeat=&bgHeaderRepeat=&bgActiveRepeat=&bgHoverRepeat=&bgDefaultRepeat=&iconsHover=url(%22images%2Fui-icons_555555_256x240.png%22)&iconsHighlight=url(%22images%2Fui-icons_777620_256x240.png%22)&iconsHeader=url(%22images%2Fui-icons_444444_256x240.png%22)&iconsError=url(%22images%2Fui-icons_cc0000_256x240.png%22)&iconsDefault=url(%22images%2Fui-icons_777777_256x240.png%22)&iconsContent=url(%22images%2Fui-icons_444444_256x240.png%22)&iconsActive=url(%22images%2Fui-icons_ffffff_256x240.png%22)&bgImgUrlShadow=&bgImgUrlOverlay=&bgImgUrlHover=&bgImgUrlHighlight=&bgImgUrlHeader=&bgImgUrlError=&bgImgUrlDefault=&bgImgUrlContent=&bgImgUrlActive=&opacityFilterShadow=Alpha(Opacity%3D30)&opacityFilterOverlay=Alpha(Opacity%3D30)&opacityShadowPerc=30&opacityOverlayPerc=30&iconColorHover=%23555555&iconColorHighlight=%23777620&iconColorHeader=%23444444&iconColorError=%23cc0000&iconColorDefault=%23777777&iconColorContent=%23444444&iconColorActive=%23ffffff&bgImgOpacityShadow=0&bgImgOpacityOverlay=0&bgImgOpacityError=95&bgImgOpacityHighlight=55&bgImgOpacityContent=75&bgImgOpacityHeader=75&bgImgOpacityActive=65&bgImgOpacityHover=75&bgImgOpacityDefault=75&bgTextureShadow=flat&bgTextureOverlay=flat&bgTextureError=flat&bgTextureHighlight=flat&bgTextureContent=flat&bgTextureHeader=flat&bgTextureActive=flat&bgTextureHover=flat&bgTextureDefault=flat&cornerRadius=3px&fwDefault=normal&ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&cornerRadiusShadow=8px&thicknessShadow=5px&offsetLeftShadow=0px&offsetTopShadow=0px&opacityShadow=.3&bgColorShadow=%23666666&opacityOverlay=.3&bgColorOverlay=%23aaaaaa&fcError=%235f3f3f&borderColorError=%23f1a899&bgColorError=%23fddfdf&fcHighlight=%23777620&borderColorHighlight=%23dad55e&bgColorHighlight=%23fffa90&fcContent=%23333333&borderColorContent=%23dddddd&bgColorContent=%23ffffff&fcHeader=%23333333&borderColorHeader=%23dddddd&bgColorHeader=%23e9e9e9&fcActive=%23ffffff&borderColorActive=%23003eff&bgColorActive=%23007fff&fcHover=%232b2b2b&borderColorHover=%23cccccc&bgColorHover=%23ededed&fcDefault=%23454545&borderColorDefault=%23c5c5c5&bgColorDefault=%23f6f6f6
15
  * Copyright jQuery Foundation and other contributors; Licensed MIT */.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:after,.ui-helper-clearfix:before{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;right:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{right:50%;margin-right:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;right:0;width:100%;height:100%}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0;padding:.5em .7em .5em .5em;font-size:100%}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;right:0;cursor:default}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{margin:0;cursor:pointer;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-item-wrapper{position:relative;padding:3px .4em 3px 1em}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0}.ui-menu .ui-state-active,.ui-menu .ui-state-focus{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item-wrapper{padding-right:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;right:.2em;margin:auto 0}.ui-menu .ui-menu-icon{right:auto;left:0}.ui-button{padding:.4em 1em;display:inline-block;position:relative;line-height:normal;margin-left:.1em;cursor:pointer;vertical-align:middle;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:visible}.ui-button,.ui-button:active,.ui-button:hover,.ui-button:link,.ui-button:visited{text-decoration:none}.ui-button-icon-only{width:2em;box-sizing:border-box;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-button-icon-only{text-indent:0}.ui-button-icon-only .ui-icon{position:absolute;top:50%;right:50%;margin-top:-8px;margin-right:-8px}.ui-button.ui-icon-notext .ui-icon{padding:0;width:2.1em;height:2.1em;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-icon-notext .ui-icon{width:auto;height:auto;text-indent:0;white-space:normal;padding:.4em 1em}button.ui-button::-moz-focus-inner,input.ui-button::-moz-focus-inner{border:0;padding:0}.ui-controlgroup{vertical-align:middle;display:inline-block}.ui-controlgroup>.ui-controlgroup-item{float:right;margin-right:0;margin-left:0}.ui-controlgroup>.ui-controlgroup-item.ui-visual-focus,.ui-controlgroup>.ui-controlgroup-item:focus{z-index:9999}.ui-controlgroup-vertical>.ui-controlgroup-item{display:block;float:none;width:100%;margin-top:0;margin-bottom:0;text-align:right}.ui-controlgroup-vertical .ui-controlgroup-item{box-sizing:border-box}.ui-controlgroup .ui-controlgroup-label{padding:.4em 1em}.ui-controlgroup .ui-controlgroup-label span{font-size:80%}.ui-controlgroup-horizontal .ui-controlgroup-label+.ui-controlgroup-item{border-right:none}.ui-controlgroup-vertical .ui-controlgroup-label+.ui-controlgroup-item{border-top:none}.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content{border-left:none}.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content{border-bottom:none}.ui-controlgroup-vertical .ui-spinner-input{width:75%;width:calc(100% - 2.4em)}.ui-controlgroup-vertical .ui-spinner .ui-spinner-up{border-top-style:solid}.ui-checkboxradio-label .ui-icon-background{box-shadow:inset -1px 1px 1px #ccc;border-radius:.12em;border:none}.ui-checkboxradio-radio-label .ui-icon-background{width:16px;height:16px;border-radius:1em;overflow:visible;border:none}.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon{background-image:none;width:8px;height:8px;border-width:4px;border-style:solid}.ui-checkboxradio-disabled{pointer-events:none}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-next-hover,.ui-datepicker .ui-datepicker-prev-hover{top:1px}.ui-datepicker .ui-datepicker-prev{right:2px}.ui-datepicker .ui-datepicker-next{left:2px}.ui-datepicker .ui-datepicker-prev-hover{right:1px}.ui-datepicker .ui-datepicker-next-hover{left:1px}.ui-datepicker .ui-datepicker-next span,.ui-datepicker .ui-datepicker-prev span{display:block;position:absolute;right:50%;margin-right:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:700;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td a,.ui-datepicker td span{display:block;padding:.2em;text-align:left;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0;padding:0 .2em;border-right:0;border-left:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:left;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:right}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:right}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:right}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:ltr}.ui-datepicker-rtl .ui-datepicker-prev{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-next{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:left}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0;border-right-width:1px}.ui-datepicker .ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat;right:.5em;top:.3em}.ui-dialog{position:absolute;top:0;right:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:right;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;left:.3em;top:50%;width:20px;margin:-10px 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:right;border-width:1px 0 0;background-image:none;margin-top:.5em;padding:.3em .4em .5em 1em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:left}.ui-dialog .ui-dialog-buttonpane button{margin:.5em 0 .5em .4em;cursor:pointer}.ui-dialog .ui-resizable-n{height:2px;top:0}.ui-dialog .ui-resizable-e{width:2px;left:0}.ui-dialog .ui-resizable-s{height:2px;bottom:0}.ui-dialog .ui-resizable-w{width:2px;right:0}.ui-dialog .ui-resizable-ne,.ui-dialog .ui-resizable-nw,.ui-dialog .ui-resizable-se,.ui-dialog .ui-resizable-sw{width:7px;height:7px}.ui-dialog .ui-resizable-se{left:0;bottom:0}.ui-dialog .ui-resizable-sw{right:0;bottom:0}.ui-dialog .ui-resizable-ne{left:0;top:0}.ui-dialog .ui-resizable-nw{right:0;top:0}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-autohide .ui-resizable-handle,.ui-resizable-disabled .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;right:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;right:0}.ui-resizable-e{cursor:e-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-se{cursor:sw-resize;width:12px;height:12px;left:1px;bottom:1px}.ui-resizable-sw{cursor:se-resize;width:9px;height:9px;right:-5px;bottom:-5px}.ui-resizable-nw{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-resizable-ne{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-progressbar{height:2em;text-align:right;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");height:100%;filter:alpha(opacity=25);opacity:.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted #000}.ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;right:0;display:none}.ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:700;line-height:1.5;padding:2px .4em;margin:.5em 0 0;height:auto;border:0}.ui-selectmenu-open{display:block}.ui-selectmenu-text{display:block;margin-left:20px;overflow:hidden;text-overflow:ellipsis}.ui-selectmenu-button.ui-button{text-align:right;white-space:nowrap;width:14em}.ui-selectmenu-icon.ui-icon{float:left;margin-top:0}.ui-slider{position:relative;text-align:right}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default;-ms-touch-action:none;touch-action:none}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:100% 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-right:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{right:0}.ui-slider-horizontal .ui-slider-range-max{left:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{right:-.3em;margin-right:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{right:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:none;color:inherit;padding:.222em 0;vertical-align:middle;margin:.2em .4em .2em 2em}.ui-spinner-button{width:1.6em;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;left:0}.ui-spinner a.ui-spinner-button{border-top-style:none;border-bottom-style:none;border-left-style:none}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:right;position:relative;top:0;margin:1px 0 0 .2em;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:right;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px}body .ui-tooltip{border-width:2px}.ui-widget{font-family:Arial,Helvetica,sans-serif}.ui-widget,.ui-widget .ui-widget{font-size:1em}.ui-widget button,.ui-widget input,.ui-widget select,.ui-widget textarea{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget.ui-widget-content{border:1px solid #c5c5c5}.ui-widget-content{border:1px solid #ddd;background:#fff;color:#333}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #ddd;background:#e9e9e9;color:#333;font-weight:700}.ui-widget-header a{color:#333}.ui-button,.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default,html .ui-button.ui-state-disabled:active,html .ui-button.ui-state-disabled:hover{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:400;color:#454545}.ui-button,.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited,a.ui-button,a:link.ui-button,a:visited.ui-button{color:#454545;text-decoration:none}.ui-button:focus,.ui-button:hover,.ui-state-focus,.ui-state-hover,.ui-widget-content .ui-state-focus,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-focus,.ui-widget-header .ui-state-hover{border:1px solid #ccc;background:#ededed;font-weight:400;color:#2b2b2b}.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited,.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,a.ui-button:focus,a.ui-button:hover{color:#2b2b2b;text-decoration:none}.ui-visual-focus{box-shadow:0 0 3px 1px #5e9ed6}.ui-button.ui-state-active:hover,.ui-button:active,.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active,a.ui-button:active{border:1px solid #003eff;background:#007fff;font-weight:400;color:#fff}.ui-icon-background,.ui-state-active .ui-icon-background{border:#003eff;background-color:#fff}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#fff;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #dad55e;background:#fffa90;color:#777620}.ui-state-checked{border:1px solid #dad55e;background:#fffa90}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#777620}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #f1a899;background:#fddfdf;color:#5f3f3f}.ui-state-error-text,.ui-state-error a,.ui-widget-content .ui-state-error-text,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error-text,.ui-widget-header .ui-state-error a{color:#5f3f3f}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:700}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:400}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon,.ui-widget-header .ui-icon{background-image:url(../images/ui-icons_444444_256x240.png)}.ui-button:focus .ui-icon,.ui-button:hover .ui-icon,.ui-state-focus .ui-icon,.ui-state-hover .ui-icon{background-image:url(../images/ui-icons_555555_256x240.png)}.ui-button:active .ui-icon,.ui-state-active .ui-icon{background-image:url(../images/ui-icons_ffffff_256x240.png)}.ui-button .ui-state-highlight.ui-icon,.ui-state-highlight .ui-icon{background-image:url(../images/ui-icons_777620_256x240.png)}.ui-state-error-text .ui-icon,.ui-state-error .ui-icon{background-image:url(../images/ui-icons_cc0000_256x240.png)}.ui-button .ui-icon{background-image:url(../images/ui-icons_777777_256x240.png)}.ui-icon-blank{background-position:16px 16px}.ui-icon-caret-1-n{background-position:100% 0}.ui-icon-caret-1-ne{background-position:-16px 0}.ui-icon-caret-1-e{background-position:-32px 0}.ui-icon-caret-1-se{background-position:-48px 0}.ui-icon-caret-1-s{background-position:-65px 0}.ui-icon-caret-1-sw{background-position:-80px 0}.ui-icon-caret-1-w{background-position:-96px 0}.ui-icon-caret-1-nw{background-position:-112px 0}.ui-icon-caret-2-n-s{background-position:-128px 0}.ui-icon-caret-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:100% -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-65px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:100% -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-65px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:1px -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:100% -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:100% -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:100% -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:100% -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:100% -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:100% -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:100% -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-first,.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:100% -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:100% -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:100% -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:100% -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-left,.ui-corner-tl,.ui-corner-top{border-top-right-radius:3px}.ui-corner-all,.ui-corner-right,.ui-corner-top,.ui-corner-tr{border-top-left-radius:3px}.ui-corner-all,.ui-corner-bl,.ui-corner-bottom,.ui-corner-left{border-bottom-right-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-br,.ui-corner-right{border-bottom-left-radius:3px}.ui-widget-overlay{background:#aaa;opacity:.003;filter:Alpha(Opacity=0.3)}.ui-widget-shadow{-webkit-box-shadow:0 0 5px #666;box-shadow:0 0 5px #666}/*! Hint.css - v2.5.0 - 2017-04-23
16
  * http://kushagragour.in/lab/hint/
17
+ * Copyright (c) 2017 Kushagra Gour */[class*=hint--]{position:relative;display:inline-block}[class*=hint--]:after,[class*=hint--]:before{position:absolute;-webkit-transform:translateZ(0);-moz-transform:translateZ(0);transform:translateZ(0);visibility:hidden;opacity:0;z-index:1000000;pointer-events:none;-webkit-transition:.3s ease;-moz-transition:.3s ease;transition:.3s ease;-webkit-transition-delay:0s;-moz-transition-delay:0s;transition-delay:0s}[class*=hint--]:hover:after,[class*=hint--]:hover:before{visibility:visible;opacity:1;-webkit-transition-delay:.1s;-moz-transition-delay:.1s;transition-delay:.1s}[class*=hint--]:before{content:"";position:absolute;background:100% 0;border:6px solid transparent;z-index:1000001}[class*=hint--]:after{background:#383838;color:#fff;padding:8px 10px;font-size:12px;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;line-height:12px;white-space:nowrap;text-shadow:0 -1px 0 #000;box-shadow:-4px 4px 8px rgba(0,0,0,.3)}[class*=hint--][aria-label]:after{content:attr(aria-label)}[class*=hint--][data-hint]:after{content:attr(data-hint)}[aria-label=""]:after,[aria-label=""]:before,[data-hint=""]:after,[data-hint=""]:before{display:none!important}.hint--top-left:before,.hint--top-right:before,.hint--top:before{border-top-color:#383838}.hint--bottom-left:before,.hint--bottom-right:before,.hint--bottom:before{border-bottom-color:#383838}.hint--top:after,.hint--top:before{bottom:100%;right:50%}.hint--top:before{margin-bottom:-11px;right:calc(50% - 6px)}.hint--top:after{-webkit-transform:translateX(50%);-moz-transform:translateX(50%);transform:translateX(50%)}.hint--top:hover:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--top:hover:after{-webkit-transform:translateX(50%) translateY(-8px);-moz-transform:translateX(50%) translateY(-8px);transform:translateX(50%) translateY(-8px)}.hint--bottom:after,.hint--bottom:before{top:100%;right:50%}.hint--bottom:before{margin-top:-11px;right:calc(50% - 6px)}.hint--bottom:after{-webkit-transform:translateX(50%);-moz-transform:translateX(50%);transform:translateX(50%)}.hint--bottom:hover:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--bottom:hover:after{-webkit-transform:translateX(50%) translateY(8px);-moz-transform:translateX(50%) translateY(8px);transform:translateX(50%) translateY(8px)}.hint--right:before{border-left-color:#383838;margin-right:-11px;margin-bottom:-6px}.hint--right:after{margin-bottom:-14px}.hint--right:after,.hint--right:before{right:100%;bottom:50%}.hint--right:hover:after,.hint--right:hover:before{-webkit-transform:translateX(-8px);-moz-transform:translateX(-8px);transform:translateX(-8px)}.hint--left:before{border-right-color:#383838;margin-left:-11px;margin-bottom:-6px}.hint--left:after{margin-bottom:-14px}.hint--left:after,.hint--left:before{left:100%;bottom:50%}.hint--left:hover:after,.hint--left:hover:before{-webkit-transform:translateX(8px);-moz-transform:translateX(8px);transform:translateX(8px)}.hint--top-left:after,.hint--top-left:before{bottom:100%;right:50%}.hint--top-left:before{margin-bottom:-11px;right:calc(50% - 6px)}.hint--top-left:after{-webkit-transform:translateX(100%);-moz-transform:translateX(100%);transform:translateX(100%);margin-right:12px}.hint--top-left:hover:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--top-left:hover:after{-webkit-transform:translateX(100%) translateY(-8px);-moz-transform:translateX(100%) translateY(-8px);transform:translateX(100%) translateY(-8px)}.hint--top-right:after,.hint--top-right:before{bottom:100%;right:50%}.hint--top-right:before{margin-bottom:-11px;right:calc(50% - 6px)}.hint--top-right:after{-webkit-transform:translateX(0);-moz-transform:translateX(0);transform:translateX(0);margin-right:-12px}.hint--top-right:hover:after,.hint--top-right:hover:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--bottom-left:after,.hint--bottom-left:before{top:100%;right:50%}.hint--bottom-left:before{margin-top:-11px;right:calc(50% - 6px)}.hint--bottom-left:after{-webkit-transform:translateX(100%);-moz-transform:translateX(100%);transform:translateX(100%);margin-right:12px}.hint--bottom-left:hover:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--bottom-left:hover:after{-webkit-transform:translateX(100%) translateY(8px);-moz-transform:translateX(100%) translateY(8px);transform:translateX(100%) translateY(8px)}.hint--bottom-right:after,.hint--bottom-right:before{top:100%;right:50%}.hint--bottom-right:before{margin-top:-11px;right:calc(50% - 6px)}.hint--bottom-right:after{-webkit-transform:translateX(0);-moz-transform:translateX(0);transform:translateX(0);margin-right:-12px}.hint--bottom-right:hover:after,.hint--bottom-right:hover:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--large:after,.hint--medium:after,.hint--small:after{white-space:normal;line-height:1.4em;word-wrap:break-word}.hint--small:after{width:80px}.hint--medium:after{width:150px}.hint--large:after{width:300px}.hint--error:after{background-color:#b34e4d;text-shadow:0 -1px 0 #592726}.hint--error.hint--top-left:before,.hint--error.hint--top-right:before,.hint--error.hint--top:before{border-top-color:#b34e4d}.hint--error.hint--bottom-left:before,.hint--error.hint--bottom-right:before,.hint--error.hint--bottom:before{border-bottom-color:#b34e4d}.hint--error.hint--left:before{border-right-color:#b34e4d}.hint--error.hint--right:before{border-left-color:#b34e4d}.hint--warning:after{background-color:#c09854;text-shadow:0 -1px 0 #6c5328}.hint--warning.hint--top-left:before,.hint--warning.hint--top-right:before,.hint--warning.hint--top:before{border-top-color:#c09854}.hint--warning.hint--bottom-left:before,.hint--warning.hint--bottom-right:before,.hint--warning.hint--bottom:before{border-bottom-color:#c09854}.hint--warning.hint--left:before{border-right-color:#c09854}.hint--warning.hint--right:before{border-left-color:#c09854}.hint--info:after{background-color:#3986ac;text-shadow:0 -1px 0 #1a3c4d}.hint--info.hint--top-left:before,.hint--info.hint--top-right:before,.hint--info.hint--top:before{border-top-color:#3986ac}.hint--info.hint--bottom-left:before,.hint--info.hint--bottom-right:before,.hint--info.hint--bottom:before{border-bottom-color:#3986ac}.hint--info.hint--left:before{border-right-color:#3986ac}.hint--info.hint--right:before{border-left-color:#3986ac}.hint--success:after{background-color:#458746;text-shadow:0 -1px 0 #1a321a}.hint--success.hint--top-left:before,.hint--success.hint--top-right:before,.hint--success.hint--top:before{border-top-color:#458746}.hint--success.hint--bottom-left:before,.hint--success.hint--bottom-right:before,.hint--success.hint--bottom:before{border-bottom-color:#458746}.hint--success.hint--left:before{border-right-color:#458746}.hint--success.hint--right:before{border-left-color:#458746}.hint--always:after,.hint--always:before{opacity:1;visibility:visible}.hint--always.hint--top:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--always.hint--top:after{-webkit-transform:translateX(50%) translateY(-8px);-moz-transform:translateX(50%) translateY(-8px);transform:translateX(50%) translateY(-8px)}.hint--always.hint--top-left:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--always.hint--top-left:after{-webkit-transform:translateX(100%) translateY(-8px);-moz-transform:translateX(100%) translateY(-8px);transform:translateX(100%) translateY(-8px)}.hint--always.hint--top-right:after,.hint--always.hint--top-right:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--always.hint--bottom:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--always.hint--bottom:after{-webkit-transform:translateX(50%) translateY(8px);-moz-transform:translateX(50%) translateY(8px);transform:translateX(50%) translateY(8px)}.hint--always.hint--bottom-left:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--always.hint--bottom-left:after{-webkit-transform:translateX(100%) translateY(8px);-moz-transform:translateX(100%) translateY(8px);transform:translateX(100%) translateY(8px)}.hint--always.hint--bottom-right:after,.hint--always.hint--bottom-right:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--always.hint--left:after,.hint--always.hint--left:before{-webkit-transform:translateX(8px);-moz-transform:translateX(8px);transform:translateX(8px)}.hint--always.hint--right:after,.hint--always.hint--right:before{-webkit-transform:translateX(-8px);-moz-transform:translateX(-8px);transform:translateX(-8px)}.hint--rounded:after{border-radius:4px}.hint--no-animate:after,.hint--no-animate:before{-webkit-transition-duration:0s;-moz-transition-duration:0s;transition-duration:0s}.hint--bounce:after,.hint--bounce:before{-webkit-transition:opacity .3s ease,visibility .3s ease,-webkit-transform .3s cubic-bezier(.71,1.7,.77,1.24);-moz-transition:opacity .3s ease,visibility .3s ease,-moz-transform .3s cubic-bezier(.71,1.7,.77,1.24);transition:opacity .3s ease,visibility .3s ease,transform .3s cubic-bezier(.71,1.7,.77,1.24)}.mfp-bg{z-index:1000001;overflow:hidden;background:#0b0b0b;opacity:.8}.mfp-bg,.mfp-wrap{top:0;right:0;width:100%;height:100%;position:fixed}.mfp-wrap{z-index:1000002;outline:none!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;right:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{content:"";display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:right;z-index:1000004}.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;right:8px;left:8px;z-index:1000003}.mfp-preloader a{color:#ccc}.mfp-preloader a:hover{color:#fff}.mfp-s-error .mfp-content,.mfp-s-ready .mfp-preloader{display:none}button.mfp-arrow,button.mfp-close{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:none;padding:0;z-index:1000005;box-shadow:none;touch-action:manipulation}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;left:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 10px 18px 0;color:#fff;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:focus,.mfp-close:hover{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{color:#fff;left:-6px;text-align:left;padding-left:6px;width:100%}.mfp-counter{position:absolute;top:0;left:0;color:#ccc;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;top:50%;margin:-55px 0 0;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:focus,.mfp-arrow:hover{opacity:1}.mfp-arrow:after,.mfp-arrow:before{content:"";display:block;width:0;height:0;position:absolute;right:0;top:0;margin-top:35px;margin-right:35px;border:inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{right:0}.mfp-arrow-left:after{border-left:17px solid #fff;margin-right:31px}.mfp-arrow-left:before{margin-right:25px;border-left:27px solid #3f3f3f}.mfp-arrow-right{left:0}.mfp-arrow-right:after{border-right:17px solid #fff;margin-right:39px}.mfp-arrow-right:before{border-right:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;right:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;box-sizing:border-box;padding:40px 0;margin:0 auto}.mfp-figure,img.mfp-img{line-height:0}.mfp-figure:after{content:"";position:absolute;right:0;top:40px;bottom:40px;display:block;left:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;right:0;width:100%;cursor:auto}.mfp-title{text-align:right;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-left:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-height:300px),screen and (max-width:800px) and (orientation:landscape){.mfp-img-mobile .mfp-image-holder{padding-right:0;padding-left:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-right:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{left:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;left:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:100%;transform-origin:100%}.mfp-arrow-right{-webkit-transform-origin:0;transform-origin:0}.mfp-container{padding-right:6px;padding-left:6px}}@font-face{font-family:give-icomoon;src:url(../fonts/icomoon.eot);src:url(../fonts/icomoon.eot#iefix) format("embedded-opentype"),url(../fonts/icomoon.woff) format("woff"),url(../images/icomoon.svg#icomoon) format("svg");font-weight:400;font-style:normal}.give-icon:before{font-style:normal}[class*=" give-icon-"],[class^=give-icon-]{font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.give-icon-lamp:before{content:"\e603"}.give-icon-heart:before{content:"\e604"}.give-icon-question:before{content:"\e602"}.give-icon-info:before{content:"\e601"}.give-icon-new-tab:before{content:"\ea7e"}.give-icon-alert:before{content:"\f02d"}.give-icon-help:before{content:"\e606"}.give-icon-spinner:before{content:"\e605"}.give-icon-spinner2:before{content:"\e607"}.give-icon-plus:before{content:"\e040"}.give-icon-minus:before{content:"\e041"}.give-icon-locked:before{content:"\e600"}.dashicons-give:before{font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\e800"}.fa-spin{-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-359deg);transform:rotate(-359deg)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-359deg);transform:rotate(-359deg)}}.give-modal{box-shadow:0 15px 10px -5px rgba(0,0,0,.15);position:relative;background:#fff;font-family:Arial,Baskerville,monospace;font-size:16px;width:auto;max-width:500px;margin:60px auto 20px;border-top:5px solid transparent;line-height:1.5}.give-modal--success{border-top-color:#46b450}.give-modal--notice{border-top-color:#00a0d2}.give-modal--warning{border-top-color:#ffb900}.give-modal--error{border-top-color:#dc3232}.give-modal__body{padding:1.5rem}.give-modal__body>:last-child{margin-bottom:0}.give-modal__title{margin:0 0 .75rem;padding:0}.give-modal__description{margin:0 0 1.5rem;padding:0}.give-modal .give-spinner-wrap{margin-right:40%}.give-modal .give-modal__controls{position:relative;padding:1rem 1.5rem;background-color:#fbfbfb;border-top:1px solid #d7d7d7;text-align:left}.give-modal .give-modal__controls .spinner{display:none;visibility:visible;margin-right:0;float:right}.give-modal--additional-link{float:right;line-height:26px}.modal-fade-slide .give-modal--zoom{opacity:0;transition:all .2s ease-out;transform:translateY(-20px) perspective(600px) rotateX(10deg)}.modal-fade-slide.mfp-ready .give-modal--zoom{opacity:1;transform:translateY(0) perspective(600px) rotateX(0)}.modal-fade-slide.mfp-removing .give-modal--zoom{opacity:0;transform:translateY(-10px) perspective(600px) rotateX(10deg)}.modal-fade-slide.mfp-bg{opacity:0;transition:opacity .3s ease-out}.modal-fade-slide.mfp-ready.mfp-bg{opacity:.8}.modal-fade-slide.mfp-removing.mfp-bg{opacity:0}.give-button{display:inline-block;height:30px;line-height:28px;padding:0 12px 2px;cursor:pointer;border-width:1px;border-style:solid;-webkit-appearance:none;border-radius:3px;white-space:nowrap;box-sizing:border-box;margin-right:.5rem;font-weight:400;font-size:.9em}.give-button:active{transform:translateY(1px)}.give-button--primary{background:#0085ba;border-color:#0073aa #006799 #006799;box-shadow:0 1px 0 #006799;color:#fff;text-decoration:none;text-shadow:0 -1px 1px #006799,-1px 0 1px #006799,0 1px 1px #006799,1px 0 1px #006799;outline:0}.give-button--primary:hover{background:#008ec2;border-color:#006799;color:#fff}.give-button--primary:active{background:#0073aa;border-color:#006799;box-shadow:inset 0 2px 0 #006799;vertical-align:top}.give-button--primary:focus{background:#0073aa;border-color:#006799;color:#fff;box-shadow:0 1px 0 #0073aa,0 0 2px 1px #33b3db}.give-button--secondary{color:#555;border-color:#ccc;background:#f7f7f7;box-shadow:0 1px 0 #ccc;vertical-align:top}.give-button--secondary:hover{background:#fafafa;border-color:#999;color:#23282d}.give-button--secondary:active{background:#eee;border-color:#999;box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5)}.give-button--secondary:focus{background:#eee}.give-notice{position:relative}@font-face{font-family:give-icomoon;font-weight:400;font-style:normal}.give-metabox-tabs li .give-icon:before{font-family:give-icomoon;src:url(../fonts/icomoon.eot);src:url(../fonts/icomoon.eot#iefix) format("embedded-opentype"),url(../fonts/icomoon.woff) format("woff"),url(../images/icomoon.svg#icomoon) format("svg");speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:12px;vertical-align:top;line-height:20px;margin:0 0 0 5px}.give-metabox-tabs li .give-icon-default:before{content:"\e903"}.give-metabox-tabs li .give-icon-heart:before{content:"\e604"}.give-metabox-tabs li .give-icon-target:before{content:"\e901"}.give-metabox-tabs li .give-icon-display:before{content:"\e90c"}.give-metabox-tabs li .give-icon-edit:before{content:"\e902"}.give-metabox-tabs li .give-icon-checklist:before{position:relative;top:1px;content:"\e900"}.give-metabox-tabs li .give-icon-purse:before{content:"\e8df"}.give-metabox-tabs li .dashicons{font-size:14px;width:14px;line-height:20px}.give-grid-row{position:relative;width:100%}.give-grid-row [class^=give-grid-col]{float:right;margin:.5rem 1%;min-height:.125rem}.give-grid-row:after{content:"";display:table;clear:both}.give-grid-col-1{width:6.33333%}.give-grid-col-2{width:14.66667%}.give-grid-col-3{width:23%}.give-grid-col-4{width:31.33333%}.give-grid-col-5{width:39.66667%}.give-grid-col-6{width:48%}.give-grid-col-7{width:56.33333%}.give-grid-col-8{width:64.66667%}.give-grid-col-9{width:73%}.give-grid-col-10{width:81.33333%}.give-grid-col-11{width:89.66667%}.give-grid-col-12{width:98%}@media only screen and (max-width:33.75em){.give-grid-row [class^=give-grid-col]{width:98%}}.give_options_panel input[type=email],.give_options_panel input[type=text]{padding:3px 5px;width:100%;line-height:2;box-shadow:0 0 0 transparent;border-radius:4px;border:1px solid #7e8993;background-color:#fff;color:#32373c}input.give-text-small,input.give-text_small{width:100px!important}input.give-text-medium,input.give-text_medium{width:200px!important}.give-hidden,.post-type-give_forms .tablenav #post-query-submit{display:none}.give_options_panel .give-time-field{width:65px}.give_options_panel .give-money-field{width:75px;margin-left:0;margin-right:0}.give_options_panel .give-money-symbol{border:1px solid #7e8993;background:#fcfcfc;margin:0;font-size:14px;padding:8px 10px 9px}.give_options_panel .give-money-symbol-before{border-left:0;margin-left:-5px;border-radius:0 4px 4px 0}.give_options_panel .give-money-symbol-before+.give-money-field{border-top-right-radius:0;border-bottom-right-radius:0}.give_options_panel .give-money-symbol-after{margin-right:-5px;border-radius:4px 0 0 4px}.give_options_panel .give-money-symbol-after+.give-money-field{border-top-left-radius:0;border-bottom-left-radius:0}.give-underline{text-decoration:underline}#give-bulk-donors div[id^=give-donor-]{display:block;overflow:hidden}.shortcode-wrap{margin:1px 11px 12px 14px}.shortcode-wrap label{margin:0 0 3px;display:block;cursor:default}.shortcode-wrap .shortcode-input{margin:0;width:100%}input.shortcode-input{width:100%}.price .give_price_range_high,.price .give_price_range_low,.price .give_price_range_sep{display:inline-block}.js-give-shortcode-button{font-weight:400;cursor:help}.js-give-shortcode-button:after{box-shadow:0 1px 1px 0 rgba(0,0,0,.1);text-shadow:none}.js-give-shortcode-button .dashicons{font-size:16px;width:16px;vertical-align:middle;color:inherit;margin-left:2px}@media only screen and (min-width:782px) and (max-width:1260px){.js-give-shortcode-button .give-button-text{display:none}}.give-tooltip{margin:0 3px;padding:0;font-size:14px;-moz-transition:.2s all linear;-o-transition:.2s all linear;transition:all .2s linear;color:rgba(51,51,51,.5);position:relative;top:1px}.give-tooltip:hover{color:#333}#give-metabox-form-data .inside{margin:0;padding:0}#give-metabox-form-data .give-metabox-panel-wrap{background:#fff;overflow:hidden}#give-metabox-form-data .give_options_panel{display:none;padding-right:170px}#give-metabox-form-data .give_options_panel.active,.no-js #give-metabox-form-data .give_options_panel{display:block}#give-metabox-form-data .give_options_panel .give-field-wrap{padding:1em 162px 1em 20px;margin:0;border-bottom:1px solid #eee}#give-metabox-form-data .give_options_panel .give-field-wrap>label,#give-metabox-form-data .give_options_panel .give-field-wrap>span.give-field-label{float:right;width:135px;padding:0;margin:2px -150px 0 0;line-height:18px;font-size:12px;font-weight:400}#give-metabox-form-data .give_options_panel .give-field-wrap .give-field-description{color:#aaa;font-size:12px;line-height:18px;display:block;padding-top:10px;font-style:italic}#give-metabox-form-data .give_options_panel .give-field-wrap ul{margin:0}#give-metabox-form-data .give_options_panel .give-field-wrap .mce-container iframe{min-height:250px!important}#give-metabox-form-data .give_options_panel .give-field-wrap .wp-editor-wrap{display:inline-block;width:100%}#give-metabox-form-data .give_options_panel textarea.give-field{width:100%}#give-metabox-form-data .give_options_panel .give-field-wrap:hover .give-field-row-actions{display:block}#give-metabox-form-data .give_options_panel .give-field-wrap:last-child{border-bottom:0}#give-metabox-form-data .give_options_panel .give-inline-radio-fields li{display:inline-block;margin-left:15px}#give-metabox-form-data .give_options_panel .give-repeatable-field-section{padding:10px;background:#f5f5f5}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-repeatable-fields-section-wrapper{width:100%;background-color:#fff;border-collapse:collapse}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-row{border-bottom:15px solid #f5f5f5;background-color:#fff}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-template{display:none}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-row:last-child{border-bottom:10px solid #f5f5f5}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-column{padding:0}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-remove{float:left;width:22px;height:36px;padding:0;display:block;text-align:center;line-height:34px;font-size:21px;font-weight:300;cursor:pointer}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-remove:hover{background-color:red;color:#fff;width:22px;height:22px;border-radius:30px;margin-top:8px;line-height:19px}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-row-head{border-bottom:1px solid #eee;cursor:move}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-row-head h2{text-align:right!important}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-row.closed .toggle-indicator:before{content:"\f140"}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-row .give-move .toggle-indicator:before{margin-right:7px}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-add-repeater-field-section-row-wrap{background-color:#f5f5f5}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-add-repeater-field-section-row{margin:5px}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-field-wrap:last-child{border-bottom:1px solid #eee}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-ui-placeholder-state-highlight{background-color:#68bb6c}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-repeater-field-name{border:0!important;padding:0!important}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-repeater-field-description{color:#aaa;font-size:12px;line-height:18px;display:block;padding-bottom:10px;font-style:italic}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .ui-sortable-helper{display:table!important}#give-metabox-form-data .give_options_panel .give-repeatable-field-section .give-row.ui-sortable-helper{border-bottom:0}#give-metabox-form-data .give-minmax-wrap{display:block;margin-bottom:.5rem}#give-metabox-form-data .give-minmax-wrap label{display:inline-block;width:120px;font-size:12px}#give-metabox-form-data .give-minmax-wrap input{margin-right:1px;position:relative;z-index:1;border-radius:4px 0 0 4px}#_give_donation_levels_field .give-row:nth-of-type(2) .give-remove{display:none!important}#give-metabox-form-data .give-metabox-tabs{margin:0;max-width:170px;float:right;line-height:1em;padding:0 0 10px;position:relative;background-color:#fafafa;border-left:1px solid #eee;box-sizing:border-box}#give-metabox-form-data .give-metabox-tabs:after{content:"";display:block;width:100%;height:9999em;position:absolute;bottom:-9999em;right:0;background-color:#fafafa;border-left:1px solid #eee}#give-metabox-form-data .give-metabox-tabs li{margin:0;padding:0;display:block;position:relative}#give-metabox-form-data .give-metabox-tabs li a{margin:0;padding:10px;display:block;box-shadow:none;text-decoration:none;line-height:20px!important;border-bottom:1px solid #eee;overflow:hidden}#give-metabox-form-data .give-metabox-tabs li a span.give-label{width:122px;display:inline-block}#give-metabox-form-data .give-metabox-tabs .give-metabox-sub-tabs li{background-color:#f1f1f1}#give-metabox-form-data .give-metabox-tabs .give-metabox-sub-tabs li a{border-bottom-color:#e5e5e5}#give-metabox-form-data .give-metabox-tabs li.active>a{color:#555;position:relative;background-color:#eee}#give-metabox-form-data .give-metabox-tabs li.has-sub-fields.active>a{background-color:#ddd}#give-metabox-form-data .give-metabox-tabs li.has-sub-fields:not(.active):hover ul.give-metabox-sub-tabs{display:block;position:absolute;bottom:0;right:166px;width:170px;max-height:250px}@media (max-width:550px),only screen and (min-width:851px) and (max-width:1025px){#give-metabox-form-data ul.give-metabox-tabs{min-width:40px}#give-metabox-form-data ul.give-metabox-tabs li>a{text-align:center}#give-metabox-form-data ul.give-metabox-tabs li>a:before{margin-left:0;font-size:15px}#give-metabox-form-data ul.give-metabox-tabs li>a span.give-label{display:none}#give-metabox-form-data ul.give-metabox-tabs li>a span.give-icon:before{margin:0}#give-metabox-form-data .give_options_panel{padding-right:40px}#give-metabox-form-data .give_options_panel .give-field-wrap{padding:10px}#give-metabox-form-data .give_options_panel .give-field-wrap label,#give-metabox-form-data .give_options_panel .give-field-wrap span.give-field-label{display:block;float:none;margin:0 0 10px;font-size:14px;width:100%}}.chosen-container-single a.chosen-single{background:#fff!important}.give-docs-link{text-align:left;margin-left:15px}.give-docs-link a{color:#999;text-decoration:none;font-style:italic}.give-docs-link a:hover{color:#0073aa}.give-docs-link a span{font-style:normal}.post-type-give_forms #posts-filter .search-box{display:none}.post-type-give_forms #posts-filter .tablenav.top{position:relative;margin:42px 0 0;height:auto}.post-type-give_forms #posts-filter .tablenav.top #give-forms-advanced-filter{margin:0 0 10px}.post-type-give_forms #posts-filter .tablenav.top #give-forms-advanced-filter #give-forms-goal-filter{width:255px}.post-type-give_forms #posts-filter .tablenav.top #give-forms-advanced-filter a{display:inline-block;margin:0}.post-type-give_forms #posts-filter .tablenav.top #give-forms-advanced-filter #give-forms-search-input{margin-left:6px}.post-type-give_forms #posts-filter .tablenav.top .actions{position:absolute;right:230px;bottom:10px}.post-type-give_forms #posts-filter .tablenav.top .actions.bulkactions{right:0}@-moz-document url-prefix(){.give_options_panel .give-money-symbol{padding:8.5px 10px}}#give-dashboard-widgets-wrap .inside{padding-top:0;padding-bottom:0}.give_forms_page_give-reports #give-dashboard-widgets-wrap .inside{padding-right:0}#give-dashboard-widgets-wrap .inside #give-graphs-filter{float:none}#give-dashboard-widgets-wrap .postbox{margin-bottom:10px}#give-dashboard-widgets-wrap table.reports-table{clear:none}#give-dashboard-widgets-wrap #give-date-range-options{float:right}#give-dashboard-widgets-wrap #give-date-range-options>span{float:right;line-height:30px;font-style:italic;padding:0 0 0 5px}#give-graphs-filter{float:left}#give-graphs-filter .tablenav{margin:0 17px 0 0}#give-graphs-filter .tablenav .actions{padding:0}.give-graph .y1Axis{color:#66bb6a!important}.give-graph .y2Axis{color:#546e7a!important}body.give_forms_page_give-payment-history h1.nav-tab-wrapper,body.give_forms_page_give-payment-history h2.nav-tab-wrapper,body.give_forms_page_give-reports h1.nav-tab-wrapper,body.give_forms_page_give-reports h2.nav-tab-wrapper{margin-bottom:10px}body.give_forms_page_give-payment-history .actions,body.give_forms_page_give-reports .actions{padding-top:0}body.give_forms_page_give-payment-history .pagination-links,body.give_forms_page_give-reports .pagination-links{margin-right:10px}body.give_forms_page_give-payment-history p.donor-search,body.give_forms_page_give-reports p.donor-search{margin-left:10px}body.give_forms_page_give-payment-history .tablenav-right .tablenav-pages,body.give_forms_page_give-reports .tablenav-right .tablenav-pages{float:left}body.give_forms_page_give-payment-history .tablenav-right #give-reports-view,body.give_forms_page_give-reports .tablenav-right #give-reports-view{margin-top:0}body.give_forms_page_give-payment-history .tablenav-right .actions,body.give_forms_page_give-payment-history p.search-box,body.give_forms_page_give-reports .tablenav-right .actions,body.give_forms_page_give-reports p.search-box{float:right}body.give_forms_page_give-payment-history .reports-table-nav.tablenav.top,body.give_forms_page_give-reports .reports-table-nav.tablenav.top{width:100%;float:none;margin:0 0 10px}body.give_forms_page_give-payment-history .reports-forms-details-wrap.top,body.give_forms_page_give-reports .reports-forms-details-wrap.top{float:left;overflow:hidden}body.give_forms_page_give-payment-history .reports-forms-details-wrap.top #give-reports-filter,body.give_forms_page_give-reports .reports-forms-details-wrap.top #give-reports-filter{float:right}body.give_forms_page_give-payment-history .reports-forms-details-wrap.top>.actions,body.give_forms_page_give-reports .reports-forms-details-wrap.top>.actions{padding-left:0}body.give_forms_page_give-payment-history .tablenav.bottom,body.give_forms_page_give-reports .tablenav.bottom{margin-top:10px}body.give_forms_page_give-payment-history h2.reports-earnings-title,body.give_forms_page_give-reports h2.reports-earnings-title{margin:7px 0 0}body.give_forms_page_give-payment-history .reports-views-wrap,body.give_forms_page_give-reports .reports-views-wrap{padding:3px 0 0}body.give_forms_page_give-payment-history .wrap.give-reports-donors-wrap,body.give_forms_page_give-reports .wrap.give-reports-donors-wrap{margin-left:0;margin-bottom:10px}body.give_forms_page_give-payment-history .widefat tbody td,body.give_forms_page_give-payment-history .widefat tbody th,body.give_forms_page_give-reports .widefat tbody td,body.give_forms_page_give-reports .widefat tbody th{padding-top:12px;padding-bottom:12px}body.give_forms_page_give-reports table.export-options-table tbody td{padding:20px 12px;vertical-align:top}body.give_forms_page_give-reports table.export-options-table .give-export-form{position:relative}body.give_forms_page_give-reports table.export-options-table .give-export-form .notice-wrap{background-color:transparent;padding:12px 12px 4px;margin:2px -11px -16px 0;overflow:auto}body.give_forms_page_give-reports table.export-options-table .give-export-form .notice-wrap .spinner{margin:-2px 0 8px -12px}body.give_forms_page_give-reports table.export-options-table span#give-end-wrap input,body.give_forms_page_give-reports table.export-options-table span#give-start-wrap input{width:100px}#export-donor-options-wrap p{padding:20px 0 0;margin:0;font-weight:700}#export-donor-options-wrap ul{max-width:900px;overflow:hidden}#export-donor-options-wrap ul li{margin:0;padding:0 0 5px 5px;box-sizing:border-box;float:right;width:33%}.settings-excludes-list{max-height:120px;overflow:auto;padding:.5rem;border:1px solid #ddd}.settings-excludes-list li{margin:3px 0}#give-tools-recount-form .notice-wrap{position:relative;min-height:25px;margin:10px -12px -12px;background:#efefef;padding:10px 12px 12px;border-top:1px solid #e5e5e5}#give-tools-recount-form .notice-wrap .give-progress{position:absolute;top:15px}#give-tools-recount-form .notice-wrap .spinner{position:absolute;left:14px;top:13px;margin:0}#give-tools-recount-form .notice-wrap #give-batch-success{margin-bottom:6px}.recount-stats-controls form{display:inline}.give-recount-stats-descriptions{margin:8px 0 0;display:block}.give-recount-stats-descriptions span{line-height:24px;font-size:13px;font-style:italic;font-weight:400;color:#aaa;margin:0;display:none}.gateways-report-tablenav .actions.bulkactions{padding-left:0}table.give-table td{vertical-align:middle}table.give-table td.row-title h3{margin:0 0 .4em;font-size:1.2em}table.give-table td.row-title p{font-size:13px;font-style:italic;font-weight:400;color:#aaa;margin:0}#give-graphs-filter>.tablenav{height:auto}#give-logs-filter .search-box{float:left}#give-logs-filter .tablenav.top{float:right;clear:none;margin-top:0}.give-welcome-wrap{margin:0 -20px 0 0;padding:0}.give-welcome-header{background:#fff;height:100%;min-width:1000px}.give-welcome-header .give-welcome-header-inner{max-width:900px;margin:0;padding:25px 30px 20px 250px;position:relative}.give-welcome-header .give-welcome-h1{margin:0 0 0 200px;padding:0;color:#32373c;line-height:1.2em;font-size:2.8em;font-weight:600;display:inline-block;margin-left:15px!important}.give-welcome-header .give-welcome-h1:before{background:url(../images/give-icon-full-circle.svg);width:36px;height:36px;content:" ";display:block;float:right;margin:0 0 0 10px;position:relative;top:4px}.give-welcome-header .give-welcome-text{font-size:20px;margin:20px 0 30px;padding:0}.give-badge{background:url(../images/give-badge.png) no-repeat 100% 0 transparent;padding-top:150px;height:52px;width:185px;color:#fff;font-weight:700;font-size:14px;text-align:center;text-shadow:0 1px 0 rgba(0,0,0,.8);margin:0;position:absolute;top:30px;left:20px}.give-welcome-content-wrap{padding:0;margin:0}.give-welcome-content-wrap.give-changelog-wrap{width:1140px}.give-welcome-content-intro{font-size:22px;font-style:italic;color:#8e8e8e;margin:50px 30px 60px;max-width:1400px;min-width:1000px}.give-ipad-showcase-wrap{border:3px solid #9199a5;border-radius:10px;position:relative;box-shadow:0 .75rem 2rem rgba(0,0,0,.4)}.give-ipad-showcase-wrap .give-ipad-showcase-inner{background:#fafbfb;border:10px solid #1e2026;border-radius:7px;display:grid}.give-ipad-showcase-wrap img{height:auto;max-width:100%}.give-feature-section{margin:0;padding:120px 30px}.give-feature-section__inner{display:flex;flex-direction:row;margin:0;align-items:center;justify-content:center;max-width:1400px;min-width:1000px}.give-feature-section:first-of-type{padding-top:0}.give-feature-section__step2{background:#fff}.give-feature-section span.dashicons{width:16px;height:16px;font-size:14px;margin:6px 0 0}.give-feature-section .give-feature-section-item{display:flex;width:50%}.give-feature-section .give-feature-section-item__container{padding:0 0 0 60px;margin:0}.give-feature-section .give-feature-section-item__container-right{padding-right:60px;padding-left:20px}.give-feature-section .give-feature-section-item h3{font-size:24px;font-weight:500;margin:0 0 20px}.give-feature-section .give-feature-section-item h3>.give-feature-section-item-number{background:#fff;width:40px;height:40px;margin:0 0 0 10px;padding:0;line-height:40px;text-align:center;color:#777;box-shadow:0 1px 3px 0 rgba(0,0,0,.2);border-radius:50%;display:inline-block;font-size:22px}.give-feature-section .give-feature-section-item p{font-size:16px}.give-feature-section .give-feature-section-item .give-welcome-gateway-notice{font-size:12px!important;line-height:16px}.give-feature-section .give-feature-btns{margin:30px 0 20px}.give-feature-section .give-feature-btns li{display:inline;margin:0 0 0 25px}.give-feature-section .give-feature-btns .give-feature-btn-link{font-size:15px;line-height:30px}.social-items-wrap,.social-items-wrap>div{display:inline-block}.social-items-wrap .twitter-item-wrap{margin:0 0 10px 20px}.give-welcome-widgets{background:#fff;text-align:center;padding:100px 0 160px}.give-welcome-widgets p{font-size:16px}.give-welcome-widgets__inner{max-width:1400px}.give-welcome-widgets__heading{max-width:500px;margin:0 auto 100px}.give-welcome-widgets__heading h2{font-size:26px;font-weight:500}.give-welcome-widgets__heading .button{margin-top:10px;font-size:15px}.give-welcome-widgets__col{float:right;width:33.33%;box-sizing:border-box;padding:0 20px}.give-welcome-widgets__col h3{font-size:22px;font-weight:500}.give-welcome-widgets__col h3:before{background:url(../images/happy-face.svg) no-repeat top transparent;opacity:.3;content:" ";width:100%;height:85px;display:inline-block;font-size:80px;-moz-transition:.2s all linear;-o-transition:.2s all linear;transition:all .2s linear}.give-welcome-widgets__col p{font-size:13px}.give-welcome-widgets__col:hover h3:before{opacity:.45}.give-welcome-widgets__addons h3:before{background:url(../images/shopping-cart.svg) no-repeat top transparent}.give-welcome-widgets__documentation h3:before{background:url(../images/docs-book.svg) no-repeat top transparent}.give-welcome-widgets__col-inner{max-width:300px;margin:0 auto}.give-welcome-widgets__link{font-weight:700;font-size:15px}.give-contributor-group{list-style:none}.give-contributor-group img{border-radius:50%}.give-contributor-group .give-contributor{margin:0 0 45px 10px;display:inline-block;width:140px;text-align:center}.give-contributor-group .give-contributor a{outline:none;box-shadow:none}.give-contributor-group .give-contributor span{display:block;margin:3px 0 0;font-weight:700}.give-newsletter-form-wrap{margin:10px 0 15px;padding:10px 15px 15px;background:#f1f1f1;border:1px solid #ddd;max-width:900px}.give-newsletter-form-wrap .give-newsletter-intro{font-size:14px;font-style:italic;color:#777;margin:0 0 15px}.give-newsletter-form-wrap ._form-content{display:flex;justify-content:space-between}.give-newsletter-form-wrap ._form-content>div{width:32%}.give-newsletter-form-wrap .button,.give-newsletter-form-wrap input[type=email],.give-newsletter-form-wrap input[type=text]{width:100%;height:36px}.give-newsletter-form-wrap div._form-thank-you{background:#fff;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1);margin:5px 5px 4px 10px;padding:12px;border-right:4px solid #7ad03a;display:none}.give-newsletter-form-wrap div._form-thank-you>p{margin:.5em 0;padding:2px}.give-changelog-wrap .give-changelog{max-height:510px;margin:0 30px 100px 0;padding:20px;overflow-y:scroll;overflow-x:hidden;font-size:18px;line-height:28px;background:#fff;border:1px solid #ddd}.give-changelog-wrap .give-changelog br:first-child,.give-changelog-wrap .give-changelog br:first-child+br{display:none}.give-changelog-wrap .give-changelog h4{margin:0 0 10px;border-bottom:1px solid #e2e2e2;padding:0 0 6px;font-size:20px}.give-changelog-wrap .give-changelog h4+br{display:none}.dashboard_page_give-changelog #wpbody-content,.dashboard_page_give-getting-started #wpbody-content{padding-bottom:0}#give-paypal-connect{background:#039cde;color:#fff;font-size:14px;line-height:30px;font-weight:700;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;box-shadow:none;text-decoration:none;padding:8px 20px;border-radius:40px}#give-paypal-connect span:before{content:" ";width:16px;height:16px;display:inline-block;margin:0 0 0 8px;background-image:url(../images/paypal-48.png);background-size:16px;position:relative;top:2px}#give_donor_export_form{margin:0 0 5px}#give_donor_export #give_donor_export_form_chosen{display:block;margin:5px 0 1px}.column-status .give-donation-status,.column-status .give-test-mode-transactions-label{display:inline-block}.column-status .give-test-mode-transactions-label{margin:0 5px;vertical-align:middle}.give-settings-page .give-settings-section-content{display:flex;background-color:#f4f4f4;border-radius:8px;-webkit-box-shadow:0 0 5px 0 #ddd;-moz-box-shadow:0 0 5px 0 #ddd;box-shadow:0 0 5px 0 #ddd}.give-settings-page .give-settings-section-content .give-settings-section-group-menu{width:250px}.give-settings-page .give-settings-section-content .give-settings-section-group-menu ul,.give-settings-page .give-settings-section-content .give-settings-section-group-menu ul li{margin:0}.give-settings-page .give-settings-section-content .give-settings-section-group-menu ul li a{display:block;padding:20px;text-decoration:none;color:#333;font-weight:600;outline:none;box-shadow:none}.give-settings-page .give-settings-section-content .give-settings-section-group-menu ul li a:hover{background-color:#ebebeb}.give-settings-page .give-settings-section-content .give-settings-section-group-menu ul li a.active{background-color:#fff;border-right:4px solid #66bb6a;color:#333}.give-settings-page .give-settings-section-content .give-settings-section-group-content{width:100%;background:#fff;padding:10px 30px;border-bottom-left-radius:8px;border-top-left-radius:8px;min-height:400px}@media only screen and (max-width:480px){.give-settings-page .give-settings-section-content{flex-flow:row wrap}.give-settings-page .give-settings-section-content .give-settings-section-group-menu{width:100%}.give-settings-page .give-settings-section-content .give-settings-section-group-content{padding:10px}}.give-settings-page{margin:0 2px 0 20px}.give-settings-page #poststuff{padding-top:25px}.give-settings-page .give-settings-header{background:#fff;padding:10px 20px;margin:0 -22px 0 -20px}.give-settings-page .give-settings-heading-sep{font-size:14px;line-height:32px;width:15px}.give-settings-page .nav-tab-wrapper{height:54px;margin:0 -22px 0 -20px}.give-settings-page .give-subsubsub{list-style:none;margin:12px 0 3px;padding:0;float:right}.give-settings-page .give-subsubsub li{display:inline-block;margin:0 3px 0 0;padding:0;white-space:nowrap;color:#d3d3d3;font-weight:300;font-size:16px}.give-settings-page .give-subsubsub a{line-height:2;padding:.2em;margin:0 0 0 3px;text-decoration:none;font-size:14px;box-shadow:none;font-weight:400}.give-settings-page .give-subsubsub a.current{color:#000;font-weight:600;border:none}.give-settings-page .give-setting-tab-body{max-width:1260px}.give-settings-page div.give-submit-wrap{margin:20px 0}.give-settings-page .give_forms_page_give-payment-history .postbox .hndle{cursor:default}.give-settings-page .give-input-field{width:25em}.give-settings-page table table input[type=text]{width:15em}.give-settings-page .give-repeat-setting-field{margin:10px 0}.give-settings-page .give-remove-setting-field{width:25px;height:25px;padding:0;text-align:center;line-height:22px;font-size:21px;font-weight:300;cursor:pointer;margin-right:20px;display:inline-block}.give-settings-page .give-remove-setting-field:hover{background-color:red;color:#fff;border-radius:30px}.give-settings-page .give-forminp p:first-child .give-remove-setting-field{display:none}.give-settings-page .export-options-table tr.give-import-option:nth-child(odd){background:#f4f3f3}.give-settings-page .export-options-table tr.give-import-option:nth-child(odd) th{vertical-align:middle}.give-settings-page .export-options-table .give-import-dropdown:nth-child(2),.give-settings-page .export-options-table tr.give-import-option th:first-child{width:250px}.give-setting-tab-header{clear:both;overflow:hidden;margin:30px 0}.give-setting-tab-header h2{margin-top:8px}.give-setting-tab-header p{margin-top:0;margin-bottom:0}.give-radio-inline ul{margin-top:0}.give-radio-inline li{display:inline-block;margin:0 15px 0 0}.give-radio-inline li:first-child{margin-right:0}.give-tools-setting-page .bulkactions{overflow:visible}.form-table td.give-radio-inline fieldset li>label{margin:5px 0 0!important}div.give-field-description,p.give-field-description{color:#666;font-style:italic;font-size:14px!important;line-height:22px}div.give-field-description strong,p.give-field-description strong{color:#777}.give-setting-tab-header h2{float:right;display:inline-block;width:220px;font-style:italic;color:#aaa;margin:0;font-size:14px}.gateway-enabled-wrap{background-color:#f7f7f7;border:1px solid #e5e5e5}.gateway-enabled-wrap .gateway-enabled-settings-title{display:grid;grid-template-columns:.5fr 2.5fr 5fr 1fr 1fr;grid-gap:20px;border-bottom:1px solid #e5e5e5;padding:1rem;font-weight:600}.gateway-enabled-wrap .ui-sortable-placeholder{visibility:visible!important;border:2px dashed #e5e5e5;transition:all .2s ease}.gateway-enabled-wrap .ui-sortable-helper{background-color:#fafafa;box-shadow:0 4px 20px -5px rgba(0,0,0,.25);border:1px solid #e5e5e5;padding:.5rem!important}.give-payment-gatways-list{margin:0;padding:1rem}.give-payment-gatways-list li{display:grid;grid-template-columns:.5fr 2.5fr 5fr 1fr 1fr;align-items:center;grid-gap:20px;margin:0;padding:.5rem 0}.give-payment-gatways-list li:first-child{padding-top:0}.give-payment-gatways-list li:last-child{padding-bottom:0}.give-payment-gatways-list li .checkout-label{padding:3px 5px}.give-payment-gatways-list li .gateways-checkbox,.give-payment-gatways-list li .gateways-radio{justify-self:center}.give-payment-gatways-list li span.give-drag-handle{padding:3px 0 0 4px;font-size:15px;font-weight:400;color:#bdbdbd;cursor:move}.give-payment-gatways-list li span.give-drag-handle:hover{color:#333}.give-gateways-notice{display:table;width:100%;max-width:1240px;background:#fff;margin:15px 0 0;padding:0;border:1px solid #e3e3e3}.give-gateways-notice .give-gateways-cc-icon{margin:0;padding:0 25px 0 15px;height:30px;width:30px;display:table-cell;vertical-align:middle}.give-gateways-notice .give-gateways-cc-icon svg{position:relative;top:2px;width:50px;height:40px}.give-gateways-notice .give-gateways-notice-title{font-size:16px;margin:20px 20px 0;padding:0}.give-gateways-notice .give-gateways-notice-message{line-height:24px;font-size:14px;margin:5px 20px 20px}.give-gateways-notice .give-gateways-notice-button{display:table-cell;vertical-align:middle;text-align:left;margin:0;padding:0 0 0 15px;width:200px}.give-gateways-notice .give-gateways-notice-button #give-stripe-connect{margin:0 0 10px}.give-gateways-notice .give-gateways-notice-button .give-view-gateways-btn{text-align:center;width:190px}.give-email-tags-wrap{margin:5px 0 0}.give-email-tags-wrap code{font-style:normal;padding:1px 2px;font-size:12px}.give-email-tags-wrap span{display:block;color:#aaa;font-style:italic;margin:0 0 2px;font-size:13px}.give-email-tags-wrap .give_price_tag,.give-email-tags-wrap .give_receipt_id_tag{display:none}.give-setting-tab-header-emails{margin:20px 0}.give-setting-tab-header-emails hr,.give-settings-admin-email-section .tablenav,.give-settings-donor-email-section .tablenav,.give-settings-email-settings-section .tablenav{display:none}.give-settings-admin-email-section .tablenav.bottom+.give-setting-tab-header-emails,.give-settings-donor-email-section .tablenav.bottom+.give-setting-tab-header-emails,.give-settings-email-settings-section .tablenav.bottom+.give-setting-tab-header-emails{margin:20px 0}.give-settings-admin-email-section .tablenav.bottom+.give-setting-tab-header-emails hr,.give-settings-donor-email-section .tablenav.bottom+.give-setting-tab-header-emails hr,.give-settings-email-settings-section .tablenav.bottom+.give-setting-tab-header-emails hr{display:block}.giveemailnotifications .check-column{padding:13px 20px 0 10px!important}.giveemailnotifications td.check-column input{display:none}.giveemailnotifications th.check-column .give-email-notification-status{color:#fff;cursor:pointer}.giveemailnotifications th.check-column .give-email-notification-status[data-edit="1"] i.dashicons{border-radius:1em;padding:2px}.giveemailnotifications th.check-column .give-email-notification-disabled:hover .dashicons-no-alt,.giveemailnotifications th.check-column .give-email-notification-enabled .dashicons-yes{background:#46b450}.giveemailnotifications th.check-column .give-email-notification-enabled .dashicons-lock{color:#46b450}.giveemailnotifications th.check-column .give-email-notification-disabled .dashicons-no-alt,.giveemailnotifications th.check-column .give-email-notification-enabled:hover .dashicons-yes{background:#bbb}.giveemailnotifications th.check-column .give-email-notification-disabled .dashicons-lock{color:#bbb}.giveemailnotifications th.check-column .dashicons-no-alt:hover:before{content:"\f147"!important}.giveemailnotifications th.check-column .dashicons-yes:hover:before{content:"\f335"!important}.giveemailnotifications .spinner.is-active{margin:0 2px 0 0;float:none}#system-info-textarea{width:800px;height:600px;font-family:Menlo,Monaco,monospace;background:#fff;white-space:pre;overflow:auto;display:block;direction:rtl}#give-download-sysinfo{margin:0}#api .tablenav .actions{overflow:visible}a.give-delete{color:#a00}.give-table thead th{padding:8px 10px!important}.post-type-give_forms .mce-container iframe,.post-type-give_forms .wp-editor-area{min-height:400px}.give-field-description{color:#aaa;font-style:italic;margin:0;padding-top:.5em}.give-image-thumb{position:relative;margin-top:14px}.give-image-thumb span.give-delete-image-thumb{position:absolute;background:red;color:#fff;border-radius:30px;right:-10px;top:-10px;cursor:pointer}.give-image-thumb img{max-width:250px;border:4px solid #fff}.give_email_access_link_tag{display:none}.give-license-settings-wrap{max-width:1240px;min-width:1000px;margin:20px -10px 0 0;padding:0}.give-license-top-widget{border:1px solid #dbdbdb;min-height:250px}.give-license-top-widget .give-license-widget-heading{font-size:20px;margin:0 0 15px;padding:0 0 15px;border-bottom:1px solid #dbdbdb;line-height:1.2em}.give-license-top-widget .give-license-widget-heading .dashicons{height:25px;width:25px;font-size:28px;margin:-5px 0 0 10px}.give-license-top-widget .give-field-description{margin:0 0 20px;padding:0}#give-license-activator-wrap{background:#fff;margin:0;padding:30px}#give-license-activator-wrap .give-license-activation-form{background:#f4f4f4;padding:10px;position:relative}#give-license-activator-wrap .give-license-notices{position:absolute;background:#f4f4f4;top:0;right:0;height:100%;width:100%;padding:20px;z-index:3;box-sizing:border-box;display:none}#give-license-activator-wrap .give-license-notices .notice{position:relative;padding-left:40px}#give-license-activator-wrap #give-license-activator{font-size:22px;height:55px;padding:0 15px;margin:0 0 10px;width:100%}#give-license-activator-wrap .button{height:45px;width:100%;font-size:18px;display:block;clear:both;margin:0}#give-addon-uploader-wrap{background:#fff;padding:30px 25px 25px;margin:0}.give-upload-addon-form-wrap{position:relative}.give-upload-addon-form-wrap .give-upload-addon-instructions{margin:0;padding:0;opacity:.4;font-size:16px}.give-upload-addon-form-wrap .give-upload-addon-instructions span{display:block;margin:8px 0;font-size:14px}.give-upload-addon-form-wrap #give-upload-addon-file-select{display:none}.give-upload-addon-form-wrap .give-spinner-wrap{position:absolute;right:0;top:0;left:0;bottom:0;z-index:99;background-color:#fff}.give-upload-addon-form-wrap .give-spinner-wrap .give-spinner-inner{margin-top:5%;margin-right:42%}.give-upload-addon-form{background:#f4f4f4;padding:25px;text-align:center;outline:2px dashed #e2e2e2;outline-offset:-10px;transition:outline-offset .15s ease-in-out,background-color .15s linear;position:relative}.give-upload-addon-form.give-dropzone-active{outline-offset:-13px;outline:2px dashed #c6c6c6;background:#eaeaea}.give-upload-addon-form .give-addon-upload-notices{position:absolute;background:hsla(0,0%,100%,.66);top:0;right:0;height:100%;width:100%;padding:20px;z-index:3;text-align:right;box-sizing:border-box;display:none}.give-upload-addon-form .give-activate-addon-wrap{display:none;border:1px solid #dbdbdb;background:#fff;position:absolute;padding-top:20px;top:0;right:0;height:100%;width:100%;z-index:4;box-sizing:border-box}.give-upload-addon-form .give-activate-addon-wrap .dashicons{color:#66bb6a}#give-licenses-container{position:relative}#give-licenses-container .give-spinner-wrap{position:absolute;right:0;top:0;left:0;bottom:0;z-index:99;background-color:#fff}#give-licenses-container .give-spinner-wrap .give-spinner-inner{margin-top:5%;margin-right:45%}.give-licenses-list-header{margin:20px 0 30px;padding:0}.give-licenses-list-header h2{float:right;margin:0 0 20px;padding:0;font-size:18px}.give-licenses-list-header #give-refresh-button-wrap{float:right;margin:-6px 25px 0 0}.give-licenses-list-header #give-refresh-button-wrap #give-last-refresh-notice{margin:0 10px 0 0;line-height:28px;color:#666}.give-licenses-list-header hr{clear:both}.give-addon-wrap{border:1px solid #dbdbdb;background:#fff;padding:0;margin:0 0 20px;position:relative}.give-addon-wrap .give-license-top{background:#f4f4f4;border-bottom:1px solid #dbdbdb;display:flex;color:#333}.give-addon-wrap .give-license-notice-container.give-addon-notice-shown{background:#f4f4f4;border-bottom:1px solid #dbdbdb;padding:30px}.give-addon-wrap .give-license-notice-container.give-addon-notice-shown .notice{margin:0}.give-addon-wrap .give-license-top-header{display:block;font-size:15px;margin:0 0 20px;font-weight:700;color:#23282d}.give-addon-wrap .give-license-top-column{float:right;padding:30px;flex:1}.give-addon-wrap .give-license-top-column.give-license-info-field-wrap,.give-addon-wrap .give-license-top-column.give-license-key-field-wrap{border-left:1px solid #dbdbdb}.give-addon-wrap .give-license-top-column.give-license-key-field-wrap{flex:1.45;padding-left:10px}.give-addon-wrap .give-license-top-column.give-license-info-field-wrap .give-field-description{padding-top:0}.give-addon-wrap .give-license__status{margin:10px -4px 0 0;padding:0}.give-addon-wrap .give-license__status .dashicons-yes{color:#66bb6a}.give-addon-wrap .give-license__status .dashicons-no{color:#a00}.give-addon-wrap .give-license__key{display:inline-block}.give-addon-wrap .give-license__key input[type=text]{margin:0 0 0 10px}.give-addon-wrap .give-license__key button{font-size:15px;position:relative;top:-1px}@media (min-width:1400px){.give-addon-wrap .give-license__key input[type=text]{min-width:290px;height:40px;font-size:18px;padding:10px}.give-addon-wrap .give-license__key button{width:110px;height:40px}}@media (max-width:1399px){.give-addon-wrap .give-license__key input[type=text]{min-width:230px;height:35px;font-size:15px;padding:8px}.give-addon-wrap .give-license__key button{width:85px;height:35px;font-size:1em}}.give-addon-wrap .give-license-action-link{display:block;margin:0 0 15px;box-shadow:none}.give-addon-wrap .give-license-renewal-date .dashicons{opacity:.8;margin:0 0 0 3px;position:relative;top:-2px}.give-addon-wrap .give-license-activations-remaining-icon{border-radius:100%;height:20px;width:20px;display:inline-block;padding:1px;font-size:12px;line-height:20px;text-align:center;font-weight:700;margin:0 0 0 2px}.give-addon-wrap .give-plugin__info{padding:6px 9px}.give-addon-wrap .give-plugin__status{border:none;padding:0 5px;line-height:20px!important}.give-addon-info-wrap{margin:30px;padding:20px;background:#f4f4f4;border:1px solid #dbdbdb;color:#333}.give-addon-info-wrap .give-addon-info-left{float:right}.give-addon-info-wrap .give-addon-name{font-weight:700;font-size:14px}.give-addon-info-wrap .give-addon-version{font-size:11px;margin:0 20px 0 0}.give-addon-info-wrap .give-addon-info-right{float:left}.give-addon-info-wrap .give-addon-info-right .give-button{margin:-5px 0 0;position:relative;top:2px}.give-addon-info-wrap .give-addon-info-right .give-button .dashicons{font-size:14px;width:14px;height:14px;margin-left:3px;margin-top:5px}.give-addon-info-wrap .give-addon-activation-status{border-radius:4px;color:#fff;background:#777;padding:3px 8px;margin:0 0 0 15px;font-size:11px}.give-addon-info-wrap .give-addon-activation-status__activated{background:#7ad03a;text-shadow:0 0 1px #4b8420}.give-addon-info-wrap .give-addon-view-changelog{margin:0 0 0 15px;font-size:12px}.give-filters{clear:both;background:#f5f5f5;border:1px solid #dfdfdf;padding:12px 12px 0}.give-filters .give-donation-forms-filter .chosen-single{height:28px;line-height:28px}.give-filters .chosen-container-single .chosen-single div b{background-position:100% 4px}.give-filters .chosen-container-active.chosen-with-drop .chosen-single div b{background-position:-18px 6px}.give-filters #give-payment-form-filter,.give-filters #give_donation_forms_filter{display:inline-block;width:300px}@media screen and (max-width:782px){.give-filters #give-payment-form-filter,.give-filters #give_donation_forms_filter{width:100%}}.give-filters #give-payment-date-filters label,.give-filters #give-payment-form-filter label{vertical-align:initial}.give-filters #give-payment-date-filters label.give-donation-forms-filter-label,.give-filters #give-payment-form-filter label.give-donation-forms-filter-label{vertical-align:middle}.give-filters #give_donation_forms_filter{width:255px}@media screen and (max-width:782px){.give-filters #give_donation_forms_filter{width:100%;max-width:100%}}.give-filters:after{content:"";display:table;clear:both}.give-filter{display:block;margin-bottom:12px;width:100%}.give-filter:after{content:"";display:table;clear:both}.give-filter label{display:block;margin-left:4px}.give-filter input{margin:0}.give-filter input[type=text]{height:28px;width:100%}.give-filter input[type=search],.give-filter input[type=text]{height:28px}.give-filter .button{height:28px;line-height:26px;margin:0;padding:0 10px 1px}.give-filter select{width:100%}@media screen and (min-width:783px){.give-filter{float:right;margin-left:18px;width:auto}.give-filter label{display:inline-block}.give-filter input[type=text]{display:inline-block;width:144px}}.give-filter-search input[type=search]#give-payments-search-input{display:block;float:right;width:205px;max-width:100%}.give-filter-search input[type=submit]{display:block;float:left;width:30%}@media screen and (min-width:783px){.give-filter-search input[type=search]{display:inline-block;margin-left:4px;width:auto}.give-filter-search input[type=submit]{display:inline-block;width:auto}}@media screen and (min-width:600px){.give-filter-half{float:right;width:49%}.give-filter-half:last-child{float:left}}@media screen and (min-width:783px){.give-filter-half{width:auto}.give-filter-half:last-child{float:right}.give-filter-half input[type=text]{width:96px}}.give-clear-filters-button{margin-right:8px}.give-submit-wrap{clear:both;background:#f5f5f5;border:1px solid #dfdfdf;margin:8px 0;padding:12px;font-size:13px;line-height:2.1em}#give-payment-filters ul.subsubsub{margin-bottom:8px}#give-payments-advanced-filter ul.subsubsub{margin-bottom:12px}#give-payments-filter .tablenav.top{float:none}#give-payments-filter .tablenav.top .bulkactions{margin-top:1px;padding-top:0}#give-payments-filter .give-email-column-value{font-size:14px;font-weight:700}#give-payments-filter #the-list .check-column input{margin-top:1px}#give-payments-filter .column-details{width:50px}#give-payments-filter .column-amount{width:120px}tr.status-refunded td{background:#cecece;border-top-color:#ccc}.wp-list-table.forms th#date{width:140px}.give-mobile-link{line-height:32px;vertical-align:middle}.give-mobile-link img{max-width:80%;height:auto;float:right}.give-donation-status>span{display:inline-block;width:12px;height:12px;position:relative;top:1px;margin:0;padding:0;border-radius:50%;background:#888;line-height:16px}.give-donation-status.status-pending>span{background-color:#ffba00}.give-donation-status.status-complete>span,.give-donation-status.status-publish>span{background-color:#7ad03a}.give-donation-status.status-refunded>span{background-color:#777}.give-donation-status.status-failed>span{background-color:#a00}.give-donation-status.status-abandoned>span{background-color:#333}.give-donation-status.status-revoked>span{background-color:#d9534f}.give-donation-status.status-give_subscription>span,.give-donation-status.status-renewal>span,.give-donation-status.status-subscription>span{background-color:#5bc0de}#test-payment-label{padding:.2em .4em .3em;font-size:11px;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em;background-color:#ffba00;margin:0 15px;vertical-align:middle}#test-payment-label:hover{color:#fff;text-decoration:none}#give-payments-filter .give-payment-id{padding:.2em .4em .3em;font-size:11px;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em;font-weight:400}#give-payments-filter .give-payment-id:hover{color:#fff;text-decoration:none}#give-payments-filter .column-details{padding-left:30px}#give-payments-filter .give-donation-status{display:inline-block}#give-order-update .give-donation-status{display:inline-block;float:none;margin:0 10px;position:relative;top:3px}#give-order-update .give-order-top{border-bottom:1px solid #eee;overflow-x:auto;white-space:nowrap;width:100%}#give-order-update .give-order-top h3.hndle{float:right;border:none;display:inline-block}#give-order-update .give-order-top .delete-donation{display:inline-block;float:left}#give-order-update .give-order-top .delete-donation a{width:18px;height:16px;display:block;margin:11px 15px;content:"\f182";font-size:18px;color:#b5b5b5}#give-order-update .give-order-top .delete-donation a:focus,#give-order-update .give-order-top .delete-donation a:hover{color:red;box-shadow:none}.column-donation_form .donation-level-text-wrap{font-style:italic;display:block}@media handheld,only screen and (max-width:640px){.wp-list-table.forms th{width:auto!important}}.download_page_give-payment-history .ui-dialog .ui-dialog-titlebar-close span{margin-right:-8px;margin-top:-8px}.give-admin-box .label{font-weight:600}.give-admin-box-inside{margin:0;padding:3px 10px;clear:both;border-bottom:1px solid #eee;word-break:break-word}.give-admin-box-inside .strong{font-weight:600}.give-admin-box .right{float:left}#give-order-details .inside,#give-order-update .inside{margin:0;padding:0}#give-order-update input.give_datepicker{width:180px}#give-order-update input[type=number].give-payment-time-hour,#give-order-update input[type=number].give-payment-time-min{width:50px}.give-admin-box-inside:last-child{border-bottom:0}#give-edit-order-form .data-payment-key{word-break:break-all}.give-order-update-box #major-publishing-actions .button-secondary{margin-left:10px}#give-donation-overview th{text-align:right}#give-donation-overview .give-select-chosen{width:97%}#give-edit-order-form .row{margin-top:10px}#give-donation-overview ul,#give-donor-details .order-data-address input,#give-donor-details .order-data-column p.data input,#give-edit-order-form .column input,#give-order-address-country-wrap select{clear:both;display:block}.give-order-data input.small-text{margin:0}#give-order-update span.label{display:inline;width:50px}.give-order-update-box .button-primary{margin-left:0}#give-edit-order-form .column .description{padding-left:10px}#give-donation-overview .inside>ul>li,#give-donation-overview .row>ul>li,#give-edit-order-form .column{display:inline-block;position:relative;vertical-align:top}#give-donation-overview ul{font-size:0}#give-donation-overview ul li{font-size:13px}#give-donation-overview ul li.actions{text-align:left;min-width:200px}#give-donation-overview ul li.remove{text-align:left}#give-donation-overview ul .row{padding:12px;border-bottom:1px solid #eee}#give-order-data .data span{color:#666;font-weight:600}input.give-price-field{width:80px;padding:3px 5px}.give_forms_page_give-payment-history.js .postbox .hndle{cursor:default}#give-payment-notes textarea{min-height:150px}#give-payment-notes #give-add-payment-note{margin:6px 0 15px}#give_comment{min-height:150px}#give-billing-details .column>div{margin:0 0 10px}#give-billing-details label{display:block;margin-bottom:5px}#give-billing-details .column-container{padding:5px 0 10px}#give-billing-details input[type=text]{width:98%}#give-billing-details .chosen-container{width:98%!important}@media screen and (min-width:1200px){#give-edit-order-form .column{width:33%}#give-order-address .column{width:49%}#give-donation-overview.columns-4 li.actions{width:25%;margin-top:0;margin-left:0}}@media screen and (max-width:1199px){#give-edit-order-form .column{width:49%}}@media screen and (max-width:782px){.order-data-column input[type=email]{padding:6px 10px}}#give-donation-overview .inside,#give-donor-details .inside{margin-top:0}.give_forms_page_give-payment-history #give-dashboard-widgets-wrap #side-sortables{padding-top:0}.give-select-chosen .spinner{position:absolute;left:5px;top:2px;z-index:999}.give-select-chosen-ajax .spinner{visibility:visible}.give-select-chosen-ajax.chosen-container-single .chosen-search input[type=text],.give-select-chosen-ajax .chosen-search input[type=text]{background-image:none!important}.give-dashboard-widget .give-dashboard-today{text-align:center}.give-dashboard-widget .give-dashboard-today .give-dashboard-date-today{margin:10px 0 0;padding:0}.give-dashboard-widget .give-dashboard-today .give-dashboard-happy-day{padding:3px;margin:0}.give-dashboard-widget .give-dashboard-today .give-dashboard-today-earnings{font-size:42px;color:#4ead61;font-weight:700;margin:15px 0 0;line-height:1}.give-dashboard-widget .give-dashboard-today .give-donations-today{font-size:18px;font-weight:700;margin:0 0 30px;padding:4px 0 1px}.give-dashboard-widget .give-dashboard-today .give-last-seven{font-size:14px;font-weight:700;padding:0;margin:0 0 30px}.give-dashboard-widget .give-table-stats{width:100%;text-align:center;margin:0;table-layout:fixed;border-top:1px solid #ececec;border-spacing:0}.give-dashboard-widget .give-table-stats .give-dashboard-stat-total,.give-dashboard-widget .give-table-stats .give-dashboard-stat-total-label{padding:0;margin:0}.give-dashboard-widget .give-table-stats .give-dashboard-stat-total{color:#4ead61;font-weight:700;font-size:16px}#give_dashboard_sales>.inside{padding:0}#give_dashboard_sales .give-table-stats td{padding:10px 0}#give_dashboard_sales .give-table-stats td:first-of-type{border-left:1px solid #ececec}#give_dashboard_sales .give-table-stats tr#give-table-stats-tr-1 td{border-bottom:1px solid #ececec}#dashboard_right_now .give-forms-count:before{font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:18px;width:18px;height:18px;content:"\e800"}.give-range_slider_field{margin-top:.8rem}.give_forms_page_give-donors .wp-heading-inline+.notice:first-of-type{margin-top:25px}.give_forms_page_give-donors .give-nav-tab-wrapper{margin:10px -20px 20px}.give_forms_page_give-donors #give-donors-filter{position:relative}.give_forms_page_give-donors #give-donors-filter p.search-box{margin:0}.give_forms_page_give-donors #give-donors-search-filter{display:block;overflow:hidden}.give_forms_page_give-donors #give-donor-card-wrapper{margin-right:-1px;z-index:2;min-height:200px}.give_forms_page_give-donors #give-donor-card-wrapper input{font-weight:400}.give_forms_page_give-donors #give-donor-card-wrapper .donor-section{border-bottom:1px solid #eee;margin-bottom:10px}.give_forms_page_give-donors #give-donor-card-wrapper .donor-section .give-donor-search-box{margin-left:25px;width:auto;display:inline-block;float:right}.give_forms_page_give-donors #give-donor-card-wrapper .donor-section table{margin-bottom:0}.give_forms_page_give-donors #give-donor-card-wrapper>div:first-child{padding-top:20px}.give_forms_page_give-donors #give-donor-card-wrapper>div:last-child{padding-bottom:20px;border:none}.give_forms_page_give-donors #give-donor-card-wrapper .avatar-wrap{padding:0 0 15px 15px;text-align:center;float:right}.give_forms_page_give-donors #give-donor-card-wrapper .avatar-wrap img{border-radius:50%}.give_forms_page_give-donors #give-donor-card-wrapper a.delete{text-decoration:none;color:red;margin-left:5px}.give_forms_page_give-donors #give-donor-card-wrapper .donor-bio-header .donor-since{margin:10px 0;font-size:16px}.give_forms_page_give-donors #give-donor-card-wrapper .donor-bio-header .donor-id{display:inline-block;font-size:24px;font-weight:600;margin-left:10px}.give_forms_page_give-donors #give-donor-card-wrapper .donor-bio-header .donor-name-wrap{display:inline-block}.give_forms_page_give-donors #give-donor-card-wrapper .donor-bio-header .donor-edit-link{margin-bottom:15px}.give_forms_page_give-donors #give-donor-filters .give-donor-search-box{display:inline-block;float:right;margin-left:18px}.give_forms_page_give-donors #give-donor-filters .give-donor-search-box input#give-donors-search-input{width:205px;max-width:100%}.give_forms_page_give-donors #give-donor-filters label{vertical-align:initial}.give_forms_page_give-donors #give-donor-filters label.give-donation-forms-filter-label{vertical-align:middle}.give_forms_page_give-donors .donor-main-wrapper{clear:both;margin:0 0 20px}@media (max-width:655px){.give_forms_page_give-donors .donor-main-wrapper{width:100%}}.give_forms_page_give-donors .donor-main-wrapper table{margin:0}.give_forms_page_give-donors .donor-main-wrapper input[type=email],.give_forms_page_give-donors .donor-main-wrapper input[type=number],.give_forms_page_give-donors .donor-main-wrapper input[type=text]{width:200px}.give_forms_page_give-donors #donor-summary{padding:0 20px}.give_forms_page_give-donors #donor-summary:after{font-family:dashicons;content:"\f110";position:absolute;top:10px;left:10px;font-size:100px;color:#f0f0f0;z-index:0}.give_forms_page_give-donors #give-donor-card-wrapper .donor-address-wrapper{width:202px}.give_forms_page_give-donors #give-donor-card-wrapper .donor-address-wrapper span[data-key=line2]{display:table;clear:both}.give_forms_page_give-donors #give-donor-card-wrapper .donor-address-wrapper select{width:200px}.give_forms_page_give-donors #give-donor-card-wrapper .donor-info{min-height:185px}.give_forms_page_give-donors #give-donor-card-wrapper .info-wrapper{min-height:125px}.give_forms_page_give-donors .donor-info .donor-name{font-size:24px;font-weight:600}.give_forms_page_give-donors #disconnect-donor,.give_forms_page_give-donors #view-user-profile{font-size:12px;font-weight:400;text-decoration:none}.give_forms_page_give-donors #donor-edit-actions{text-align:center;margin-bottom:20px;line-height:28px}.give_forms_page_give-donors #donor-edit-actions .button-secondary{margin-left:10px}.give_forms_page_give-donors #give-donor-card-wrapper .edit-item{display:none}.give_forms_page_give-donors #give-donor-card-wrapper .give_user_search_results{right:1px;top:16px}.give_forms_page_give-donors #give-donor-card-wrapper .give_user_search_results ul{width:200px}.give_forms_page_give-donors #donor-stats-wrapper{margin:0 auto;text-align:center;padding:15px}.give_forms_page_give-donors #donor-stats-wrapper ul{margin:0;padding:0;overflow:hidden}.give_forms_page_give-donors #donor-stats-wrapper ul li{width:50%;float:right;line-height:22px;font-size:14px;margin:0}.give_forms_page_give-donors #donor-stats-wrapper a{text-decoration:none}.give_forms_page_give-donors #donor-stats-wrapper .dashicons{color:#888}.give_forms_page_give-donors #donor-tables-wrapper table{width:100%;text-align:center}.give_forms_page_give-donors #donor-tables-wrapper th{text-align:center}.give_forms_page_give-donors #donor-tables-wrapper .donations tr>td:first-child,.give_forms_page_give-donors #donor-tables-wrapper .donations tr>th:first-child,.give_forms_page_give-donors #donor-tables-wrapper .emails tr>td:first-child,.give_forms_page_give-donors #donor-tables-wrapper .emails tr>th:first-child{text-align:right}.give_forms_page_give-donors #donor-tables-wrapper .donations tr>td:only-child{text-align:center}.give_forms_page_give-donors #donor-notes-wrapper{min-height:50px}.give_forms_page_give-donors .donor-notes-header img,.give_forms_page_give-donors .donor-notes-header span{font-weight:600;line-height:30px;vertical-align:middle}.give_forms_page_give-donors .donor-note-input{width:100%;margin-bottom:5px}.give_forms_page_give-donors #give-donor-notes div:nth-of-type(2n){background-color:#f9f9f9}.give_forms_page_give-donors #give-donor-notes .donor-note-wrapper{border-bottom:1px solid #f9f9f9;min-height:38px;padding:0}.give_forms_page_give-donors #give-donor-notes .donor-note-wrapper .note-content-wrap{padding:10px 12px;line-height:20px;font-size:14px}.give_forms_page_give-donors #give-donor-notes .give-no-donor-notes{text-align:center;padding:20px}.give_forms_page_give-donors .donor-note-wrapper span{display:block}.give_forms_page_give-donors .delete-donor{text-align:center}.give_forms_page_give-donors .give-lock-block{margin-right:-25px;text-decoration:none;font-size:14px;margin-left:3px}.give_forms_page_give-donors .give-lock-block i{color:#000;font-size:14px}.give_forms_page_give-donors #donor-address-wrapper .give-no-address-message{margin:.5rem 1%;line-height:3.4em}.give_forms_page_give-donors #donor-address-wrapper .give-donor-addresses .inside{padding-bottom:0}.give_forms_page_give-donors #donor-address-wrapper .add-new-address{margin:.5rem 1%!important}.give_forms_page_give-donors #donor-address-wrapper .add-new-address-form-hidden{position:absolute;left:13px;right:13px;top:0;visibility:hidden}.give_forms_page_give-donors #donor-address-wrapper .all-address .address{min-height:146px;border:1px solid #dad9d9;padding:9px;border-radius:5px;background-color:#fff}.give_forms_page_give-donors #donor-address-wrapper .all-address .address .address-number-label{color:grey;cursor:default}.give_forms_page_give-donors #donor-address-wrapper .all-address .address a{text-decoration:none}.give_forms_page_give-donors .comments td:nth-child(3n){text-align:right}.give_forms_page_give-donors .give-donor-admin-avatar{width:40px;height:40px;border-radius:50%;border:1px solid #e5e5e5;float:right;vertical-align:middle;margin-left:10px;line-height:40px;text-align:center}.give_forms_page_give-donors .give-donor-admin-avatar img{border-radius:50%;width:40px;height:40px}.give_forms_page_give-donors .give-donor-name-text{font-weight:600;font-size:14px}.give_forms_page_give-donors .give-donor-id{color:#555}.give_forms_page_give-donors .give-donor-name:focus{box-shadow:none;outline:none}.give_forms_page_give-donors #donor-avatar .give-donor-admin-avatar,.give_forms_page_give-donors #donor-avatar img{width:96px;height:96px;line-height:96px;margin-left:0;font-size:36px}@media screen and (max-width:782px){#wp-content-media-buttons a.give-thickbox{padding:6px 14px;line-height:normal;font-size:14px;height:auto}.wp-media-buttons span#give-media-button{margin-top:0!important;margin-right:2px!important}}.mce-primary.mce-give-primary button{padding-left:10px;padding-right:10px}.wp-core-ui .give-admin-button{padding-right:7px;padding-left:7px}.give-admin-button-icon{display:inline-block;width:18px;height:18px;vertical-align:text-top;margin:0 2px}.give-admin-button-icon:before{font:400 18px/1 dashicons;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.give-admin-button-icon-update:before{content:"\f463"}.give-status-table{margin-bottom:1em}.give-status-table h2{font-size:14px;margin:0}.give-status-table tr:nth-child(2n) td,.give-status-table tr:nth-child(2n) th{background:#fcfcfc}.give-status-table th{font-weight:700;padding:9px}.give-status-table td:first-child{width:33%}.give-status-table td.help{width:1em}.give-status-table td{padding:9px;font-size:1.1em}.give-status-table td mark{background:transparent none}.give-status-table td mark.yes{color:#7ad03a}.give-status-table td mark.no{color:#999}.give-status-table td mark.error{color:#a00}.give-status-table td ul{margin:0}.wrap div.give-debug-report-wrapper{margin-bottom:5px}.wrap div.give-debug-report-wrapper p{font-size:18px;margin:1em 0 .7em;padding:0}.wrap div.give-debug-report-wrapper .give-debug-report-actions{margin:0 0 1.7em}.wrap div.give-debug-report-wrapper .give-debug-report-actions .js-give-debug-report-button{margin-left:10px}.wrap div.give-debug-report-wrapper .give-debug-report-actions .dashicons{font-size:16px;position:relative;top:4px;right:-2px}.give-debug-report{display:none;margin:10px 0;padding:0;position:relative}.give-debug-report textarea{font-family:monospace;width:100%;margin:0;height:300px;padding:20px;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;resize:none;font-size:12px;line-height:20px;outline:0}.give-progress{height:15px;width:95%;border-radius:4px;overflow:hidden;background-color:#f5f5f5}.give-progress>div{height:100%;width:0}.admin-color-fresh .give-progress div,.give-progress div{background:#0073aa}.admin-color-light .give-progress div{background:#888}.admin-color-blue .give-progress div{background:#096484}.admin-color-coffee .give-progress div{background:#c7a589}.admin-color-ectoplasm .give-progress div{background:#a3b745}.admin-color-midnight .give-progress div{background:#e14d43}.admin-color-sunrise .give-progress div{background:#dd823b}.give-spinner-wrapper{position:absolute;right:0;left:0;bottom:0;top:0;background:hsla(0,0%,96.1%,.57);z-index:1;display:none}.give-spinner-wrapper.is-active{display:inline-block}.give-spinner-wrapper .aligncenter{position:absolute;top:50%;right:50%;margin:10px 0 0 10px}.give-spinner.spinner.is-active{margin:0 2px 0 0;float:none}ul.give-radio-inline input,ul.give-radio-inline li{display:inline-block!important}.chosen-container a{transition:none}.give-width-25em{width:25em}.give-spinner-wrap{position:relative}.give-spinner-wrap .spinner{float:none;margin-top:0;margin-left:0}.give-update-panel-content p{font-size:16px}#give-updates .give-update-panel-content{margin:0 0 30px}#give-updates .give-update-panel-content p{font-size:17px;font-style:italic;margin:0}#give-updates .dashicons-no-alt{color:red}#give-updates .dashicons-yes{color:green}#give-updates #give-db-updates .spinner{margin-top:0}#give-updates #give-updates-content{max-width:1200px}#give-updates .give-update-paused-text-p{margin:0 0 0 20px;line-height:30px;font-style:italic;font-size:14px}body.give_forms_page_give-updates .give-run-update-containt .give-run-update-button{margin-left:10px}.give-blank-slate{background:#fff;border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04);margin:0 auto;padding:40px;text-align:center}.give-blank-slate :last-child{margin-bottom:0}.give-blank-slate__cta,.give-blank-slate__heading,.give-blank-slate__help,.give-blank-slate__message{margin:0 0 10px}.give-blank-slate__image{display:block;height:80px!important;margin:0 auto 10px;width:auto}.give-blank-slate__select{margin-bottom:20px}.give-blank-slate__help{color:#666;font-style:italic}.give-blank-slate__help a{display:inline-block;text-decoration:underline}.give-blank-slate a.give-blank-slate__cta{display:inline-block;font-size:1.2em;height:auto;margin:0 0 10px;padding:.75em 1.5em}.chosen-container-single .chosen-single{background:#fff;height:30px;line-height:30px;border:1px solid #7e8993;box-shadow:none}.chosen-container-single .chosen-single span{font-size:14px}.chosen-container-single .chosen-single div b,.chosen-container-single.chosen-with-drop .chosen-single div b{background-position-y:4px}.chosen-container-active.chosen-with-drop .chosen-single{background:#fff}.chosen-container .chosen-results li.highlighted{background:#3875d7;color:#fff}.chosen-container-multi .chosen-choices{border:1px solid #aaa;background-image:none}.chosen-container-multi .chosen-choices li.search-choice{background-image:none}.give-tools-setting-page-import h1.handle{padding:15px 0 0}.give-tools-setting-page-import .give-progress-steps{width:100%;padding:0 0 24px;margin-right:0;list-style:none outside;overflow:hidden;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex}.give-tools-setting-page-import .give-progress-steps li{width:25%;float:right;padding:0 0 1.2em;margin:0;text-align:center;position:relative;border-bottom:4px solid #ccc;line-height:1.4em}.give-tools-setting-page-import .give-progress-steps li.active{border-color:#4ead61;color:#4ead61}.give-tools-setting-page-import .give-progress-steps li.active:before{border-color:#4ead61;color:#4ead61;background:#4ead61}.give-tools-setting-page-import .give-progress-steps li:before{content:"";border:4px solid #ccc;border-radius:100%;width:10px;height:10px;position:absolute;bottom:0;right:50%;margin-right:-6px;margin-bottom:-10px;background:#fff}.give-tools-setting-page-import .step-4 h2{text-align:center;font-size:20px!important}.give-tools-setting-page-import .step-4 p{text-align:center}.give-tools-setting-page-import .button-secondary.step-4,.give-tools-setting-page-import .give-image-thumb{display:none}.give-tools-setting-page-import h2#give-import-title{background:#f3f3f3;font-size:15px;font-weight:600;margin:-8px -22px 11px;padding:12px 22px}.give-tools-setting-page-import table.step-2 h2#give-import-title{font-size:small;font-weight:inherit}.give-tools-setting-page-import table.step-2 .give-import-donation-required-fields-title{font-size:18px;font-weight:600;margin:0}.give-tools-setting-page-import table.step-2 .give-import-donation-required-fields{white-space:nowrap;overflow:hidden}.give-tools-setting-page-import table.step-2 .give-import-donation-required-fields li{display:inline-block;margin:0 0 0 10%}.give-tools-setting-page-import table.step-2 .give-import-donation-required-fields li span.give-import-donation-required-symbol{border-radius:1em;vertical-align:middle;padding:2px;background:#46b450;color:#fff}.give-tools-setting-page-import table.step-2 .give-import-donation-required-fields li span.dashicons-no-alt{background:#bbb}.give-tools-setting-page-import .give-progress{margin-top:7px}.give-import-core-settings .give-progress-steps li{width:33.33%}.give-import-core-settings .step-3 h2{text-align:center;font-size:20px!important}.give-import-core-settings .step-3 p{text-align:center}form.give-import-form table.widefat{border:none}.wrap .give-importer-h1{margin:0;padding:20px 0}.give-tools-setting-page #give-export_donations-form table{padding-right:10px}.give-tools-setting-page #give-export_donations-form table tbody h2{padding:8px 0 0}.give-tools-setting-page #give-export_donations-form table tbody td.row-title{width:30%;vertical-align:top}.give-tools-setting-page #give-export_donations-form table tbody td ul.give-export-option-ul{margin-top:5px}.give-tools-setting-page #give-export_donations-form table tbody p.give-field-description{display:table;width:100%}.give-tools-setting-page #give-export_donations-form table tbody .add-notices{margin-top:15px}.give-tools-setting-page #give-export_donations-form table tbody .add-notices .give-progress{margin-top:7px}.give-tools-setting-page #give-export_donations-form table tbody .chosen-container-multi .chosen-choices{min-height:30px}.give-tools-setting-page #give-export_donations-form table tbody .chosen-container-multi .chosen-choices li{margin:4px 0 4px 4px}.give-tools-setting-page #give-export_donations-form .give-export-option{display:flex;flex-flow:row wrap;border-top:1px solid #e5e5e5;border-right:1px solid #e5e5e5}.give-tools-setting-page #give-export_donations-form .give-export-option ul{margin-bottom:1rem}.give-tools-setting-page #give-export_donations-form .give-export-option ul li{position:relative;margin-bottom:.7rem;padding:0 1rem}.give-tools-setting-page #give-export_donations-form .give-export-option ul li label{display:block;padding-right:22px}.give-tools-setting-page #give-export_donations-form .give-export-option ul li label input{position:absolute;top:6px;right:15px}.give-tools-setting-page #give-export_donations-form .give-export-option ul .give-export-option-label{font-size:15px;font-weight:500;border-bottom:1px solid #e5e5e5;margin-bottom:1rem;padding:1rem}.give-tools-setting-page #give-export_donations-form .give-export-option>li{border-left:1px solid #e5e5e5;border-bottom:1px solid #e5e5e5;width:33%;margin-bottom:0}.give-tools-setting-page .give-export-donors .give-progress{margin-top:7px}#give-export-donations .give_forms_categories,#give-export-donations .give_forms_tags{min-width:250px;margin:0 0 10px;display:block}#give-export-donations .give_forms_categories input,#give-export-donations .give_forms_tags input{color:#999}#give-export-donations div.chosen-container ul.chosen-choices{border:1px solid #ddd}#give-export-donations div.chosen-container ul.chosen-choices input.chosen-search-input{border:1px solid #ddd;height:20px}#give-export-donations select{vertical-align:inherit;margin:0;height:26px;line-height:26px;border:1px solid #ddd}@media only screen and (max-width:1080px){.give-tools-setting-page #give-export_donations-form .give-export-option>li{width:49.5%}}@media only screen and (max-width:782px){.give-tools-setting-page #give-export_donations-form .give-export-option>li{width:49.5%}.give-tools-setting-page #give-export_donations-form .give-export-option ul li label{padding-right:32px}.give-tools-setting-page #give-export_donations-form .give-export-option ul li label input{top:0}}.give-admin-progress-bar{height:8px;position:relative;background:#eee;border-radius:25px;overflow:hidden;margin:5px 0 2px}.give-admin-progress-bar>span{display:block;height:100%;border-top-left-radius:8px;border-bottom-left-radius:8px;border-top-right-radius:20px;border-bottom-right-radius:20px;background-color:#2bc253;position:relative;overflow:hidden}.give-admin-goal-achieved>.dashicons{color:#ffba00;font-size:13px;height:16px;width:13px;line-height:18px}#give-form-goal-stats .inside{margin:0;padding:15px;text-align:center}#give-form-goal-stats .give-admin-progress-bar{margin-bottom:10px}#give-form-goal-stats .give-admin-goal-achieved{display:block;margin-top:6px}.give-nav-tab-wrapper{background:#ddd;border:none!important;padding-top:0;overflow:hidden}.give-nav-tab-wrapper .nav-tab{border:none;margin:0;padding:15px 30px;outline:none;box-shadow:none;background:#ddd}.give-nav-tab-wrapper .nav-tab:hover{background:#ebebeb}.give-nav-tab-wrapper .nav-tab.nav-tab-active{background:#f1f1f1;box-shadow:inset 0 4px 0 #66bb6a;margin:0}@media screen and (max-width:600px){.give-nav-tab-wrapper{position:relative;padding-top:0!important}.give-nav-tab-wrapper>a{width:100%;box-sizing:border-box;margin:0;background-color:#fff;border:1px solid #ccc}.give-nav-tab-wrapper>a:hover{border-bottom:1px solid #ccc}.give-nav-tab-wrapper div.give-sub-nav-tab-wrapper{position:absolute;top:0;left:0}.give-nav-tab-wrapper div.give-sub-nav-tab-wrapper #give-show-sub-nav{height:28px;width:30px;border-radius:0;margin:0}.give-nav-tab-wrapper div.give-sub-nav-tab-wrapper #give-show-sub-nav>span.dashicons{margin:6px auto 0;display:block}.give-nav-tab-wrapper div.give-sub-nav-tab-wrapper nav.give-sub-nav-tab{top:35px;left:0;right:auto}.give-nav-tab-wrapper div.give-sub-nav-tab-wrapper nav.give-sub-nav-tab a{background:#fff}.give-nav-tab-wrapper div.give-sub-nav-tab-wrapper nav.give-sub-nav-tab a:hover{background:#e5e5e5}.give-mobile-hidden{display:none}}.give-sub-nav-tab-wrapper{position:relative;z-index:999;float:right;display:none}.give-sub-nav-tab-wrapper nav.give-sub-nav-tab{border:1px solid #f1f1f1;border-bottom:none;position:absolute;top:37px;left:0}.give-sub-nav-tab-wrapper nav.give-sub-nav-tab a{float:right;background:#fff;padding:8px 10px;clear:both;text-decoration:none;border-bottom:1px solid #f1f1f1;min-width:170px;color:#555;font-size:14px;font-weight:600}.give-sub-nav-tab-wrapper nav.give-sub-nav-tab a:hover{background:#ebebeb}#give-show-sub-nav{text-decoration:none;padding:3px 4px;border-bottom:1px solid #ccc;line-height:0;background:#fff;border-radius:4px;margin:15px 10px 0 0}#give-show-sub-nav>span.dashicons{font-size:16px;height:16px;width:16px}#give-show-sub-nav:active,#give-show-sub-nav:hover{outline:none;box-shadow:inset 0 0 4px #ddd}.give-upsell-notice{border:1px solid #e2e2e2;padding:10px;margin:10px;box-shadow:-1px 1px 5px #e2e2e2;display:flex;align-items:center}.give-upsell-notice a{text-decoration:none}.give-upsell-notice .description,.give-upsell-notice .icon{font-style:normal}.give-upsell-notice .icon{color:#aaa;font-size:30px;line-height:22px;width:30px}.give-upsell-notice .description{padding:0 10px}.give-upsell-notice a.view-addon-link{background:none!important;margin-right:auto}.give_forms_page_give-subscriptions .wp-header-end+.notice,.post-type-give_forms .wp-header-end+.notice{margin-top:11px}.give_forms_page_give-subscriptions #give-subscription-details-h1,.give_forms_page_give-subscriptions #give-subscription-list-h1,.give_forms_page_give-subscriptions .wp-heading-inline,.post-type-give_forms #give-subscription-details-h1,.post-type-give_forms #give-subscription-list-h1,.post-type-give_forms .wp-heading-inline{margin:0;padding:10px 0}.give_forms_page_give-subscriptions #give-subscription-details-h1:before,.give_forms_page_give-subscriptions #give-subscription-list-h1:before,.give_forms_page_give-subscriptions .wp-heading-inline:before,.post-type-give_forms #give-subscription-details-h1:before,.post-type-give_forms #give-subscription-list-h1:before,.post-type-give_forms .wp-heading-inline:before{background:url(../images/give-icon-full-circle.svg);width:30px;height:30px;content:" ";display:block;float:right;margin-left:12px}.give_forms_page_give-subscriptions #wpcontent,.post-type-give_forms #wpcontent{padding:0}.give_forms_page_give-subscriptions #wpbody,.post-type-give_forms #wpbody{color:#000;padding-right:20px;position:relative}.give_forms_page_give-subscriptions #wpbody:after,.post-type-give_forms #wpbody:after{content:"";background-color:#fff;border-bottom:1px solid #dbdbdb;height:72px;right:0;top:46px;position:absolute;width:100%;z-index:-1}@media (min-width:601px){.give_forms_page_give-subscriptions #wpbody:after,.post-type-give_forms #wpbody:after{top:0}}.give_forms_page_give-subscriptions #wpbody .wrap:not(.give-settings-page),.post-type-give_forms #wpbody .wrap:not(.give-settings-page){margin-top:12px}.give_forms_page_give-subscriptions #wpbody .wp-header-end,.post-type-give_forms #wpbody .wp-header-end{margin-top:6px}@media (min-width:601px){.give_forms_page_give-subscriptions #wpbody .wp-header-end,.post-type-give_forms #wpbody .wp-header-end{margin-top:15px}}@media (min-width:601px){.give_forms_page_give-subscriptions.give_forms_page_give-donors #wpbody .wp-header-end,.give_forms_page_give-subscriptions.give_forms_page_give-subscriptions #wpbody .wp-header-end,.post-type-give_forms.give_forms_page_give-donors #wpbody .wp-header-end,.post-type-give_forms.give_forms_page_give-subscriptions #wpbody .wp-header-end{margin-top:25px}}.give_forms_page_give-subscriptions #wpbody #screen-meta-links,.post-type-give_forms #wpbody #screen-meta-links{display:none}@media (min-width:783px){.give_forms_page_give-subscriptions #screen-meta,.post-type-give_forms #screen-meta{background-color:#fff;border:0;margin:0}.give_forms_page_give-subscriptions #screen-meta-links,.post-type-give_forms #screen-meta-links{position:absolute;top:0;left:0;z-index:1}}.give-subheader{background:#fff;margin:0 -22px 0 0;padding:12px 20px}.give-subheader .give-subheader-right-text{float:left;font-size:13px;line-height:22px;font-style:italic;color:#555;margin:0;padding:0}.give-subheader h1{float:right;font-size:15px;line-height:22px;color:#555;font-weight:600;margin:0;padding:0}@media (max-width:700px){.give-subheader{text-align:center}.give-subheader .give-subheader-right-text,.give-subheader h1{float:none}}
assets/dist/css/give.css CHANGED
@@ -15,4 +15,4 @@
15
  * @author: Paul Ryley (http://geminilabs.io)
16
  * @url: https://geminilabs.github.io/float-labels.js
17
  * @license: MIT
18
- */[id*=give-form].give-fl-form .give-fl-wrap{position:relative;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}[id*=give-form].give-fl-form input.give-fl-input,[id*=give-form].give-fl-form select.give-fl-select,[id*=give-form].give-fl-form textarea.give-fl-textarea{width:100%;outline:0;font-size:16px;line-height:normal;border-radius:0;border:1px solid #ccc;background-color:inherit;box-sizing:border-box;transition:all .2s ease-in-out;margin-bottom:0}[id*=give-form].give-fl-form input.give-fl-input:-moz-placeholder,[id*=give-form].give-fl-form input.give-fl-input::-moz-placeholder,[id*=give-form].give-fl-form select.give-fl-select:-moz-placeholder,[id*=give-form].give-fl-form select.give-fl-select::-moz-placeholder,[id*=give-form].give-fl-form textarea.give-fl-textarea:-moz-placeholder,[id*=give-form].give-fl-form textarea.give-fl-textarea::-moz-placeholder{color:#757575}[id*=give-form].give-fl-form input.give-fl-input:-ms-input-placeholder,[id*=give-form].give-fl-form select.give-fl-select:-ms-input-placeholder,[id*=give-form].give-fl-form textarea.give-fl-textarea:-ms-input-placeholder{color:#757575}[id*=give-form].give-fl-form input.give-fl-input::-webkit-input-placeholder,[id*=give-form].give-fl-form select.give-fl-select::-webkit-input-placeholder,[id*=give-form].give-fl-form textarea.give-fl-textarea::-webkit-input-placeholder{color:#757575}[id*=give-form].give-fl-form select.give-fl-select{position:relative;color:#757575;cursor:pointer;-webkit-appearance:none;-moz-appearance:none}[id*=give-form].give-fl-form .give-fl-is-active input.give-fl-input,[id*=give-form].give-fl-form .give-fl-is-active select.give-fl-select,[id*=give-form].give-fl-form .give-fl-is-active textarea.give-fl-textarea{color:#333;background-color:inherit;border-color:#ccc}[id*=give-form].give-fl-form .give-fl-has-focus input.give-fl-input,[id*=give-form].give-fl-form .give-fl-has-focus select.give-fl-select,[id*=give-form].give-fl-form .give-fl-has-focus textarea.give-fl-textarea{background-color:inherit;border-color:#ccc}[id*=give-form].give-fl-form label.give-fl-label{opacity:0;visibility:hidden;display:block;position:absolute;top:-12px;left:0;font-size:12px;font-weight:700;line-height:1;color:#757575;border-radius-top-left:0;transition:all .2s ease-in-out;z-index:1}[id*=give-form].give-fl-form .give-fl-is-active label.give-fl-label{opacity:1;visibility:visible}[id*=give-form].give-fl-form .give-fl-has-focus label.give-fl-label{color:#1976d2}[id*=give-form].give-fl-form .give-fl-is-required:before{opacity:1;content:"*";display:block;position:absolute;top:1px;right:18px;font-size:16px;line-height:1.75;color:#d32f2f;transition:all .2s ease-in-out;padding:6px 0 0;z-index:1}[id*=give-form].give-fl-form .give-fl-is-required.give-fl-is-active:before{opacity:0}[id*=give-form].give-fl-form.give-fl-style-1 input.give-fl-input,[id*=give-form].give-fl-form.give-fl-style-1 select.give-fl-select,[id*=give-form].give-fl-form.give-fl-style-1 textarea.give-fl-textarea{padding:6px 12px}[id*=give-form].give-fl-form.give-fl-style-1 select.give-fl-select{height:44px}[id*=give-form].give-fl-form.give-fl-style-1 .give-fl-is-active input.give-fl-input,[id*=give-form].give-fl-form.give-fl-style-1 .give-fl-is-active select.give-fl-select,[id*=give-form].give-fl-form.give-fl-style-1 .give-fl-is-active textarea.give-fl-textarea{padding:6px 12px}[id*=give-form].give-fl-form.give-fl-style-1 label.give-fl-label{top:1px;left:10px;background-color:transparent;padding:12px 3px}[id*=give-form].give-fl-form.give-fl-style-1 label.give-fl-label:before{content:"";display:block;position:absolute;top:19px;left:0;right:0;height:1px;background-color:inherit;z-index:-1}[id*=give-form].give-fl-form.give-fl-style-1 .give-fl-is-active label.give-fl-label{top:-9px;padding:3px}[id*=give-form].give-fl-form.give-fl-style-1 .give-fl-is-active label.give-fl-label:before{top:9px}[id*=give-form].give-fl-form.give-fl-style-2 input.give-fl-input,[id*=give-form].give-fl-form.give-fl-style-2 select.give-fl-select,[id*=give-form].give-fl-form.give-fl-style-2 textarea.give-fl-textarea{padding:12px}[id*=give-form].give-fl-form.give-fl-style-2 select.give-fl-select{height:56px}[id*=give-form].give-fl-form.give-fl-style-2 .give-fl-is-active input.give-fl-input,[id*=give-form].give-fl-form.give-fl-style-2 .give-fl-is-active select.give-fl-select,[id*=give-form].give-fl-form.give-fl-style-2 .give-fl-is-active textarea.give-fl-textarea{padding:18px 12px 6px}[id*=give-form].give-fl-form.give-fl-style-2 label.give-fl-label{top:1px;left:10px;padding:6px 3px 3px}[id*=give-form].give-fl-form.give-fl-style-2 .give-fl-is-required:before{padding-top:12px}[id*=give-form].give-fl-form .give-fl-wrap-select:after{content:"";position:absolute;display:block;top:1px;right:6px;height:calc(100% - 2px);width:15px;background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 16'><path fill='#757575' d='M 4 0 L 0 6.5 L 8 6.5 L 4 0 z M 0 9.5 L 4 16 L 4 16 L 8 9.5 z'/></svg>") no-repeat;background-position:100% 50%;background-size:7px 14px;z-index:2}.mfp-bg{z-index:1000001;overflow:hidden;background:#0b0b0b;opacity:.8}.mfp-bg,.mfp-wrap{top:0;left:0;width:100%;height:100%;position:fixed}.mfp-wrap{z-index:1000002;outline:none!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{content:"";display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1000004}.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1000003}.mfp-preloader a{color:#ccc}.mfp-preloader a:hover{color:#fff}.mfp-s-error .mfp-content,.mfp-s-ready .mfp-preloader{display:none}button.mfp-arrow,button.mfp-close{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:none;padding:0;z-index:1000005;box-shadow:none;touch-action:manipulation}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;color:#fff;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:focus,.mfp-close:hover{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{color:#fff;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#ccc;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;top:50%;margin:-55px 0 0;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:focus,.mfp-arrow:hover{opacity:1}.mfp-arrow:after,.mfp-arrow:before{content:"";display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after{border-right:17px solid #fff;margin-left:31px}.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right:after{border-left:17px solid #fff;margin-left:39px}.mfp-arrow-right:before{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;box-sizing:border-box;padding:40px 0;margin:0 auto}.mfp-figure,img.mfp-img{line-height:0}.mfp-figure:after{content:"";position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-height:300px),screen and (max-width:800px) and (orientation:landscape){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}@font-face{font-family:give-icomoon;src:url(../fonts/icomoon.eot);src:url(../fonts/icomoon.eot#iefix) format("embedded-opentype"),url(../fonts/icomoon.woff) format("woff"),url(../images/icomoon.svg#icomoon) format("svg");font-weight:400;font-style:normal}.give-icon:before{font-style:normal}[class*=" give-icon-"],[class^=give-icon-]{font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.give-icon-lamp:before{content:"\e603"}.give-icon-heart:before{content:"\e604"}.give-icon-question:before{content:"\e602"}.give-icon-info:before{content:"\e601"}.give-icon-new-tab:before{content:"\ea7e"}.give-icon-alert:before{content:"\f02d"}.give-icon-help:before{content:"\e606"}.give-icon-spinner:before{content:"\e605"}.give-button-with-loader span.give-loading-animation:before,.give-icon-spinner2:before,form[id*=give-form] .give-loading-animation:before{content:"\e607"}.give-icon-plus:before{content:"\e040"}.give-icon-minus:before{content:"\e041"}.give-icon-locked:before,[id*=give_secure_site_wrapper] span.padlock:before{content:"\e600"}.dashicons-give:before{font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\e800"}.fa-spin,.give-button-with-loader span.give-loading-animation,form[id*=give-form] .give-loading-animation{-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}body.give_receipt_page{background-color:#fff;color:#141412;margin:0;font-family:Helvetica,sans-serif;font-size:12px}body.give_receipt_page #give_receipt_wrapper{width:660px;margin:0 auto;padding:50px 0}body.give_receipt_page table{display:table;width:100%;border-bottom:1px solid #ededed;border-collapse:collapse;border-spacing:0;font-size:14px;line-height:2;margin:0 0 20px}body.give_receipt_page td,body.give_receipt_page th{display:table-cell;text-align:left;border-top:1px solid #ededed;padding:6px 10px 6px 0;font-weight:400}body.give_receipt_page th{font-weight:700;text-transform:uppercase}body.give_receipt_page h3{font-size:22px;margin:40px 0 5px;clear:both;display:block;font-weight:700}table#give_donation_receipt,table#give_donation_receipt_products{width:100%}table#give_donation_receipt td,table#give_donation_receipt th{text-align:left}table#give_donation_receipt .give-receipt-thead-text{font-size:18px;text-align:center;display:block}table#give_donation_receipt .give-receipt-thead-text>span{font-size:16px}table#give_donation_receipt li{margin:0 0 8px 10px}table#give_donation_receipt ul{margin:0;padding:0;list-style:none}table#give_donation_receipt .give_receipt_payment_status.failed,table#give_donation_receipt .give_receipt_payment_status.pending,table#give_donation_receipt .give_receipt_payment_status.revoked{color:#f73f2e}table#give_donation_receipt span.donation-level-text-wrap{font-style:italic;display:block}[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input,[id*=give-form].give-fl-form.give-fl-style-give select.give-fl-select,[id*=give-form].give-fl-form.give-fl-style-give textarea.give-fl-textarea{line-height:inherit;padding:12px;background-color:#fff}[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input[type=email],[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input[type=number],[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input[type=password],[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input[type=search],[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input[type=tel],[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input[type=text],[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input[type=url]{height:auto;min-height:50px}[id*=give-form].give-fl-form.give-fl-style-give select.give-fl-select{line-height:inherit}[id*=give-form].give-fl-form.give-fl-style-give .give-fl-is-active input.give-fl-input,[id*=give-form].give-fl-form.give-fl-style-give .give-fl-is-active select.give-fl-select,[id*=give-form].give-fl-form.give-fl-style-give .give-fl-is-active textarea.give-fl-textarea{padding:20px 12px 4px;transition:padding .2s ease-in-out,border .2s ease-in-out}[id*=give-form].give-fl-form.give-fl-style-give label.give-fl-label{top:1px;left:13px;right:0;padding:6px 0 0}[id*=give-form].give-fl-form.give-fl-style-give .give-fl-is-required:before{padding-top:12px}[id*=give-form].give-fl-form.give-fl-style-give label.give-fl-label .give-required-indicator{display:none}[id*=give-form].give-fl-form.give-fl-style-give label.give-fl-label .give-tooltip{position:absolute;top:0;width:100%;height:100%;margin:0;z-index:1}[id*=give-form].give-fl-form.give-fl-style-give label.give-fl-label .give-tooltip:before{content:unset}.give-clearfix{*zoom:1}.give-clearfix:after,.give-clearfix:before{content:" ";display:table}.give-clearfix:after{clear:both}[id*=give-form] .give-hidden{display:none}[id*=give-form] fieldset{background-color:transparent;padding:0;margin:0;border:0}[id*=give-form] .give-form-title{padding:0;margin:0 0 15px}[id*=give-form] div#give-sidebar-left{width:38%;float:left}[id*=give-form] div.images{margin:0 0 15px}[id*=give-form] div.images img{display:block;width:100%;height:auto;box-shadow:none}[id*=give-form] .give-custom-amount-text{clear:both}[id*=give-form] div.summary{width:58%;float:right}[id*=give-form] div.summary.give-full-width{width:100%;float:none}[id*=give-form] .give_form select.give-select.required{color:#000}[id*=give-form] div.give-form-content-wrap{margin:0 0 20px}[id*=give-form] div.give-form-content-wrap.give_post_form-content{margin:20px 0 0}[id*=give-form].give-display-modal form .give_notices{display:none}[id*=give-form].give-display-modal .give-btn,[id*=give-form].give-display-reveal .give-btn{margin:0 0 15px}[id*=give-form].give-display-modal #give-payment-mode-select,[id*=give-form].give-display-modal #give_purchase_form_wrap,[id*=give-form].give-display-reveal #give-payment-mode-select,[id*=give-form].give-display-reveal #give_purchase_form_wrap{display:none}[id*=give-form] .cc-address{margin-bottom:15px}.single-give_forms.et_right_sidebar #main-content .container:before{display:none}.single-give_forms .give_forms{*zoom:1}.single-give_forms .give_forms:after,.single-give_forms .give_forms:before{content:" ";display:table}.single-give_forms .give_forms:after{clear:both}#give-purchase-gravatars .give-gravatars-title{margin:0 0 15px}#give-purchase-gravatars .give-purchase-gravatars-list{list-style:none;margin:0;padding:0}#give-purchase-gravatars .give-purchase-gravatars-list li{list-style-type:none;display:inline-block;margin:0 5px 0 0;padding:0}#give-recurring-form,form.give-form,form[id*=give-form]{margin:0 0 25px;padding:0}#give-recurring-form .give-hidden,form.give-form .give-hidden,form[id*=give-form] .give-hidden{display:none}@media (min-width:481px){#give-recurring-form .give-title-prefix-wrap .form-row-first,#give-recurring-form .give-title-prefix-wrap .form-row-last,form.give-form .give-title-prefix-wrap .form-row-first,form.give-form .give-title-prefix-wrap .form-row-last,form[id*=give-form] .give-title-prefix-wrap .form-row-first,form[id*=give-form] .give-title-prefix-wrap .form-row-last{float:left;width:40%}#give-recurring-form .give-title-prefix-wrap .form-row-title,form.give-form .give-title-prefix-wrap .form-row-title,form[id*=give-form] .give-title-prefix-wrap .form-row-title{float:left;width:15%}}#give-recurring-form .give-tooltip,form.give-form .give-tooltip,form[id*=give-form] .give-tooltip{margin:0 3px;padding:0;font-size:14px;-moz-transition:.2s all linear;-o-transition:.2s all linear;transition:all .2s linear;color:rgba(51,51,51,.5)}#give-recurring-form .give-tooltip:hover,form.give-form .give-tooltip:hover,form[id*=give-form] .give-tooltip:hover{color:#333}#give-recurring-form h3.give-section-break,#give-recurring-form h4.give-section-break,#give-recurring-form legend,form.give-form h3.give-section-break,form.give-form h4.give-section-break,form.give-form legend,form[id*=give-form] h3.give-section-break,form[id*=give-form] h4.give-section-break,form[id*=give-form] legend{background-color:transparent;font-size:1.15em;font-weight:700;margin:10px 0 15px;padding:0 0 5px;border-bottom:1px solid rgba(0,0,0,.1);width:100%}#give-recurring-form h3.give-section-break span.sub-text,#give-recurring-form h4.give-section-break span.sub-text,#give-recurring-form legend span.sub-text,form.give-form h3.give-section-break span.sub-text,form.give-form h4.give-section-break span.sub-text,form.give-form legend span.sub-text,form[id*=give-form] h3.give-section-break span.sub-text,form[id*=give-form] h4.give-section-break span.sub-text,form[id*=give-form] legend span.sub-text{font-style:italic;font-weight:400}#give-recurring-form .form-row,form.give-form .form-row,form[id*=give-form] .form-row{*zoom:1;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:0 0 15px;overflow:visible;padding:0}#give-recurring-form .form-row:after,#give-recurring-form .form-row:before,form.give-form .form-row:after,form.give-form .form-row:before,form[id*=give-form] .form-row:after,form[id*=give-form] .form-row:before{content:" ";display:table}#give-recurring-form .form-row:after,form.give-form .form-row:after,form[id*=give-form] .form-row:after{clear:both}#give-recurring-form .form-row:last-child,form.give-form .form-row:last-child,form[id*=give-form] .form-row:last-child{margin-bottom:15px}#give-recurring-form .form-row label,form.give-form .form-row label,form[id*=give-form] .form-row label{display:block;margin:0 0 5px;position:relative;line-height:1.7}#give-recurring-form .form-row label.checkbox,form.give-form .form-row label.checkbox,form[id*=give-form] .form-row label.checkbox{display:inline}#give-recurring-form .form-row input[type=email],#give-recurring-form .form-row input[type=password],#give-recurring-form .form-row input[type=tel],#give-recurring-form .form-row input[type=text],#give-recurring-form .form-row input[type=url],#give-recurring-form .form-row select,#give-recurring-form .form-row textarea,form.give-form .form-row input[type=email],form.give-form .form-row input[type=password],form.give-form .form-row input[type=tel],form.give-form .form-row input[type=text],form.give-form .form-row input[type=url],form.give-form .form-row select,form.give-form .form-row textarea,form[id*=give-form] .form-row input[type=email],form[id*=give-form] .form-row input[type=password],form[id*=give-form] .form-row input[type=tel],form[id*=give-form] .form-row input[type=text],form[id*=give-form] .form-row input[type=url],form[id*=give-form] .form-row select,form[id*=give-form] .form-row textarea{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;border-radius:0;outline:none;color:#333;background-color:#fdfdfd;border:1px solid #ccc;margin:0;padding:.5em}#give-recurring-form .form-row input[type=email]:focus,#give-recurring-form .form-row input[type=password]:focus,#give-recurring-form .form-row input[type=tel]:focus,#give-recurring-form .form-row input[type=text]:focus,#give-recurring-form .form-row input[type=url]:focus,#give-recurring-form .form-row select:focus,#give-recurring-form .form-row textarea:focus,form.give-form .form-row input[type=email]:focus,form.give-form .form-row input[type=password]:focus,form.give-form .form-row input[type=tel]:focus,form.give-form .form-row input[type=text]:focus,form.give-form .form-row input[type=url]:focus,form.give-form .form-row select:focus,form.give-form .form-row textarea:focus,form[id*=give-form] .form-row input[type=email]:focus,form[id*=give-form] .form-row input[type=password]:focus,form[id*=give-form] .form-row input[type=tel]:focus,form[id*=give-form] .form-row input[type=text]:focus,form[id*=give-form] .form-row input[type=url]:focus,form[id*=give-form] .form-row select:focus,form[id*=give-form] .form-row textarea:focus{background-color:#fff}#give-recurring-form .form-row input[type=email].required,#give-recurring-form .form-row input[type=password].required,#give-recurring-form .form-row input[type=tel].required,#give-recurring-form .form-row input[type=text].required,#give-recurring-form .form-row input[type=url].required,#give-recurring-form .form-row select.required,#give-recurring-form .form-row textarea.required,form.give-form .form-row input[type=email].required,form.give-form .form-row input[type=password].required,form.give-form .form-row input[type=tel].required,form.give-form .form-row input[type=text].required,form.give-form .form-row input[type=url].required,form.give-form .form-row select.required,form.give-form .form-row textarea.required,form[id*=give-form] .form-row input[type=email].required,form[id*=give-form] .form-row input[type=password].required,form[id*=give-form] .form-row input[type=tel].required,form[id*=give-form] .form-row input[type=text].required,form[id*=give-form] .form-row input[type=url].required,form[id*=give-form] .form-row select.required,form[id*=give-form] .form-row textarea.required{color:#333}#give-recurring-form .form-row-first,#give-recurring-form .form-row-title,form.give-form .form-row-first,form.give-form .form-row-title,form[id*=give-form] .form-row-first,form[id*=give-form] .form-row-title{margin-right:2.5%}#give-recurring-form .form-row-first,#give-recurring-form .form-row-last,form.give-form .form-row-first,form.give-form .form-row-last,form[id*=give-form] .form-row-first,form[id*=give-form] .form-row-last{float:left;width:48.5%}#give-recurring-form .form-row-last,form.give-form .form-row-last,form[id*=give-form] .form-row-last{float:right}#give-recurring-form .form-row-wide,form.give-form .form-row-wide,form[id*=give-form] .form-row-wide{*zoom:1;clear:both}#give-recurring-form .form-row-wide:after,#give-recurring-form .form-row-wide:before,form.give-form .form-row-wide:after,form.give-form .form-row-wide:before,form[id*=give-form] .form-row-wide:after,form[id*=give-form] .form-row-wide:before{content:" ";display:table}#give-recurring-form .form-row-wide:after,form.give-form .form-row-wide:after,form[id*=give-form] .form-row-wide:after{clear:both}#give-recurring-form .form-row-two-thirds,form.give-form .form-row-two-thirds,form[id*=give-form] .form-row-two-thirds{float:left;width:65.75%}#give-recurring-form .form-row-two-thirds.form-row-first,form.give-form .form-row-two-thirds.form-row-first,form[id*=give-form] .form-row-two-thirds.form-row-first{margin-left:0}#give-recurring-form .form-row-one-third,form.give-form .form-row-one-third,form[id*=give-form] .form-row-one-third{float:left;width:31.25%;margin-left:3%}#give-recurring-form .form-row-one-third.form-row-first,form.give-form .form-row-one-third.form-row-first,form[id*=give-form] .form-row-one-third.form-row-first{margin-left:0}@media (max-width:480px){#give-recurring-form .form-row-responsive,form.give-form .form-row-responsive,form[id*=give-form] .form-row-responsive{margin-left:0;margin-right:0;width:100%}}#give-recurring-form .give-error,#give-recurring-form .give-required-indicator,form.give-form .give-error,form.give-form .give-required-indicator,form[id*=give-form] .give-error,form[id*=give-form] .give-required-indicator{color:#a00}#give-recurring-form .card-expiration>select,form.give-form .card-expiration>select,form[id*=give-form] .card-expiration>select{width:44%;margin:0}#give-recurring-form .card-expiration>span.exp-divider,form.give-form .card-expiration>span.exp-divider,form[id*=give-form] .card-expiration>span.exp-divider{display:inline;text-align:center}#give-recurring-form .card-expiration select.card-expiry-year,form.give-form .card-expiration select.card-expiry-year,form[id*=give-form] .card-expiration select.card-expiry-year{float:right}#give-recurring-form .give-disabled,#give-recurring-form [disabled],form.give-form .give-disabled,form.give-form [disabled],form[id*=give-form] .give-disabled,form[id*=give-form] [disabled]{cursor:not-allowed}form[id*=give-form] .give-donation-amount{margin:0 0 15px}form[id*=give-form] .give-donation-amount .give-currency-symbol{background-color:#f2f2f2;border-top:1px solid #ccc;border-bottom:1px solid #ccc;color:#333;margin:0;padding:0 12px;height:35px;line-height:35px;font-size:18px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left}form[id*=give-form] .give-donation-amount .give-currency-symbol.give-currency-position-before{border-left:1px solid #ccc;border-right:none}form[id*=give-form] .give-donation-amount .give-currency-symbol.give-currency-position-after{border-left:none;border-right:1px solid #ccc}form[id*=give-form] .give-donation-amount #give-amount,form[id*=give-form] .give-donation-amount #give-amount-text{border:1px solid #ccc;background:#fff;border-radius:0;height:35px;line-height:35px;padding:0 12px;margin:0;font-size:18px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;min-width:125px;float:left}form[id*=give-form] .give-donation-amount #give-amount-text.invalid-amount,form[id*=give-form] .give-donation-amount #give-amount.invalid-amount{border:1px solid red}form[id*=give-form] .give-donation-amount input.give-amount-top{width:125px}form[id*=give-form] .give-donation-amount span.give-final-total-amount{border:1px solid #ccc;border-radius:0;height:35px;line-height:35px;padding:0 12px;margin:0;font-size:18px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;cursor:not-allowed;background:#fff;float:left}form[id*=give-form] #give_terms_agreement legend{display:none}form[id*=give-form] #give_terms_agreement label{display:inline-block}form[id*=give-form] #give-final-total-wrap{margin:10px 0 25px;padding:0;*zoom:1}form[id*=give-form] #give-final-total-wrap:after,form[id*=give-form] #give-final-total-wrap:before{content:" ";display:table}form[id*=give-form] #give-final-total-wrap:after{clear:both}form[id*=give-form] #give-final-total-wrap .give-donation-total-label{background-color:#f2f2f2;color:#333;margin:0;padding:0 12px;height:35px;line-height:35px;font-size:18px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;border:1px solid #ccc}@media (max-width:480px){form[id*=give-form] #give-final-total-wrap .give-donation-total-label{display:block;float:none}}form[id*=give-form] #give-final-total-wrap .give-final-total-amount{background:#fff;border-radius:0;height:35px;line-height:35px;padding:0 12px;margin:0;font-size:18px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border:1px solid #ccc;border-left:none;float:left}@media (max-width:480px){form[id*=give-form] #give-final-total-wrap .give-final-total-amount{border:1px solid #ccc;border-top:0;display:block;float:none}}.give-display-button-only>:not(.give-btn-modal){display:none}form[id*=give-form] input[type=radio]{margin:0 .5em 0 0}form[id*=give-form] #give-donation-level-radio-list{margin:0 0 15px;padding:0;list-style:none;clear:both}form[id*=give-form] #give-donation-level-radio-list>li{list-style-type:none;list-style-image:none;margin:0;padding:0}form[id*=give-form] #give-donation-level-radio-list>li label{cursor:pointer;display:inline-block;margin:0}form[id*=give-form] #give-donation-level-radio-list>li input[type=radio]{margin:0 .5em 0 0;outline:none;width:auto}form[id*=give-form] #give-gateway-radio-list{*zoom:1;margin:0 0 15px;padding:0;list-style:none}form[id*=give-form] #give-gateway-radio-list:after,form[id*=give-form] #give-gateway-radio-list:before{content:" ";display:table}form[id*=give-form] #give-gateway-radio-list:after{clear:both}form[id*=give-form] #give-gateway-radio-list>li{list-style-type:none;list-style-image:none;margin:0;padding:0}@media (min-width:480px){form[id*=give-form] #give-gateway-radio-list>li{display:inline-block;margin-right:15px;margin-left:0}}form[id*=give-form] #give-gateway-radio-list>li label.give-gateway-option{cursor:pointer;display:inline;margin:0}form[id*=give-form] #give-gateway-radio-list>li input[type=radio]{margin:0 .25em 0 0;outline:none;width:auto;display:inline}form[id*=give-form] input[type=checkbox]{margin:0 .25em 0 0}form[id*=give-form] select.give-select-level{outline:none;border-radius:0;min-width:155px;border:1px solid #ccc;margin:0 0 15px;display:block;clear:both;color:#333;background-color:#fdfdfd;padding:.5em;max-width:100%}#give-donation-level-button-wrap{*zoom:1;margin:0 0 15px;padding:0;clear:both;list-style:none}#give-donation-level-button-wrap:after,#give-donation-level-button-wrap:before{content:" ";display:table}#give-donation-level-button-wrap:after{clear:both}#give-donation-level-button-wrap>li{list-style-type:none;list-style-image:none;float:left;margin:0 5px 5px 0}.give_terms_links{float:right}[id*=give_secure_site_wrapper]{padding:4px 4px 15px 0;font-size:16px;line-height:20px}[id*=give_secure_site_wrapper] span.padlock{font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:16px;line-height:20px}[id*=give_secure_site_wrapper] span.padlock :before{display:inline-block}#give_purchase_form_wrap input.give-input.card-cvc.valid,#give_purchase_form_wrap input.give-input.card-expiry.valid,#give_purchase_form_wrap input.give-input.card-number.valid{background-image:url(../images/tick.png);background-repeat:no-repeat;background-position:right 10px top 50%;background-size:16px}#give_purchase_form_wrap input.give-input.card-cvc.valid.fl-input:not(.card-cvc):not(.card-expiry),#give_purchase_form_wrap input.give-input.card-expiry.valid.fl-input:not(.card-cvc):not(.card-expiry),#give_purchase_form_wrap input.give-input.card-number.valid.fl-input:not(.card-cvc):not(.card-expiry){background-position:right 55px top 50%}#give_purchase_form_wrap span.card-type{position:absolute;top:-2px;right:0;width:37px;height:26px;background-size:37px 26px!important}#give_purchase_form_wrap .fl-wrap span.card-type{top:calc(.5em + 6px);right:11px}#give_purchase_form_wrap span.card-type.off{display:none}#give_purchase_form_wrap span.card-type.visa{background:url(../images/visa.svg) no-repeat}#give_purchase_form_wrap span.card-type.mastercard{background:url(../images/mastercard.svg) no-repeat}#give_purchase_form_wrap span.card-type.discover{background:url(../images/discover.svg) no-repeat}#give_purchase_form_wrap span.card-type.amex{background:url(../images/amex.svg) no-repeat}#give_purchase_form_wrap span.card-type.maestro{background:url(../images/maestro.svg) no-repeat}#give_purchase_form_wrap span.card-type.dinersclub{background:url(../images/diners-club.svg) no-repeat}#give_purchase_form_wrap span.card-type.jcb{background:url(../images/jcb.svg) no-repeat}#give_purchase_form_wrap span.card-type.dankort{background:url(../images/dankort.png) no-repeat}#give_purchase_form_wrap span.card-type.unionpay{background:url(../images/unionpay.svg) no-repeat}@-webkit-keyframes opacity{0%{opacity:1}to{opacity:0}}@-moz-keyframes opacity{0%{opacity:1}to{opacity:0}}form[id*=give-form] p.give-loading-text,form[id*=give-form] span.give-loading-text{display:none;float:right;height:16px;width:16px;margin:0;padding:0;font-style:italic;line-height:20px;font-size:16px;font-weight:400}form[id*=give-form] .give-loading-animation{font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;float:left;height:16px;width:16px;line-height:1;font-size:16px;margin:0 5px 0 0;background-size:20px 20px;background-repeat:no-repeat;background-color:transparent}form[id*=give-form] .give-payment-mode-label .give-loading-text{float:right}[id*=give-form] .give-login-account-wrap{margin:0 0 15px;position:relative}[id*=give-form] .give-login-account-wrap .give-login-message{text-align:right;margin:0;padding:0}[id*=give-form] .give-login-account-wrap .give-loading-text{position:absolute;right:0;top:.25em}[id*=give-form] fieldset[id^=give-login-fields]{margin:0 0 15px}[id*=give-form] .give-new-account-link{margin:0 0 15px;padding:0}[id*=give-form] .give_login_forgot_password{float:right}.give-submit-button-wrap input.give-cancel-login,[id^=give-user-login-submit] input.give-cancel-login{margin-left:5px}.give-submit-button-wrap span.give-loading-animation,[id^=give-user-login-submit] span.give-loading-animation{margin:0 0 0 .5em;display:none}.give-submit-button-wrap .give-submit,[id^=give-user-login-submit] .give-submit{float:left}.give-user-login-fields-container:after{display:block;content:"";clear:both}#give-login-form div.give-login,#give-login-form legend,#give-register-form div.give-login,#give-register-form legend{line-height:2;margin-bottom:15px}#give-login-form label,#give-register-form label{min-width:100px;display:inline-block}div.give-form-wrap.mfp-hide{display:block!important}div.mfp-content fieldset ol,div.mfp-content fieldset p,div.mfp-content fieldset ul{margin-bottom:1.2em;line-height:1.4}div.mfp-content form[id*=give-form] .give_notices{display:block!important}.give-btn{background:#ededed;border:1px solid #ccc;color:#333;padding:8px 10px;cursor:pointer;line-height:1.2em;font-size:1em}.give-btn:hover{background:#dbdbdb}#give_profile_editor_form legend{width:auto;padding:0 5px 5px;border-bottom:0}form#give-email-access-form div.g-recaptcha,form#give-email-access-form input#give-email{margin:0 0 15px}form#give-email-access-form input#give-email{width:305px}@media (max-width:768px){[id*=give-form] div#give-sidebar-left,[id*=give-form] div.images,[id*=give-form] div.summary{width:100%;float:none}}.give-form-wrap .give-form h3.give-section-break,.give-form-wrap .give-form h4.give-section-break{margin:10px 0 0}.give-do-validate input.error{border-color:red!important}.give-button-with-loader span.give-loading-animation{display:none;position:relative;top:3px;float:right;font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;height:16px;width:16px;line-height:1;font-size:16px;margin:0 0 0 5px;background-size:20px 20px;background-repeat:no-repeat;background-color:transparent}.give-active span.give-loading-animation{display:inline}.give_notices{position:relative}.give_notices .notice-dismiss{position:absolute;top:50%;right:0;transform:translateY(-50%);border:none;margin:0;padding:5px;background:0 0;color:#72777c;cursor:pointer;max-width:28px!important}.give_notices .notice-dismiss:before{background:0 0;color:#72777c;content:"\f153";display:block;font:400 16px/20px dashicons;speak:none;height:20px;text-align:center;width:20px;-webkit-font-smoothing:antialiased}.give_notices .notice-dismiss:hover{background-color:transparent}.give_notices .notice-dismiss:hover:before{color:#dc3232}.give_error,.give_success,.give_warning{position:relative;margin:15px 0;background:#f9f9f9;padding:1em 1.5em 1em 2em;border-left:4px solid;box-shadow:0 1px 1px rgba(0,0,0,.125);clear:both}.give_error>p,.give_success>p,.give_warning>p{margin:0!important;color:#333}.give_error:before,.give_success:before,.give_warning:before{font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:absolute;top:50%;font-size:16px;margin-top:-15px;left:-17px;color:#fff;width:30px;height:30px;border-radius:100%;text-align:center;line-height:30px;text-shadow:1px 1px rgba(0,0,0,.5)}.give_error{border-color:#a00}.give_error:before{content:"\f02d";background-color:#a00}.give_success{border-color:#7ad03a}.give_success:before{background-color:#7ad03a;content:"\e601"}.give_warning{border-color:#ffba00}.give_warning:before{background-color:#ffba00;content:"\f02d"}.twentythirteen .give_forms{padding:40px 0}.twentyfourteen .tfgive{padding:12px 10px 0;max-width:474px;margin:0 auto}.twentyfourteen .tfgive .give_forms .entry-summary{padding:0!important;margin:0 0 1.618em!important}.twentyfourteen .tfgive div.give_forms.hentry.has-post-thumbnail{margin-top:0}.twentyfourteen .tfgive .give_forms .images img{margin-bottom:1em}@media screen and (min-width:673px){.twentyfourteen .tfgive{padding-right:30px;padding-left:30px}}@media screen and (min-width:1040px){.twentyfourteen .tfgive{padding-right:15px;padding-left:15px}}@media screen and (min-width:1110px){.twentyfourteen .tfgive{padding-right:30px;padding-left:30px}}@media screen and (min-width:1218px){.twentyfourteen .tfgive{margin-right:54px}.full-width .twentyfourteen .tfgive{margin-right:auto}}.twentyfifteen .t15give{padding-left:7.6923%;padding-right:7.6923%;padding-top:7.6923%;margin-bottom:7.6923%;background:#fff;box-shadow:0 0 1px rgba(0,0,0,.15)}.twentyfifteen .t15give .page-title{margin-left:0}.twentyfifteen .t15give div.summary{padding:0}@media screen and (min-width:38.75em){.twentyfifteen .t15give{margin-right:7.6923%;margin-left:7.6923%;margin-top:8.3333%}}@media screen and (min-width:59.6875em){.twentyfifteen .t15give{margin-left:8.3333%;margin-right:8.3333%;padding:10%}.single-product .twentyfifteen .entry-summary{padding:0!important}}.avada-row>div.give-wrap #content{width:100%}.give-goal-progress{margin-bottom:20px;clear:both}.give-goal-progress .income{font-size:46px;line-height:48px;letter-spacing:-1px;color:#333}.give-goal-progress .raised{margin-bottom:15px}.give-progress-bar{height:20px;position:relative;background:#eee;border-radius:25px;overflow:hidden}.give-progress-bar>span{display:block;height:100%;border-top-right-radius:8px;border-bottom-right-radius:8px;border-top-left-radius:20px;border-bottom-left-radius:20px;background-color:#2bc253;position:relative;overflow:hidden}table.give-table{color:#666;font-size:14px;text-shadow:1px 1px 0 #fff;background:#eaebec;margin:20px 0;border:1px solid #e0e0e0;border-top:none;border-bottom:none;width:100%}table.give-table thead{font-weight:700}table.give-table thead th:first-child{text-align:left;border-left:none}table.give-table th{padding:21px 25px;border:1px solid #e0e0e0;border-top-color:#e8e8e8;border-right:none;background:#f6f6f6;text-align:center;font-weight:700}table.give-table tbody tr{text-align:center}table.give-table tbody tr td{padding:18px;border:1px solid #e0e0e0;border-top-color:#fff;border-right:none;background:#fff;text-align:center}table.give-table tbody tr td:first-child{text-align:left;border-left:0}table.give-table tbody tr:nth-child(2n) td{background:#fcfcfc}body.give-twentysixteen div.entry-summary{margin:0}body.give-twentysixteen button.give-btn{color:#333}body.give-twentysixteen .give-submit{color:#fff}body.give-twentysixteen fieldset#give_terms_agreement{padding-left:0}body.give-twentyseventeen.colors-dark div#give_purchase_form_wrap span.give-final-total-amount,body.give-twentyseventeen.colors-dark div.give-total-wrap input.give-text-input,body.give-twentyseventeen.colors-dark div.give_notices p{color:#000}body.give-twentyseventeen.colors-dark form[id*=give] fieldset{background-color:transparent}body.give-twentynineteen .give-form .give-btn:focus{color:#fff}body.theme-twentytwenty .give-wrap{max-width:1200px;margin:60px auto}html[class*=avia] body#top form[id*=give-form] input.give-amount-top{width:unset;border:1px solid #ccc;border-left:none}html[class*=avia] body#top [id*=give-form].give-fl-form.give-fl-style-give label.give-fl-label{left:7px}html[class*=avia] body#top [id*=give-form].give-fl-form div.give-fl-is-active input{padding:8px 6px 0}.give-donation-history .give-table{table-layout:auto}.give-donation-history .give-table .give-security-column{float:left}.give-donation-history .give-table .give-security-column.give-security-description-wrap{width:75%;padding:16px 13px;font-size:12px;font-style:italic}.give-donation-history .give-table .give-security-column.give-security-button-wrap{width:25%;padding:25px 5px}.give-donation-history .give-table .give-security-column.give-security-button-wrap span{display:none;padding:0 20px}.give_user_history_main .give-mobile-title{display:none}@media screen and (max-width:480px){#give_user_history thead{display:none}#give_user_history tbody{border-top:1px solid #e0e0e0}#give_user_history tr{padding:.5rem 0;background:#fff}#give_user_history tr:nth-child(2n){background-color:#fafafa}#give_user_history td{border:none;padding-top:0;padding-bottom:0;background-color:transparent}#give_user_history td,#give_user_history tr{display:block;border-left:none;text-align:left}#give_user_history .give-mobile-title{display:inline-block;font-weight:700;min-width:6em}}.give-modal{top:0;left:0;width:100%;height:100%;z-index:2148482499;position:fixed;overflow:hidden;outline:none!important;-webkit-backface-visibility:hidden;-webkit-overflow-scrolling:touch;-webkit-transform:translateZ(0)}.give-modal form[id*=give-form],.give-modal form[id*=give-form] .give-submit{margin-bottom:0}.give-modal form[id*=give-form] .give-payment-mode-label{margin-top:0;padding-top:0}@media (max-width:580px){.give-modal form[id*=give-form] .give-input{font-size:16px}}.give-modal .mfp-content{box-sizing:border-box;position:relative;background:#fff;padding:20px;width:auto;max-width:650px;margin:40px auto;z-index:2148482599}.give-modal .mfp-content [id*=give-form] #give-payment-mode-select,.give-modal .mfp-content [id*=give-form] #give_purchase_form_wrap,.give-modal .mfp-content [id*=give-form].give-display-button-only .give-donation-amount,.give-modal .mfp-content [id*=give-form].give-display-button-only .give-donation-levels-wrap{display:block}.give-modal .mfp-content .mfp-close:hover{background-color:transparent}.give-modal form.give-form button.mfp-close{position:absolute;display:block!important}.give-modal .mfp-container:after{display:none}.give-modal .mfp-content{vertical-align:middle;transform:translateY(-100px)}.give-modal.mfp-bg,.give-modal .mfp-content{opacity:0;transition:all .2s}.give-modal.mfp-ready .mfp-content{opacity:1;transform:translateY(0)}.give-modal.mfp-ready.mfp-bg{opacity:.8}.give-modal.mfp-removing .mfp-content{transform:translateY(-50px);opacity:0}.give-modal.mfp-removing.mfp-bg{opacity:0}.give-donation-grid-item-form{position:relative;margin:0 auto;max-width:600px;background-color:#fff;padding:1rem 1.5rem;height:85vh;overflow-y:auto}.give-donation-grid-item-form #give_purchase_form_wrap{display:block!important}.give-donation-grid-item-form .give-btn-modal,.give-donation-grid-item-form .give-btn-reveal{display:none!important}.modal-fade-slide.give-modal .mfp-content{padding:0;max-width:100%}.modal-fade-slide .give-modal--slide{opacity:0;transition:all .2s ease-out;transform:translateY(-20px) perspective(600px) rotateX(0)}.modal-fade-slide.mfp-ready .give-modal--slide{opacity:1;transform:translateY(0) perspective(600px) rotateX(0)}.modal-fade-slide.mfp-removing .give-modal--slide{opacity:0;transform:translateY(-10px) perspective(600px) rotateX(0)}.modal-fade-slide.mfp-bg{opacity:0;transition:opacity .3s ease-out}.modal-fade-slide.mfp-ready.mfp-bg{opacity:.8}.modal-fade-slide.mfp-removing.mfp-bg{opacity:0}.mfp-close:hover{background-color:transparent}.mfp-content .give-display-button-only .give-form-title{display:none}.mfp-content .give-display-button-only>:not(form),.mfp-content .give-display-button-only form>:not(.give-btn-modal){display:block}.give-donor{border:1px solid #e5e5e5;background:#fff;color:#333;font-size:1em;margin-bottom:20px;padding:20px;position:relative;transition:all .2s ease-out;width:100%}.give-donor__header{align-items:center;display:flex}.give-donor__image{border:1px solid #e5e5e5;background:#fff;text-align:center;flex-basis:60px;flex-shrink:0;line-height:60px;height:60px;margin-right:10px;overflow:hidden;border-radius:50%}.give-donor__image img{border-radius:50%;display:block;height:58px;object-fit:cover;width:100%}.give-donor__details{flex-grow:1;overflow:hidden}.give-donor__name{font-size:1em!important;font-weight:700!important;margin:0!important;padding:0!important}.give-donor__name,.give-donor__timestamp{color:#333!important;line-height:1.3!important}.give-donor__timestamp{display:block;font-size:75%!important}.give-donor__content{margin-top:10px;width:100%}.give-donor__content p{color:#333;font-size:1em!important;line-height:1.5!important;margin:0 0 20px!important;padding:0!important;width:100%}.give-donor__content:first-child{margin-top:0!important}.give-donor__content :last-child{margin-bottom:0!important}.give-donor__read-more{cursor:pointer;white-space:nowrap}.give-donor__excerpt+.give-donor__comment{display:none}.give-donor-wall-modal p:last-child{margin-bottom:0}.form-row .give-stripe-cc-field{box-sizing:border-box;width:100%;border-radius:0;outline:none;color:#333;background-color:#fdfdfd;border:1px solid #ccc;margin:0;padding:.5em}.give-stripe-cc-field.give-fl-input{height:auto;min-height:50px;line-height:inherit;padding:14px 10px;background-color:#fff}.give-stripe-cc-field-wrap .give-fl-is-active .give-fl-input{padding:20px 12px 4px;transition:padding .2s ease-in-out,border .2s ease-in-out}.give-stripe-cc-field-wrap .give-fl-label span{display:none}.give-stripe-single-cc-field-wrap{border:1px solid #ccc;background-color:#fdfdfd;padding:10px;height:40px;margin:0 0 15px}.give-form .give-stripe-cc-field.focus,.give-form .give-stripe-cc-field:focus{background-color:#fff}.give-wrap .give-grid{max-width:30rem}.give-wrap .give-grid__item{margin-bottom:1.5rem;width:100%}.give-wrap .give-grid__item>:last-child{margin-bottom:0}.give-wrap .give-wrap:before{display:block;content:"";clear:both}@media (min-width:30rem){.give-wrap .give-grid{display:flex;flex-flow:row wrap;margin-bottom:1.5rem;max-width:100%}.give-wrap .give-grid__item{padding:0 .75rem;display:flex}}@media (min-width:30rem) and (min-width:40rem){.give-wrap .give-grid--2 .give-grid__item,.give-wrap .give-grid--3 .give-grid__item,.give-wrap .give-grid--4 .give-grid__item{width:50%}}@media (min-width:30rem) and (min-width:72rem){.give-wrap .give-grid--3 .give-grid__item,.give-wrap .give-grid--4 .give-grid__item{width:33.33333%}}@media (min-width:30rem) and (min-width:90rem){.give-wrap .give-grid--4 .give-grid__item{width:25%}}@supports (display:grid){.give-wrap .give-grid{display:grid;grid-template-columns:1fr;grid-gap:1.5rem;margin-bottom:1.5rem;max-width:100%}.give-wrap .give-grid__item{display:flex;margin-bottom:0;padding:0;width:auto!important}@media (min-width:40rem){.give-wrap .give-grid--best-fit{grid-template-columns:repeat(auto-fit,minmax(320px,1fr))}}@media (min-width:40rem){.give-wrap .give-grid--2,.give-wrap .give-grid--3,.give-wrap .give-grid--4{grid-template-columns:repeat(2,1fr)}}@media (min-width:72rem){.give-wrap .give-grid--3,.give-wrap .give-grid--4{grid-template-columns:repeat(3,1fr)}}@media (min-width:90rem){.give-wrap .give-grid--4{grid-template-columns:repeat(4,1fr)}}}.give-wrap .give-card{background-color:#fff;border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04);color:inherit;display:flex;flex-direction:column;width:100%;text-decoration:none;transition:all .1s ease-out}.give-wrap .give-card:active,.give-wrap .give-card:focus,.give-wrap .give-card:hover,.give-wrap .give-card:visited{border-color:#ccc;box-shadow:0 4px 12px rgba(0,0,0,.16)}.give-wrap .give-card__media img{border-radius:0;box-shadow:none;display:block;height:auto;margin:0;object-fit:cover;order:1;width:100%}.give-wrap .give-card__body{display:flex;flex-direction:column;flex-grow:1;order:2;padding:1.5rem}.give-wrap .give-card__body>:last-child{margin-bottom:0}.give-wrap .give-card__title{line-height:1.3;margin:0 0 .75rem;padding:0}.give-wrap .give-card__text{margin:0 0 1.5rem;padding:0}.give-wrap .give-card__progress{margin-top:auto;width:100%}.give-wrap .give-card__progress .raised,.give-wrap .give-card__progress>:last-child{margin-bottom:0}.give-wrap .give-card__progress .income{font-size:2em}.give-wrap .give-page-numbers{font-size:1.25em}#give-receipt .timeline-item{background:#fff}@keyframes placeHolderShimmer{0%{background-position:0 0}to{background-position:520px 0}}#give-receipt .placeholder-animation{max-width:650px;margin:0 auto}#give-receipt .animated-background{animation-duration:.85s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-name:placeHolderShimmer;animation-timing-function:linear;background:#f6f7f8;background:linear-gradient(90deg,#eee 8%,#ddd 18%,#eee 33%);background-size:520px 100%;position:relative}#give-receipt .container{margin:0 auto;width:650px;background-color:#eee;border:1px solid #eee}#give-receipt .layer{display:flex}#give-receipt .layer.h1{height:28px}#give-receipt .layer.h2{height:22px}#give-receipt .layer.inline-radios{height:12px}#give-receipt .layer.label{height:8px}#give-receipt .layer-item.opaque{background:#fff}#give-receipt .layer-gap{background-color:#fff}#give-receipt .layer-gap.large{height:40px}#give-receipt .layer-gap.medium{height:20px}#give-receipt .layer-gap.small{height:10px}#give-receipt .layer-1 .layer-item:nth-child(odd){width:45%}#give-receipt .layer-1 .layer-item:nth-child(2n){width:55%}#give-receipt .layer-4 .layer-item:first-child{width:30%}#give-receipt .layer-4 .layer-item:nth-child(2){width:10%}#give-receipt .layer-4 .layer-item:nth-child(3){width:20%}#give-receipt .layer-4 .layer-item:nth-child(4){width:30%}#give-receipt .layer-4 .layer-item:nth-child(5){width:10%}#give-receipt .layer-5 .layer-item:first-child{width:40%}#give-receipt .layer-5 .layer-item:nth-child(2){width:5%}#give-receipt .layer-5 .layer-item:nth-child(3){width:15%}#give-receipt .layer-5 .layer-item:nth-child(4){width:40%}#give-receipt .layer-6 .layer-item:nth-child(odd){width:30%}#give-receipt .layer-6 .layer-item:nth-child(2n){width:70%}#give-receipt .layer-8 .layer-item:first-child{width:40%}#give-receipt .layer-8 .layer-item:nth-child(2){width:20%}#give-receipt .layer-8 .layer-item:nth-child(3){width:40%}.give-grid-ie-utility{margin:0 -12px}@supports (display:grid){.give-grid-ie-utility{margin:0}}
15
  * @author: Paul Ryley (http://geminilabs.io)
16
  * @url: https://geminilabs.github.io/float-labels.js
17
  * @license: MIT
18
+ */[id*=give-form].give-fl-form .give-fl-wrap{position:relative;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}[id*=give-form].give-fl-form input.give-fl-input,[id*=give-form].give-fl-form select.give-fl-select,[id*=give-form].give-fl-form textarea.give-fl-textarea{width:100%;outline:0;font-size:16px;line-height:normal;border-radius:0;border:1px solid #ccc;background-color:inherit;box-sizing:border-box;transition:all .2s ease-in-out;margin-bottom:0}[id*=give-form].give-fl-form input.give-fl-input:-moz-placeholder,[id*=give-form].give-fl-form input.give-fl-input::-moz-placeholder,[id*=give-form].give-fl-form select.give-fl-select:-moz-placeholder,[id*=give-form].give-fl-form select.give-fl-select::-moz-placeholder,[id*=give-form].give-fl-form textarea.give-fl-textarea:-moz-placeholder,[id*=give-form].give-fl-form textarea.give-fl-textarea::-moz-placeholder{color:#757575}[id*=give-form].give-fl-form input.give-fl-input:-ms-input-placeholder,[id*=give-form].give-fl-form select.give-fl-select:-ms-input-placeholder,[id*=give-form].give-fl-form textarea.give-fl-textarea:-ms-input-placeholder{color:#757575}[id*=give-form].give-fl-form input.give-fl-input::-webkit-input-placeholder,[id*=give-form].give-fl-form select.give-fl-select::-webkit-input-placeholder,[id*=give-form].give-fl-form textarea.give-fl-textarea::-webkit-input-placeholder{color:#757575}[id*=give-form].give-fl-form select.give-fl-select{position:relative;color:#757575;cursor:pointer;-webkit-appearance:none;-moz-appearance:none}[id*=give-form].give-fl-form .give-fl-is-active input.give-fl-input,[id*=give-form].give-fl-form .give-fl-is-active select.give-fl-select,[id*=give-form].give-fl-form .give-fl-is-active textarea.give-fl-textarea{color:#333;background-color:inherit;border-color:#ccc}[id*=give-form].give-fl-form .give-fl-has-focus input.give-fl-input,[id*=give-form].give-fl-form .give-fl-has-focus select.give-fl-select,[id*=give-form].give-fl-form .give-fl-has-focus textarea.give-fl-textarea{background-color:inherit;border-color:#ccc}[id*=give-form].give-fl-form label.give-fl-label{opacity:0;visibility:hidden;display:block;position:absolute;top:-12px;left:0;font-size:12px;font-weight:700;line-height:1;color:#757575;border-radius-top-left:0;transition:all .2s ease-in-out;z-index:1}[id*=give-form].give-fl-form .give-fl-is-active label.give-fl-label{opacity:1;visibility:visible}[id*=give-form].give-fl-form .give-fl-has-focus label.give-fl-label{color:#1976d2}[id*=give-form].give-fl-form .give-fl-is-required:before{opacity:1;content:"*";display:block;position:absolute;top:1px;right:18px;font-size:16px;line-height:1.75;color:#d32f2f;transition:all .2s ease-in-out;padding:6px 0 0;z-index:1}[id*=give-form].give-fl-form .give-fl-is-required.give-fl-is-active:before{opacity:0}[id*=give-form].give-fl-form.give-fl-style-1 input.give-fl-input,[id*=give-form].give-fl-form.give-fl-style-1 select.give-fl-select,[id*=give-form].give-fl-form.give-fl-style-1 textarea.give-fl-textarea{padding:6px 12px}[id*=give-form].give-fl-form.give-fl-style-1 select.give-fl-select{height:44px}[id*=give-form].give-fl-form.give-fl-style-1 .give-fl-is-active input.give-fl-input,[id*=give-form].give-fl-form.give-fl-style-1 .give-fl-is-active select.give-fl-select,[id*=give-form].give-fl-form.give-fl-style-1 .give-fl-is-active textarea.give-fl-textarea{padding:6px 12px}[id*=give-form].give-fl-form.give-fl-style-1 label.give-fl-label{top:1px;left:10px;background-color:transparent;padding:12px 3px}[id*=give-form].give-fl-form.give-fl-style-1 label.give-fl-label:before{content:"";display:block;position:absolute;top:19px;left:0;right:0;height:1px;background-color:inherit;z-index:-1}[id*=give-form].give-fl-form.give-fl-style-1 .give-fl-is-active label.give-fl-label{top:-9px;padding:3px}[id*=give-form].give-fl-form.give-fl-style-1 .give-fl-is-active label.give-fl-label:before{top:9px}[id*=give-form].give-fl-form.give-fl-style-2 input.give-fl-input,[id*=give-form].give-fl-form.give-fl-style-2 select.give-fl-select,[id*=give-form].give-fl-form.give-fl-style-2 textarea.give-fl-textarea{padding:12px}[id*=give-form].give-fl-form.give-fl-style-2 select.give-fl-select{height:56px}[id*=give-form].give-fl-form.give-fl-style-2 .give-fl-is-active input.give-fl-input,[id*=give-form].give-fl-form.give-fl-style-2 .give-fl-is-active select.give-fl-select,[id*=give-form].give-fl-form.give-fl-style-2 .give-fl-is-active textarea.give-fl-textarea{padding:18px 12px 6px}[id*=give-form].give-fl-form.give-fl-style-2 label.give-fl-label{top:1px;left:10px;padding:6px 3px 3px}[id*=give-form].give-fl-form.give-fl-style-2 .give-fl-is-required:before{padding-top:12px}[id*=give-form].give-fl-form .give-fl-wrap-select:after{content:"";position:absolute;display:block;top:1px;right:6px;height:calc(100% - 2px);width:15px;background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 16'><path fill='#757575' d='M 4 0 L 0 6.5 L 8 6.5 L 4 0 z M 0 9.5 L 4 16 L 4 16 L 8 9.5 z'/></svg>") no-repeat;background-position:100% 50%;background-size:7px 14px;z-index:2}.mfp-bg{z-index:1000001;overflow:hidden;background:#0b0b0b;opacity:.8}.mfp-bg,.mfp-wrap{top:0;left:0;width:100%;height:100%;position:fixed}.mfp-wrap{z-index:1000002;outline:none!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{content:"";display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1000004}.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1000003}.mfp-preloader a{color:#ccc}.mfp-preloader a:hover{color:#fff}.mfp-s-error .mfp-content,.mfp-s-ready .mfp-preloader{display:none}button.mfp-arrow,button.mfp-close{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:none;padding:0;z-index:1000005;box-shadow:none;touch-action:manipulation}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;color:#fff;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:focus,.mfp-close:hover{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{color:#fff;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#ccc;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;top:50%;margin:-55px 0 0;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:focus,.mfp-arrow:hover{opacity:1}.mfp-arrow:after,.mfp-arrow:before{content:"";display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after{border-right:17px solid #fff;margin-left:31px}.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right:after{border-left:17px solid #fff;margin-left:39px}.mfp-arrow-right:before{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;box-sizing:border-box;padding:40px 0;margin:0 auto}.mfp-figure,img.mfp-img{line-height:0}.mfp-figure:after{content:"";position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-height:300px),screen and (max-width:800px) and (orientation:landscape){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}@font-face{font-family:give-icomoon;src:url(../fonts/icomoon.eot);src:url(../fonts/icomoon.eot#iefix) format("embedded-opentype"),url(../fonts/icomoon.woff) format("woff"),url(../images/icomoon.svg#icomoon) format("svg");font-weight:400;font-style:normal}.give-icon:before{font-style:normal}[class*=" give-icon-"],[class^=give-icon-]{font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.give-icon-lamp:before{content:"\e603"}.give-icon-heart:before{content:"\e604"}.give-icon-question:before{content:"\e602"}.give-icon-info:before{content:"\e601"}.give-icon-new-tab:before{content:"\ea7e"}.give-icon-alert:before{content:"\f02d"}.give-icon-help:before{content:"\e606"}.give-icon-spinner:before{content:"\e605"}.give-button-with-loader span.give-loading-animation:before,.give-icon-spinner2:before,form[id*=give-form] .give-loading-animation:before{content:"\e607"}.give-icon-plus:before{content:"\e040"}.give-icon-minus:before{content:"\e041"}.give-icon-locked:before,[id*=give_secure_site_wrapper] span.padlock:before{content:"\e600"}.dashicons-give:before{font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\e800"}.fa-spin,.give-button-with-loader span.give-loading-animation,form[id*=give-form] .give-loading-animation{-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}body.give_receipt_page{background-color:#fff;color:#141412;margin:0;font-family:Helvetica,sans-serif;font-size:12px}body.give_receipt_page #give_receipt_wrapper{width:660px;margin:0 auto;padding:50px 0}body.give_receipt_page table{display:table;width:100%;border-bottom:1px solid #ededed;border-collapse:collapse;border-spacing:0;font-size:14px;line-height:2;margin:0 0 20px}body.give_receipt_page td,body.give_receipt_page th{display:table-cell;text-align:left;border-top:1px solid #ededed;padding:6px 10px 6px 0;font-weight:400}body.give_receipt_page th{font-weight:700;text-transform:uppercase}body.give_receipt_page h3{font-size:22px;margin:40px 0 5px;clear:both;display:block;font-weight:700}table#give_donation_receipt,table#give_donation_receipt_products{width:100%}table#give_donation_receipt td,table#give_donation_receipt th{text-align:left}table#give_donation_receipt .give-receipt-thead-text{font-size:18px;text-align:center;display:block}table#give_donation_receipt .give-receipt-thead-text>span{font-size:16px}table#give_donation_receipt li{margin:0 0 8px 10px}table#give_donation_receipt ul{margin:0;padding:0;list-style:none}table#give_donation_receipt .give_receipt_payment_status.failed,table#give_donation_receipt .give_receipt_payment_status.pending,table#give_donation_receipt .give_receipt_payment_status.revoked{color:#f73f2e}table#give_donation_receipt span.donation-level-text-wrap{font-style:italic;display:block}[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input,[id*=give-form].give-fl-form.give-fl-style-give select.give-fl-select,[id*=give-form].give-fl-form.give-fl-style-give textarea.give-fl-textarea{line-height:inherit;padding:12px;background-color:#fff}[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input[type=email],[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input[type=number],[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input[type=password],[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input[type=search],[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input[type=tel],[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input[type=text],[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input[type=url]{height:auto;min-height:50px}[id*=give-form].give-fl-form.give-fl-style-give select.give-fl-select{line-height:inherit}[id*=give-form].give-fl-form.give-fl-style-give .give-fl-is-active input.give-fl-input,[id*=give-form].give-fl-form.give-fl-style-give .give-fl-is-active select.give-fl-select,[id*=give-form].give-fl-form.give-fl-style-give .give-fl-is-active textarea.give-fl-textarea{padding:20px 12px 4px;transition:padding .2s ease-in-out,border .2s ease-in-out}[id*=give-form].give-fl-form.give-fl-style-give label.give-fl-label{top:1px;left:13px;right:0;padding:6px 0 0}[id*=give-form].give-fl-form.give-fl-style-give .give-fl-is-required:before{padding-top:12px}[id*=give-form].give-fl-form.give-fl-style-give label.give-fl-label .give-required-indicator{display:none}[id*=give-form].give-fl-form.give-fl-style-give label.give-fl-label .give-tooltip{position:absolute;top:0;width:100%;height:100%;margin:0;z-index:1}[id*=give-form].give-fl-form.give-fl-style-give label.give-fl-label .give-tooltip:before{content:unset}.give-clearfix{*zoom:1}.give-clearfix:after,.give-clearfix:before{content:" ";display:table}.give-clearfix:after{clear:both}[id*=give-form] .give-hidden{display:none}[id*=give-form] fieldset{background-color:transparent;padding:0;margin:0;border:0}[id*=give-form] .give-form-title{padding:0;margin:0 0 15px}[id*=give-form] div#give-sidebar-left{width:38%;float:left}[id*=give-form] div.images{margin:0 0 15px}[id*=give-form] div.images img{display:block;width:100%;height:auto;box-shadow:none}[id*=give-form] .give-custom-amount-text{clear:both}[id*=give-form] div.summary{width:58%;float:right}[id*=give-form] div.summary.give-full-width{width:100%;float:none}[id*=give-form] .give_form select.give-select.required{color:#000}[id*=give-form] div.give-form-content-wrap{margin:0 0 20px}[id*=give-form] div.give-form-content-wrap.give_post_form-content{margin:20px 0 0}[id*=give-form].give-display-modal form .give_notices{display:none}[id*=give-form].give-display-modal .give-btn,[id*=give-form].give-display-reveal .give-btn{margin:0 0 15px}[id*=give-form].give-display-modal #give-payment-mode-select,[id*=give-form].give-display-modal #give_purchase_form_wrap,[id*=give-form].give-display-reveal #give-payment-mode-select,[id*=give-form].give-display-reveal #give_purchase_form_wrap{display:none}[id*=give-form] .cc-address{margin-bottom:15px}.single-give_forms.et_right_sidebar #main-content .container:before{display:none}.single-give_forms .give_forms{*zoom:1}.single-give_forms .give_forms:after,.single-give_forms .give_forms:before{content:" ";display:table}.single-give_forms .give_forms:after{clear:both}#give-purchase-gravatars .give-gravatars-title{margin:0 0 15px}#give-purchase-gravatars .give-purchase-gravatars-list{list-style:none;margin:0;padding:0}#give-purchase-gravatars .give-purchase-gravatars-list li{list-style-type:none;display:inline-block;margin:0 5px 0 0;padding:0}#give-recurring-form,form.give-form,form[id*=give-form]{margin:0 0 25px;padding:0}#give-recurring-form .give-hidden,form.give-form .give-hidden,form[id*=give-form] .give-hidden{display:none}@media (min-width:481px){#give-recurring-form .give-title-prefix-wrap .form-row-first,#give-recurring-form .give-title-prefix-wrap .form-row-last,form.give-form .give-title-prefix-wrap .form-row-first,form.give-form .give-title-prefix-wrap .form-row-last,form[id*=give-form] .give-title-prefix-wrap .form-row-first,form[id*=give-form] .give-title-prefix-wrap .form-row-last{float:left;width:40%}#give-recurring-form .give-title-prefix-wrap .form-row-title,form.give-form .give-title-prefix-wrap .form-row-title,form[id*=give-form] .give-title-prefix-wrap .form-row-title{float:left;width:15%}}#give-recurring-form .give-tooltip,form.give-form .give-tooltip,form[id*=give-form] .give-tooltip{margin:0 3px;padding:0;font-size:14px;-moz-transition:.2s all linear;-o-transition:.2s all linear;transition:all .2s linear;color:rgba(51,51,51,.5)}#give-recurring-form .give-tooltip:hover,form.give-form .give-tooltip:hover,form[id*=give-form] .give-tooltip:hover{color:#333}#give-recurring-form h3.give-section-break,#give-recurring-form h4.give-section-break,#give-recurring-form legend,form.give-form h3.give-section-break,form.give-form h4.give-section-break,form.give-form legend,form[id*=give-form] h3.give-section-break,form[id*=give-form] h4.give-section-break,form[id*=give-form] legend{background-color:transparent;font-size:1.15em;font-weight:700;margin:10px 0 15px;padding:0 0 5px;border-bottom:1px solid rgba(0,0,0,.1);width:100%}#give-recurring-form h3.give-section-break span.sub-text,#give-recurring-form h4.give-section-break span.sub-text,#give-recurring-form legend span.sub-text,form.give-form h3.give-section-break span.sub-text,form.give-form h4.give-section-break span.sub-text,form.give-form legend span.sub-text,form[id*=give-form] h3.give-section-break span.sub-text,form[id*=give-form] h4.give-section-break span.sub-text,form[id*=give-form] legend span.sub-text{font-style:italic;font-weight:400}#give-recurring-form .form-row,form.give-form .form-row,form[id*=give-form] .form-row{*zoom:1;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:0 0 15px;overflow:visible;padding:0}#give-recurring-form .form-row:after,#give-recurring-form .form-row:before,form.give-form .form-row:after,form.give-form .form-row:before,form[id*=give-form] .form-row:after,form[id*=give-form] .form-row:before{content:" ";display:table}#give-recurring-form .form-row:after,form.give-form .form-row:after,form[id*=give-form] .form-row:after{clear:both}#give-recurring-form .form-row:last-child,form.give-form .form-row:last-child,form[id*=give-form] .form-row:last-child{margin-bottom:15px}#give-recurring-form .form-row label,form.give-form .form-row label,form[id*=give-form] .form-row label{display:block;margin:0 0 5px;position:relative;line-height:1.7}#give-recurring-form .form-row label.checkbox,form.give-form .form-row label.checkbox,form[id*=give-form] .form-row label.checkbox{display:inline}#give-recurring-form .form-row input[type=email],#give-recurring-form .form-row input[type=password],#give-recurring-form .form-row input[type=tel],#give-recurring-form .form-row input[type=text],#give-recurring-form .form-row input[type=url],#give-recurring-form .form-row select,#give-recurring-form .form-row textarea,form.give-form .form-row input[type=email],form.give-form .form-row input[type=password],form.give-form .form-row input[type=tel],form.give-form .form-row input[type=text],form.give-form .form-row input[type=url],form.give-form .form-row select,form.give-form .form-row textarea,form[id*=give-form] .form-row input[type=email],form[id*=give-form] .form-row input[type=password],form[id*=give-form] .form-row input[type=tel],form[id*=give-form] .form-row input[type=text],form[id*=give-form] .form-row input[type=url],form[id*=give-form] .form-row select,form[id*=give-form] .form-row textarea{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;border-radius:0;outline:none;color:#333;background-color:#fdfdfd;border:1px solid #ccc;margin:0;padding:.5em}#give-recurring-form .form-row input[type=email]:focus,#give-recurring-form .form-row input[type=password]:focus,#give-recurring-form .form-row input[type=tel]:focus,#give-recurring-form .form-row input[type=text]:focus,#give-recurring-form .form-row input[type=url]:focus,#give-recurring-form .form-row select:focus,#give-recurring-form .form-row textarea:focus,form.give-form .form-row input[type=email]:focus,form.give-form .form-row input[type=password]:focus,form.give-form .form-row input[type=tel]:focus,form.give-form .form-row input[type=text]:focus,form.give-form .form-row input[type=url]:focus,form.give-form .form-row select:focus,form.give-form .form-row textarea:focus,form[id*=give-form] .form-row input[type=email]:focus,form[id*=give-form] .form-row input[type=password]:focus,form[id*=give-form] .form-row input[type=tel]:focus,form[id*=give-form] .form-row input[type=text]:focus,form[id*=give-form] .form-row input[type=url]:focus,form[id*=give-form] .form-row select:focus,form[id*=give-form] .form-row textarea:focus{background-color:#fff}#give-recurring-form .form-row input[type=email].required,#give-recurring-form .form-row input[type=password].required,#give-recurring-form .form-row input[type=tel].required,#give-recurring-form .form-row input[type=text].required,#give-recurring-form .form-row input[type=url].required,#give-recurring-form .form-row select.required,#give-recurring-form .form-row textarea.required,form.give-form .form-row input[type=email].required,form.give-form .form-row input[type=password].required,form.give-form .form-row input[type=tel].required,form.give-form .form-row input[type=text].required,form.give-form .form-row input[type=url].required,form.give-form .form-row select.required,form.give-form .form-row textarea.required,form[id*=give-form] .form-row input[type=email].required,form[id*=give-form] .form-row input[type=password].required,form[id*=give-form] .form-row input[type=tel].required,form[id*=give-form] .form-row input[type=text].required,form[id*=give-form] .form-row input[type=url].required,form[id*=give-form] .form-row select.required,form[id*=give-form] .form-row textarea.required{color:#333}#give-recurring-form .form-row-first,#give-recurring-form .form-row-title,form.give-form .form-row-first,form.give-form .form-row-title,form[id*=give-form] .form-row-first,form[id*=give-form] .form-row-title{margin-right:2.5%}#give-recurring-form .form-row-first,#give-recurring-form .form-row-last,form.give-form .form-row-first,form.give-form .form-row-last,form[id*=give-form] .form-row-first,form[id*=give-form] .form-row-last{float:left;width:48.5%}#give-recurring-form .form-row-last,form.give-form .form-row-last,form[id*=give-form] .form-row-last{float:right}#give-recurring-form .form-row-wide,form.give-form .form-row-wide,form[id*=give-form] .form-row-wide{*zoom:1;clear:both}#give-recurring-form .form-row-wide:after,#give-recurring-form .form-row-wide:before,form.give-form .form-row-wide:after,form.give-form .form-row-wide:before,form[id*=give-form] .form-row-wide:after,form[id*=give-form] .form-row-wide:before{content:" ";display:table}#give-recurring-form .form-row-wide:after,form.give-form .form-row-wide:after,form[id*=give-form] .form-row-wide:after{clear:both}#give-recurring-form .form-row-two-thirds,form.give-form .form-row-two-thirds,form[id*=give-form] .form-row-two-thirds{float:left;width:65.75%}#give-recurring-form .form-row-two-thirds.form-row-first,form.give-form .form-row-two-thirds.form-row-first,form[id*=give-form] .form-row-two-thirds.form-row-first{margin-left:0}#give-recurring-form .form-row-one-third,form.give-form .form-row-one-third,form[id*=give-form] .form-row-one-third{float:left;width:31.25%;margin-left:3%}#give-recurring-form .form-row-one-third.form-row-first,form.give-form .form-row-one-third.form-row-first,form[id*=give-form] .form-row-one-third.form-row-first{margin-left:0}@media (max-width:480px){#give-recurring-form .form-row-responsive,form.give-form .form-row-responsive,form[id*=give-form] .form-row-responsive{margin-left:0;margin-right:0;width:100%}}#give-recurring-form .give-error,#give-recurring-form .give-required-indicator,form.give-form .give-error,form.give-form .give-required-indicator,form[id*=give-form] .give-error,form[id*=give-form] .give-required-indicator{color:#a00}#give-recurring-form .card-expiration>select,form.give-form .card-expiration>select,form[id*=give-form] .card-expiration>select{width:44%;margin:0}#give-recurring-form .card-expiration>span.exp-divider,form.give-form .card-expiration>span.exp-divider,form[id*=give-form] .card-expiration>span.exp-divider{display:inline;text-align:center}#give-recurring-form .card-expiration select.card-expiry-year,form.give-form .card-expiration select.card-expiry-year,form[id*=give-form] .card-expiration select.card-expiry-year{float:right}#give-recurring-form .give-disabled,#give-recurring-form [disabled],form.give-form .give-disabled,form.give-form [disabled],form[id*=give-form] .give-disabled,form[id*=give-form] [disabled]{cursor:not-allowed}form[id*=give-form] .give-donation-amount{margin:0 0 15px}form[id*=give-form] .give-donation-amount .give-currency-symbol{background-color:#f2f2f2;border-top:1px solid #ccc;border-bottom:1px solid #ccc;color:#333;margin:0;padding:0 12px;height:35px;line-height:35px;font-size:18px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left}form[id*=give-form] .give-donation-amount .give-currency-symbol.give-currency-position-before{border-left:1px solid #ccc;border-right:none}form[id*=give-form] .give-donation-amount .give-currency-symbol.give-currency-position-after{border-left:none;border-right:1px solid #ccc}form[id*=give-form] .give-donation-amount #give-amount,form[id*=give-form] .give-donation-amount #give-amount-text{border:1px solid #ccc;background:#fff;border-radius:0;height:35px;line-height:35px;padding:0 12px;margin:0;font-size:18px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;min-width:125px;float:left}form[id*=give-form] .give-donation-amount #give-amount-text.invalid-amount,form[id*=give-form] .give-donation-amount #give-amount.invalid-amount{border:1px solid red}form[id*=give-form] .give-donation-amount input.give-amount-top{width:125px}form[id*=give-form] .give-donation-amount span.give-final-total-amount{border:1px solid #ccc;border-radius:0;height:35px;line-height:35px;padding:0 12px;margin:0;font-size:18px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;cursor:not-allowed;background:#fff;float:left}form[id*=give-form] #give_terms_agreement legend{display:none}form[id*=give-form] #give_terms_agreement label{display:inline-block}form[id*=give-form] #give-final-total-wrap{margin:10px 0 25px;padding:0;*zoom:1}form[id*=give-form] #give-final-total-wrap:after,form[id*=give-form] #give-final-total-wrap:before{content:" ";display:table}form[id*=give-form] #give-final-total-wrap:after{clear:both}form[id*=give-form] #give-final-total-wrap .give-donation-total-label{background-color:#f2f2f2;color:#333;margin:0;padding:0 12px;height:35px;line-height:35px;font-size:18px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;border:1px solid #ccc}@media (max-width:480px){form[id*=give-form] #give-final-total-wrap .give-donation-total-label{display:block;float:none}}form[id*=give-form] #give-final-total-wrap .give-final-total-amount{background:#fff;border-radius:0;height:35px;line-height:35px;padding:0 12px;margin:0;font-size:18px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border:1px solid #ccc;border-left:none;float:left}@media (max-width:480px){form[id*=give-form] #give-final-total-wrap .give-final-total-amount{border:1px solid #ccc;border-top:0;display:block;float:none}}.give-display-button-only>:not(form),.give-display-button-only form[id*=give-form]>:not(.give-btn-modal){display:none}form[id*=give-form] input[type=radio]{margin:0 .5em 0 0}form[id*=give-form] #give-donation-level-radio-list{margin:0 0 15px;padding:0;list-style:none;clear:both}form[id*=give-form] #give-donation-level-radio-list>li{list-style-type:none;list-style-image:none;margin:0;padding:0}form[id*=give-form] #give-donation-level-radio-list>li label{cursor:pointer;display:inline-block;margin:0}form[id*=give-form] #give-donation-level-radio-list>li input[type=radio]{margin:0 .5em 0 0;outline:none;width:auto}form[id*=give-form] #give-gateway-radio-list{*zoom:1;margin:0 0 15px;padding:0;list-style:none}form[id*=give-form] #give-gateway-radio-list:after,form[id*=give-form] #give-gateway-radio-list:before{content:" ";display:table}form[id*=give-form] #give-gateway-radio-list:after{clear:both}form[id*=give-form] #give-gateway-radio-list>li{list-style-type:none;list-style-image:none;margin:0;padding:0}@media (min-width:480px){form[id*=give-form] #give-gateway-radio-list>li{display:inline-block;margin-right:15px;margin-left:0}}form[id*=give-form] #give-gateway-radio-list>li label.give-gateway-option{cursor:pointer;display:inline;margin:0}form[id*=give-form] #give-gateway-radio-list>li input[type=radio]{margin:0 .25em 0 0;outline:none;width:auto;display:inline}form[id*=give-form] input[type=checkbox]{margin:0 .25em 0 0}form[id*=give-form] select.give-select-level{outline:none;border-radius:0;min-width:155px;border:1px solid #ccc;margin:0 0 15px;display:block;clear:both;color:#333;background-color:#fdfdfd;padding:.5em;max-width:100%}#give-donation-level-button-wrap{*zoom:1;margin:0 0 15px;padding:0;clear:both;list-style:none}#give-donation-level-button-wrap:after,#give-donation-level-button-wrap:before{content:" ";display:table}#give-donation-level-button-wrap:after{clear:both}#give-donation-level-button-wrap>li{list-style-type:none;list-style-image:none;float:left;margin:0 5px 5px 0}.give_terms_links{float:right}[id*=give_secure_site_wrapper]{padding:4px 4px 15px 0;font-size:16px;line-height:20px}[id*=give_secure_site_wrapper] span.padlock{font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:16px;line-height:20px}[id*=give_secure_site_wrapper] span.padlock :before{display:inline-block}#give_purchase_form_wrap input.give-input.card-cvc.valid,#give_purchase_form_wrap input.give-input.card-expiry.valid,#give_purchase_form_wrap input.give-input.card-number.valid{background-image:url(../images/tick.png);background-repeat:no-repeat;background-position:right 10px top 50%;background-size:16px}#give_purchase_form_wrap input.give-input.card-cvc.valid.fl-input:not(.card-cvc):not(.card-expiry),#give_purchase_form_wrap input.give-input.card-expiry.valid.fl-input:not(.card-cvc):not(.card-expiry),#give_purchase_form_wrap input.give-input.card-number.valid.fl-input:not(.card-cvc):not(.card-expiry){background-position:right 55px top 50%}#give_purchase_form_wrap span.card-type{position:absolute;top:-2px;right:0;width:37px;height:26px;background-size:37px 26px!important}#give_purchase_form_wrap .fl-wrap span.card-type{top:calc(.5em + 6px);right:11px}#give_purchase_form_wrap span.card-type.off{display:none}#give_purchase_form_wrap span.card-type.visa{background:url(../images/visa.svg) no-repeat}#give_purchase_form_wrap span.card-type.mastercard{background:url(../images/mastercard.svg) no-repeat}#give_purchase_form_wrap span.card-type.discover{background:url(../images/discover.svg) no-repeat}#give_purchase_form_wrap span.card-type.amex{background:url(../images/amex.svg) no-repeat}#give_purchase_form_wrap span.card-type.maestro{background:url(../images/maestro.svg) no-repeat}#give_purchase_form_wrap span.card-type.dinersclub{background:url(../images/diners-club.svg) no-repeat}#give_purchase_form_wrap span.card-type.jcb{background:url(../images/jcb.svg) no-repeat}#give_purchase_form_wrap span.card-type.dankort{background:url(../images/dankort.png) no-repeat}#give_purchase_form_wrap span.card-type.unionpay{background:url(../images/unionpay.svg) no-repeat}@-webkit-keyframes opacity{0%{opacity:1}to{opacity:0}}@-moz-keyframes opacity{0%{opacity:1}to{opacity:0}}form[id*=give-form] p.give-loading-text,form[id*=give-form] span.give-loading-text{display:none;float:right;height:16px;width:16px;margin:0;padding:0;font-style:italic;line-height:20px;font-size:16px;font-weight:400}form[id*=give-form] .give-loading-animation{font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;float:left;height:16px;width:16px;line-height:1;font-size:16px;margin:0 5px 0 0;background-size:20px 20px;background-repeat:no-repeat;background-color:transparent}form[id*=give-form] .give-payment-mode-label .give-loading-text{float:right}[id*=give-form] .give-login-account-wrap{margin:0 0 15px;position:relative}[id*=give-form] .give-login-account-wrap .give-login-message{text-align:right;margin:0;padding:0}[id*=give-form] .give-login-account-wrap .give-loading-text{position:absolute;right:0;top:.25em}[id*=give-form] fieldset[id^=give-login-fields]{margin:0 0 15px}[id*=give-form] .give-new-account-link{margin:0 0 15px;padding:0}[id*=give-form] .give_login_forgot_password{float:right}.give-submit-button-wrap input.give-cancel-login,[id^=give-user-login-submit] input.give-cancel-login{margin-left:5px}.give-submit-button-wrap span.give-loading-animation,[id^=give-user-login-submit] span.give-loading-animation{margin:0 0 0 .5em;display:none}.give-submit-button-wrap .give-submit,[id^=give-user-login-submit] .give-submit{float:left}.give-user-login-fields-container:after{display:block;content:"";clear:both}#give-login-form div.give-login,#give-login-form legend,#give-register-form div.give-login,#give-register-form legend{line-height:2;margin-bottom:15px}#give-login-form label,#give-register-form label{min-width:100px;display:inline-block}div.give-form-wrap.mfp-hide{display:block!important}div.mfp-content fieldset ol,div.mfp-content fieldset p,div.mfp-content fieldset ul{margin-bottom:1.2em;line-height:1.4}div.mfp-content form[id*=give-form] .give_notices{display:block!important}.give-btn{background:#ededed;border:1px solid #ccc;color:#333;padding:8px 10px;cursor:pointer;line-height:1.2em;font-size:1em}.give-btn:hover{background:#dbdbdb}#give_profile_editor_form legend{width:auto;padding:0 5px 5px;border-bottom:0}form#give-email-access-form div.g-recaptcha,form#give-email-access-form input#give-email{margin:0 0 15px}form#give-email-access-form input#give-email{width:305px}@media (max-width:768px){[id*=give-form] div#give-sidebar-left,[id*=give-form] div.images,[id*=give-form] div.summary{width:100%;float:none}}.give-form-wrap .give-form h3.give-section-break,.give-form-wrap .give-form h4.give-section-break{margin:10px 0 0}.give-do-validate input.error{border-color:red!important}.give-button-with-loader span.give-loading-animation{display:none;position:relative;top:3px;float:right;font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;height:16px;width:16px;line-height:1;font-size:16px;margin:0 0 0 5px;background-size:20px 20px;background-repeat:no-repeat;background-color:transparent}.give-active span.give-loading-animation{display:inline}.give_notices{position:relative}.give_notices .notice-dismiss{position:absolute;top:50%;right:0;transform:translateY(-50%);border:none;margin:0;padding:5px;background:0 0;color:#72777c;cursor:pointer;max-width:28px!important}.give_notices .notice-dismiss:before{background:0 0;color:#72777c;content:"\f153";display:block;font:400 16px/20px dashicons;speak:none;height:20px;text-align:center;width:20px;-webkit-font-smoothing:antialiased}.give_notices .notice-dismiss:hover{background-color:transparent}.give_notices .notice-dismiss:hover:before{color:#dc3232}.give_error,.give_success,.give_warning{position:relative;margin:15px 0;background:#f9f9f9;padding:1em 1.5em 1em 2em;border-left:4px solid;box-shadow:0 1px 1px rgba(0,0,0,.125);clear:both}.give_error>p,.give_success>p,.give_warning>p{margin:0!important;color:#333}.give_error:before,.give_success:before,.give_warning:before{font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:absolute;top:50%;font-size:16px;margin-top:-15px;left:-17px;color:#fff;width:30px;height:30px;border-radius:100%;text-align:center;line-height:30px;text-shadow:1px 1px rgba(0,0,0,.5)}.give_error{border-color:#a00}.give_error:before{content:"\f02d";background-color:#a00}.give_success{border-color:#7ad03a}.give_success:before{background-color:#7ad03a;content:"\e601"}.give_warning{border-color:#ffba00}.give_warning:before{background-color:#ffba00;content:"\f02d"}.twentythirteen .give_forms{padding:40px 0}.twentyfourteen .tfgive{padding:12px 10px 0;max-width:474px;margin:0 auto}.twentyfourteen .tfgive .give_forms .entry-summary{padding:0!important;margin:0 0 1.618em!important}.twentyfourteen .tfgive div.give_forms.hentry.has-post-thumbnail{margin-top:0}.twentyfourteen .tfgive .give_forms .images img{margin-bottom:1em}@media screen and (min-width:673px){.twentyfourteen .tfgive{padding-right:30px;padding-left:30px}}@media screen and (min-width:1040px){.twentyfourteen .tfgive{padding-right:15px;padding-left:15px}}@media screen and (min-width:1110px){.twentyfourteen .tfgive{padding-right:30px;padding-left:30px}}@media screen and (min-width:1218px){.twentyfourteen .tfgive{margin-right:54px}.full-width .twentyfourteen .tfgive{margin-right:auto}}.twentyfifteen .t15give{padding-left:7.6923%;padding-right:7.6923%;padding-top:7.6923%;margin-bottom:7.6923%;background:#fff;box-shadow:0 0 1px rgba(0,0,0,.15)}.twentyfifteen .t15give .page-title{margin-left:0}.twentyfifteen .t15give div.summary{padding:0}@media screen and (min-width:38.75em){.twentyfifteen .t15give{margin-right:7.6923%;margin-left:7.6923%;margin-top:8.3333%}}@media screen and (min-width:59.6875em){.twentyfifteen .t15give{margin-left:8.3333%;margin-right:8.3333%;padding:10%}.single-product .twentyfifteen .entry-summary{padding:0!important}}.avada-row>div.give-wrap #content{width:100%}.give-goal-progress{margin-bottom:20px;clear:both}.give-goal-progress .income{font-size:46px;line-height:48px;letter-spacing:-1px;color:#333}.give-goal-progress .raised{margin-bottom:15px}.give-progress-bar{height:20px;position:relative;background:#eee;border-radius:25px;overflow:hidden}.give-progress-bar>span{display:block;height:100%;border-top-right-radius:8px;border-bottom-right-radius:8px;border-top-left-radius:20px;border-bottom-left-radius:20px;background-color:#2bc253;position:relative;overflow:hidden}table.give-table{color:#666;font-size:14px;text-shadow:1px 1px 0 #fff;background:#eaebec;margin:20px 0;border:1px solid #e0e0e0;border-top:none;border-bottom:none;width:100%}table.give-table thead{font-weight:700}table.give-table thead th:first-child{text-align:left;border-left:none}table.give-table th{padding:21px 25px;border:1px solid #e0e0e0;border-top-color:#e8e8e8;border-right:none;background:#f6f6f6;text-align:center;font-weight:700}table.give-table tbody tr{text-align:center}table.give-table tbody tr td{padding:18px;border:1px solid #e0e0e0;border-top-color:#fff;border-right:none;background:#fff;text-align:center}table.give-table tbody tr td:first-child{text-align:left;border-left:0}table.give-table tbody tr:nth-child(2n) td{background:#fcfcfc}body.give-twentysixteen div.entry-summary{margin:0}body.give-twentysixteen button.give-btn{color:#333}body.give-twentysixteen .give-submit{color:#fff}body.give-twentysixteen fieldset#give_terms_agreement{padding-left:0}body.give-twentyseventeen.colors-dark div#give_purchase_form_wrap span.give-final-total-amount,body.give-twentyseventeen.colors-dark div.give-total-wrap input.give-text-input,body.give-twentyseventeen.colors-dark div.give_notices p{color:#000}body.give-twentyseventeen.colors-dark form[id*=give] fieldset{background-color:transparent}body.give-twentynineteen .give-form .give-btn:focus{color:#fff}body.theme-twentytwenty .give-wrap{max-width:1200px;margin:60px auto}html[class*=avia] body#top form[id*=give-form] input.give-amount-top{width:unset;border:1px solid #ccc;border-left:none}html[class*=avia] body#top [id*=give-form].give-fl-form.give-fl-style-give label.give-fl-label{left:7px}html[class*=avia] body#top [id*=give-form].give-fl-form div.give-fl-is-active input{padding:8px 6px 0}.give-donation-history .give-table{table-layout:auto}.give-donation-history .give-table .give-security-column{float:left}.give-donation-history .give-table .give-security-column.give-security-description-wrap{width:75%;padding:16px 13px;font-size:12px;font-style:italic}.give-donation-history .give-table .give-security-column.give-security-button-wrap{width:25%;padding:25px 5px}.give-donation-history .give-table .give-security-column.give-security-button-wrap span{display:none;padding:0 20px}.give_user_history_main .give-mobile-title{display:none}@media screen and (max-width:480px){#give_user_history thead{display:none}#give_user_history tbody{border-top:1px solid #e0e0e0}#give_user_history tr{padding:.5rem 0;background:#fff}#give_user_history tr:nth-child(2n){background-color:#fafafa}#give_user_history td{border:none;padding-top:0;padding-bottom:0;background-color:transparent}#give_user_history td,#give_user_history tr{display:block;border-left:none;text-align:left}#give_user_history .give-mobile-title{display:inline-block;font-weight:700;min-width:6em}}.give-modal{top:0;left:0;width:100%;height:100%;z-index:2148482499;position:fixed;overflow:hidden;outline:none!important;-webkit-backface-visibility:hidden;-webkit-overflow-scrolling:touch;-webkit-transform:translateZ(0)}.give-modal form[id*=give-form],.give-modal form[id*=give-form] .give-submit{margin-bottom:0}.give-modal form[id*=give-form] .give-payment-mode-label{margin-top:0;padding-top:0}@media (max-width:580px){.give-modal form[id*=give-form] .give-input{font-size:16px}}.give-modal .mfp-content{box-sizing:border-box;position:relative;background:#fff;padding:20px;width:auto;max-width:650px;margin:40px auto;z-index:2148482599}.give-modal .mfp-content [id*=give-form] #give-payment-mode-select,.give-modal .mfp-content [id*=give-form] #give_purchase_form_wrap,.give-modal .mfp-content [id*=give-form].give-display-button-only .give-donation-amount,.give-modal .mfp-content [id*=give-form].give-display-button-only .give-donation-levels-wrap{display:block}.give-modal .mfp-content .mfp-close:hover{background-color:transparent}.give-modal form.give-form button.mfp-close{position:absolute;display:block!important}.give-modal .mfp-container:after{display:none}.give-modal .mfp-content{vertical-align:middle;transform:translateY(-100px)}.give-modal.mfp-bg,.give-modal .mfp-content{opacity:0;transition:all .2s}.give-modal.mfp-ready .mfp-content{opacity:1;transform:translateY(0)}.give-modal.mfp-ready.mfp-bg{opacity:.8}.give-modal.mfp-removing .mfp-content{transform:translateY(-50px);opacity:0}.give-modal.mfp-removing.mfp-bg{opacity:0}.give-donation-grid-item-form{position:relative;margin:0 auto;max-width:600px;background-color:#fff;padding:1rem 1.5rem;height:85vh;overflow-y:auto}.give-donation-grid-item-form #give_purchase_form_wrap{display:block!important}.give-donation-grid-item-form .give-btn-modal,.give-donation-grid-item-form .give-btn-reveal{display:none!important}.modal-fade-slide.give-modal .mfp-content{padding:0;max-width:100%}.modal-fade-slide .give-modal--slide{opacity:0;transition:all .2s ease-out;transform:translateY(-20px) perspective(600px) rotateX(0)}.modal-fade-slide.mfp-ready .give-modal--slide{opacity:1;transform:translateY(0) perspective(600px) rotateX(0)}.modal-fade-slide.mfp-removing .give-modal--slide{opacity:0;transform:translateY(-10px) perspective(600px) rotateX(0)}.modal-fade-slide.mfp-bg{opacity:0;transition:opacity .3s ease-out}.modal-fade-slide.mfp-ready.mfp-bg{opacity:.8}.modal-fade-slide.mfp-removing.mfp-bg{opacity:0}.mfp-close:hover{background-color:transparent}.mfp-content .give-display-button-only .give-form-title{display:none}.mfp-content .give-display-button-only>:not(form),.mfp-content .give-display-button-only form>:not(.give-btn-modal){display:block}.give-donor{border:1px solid #e5e5e5;background:#fff;color:#333;font-size:1em;margin-bottom:20px;padding:20px;position:relative;transition:all .2s ease-out;width:100%}.give-donor__header{align-items:center;display:flex}.give-donor__image{border:1px solid #e5e5e5;background:#fff;text-align:center;flex-basis:60px;flex-shrink:0;line-height:60px;height:60px;margin-right:10px;overflow:hidden;border-radius:50%}.give-donor__image img{border-radius:50%;display:block;height:58px;object-fit:cover;width:100%}.give-donor__details{flex-grow:1;overflow:hidden}.give-donor__name{font-size:1em!important;font-weight:700!important;margin:0!important;padding:0!important}.give-donor__name,.give-donor__timestamp{color:#333!important;line-height:1.3!important}.give-donor__timestamp{display:block;font-size:75%!important}.give-donor__content{margin-top:10px;width:100%}.give-donor__content p{color:#333;font-size:1em!important;line-height:1.5!important;margin:0 0 20px!important;padding:0!important;width:100%}.give-donor__content:first-child{margin-top:0!important}.give-donor__content :last-child{margin-bottom:0!important}.give-donor__read-more{cursor:pointer;white-space:nowrap}.give-donor__excerpt+.give-donor__comment{display:none}.give-donor-wall-modal p:last-child{margin-bottom:0}.form-row .give-stripe-cc-field{box-sizing:border-box;width:100%;border-radius:0;outline:none;color:#333;background-color:#fdfdfd;border:1px solid #ccc;margin:0;padding:.5em}.give-stripe-cc-field.give-fl-input{height:auto;min-height:50px;line-height:inherit;padding:14px 10px;background-color:#fff}.give-stripe-cc-field-wrap .give-fl-is-active .give-fl-input{padding:20px 12px 4px;transition:padding .2s ease-in-out,border .2s ease-in-out}.give-stripe-cc-field-wrap .give-fl-label span{display:none}.give-stripe-single-cc-field-wrap{border:1px solid #ccc;background-color:#fdfdfd;padding:10px;height:40px;margin:0 0 15px}.give-form .give-stripe-cc-field.focus,.give-form .give-stripe-cc-field:focus{background-color:#fff}.give-wrap .give-grid{max-width:30rem}.give-wrap .give-grid__item{margin-bottom:1.5rem;width:100%}.give-wrap .give-grid__item>:last-child{margin-bottom:0}.give-wrap .give-wrap:before{display:block;content:"";clear:both}@media (min-width:30rem){.give-wrap .give-grid{display:flex;flex-flow:row wrap;margin-bottom:1.5rem;max-width:100%}.give-wrap .give-grid__item{padding:0 .75rem;display:flex}}@media (min-width:30rem) and (min-width:40rem){.give-wrap .give-grid--2 .give-grid__item,.give-wrap .give-grid--3 .give-grid__item,.give-wrap .give-grid--4 .give-grid__item{width:50%}}@media (min-width:30rem) and (min-width:72rem){.give-wrap .give-grid--3 .give-grid__item,.give-wrap .give-grid--4 .give-grid__item{width:33.33333%}}@media (min-width:30rem) and (min-width:90rem){.give-wrap .give-grid--4 .give-grid__item{width:25%}}@supports (display:grid){.give-wrap .give-grid{display:grid;grid-template-columns:1fr;grid-gap:1.5rem;margin-bottom:1.5rem;max-width:100%}.give-wrap .give-grid__item{display:flex;margin-bottom:0;padding:0;width:auto!important}@media (min-width:40rem){.give-wrap .give-grid--best-fit{grid-template-columns:repeat(auto-fit,minmax(320px,1fr))}}@media (min-width:40rem){.give-wrap .give-grid--2,.give-wrap .give-grid--3,.give-wrap .give-grid--4{grid-template-columns:repeat(2,1fr)}}@media (min-width:72rem){.give-wrap .give-grid--3,.give-wrap .give-grid--4{grid-template-columns:repeat(3,1fr)}}@media (min-width:90rem){.give-wrap .give-grid--4{grid-template-columns:repeat(4,1fr)}}}.give-wrap .give-card{background-color:#fff;border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04);color:inherit;display:flex;flex-direction:column;width:100%;text-decoration:none;transition:all .1s ease-out}.give-wrap .give-card:active,.give-wrap .give-card:focus,.give-wrap .give-card:hover,.give-wrap .give-card:visited{border-color:#ccc;box-shadow:0 4px 12px rgba(0,0,0,.16)}.give-wrap .give-card__media img{border-radius:0;box-shadow:none;display:block;height:auto;margin:0;object-fit:cover;order:1;width:100%}.give-wrap .give-card__body{display:flex;flex-direction:column;flex-grow:1;order:2;padding:1.5rem}.give-wrap .give-card__body>:last-child{margin-bottom:0}.give-wrap .give-card__title{line-height:1.3;margin:0 0 .75rem;padding:0}.give-wrap .give-card__text{margin:0 0 1.5rem;padding:0}.give-wrap .give-card__progress{margin-top:auto;width:100%}.give-wrap .give-card__progress .raised,.give-wrap .give-card__progress>:last-child{margin-bottom:0}.give-wrap .give-card__progress .income{font-size:2em}.give-wrap .give-page-numbers{font-size:1.25em}#give-receipt .timeline-item{background:#fff}@keyframes placeHolderShimmer{0%{background-position:0 0}to{background-position:520px 0}}#give-receipt .placeholder-animation{max-width:650px;margin:0 auto}#give-receipt .animated-background{animation-duration:.85s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-name:placeHolderShimmer;animation-timing-function:linear;background:#f6f7f8;background:linear-gradient(90deg,#eee 8%,#ddd 18%,#eee 33%);background-size:520px 100%;position:relative}#give-receipt .container{margin:0 auto;width:650px;background-color:#eee;border:1px solid #eee}#give-receipt .layer{display:flex}#give-receipt .layer.h1{height:28px}#give-receipt .layer.h2{height:22px}#give-receipt .layer.inline-radios{height:12px}#give-receipt .layer.label{height:8px}#give-receipt .layer-item.opaque{background:#fff}#give-receipt .layer-gap{background-color:#fff}#give-receipt .layer-gap.large{height:40px}#give-receipt .layer-gap.medium{height:20px}#give-receipt .layer-gap.small{height:10px}#give-receipt .layer-1 .layer-item:nth-child(odd){width:45%}#give-receipt .layer-1 .layer-item:nth-child(2n){width:55%}#give-receipt .layer-4 .layer-item:first-child{width:30%}#give-receipt .layer-4 .layer-item:nth-child(2){width:10%}#give-receipt .layer-4 .layer-item:nth-child(3){width:20%}#give-receipt .layer-4 .layer-item:nth-child(4){width:30%}#give-receipt .layer-4 .layer-item:nth-child(5){width:10%}#give-receipt .layer-5 .layer-item:first-child{width:40%}#give-receipt .layer-5 .layer-item:nth-child(2){width:5%}#give-receipt .layer-5 .layer-item:nth-child(3){width:15%}#give-receipt .layer-5 .layer-item:nth-child(4){width:40%}#give-receipt .layer-6 .layer-item:nth-child(odd){width:30%}#give-receipt .layer-6 .layer-item:nth-child(2n){width:70%}#give-receipt .layer-8 .layer-item:first-child{width:40%}#give-receipt .layer-8 .layer-item:nth-child(2){width:20%}#give-receipt .layer-8 .layer-item:nth-child(3){width:40%}.give-grid-ie-utility{margin:0 -12px}@supports (display:grid){.give-grid-ie-utility{margin:0}}
assets/dist/css/give.rtl.css CHANGED
@@ -15,4 +15,4 @@
15
  * @author: Paul Ryley (http://geminilabs.io)
16
  * @url: https://geminilabs.github.io/float-labels.js
17
  * @license: MIT
18
- */[id*=give-form].give-fl-form .give-fl-wrap{position:relative;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}[id*=give-form].give-fl-form input.give-fl-input,[id*=give-form].give-fl-form select.give-fl-select,[id*=give-form].give-fl-form textarea.give-fl-textarea{width:100%;outline:0;font-size:16px;line-height:normal;border-radius:0;border:1px solid #ccc;background-color:inherit;box-sizing:border-box;transition:all .2s ease-in-out;margin-bottom:0}[id*=give-form].give-fl-form input.give-fl-input:-moz-placeholder,[id*=give-form].give-fl-form input.give-fl-input::-moz-placeholder,[id*=give-form].give-fl-form select.give-fl-select:-moz-placeholder,[id*=give-form].give-fl-form select.give-fl-select::-moz-placeholder,[id*=give-form].give-fl-form textarea.give-fl-textarea:-moz-placeholder,[id*=give-form].give-fl-form textarea.give-fl-textarea::-moz-placeholder{color:#757575}[id*=give-form].give-fl-form input.give-fl-input:-ms-input-placeholder,[id*=give-form].give-fl-form select.give-fl-select:-ms-input-placeholder,[id*=give-form].give-fl-form textarea.give-fl-textarea:-ms-input-placeholder{color:#757575}[id*=give-form].give-fl-form input.give-fl-input::-webkit-input-placeholder,[id*=give-form].give-fl-form select.give-fl-select::-webkit-input-placeholder,[id*=give-form].give-fl-form textarea.give-fl-textarea::-webkit-input-placeholder{color:#757575}[id*=give-form].give-fl-form select.give-fl-select{position:relative;color:#757575;cursor:pointer;-webkit-appearance:none;-moz-appearance:none}[id*=give-form].give-fl-form .give-fl-is-active input.give-fl-input,[id*=give-form].give-fl-form .give-fl-is-active select.give-fl-select,[id*=give-form].give-fl-form .give-fl-is-active textarea.give-fl-textarea{color:#333;background-color:inherit;border-color:#ccc}[id*=give-form].give-fl-form .give-fl-has-focus input.give-fl-input,[id*=give-form].give-fl-form .give-fl-has-focus select.give-fl-select,[id*=give-form].give-fl-form .give-fl-has-focus textarea.give-fl-textarea{background-color:inherit;border-color:#ccc}[id*=give-form].give-fl-form label.give-fl-label{opacity:0;visibility:hidden;display:block;position:absolute;top:-12px;right:0;font-size:12px;font-weight:700;line-height:1;color:#757575;border-radius-top-right:0;transition:all .2s ease-in-out;z-index:1}[id*=give-form].give-fl-form .give-fl-is-active label.give-fl-label{opacity:1;visibility:visible}[id*=give-form].give-fl-form .give-fl-has-focus label.give-fl-label{color:#1976d2}[id*=give-form].give-fl-form .give-fl-is-required:before{opacity:1;content:"*";display:block;position:absolute;top:1px;left:18px;font-size:16px;line-height:1.75;color:#d32f2f;transition:all .2s ease-in-out;padding:6px 0 0;z-index:1}[id*=give-form].give-fl-form .give-fl-is-required.give-fl-is-active:before{opacity:0}[id*=give-form].give-fl-form.give-fl-style-1 input.give-fl-input,[id*=give-form].give-fl-form.give-fl-style-1 select.give-fl-select,[id*=give-form].give-fl-form.give-fl-style-1 textarea.give-fl-textarea{padding:6px 12px}[id*=give-form].give-fl-form.give-fl-style-1 select.give-fl-select{height:44px}[id*=give-form].give-fl-form.give-fl-style-1 .give-fl-is-active input.give-fl-input,[id*=give-form].give-fl-form.give-fl-style-1 .give-fl-is-active select.give-fl-select,[id*=give-form].give-fl-form.give-fl-style-1 .give-fl-is-active textarea.give-fl-textarea{padding:6px 12px}[id*=give-form].give-fl-form.give-fl-style-1 label.give-fl-label{top:1px;right:10px;background-color:transparent;padding:12px 3px}[id*=give-form].give-fl-form.give-fl-style-1 label.give-fl-label:before{content:"";display:block;position:absolute;top:19px;right:0;left:0;height:1px;background-color:inherit;z-index:-1}[id*=give-form].give-fl-form.give-fl-style-1 .give-fl-is-active label.give-fl-label{top:-9px;padding:3px}[id*=give-form].give-fl-form.give-fl-style-1 .give-fl-is-active label.give-fl-label:before{top:9px}[id*=give-form].give-fl-form.give-fl-style-2 input.give-fl-input,[id*=give-form].give-fl-form.give-fl-style-2 select.give-fl-select,[id*=give-form].give-fl-form.give-fl-style-2 textarea.give-fl-textarea{padding:12px}[id*=give-form].give-fl-form.give-fl-style-2 select.give-fl-select{height:56px}[id*=give-form].give-fl-form.give-fl-style-2 .give-fl-is-active input.give-fl-input,[id*=give-form].give-fl-form.give-fl-style-2 .give-fl-is-active select.give-fl-select,[id*=give-form].give-fl-form.give-fl-style-2 .give-fl-is-active textarea.give-fl-textarea{padding:18px 12px 6px}[id*=give-form].give-fl-form.give-fl-style-2 label.give-fl-label{top:1px;right:10px;padding:6px 3px 3px}[id*=give-form].give-fl-form.give-fl-style-2 .give-fl-is-required:before{padding-top:12px}[id*=give-form].give-fl-form .give-fl-wrap-select:after{content:"";position:absolute;display:block;top:1px;left:6px;height:calc(100% - 2px);width:15px;background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 16'><path fill='#757575' d='M 4 0 L 0 6.5 L 8 6.5 L 4 0 z M 0 9.5 L 4 16 L 4 16 L 8 9.5 z'/></svg>") no-repeat;background-position:0 50%;background-size:7px 14px;z-index:2}.mfp-bg{z-index:1000001;overflow:hidden;background:#0b0b0b;opacity:.8}.mfp-bg,.mfp-wrap{top:0;right:0;width:100%;height:100%;position:fixed}.mfp-wrap{z-index:1000002;outline:none!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;right:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{content:"";display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:right;z-index:1000004}.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;right:8px;left:8px;z-index:1000003}.mfp-preloader a{color:#ccc}.mfp-preloader a:hover{color:#fff}.mfp-s-error .mfp-content,.mfp-s-ready .mfp-preloader{display:none}button.mfp-arrow,button.mfp-close{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:none;padding:0;z-index:1000005;box-shadow:none;touch-action:manipulation}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;left:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 10px 18px 0;color:#fff;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:focus,.mfp-close:hover{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{color:#fff;left:-6px;text-align:left;padding-left:6px;width:100%}.mfp-counter{position:absolute;top:0;left:0;color:#ccc;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;top:50%;margin:-55px 0 0;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:focus,.mfp-arrow:hover{opacity:1}.mfp-arrow:after,.mfp-arrow:before{content:"";display:block;width:0;height:0;position:absolute;right:0;top:0;margin-top:35px;margin-right:35px;border:inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{right:0}.mfp-arrow-left:after{border-left:17px solid #fff;margin-right:31px}.mfp-arrow-left:before{margin-right:25px;border-left:27px solid #3f3f3f}.mfp-arrow-right{left:0}.mfp-arrow-right:after{border-right:17px solid #fff;margin-right:39px}.mfp-arrow-right:before{border-right:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;right:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;box-sizing:border-box;padding:40px 0;margin:0 auto}.mfp-figure,img.mfp-img{line-height:0}.mfp-figure:after{content:"";position:absolute;right:0;top:40px;bottom:40px;display:block;left:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;right:0;width:100%;cursor:auto}.mfp-title{text-align:right;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-left:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-height:300px),screen and (max-width:800px) and (orientation:landscape){.mfp-img-mobile .mfp-image-holder{padding-right:0;padding-left:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-right:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{left:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;left:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:100%;transform-origin:100%}.mfp-arrow-right{-webkit-transform-origin:0;transform-origin:0}.mfp-container{padding-right:6px;padding-left:6px}}@font-face{font-family:give-icomoon;src:url(../fonts/icomoon.eot);src:url(../fonts/icomoon.eot#iefix) format("embedded-opentype"),url(../fonts/icomoon.woff) format("woff"),url(../images/icomoon.svg#icomoon) format("svg");font-weight:400;font-style:normal}.give-icon:before{font-style:normal}[class*=" give-icon-"],[class^=give-icon-]{font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.give-icon-lamp:before{content:"\e603"}.give-icon-heart:before{content:"\e604"}.give-icon-question:before{content:"\e602"}.give-icon-info:before{content:"\e601"}.give-icon-new-tab:before{content:"\ea7e"}.give-icon-alert:before{content:"\f02d"}.give-icon-help:before{content:"\e606"}.give-icon-spinner:before{content:"\e605"}.give-button-with-loader span.give-loading-animation:before,.give-icon-spinner2:before,form[id*=give-form] .give-loading-animation:before{content:"\e607"}.give-icon-plus:before{content:"\e040"}.give-icon-minus:before{content:"\e041"}.give-icon-locked:before,[id*=give_secure_site_wrapper] span.padlock:before{content:"\e600"}.dashicons-give:before{font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\e800"}.fa-spin,.give-button-with-loader span.give-loading-animation,form[id*=give-form] .give-loading-animation{-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-359deg);transform:rotate(-359deg)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-359deg);transform:rotate(-359deg)}}body.give_receipt_page{background-color:#fff;color:#141412;margin:0;font-family:Helvetica,sans-serif;font-size:12px}body.give_receipt_page #give_receipt_wrapper{width:660px;margin:0 auto;padding:50px 0}body.give_receipt_page table{display:table;width:100%;border-bottom:1px solid #ededed;border-collapse:collapse;border-spacing:0;font-size:14px;line-height:2;margin:0 0 20px}body.give_receipt_page td,body.give_receipt_page th{display:table-cell;text-align:right;border-top:1px solid #ededed;padding:6px 0 6px 10px;font-weight:400}body.give_receipt_page th{font-weight:700;text-transform:uppercase}body.give_receipt_page h3{font-size:22px;margin:40px 0 5px;clear:both;display:block;font-weight:700}table#give_donation_receipt,table#give_donation_receipt_products{width:100%}table#give_donation_receipt td,table#give_donation_receipt th{text-align:right}table#give_donation_receipt .give-receipt-thead-text{font-size:18px;text-align:center;display:block}table#give_donation_receipt .give-receipt-thead-text>span{font-size:16px}table#give_donation_receipt li{margin:0 10px 8px 0}table#give_donation_receipt ul{margin:0;padding:0;list-style:none}table#give_donation_receipt .give_receipt_payment_status.failed,table#give_donation_receipt .give_receipt_payment_status.pending,table#give_donation_receipt .give_receipt_payment_status.revoked{color:#f73f2e}table#give_donation_receipt span.donation-level-text-wrap{font-style:italic;display:block}[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input,[id*=give-form].give-fl-form.give-fl-style-give select.give-fl-select,[id*=give-form].give-fl-form.give-fl-style-give textarea.give-fl-textarea{line-height:inherit;padding:12px;background-color:#fff}[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input[type=email],[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input[type=number],[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input[type=password],[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input[type=search],[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input[type=tel],[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input[type=text],[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input[type=url]{height:auto;min-height:50px}[id*=give-form].give-fl-form.give-fl-style-give select.give-fl-select{line-height:inherit}[id*=give-form].give-fl-form.give-fl-style-give .give-fl-is-active input.give-fl-input,[id*=give-form].give-fl-form.give-fl-style-give .give-fl-is-active select.give-fl-select,[id*=give-form].give-fl-form.give-fl-style-give .give-fl-is-active textarea.give-fl-textarea{padding:20px 12px 4px;transition:padding .2s ease-in-out,border .2s ease-in-out}[id*=give-form].give-fl-form.give-fl-style-give label.give-fl-label{top:1px;right:13px;left:0;padding:6px 0 0}[id*=give-form].give-fl-form.give-fl-style-give .give-fl-is-required:before{padding-top:12px}[id*=give-form].give-fl-form.give-fl-style-give label.give-fl-label .give-required-indicator{display:none}[id*=give-form].give-fl-form.give-fl-style-give label.give-fl-label .give-tooltip{position:absolute;top:0;width:100%;height:100%;margin:0;z-index:1}[id*=give-form].give-fl-form.give-fl-style-give label.give-fl-label .give-tooltip:before{content:unset}.give-clearfix{*zoom:1}.give-clearfix:after,.give-clearfix:before{content:" ";display:table}.give-clearfix:after{clear:both}[id*=give-form] .give-hidden{display:none}[id*=give-form] fieldset{background-color:transparent;padding:0;margin:0;border:0}[id*=give-form] .give-form-title{padding:0;margin:0 0 15px}[id*=give-form] div#give-sidebar-left{width:38%;float:right}[id*=give-form] div.images{margin:0 0 15px}[id*=give-form] div.images img{display:block;width:100%;height:auto;box-shadow:none}[id*=give-form] .give-custom-amount-text{clear:both}[id*=give-form] div.summary{width:58%;float:left}[id*=give-form] div.summary.give-full-width{width:100%;float:none}[id*=give-form] .give_form select.give-select.required{color:#000}[id*=give-form] div.give-form-content-wrap{margin:0 0 20px}[id*=give-form] div.give-form-content-wrap.give_post_form-content{margin:20px 0 0}[id*=give-form].give-display-modal form .give_notices{display:none}[id*=give-form].give-display-modal .give-btn,[id*=give-form].give-display-reveal .give-btn{margin:0 0 15px}[id*=give-form].give-display-modal #give-payment-mode-select,[id*=give-form].give-display-modal #give_purchase_form_wrap,[id*=give-form].give-display-reveal #give-payment-mode-select,[id*=give-form].give-display-reveal #give_purchase_form_wrap{display:none}[id*=give-form] .cc-address{margin-bottom:15px}.single-give_forms.et_right_sidebar #main-content .container:before{display:none}.single-give_forms .give_forms{*zoom:1}.single-give_forms .give_forms:after,.single-give_forms .give_forms:before{content:" ";display:table}.single-give_forms .give_forms:after{clear:both}#give-purchase-gravatars .give-gravatars-title{margin:0 0 15px}#give-purchase-gravatars .give-purchase-gravatars-list{list-style:none;margin:0;padding:0}#give-purchase-gravatars .give-purchase-gravatars-list li{list-style-type:none;display:inline-block;margin:0 0 0 5px;padding:0}#give-recurring-form,form.give-form,form[id*=give-form]{margin:0 0 25px;padding:0}#give-recurring-form .give-hidden,form.give-form .give-hidden,form[id*=give-form] .give-hidden{display:none}@media (min-width:481px){#give-recurring-form .give-title-prefix-wrap .form-row-first,#give-recurring-form .give-title-prefix-wrap .form-row-last,form.give-form .give-title-prefix-wrap .form-row-first,form.give-form .give-title-prefix-wrap .form-row-last,form[id*=give-form] .give-title-prefix-wrap .form-row-first,form[id*=give-form] .give-title-prefix-wrap .form-row-last{float:right;width:40%}#give-recurring-form .give-title-prefix-wrap .form-row-title,form.give-form .give-title-prefix-wrap .form-row-title,form[id*=give-form] .give-title-prefix-wrap .form-row-title{float:right;width:15%}}#give-recurring-form .give-tooltip,form.give-form .give-tooltip,form[id*=give-form] .give-tooltip{margin:0 3px;padding:0;font-size:14px;-moz-transition:.2s all linear;-o-transition:.2s all linear;transition:all .2s linear;color:rgba(51,51,51,.5)}#give-recurring-form .give-tooltip:hover,form.give-form .give-tooltip:hover,form[id*=give-form] .give-tooltip:hover{color:#333}#give-recurring-form h3.give-section-break,#give-recurring-form h4.give-section-break,#give-recurring-form legend,form.give-form h3.give-section-break,form.give-form h4.give-section-break,form.give-form legend,form[id*=give-form] h3.give-section-break,form[id*=give-form] h4.give-section-break,form[id*=give-form] legend{background-color:transparent;font-size:1.15em;font-weight:700;margin:10px 0 15px;padding:0 0 5px;border-bottom:1px solid rgba(0,0,0,.1);width:100%}#give-recurring-form h3.give-section-break span.sub-text,#give-recurring-form h4.give-section-break span.sub-text,#give-recurring-form legend span.sub-text,form.give-form h3.give-section-break span.sub-text,form.give-form h4.give-section-break span.sub-text,form.give-form legend span.sub-text,form[id*=give-form] h3.give-section-break span.sub-text,form[id*=give-form] h4.give-section-break span.sub-text,form[id*=give-form] legend span.sub-text{font-style:italic;font-weight:400}#give-recurring-form .form-row,form.give-form .form-row,form[id*=give-form] .form-row{*zoom:1;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:0 0 15px;overflow:visible;padding:0}#give-recurring-form .form-row:after,#give-recurring-form .form-row:before,form.give-form .form-row:after,form.give-form .form-row:before,form[id*=give-form] .form-row:after,form[id*=give-form] .form-row:before{content:" ";display:table}#give-recurring-form .form-row:after,form.give-form .form-row:after,form[id*=give-form] .form-row:after{clear:both}#give-recurring-form .form-row:last-child,form.give-form .form-row:last-child,form[id*=give-form] .form-row:last-child{margin-bottom:15px}#give-recurring-form .form-row label,form.give-form .form-row label,form[id*=give-form] .form-row label{display:block;margin:0 0 5px;position:relative;line-height:1.7}#give-recurring-form .form-row label.checkbox,form.give-form .form-row label.checkbox,form[id*=give-form] .form-row label.checkbox{display:inline}#give-recurring-form .form-row input[type=email],#give-recurring-form .form-row input[type=password],#give-recurring-form .form-row input[type=tel],#give-recurring-form .form-row input[type=text],#give-recurring-form .form-row input[type=url],#give-recurring-form .form-row select,#give-recurring-form .form-row textarea,form.give-form .form-row input[type=email],form.give-form .form-row input[type=password],form.give-form .form-row input[type=tel],form.give-form .form-row input[type=text],form.give-form .form-row input[type=url],form.give-form .form-row select,form.give-form .form-row textarea,form[id*=give-form] .form-row input[type=email],form[id*=give-form] .form-row input[type=password],form[id*=give-form] .form-row input[type=tel],form[id*=give-form] .form-row input[type=text],form[id*=give-form] .form-row input[type=url],form[id*=give-form] .form-row select,form[id*=give-form] .form-row textarea{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;border-radius:0;outline:none;color:#333;background-color:#fdfdfd;border:1px solid #ccc;margin:0;padding:.5em}#give-recurring-form .form-row input[type=email]:focus,#give-recurring-form .form-row input[type=password]:focus,#give-recurring-form .form-row input[type=tel]:focus,#give-recurring-form .form-row input[type=text]:focus,#give-recurring-form .form-row input[type=url]:focus,#give-recurring-form .form-row select:focus,#give-recurring-form .form-row textarea:focus,form.give-form .form-row input[type=email]:focus,form.give-form .form-row input[type=password]:focus,form.give-form .form-row input[type=tel]:focus,form.give-form .form-row input[type=text]:focus,form.give-form .form-row input[type=url]:focus,form.give-form .form-row select:focus,form.give-form .form-row textarea:focus,form[id*=give-form] .form-row input[type=email]:focus,form[id*=give-form] .form-row input[type=password]:focus,form[id*=give-form] .form-row input[type=tel]:focus,form[id*=give-form] .form-row input[type=text]:focus,form[id*=give-form] .form-row input[type=url]:focus,form[id*=give-form] .form-row select:focus,form[id*=give-form] .form-row textarea:focus{background-color:#fff}#give-recurring-form .form-row input[type=email].required,#give-recurring-form .form-row input[type=password].required,#give-recurring-form .form-row input[type=tel].required,#give-recurring-form .form-row input[type=text].required,#give-recurring-form .form-row input[type=url].required,#give-recurring-form .form-row select.required,#give-recurring-form .form-row textarea.required,form.give-form .form-row input[type=email].required,form.give-form .form-row input[type=password].required,form.give-form .form-row input[type=tel].required,form.give-form .form-row input[type=text].required,form.give-form .form-row input[type=url].required,form.give-form .form-row select.required,form.give-form .form-row textarea.required,form[id*=give-form] .form-row input[type=email].required,form[id*=give-form] .form-row input[type=password].required,form[id*=give-form] .form-row input[type=tel].required,form[id*=give-form] .form-row input[type=text].required,form[id*=give-form] .form-row input[type=url].required,form[id*=give-form] .form-row select.required,form[id*=give-form] .form-row textarea.required{color:#333}#give-recurring-form .form-row-first,#give-recurring-form .form-row-title,form.give-form .form-row-first,form.give-form .form-row-title,form[id*=give-form] .form-row-first,form[id*=give-form] .form-row-title{margin-left:2.5%}#give-recurring-form .form-row-first,#give-recurring-form .form-row-last,form.give-form .form-row-first,form.give-form .form-row-last,form[id*=give-form] .form-row-first,form[id*=give-form] .form-row-last{float:right;width:48.5%}#give-recurring-form .form-row-last,form.give-form .form-row-last,form[id*=give-form] .form-row-last{float:left}#give-recurring-form .form-row-wide,form.give-form .form-row-wide,form[id*=give-form] .form-row-wide{*zoom:1;clear:both}#give-recurring-form .form-row-wide:after,#give-recurring-form .form-row-wide:before,form.give-form .form-row-wide:after,form.give-form .form-row-wide:before,form[id*=give-form] .form-row-wide:after,form[id*=give-form] .form-row-wide:before{content:" ";display:table}#give-recurring-form .form-row-wide:after,form.give-form .form-row-wide:after,form[id*=give-form] .form-row-wide:after{clear:both}#give-recurring-form .form-row-two-thirds,form.give-form .form-row-two-thirds,form[id*=give-form] .form-row-two-thirds{float:right;width:65.75%}#give-recurring-form .form-row-two-thirds.form-row-first,form.give-form .form-row-two-thirds.form-row-first,form[id*=give-form] .form-row-two-thirds.form-row-first{margin-right:0}#give-recurring-form .form-row-one-third,form.give-form .form-row-one-third,form[id*=give-form] .form-row-one-third{float:right;width:31.25%;margin-right:3%}#give-recurring-form .form-row-one-third.form-row-first,form.give-form .form-row-one-third.form-row-first,form[id*=give-form] .form-row-one-third.form-row-first{margin-right:0}@media (max-width:480px){#give-recurring-form .form-row-responsive,form.give-form .form-row-responsive,form[id*=give-form] .form-row-responsive{margin-right:0;margin-left:0;width:100%}}#give-recurring-form .give-error,#give-recurring-form .give-required-indicator,form.give-form .give-error,form.give-form .give-required-indicator,form[id*=give-form] .give-error,form[id*=give-form] .give-required-indicator{color:#a00}#give-recurring-form .card-expiration>select,form.give-form .card-expiration>select,form[id*=give-form] .card-expiration>select{width:44%;margin:0}#give-recurring-form .card-expiration>span.exp-divider,form.give-form .card-expiration>span.exp-divider,form[id*=give-form] .card-expiration>span.exp-divider{display:inline;text-align:center}#give-recurring-form .card-expiration select.card-expiry-year,form.give-form .card-expiration select.card-expiry-year,form[id*=give-form] .card-expiration select.card-expiry-year{float:left}#give-recurring-form .give-disabled,#give-recurring-form [disabled],form.give-form .give-disabled,form.give-form [disabled],form[id*=give-form] .give-disabled,form[id*=give-form] [disabled]{cursor:not-allowed}form[id*=give-form] .give-donation-amount{margin:0 0 15px}form[id*=give-form] .give-donation-amount .give-currency-symbol{background-color:#f2f2f2;border-top:1px solid #ccc;border-bottom:1px solid #ccc;color:#333;margin:0;padding:0 12px;height:35px;line-height:35px;font-size:18px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:right}form[id*=give-form] .give-donation-amount .give-currency-symbol.give-currency-position-before{border-right:1px solid #ccc;border-left:none}form[id*=give-form] .give-donation-amount .give-currency-symbol.give-currency-position-after{border-right:none;border-left:1px solid #ccc}form[id*=give-form] .give-donation-amount #give-amount,form[id*=give-form] .give-donation-amount #give-amount-text{border:1px solid #ccc;background:#fff;border-radius:0;height:35px;line-height:35px;padding:0 12px;margin:0;font-size:18px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;min-width:125px;float:right}form[id*=give-form] .give-donation-amount #give-amount-text.invalid-amount,form[id*=give-form] .give-donation-amount #give-amount.invalid-amount{border:1px solid red}form[id*=give-form] .give-donation-amount input.give-amount-top{width:125px}form[id*=give-form] .give-donation-amount span.give-final-total-amount{border:1px solid #ccc;border-radius:0;height:35px;line-height:35px;padding:0 12px;margin:0;font-size:18px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;cursor:not-allowed;background:#fff;float:right}form[id*=give-form] #give_terms_agreement legend{display:none}form[id*=give-form] #give_terms_agreement label{display:inline-block}form[id*=give-form] #give-final-total-wrap{margin:10px 0 25px;padding:0;*zoom:1}form[id*=give-form] #give-final-total-wrap:after,form[id*=give-form] #give-final-total-wrap:before{content:" ";display:table}form[id*=give-form] #give-final-total-wrap:after{clear:both}form[id*=give-form] #give-final-total-wrap .give-donation-total-label{background-color:#f2f2f2;color:#333;margin:0;padding:0 12px;height:35px;line-height:35px;font-size:18px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:right;border:1px solid #ccc}@media (max-width:480px){form[id*=give-form] #give-final-total-wrap .give-donation-total-label{display:block;float:none}}form[id*=give-form] #give-final-total-wrap .give-final-total-amount{background:#fff;border-radius:0;height:35px;line-height:35px;padding:0 12px;margin:0;font-size:18px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border:1px solid #ccc;border-right:none;float:right}@media (max-width:480px){form[id*=give-form] #give-final-total-wrap .give-final-total-amount{border:1px solid #ccc;border-top:0;display:block;float:none}}.give-display-button-only>:not(.give-btn-modal){display:none}form[id*=give-form] input[type=radio]{margin:0 0 0 .5em}form[id*=give-form] #give-donation-level-radio-list{margin:0 0 15px;padding:0;list-style:none;clear:both}form[id*=give-form] #give-donation-level-radio-list>li{list-style-type:none;list-style-image:none;margin:0;padding:0}form[id*=give-form] #give-donation-level-radio-list>li label{cursor:pointer;display:inline-block;margin:0}form[id*=give-form] #give-donation-level-radio-list>li input[type=radio]{margin:0 0 0 .5em;outline:none;width:auto}form[id*=give-form] #give-gateway-radio-list{*zoom:1;margin:0 0 15px;padding:0;list-style:none}form[id*=give-form] #give-gateway-radio-list:after,form[id*=give-form] #give-gateway-radio-list:before{content:" ";display:table}form[id*=give-form] #give-gateway-radio-list:after{clear:both}form[id*=give-form] #give-gateway-radio-list>li{list-style-type:none;list-style-image:none;margin:0;padding:0}@media (min-width:480px){form[id*=give-form] #give-gateway-radio-list>li{display:inline-block;margin-left:15px;margin-right:0}}form[id*=give-form] #give-gateway-radio-list>li label.give-gateway-option{cursor:pointer;display:inline;margin:0}form[id*=give-form] #give-gateway-radio-list>li input[type=radio]{margin:0 0 0 .25em;outline:none;width:auto;display:inline}form[id*=give-form] input[type=checkbox]{margin:0 0 0 .25em}form[id*=give-form] select.give-select-level{outline:none;border-radius:0;min-width:155px;border:1px solid #ccc;margin:0 0 15px;display:block;clear:both;color:#333;background-color:#fdfdfd;padding:.5em;max-width:100%}#give-donation-level-button-wrap{*zoom:1;margin:0 0 15px;padding:0;clear:both;list-style:none}#give-donation-level-button-wrap:after,#give-donation-level-button-wrap:before{content:" ";display:table}#give-donation-level-button-wrap:after{clear:both}#give-donation-level-button-wrap>li{list-style-type:none;list-style-image:none;float:right;margin:0 0 5px 5px}.give_terms_links{float:left}[id*=give_secure_site_wrapper]{padding:4px 0 15px 4px;font-size:16px;line-height:20px}[id*=give_secure_site_wrapper] span.padlock{font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:16px;line-height:20px}[id*=give_secure_site_wrapper] span.padlock :before{display:inline-block}#give_purchase_form_wrap input.give-input.card-cvc.valid,#give_purchase_form_wrap input.give-input.card-expiry.valid,#give_purchase_form_wrap input.give-input.card-number.valid{background-image:url(../images/tick.png);background-repeat:no-repeat;background-position:left 10px top 50%;background-size:16px}#give_purchase_form_wrap input.give-input.card-cvc.valid.fl-input:not(.card-cvc):not(.card-expiry),#give_purchase_form_wrap input.give-input.card-expiry.valid.fl-input:not(.card-cvc):not(.card-expiry),#give_purchase_form_wrap input.give-input.card-number.valid.fl-input:not(.card-cvc):not(.card-expiry){background-position:left 55px top 50%}#give_purchase_form_wrap span.card-type{position:absolute;top:-2px;left:0;width:37px;height:26px;background-size:37px 26px!important}#give_purchase_form_wrap .fl-wrap span.card-type{top:calc(.5em + 6px);left:11px}#give_purchase_form_wrap span.card-type.off{display:none}#give_purchase_form_wrap span.card-type.visa{background:url(../images/visa.svg) no-repeat}#give_purchase_form_wrap span.card-type.mastercard{background:url(../images/mastercard.svg) no-repeat}#give_purchase_form_wrap span.card-type.discover{background:url(../images/discover.svg) no-repeat}#give_purchase_form_wrap span.card-type.amex{background:url(../images/amex.svg) no-repeat}#give_purchase_form_wrap span.card-type.maestro{background:url(../images/maestro.svg) no-repeat}#give_purchase_form_wrap span.card-type.dinersclub{background:url(../images/diners-club.svg) no-repeat}#give_purchase_form_wrap span.card-type.jcb{background:url(../images/jcb.svg) no-repeat}#give_purchase_form_wrap span.card-type.dankort{background:url(../images/dankort.png) no-repeat}#give_purchase_form_wrap span.card-type.unionpay{background:url(../images/unionpay.svg) no-repeat}@-webkit-keyframes opacity{0%{opacity:1}to{opacity:0}}@-moz-keyframes opacity{0%{opacity:1}to{opacity:0}}form[id*=give-form] p.give-loading-text,form[id*=give-form] span.give-loading-text{display:none;float:left;height:16px;width:16px;margin:0;padding:0;font-style:italic;line-height:20px;font-size:16px;font-weight:400}form[id*=give-form] .give-loading-animation{font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;float:right;height:16px;width:16px;line-height:1;font-size:16px;margin:0 0 0 5px;background-size:20px 20px;background-repeat:no-repeat;background-color:transparent}form[id*=give-form] .give-payment-mode-label .give-loading-text{float:left}[id*=give-form] .give-login-account-wrap{margin:0 0 15px;position:relative}[id*=give-form] .give-login-account-wrap .give-login-message{text-align:left;margin:0;padding:0}[id*=give-form] .give-login-account-wrap .give-loading-text{position:absolute;left:0;top:.25em}[id*=give-form] fieldset[id^=give-login-fields]{margin:0 0 15px}[id*=give-form] .give-new-account-link{margin:0 0 15px;padding:0}[id*=give-form] .give_login_forgot_password{float:left}.give-submit-button-wrap input.give-cancel-login,[id^=give-user-login-submit] input.give-cancel-login{margin-right:5px}.give-submit-button-wrap span.give-loading-animation,[id^=give-user-login-submit] span.give-loading-animation{margin:0 .5em 0 0;display:none}.give-submit-button-wrap .give-submit,[id^=give-user-login-submit] .give-submit{float:right}.give-user-login-fields-container:after{display:block;content:"";clear:both}#give-login-form div.give-login,#give-login-form legend,#give-register-form div.give-login,#give-register-form legend{line-height:2;margin-bottom:15px}#give-login-form label,#give-register-form label{min-width:100px;display:inline-block}div.give-form-wrap.mfp-hide{display:block!important}div.mfp-content fieldset ol,div.mfp-content fieldset p,div.mfp-content fieldset ul{margin-bottom:1.2em;line-height:1.4}div.mfp-content form[id*=give-form] .give_notices{display:block!important}.give-btn{background:#ededed;border:1px solid #ccc;color:#333;padding:8px 10px;cursor:pointer;line-height:1.2em;font-size:1em}.give-btn:hover{background:#dbdbdb}#give_profile_editor_form legend{width:auto;padding:0 5px 5px;border-bottom:0}form#give-email-access-form div.g-recaptcha,form#give-email-access-form input#give-email{margin:0 0 15px}form#give-email-access-form input#give-email{width:305px}@media (max-width:768px){[id*=give-form] div#give-sidebar-left,[id*=give-form] div.images,[id*=give-form] div.summary{width:100%;float:none}}.give-form-wrap .give-form h3.give-section-break,.give-form-wrap .give-form h4.give-section-break{margin:10px 0 0}.give-do-validate input.error{border-color:red!important}.give-button-with-loader span.give-loading-animation{display:none;position:relative;top:3px;float:left;font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;height:16px;width:16px;line-height:1;font-size:16px;margin:0 5px 0 0;background-size:20px 20px;background-repeat:no-repeat;background-color:transparent}.give-active span.give-loading-animation{display:inline}.give_notices{position:relative}.give_notices .notice-dismiss{position:absolute;top:50%;left:0;transform:translateY(-50%);border:none;margin:0;padding:5px;background:100% 0;color:#72777c;cursor:pointer;max-width:28px!important}.give_notices .notice-dismiss:before{background:100% 0;color:#72777c;content:"\f153";display:block;font:400 16px/20px dashicons;speak:none;height:20px;text-align:center;width:20px;-webkit-font-smoothing:antialiased}.give_notices .notice-dismiss:hover{background-color:transparent}.give_notices .notice-dismiss:hover:before{color:#dc3232}.give_error,.give_success,.give_warning{position:relative;margin:15px 0;background:#f9f9f9;padding:1em 2em 1em 1.5em;border-right:4px solid;box-shadow:0 1px 1px rgba(0,0,0,.125);clear:both}.give_error>p,.give_success>p,.give_warning>p{margin:0!important;color:#333}.give_error:before,.give_success:before,.give_warning:before{font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:absolute;top:50%;font-size:16px;margin-top:-15px;right:-17px;color:#fff;width:30px;height:30px;border-radius:100%;text-align:center;line-height:30px;text-shadow:-1px 1px rgba(0,0,0,.5)}.give_error{border-color:#a00}.give_error:before{content:"\f02d";background-color:#a00}.give_success{border-color:#7ad03a}.give_success:before{background-color:#7ad03a;content:"\e601"}.give_warning{border-color:#ffba00}.give_warning:before{background-color:#ffba00;content:"\f02d"}.twentythirteen .give_forms{padding:40px 0}.twentyfourteen .tfgive{padding:12px 10px 0;max-width:474px;margin:0 auto}.twentyfourteen .tfgive .give_forms .entry-summary{padding:0!important;margin:0 0 1.618em!important}.twentyfourteen .tfgive div.give_forms.hentry.has-post-thumbnail{margin-top:0}.twentyfourteen .tfgive .give_forms .images img{margin-bottom:1em}@media screen and (min-width:673px){.twentyfourteen .tfgive{padding-left:30px;padding-right:30px}}@media screen and (min-width:1040px){.twentyfourteen .tfgive{padding-left:15px;padding-right:15px}}@media screen and (min-width:1110px){.twentyfourteen .tfgive{padding-left:30px;padding-right:30px}}@media screen and (min-width:1218px){.twentyfourteen .tfgive{margin-left:54px}.full-width .twentyfourteen .tfgive{margin-left:auto}}.twentyfifteen .t15give{padding-right:7.6923%;padding-left:7.6923%;padding-top:7.6923%;margin-bottom:7.6923%;background:#fff;box-shadow:0 0 1px rgba(0,0,0,.15)}.twentyfifteen .t15give .page-title{margin-right:0}.twentyfifteen .t15give div.summary{padding:0}@media screen and (min-width:38.75em){.twentyfifteen .t15give{margin-left:7.6923%;margin-right:7.6923%;margin-top:8.3333%}}@media screen and (min-width:59.6875em){.twentyfifteen .t15give{margin-right:8.3333%;margin-left:8.3333%;padding:10%}.single-product .twentyfifteen .entry-summary{padding:0!important}}.avada-row>div.give-wrap #content{width:100%}.give-goal-progress{margin-bottom:20px;clear:both}.give-goal-progress .income{font-size:46px;line-height:48px;letter-spacing:-1px;color:#333}.give-goal-progress .raised{margin-bottom:15px}.give-progress-bar{height:20px;position:relative;background:#eee;border-radius:25px;overflow:hidden}.give-progress-bar>span{display:block;height:100%;border-top-left-radius:8px;border-bottom-left-radius:8px;border-top-right-radius:20px;border-bottom-right-radius:20px;background-color:#2bc253;position:relative;overflow:hidden}table.give-table{color:#666;font-size:14px;text-shadow:-1px 1px 0 #fff;background:#eaebec;margin:20px 0;border:1px solid #e0e0e0;border-top:none;border-bottom:none;width:100%}table.give-table thead{font-weight:700}table.give-table thead th:first-child{text-align:right;border-right:none}table.give-table th{padding:21px 25px;border:1px solid #e0e0e0;border-top-color:#e8e8e8;border-left:none;background:#f6f6f6;text-align:center;font-weight:700}table.give-table tbody tr{text-align:center}table.give-table tbody tr td{padding:18px;border:1px solid #e0e0e0;border-top-color:#fff;border-left:none;background:#fff;text-align:center}table.give-table tbody tr td:first-child{text-align:right;border-right:0}table.give-table tbody tr:nth-child(2n) td{background:#fcfcfc}body.give-twentysixteen div.entry-summary{margin:0}body.give-twentysixteen button.give-btn{color:#333}body.give-twentysixteen .give-submit{color:#fff}body.give-twentysixteen fieldset#give_terms_agreement{padding-right:0}body.give-twentyseventeen.colors-dark div#give_purchase_form_wrap span.give-final-total-amount,body.give-twentyseventeen.colors-dark div.give-total-wrap input.give-text-input,body.give-twentyseventeen.colors-dark div.give_notices p{color:#000}body.give-twentyseventeen.colors-dark form[id*=give] fieldset{background-color:transparent}body.give-twentynineteen .give-form .give-btn:focus{color:#fff}body.theme-twentytwenty .give-wrap{max-width:1200px;margin:60px auto}html[class*=avia] body#top form[id*=give-form] input.give-amount-top{width:unset;border:1px solid #ccc;border-right:none}html[class*=avia] body#top [id*=give-form].give-fl-form.give-fl-style-give label.give-fl-label{right:7px}html[class*=avia] body#top [id*=give-form].give-fl-form div.give-fl-is-active input{padding:8px 6px 0}.give-donation-history .give-table{table-layout:auto}.give-donation-history .give-table .give-security-column{float:right}.give-donation-history .give-table .give-security-column.give-security-description-wrap{width:75%;padding:16px 13px;font-size:12px;font-style:italic}.give-donation-history .give-table .give-security-column.give-security-button-wrap{width:25%;padding:25px 5px}.give-donation-history .give-table .give-security-column.give-security-button-wrap span{display:none;padding:0 20px}.give_user_history_main .give-mobile-title{display:none}@media screen and (max-width:480px){#give_user_history thead{display:none}#give_user_history tbody{border-top:1px solid #e0e0e0}#give_user_history tr{padding:.5rem 0;background:#fff}#give_user_history tr:nth-child(2n){background-color:#fafafa}#give_user_history td{border:none;padding-top:0;padding-bottom:0;background-color:transparent}#give_user_history td,#give_user_history tr{display:block;border-right:none;text-align:right}#give_user_history .give-mobile-title{display:inline-block;font-weight:700;min-width:6em}}.give-modal{top:0;right:0;width:100%;height:100%;z-index:2148482499;position:fixed;overflow:hidden;outline:none!important;-webkit-backface-visibility:hidden;-webkit-overflow-scrolling:touch;-webkit-transform:translateZ(0)}.give-modal form[id*=give-form],.give-modal form[id*=give-form] .give-submit{margin-bottom:0}.give-modal form[id*=give-form] .give-payment-mode-label{margin-top:0;padding-top:0}@media (max-width:580px){.give-modal form[id*=give-form] .give-input{font-size:16px}}.give-modal .mfp-content{box-sizing:border-box;position:relative;background:#fff;padding:20px;width:auto;max-width:650px;margin:40px auto;z-index:2148482599}.give-modal .mfp-content [id*=give-form] #give-payment-mode-select,.give-modal .mfp-content [id*=give-form] #give_purchase_form_wrap,.give-modal .mfp-content [id*=give-form].give-display-button-only .give-donation-amount,.give-modal .mfp-content [id*=give-form].give-display-button-only .give-donation-levels-wrap{display:block}.give-modal .mfp-content .mfp-close:hover{background-color:transparent}.give-modal form.give-form button.mfp-close{position:absolute;display:block!important}.give-modal .mfp-container:after{display:none}.give-modal .mfp-content{vertical-align:middle;transform:translateY(-100px)}.give-modal.mfp-bg,.give-modal .mfp-content{opacity:0;transition:all .2s}.give-modal.mfp-ready .mfp-content{opacity:1;transform:translateY(0)}.give-modal.mfp-ready.mfp-bg{opacity:.8}.give-modal.mfp-removing .mfp-content{transform:translateY(-50px);opacity:0}.give-modal.mfp-removing.mfp-bg{opacity:0}.give-donation-grid-item-form{position:relative;margin:0 auto;max-width:600px;background-color:#fff;padding:1rem 1.5rem;height:85vh;overflow-y:auto}.give-donation-grid-item-form #give_purchase_form_wrap{display:block!important}.give-donation-grid-item-form .give-btn-modal,.give-donation-grid-item-form .give-btn-reveal{display:none!important}.modal-fade-slide.give-modal .mfp-content{padding:0;max-width:100%}.modal-fade-slide .give-modal--slide{opacity:0;transition:all .2s ease-out;transform:translateY(-20px) perspective(600px) rotateX(0)}.modal-fade-slide.mfp-ready .give-modal--slide{opacity:1;transform:translateY(0) perspective(600px) rotateX(0)}.modal-fade-slide.mfp-removing .give-modal--slide{opacity:0;transform:translateY(-10px) perspective(600px) rotateX(0)}.modal-fade-slide.mfp-bg{opacity:0;transition:opacity .3s ease-out}.modal-fade-slide.mfp-ready.mfp-bg{opacity:.8}.modal-fade-slide.mfp-removing.mfp-bg{opacity:0}.mfp-close:hover{background-color:transparent}.mfp-content .give-display-button-only .give-form-title{display:none}.mfp-content .give-display-button-only>:not(form),.mfp-content .give-display-button-only form>:not(.give-btn-modal){display:block}.give-donor{border:1px solid #e5e5e5;background:#fff;color:#333;font-size:1em;margin-bottom:20px;padding:20px;position:relative;transition:all .2s ease-out;width:100%}.give-donor__header{align-items:center;display:flex}.give-donor__image{border:1px solid #e5e5e5;background:#fff;text-align:center;flex-basis:60px;flex-shrink:0;line-height:60px;height:60px;margin-left:10px;overflow:hidden;border-radius:50%}.give-donor__image img{border-radius:50%;display:block;height:58px;object-fit:cover;width:100%}.give-donor__details{flex-grow:1;overflow:hidden}.give-donor__name{font-size:1em!important;font-weight:700!important;margin:0!important;padding:0!important}.give-donor__name,.give-donor__timestamp{color:#333!important;line-height:1.3!important}.give-donor__timestamp{display:block;font-size:75%!important}.give-donor__content{margin-top:10px;width:100%}.give-donor__content p{color:#333;font-size:1em!important;line-height:1.5!important;margin:0 0 20px!important;padding:0!important;width:100%}.give-donor__content:first-child{margin-top:0!important}.give-donor__content :last-child{margin-bottom:0!important}.give-donor__read-more{cursor:pointer;white-space:nowrap}.give-donor__excerpt+.give-donor__comment{display:none}.give-donor-wall-modal p:last-child{margin-bottom:0}.form-row .give-stripe-cc-field{box-sizing:border-box;width:100%;border-radius:0;outline:none;color:#333;background-color:#fdfdfd;border:1px solid #ccc;margin:0;padding:.5em}.give-stripe-cc-field.give-fl-input{height:auto;min-height:50px;line-height:inherit;padding:14px 10px;background-color:#fff}.give-stripe-cc-field-wrap .give-fl-is-active .give-fl-input{padding:20px 12px 4px;transition:padding .2s ease-in-out,border .2s ease-in-out}.give-stripe-cc-field-wrap .give-fl-label span{display:none}.give-stripe-single-cc-field-wrap{border:1px solid #ccc;background-color:#fdfdfd;padding:10px;height:40px;margin:0 0 15px}.give-form .give-stripe-cc-field.focus,.give-form .give-stripe-cc-field:focus{background-color:#fff}.give-wrap .give-grid{max-width:30rem}.give-wrap .give-grid__item{margin-bottom:1.5rem;width:100%}.give-wrap .give-grid__item>:last-child{margin-bottom:0}.give-wrap .give-wrap:before{display:block;content:"";clear:both}@media (min-width:30rem){.give-wrap .give-grid{display:flex;flex-flow:row wrap;margin-bottom:1.5rem;max-width:100%}.give-wrap .give-grid__item{padding:0 .75rem;display:flex}}@media (min-width:30rem) and (min-width:40rem){.give-wrap .give-grid--2 .give-grid__item,.give-wrap .give-grid--3 .give-grid__item,.give-wrap .give-grid--4 .give-grid__item{width:50%}}@media (min-width:30rem) and (min-width:72rem){.give-wrap .give-grid--3 .give-grid__item,.give-wrap .give-grid--4 .give-grid__item{width:33.33333%}}@media (min-width:30rem) and (min-width:90rem){.give-wrap .give-grid--4 .give-grid__item{width:25%}}@supports (display:grid){.give-wrap .give-grid{display:grid;grid-template-columns:1fr;grid-gap:1.5rem;margin-bottom:1.5rem;max-width:100%}.give-wrap .give-grid__item{display:flex;margin-bottom:0;padding:0;width:auto!important}@media (min-width:40rem){.give-wrap .give-grid--best-fit{grid-template-columns:repeat(auto-fit,minmax(320px,1fr))}}@media (min-width:40rem){.give-wrap .give-grid--2,.give-wrap .give-grid--3,.give-wrap .give-grid--4{grid-template-columns:repeat(2,1fr)}}@media (min-width:72rem){.give-wrap .give-grid--3,.give-wrap .give-grid--4{grid-template-columns:repeat(3,1fr)}}@media (min-width:90rem){.give-wrap .give-grid--4{grid-template-columns:repeat(4,1fr)}}}.give-wrap .give-card{background-color:#fff;border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04);color:inherit;display:flex;flex-direction:column;width:100%;text-decoration:none;transition:all .1s ease-out}.give-wrap .give-card:active,.give-wrap .give-card:focus,.give-wrap .give-card:hover,.give-wrap .give-card:visited{border-color:#ccc;box-shadow:0 4px 12px rgba(0,0,0,.16)}.give-wrap .give-card__media img{border-radius:0;box-shadow:none;display:block;height:auto;margin:0;object-fit:cover;order:1;width:100%}.give-wrap .give-card__body{display:flex;flex-direction:column;flex-grow:1;order:2;padding:1.5rem}.give-wrap .give-card__body>:last-child{margin-bottom:0}.give-wrap .give-card__title{line-height:1.3;margin:0 0 .75rem;padding:0}.give-wrap .give-card__text{margin:0 0 1.5rem;padding:0}.give-wrap .give-card__progress{margin-top:auto;width:100%}.give-wrap .give-card__progress .raised,.give-wrap .give-card__progress>:last-child{margin-bottom:0}.give-wrap .give-card__progress .income{font-size:2em}.give-wrap .give-page-numbers{font-size:1.25em}#give-receipt .timeline-item{background:#fff}@keyframes placeHolderShimmer{0%{background-position:100% 0}to{background-position:520px 0}}#give-receipt .placeholder-animation{max-width:650px;margin:0 auto}#give-receipt .animated-background{animation-duration:.85s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-name:placeHolderShimmer;animation-timing-function:linear;background:#f6f7f8;background:linear-gradient(270deg,#eee 8%,#ddd 18%,#eee 33%);background-size:520px 100%;position:relative}#give-receipt .container{margin:0 auto;width:650px;background-color:#eee;border:1px solid #eee}#give-receipt .layer{display:flex}#give-receipt .layer.h1{height:28px}#give-receipt .layer.h2{height:22px}#give-receipt .layer.inline-radios{height:12px}#give-receipt .layer.label{height:8px}#give-receipt .layer-item.opaque{background:#fff}#give-receipt .layer-gap{background-color:#fff}#give-receipt .layer-gap.large{height:40px}#give-receipt .layer-gap.medium{height:20px}#give-receipt .layer-gap.small{height:10px}#give-receipt .layer-1 .layer-item:nth-child(odd){width:45%}#give-receipt .layer-1 .layer-item:nth-child(2n){width:55%}#give-receipt .layer-4 .layer-item:first-child{width:30%}#give-receipt .layer-4 .layer-item:nth-child(2){width:10%}#give-receipt .layer-4 .layer-item:nth-child(3){width:20%}#give-receipt .layer-4 .layer-item:nth-child(4){width:30%}#give-receipt .layer-4 .layer-item:nth-child(5){width:10%}#give-receipt .layer-5 .layer-item:first-child{width:40%}#give-receipt .layer-5 .layer-item:nth-child(2){width:5%}#give-receipt .layer-5 .layer-item:nth-child(3){width:15%}#give-receipt .layer-5 .layer-item:nth-child(4){width:40%}#give-receipt .layer-6 .layer-item:nth-child(odd){width:30%}#give-receipt .layer-6 .layer-item:nth-child(2n){width:70%}#give-receipt .layer-8 .layer-item:first-child{width:40%}#give-receipt .layer-8 .layer-item:nth-child(2){width:20%}#give-receipt .layer-8 .layer-item:nth-child(3){width:40%}.give-grid-ie-utility{margin:0 -12px}@supports (display:grid){.give-grid-ie-utility{margin:0}}
15
  * @author: Paul Ryley (http://geminilabs.io)
16
  * @url: https://geminilabs.github.io/float-labels.js
17
  * @license: MIT
18
+ */[id*=give-form].give-fl-form .give-fl-wrap{position:relative;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}[id*=give-form].give-fl-form input.give-fl-input,[id*=give-form].give-fl-form select.give-fl-select,[id*=give-form].give-fl-form textarea.give-fl-textarea{width:100%;outline:0;font-size:16px;line-height:normal;border-radius:0;border:1px solid #ccc;background-color:inherit;box-sizing:border-box;transition:all .2s ease-in-out;margin-bottom:0}[id*=give-form].give-fl-form input.give-fl-input:-moz-placeholder,[id*=give-form].give-fl-form input.give-fl-input::-moz-placeholder,[id*=give-form].give-fl-form select.give-fl-select:-moz-placeholder,[id*=give-form].give-fl-form select.give-fl-select::-moz-placeholder,[id*=give-form].give-fl-form textarea.give-fl-textarea:-moz-placeholder,[id*=give-form].give-fl-form textarea.give-fl-textarea::-moz-placeholder{color:#757575}[id*=give-form].give-fl-form input.give-fl-input:-ms-input-placeholder,[id*=give-form].give-fl-form select.give-fl-select:-ms-input-placeholder,[id*=give-form].give-fl-form textarea.give-fl-textarea:-ms-input-placeholder{color:#757575}[id*=give-form].give-fl-form input.give-fl-input::-webkit-input-placeholder,[id*=give-form].give-fl-form select.give-fl-select::-webkit-input-placeholder,[id*=give-form].give-fl-form textarea.give-fl-textarea::-webkit-input-placeholder{color:#757575}[id*=give-form].give-fl-form select.give-fl-select{position:relative;color:#757575;cursor:pointer;-webkit-appearance:none;-moz-appearance:none}[id*=give-form].give-fl-form .give-fl-is-active input.give-fl-input,[id*=give-form].give-fl-form .give-fl-is-active select.give-fl-select,[id*=give-form].give-fl-form .give-fl-is-active textarea.give-fl-textarea{color:#333;background-color:inherit;border-color:#ccc}[id*=give-form].give-fl-form .give-fl-has-focus input.give-fl-input,[id*=give-form].give-fl-form .give-fl-has-focus select.give-fl-select,[id*=give-form].give-fl-form .give-fl-has-focus textarea.give-fl-textarea{background-color:inherit;border-color:#ccc}[id*=give-form].give-fl-form label.give-fl-label{opacity:0;visibility:hidden;display:block;position:absolute;top:-12px;right:0;font-size:12px;font-weight:700;line-height:1;color:#757575;border-radius-top-right:0;transition:all .2s ease-in-out;z-index:1}[id*=give-form].give-fl-form .give-fl-is-active label.give-fl-label{opacity:1;visibility:visible}[id*=give-form].give-fl-form .give-fl-has-focus label.give-fl-label{color:#1976d2}[id*=give-form].give-fl-form .give-fl-is-required:before{opacity:1;content:"*";display:block;position:absolute;top:1px;left:18px;font-size:16px;line-height:1.75;color:#d32f2f;transition:all .2s ease-in-out;padding:6px 0 0;z-index:1}[id*=give-form].give-fl-form .give-fl-is-required.give-fl-is-active:before{opacity:0}[id*=give-form].give-fl-form.give-fl-style-1 input.give-fl-input,[id*=give-form].give-fl-form.give-fl-style-1 select.give-fl-select,[id*=give-form].give-fl-form.give-fl-style-1 textarea.give-fl-textarea{padding:6px 12px}[id*=give-form].give-fl-form.give-fl-style-1 select.give-fl-select{height:44px}[id*=give-form].give-fl-form.give-fl-style-1 .give-fl-is-active input.give-fl-input,[id*=give-form].give-fl-form.give-fl-style-1 .give-fl-is-active select.give-fl-select,[id*=give-form].give-fl-form.give-fl-style-1 .give-fl-is-active textarea.give-fl-textarea{padding:6px 12px}[id*=give-form].give-fl-form.give-fl-style-1 label.give-fl-label{top:1px;right:10px;background-color:transparent;padding:12px 3px}[id*=give-form].give-fl-form.give-fl-style-1 label.give-fl-label:before{content:"";display:block;position:absolute;top:19px;right:0;left:0;height:1px;background-color:inherit;z-index:-1}[id*=give-form].give-fl-form.give-fl-style-1 .give-fl-is-active label.give-fl-label{top:-9px;padding:3px}[id*=give-form].give-fl-form.give-fl-style-1 .give-fl-is-active label.give-fl-label:before{top:9px}[id*=give-form].give-fl-form.give-fl-style-2 input.give-fl-input,[id*=give-form].give-fl-form.give-fl-style-2 select.give-fl-select,[id*=give-form].give-fl-form.give-fl-style-2 textarea.give-fl-textarea{padding:12px}[id*=give-form].give-fl-form.give-fl-style-2 select.give-fl-select{height:56px}[id*=give-form].give-fl-form.give-fl-style-2 .give-fl-is-active input.give-fl-input,[id*=give-form].give-fl-form.give-fl-style-2 .give-fl-is-active select.give-fl-select,[id*=give-form].give-fl-form.give-fl-style-2 .give-fl-is-active textarea.give-fl-textarea{padding:18px 12px 6px}[id*=give-form].give-fl-form.give-fl-style-2 label.give-fl-label{top:1px;right:10px;padding:6px 3px 3px}[id*=give-form].give-fl-form.give-fl-style-2 .give-fl-is-required:before{padding-top:12px}[id*=give-form].give-fl-form .give-fl-wrap-select:after{content:"";position:absolute;display:block;top:1px;left:6px;height:calc(100% - 2px);width:15px;background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 16'><path fill='#757575' d='M 4 0 L 0 6.5 L 8 6.5 L 4 0 z M 0 9.5 L 4 16 L 4 16 L 8 9.5 z'/></svg>") no-repeat;background-position:0 50%;background-size:7px 14px;z-index:2}.mfp-bg{z-index:1000001;overflow:hidden;background:#0b0b0b;opacity:.8}.mfp-bg,.mfp-wrap{top:0;right:0;width:100%;height:100%;position:fixed}.mfp-wrap{z-index:1000002;outline:none!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;right:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{content:"";display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:right;z-index:1000004}.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;right:8px;left:8px;z-index:1000003}.mfp-preloader a{color:#ccc}.mfp-preloader a:hover{color:#fff}.mfp-s-error .mfp-content,.mfp-s-ready .mfp-preloader{display:none}button.mfp-arrow,button.mfp-close{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:none;padding:0;z-index:1000005;box-shadow:none;touch-action:manipulation}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;left:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 10px 18px 0;color:#fff;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:focus,.mfp-close:hover{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{color:#fff;left:-6px;text-align:left;padding-left:6px;width:100%}.mfp-counter{position:absolute;top:0;left:0;color:#ccc;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;top:50%;margin:-55px 0 0;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:focus,.mfp-arrow:hover{opacity:1}.mfp-arrow:after,.mfp-arrow:before{content:"";display:block;width:0;height:0;position:absolute;right:0;top:0;margin-top:35px;margin-right:35px;border:inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{right:0}.mfp-arrow-left:after{border-left:17px solid #fff;margin-right:31px}.mfp-arrow-left:before{margin-right:25px;border-left:27px solid #3f3f3f}.mfp-arrow-right{left:0}.mfp-arrow-right:after{border-right:17px solid #fff;margin-right:39px}.mfp-arrow-right:before{border-right:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;right:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;box-sizing:border-box;padding:40px 0;margin:0 auto}.mfp-figure,img.mfp-img{line-height:0}.mfp-figure:after{content:"";position:absolute;right:0;top:40px;bottom:40px;display:block;left:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;right:0;width:100%;cursor:auto}.mfp-title{text-align:right;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-left:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-height:300px),screen and (max-width:800px) and (orientation:landscape){.mfp-img-mobile .mfp-image-holder{padding-right:0;padding-left:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-right:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{left:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;left:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:100%;transform-origin:100%}.mfp-arrow-right{-webkit-transform-origin:0;transform-origin:0}.mfp-container{padding-right:6px;padding-left:6px}}@font-face{font-family:give-icomoon;src:url(../fonts/icomoon.eot);src:url(../fonts/icomoon.eot#iefix) format("embedded-opentype"),url(../fonts/icomoon.woff) format("woff"),url(../images/icomoon.svg#icomoon) format("svg");font-weight:400;font-style:normal}.give-icon:before{font-style:normal}[class*=" give-icon-"],[class^=give-icon-]{font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.give-icon-lamp:before{content:"\e603"}.give-icon-heart:before{content:"\e604"}.give-icon-question:before{content:"\e602"}.give-icon-info:before{content:"\e601"}.give-icon-new-tab:before{content:"\ea7e"}.give-icon-alert:before{content:"\f02d"}.give-icon-help:before{content:"\e606"}.give-icon-spinner:before{content:"\e605"}.give-button-with-loader span.give-loading-animation:before,.give-icon-spinner2:before,form[id*=give-form] .give-loading-animation:before{content:"\e607"}.give-icon-plus:before{content:"\e040"}.give-icon-minus:before{content:"\e041"}.give-icon-locked:before,[id*=give_secure_site_wrapper] span.padlock:before{content:"\e600"}.dashicons-give:before{font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\e800"}.fa-spin,.give-button-with-loader span.give-loading-animation,form[id*=give-form] .give-loading-animation{-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-359deg);transform:rotate(-359deg)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-359deg);transform:rotate(-359deg)}}body.give_receipt_page{background-color:#fff;color:#141412;margin:0;font-family:Helvetica,sans-serif;font-size:12px}body.give_receipt_page #give_receipt_wrapper{width:660px;margin:0 auto;padding:50px 0}body.give_receipt_page table{display:table;width:100%;border-bottom:1px solid #ededed;border-collapse:collapse;border-spacing:0;font-size:14px;line-height:2;margin:0 0 20px}body.give_receipt_page td,body.give_receipt_page th{display:table-cell;text-align:right;border-top:1px solid #ededed;padding:6px 0 6px 10px;font-weight:400}body.give_receipt_page th{font-weight:700;text-transform:uppercase}body.give_receipt_page h3{font-size:22px;margin:40px 0 5px;clear:both;display:block;font-weight:700}table#give_donation_receipt,table#give_donation_receipt_products{width:100%}table#give_donation_receipt td,table#give_donation_receipt th{text-align:right}table#give_donation_receipt .give-receipt-thead-text{font-size:18px;text-align:center;display:block}table#give_donation_receipt .give-receipt-thead-text>span{font-size:16px}table#give_donation_receipt li{margin:0 10px 8px 0}table#give_donation_receipt ul{margin:0;padding:0;list-style:none}table#give_donation_receipt .give_receipt_payment_status.failed,table#give_donation_receipt .give_receipt_payment_status.pending,table#give_donation_receipt .give_receipt_payment_status.revoked{color:#f73f2e}table#give_donation_receipt span.donation-level-text-wrap{font-style:italic;display:block}[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input,[id*=give-form].give-fl-form.give-fl-style-give select.give-fl-select,[id*=give-form].give-fl-form.give-fl-style-give textarea.give-fl-textarea{line-height:inherit;padding:12px;background-color:#fff}[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input[type=email],[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input[type=number],[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input[type=password],[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input[type=search],[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input[type=tel],[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input[type=text],[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input[type=url]{height:auto;min-height:50px}[id*=give-form].give-fl-form.give-fl-style-give select.give-fl-select{line-height:inherit}[id*=give-form].give-fl-form.give-fl-style-give .give-fl-is-active input.give-fl-input,[id*=give-form].give-fl-form.give-fl-style-give .give-fl-is-active select.give-fl-select,[id*=give-form].give-fl-form.give-fl-style-give .give-fl-is-active textarea.give-fl-textarea{padding:20px 12px 4px;transition:padding .2s ease-in-out,border .2s ease-in-out}[id*=give-form].give-fl-form.give-fl-style-give label.give-fl-label{top:1px;right:13px;left:0;padding:6px 0 0}[id*=give-form].give-fl-form.give-fl-style-give .give-fl-is-required:before{padding-top:12px}[id*=give-form].give-fl-form.give-fl-style-give label.give-fl-label .give-required-indicator{display:none}[id*=give-form].give-fl-form.give-fl-style-give label.give-fl-label .give-tooltip{position:absolute;top:0;width:100%;height:100%;margin:0;z-index:1}[id*=give-form].give-fl-form.give-fl-style-give label.give-fl-label .give-tooltip:before{content:unset}.give-clearfix{*zoom:1}.give-clearfix:after,.give-clearfix:before{content:" ";display:table}.give-clearfix:after{clear:both}[id*=give-form] .give-hidden{display:none}[id*=give-form] fieldset{background-color:transparent;padding:0;margin:0;border:0}[id*=give-form] .give-form-title{padding:0;margin:0 0 15px}[id*=give-form] div#give-sidebar-left{width:38%;float:right}[id*=give-form] div.images{margin:0 0 15px}[id*=give-form] div.images img{display:block;width:100%;height:auto;box-shadow:none}[id*=give-form] .give-custom-amount-text{clear:both}[id*=give-form] div.summary{width:58%;float:left}[id*=give-form] div.summary.give-full-width{width:100%;float:none}[id*=give-form] .give_form select.give-select.required{color:#000}[id*=give-form] div.give-form-content-wrap{margin:0 0 20px}[id*=give-form] div.give-form-content-wrap.give_post_form-content{margin:20px 0 0}[id*=give-form].give-display-modal form .give_notices{display:none}[id*=give-form].give-display-modal .give-btn,[id*=give-form].give-display-reveal .give-btn{margin:0 0 15px}[id*=give-form].give-display-modal #give-payment-mode-select,[id*=give-form].give-display-modal #give_purchase_form_wrap,[id*=give-form].give-display-reveal #give-payment-mode-select,[id*=give-form].give-display-reveal #give_purchase_form_wrap{display:none}[id*=give-form] .cc-address{margin-bottom:15px}.single-give_forms.et_right_sidebar #main-content .container:before{display:none}.single-give_forms .give_forms{*zoom:1}.single-give_forms .give_forms:after,.single-give_forms .give_forms:before{content:" ";display:table}.single-give_forms .give_forms:after{clear:both}#give-purchase-gravatars .give-gravatars-title{margin:0 0 15px}#give-purchase-gravatars .give-purchase-gravatars-list{list-style:none;margin:0;padding:0}#give-purchase-gravatars .give-purchase-gravatars-list li{list-style-type:none;display:inline-block;margin:0 0 0 5px;padding:0}#give-recurring-form,form.give-form,form[id*=give-form]{margin:0 0 25px;padding:0}#give-recurring-form .give-hidden,form.give-form .give-hidden,form[id*=give-form] .give-hidden{display:none}@media (min-width:481px){#give-recurring-form .give-title-prefix-wrap .form-row-first,#give-recurring-form .give-title-prefix-wrap .form-row-last,form.give-form .give-title-prefix-wrap .form-row-first,form.give-form .give-title-prefix-wrap .form-row-last,form[id*=give-form] .give-title-prefix-wrap .form-row-first,form[id*=give-form] .give-title-prefix-wrap .form-row-last{float:right;width:40%}#give-recurring-form .give-title-prefix-wrap .form-row-title,form.give-form .give-title-prefix-wrap .form-row-title,form[id*=give-form] .give-title-prefix-wrap .form-row-title{float:right;width:15%}}#give-recurring-form .give-tooltip,form.give-form .give-tooltip,form[id*=give-form] .give-tooltip{margin:0 3px;padding:0;font-size:14px;-moz-transition:.2s all linear;-o-transition:.2s all linear;transition:all .2s linear;color:rgba(51,51,51,.5)}#give-recurring-form .give-tooltip:hover,form.give-form .give-tooltip:hover,form[id*=give-form] .give-tooltip:hover{color:#333}#give-recurring-form h3.give-section-break,#give-recurring-form h4.give-section-break,#give-recurring-form legend,form.give-form h3.give-section-break,form.give-form h4.give-section-break,form.give-form legend,form[id*=give-form] h3.give-section-break,form[id*=give-form] h4.give-section-break,form[id*=give-form] legend{background-color:transparent;font-size:1.15em;font-weight:700;margin:10px 0 15px;padding:0 0 5px;border-bottom:1px solid rgba(0,0,0,.1);width:100%}#give-recurring-form h3.give-section-break span.sub-text,#give-recurring-form h4.give-section-break span.sub-text,#give-recurring-form legend span.sub-text,form.give-form h3.give-section-break span.sub-text,form.give-form h4.give-section-break span.sub-text,form.give-form legend span.sub-text,form[id*=give-form] h3.give-section-break span.sub-text,form[id*=give-form] h4.give-section-break span.sub-text,form[id*=give-form] legend span.sub-text{font-style:italic;font-weight:400}#give-recurring-form .form-row,form.give-form .form-row,form[id*=give-form] .form-row{*zoom:1;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:0 0 15px;overflow:visible;padding:0}#give-recurring-form .form-row:after,#give-recurring-form .form-row:before,form.give-form .form-row:after,form.give-form .form-row:before,form[id*=give-form] .form-row:after,form[id*=give-form] .form-row:before{content:" ";display:table}#give-recurring-form .form-row:after,form.give-form .form-row:after,form[id*=give-form] .form-row:after{clear:both}#give-recurring-form .form-row:last-child,form.give-form .form-row:last-child,form[id*=give-form] .form-row:last-child{margin-bottom:15px}#give-recurring-form .form-row label,form.give-form .form-row label,form[id*=give-form] .form-row label{display:block;margin:0 0 5px;position:relative;line-height:1.7}#give-recurring-form .form-row label.checkbox,form.give-form .form-row label.checkbox,form[id*=give-form] .form-row label.checkbox{display:inline}#give-recurring-form .form-row input[type=email],#give-recurring-form .form-row input[type=password],#give-recurring-form .form-row input[type=tel],#give-recurring-form .form-row input[type=text],#give-recurring-form .form-row input[type=url],#give-recurring-form .form-row select,#give-recurring-form .form-row textarea,form.give-form .form-row input[type=email],form.give-form .form-row input[type=password],form.give-form .form-row input[type=tel],form.give-form .form-row input[type=text],form.give-form .form-row input[type=url],form.give-form .form-row select,form.give-form .form-row textarea,form[id*=give-form] .form-row input[type=email],form[id*=give-form] .form-row input[type=password],form[id*=give-form] .form-row input[type=tel],form[id*=give-form] .form-row input[type=text],form[id*=give-form] .form-row input[type=url],form[id*=give-form] .form-row select,form[id*=give-form] .form-row textarea{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;border-radius:0;outline:none;color:#333;background-color:#fdfdfd;border:1px solid #ccc;margin:0;padding:.5em}#give-recurring-form .form-row input[type=email]:focus,#give-recurring-form .form-row input[type=password]:focus,#give-recurring-form .form-row input[type=tel]:focus,#give-recurring-form .form-row input[type=text]:focus,#give-recurring-form .form-row input[type=url]:focus,#give-recurring-form .form-row select:focus,#give-recurring-form .form-row textarea:focus,form.give-form .form-row input[type=email]:focus,form.give-form .form-row input[type=password]:focus,form.give-form .form-row input[type=tel]:focus,form.give-form .form-row input[type=text]:focus,form.give-form .form-row input[type=url]:focus,form.give-form .form-row select:focus,form.give-form .form-row textarea:focus,form[id*=give-form] .form-row input[type=email]:focus,form[id*=give-form] .form-row input[type=password]:focus,form[id*=give-form] .form-row input[type=tel]:focus,form[id*=give-form] .form-row input[type=text]:focus,form[id*=give-form] .form-row input[type=url]:focus,form[id*=give-form] .form-row select:focus,form[id*=give-form] .form-row textarea:focus{background-color:#fff}#give-recurring-form .form-row input[type=email].required,#give-recurring-form .form-row input[type=password].required,#give-recurring-form .form-row input[type=tel].required,#give-recurring-form .form-row input[type=text].required,#give-recurring-form .form-row input[type=url].required,#give-recurring-form .form-row select.required,#give-recurring-form .form-row textarea.required,form.give-form .form-row input[type=email].required,form.give-form .form-row input[type=password].required,form.give-form .form-row input[type=tel].required,form.give-form .form-row input[type=text].required,form.give-form .form-row input[type=url].required,form.give-form .form-row select.required,form.give-form .form-row textarea.required,form[id*=give-form] .form-row input[type=email].required,form[id*=give-form] .form-row input[type=password].required,form[id*=give-form] .form-row input[type=tel].required,form[id*=give-form] .form-row input[type=text].required,form[id*=give-form] .form-row input[type=url].required,form[id*=give-form] .form-row select.required,form[id*=give-form] .form-row textarea.required{color:#333}#give-recurring-form .form-row-first,#give-recurring-form .form-row-title,form.give-form .form-row-first,form.give-form .form-row-title,form[id*=give-form] .form-row-first,form[id*=give-form] .form-row-title{margin-left:2.5%}#give-recurring-form .form-row-first,#give-recurring-form .form-row-last,form.give-form .form-row-first,form.give-form .form-row-last,form[id*=give-form] .form-row-first,form[id*=give-form] .form-row-last{float:right;width:48.5%}#give-recurring-form .form-row-last,form.give-form .form-row-last,form[id*=give-form] .form-row-last{float:left}#give-recurring-form .form-row-wide,form.give-form .form-row-wide,form[id*=give-form] .form-row-wide{*zoom:1;clear:both}#give-recurring-form .form-row-wide:after,#give-recurring-form .form-row-wide:before,form.give-form .form-row-wide:after,form.give-form .form-row-wide:before,form[id*=give-form] .form-row-wide:after,form[id*=give-form] .form-row-wide:before{content:" ";display:table}#give-recurring-form .form-row-wide:after,form.give-form .form-row-wide:after,form[id*=give-form] .form-row-wide:after{clear:both}#give-recurring-form .form-row-two-thirds,form.give-form .form-row-two-thirds,form[id*=give-form] .form-row-two-thirds{float:right;width:65.75%}#give-recurring-form .form-row-two-thirds.form-row-first,form.give-form .form-row-two-thirds.form-row-first,form[id*=give-form] .form-row-two-thirds.form-row-first{margin-right:0}#give-recurring-form .form-row-one-third,form.give-form .form-row-one-third,form[id*=give-form] .form-row-one-third{float:right;width:31.25%;margin-right:3%}#give-recurring-form .form-row-one-third.form-row-first,form.give-form .form-row-one-third.form-row-first,form[id*=give-form] .form-row-one-third.form-row-first{margin-right:0}@media (max-width:480px){#give-recurring-form .form-row-responsive,form.give-form .form-row-responsive,form[id*=give-form] .form-row-responsive{margin-right:0;margin-left:0;width:100%}}#give-recurring-form .give-error,#give-recurring-form .give-required-indicator,form.give-form .give-error,form.give-form .give-required-indicator,form[id*=give-form] .give-error,form[id*=give-form] .give-required-indicator{color:#a00}#give-recurring-form .card-expiration>select,form.give-form .card-expiration>select,form[id*=give-form] .card-expiration>select{width:44%;margin:0}#give-recurring-form .card-expiration>span.exp-divider,form.give-form .card-expiration>span.exp-divider,form[id*=give-form] .card-expiration>span.exp-divider{display:inline;text-align:center}#give-recurring-form .card-expiration select.card-expiry-year,form.give-form .card-expiration select.card-expiry-year,form[id*=give-form] .card-expiration select.card-expiry-year{float:left}#give-recurring-form .give-disabled,#give-recurring-form [disabled],form.give-form .give-disabled,form.give-form [disabled],form[id*=give-form] .give-disabled,form[id*=give-form] [disabled]{cursor:not-allowed}form[id*=give-form] .give-donation-amount{margin:0 0 15px}form[id*=give-form] .give-donation-amount .give-currency-symbol{background-color:#f2f2f2;border-top:1px solid #ccc;border-bottom:1px solid #ccc;color:#333;margin:0;padding:0 12px;height:35px;line-height:35px;font-size:18px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:right}form[id*=give-form] .give-donation-amount .give-currency-symbol.give-currency-position-before{border-right:1px solid #ccc;border-left:none}form[id*=give-form] .give-donation-amount .give-currency-symbol.give-currency-position-after{border-right:none;border-left:1px solid #ccc}form[id*=give-form] .give-donation-amount #give-amount,form[id*=give-form] .give-donation-amount #give-amount-text{border:1px solid #ccc;background:#fff;border-radius:0;height:35px;line-height:35px;padding:0 12px;margin:0;font-size:18px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;min-width:125px;float:right}form[id*=give-form] .give-donation-amount #give-amount-text.invalid-amount,form[id*=give-form] .give-donation-amount #give-amount.invalid-amount{border:1px solid red}form[id*=give-form] .give-donation-amount input.give-amount-top{width:125px}form[id*=give-form] .give-donation-amount span.give-final-total-amount{border:1px solid #ccc;border-radius:0;height:35px;line-height:35px;padding:0 12px;margin:0;font-size:18px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;cursor:not-allowed;background:#fff;float:right}form[id*=give-form] #give_terms_agreement legend{display:none}form[id*=give-form] #give_terms_agreement label{display:inline-block}form[id*=give-form] #give-final-total-wrap{margin:10px 0 25px;padding:0;*zoom:1}form[id*=give-form] #give-final-total-wrap:after,form[id*=give-form] #give-final-total-wrap:before{content:" ";display:table}form[id*=give-form] #give-final-total-wrap:after{clear:both}form[id*=give-form] #give-final-total-wrap .give-donation-total-label{background-color:#f2f2f2;color:#333;margin:0;padding:0 12px;height:35px;line-height:35px;font-size:18px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:right;border:1px solid #ccc}@media (max-width:480px){form[id*=give-form] #give-final-total-wrap .give-donation-total-label{display:block;float:none}}form[id*=give-form] #give-final-total-wrap .give-final-total-amount{background:#fff;border-radius:0;height:35px;line-height:35px;padding:0 12px;margin:0;font-size:18px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border:1px solid #ccc;border-right:none;float:right}@media (max-width:480px){form[id*=give-form] #give-final-total-wrap .give-final-total-amount{border:1px solid #ccc;border-top:0;display:block;float:none}}.give-display-button-only>:not(form),.give-display-button-only form[id*=give-form]>:not(.give-btn-modal){display:none}form[id*=give-form] input[type=radio]{margin:0 0 0 .5em}form[id*=give-form] #give-donation-level-radio-list{margin:0 0 15px;padding:0;list-style:none;clear:both}form[id*=give-form] #give-donation-level-radio-list>li{list-style-type:none;list-style-image:none;margin:0;padding:0}form[id*=give-form] #give-donation-level-radio-list>li label{cursor:pointer;display:inline-block;margin:0}form[id*=give-form] #give-donation-level-radio-list>li input[type=radio]{margin:0 0 0 .5em;outline:none;width:auto}form[id*=give-form] #give-gateway-radio-list{*zoom:1;margin:0 0 15px;padding:0;list-style:none}form[id*=give-form] #give-gateway-radio-list:after,form[id*=give-form] #give-gateway-radio-list:before{content:" ";display:table}form[id*=give-form] #give-gateway-radio-list:after{clear:both}form[id*=give-form] #give-gateway-radio-list>li{list-style-type:none;list-style-image:none;margin:0;padding:0}@media (min-width:480px){form[id*=give-form] #give-gateway-radio-list>li{display:inline-block;margin-left:15px;margin-right:0}}form[id*=give-form] #give-gateway-radio-list>li label.give-gateway-option{cursor:pointer;display:inline;margin:0}form[id*=give-form] #give-gateway-radio-list>li input[type=radio]{margin:0 0 0 .25em;outline:none;width:auto;display:inline}form[id*=give-form] input[type=checkbox]{margin:0 0 0 .25em}form[id*=give-form] select.give-select-level{outline:none;border-radius:0;min-width:155px;border:1px solid #ccc;margin:0 0 15px;display:block;clear:both;color:#333;background-color:#fdfdfd;padding:.5em;max-width:100%}#give-donation-level-button-wrap{*zoom:1;margin:0 0 15px;padding:0;clear:both;list-style:none}#give-donation-level-button-wrap:after,#give-donation-level-button-wrap:before{content:" ";display:table}#give-donation-level-button-wrap:after{clear:both}#give-donation-level-button-wrap>li{list-style-type:none;list-style-image:none;float:right;margin:0 0 5px 5px}.give_terms_links{float:left}[id*=give_secure_site_wrapper]{padding:4px 0 15px 4px;font-size:16px;line-height:20px}[id*=give_secure_site_wrapper] span.padlock{font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:16px;line-height:20px}[id*=give_secure_site_wrapper] span.padlock :before{display:inline-block}#give_purchase_form_wrap input.give-input.card-cvc.valid,#give_purchase_form_wrap input.give-input.card-expiry.valid,#give_purchase_form_wrap input.give-input.card-number.valid{background-image:url(../images/tick.png);background-repeat:no-repeat;background-position:left 10px top 50%;background-size:16px}#give_purchase_form_wrap input.give-input.card-cvc.valid.fl-input:not(.card-cvc):not(.card-expiry),#give_purchase_form_wrap input.give-input.card-expiry.valid.fl-input:not(.card-cvc):not(.card-expiry),#give_purchase_form_wrap input.give-input.card-number.valid.fl-input:not(.card-cvc):not(.card-expiry){background-position:left 55px top 50%}#give_purchase_form_wrap span.card-type{position:absolute;top:-2px;left:0;width:37px;height:26px;background-size:37px 26px!important}#give_purchase_form_wrap .fl-wrap span.card-type{top:calc(.5em + 6px);left:11px}#give_purchase_form_wrap span.card-type.off{display:none}#give_purchase_form_wrap span.card-type.visa{background:url(../images/visa.svg) no-repeat}#give_purchase_form_wrap span.card-type.mastercard{background:url(../images/mastercard.svg) no-repeat}#give_purchase_form_wrap span.card-type.discover{background:url(../images/discover.svg) no-repeat}#give_purchase_form_wrap span.card-type.amex{background:url(../images/amex.svg) no-repeat}#give_purchase_form_wrap span.card-type.maestro{background:url(../images/maestro.svg) no-repeat}#give_purchase_form_wrap span.card-type.dinersclub{background:url(../images/diners-club.svg) no-repeat}#give_purchase_form_wrap span.card-type.jcb{background:url(../images/jcb.svg) no-repeat}#give_purchase_form_wrap span.card-type.dankort{background:url(../images/dankort.png) no-repeat}#give_purchase_form_wrap span.card-type.unionpay{background:url(../images/unionpay.svg) no-repeat}@-webkit-keyframes opacity{0%{opacity:1}to{opacity:0}}@-moz-keyframes opacity{0%{opacity:1}to{opacity:0}}form[id*=give-form] p.give-loading-text,form[id*=give-form] span.give-loading-text{display:none;float:left;height:16px;width:16px;margin:0;padding:0;font-style:italic;line-height:20px;font-size:16px;font-weight:400}form[id*=give-form] .give-loading-animation{font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;float:right;height:16px;width:16px;line-height:1;font-size:16px;margin:0 0 0 5px;background-size:20px 20px;background-repeat:no-repeat;background-color:transparent}form[id*=give-form] .give-payment-mode-label .give-loading-text{float:left}[id*=give-form] .give-login-account-wrap{margin:0 0 15px;position:relative}[id*=give-form] .give-login-account-wrap .give-login-message{text-align:left;margin:0;padding:0}[id*=give-form] .give-login-account-wrap .give-loading-text{position:absolute;left:0;top:.25em}[id*=give-form] fieldset[id^=give-login-fields]{margin:0 0 15px}[id*=give-form] .give-new-account-link{margin:0 0 15px;padding:0}[id*=give-form] .give_login_forgot_password{float:left}.give-submit-button-wrap input.give-cancel-login,[id^=give-user-login-submit] input.give-cancel-login{margin-right:5px}.give-submit-button-wrap span.give-loading-animation,[id^=give-user-login-submit] span.give-loading-animation{margin:0 .5em 0 0;display:none}.give-submit-button-wrap .give-submit,[id^=give-user-login-submit] .give-submit{float:right}.give-user-login-fields-container:after{display:block;content:"";clear:both}#give-login-form div.give-login,#give-login-form legend,#give-register-form div.give-login,#give-register-form legend{line-height:2;margin-bottom:15px}#give-login-form label,#give-register-form label{min-width:100px;display:inline-block}div.give-form-wrap.mfp-hide{display:block!important}div.mfp-content fieldset ol,div.mfp-content fieldset p,div.mfp-content fieldset ul{margin-bottom:1.2em;line-height:1.4}div.mfp-content form[id*=give-form] .give_notices{display:block!important}.give-btn{background:#ededed;border:1px solid #ccc;color:#333;padding:8px 10px;cursor:pointer;line-height:1.2em;font-size:1em}.give-btn:hover{background:#dbdbdb}#give_profile_editor_form legend{width:auto;padding:0 5px 5px;border-bottom:0}form#give-email-access-form div.g-recaptcha,form#give-email-access-form input#give-email{margin:0 0 15px}form#give-email-access-form input#give-email{width:305px}@media (max-width:768px){[id*=give-form] div#give-sidebar-left,[id*=give-form] div.images,[id*=give-form] div.summary{width:100%;float:none}}.give-form-wrap .give-form h3.give-section-break,.give-form-wrap .give-form h4.give-section-break{margin:10px 0 0}.give-do-validate input.error{border-color:red!important}.give-button-with-loader span.give-loading-animation{display:none;position:relative;top:3px;float:left;font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;height:16px;width:16px;line-height:1;font-size:16px;margin:0 5px 0 0;background-size:20px 20px;background-repeat:no-repeat;background-color:transparent}.give-active span.give-loading-animation{display:inline}.give_notices{position:relative}.give_notices .notice-dismiss{position:absolute;top:50%;left:0;transform:translateY(-50%);border:none;margin:0;padding:5px;background:100% 0;color:#72777c;cursor:pointer;max-width:28px!important}.give_notices .notice-dismiss:before{background:100% 0;color:#72777c;content:"\f153";display:block;font:400 16px/20px dashicons;speak:none;height:20px;text-align:center;width:20px;-webkit-font-smoothing:antialiased}.give_notices .notice-dismiss:hover{background-color:transparent}.give_notices .notice-dismiss:hover:before{color:#dc3232}.give_error,.give_success,.give_warning{position:relative;margin:15px 0;background:#f9f9f9;padding:1em 2em 1em 1.5em;border-right:4px solid;box-shadow:0 1px 1px rgba(0,0,0,.125);clear:both}.give_error>p,.give_success>p,.give_warning>p{margin:0!important;color:#333}.give_error:before,.give_success:before,.give_warning:before{font-family:give-icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:absolute;top:50%;font-size:16px;margin-top:-15px;right:-17px;color:#fff;width:30px;height:30px;border-radius:100%;text-align:center;line-height:30px;text-shadow:-1px 1px rgba(0,0,0,.5)}.give_error{border-color:#a00}.give_error:before{content:"\f02d";background-color:#a00}.give_success{border-color:#7ad03a}.give_success:before{background-color:#7ad03a;content:"\e601"}.give_warning{border-color:#ffba00}.give_warning:before{background-color:#ffba00;content:"\f02d"}.twentythirteen .give_forms{padding:40px 0}.twentyfourteen .tfgive{padding:12px 10px 0;max-width:474px;margin:0 auto}.twentyfourteen .tfgive .give_forms .entry-summary{padding:0!important;margin:0 0 1.618em!important}.twentyfourteen .tfgive div.give_forms.hentry.has-post-thumbnail{margin-top:0}.twentyfourteen .tfgive .give_forms .images img{margin-bottom:1em}@media screen and (min-width:673px){.twentyfourteen .tfgive{padding-left:30px;padding-right:30px}}@media screen and (min-width:1040px){.twentyfourteen .tfgive{padding-left:15px;padding-right:15px}}@media screen and (min-width:1110px){.twentyfourteen .tfgive{padding-left:30px;padding-right:30px}}@media screen and (min-width:1218px){.twentyfourteen .tfgive{margin-left:54px}.full-width .twentyfourteen .tfgive{margin-left:auto}}.twentyfifteen .t15give{padding-right:7.6923%;padding-left:7.6923%;padding-top:7.6923%;margin-bottom:7.6923%;background:#fff;box-shadow:0 0 1px rgba(0,0,0,.15)}.twentyfifteen .t15give .page-title{margin-right:0}.twentyfifteen .t15give div.summary{padding:0}@media screen and (min-width:38.75em){.twentyfifteen .t15give{margin-left:7.6923%;margin-right:7.6923%;margin-top:8.3333%}}@media screen and (min-width:59.6875em){.twentyfifteen .t15give{margin-right:8.3333%;margin-left:8.3333%;padding:10%}.single-product .twentyfifteen .entry-summary{padding:0!important}}.avada-row>div.give-wrap #content{width:100%}.give-goal-progress{margin-bottom:20px;clear:both}.give-goal-progress .income{font-size:46px;line-height:48px;letter-spacing:-1px;color:#333}.give-goal-progress .raised{margin-bottom:15px}.give-progress-bar{height:20px;position:relative;background:#eee;border-radius:25px;overflow:hidden}.give-progress-bar>span{display:block;height:100%;border-top-left-radius:8px;border-bottom-left-radius:8px;border-top-right-radius:20px;border-bottom-right-radius:20px;background-color:#2bc253;position:relative;overflow:hidden}table.give-table{color:#666;font-size:14px;text-shadow:-1px 1px 0 #fff;background:#eaebec;margin:20px 0;border:1px solid #e0e0e0;border-top:none;border-bottom:none;width:100%}table.give-table thead{font-weight:700}table.give-table thead th:first-child{text-align:right;border-right:none}table.give-table th{padding:21px 25px;border:1px solid #e0e0e0;border-top-color:#e8e8e8;border-left:none;background:#f6f6f6;text-align:center;font-weight:700}table.give-table tbody tr{text-align:center}table.give-table tbody tr td{padding:18px;border:1px solid #e0e0e0;border-top-color:#fff;border-left:none;background:#fff;text-align:center}table.give-table tbody tr td:first-child{text-align:right;border-right:0}table.give-table tbody tr:nth-child(2n) td{background:#fcfcfc}body.give-twentysixteen div.entry-summary{margin:0}body.give-twentysixteen button.give-btn{color:#333}body.give-twentysixteen .give-submit{color:#fff}body.give-twentysixteen fieldset#give_terms_agreement{padding-right:0}body.give-twentyseventeen.colors-dark div#give_purchase_form_wrap span.give-final-total-amount,body.give-twentyseventeen.colors-dark div.give-total-wrap input.give-text-input,body.give-twentyseventeen.colors-dark div.give_notices p{color:#000}body.give-twentyseventeen.colors-dark form[id*=give] fieldset{background-color:transparent}body.give-twentynineteen .give-form .give-btn:focus{color:#fff}body.theme-twentytwenty .give-wrap{max-width:1200px;margin:60px auto}html[class*=avia] body#top form[id*=give-form] input.give-amount-top{width:unset;border:1px solid #ccc;border-right:none}html[class*=avia] body#top [id*=give-form].give-fl-form.give-fl-style-give label.give-fl-label{right:7px}html[class*=avia] body#top [id*=give-form].give-fl-form div.give-fl-is-active input{padding:8px 6px 0}.give-donation-history .give-table{table-layout:auto}.give-donation-history .give-table .give-security-column{float:right}.give-donation-history .give-table .give-security-column.give-security-description-wrap{width:75%;padding:16px 13px;font-size:12px;font-style:italic}.give-donation-history .give-table .give-security-column.give-security-button-wrap{width:25%;padding:25px 5px}.give-donation-history .give-table .give-security-column.give-security-button-wrap span{display:none;padding:0 20px}.give_user_history_main .give-mobile-title{display:none}@media screen and (max-width:480px){#give_user_history thead{display:none}#give_user_history tbody{border-top:1px solid #e0e0e0}#give_user_history tr{padding:.5rem 0;background:#fff}#give_user_history tr:nth-child(2n){background-color:#fafafa}#give_user_history td{border:none;padding-top:0;padding-bottom:0;background-color:transparent}#give_user_history td,#give_user_history tr{display:block;border-right:none;text-align:right}#give_user_history .give-mobile-title{display:inline-block;font-weight:700;min-width:6em}}.give-modal{top:0;right:0;width:100%;height:100%;z-index:2148482499;position:fixed;overflow:hidden;outline:none!important;-webkit-backface-visibility:hidden;-webkit-overflow-scrolling:touch;-webkit-transform:translateZ(0)}.give-modal form[id*=give-form],.give-modal form[id*=give-form] .give-submit{margin-bottom:0}.give-modal form[id*=give-form] .give-payment-mode-label{margin-top:0;padding-top:0}@media (max-width:580px){.give-modal form[id*=give-form] .give-input{font-size:16px}}.give-modal .mfp-content{box-sizing:border-box;position:relative;background:#fff;padding:20px;width:auto;max-width:650px;margin:40px auto;z-index:2148482599}.give-modal .mfp-content [id*=give-form] #give-payment-mode-select,.give-modal .mfp-content [id*=give-form] #give_purchase_form_wrap,.give-modal .mfp-content [id*=give-form].give-display-button-only .give-donation-amount,.give-modal .mfp-content [id*=give-form].give-display-button-only .give-donation-levels-wrap{display:block}.give-modal .mfp-content .mfp-close:hover{background-color:transparent}.give-modal form.give-form button.mfp-close{position:absolute;display:block!important}.give-modal .mfp-container:after{display:none}.give-modal .mfp-content{vertical-align:middle;transform:translateY(-100px)}.give-modal.mfp-bg,.give-modal .mfp-content{opacity:0;transition:all .2s}.give-modal.mfp-ready .mfp-content{opacity:1;transform:translateY(0)}.give-modal.mfp-ready.mfp-bg{opacity:.8}.give-modal.mfp-removing .mfp-content{transform:translateY(-50px);opacity:0}.give-modal.mfp-removing.mfp-bg{opacity:0}.give-donation-grid-item-form{position:relative;margin:0 auto;max-width:600px;background-color:#fff;padding:1rem 1.5rem;height:85vh;overflow-y:auto}.give-donation-grid-item-form #give_purchase_form_wrap{display:block!important}.give-donation-grid-item-form .give-btn-modal,.give-donation-grid-item-form .give-btn-reveal{display:none!important}.modal-fade-slide.give-modal .mfp-content{padding:0;max-width:100%}.modal-fade-slide .give-modal--slide{opacity:0;transition:all .2s ease-out;transform:translateY(-20px) perspective(600px) rotateX(0)}.modal-fade-slide.mfp-ready .give-modal--slide{opacity:1;transform:translateY(0) perspective(600px) rotateX(0)}.modal-fade-slide.mfp-removing .give-modal--slide{opacity:0;transform:translateY(-10px) perspective(600px) rotateX(0)}.modal-fade-slide.mfp-bg{opacity:0;transition:opacity .3s ease-out}.modal-fade-slide.mfp-ready.mfp-bg{opacity:.8}.modal-fade-slide.mfp-removing.mfp-bg{opacity:0}.mfp-close:hover{background-color:transparent}.mfp-content .give-display-button-only .give-form-title{display:none}.mfp-content .give-display-button-only>:not(form),.mfp-content .give-display-button-only form>:not(.give-btn-modal){display:block}.give-donor{border:1px solid #e5e5e5;background:#fff;color:#333;font-size:1em;margin-bottom:20px;padding:20px;position:relative;transition:all .2s ease-out;width:100%}.give-donor__header{align-items:center;display:flex}.give-donor__image{border:1px solid #e5e5e5;background:#fff;text-align:center;flex-basis:60px;flex-shrink:0;line-height:60px;height:60px;margin-left:10px;overflow:hidden;border-radius:50%}.give-donor__image img{border-radius:50%;display:block;height:58px;object-fit:cover;width:100%}.give-donor__details{flex-grow:1;overflow:hidden}.give-donor__name{font-size:1em!important;font-weight:700!important;margin:0!important;padding:0!important}.give-donor__name,.give-donor__timestamp{color:#333!important;line-height:1.3!important}.give-donor__timestamp{display:block;font-size:75%!important}.give-donor__content{margin-top:10px;width:100%}.give-donor__content p{color:#333;font-size:1em!important;line-height:1.5!important;margin:0 0 20px!important;padding:0!important;width:100%}.give-donor__content:first-child{margin-top:0!important}.give-donor__content :last-child{margin-bottom:0!important}.give-donor__read-more{cursor:pointer;white-space:nowrap}.give-donor__excerpt+.give-donor__comment{display:none}.give-donor-wall-modal p:last-child{margin-bottom:0}.form-row .give-stripe-cc-field{box-sizing:border-box;width:100%;border-radius:0;outline:none;color:#333;background-color:#fdfdfd;border:1px solid #ccc;margin:0;padding:.5em}.give-stripe-cc-field.give-fl-input{height:auto;min-height:50px;line-height:inherit;padding:14px 10px;background-color:#fff}.give-stripe-cc-field-wrap .give-fl-is-active .give-fl-input{padding:20px 12px 4px;transition:padding .2s ease-in-out,border .2s ease-in-out}.give-stripe-cc-field-wrap .give-fl-label span{display:none}.give-stripe-single-cc-field-wrap{border:1px solid #ccc;background-color:#fdfdfd;padding:10px;height:40px;margin:0 0 15px}.give-form .give-stripe-cc-field.focus,.give-form .give-stripe-cc-field:focus{background-color:#fff}.give-wrap .give-grid{max-width:30rem}.give-wrap .give-grid__item{margin-bottom:1.5rem;width:100%}.give-wrap .give-grid__item>:last-child{margin-bottom:0}.give-wrap .give-wrap:before{display:block;content:"";clear:both}@media (min-width:30rem){.give-wrap .give-grid{display:flex;flex-flow:row wrap;margin-bottom:1.5rem;max-width:100%}.give-wrap .give-grid__item{padding:0 .75rem;display:flex}}@media (min-width:30rem) and (min-width:40rem){.give-wrap .give-grid--2 .give-grid__item,.give-wrap .give-grid--3 .give-grid__item,.give-wrap .give-grid--4 .give-grid__item{width:50%}}@media (min-width:30rem) and (min-width:72rem){.give-wrap .give-grid--3 .give-grid__item,.give-wrap .give-grid--4 .give-grid__item{width:33.33333%}}@media (min-width:30rem) and (min-width:90rem){.give-wrap .give-grid--4 .give-grid__item{width:25%}}@supports (display:grid){.give-wrap .give-grid{display:grid;grid-template-columns:1fr;grid-gap:1.5rem;margin-bottom:1.5rem;max-width:100%}.give-wrap .give-grid__item{display:flex;margin-bottom:0;padding:0;width:auto!important}@media (min-width:40rem){.give-wrap .give-grid--best-fit{grid-template-columns:repeat(auto-fit,minmax(320px,1fr))}}@media (min-width:40rem){.give-wrap .give-grid--2,.give-wrap .give-grid--3,.give-wrap .give-grid--4{grid-template-columns:repeat(2,1fr)}}@media (min-width:72rem){.give-wrap .give-grid--3,.give-wrap .give-grid--4{grid-template-columns:repeat(3,1fr)}}@media (min-width:90rem){.give-wrap .give-grid--4{grid-template-columns:repeat(4,1fr)}}}.give-wrap .give-card{background-color:#fff;border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04);color:inherit;display:flex;flex-direction:column;width:100%;text-decoration:none;transition:all .1s ease-out}.give-wrap .give-card:active,.give-wrap .give-card:focus,.give-wrap .give-card:hover,.give-wrap .give-card:visited{border-color:#ccc;box-shadow:0 4px 12px rgba(0,0,0,.16)}.give-wrap .give-card__media img{border-radius:0;box-shadow:none;display:block;height:auto;margin:0;object-fit:cover;order:1;width:100%}.give-wrap .give-card__body{display:flex;flex-direction:column;flex-grow:1;order:2;padding:1.5rem}.give-wrap .give-card__body>:last-child{margin-bottom:0}.give-wrap .give-card__title{line-height:1.3;margin:0 0 .75rem;padding:0}.give-wrap .give-card__text{margin:0 0 1.5rem;padding:0}.give-wrap .give-card__progress{margin-top:auto;width:100%}.give-wrap .give-card__progress .raised,.give-wrap .give-card__progress>:last-child{margin-bottom:0}.give-wrap .give-card__progress .income{font-size:2em}.give-wrap .give-page-numbers{font-size:1.25em}#give-receipt .timeline-item{background:#fff}@keyframes placeHolderShimmer{0%{background-position:100% 0}to{background-position:520px 0}}#give-receipt .placeholder-animation{max-width:650px;margin:0 auto}#give-receipt .animated-background{animation-duration:.85s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-name:placeHolderShimmer;animation-timing-function:linear;background:#f6f7f8;background:linear-gradient(270deg,#eee 8%,#ddd 18%,#eee 33%);background-size:520px 100%;position:relative}#give-receipt .container{margin:0 auto;width:650px;background-color:#eee;border:1px solid #eee}#give-receipt .layer{display:flex}#give-receipt .layer.h1{height:28px}#give-receipt .layer.h2{height:22px}#give-receipt .layer.inline-radios{height:12px}#give-receipt .layer.label{height:8px}#give-receipt .layer-item.opaque{background:#fff}#give-receipt .layer-gap{background-color:#fff}#give-receipt .layer-gap.large{height:40px}#give-receipt .layer-gap.medium{height:20px}#give-receipt .layer-gap.small{height:10px}#give-receipt .layer-1 .layer-item:nth-child(odd){width:45%}#give-receipt .layer-1 .layer-item:nth-child(2n){width:55%}#give-receipt .layer-4 .layer-item:first-child{width:30%}#give-receipt .layer-4 .layer-item:nth-child(2){width:10%}#give-receipt .layer-4 .layer-item:nth-child(3){width:20%}#give-receipt .layer-4 .layer-item:nth-child(4){width:30%}#give-receipt .layer-4 .layer-item:nth-child(5){width:10%}#give-receipt .layer-5 .layer-item:first-child{width:40%}#give-receipt .layer-5 .layer-item:nth-child(2){width:5%}#give-receipt .layer-5 .layer-item:nth-child(3){width:15%}#give-receipt .layer-5 .layer-item:nth-child(4){width:40%}#give-receipt .layer-6 .layer-item:nth-child(odd){width:30%}#give-receipt .layer-6 .layer-item:nth-child(2n){width:70%}#give-receipt .layer-8 .layer-item:first-child{width:40%}#give-receipt .layer-8 .layer-item:nth-child(2){width:20%}#give-receipt .layer-8 .layer-item:nth-child(3){width:40%}.give-grid-ie-utility{margin:0 -12px}@supports (display:grid){.give-grid-ie-utility{margin:0}}
assets/dist/css/gutenberg.css CHANGED
@@ -1 +1 @@
1
- .float-right{float:right}.gutenberg__editor .give-blank-slate .give-chosen-base-control{margin:0 auto 15px;max-width:300px}.gutenberg__editor .give-blank-slate .give-chosen-base-control a.chosen-single{box-shadow:none!important}.gutenberg__editor .give-blank-slate .give-chosen-base-control ul.chosen-results{margin:0!important;text-align:left!important}.gutenberg__editor .give-blank-slate .give-blank-slate__image{max-width:96px}.timeline-item{background:#fff}@keyframes placeHolderShimmer{0%{background-position:0 0}to{background-position:520px 0}}.placeholder-animation{max-width:650px;margin:0 auto}.animated-background{animation-duration:.85s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-name:placeHolderShimmer;animation-timing-function:linear;background:#f6f7f8;background:linear-gradient(90deg,#eee 8%,#ddd 18%,#eee 33%);background-size:520px 100%;position:relative}.container{margin:0 auto;width:650px;background-color:#eee;border:1px solid #eee}.layer{display:flex}.layer.h1{height:28px}.layer.h2{height:22px}.layer.inline-radios{height:12px}.layer.label{height:8px}.layer-item.opaque{background:#fff}.layer-gap{background-color:#fff}.layer-gap.large{height:40px}.layer-gap.medium{height:20px}.layer-gap.small{height:10px}.layer-1 .layer-item:nth-child(odd){width:45%}.layer-1 .layer-item:nth-child(2n){width:55%}.layer-4 .layer-item:first-child{width:30%}.layer-4 .layer-item:nth-child(2){width:10%}.layer-4 .layer-item:nth-child(3){width:20%}.layer-4 .layer-item:nth-child(4){width:30%}.layer-4 .layer-item:nth-child(5){width:10%}.layer-5 .layer-item:first-child{width:40%}.layer-5 .layer-item:nth-child(2){width:5%}.layer-5 .layer-item:nth-child(3){width:15%}.layer-5 .layer-item:nth-child(4){width:40%}.layer-6 .layer-item:nth-child(odd){width:30%}.layer-6 .layer-item:nth-child(2n){width:70%}.layer-8 .layer-item:first-child{width:40%}.layer-8 .layer-item:nth-child(2){width:20%}.layer-8 .layer-item:nth-child(3){width:40%}.wp-block-give-donation-form{position:relative}.wp-block-give-donation-form .control-popup{display:flex;flex-flow:row wrap;position:absolute;top:0;left:0;width:100%;height:100%;z-index:9;background-color:rgba(0,0,0,.8);text-align:center;color:#fff;opacity:0;transition:opacity .3s ease;overflow:hidden}.wp-block-give-donation-form .control-popup:hover{opacity:1;transition:opacity .3s ease}.wp-block-give-donation-form .control-popup:hover .control-button>div{transform:translateY(0);opacity:1;transition:transform .3s ease .15s,opacity .3s ease .15s;cursor:pointer}.wp-block-give-donation-form .control-popup:hover .control-button.edit-form>div{transition:transform .3s ease .2s,opacity .3s ease .2s}.wp-block-give-donation-form .control-popup a{color:#fff;text-decoration:none;outline:0}.wp-block-give-donation-form .control-popup a:active,.wp-block-give-donation-form .control-popup a:focus,.wp-block-give-donation-form .control-popup a:hover{color:#fff}.wp-block-give-donation-form .control-popup>*{width:50%;cursor:pointer}.wp-block-give-donation-form .control-popup .dashicons{margin-right:5px}.wp-block-give-donation-form .control-popup .control-button{display:flex;flex-flow:row wrap;align-items:center;transition:background-color .3s ease}.wp-block-give-donation-form .control-popup .control-button>div{display:inline-block;width:100%;position:relative;transform:translateY(-25px);opacity:0;transition:transform .3s ease,opacity .3s ease;font-size:1.5rem;text-shadow:0 2px 0 rgba(0,0,0,.3)}.wp-block-give-donation-form .control-popup .control-button>div>*{vertical-align:middle}.wp-block-give-donation-form .control-popup .control-button:hover{transition:background-color .3s ease;background-color:rgba(0,0,0,.5)}.wp-block-give-donation-form .give-form-wrap{transition:transform .3s ease,opacity .3s ease}.wp-block-give-donation-form:hover .give-form-wrap{transition:transform .3s ease,opacity .3s ease;opacity:.3;transform:scale(.9)}.wp-block-give-donation-form form[id*=give-form] #give-gateway-radio-list>li input[type=radio]{display:inline-block}
1
+ .float-right{float:right}.gutenberg__editor .give-blank-slate__image{max-width:96px}.components-button{margin:15px 0 0}.give-chosen-base-control a.chosen-single{box-shadow:none!important}.give-chosen-base-control ul.chosen-results{margin:0!important;text-align:left!important}.timeline-item{background:#fff}@keyframes placeHolderShimmer{0%{background-position:0 0}to{background-position:520px 0}}.placeholder-animation{max-width:650px;margin:0 auto}.animated-background{animation-duration:.85s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-name:placeHolderShimmer;animation-timing-function:linear;background:#f6f7f8;background:linear-gradient(90deg,#eee 8%,#ddd 18%,#eee 33%);background-size:520px 100%;position:relative}.container{margin:0 auto;width:650px;background-color:#eee;border:1px solid #eee}.layer{display:flex}.layer.h1{height:28px}.layer.h2{height:22px}.layer.inline-radios{height:12px}.layer.label{height:8px}.layer-item.opaque{background:#fff}.layer-gap{background-color:#fff}.layer-gap.large{height:40px}.layer-gap.medium{height:20px}.layer-gap.small{height:10px}.layer-1 .layer-item:nth-child(odd){width:45%}.layer-1 .layer-item:nth-child(2n){width:55%}.layer-4 .layer-item:first-child{width:30%}.layer-4 .layer-item:nth-child(2){width:10%}.layer-4 .layer-item:nth-child(3){width:20%}.layer-4 .layer-item:nth-child(4){width:30%}.layer-4 .layer-item:nth-child(5){width:10%}.layer-5 .layer-item:first-child{width:40%}.layer-5 .layer-item:nth-child(2){width:5%}.layer-5 .layer-item:nth-child(3){width:15%}.layer-5 .layer-item:nth-child(4){width:40%}.layer-6 .layer-item:nth-child(odd){width:30%}.layer-6 .layer-item:nth-child(2n){width:70%}.layer-8 .layer-item:first-child{width:40%}.layer-8 .layer-item:nth-child(2){width:20%}.layer-8 .layer-item:nth-child(3){width:40%}.wp-block-give-donation-form{position:relative}.wp-block-give-donation-form .control-popup{display:flex;flex-flow:row wrap;position:absolute;top:0;left:0;width:100%;height:100%;z-index:9;background-color:rgba(0,0,0,.8);text-align:center;color:#fff;opacity:0;transition:opacity .3s ease;overflow:hidden}.wp-block-give-donation-form .control-popup:hover{opacity:1;transition:opacity .3s ease}.wp-block-give-donation-form .control-popup:hover .control-button>div{transform:translateY(0);opacity:1;transition:transform .3s ease .15s,opacity .3s ease .15s;cursor:pointer}.wp-block-give-donation-form .control-popup:hover .control-button.edit-form>div{transition:transform .3s ease .2s,opacity .3s ease .2s}.wp-block-give-donation-form .control-popup a{color:#fff;text-decoration:none;outline:0}.wp-block-give-donation-form .control-popup a:active,.wp-block-give-donation-form .control-popup a:focus,.wp-block-give-donation-form .control-popup a:hover{color:#fff}.wp-block-give-donation-form .control-popup>*{width:50%;cursor:pointer}.wp-block-give-donation-form .control-popup .dashicons{margin-right:5px}.wp-block-give-donation-form .control-popup .control-button{display:flex;flex-flow:row wrap;align-items:center;transition:background-color .3s ease}.wp-block-give-donation-form .control-popup .control-button>div{display:inline-block;width:100%;position:relative;transform:translateY(-25px);opacity:0;transition:transform .3s ease,opacity .3s ease;font-size:1.5rem;text-shadow:0 2px 0 rgba(0,0,0,.3)}.wp-block-give-donation-form .control-popup .control-button>div>*{vertical-align:middle}.wp-block-give-donation-form .control-popup .control-button:hover{transition:background-color .3s ease;background-color:rgba(0,0,0,.5)}.wp-block-give-donation-form .give-form-wrap{transition:transform .3s ease,opacity .3s ease}.wp-block-give-donation-form:hover .give-form-wrap{transition:transform .3s ease,opacity .3s ease;opacity:.3;transform:scale(.9)}.wp-block-give-donation-form form[id*=give-form] #give-gateway-radio-list>li input[type=radio]{display:inline-block}
assets/dist/css/gutenberg.rtl.css CHANGED
@@ -1 +1 @@
1
- .float-right{float:left}.gutenberg__editor .give-blank-slate .give-chosen-base-control{margin:0 auto 15px;max-width:300px}.gutenberg__editor .give-blank-slate .give-chosen-base-control a.chosen-single{box-shadow:none!important}.gutenberg__editor .give-blank-slate .give-chosen-base-control ul.chosen-results{margin:0!important;text-align:right!important}.gutenberg__editor .give-blank-slate .give-blank-slate__image{max-width:96px}.timeline-item{background:#fff}@keyframes placeHolderShimmer{0%{background-position:100% 0}to{background-position:520px 0}}.placeholder-animation{max-width:650px;margin:0 auto}.animated-background{animation-duration:.85s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-name:placeHolderShimmer;animation-timing-function:linear;background:#f6f7f8;background:linear-gradient(270deg,#eee 8%,#ddd 18%,#eee 33%);background-size:520px 100%;position:relative}.container{margin:0 auto;width:650px;background-color:#eee;border:1px solid #eee}.layer{display:flex}.layer.h1{height:28px}.layer.h2{height:22px}.layer.inline-radios{height:12px}.layer.label{height:8px}.layer-item.opaque{background:#fff}.layer-gap{background-color:#fff}.layer-gap.large{height:40px}.layer-gap.medium{height:20px}.layer-gap.small{height:10px}.layer-1 .layer-item:nth-child(odd){width:45%}.layer-1 .layer-item:nth-child(2n){width:55%}.layer-4 .layer-item:first-child{width:30%}.layer-4 .layer-item:nth-child(2){width:10%}.layer-4 .layer-item:nth-child(3){width:20%}.layer-4 .layer-item:nth-child(4){width:30%}.layer-4 .layer-item:nth-child(5){width:10%}.layer-5 .layer-item:first-child{width:40%}.layer-5 .layer-item:nth-child(2){width:5%}.layer-5 .layer-item:nth-child(3){width:15%}.layer-5 .layer-item:nth-child(4){width:40%}.layer-6 .layer-item:nth-child(odd){width:30%}.layer-6 .layer-item:nth-child(2n){width:70%}.layer-8 .layer-item:first-child{width:40%}.layer-8 .layer-item:nth-child(2){width:20%}.layer-8 .layer-item:nth-child(3){width:40%}.wp-block-give-donation-form{position:relative}.wp-block-give-donation-form .control-popup{display:flex;flex-flow:row wrap;position:absolute;top:0;right:0;width:100%;height:100%;z-index:9;background-color:rgba(0,0,0,.8);text-align:center;color:#fff;opacity:0;transition:opacity .3s ease;overflow:hidden}.wp-block-give-donation-form .control-popup:hover{opacity:1;transition:opacity .3s ease}.wp-block-give-donation-form .control-popup:hover .control-button>div{transform:translateY(0);opacity:1;transition:transform .3s ease .15s,opacity .3s ease .15s;cursor:pointer}.wp-block-give-donation-form .control-popup:hover .control-button.edit-form>div{transition:transform .3s ease .2s,opacity .3s ease .2s}.wp-block-give-donation-form .control-popup a{color:#fff;text-decoration:none;outline:0}.wp-block-give-donation-form .control-popup a:active,.wp-block-give-donation-form .control-popup a:focus,.wp-block-give-donation-form .control-popup a:hover{color:#fff}.wp-block-give-donation-form .control-popup>*{width:50%;cursor:pointer}.wp-block-give-donation-form .control-popup .dashicons{margin-left:5px}.wp-block-give-donation-form .control-popup .control-button{display:flex;flex-flow:row wrap;align-items:center;transition:background-color .3s ease}.wp-block-give-donation-form .control-popup .control-button>div{display:inline-block;width:100%;position:relative;transform:translateY(-25px);opacity:0;transition:transform .3s ease,opacity .3s ease;font-size:1.5rem;text-shadow:0 2px 0 rgba(0,0,0,.3)}.wp-block-give-donation-form .control-popup .control-button>div>*{vertical-align:middle}.wp-block-give-donation-form .control-popup .control-button:hover{transition:background-color .3s ease;background-color:rgba(0,0,0,.5)}.wp-block-give-donation-form .give-form-wrap{transition:transform .3s ease,opacity .3s ease}.wp-block-give-donation-form:hover .give-form-wrap{transition:transform .3s ease,opacity .3s ease;opacity:.3;transform:scale(.9)}.wp-block-give-donation-form form[id*=give-form] #give-gateway-radio-list>li input[type=radio]{display:inline-block}
1
+ .float-right{float:left}.gutenberg__editor .give-blank-slate__image{max-width:96px}.components-button{margin:15px 0 0}.give-chosen-base-control a.chosen-single{box-shadow:none!important}.give-chosen-base-control ul.chosen-results{margin:0!important;text-align:right!important}.timeline-item{background:#fff}@keyframes placeHolderShimmer{0%{background-position:100% 0}to{background-position:520px 0}}.placeholder-animation{max-width:650px;margin:0 auto}.animated-background{animation-duration:.85s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-name:placeHolderShimmer;animation-timing-function:linear;background:#f6f7f8;background:linear-gradient(270deg,#eee 8%,#ddd 18%,#eee 33%);background-size:520px 100%;position:relative}.container{margin:0 auto;width:650px;background-color:#eee;border:1px solid #eee}.layer{display:flex}.layer.h1{height:28px}.layer.h2{height:22px}.layer.inline-radios{height:12px}.layer.label{height:8px}.layer-item.opaque{background:#fff}.layer-gap{background-color:#fff}.layer-gap.large{height:40px}.layer-gap.medium{height:20px}.layer-gap.small{height:10px}.layer-1 .layer-item:nth-child(odd){width:45%}.layer-1 .layer-item:nth-child(2n){width:55%}.layer-4 .layer-item:first-child{width:30%}.layer-4 .layer-item:nth-child(2){width:10%}.layer-4 .layer-item:nth-child(3){width:20%}.layer-4 .layer-item:nth-child(4){width:30%}.layer-4 .layer-item:nth-child(5){width:10%}.layer-5 .layer-item:first-child{width:40%}.layer-5 .layer-item:nth-child(2){width:5%}.layer-5 .layer-item:nth-child(3){width:15%}.layer-5 .layer-item:nth-child(4){width:40%}.layer-6 .layer-item:nth-child(odd){width:30%}.layer-6 .layer-item:nth-child(2n){width:70%}.layer-8 .layer-item:first-child{width:40%}.layer-8 .layer-item:nth-child(2){width:20%}.layer-8 .layer-item:nth-child(3){width:40%}.wp-block-give-donation-form{position:relative}.wp-block-give-donation-form .control-popup{display:flex;flex-flow:row wrap;position:absolute;top:0;right:0;width:100%;height:100%;z-index:9;background-color:rgba(0,0,0,.8);text-align:center;color:#fff;opacity:0;transition:opacity .3s ease;overflow:hidden}.wp-block-give-donation-form .control-popup:hover{opacity:1;transition:opacity .3s ease}.wp-block-give-donation-form .control-popup:hover .control-button>div{transform:translateY(0);opacity:1;transition:transform .3s ease .15s,opacity .3s ease .15s;cursor:pointer}.wp-block-give-donation-form .control-popup:hover .control-button.edit-form>div{transition:transform .3s ease .2s,opacity .3s ease .2s}.wp-block-give-donation-form .control-popup a{color:#fff;text-decoration:none;outline:0}.wp-block-give-donation-form .control-popup a:active,.wp-block-give-donation-form .control-popup a:focus,.wp-block-give-donation-form .control-popup a:hover{color:#fff}.wp-block-give-donation-form .control-popup>*{width:50%;cursor:pointer}.wp-block-give-donation-form .control-popup .dashicons{margin-left:5px}.wp-block-give-donation-form .control-popup .control-button{display:flex;flex-flow:row wrap;align-items:center;transition:background-color .3s ease}.wp-block-give-donation-form .control-popup .control-button>div{display:inline-block;width:100%;position:relative;transform:translateY(-25px);opacity:0;transition:transform .3s ease,opacity .3s ease;font-size:1.5rem;text-shadow:0 2px 0 rgba(0,0,0,.3)}.wp-block-give-donation-form .control-popup .control-button>div>*{vertical-align:middle}.wp-block-give-donation-form .control-popup .control-button:hover{transition:background-color .3s ease;background-color:rgba(0,0,0,.5)}.wp-block-give-donation-form .give-form-wrap{transition:transform .3s ease,opacity .3s ease}.wp-block-give-donation-form:hover .give-form-wrap{transition:transform .3s ease,opacity .3s ease;opacity:.3;transform:scale(.9)}.wp-block-give-donation-form form[id*=give-form] #give-gateway-radio-list>li input[type=radio]{display:inline-block}
assets/dist/images/admin/shopping-cart.svg CHANGED
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="62" height="65"><path d="M30.976 24.881h6.095v-9.143h9.143V9.643h-9.143V.5h-6.095v9.143h-9.143v6.095h9.143v9.143zM18.786 52.31c-3.353 0-6.065 2.742-6.065 6.095 0 3.352 2.712 6.095 6.065 6.095 3.352 0 6.095-2.743 6.095-6.095 0-3.353-2.743-6.095-6.095-6.095zm30.476 0c-3.352 0-6.065 2.742-6.065 6.095 0 3.352 2.713 6.095 6.065 6.095 3.352 0 6.095-2.743 6.095-6.095 0-3.353-2.743-6.095-6.095-6.095zM22.138 37.07h22.705a6.066 6.066 0 0 0 5.333-3.139L61.94 12.57l-5.333-2.926-11.764 21.333H23.449L10.466 3.548H.5v6.095h6.095l10.972 23.131-4.115 7.436c-2.224 4.084.701 9.052 5.334 9.052h36.571v-6.095H18.786l3.352-6.096z"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="62" height="65"><path d="M30.976 24.881h6.095v-9.143h9.143V9.643h-9.143V.5h-6.095v9.143h-9.143v6.095h9.143v9.143zM18.786 52.31c-3.353 0-6.065 2.742-6.065 6.095 0 3.352 2.712 6.095 6.065 6.095 3.352 0 6.095-2.743 6.095-6.095 0-3.353-2.743-6.095-6.095-6.095zm30.476 0c-3.352 0-6.065 2.742-6.065 6.095 0 3.352 2.713 6.095 6.065 6.095 3.352 0 6.095-2.743 6.095-6.095 0-3.353-2.743-6.095-6.095-6.095zM22.138 37.07h22.705a6.066 6.066 0 005.333-3.139L61.94 12.57l-5.333-2.926-11.764 21.333H23.449L10.466 3.548H.5v6.095h6.095l10.972 23.131-4.115 7.436c-2.224 4.084.701 9.052 5.334 9.052h36.571v-6.095H18.786l3.352-6.096z"/></svg>
assets/dist/images/give-loader.svg CHANGED
@@ -1 +1 @@
1
- <svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid" class="lds-money" id="svg3229"><style id="style6589"/><defs id="defs691"><clipPath id="lds-money-cpid-51929356b3473"><path id="rect8119" d="M0 0h100v82.235H0z"/></clipPath></defs><path stroke-width="1" d="M85.529 75.177H14.471A4.471 4.471 0 0 0 10 79.648h80a4.471 4.471 0 0 0-4.471-4.471z" stroke="#eaf9ed" fill="#eaf9ed" id="path4683"/><g clip-path="url(#lds-money-cpid-51929356b3473)" id="g973"><g transform="translate(0 75)" id="g7676"><animateTransform attributeName="transform" type="translate" calcMode="linear" values="0 0 ;0 150" keyTimes="0;1" dur="1s" begin="0s" repeatCount="indefinite" id="animateTransform6035"/><g id="Layer_2" transform="translate(0 -75)"><circle cx="50" cy="40" r="35" id="circle9981" fill="#66bb6a"/><defs id="defs9529"><circle id="SVGID_18_" cx="78.6" cy="78.6" r="78.6"/></defs><clipPath id="SVGID_1_"><use xlink:href="#SVGID_18_" overflow="visible" id="use7689"/></clipPath><path d="M89.8 84.2c.3.7 1 1.3 1 1.3 13.9 1.7 33.6-.2 48.6-2.2-8.6 18.5-24 30.8-38.1 30.8-26.5 0-46.9-32.1-46.9-32.1 8.2-7.2 21.7-30.8 41.2-30.8s28 10.7 28 10.7l2.2-3.5s-9.1-31.9-34.9-31.9-53.2 42.3-69.2 52c0 0 22 52.2 70.2 52.2 40.4 0 50.6-38.6 52.5-48.2 5.4-.8 9.9-1.6 12.8-2.1 1-2.2 2.1-6.1 1.3-11.3-16.1 6.2-40.5 13.2-69.1 13.2-.1 0 0 1 .4 1.9z" clip-path="url(#SVGID_1_)" fill="#fff" id="path9794" transform="matrix(.47328 0 0 .47575 10.465 2.048)"/></g></g></g><path stroke-width="1" d="M14.471 84.823h71.058A4.471 4.471 0 0 0 90 80.352v-.704H10v.704a4.471 4.471 0 0 0 4.471 4.471z" stroke="#eaf9ed" fill="#eaf9ed" id="path7605"/></svg>
1
+ <svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid" class="lds-money" id="svg3229"><style id="style6589"/><defs id="defs691"><clipPath id="lds-money-cpid-51929356b3473"><path id="rect8119" d="M0 0h100v82.235H0z"/></clipPath></defs><path stroke-width="1" d="M85.529 75.177H14.471A4.471 4.471 0 0010 79.648h80a4.471 4.471 0 00-4.471-4.471z" stroke="#eaf9ed" fill="#eaf9ed" id="path4683"/><g clip-path="url(#lds-money-cpid-51929356b3473)" id="g973"><g transform="translate(0 75)" id="g7676"><animateTransform attributeName="transform" type="translate" calcMode="linear" values="0 0 ;0 150" keyTimes="0;1" dur="1s" begin="0s" repeatCount="indefinite" id="animateTransform6035"/><g id="Layer_2" transform="translate(0 -75)"><circle cx="50" cy="40" r="35" id="circle9981" fill="#66bb6a"/><defs id="defs9529"><circle id="SVGID_18_" cx="78.6" cy="78.6" r="78.6"/></defs><clipPath id="SVGID_1_"><use xlink:href="#SVGID_18_" overflow="visible" id="use7689"/></clipPath><path d="M89.8 84.2c.3.7 1 1.3 1 1.3 13.9 1.7 33.6-.2 48.6-2.2-8.6 18.5-24 30.8-38.1 30.8-26.5 0-46.9-32.1-46.9-32.1 8.2-7.2 21.7-30.8 41.2-30.8s28 10.7 28 10.7l2.2-3.5s-9.1-31.9-34.9-31.9-53.2 42.3-69.2 52c0 0 22 52.2 70.2 52.2 40.4 0 50.6-38.6 52.5-48.2 5.4-.8 9.9-1.6 12.8-2.1 1-2.2 2.1-6.1 1.3-11.3-16.1 6.2-40.5 13.2-69.1 13.2-.1 0 0 1 .4 1.9z" clip-path="url(#SVGID_1_)" fill="#fff" id="path9794" transform="matrix(.47328 0 0 .47575 10.465 2.048)"/></g></g></g><path stroke-width="1" d="M14.471 84.823h71.058A4.471 4.471 0 0090 80.352v-.704H10v.704a4.471 4.471 0 004.471 4.471z" stroke="#eaf9ed" fill="#eaf9ed" id="path7605"/></svg>
assets/dist/images/icomoon.svg CHANGED
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg"><defs><font id="icomoon" horiz-adv-x="1024"><font-face units-per-em="1024" ascent="960" descent="-64"/><glyph horiz-adv-x="512"/><glyph unicode="" glyph-name="circle-plus" d="M512 891.733q95.667 0 182.5-37.167t149.667-100 100-149.667 37.167-182.5-37.167-182.5-100-149.667-149.667-100T512-46.935 329.5-9.768t-149.667 100-100 149.667-37.167 182.5 37.167 182.5 100 149.667 149.667 100T512 891.733zm0-85.333q-78 0-149.167-30.5t-122.5-81.833-81.833-122.5T128 422.4t30.5-149.167 81.833-122.5 122.5-81.833T512 38.4t149.167 30.5 122.5 81.833 81.833 122.5T896 422.4t-30.5 149.167-81.833 122.5-122.5 81.833T512 806.4zm0-170.667q17.667 0 30.167-12.5t12.5-30.167v-128h128q17.667 0 30.167-12.5t12.5-30.167-12.5-30.167-30.167-12.5h-128v-128q0-17.667-12.5-30.167T512 209.065t-30.167 12.5-12.5 30.167v128h-128q-17.667 0-30.167 12.5t-12.5 30.167 12.5 30.167 30.167 12.5h128v128q0 17.667 12.5 30.167t30.167 12.5z"/><glyph unicode="" glyph-name="circle-minus" d="M512 891.733q95.667 0 182.5-37.167t149.667-100 100-149.667 37.167-182.5-37.167-182.5-100-149.667-149.667-100T512-46.935 329.5-9.768t-149.667 100-100 149.667-37.167 182.5 37.167 182.5 100 149.667 149.667 100T512 891.733zm0-85.333q-78 0-149.167-30.5t-122.5-81.833-81.833-122.5T128 422.4t30.5-149.167 81.833-122.5 122.5-81.833T512 38.4t149.167 30.5 122.5 81.833 81.833 122.5T896 422.4t-30.5 149.167-81.833 122.5-122.5 81.833T512 806.4zM341.333 465.067h341.333q17.667 0 30.167-12.5t12.5-30.167-12.5-30.167-30.167-12.5H341.333q-17.667 0-30.167 12.5t-12.5 30.167 12.5 30.167 30.167 12.5z"/><glyph unicode="" glyph-name="locked" d="M234.666 678.399V529.065l-64 .002c-47.146 0-85.334-38.186-85.334-85.334V17.067c0-47.146 38.186-85.334 85.334-85.334h682.666c47.146 0 85.334 38.186 85.334 85.334v426.666c0 47.146-38.186 85.334-85.334 85.334h-64v149.334c0 153.174-124.16 277.334-277.334 277.334-153.172-.002-277.332-124.162-277.332-277.336zm106.668-149.332v149.334c0 94.294 76.374 170.666 170.666 170.666s170.666-76.374 170.666-170.666V529.067H341.334zm85.332-234.668c0 47.146 38.186 85.334 85.334 85.334s85.334-38.186 85.334-85.334c0-30.08-15.574-56.534-39.04-71.68 0 0 8.342-50.346 17.706-109.654 0-17.706-14.294-32-32-32h-64c-17.706 0-32 14.294-32 32l17.706 109.654c-23.466 15.148-39.04 41.6-39.04 71.68z"/><glyph unicode="" glyph-name="info" d="M448 651.733c0 26.4 21.6 48 48 48h32c26.4 0 48-21.6 48-48v-32c0-26.4-21.6-48-48-48h-32c-26.4 0-48 21.6-48 48v32zm192-464H384v64h64v192h-64v64h192v-256h64zm-128 768c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zm0-928c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416z"/><glyph unicode="" glyph-name="question" d="M512-68.267c-282.75 0-512 229.218-512 512 0 282.75 229.25 512 512 512s512-229.25 512-512c0-282.782-229.25-512-512-512zm0 896c-212.062 0-384-171.938-384-384s171.938-384 384-384 384 171.938 384 384-171.938 384-384 384zm0-128c-106.062 0-192-85.968-192-192h128c0 35.344 28.624 64 64 64s64-28.656 64-64-28.624-64-64-64h-32c-17.688 0-32-14.344-32-32v-96h128v11.75c74.376 26.438 128 96.782 128 180.25 0 106.032-85.938 192-192 192zm0-448h-64v-64h128v64z"/><glyph unicode="" glyph-name="lamp" d="M341.334 166.399v-64.214c0-29.866 12.374-56.982 32.214-76.374l62.72-62.72c41.814-41.814 109.654-41.814 151.466 0l62.72 62.72c19.84 19.392 32.214 46.506 32.214 76.374l-.002 42.882H492.8c-24.746 0-44.8 19.2-44.8 42.666s20.032 42.666 44.8 42.666h195.414c29.226 164.48 165.12 232.748 165.12 393.174 0 183.446-152.748 332.16-341.334 332.16s-341.334-148.714-341.334-332.16c0-181.142 170.668-245.142 170.668-457.174zm227.2 597.334c-20.054 3.626-35.2 21.12-35.2 42.026 0 23.446 19.2 43.308 42.666 43.308 33.92 0 75.094-24.106 109.654-58.24 35.2-34.988 61.012-81.728 61.012-112.428 0-23.466-19.2-42.666-42.666-42.666-20.906 0-38.4 15.146-42.048 35.2-10.666 42.88-47.318 82.134-93.418 92.8z"/><glyph unicode="" glyph-name="heart" d="M512 759.403c-21.334 82.986-129.706 132.266-213.334 132.266C133.76 891.669 0 763.669 0 593.003c0-320 304.214-405.334 469.334-597.334 1.472-2.134 3.2-3.862 5.12-5.76 20.886-20.714 54.614-20.714 75.498 0 1.942 1.898 3.2 3.626 4.714 5.76C720 188.095 1024 271.701 1024 593.003c0 170.666-133.76 298.666-298.666 298.666-83.628 0-192-49.28-213.334-132.266zm227.2-59.734c-20.054 3.626-35.2 21.12-35.2 42.026 0 23.466 19.2 43.306 42.666 43.306 33.92 0 75.094-24.106 109.654-58.24 35.2-34.986 61.014-81.706 61.014-112.426 0-23.466-19.2-42.666-42.666-42.666-20.906 0-38.4 15.146-42.048 35.2-10.668 42.88-47.318 82.134-93.42 92.8z"/><glyph unicode="" glyph-name="spinner" d="M512 652.637c-32.964 0-59.686 26.724-59.686 59.686v179.06c0 32.964 26.722 59.686 59.686 59.686 32.962 0 59.688-26.722 59.688-59.686v-179.06c0-32.964-26.726-59.686-59.688-59.686zm0-693.86c-20.602 0-37.304 16.702-37.304 37.304v179.06c0 20.602 16.702 37.304 37.304 37.304 20.604 0 37.304-16.704 37.304-37.304V-3.919c0-20.602-16.7-37.304-37.304-37.304zM377.756 620.373c-19.34 0-38.146 10.034-48.512 27.988l-89.53 155.07c-15.452 26.764-6.282 60.986 20.482 76.438 26.762 15.45 60.986 6.284 76.438-20.482l89.53-155.072c15.452-26.764 6.282-60.986-20.482-76.438-8.81-5.084-18.432-7.504-27.926-7.504zm358.1-597.896c-11.602 0-22.886 6.022-29.108 16.792l-89.53 155.07c-9.27 16.056-3.77 36.592 12.29 45.864 16.056 9.264 36.59 3.77 45.864-12.292l89.532-155.068c9.27-16.058 3.768-36.592-12.292-45.864a33.462 33.462 0 0 0-16.756-4.502zM279.344 525.793c-8.86 0-17.838 2.256-26.064 7.006l-155.072 89.53c-24.978 14.422-33.538 46.362-19.116 71.342 14.42 24.978 46.364 33.538 71.342 19.116l155.07-89.53c24.98-14.422 33.538-46.362 19.116-71.34-9.668-16.756-27.226-26.124-45.276-26.124zm620.304-335.734a29.694 29.694 0 0 0-14.894 4.004l-155.068 89.53c-14.274 8.24-19.164 26.494-10.924 40.768 8.242 14.276 26.496 19.166 40.766 10.924l155.07-89.532c14.274-8.24 19.164-26.492 10.924-40.766-5.53-9.574-15.562-14.928-25.874-14.928zM243.41 395.237H64.35c-26.784 0-48.496 21.712-48.496 48.496s21.712 48.496 48.496 48.496h179.06c26.784 0 48.496-21.712 48.496-48.496s-21.712-48.496-48.496-48.496zm716.24 18.652c-.002 0 0 0 0 0H780.59c-16.482.002-29.844 13.364-29.844 29.844s13.364 29.844 29.844 29.844c.002 0 0 0 0 0h179.06c16.482 0 29.844-13.362 29.844-29.844 0-16.48-13.364-29.844-29.844-29.844zM124.366 175.135c-15.472 0-30.518 8.028-38.81 22.39-12.362 21.41-5.026 48.79 16.384 61.148l155.072 89.532c21.41 12.368 48.79 5.028 61.15-16.384 12.362-21.412 5.026-48.79-16.384-61.15l-155.072-89.53a44.567 44.567 0 0 0-22.34-6.006zm620.266 373.046c-10.314 0-20.346 5.352-25.874 14.926-8.24 14.274-3.35 32.526 10.924 40.768l155.07 89.528c14.272 8.236 32.526 3.352 40.768-10.922 8.24-14.274 3.35-32.526-10.924-40.768l-155.07-89.528a29.7 29.7 0 0 0-14.894-4.004zM288.136 15.017a40.863 40.863 0 0 0-20.48 5.504c-19.626 11.332-26.35 36.428-15.02 56.054l89.53 155.07c11.33 19.628 36.426 26.352 56.054 15.022 19.626-11.332 26.35-36.43 15.02-56.054L323.71 35.541c-7.598-13.166-21.392-20.524-35.574-20.524zm358.13 631.474a29.718 29.718 0 0 0-14.894 4.002c-14.274 8.242-19.164 26.494-10.924 40.766l89.534 155.07c8.24 14.274 26.492 19.166 40.766 10.922 14.274-8.242 19.164-26.494 10.924-40.766l-89.532-155.07c-5.53-9.57-15.56-14.924-25.874-14.924z"/><glyph unicode="" glyph-name="help" d="M505.754 927.522C245.607 924.04 37.53 710.332 41.012 450.184 44.494 190.19 258.202-17.938 518.35-14.456c260.045 3.482 468.173 217.19 464.64 477.338-3.43 260.045-217.139 468.122-477.235 464.64zm-1.383-757.709h-2.611c-40.038 1.178-68.301 30.72-67.174 70.195 1.126 38.758 30.054 66.97 68.813 66.97l2.355-.051c41.165-1.229 69.12-30.464 67.891-71.066C572.519 197 544 169.813 504.371 169.813zM672.87 504.251c-9.472-13.363-30.157-30.003-56.269-50.33l-28.774-19.866c-15.77-12.288-25.293-23.808-28.826-35.123-2.867-9.011-4.198-11.315-4.454-29.491l-.051-4.659H444.774l.307 9.318c1.331 38.195 2.304 60.621 18.125 79.206 24.832 29.133 79.616 64.41 81.92 65.894 7.834 5.939 14.438 12.646 19.405 19.814 11.52 15.872 16.589 28.416 16.589 40.653 0 17.05-5.069 32.819-15.053 46.848-9.626 13.568-27.904 20.429-54.323 20.429-26.214 0-44.134-8.346-54.886-25.395-11.11-17.562-16.64-35.942-16.64-54.784v-4.71H327.066l.205 4.915c2.918 69.325 27.648 119.194 73.523 148.326 28.774 18.586 64.614 27.955 106.394 27.955 54.733 0 101.018-13.312 137.37-39.526 36.864-26.573 55.552-66.406 55.552-118.323 0-29.082-9.165-56.371-27.238-81.152z"/><glyph unicode="" glyph-name="spinner2" d="M512 955.733c-66.862-1.278-133.516-15.784-194.462-42.576-61-26.704-116.258-65.462-161.92-113.042-45.696-47.552-81.82-103.944-105.652-164.984C26.042 574.127 14.614 508.535 16 443.733c1.282-64.81 15.374-129.332 41.356-188.334 25.896-59.048 63.47-112.542 109.576-156.734C213.014 54.441 267.64 19.505 326.73-3.521 385.792-26.635 449.25-37.649 512-36.267c62.76 1.286 125.148 14.964 182.206 40.134 57.1 25.088 108.828 61.476 151.548 106.11 42.754 44.61 76.504 97.472 98.72 154.614 22.304 57.118 32.902 118.446 31.526 179.142-1.29 60.708-14.554 120.962-38.914 176.076-24.282 55.15-59.48 105.116-102.644 146.366-43.14 41.282-94.236 73.844-149.43 95.254-33.458 13.034-68.4 21.88-103.798 26.542.072 1.246.12 2.498.12 3.762 0 35.346-28.652 64-64 64-1.796 0-3.572-.094-5.332-.238v.238zm169.948-101.694c53.202-23.472 101.4-57.484 141.18-99.178 39.81-41.67 71.186-91 91.79-144.244 20.678-53.228 30.452-110.29 29.082-166.884-1.298-56.604-13.736-112.596-36.474-163.82-22.666-51.25-55.49-97.684-95.712-135.994-40.198-38.338-87.764-68.528-139.058-88.322C621.472 35.727 566.542 26.369 512 27.733c-54.552 1.302-108.412 13.328-157.69 35.254-49.3 21.858-93.97 53.498-130.81 92.246-36.868 38.73-65.87 84.53-84.856 133.874-19.06 49.338-28.006 102.136-26.644 154.626 1.306 52.5 12.918 104.228 34.034 151.562 21.05 47.352 51.502 90.256 88.782 125.624 37.258 35.396 81.294 63.21 128.688 81.39 47.392 18.248 98.058 26.782 148.496 25.424v.238a65.305 65.305 0 0 1 5.332-.238c33.012 0 60.174 24.992 63.624 57.086 34.822-6.224 68.818-16.53 100.992-30.78z"/><glyph unicode="" glyph-name="give-icon-full-circle-white" horiz-adv-x="1023" d="M939.969 418.328c-12.377-62.534-78.819-313.975-341.985-313.975-313.975 0-457.282 340.031-457.282 340.031 104.875 63.837 282.707 338.728 450.768 338.728s227.338-207.796 227.338-207.796l-14.331-22.799s-55.369 69.7-182.392 69.7-214.31-153.079-267.725-200.631c0 0 133.537-209.099 305.506-209.099 92.499 0 192.163 80.122 248.183 200.631-97.71-13.679-226.036-26.056-316.58-14.331 0 0-4.56 3.908-6.514 8.468-2.606 5.863-3.257 11.725-3.257 11.725 179.786 0 334.168 42.341 439.043 81.425-28.662 256.651-245.578 455.328-508.743 455.328-282.707 0-512-229.293-512-512s229.293-512 512-512c278.799 0 505.486 222.779 512 500.275-19.542-3.257-48.855-8.468-84.031-13.679z"/><glyph unicode="" glyph-name="wallet" d="M819.2 665.6h-640v25.6l563.2 45.056V691.2h76.8V768c0 56.32-45.619 95.846-101.325 87.91l-514.099-73.421c-55.757-7.987-101.376-60.57-101.376-116.89v-512c0-56.525 45.824-102.4 102.4-102.4h614.4c56.525 0 102.4 45.875 102.4 102.4v409.6c0 56.525-45.875 102.4-102.4 102.4zm-76.8-358.707c-42.394 0-76.8 34.406-76.8 76.8s34.406 76.8 76.8 76.8 76.8-34.406 76.8-76.8-34.406-76.8-76.8-76.8z"/><glyph unicode="" glyph-name="check-square-o" horiz-adv-x="950" d="M804.571 419.428V237.714q0-68-48.286-116.286T639.999 73.142H164.57q-68 0-116.286 48.286T-.002 237.714v475.429q0 68 48.286 116.286t116.286 48.286h475.429q36 0 66.857-14.286 8.571-4 10.286-13.143 1.714-9.714-5.143-16.571l-28-28q-5.714-5.714-13.143-5.714-1.714 0-5.143 1.143-13.143 3.429-25.714 3.429H164.57q-37.714 0-64.571-26.857t-26.857-64.571V237.716q0-37.714 26.857-64.571t64.571-26.857h475.429q37.714 0 64.571 26.857t26.857 64.571v145.143q0 7.429 5.143 12.571l36.571 36.571q5.714 5.714 13.143 5.714 3.429 0 6.857-1.714 11.429-4.571 11.429-16.571zm132 279.429L471.428 233.714Q457.714 220 438.857 220t-32.571 13.714L160.572 479.428q-13.714 13.714-13.714 32.571t13.714 32.571l62.857 62.857q13.714 13.714 32.571 13.714t32.571-13.714l150.286-150.286 369.714 369.714q13.714 13.714 32.571 13.714t32.571-13.714l62.857-62.857q13.714-13.714 13.714-32.571t-13.714-32.571z"/><glyph unicode="" glyph-name="1-66" d="M590.24 384.773l-74.496-68.304a930.276 930.276 0 0 1-7.216-6.576c-9.568-52.832-55.904-93.008-111.44-93.008-62.432 0-113.248 50.8-113.248 113.248 0 57.552 43.152 105.184 98.768 112.304 1.072 1.2 2.128 2.352 3.152 3.504l29.584 33.2.688-.224c13.04 14.224 28.032 30.576 39.632 43.232-18.528 5.648-38.208 8.704-58.56 8.704-110.688 0-200.72-90.032-200.72-200.72s90.032-200.72 200.72-200.72 200.72 90.032 200.72 200.72c-.016 18.944-2.656 37.264-7.584 54.64zm146.704 134.4c-22.416-20.4-44.768-40.88-66.848-61.152 18.272-38.848 28.48-82.208 28.48-127.888 0-166.24-135.248-301.488-301.488-301.488S95.6 163.909 95.6 330.133s135.248 301.488 301.488 301.488c47.072 0 91.664-10.848 131.392-30.16 20.192 22.032 40.624 44.32 60.944 66.656-56.752 32.432-122.416 50.976-192.336 50.976-214.464 0-388.96-174.496-388.96-388.96s174.496-388.96 388.96-388.96 388.96 174.496 388.96 388.96c.016 68.576-17.824 133.056-49.104 189.04zm276.752 242.88c-1.712 4.496-4.128 8.32-7.184 11.376-8.208 8.208-19.008 9.344-29.44 9.344-15.12 0-30.224.096-45.344.208-23.36.16-47.52.32-71.312.08-1.6-.016-2.64.08-3.264.176l-1.28 3.056-3.056 1.28c-.096.64-.192 1.664-.176 3.264.24 23.792.064 47.952-.08 71.328-.096 15.104-.208 30.224-.208 45.344 0 10.432-1.136 21.232-9.344 29.44-3.056 3.056-6.88 5.472-11.392 7.184-19.376 7.328-32.304-5.76-38.528-12.048-10.56-10.736-21.184-21.408-31.792-32.112-24.256-24.416-49.328-49.664-73.488-75.12-7.856-8.32-13.376-21.936-13.728-33.888-.544-18.48-.4-37.168-.256-55.264.128-16.464.272-33.472-.128-50.112-.128-5.408-2.88-12.448-6.416-16.368-41.28-45.776-83.696-91.952-124.72-136.592l-33.776-36.8c-18.16-19.824-61.008-66.56-75.44-82.256l-.128.048-4.944-5.552a1774.5 1774.5 0 0 0-10.48-11.584c-11.52-12.64-24.592-26.96-36.736-42.512-8.752-11.232-4.048-27.904 5.568-37.52a30.69 30.69 0 0 1 1.056-1.008c9.136-8.272 24.256-13.024 35.872-3.952 15.872 12.416 30.464 25.744 43.328 37.52 3.776 3.456 7.376 6.752 10.848 9.856l124.48 114.128c44.656 41.024 90.832 83.44 136.592 124.72 3.92 3.536 10.96 6.288 16.384 6.416 16.624.4 33.648.256 50.112.128 18.08-.144 36.784-.288 55.264.256 11.952.352 25.568 5.872 33.904 13.744 25.44 24.144 50.688 49.216 75.104 73.472 10.688 10.608 21.376 21.232 32.112 31.808 6.272 6.192 19.344 19.104 12.016 38.512z"/><glyph unicode="" glyph-name="write" d="M910.284 341.333c-31.445 0-56.889-25.472-56.889-56.889V142.222c0-15.708-12.75-28.444-28.444-28.444H199.063c-15.723 0-28.444 12.736-28.444 28.444V768c0 15.708 12.722 28.444 28.444 28.444h142.222c31.445 0 56.917 25.472 56.917 56.889s-25.474 56.889-56.917 56.889H113.729c-31.445 0-56.917-25.472-56.917-56.889V56.889C56.812 25.472 82.284 0 113.729 0h796.555c31.445 0 56.889 25.472 56.889 56.889v227.556c0 31.417-25.444 56.889-56.889 56.889zM749.173 773.541l81.305-81.319L492.09 341.333h-93.888v93.876l350.971 338.332zm.722 136.681c-14.556 0-29.06-5.541-40.171-16.626L284.396 483.555v-256h256.055l410.112 425.25c22.167 22.167 22.167 58.098 0 80.263L790.007 893.596c-11.056 11.084-25.611 16.626-40.112 16.626z"/><glyph unicode="" glyph-name="chevron-right" d="M469.146 741.581c21.402-20.89 230.502-240.384 230.502-240.384 11.418-11.213 17.152-25.805 17.152-40.397s-5.734-29.184-17.152-40.294c0 0-209.101-219.597-230.502-240.384-21.402-20.89-59.904-22.323-82.688 0-22.835 22.221-24.627 53.299 0 80.589l191.846 200.09-191.846 200.09c-24.627 27.29-22.835 58.419 0 80.691 22.784 22.323 61.286 20.941 82.688 0z"/><glyph unicode="" glyph-name="monitor" d="M960 192H640c-56 0 64-192 64-192 0-35.328-28.672-64-64-64H384c-35.328 0-64 28.672-64 64 0 0 121.984 192 64 192H64c-35.328 0-64 28.672-64 64v640c0 35.328 28.672 64 64 64h896c35.328 0 64-28.672 64-64V256c0-35.328-28.672-64-64-64zm-448 32c35.328 0 64 28.672 64 64s-28.672 64-64 64-64-28.672-64-64 28.672-64 64-64zm448 608c0 35.328-28.672 64-64 64H128c-35.328 0-64-28.672-64-64V448c0-35.328 28.672-64 64-64h768c35.328 0 64 28.672 64 64v384z"/><glyph unicode="" glyph-name="new-tab" d="M192 891.733v-768h768v768H192zm704-704H256v640h640v-640zm-768-128v672l-64 64v-800h800l-64 64H128zm224 640l160-160-192-192 96-96 192 192 160-160v416z"/><glyph unicode="" glyph-name="alert" d="M1005.854 155.486l-438.286 767a64 64 0 0 1-111.135 0l-438.286-767a64 64 0 0 1 55.567-95.753h876.572a64 64 0 0 1 55.568 95.753zM576 187.733H448v128h128v-128zm0 192H448v256h128v-256z"/></font></defs></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg"><defs><font id="icomoon" horiz-adv-x="1024"><font-face units-per-em="1024" ascent="960" descent="-64"/><glyph horiz-adv-x="512"/><glyph unicode="" glyph-name="circle-plus" d="M512 891.733q95.667 0 182.5-37.167t149.667-100 100-149.667 37.167-182.5-37.167-182.5-100-149.667-149.667-100T512-46.935 329.5-9.768t-149.667 100-100 149.667-37.167 182.5 37.167 182.5 100 149.667 149.667 100T512 891.733zm0-85.333q-78 0-149.167-30.5t-122.5-81.833-81.833-122.5T128 422.4t30.5-149.167 81.833-122.5 122.5-81.833T512 38.4t149.167 30.5 122.5 81.833 81.833 122.5T896 422.4t-30.5 149.167-81.833 122.5-122.5 81.833T512 806.4zm0-170.667q17.667 0 30.167-12.5t12.5-30.167v-128h128q17.667 0 30.167-12.5t12.5-30.167-12.5-30.167-30.167-12.5h-128v-128q0-17.667-12.5-30.167T512 209.065t-30.167 12.5-12.5 30.167v128h-128q-17.667 0-30.167 12.5t-12.5 30.167 12.5 30.167 30.167 12.5h128v128q0 17.667 12.5 30.167t30.167 12.5z"/><glyph unicode="" glyph-name="circle-minus" d="M512 891.733q95.667 0 182.5-37.167t149.667-100 100-149.667 37.167-182.5-37.167-182.5-100-149.667-149.667-100T512-46.935 329.5-9.768t-149.667 100-100 149.667-37.167 182.5 37.167 182.5 100 149.667 149.667 100T512 891.733zm0-85.333q-78 0-149.167-30.5t-122.5-81.833-81.833-122.5T128 422.4t30.5-149.167 81.833-122.5 122.5-81.833T512 38.4t149.167 30.5 122.5 81.833 81.833 122.5T896 422.4t-30.5 149.167-81.833 122.5-122.5 81.833T512 806.4zM341.333 465.067h341.333q17.667 0 30.167-12.5t12.5-30.167-12.5-30.167-30.167-12.5H341.333q-17.667 0-30.167 12.5t-12.5 30.167 12.5 30.167 30.167 12.5z"/><glyph unicode="" glyph-name="locked" d="M234.666 678.399V529.065l-64 .002c-47.146 0-85.334-38.186-85.334-85.334V17.067c0-47.146 38.186-85.334 85.334-85.334h682.666c47.146 0 85.334 38.186 85.334 85.334v426.666c0 47.146-38.186 85.334-85.334 85.334h-64v149.334c0 153.174-124.16 277.334-277.334 277.334-153.172-.002-277.332-124.162-277.332-277.336zm106.668-149.332v149.334c0 94.294 76.374 170.666 170.666 170.666s170.666-76.374 170.666-170.666V529.067H341.334zm85.332-234.668c0 47.146 38.186 85.334 85.334 85.334s85.334-38.186 85.334-85.334c0-30.08-15.574-56.534-39.04-71.68 0 0 8.342-50.346 17.706-109.654 0-17.706-14.294-32-32-32h-64c-17.706 0-32 14.294-32 32l17.706 109.654c-23.466 15.148-39.04 41.6-39.04 71.68z"/><glyph unicode="" glyph-name="info" d="M448 651.733c0 26.4 21.6 48 48 48h32c26.4 0 48-21.6 48-48v-32c0-26.4-21.6-48-48-48h-32c-26.4 0-48 21.6-48 48v32zm192-464H384v64h64v192h-64v64h192v-256h64zm-128 768c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zm0-928c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416z"/><glyph unicode="" glyph-name="question" d="M512-68.267c-282.75 0-512 229.218-512 512 0 282.75 229.25 512 512 512s512-229.25 512-512c0-282.782-229.25-512-512-512zm0 896c-212.062 0-384-171.938-384-384s171.938-384 384-384 384 171.938 384 384-171.938 384-384 384zm0-128c-106.062 0-192-85.968-192-192h128c0 35.344 28.624 64 64 64s64-28.656 64-64-28.624-64-64-64h-32c-17.688 0-32-14.344-32-32v-96h128v11.75c74.376 26.438 128 96.782 128 180.25 0 106.032-85.938 192-192 192zm0-448h-64v-64h128v64z"/><glyph unicode="" glyph-name="lamp" d="M341.334 166.399v-64.214c0-29.866 12.374-56.982 32.214-76.374l62.72-62.72c41.814-41.814 109.654-41.814 151.466 0l62.72 62.72c19.84 19.392 32.214 46.506 32.214 76.374l-.002 42.882H492.8c-24.746 0-44.8 19.2-44.8 42.666s20.032 42.666 44.8 42.666h195.414c29.226 164.48 165.12 232.748 165.12 393.174 0 183.446-152.748 332.16-341.334 332.16s-341.334-148.714-341.334-332.16c0-181.142 170.668-245.142 170.668-457.174zm227.2 597.334c-20.054 3.626-35.2 21.12-35.2 42.026 0 23.446 19.2 43.308 42.666 43.308 33.92 0 75.094-24.106 109.654-58.24 35.2-34.988 61.012-81.728 61.012-112.428 0-23.466-19.2-42.666-42.666-42.666-20.906 0-38.4 15.146-42.048 35.2-10.666 42.88-47.318 82.134-93.418 92.8z"/><glyph unicode="" glyph-name="heart" d="M512 759.403c-21.334 82.986-129.706 132.266-213.334 132.266C133.76 891.669 0 763.669 0 593.003c0-320 304.214-405.334 469.334-597.334 1.472-2.134 3.2-3.862 5.12-5.76 20.886-20.714 54.614-20.714 75.498 0 1.942 1.898 3.2 3.626 4.714 5.76C720 188.095 1024 271.701 1024 593.003c0 170.666-133.76 298.666-298.666 298.666-83.628 0-192-49.28-213.334-132.266zm227.2-59.734c-20.054 3.626-35.2 21.12-35.2 42.026 0 23.466 19.2 43.306 42.666 43.306 33.92 0 75.094-24.106 109.654-58.24 35.2-34.986 61.014-81.706 61.014-112.426 0-23.466-19.2-42.666-42.666-42.666-20.906 0-38.4 15.146-42.048 35.2-10.668 42.88-47.318 82.134-93.42 92.8z"/><glyph unicode="" glyph-name="spinner" d="M512 652.637c-32.964 0-59.686 26.724-59.686 59.686v179.06c0 32.964 26.722 59.686 59.686 59.686 32.962 0 59.688-26.722 59.688-59.686v-179.06c0-32.964-26.726-59.686-59.688-59.686zm0-693.86c-20.602 0-37.304 16.702-37.304 37.304v179.06c0 20.602 16.702 37.304 37.304 37.304 20.604 0 37.304-16.704 37.304-37.304V-3.919c0-20.602-16.7-37.304-37.304-37.304zM377.756 620.373c-19.34 0-38.146 10.034-48.512 27.988l-89.53 155.07c-15.452 26.764-6.282 60.986 20.482 76.438 26.762 15.45 60.986 6.284 76.438-20.482l89.53-155.072c15.452-26.764 6.282-60.986-20.482-76.438-8.81-5.084-18.432-7.504-27.926-7.504zm358.1-597.896c-11.602 0-22.886 6.022-29.108 16.792l-89.53 155.07c-9.27 16.056-3.77 36.592 12.29 45.864 16.056 9.264 36.59 3.77 45.864-12.292l89.532-155.068c9.27-16.058 3.768-36.592-12.292-45.864a33.462 33.462 0 00-16.756-4.502zM279.344 525.793c-8.86 0-17.838 2.256-26.064 7.006l-155.072 89.53c-24.978 14.422-33.538 46.362-19.116 71.342 14.42 24.978 46.364 33.538 71.342 19.116l155.07-89.53c24.98-14.422 33.538-46.362 19.116-71.34-9.668-16.756-27.226-26.124-45.276-26.124zm620.304-335.734a29.694 29.694 0 00-14.894 4.004l-155.068 89.53c-14.274 8.24-19.164 26.494-10.924 40.768 8.242 14.276 26.496 19.166 40.766 10.924l155.07-89.532c14.274-8.24 19.164-26.492 10.924-40.766-5.53-9.574-15.562-14.928-25.874-14.928zM243.41 395.237H64.35c-26.784 0-48.496 21.712-48.496 48.496s21.712 48.496 48.496 48.496h179.06c26.784 0 48.496-21.712 48.496-48.496s-21.712-48.496-48.496-48.496zm716.24 18.652c-.002 0 0 0 0 0H780.59c-16.482.002-29.844 13.364-29.844 29.844s13.364 29.844 29.844 29.844c.002 0 0 0 0 0h179.06c16.482 0 29.844-13.362 29.844-29.844 0-16.48-13.364-29.844-29.844-29.844zM124.366 175.135c-15.472 0-30.518 8.028-38.81 22.39-12.362 21.41-5.026 48.79 16.384 61.148l155.072 89.532c21.41 12.368 48.79 5.028 61.15-16.384 12.362-21.412 5.026-48.79-16.384-61.15l-155.072-89.53a44.567 44.567 0 00-22.34-6.006zm620.266 373.046c-10.314 0-20.346 5.352-25.874 14.926-8.24 14.274-3.35 32.526 10.924 40.768l155.07 89.528c14.272 8.236 32.526 3.352 40.768-10.922 8.24-14.274 3.35-32.526-10.924-40.768l-155.07-89.528a29.7 29.7 0 00-14.894-4.004zM288.136 15.017a40.863 40.863 0 00-20.48 5.504c-19.626 11.332-26.35 36.428-15.02 56.054l89.53 155.07c11.33 19.628 36.426 26.352 56.054 15.022 19.626-11.332 26.35-36.43 15.02-56.054L323.71 35.541c-7.598-13.166-21.392-20.524-35.574-20.524zm358.13 631.474a29.718 29.718 0 00-14.894 4.002c-14.274 8.242-19.164 26.494-10.924 40.766l89.534 155.07c8.24 14.274 26.492 19.166 40.766 10.922 14.274-8.242 19.164-26.494 10.924-40.766l-89.532-155.07c-5.53-9.57-15.56-14.924-25.874-14.924z"/><glyph unicode="" glyph-name="help" d="M505.754 927.522C245.607 924.04 37.53 710.332 41.012 450.184 44.494 190.19 258.202-17.938 518.35-14.456c260.045 3.482 468.173 217.19 464.64 477.338-3.43 260.045-217.139 468.122-477.235 464.64zm-1.383-757.709h-2.611c-40.038 1.178-68.301 30.72-67.174 70.195 1.126 38.758 30.054 66.97 68.813 66.97l2.355-.051c41.165-1.229 69.12-30.464 67.891-71.066C572.519 197 544 169.813 504.371 169.813zM672.87 504.251c-9.472-13.363-30.157-30.003-56.269-50.33l-28.774-19.866c-15.77-12.288-25.293-23.808-28.826-35.123-2.867-9.011-4.198-11.315-4.454-29.491l-.051-4.659H444.774l.307 9.318c1.331 38.195 2.304 60.621 18.125 79.206 24.832 29.133 79.616 64.41 81.92 65.894 7.834 5.939 14.438 12.646 19.405 19.814 11.52 15.872 16.589 28.416 16.589 40.653 0 17.05-5.069 32.819-15.053 46.848-9.626 13.568-27.904 20.429-54.323 20.429-26.214 0-44.134-8.346-54.886-25.395-11.11-17.562-16.64-35.942-16.64-54.784v-4.71H327.066l.205 4.915c2.918 69.325 27.648 119.194 73.523 148.326 28.774 18.586 64.614 27.955 106.394 27.955 54.733 0 101.018-13.312 137.37-39.526 36.864-26.573 55.552-66.406 55.552-118.323 0-29.082-9.165-56.371-27.238-81.152z"/><glyph unicode="" glyph-name="spinner2" d="M512 955.733c-66.862-1.278-133.516-15.784-194.462-42.576-61-26.704-116.258-65.462-161.92-113.042-45.696-47.552-81.82-103.944-105.652-164.984C26.042 574.127 14.614 508.535 16 443.733c1.282-64.81 15.374-129.332 41.356-188.334 25.896-59.048 63.47-112.542 109.576-156.734C213.014 54.441 267.64 19.505 326.73-3.521 385.792-26.635 449.25-37.649 512-36.267c62.76 1.286 125.148 14.964 182.206 40.134 57.1 25.088 108.828 61.476 151.548 106.11 42.754 44.61 76.504 97.472 98.72 154.614 22.304 57.118 32.902 118.446 31.526 179.142-1.29 60.708-14.554 120.962-38.914 176.076-24.282 55.15-59.48 105.116-102.644 146.366-43.14 41.282-94.236 73.844-149.43 95.254-33.458 13.034-68.4 21.88-103.798 26.542.072 1.246.12 2.498.12 3.762 0 35.346-28.652 64-64 64-1.796 0-3.572-.094-5.332-.238v.238zm169.948-101.694c53.202-23.472 101.4-57.484 141.18-99.178 39.81-41.67 71.186-91 91.79-144.244 20.678-53.228 30.452-110.29 29.082-166.884-1.298-56.604-13.736-112.596-36.474-163.82-22.666-51.25-55.49-97.684-95.712-135.994-40.198-38.338-87.764-68.528-139.058-88.322C621.472 35.727 566.542 26.369 512 27.733c-54.552 1.302-108.412 13.328-157.69 35.254-49.3 21.858-93.97 53.498-130.81 92.246-36.868 38.73-65.87 84.53-84.856 133.874-19.06 49.338-28.006 102.136-26.644 154.626 1.306 52.5 12.918 104.228 34.034 151.562 21.05 47.352 51.502 90.256 88.782 125.624 37.258 35.396 81.294 63.21 128.688 81.39 47.392 18.248 98.058 26.782 148.496 25.424v.238a65.305 65.305 0 015.332-.238c33.012 0 60.174 24.992 63.624 57.086 34.822-6.224 68.818-16.53 100.992-30.78z"/><glyph unicode="" glyph-name="give-icon-full-circle-white" horiz-adv-x="1023" d="M939.969 418.328c-12.377-62.534-78.819-313.975-341.985-313.975-313.975 0-457.282 340.031-457.282 340.031 104.875 63.837 282.707 338.728 450.768 338.728s227.338-207.796 227.338-207.796l-14.331-22.799s-55.369 69.7-182.392 69.7-214.31-153.079-267.725-200.631c0 0 133.537-209.099 305.506-209.099 92.499 0 192.163 80.122 248.183 200.631-97.71-13.679-226.036-26.056-316.58-14.331 0 0-4.56 3.908-6.514 8.468-2.606 5.863-3.257 11.725-3.257 11.725 179.786 0 334.168 42.341 439.043 81.425-28.662 256.651-245.578 455.328-508.743 455.328-282.707 0-512-229.293-512-512s229.293-512 512-512c278.799 0 505.486 222.779 512 500.275-19.542-3.257-48.855-8.468-84.031-13.679z"/><glyph unicode="" glyph-name="wallet" d="M819.2 665.6h-640v25.6l563.2 45.056V691.2h76.8V768c0 56.32-45.619 95.846-101.325 87.91l-514.099-73.421c-55.757-7.987-101.376-60.57-101.376-116.89v-512c0-56.525 45.824-102.4 102.4-102.4h614.4c56.525 0 102.4 45.875 102.4 102.4v409.6c0 56.525-45.875 102.4-102.4 102.4zm-76.8-358.707c-42.394 0-76.8 34.406-76.8 76.8s34.406 76.8 76.8 76.8 76.8-34.406 76.8-76.8-34.406-76.8-76.8-76.8z"/><glyph unicode="" glyph-name="check-square-o" horiz-adv-x="950" d="M804.571 419.428V237.714q0-68-48.286-116.286T639.999 73.142H164.57q-68 0-116.286 48.286T-.002 237.714v475.429q0 68 48.286 116.286t116.286 48.286h475.429q36 0 66.857-14.286 8.571-4 10.286-13.143 1.714-9.714-5.143-16.571l-28-28q-5.714-5.714-13.143-5.714-1.714 0-5.143 1.143-13.143 3.429-25.714 3.429H164.57q-37.714 0-64.571-26.857t-26.857-64.571V237.716q0-37.714 26.857-64.571t64.571-26.857h475.429q37.714 0 64.571 26.857t26.857 64.571v145.143q0 7.429 5.143 12.571l36.571 36.571q5.714 5.714 13.143 5.714 3.429 0 6.857-1.714 11.429-4.571 11.429-16.571zm132 279.429L471.428 233.714Q457.714 220 438.857 220t-32.571 13.714L160.572 479.428q-13.714 13.714-13.714 32.571t13.714 32.571l62.857 62.857q13.714 13.714 32.571 13.714t32.571-13.714l150.286-150.286 369.714 369.714q13.714 13.714 32.571 13.714t32.571-13.714l62.857-62.857q13.714-13.714 13.714-32.571t-13.714-32.571z"/><glyph unicode="" glyph-name="1-66" d="M590.24 384.773l-74.496-68.304a930.276 930.276 0 01-7.216-6.576c-9.568-52.832-55.904-93.008-111.44-93.008-62.432 0-113.248 50.8-113.248 113.248 0 57.552 43.152 105.184 98.768 112.304 1.072 1.2 2.128 2.352 3.152 3.504l29.584 33.2.688-.224c13.04 14.224 28.032 30.576 39.632 43.232-18.528 5.648-38.208 8.704-58.56 8.704-110.688 0-200.72-90.032-200.72-200.72s90.032-200.72 200.72-200.72 200.72 90.032 200.72 200.72c-.016 18.944-2.656 37.264-7.584 54.64zm146.704 134.4c-22.416-20.4-44.768-40.88-66.848-61.152 18.272-38.848 28.48-82.208 28.48-127.888 0-166.24-135.248-301.488-301.488-301.488S95.6 163.909 95.6 330.133s135.248 301.488 301.488 301.488c47.072 0 91.664-10.848 131.392-30.16 20.192 22.032 40.624 44.32 60.944 66.656-56.752 32.432-122.416 50.976-192.336 50.976-214.464 0-388.96-174.496-388.96-388.96s174.496-388.96 388.96-388.96 388.96 174.496 388.96 388.96c.016 68.576-17.824 133.056-49.104 189.04zm276.752 242.88c-1.712 4.496-4.128 8.32-7.184 11.376-8.208 8.208-19.008 9.344-29.44 9.344-15.12 0-30.224.096-45.344.208-23.36.16-47.52.32-71.312.08-1.6-.016-2.64.08-3.264.176l-1.28 3.056-3.056 1.28c-.096.64-.192 1.664-.176 3.264.24 23.792.064 47.952-.08 71.328-.096 15.104-.208 30.224-.208 45.344 0 10.432-1.136 21.232-9.344 29.44-3.056 3.056-6.88 5.472-11.392 7.184-19.376 7.328-32.304-5.76-38.528-12.048-10.56-10.736-21.184-21.408-31.792-32.112-24.256-24.416-49.328-49.664-73.488-75.12-7.856-8.32-13.376-21.936-13.728-33.888-.544-18.48-.4-37.168-.256-55.264.128-16.464.272-33.472-.128-50.112-.128-5.408-2.88-12.448-6.416-16.368-41.28-45.776-83.696-91.952-124.72-136.592l-33.776-36.8c-18.16-19.824-61.008-66.56-75.44-82.256l-.128.048-4.944-5.552a1774.5 1774.5 0 00-10.48-11.584c-11.52-12.64-24.592-26.96-36.736-42.512-8.752-11.232-4.048-27.904 5.568-37.52a30.69 30.69 0 011.056-1.008c9.136-8.272 24.256-13.024 35.872-3.952 15.872 12.416 30.464 25.744 43.328 37.52 3.776 3.456 7.376 6.752 10.848 9.856l124.48 114.128c44.656 41.024 90.832 83.44 136.592 124.72 3.92 3.536 10.96 6.288 16.384 6.416 16.624.4 33.648.256 50.112.128 18.08-.144 36.784-.288 55.264.256 11.952.352 25.568 5.872 33.904 13.744 25.44 24.144 50.688 49.216 75.104 73.472 10.688 10.608 21.376 21.232 32.112 31.808 6.272 6.192 19.344 19.104 12.016 38.512z"/><glyph unicode="" glyph-name="write" d="M910.284 341.333c-31.445 0-56.889-25.472-56.889-56.889V142.222c0-15.708-12.75-28.444-28.444-28.444H199.063c-15.723 0-28.444 12.736-28.444 28.444V768c0 15.708 12.722 28.444 28.444 28.444h142.222c31.445 0 56.917 25.472 56.917 56.889s-25.474 56.889-56.917 56.889H113.729c-31.445 0-56.917-25.472-56.917-56.889V56.889C56.812 25.472 82.284 0 113.729 0h796.555c31.445 0 56.889 25.472 56.889 56.889v227.556c0 31.417-25.444 56.889-56.889 56.889zM749.173 773.541l81.305-81.319L492.09 341.333h-93.888v93.876l350.971 338.332zm.722 136.681c-14.556 0-29.06-5.541-40.171-16.626L284.396 483.555v-256h256.055l410.112 425.25c22.167 22.167 22.167 58.098 0 80.263L790.007 893.596c-11.056 11.084-25.611 16.626-40.112 16.626z"/><glyph unicode="" glyph-name="chevron-right" d="M469.146 741.581c21.402-20.89 230.502-240.384 230.502-240.384 11.418-11.213 17.152-25.805 17.152-40.397s-5.734-29.184-17.152-40.294c0 0-209.101-219.597-230.502-240.384-21.402-20.89-59.904-22.323-82.688 0-22.835 22.221-24.627 53.299 0 80.589l191.846 200.09-191.846 200.09c-24.627 27.29-22.835 58.419 0 80.691 22.784 22.323 61.286 20.941 82.688 0z"/><glyph unicode="" glyph-name="monitor" d="M960 192H640c-56 0 64-192 64-192 0-35.328-28.672-64-64-64H384c-35.328 0-64 28.672-64 64 0 0 121.984 192 64 192H64c-35.328 0-64 28.672-64 64v640c0 35.328 28.672 64 64 64h896c35.328 0 64-28.672 64-64V256c0-35.328-28.672-64-64-64zm-448 32c35.328 0 64 28.672 64 64s-28.672 64-64 64-64-28.672-64-64 28.672-64 64-64zm448 608c0 35.328-28.672 64-64 64H128c-35.328 0-64-28.672-64-64V448c0-35.328 28.672-64 64-64h768c35.328 0 64 28.672 64 64v384z"/><glyph unicode="" glyph-name="new-tab" d="M192 891.733v-768h768v768H192zm704-704H256v640h640v-640zm-768-128v672l-64 64v-800h800l-64 64H128zm224 640l160-160-192-192 96-96 192 192 160-160v416z"/><glyph unicode="" glyph-name="alert" d="M1005.854 155.486l-438.286 767a64 64 0 01-111.135 0l-438.286-767a64 64 0 0155.567-95.753h876.572a64 64 0 0155.568 95.753zM576 187.733H448v128h128v-128zm0 192H448v256h128v-256z"/></font></defs></svg>
assets/dist/images/maestro.svg CHANGED
@@ -1 +1 @@
1
- <svg viewBox="0 0 750 471" xmlns="http://www.w3.org/2000/svg"><g fill="none"><rect width="750" height="471" rx="40" fill="#000"/><path d="M675 235.51c0 99.133-80.35 179.5-179.48 179.5-99.121 0-179.48-80.363-179.48-179.5C316.04 136.368 396.398 56 495.52 56 594.653 56 675 136.367 675 235.51" fill="#D9222A"/><path d="M356.87 349.49a177.908 177.908 0 0 1-13.675-19.008h63.612a178.69 178.69 0 0 0 10.342-19.013h-84.292a178.418 178.418 0 0 1-7.596-19h99.475c5.988-17.904 9.23-37.05 9.23-56.962 0-13.046-1.392-25.762-4.03-38.013h-109.86a178.214 178.214 0 0 1 5.208-19.008h99.442a181.442 181.442 0 0 0-7.591-19.004H332.88a180.85 180.85 0 0 1 10.338-19.008h63.57a181.433 181.433 0 0 0-13.67-18.992h-36.225a181.088 181.088 0 0 1 18.112-19c-31.854-28.883-74.138-46.483-120.52-46.483-99.13 0-179.49 80.367-179.49 179.51 0 99.133 80.358 179.5 179.49 179.5 46.388 0 88.667-17.596 120.52-46.475a180.337 180.337 0 0 0 18.133-19.038h-36.267" fill="#0097D0"/><path d="M651.08 335.54c0-3.2 2.596-5.796 5.8-5.796 3.2 0 5.792 2.596 5.792 5.796 0 3.204-2.592 5.8-5.792 5.8a5.799 5.799 0 0 1-5.8-5.8zm5.8 4.408a4.401 4.401 0 0 0 4.404-4.408 4.396 4.396 0 0 0-4.404-4.396 4.4 4.4 0 0 0-4.408 4.396 4.405 4.405 0 0 0 4.408 4.408zm-.787-1.862h-1.184v-5.092h2.15c.446 0 .904.004 1.3.258.417.284.646.775.646 1.271 0 .584-.337 1.113-.88 1.317l.934 2.246h-1.317l-.775-2.009h-.875v2.009zm0-2.88h.658c.246 0 .504.017.725-.1a.712.712 0 0 0 .3-.591.652.652 0 0 0-.288-.513c-.212-.125-.541-.1-.762-.1h-.634v1.305zM372.45 284.01c-7.67 2.033-15.088 3.025-22.929 3.008-25.017-.025-38.046-11.417-38.046-33.2 0-25.458 16.588-44.183 39.1-44.183 18.417 0 30.175 10.5 30.175 26.946 0 5.459-.796 10.771-2.746 18.296h-44.488c-1.583 10.633 6.188 15.304 19.412 15.304 7.925 0 15.092-1.425 23.025-4.612l-3.504 18.442zm-11.962-44.15c0-1.608 2.475-13.033-10.4-13.283-7.108 0-12.208 4.725-14.271 13.283h24.671zm27.032-5c0 9.404 5.296 15.9 17.329 20.738 9.2 3.77 10.65 4.858 10.65 8.22 0 4.663-4.067 6.805-13.092 6.747-6.78-.05-12.962-.871-20.262-2.896l-3.23 17.154c6.488 1.504 15.589 2 23.65 2.187 24.026 0 35.118-7.866 35.118-24.867 0-10.217-4.625-16.233-16.033-20.712-9.538-3.808-10.658-4.637-10.658-8.083 0-4.05 3.779-6.1 11.15-6.1 4.462 0 10.579.412 16.379 1.108l3.258-17.242c-5.912-.825-14.883-1.483-20.075-1.483-25.45 0-34.258 11.458-34.183 25.229m-88.241 50.93h-18.662l.446-7.82c-5.692 6.17-13.271 9.04-23.558 9.04-12.175 0-20.517-8.324-20.517-20.295 0-18.196 14.5-28.692 39.429-28.692 2.562 0 5.82.192 9.167.562.691-2.433.879-3.479.879-4.808 0-4.98-3.921-6.812-14.412-6.812-10.342.041-17.321 1.57-23.796 3.312l3.187-16.7c11.196-2.846 18.53-3.942 26.825-3.942 19.304 0 29.5 7.567 29.5 21.796.167 3.796-1.158 11.412-1.82 14.746-.759 4.855-6.109 32.975-6.667 39.612zm-16.379-33.192c-2.367-.242-3.396-.313-5.013-.313-12.729 0-19.183 3.788-19.183 11.268 0 4.691 3.15 7.633 8.059 7.633 9.146 0 15.75-7.65 16.138-18.588zM477 284.61c-6.125 1.68-10.896 2.408-16.058 2.408-11.433 0-17.675-5.841-17.675-16.25-.358-2.858 2.433-16.058 3.067-19.738.633-3.691 10.538-57.492 10.538-57.492h22.212l-3.363 17.8h11.392l-3.096 18.171h-11.442s-6.279 31.53-6.279 33.933c0 3.825 2.317 5.488 7.634 5.488 2.545 0 4.508-.238 6.029-.692L477 284.61m99.25-74.98c-16.279 0-29 6.7-36.388 17.892l6.412-16.596c-11.817-4.338-19.433 1.85-26.325 10.65 0 0-1.154 1.462-2.3 2.8v-13.05h-20.858c-2.825 23.029-7.82 46.379-11.729 69.446l-.941 5.02h22.438c2.125-11.707 3.875-21.211 5.617-28.787 4.766-20.788 12.788-27.142 24.829-24.333-2.78 5.979-4.305 12.892-4.305 20.554 0 18.579 10.092 33.788 35.15 33.788 25.288 0 43.596-13.508 43.596-44.308 0-18.58-12.2-33.075-35.196-33.075zm-6.53 59.317c-7.924.125-12.728-6.525-12.728-16.471 0-11.792 7.012-25.112 18.275-25.112 9.087 0 12.2 7.204 12.2 14.879 0 16.779-6.875 26.704-17.746 26.704zM226.53 285.79h-22.34l13.28-69.95-30.57 69.95h-20.37l-3.73-69.55-13.32 69.55h-20.27l17.27-90.99h34.91l2.91 50.72 22.12-50.72h37.72l-17.61 90.99" fill="#000"/><path d="M613.15 274.39a5.8 5.8 0 0 1 5.796-5.796c3.204 0 5.796 2.6 5.796 5.796a5.796 5.796 0 1 1-11.592 0zm5.796 4.412a4.414 4.414 0 0 0 4.408-4.412 4.407 4.407 0 0 0-4.408-4.404 4.406 4.406 0 0 0-4.409 4.404 4.414 4.414 0 0 0 4.409 4.412zm-.784-1.866h-1.187v-5.083h2.15c.45 0 .908 0 1.304.25.409.279.646.766.646 1.27 0 .58-.338 1.117-.883 1.317l.933 2.246h-1.317l-.77-2.008h-.876v2.008zm0-2.888h.659c.241 0 .504.017.725-.096a.702.702 0 0 0 .296-.587.635.635 0 0 0-.284-.513c-.212-.129-.541-.095-.762-.095h-.634v1.291zM378.05 278.4c-7.667 2.033-15.088 3.03-22.925 3.013-25.017-.026-38.046-11.422-38.046-33.209 0-25.45 16.579-44.179 39.096-44.179 18.421 0 30.175 10.496 30.175 26.942 0 5.467-.8 10.771-2.742 18.3H339.12c-1.583 10.63 6.18 15.308 19.408 15.308 7.925 0 15.088-1.425 23.03-4.616l-3.509 18.442zm-11.962-44.15c0-1.604 2.47-13.033-10.4-13.279-7.108 0-12.204 4.73-14.271 13.279h24.671zm27.042-5c0 9.408 5.287 15.9 17.325 20.746 9.204 3.767 10.65 4.858 10.65 8.213 0 4.666-4.067 6.808-13.088 6.75-6.783-.046-12.967-.871-20.262-2.896l-3.238 17.146c6.492 1.516 15.596 2.012 23.654 2.2 24.025 0 35.121-7.871 35.121-24.871 0-10.217-4.629-16.238-16.042-20.712-9.537-3.809-10.654-4.638-10.654-8.084 0-4.05 3.784-6.1 11.146-6.1 4.471 0 10.583.417 16.388 1.113l3.25-17.246c-5.912-.825-14.879-1.483-20.067-1.483-25.458 0-34.262 11.454-34.183 25.225m-88.24 50.929h-18.667l.45-7.82c-5.696 6.157-13.275 9.032-23.558 9.032-12.175 0-20.521-8.325-20.521-20.288 0-18.204 14.496-28.696 39.429-28.696 2.562 0 5.817.192 9.17.563.692-2.433.876-3.475.876-4.808 0-4.984-3.917-6.813-14.408-6.813-10.342.042-17.321 1.575-23.796 3.313l3.183-16.696c11.2-2.85 18.53-3.946 26.83-3.946 19.303 0 29.495 7.567 29.495 21.792.167 3.8-1.158 11.412-1.817 14.754-.762 4.85-6.112 32.97-6.666 39.612zm-16.388-33.196c-2.358-.246-3.392-.313-5.013-.313-12.72 0-19.178 3.788-19.178 11.268 0 4.695 3.154 7.633 8.054 7.633 9.154 0 15.758-7.654 16.138-18.588zM482.61 279c-6.12 1.675-10.896 2.408-16.054 2.408-11.433 0-17.671-5.846-17.671-16.254-.362-2.854 2.433-16.058 3.063-19.738.633-3.691 10.538-57.492 10.538-57.492h22.208l-3.355 17.8h11.392l-3.095 18.171h-11.442s-6.284 31.53-6.284 33.933c0 3.825 2.321 5.48 7.634 5.48 2.541 0 4.508-.23 6.029-.692l-2.963 16.383m110.47-42.359c0 16.775-6.88 26.708-17.754 26.708-7.92.112-12.725-6.525-12.725-16.475 0-11.792 7.008-25.112 18.271-25.112 9.092 0 12.208 7.212 12.208 14.879zm23.979.467c0-18.58-12.208-33.08-35.196-33.08-26.45 0-43.55 17.626-43.55 43.597 0 18.579 10.083 33.792 35.15 33.792 25.288 0 43.596-13.512 43.596-44.308zM502.4 205.72c-2.82 23.029-7.817 46.375-11.721 69.45l-.946 5.02h22.433c8.088-44.557 10.8-57.253 27.742-52.782l8.15-21.088c-11.817-4.338-19.425 1.854-26.308 10.658.621-3.963 1.792-7.784 1.508-11.258H502.4m-270.26 74.47H209.8l13.27-69.96-30.57 69.96h-20.36l-3.73-69.55-13.32 69.55h-20.27l17.26-91H187l1.85 56.33 24.57-56.33h36.33l-17.61 91" fill="#fff"/></g></svg>
1
+ <svg viewBox="0 0 750 471" xmlns="http://www.w3.org/2000/svg"><g fill="none"><rect width="750" height="471" rx="40" fill="#000"/><path d="M675 235.51c0 99.133-80.35 179.5-179.48 179.5-99.121 0-179.48-80.363-179.48-179.5C316.04 136.368 396.398 56 495.52 56 594.653 56 675 136.367 675 235.51" fill="#D9222A"/><path d="M356.87 349.49a177.908 177.908 0 01-13.675-19.008h63.612a178.69 178.69 0 0010.342-19.013h-84.292a178.418 178.418 0 01-7.596-19h99.475c5.988-17.904 9.23-37.05 9.23-56.962 0-13.046-1.392-25.762-4.03-38.013h-109.86a178.214 178.214 0 015.208-19.008h99.442a181.442 181.442 0 00-7.591-19.004H332.88a180.85 180.85 0 0110.338-19.008h63.57a181.433 181.433 0 00-13.67-18.992h-36.225a181.088 181.088 0 0118.112-19c-31.854-28.883-74.138-46.483-120.52-46.483-99.13 0-179.49 80.367-179.49 179.51 0 99.133 80.358 179.5 179.49 179.5 46.388 0 88.667-17.596 120.52-46.475a180.337 180.337 0 0018.133-19.038h-36.267" fill="#0097D0"/><path d="M651.08 335.54c0-3.2 2.596-5.796 5.8-5.796 3.2 0 5.792 2.596 5.792 5.796 0 3.204-2.592 5.8-5.792 5.8a5.799 5.799 0 01-5.8-5.8zm5.8 4.408a4.401 4.401 0 004.404-4.408 4.396 4.396 0 00-4.404-4.396 4.4 4.4 0 00-4.408 4.396 4.405 4.405 0 004.408 4.408zm-.787-1.862h-1.184v-5.092h2.15c.446 0 .904.004 1.3.258.417.284.646.775.646 1.271 0 .584-.337 1.113-.88 1.317l.934 2.246h-1.317l-.775-2.009h-.875v2.009zm0-2.88h.658c.246 0 .504.017.725-.1a.712.712 0 00.3-.591.652.652 0 00-.288-.513c-.212-.125-.541-.1-.762-.1h-.634v1.305zM372.45 284.01c-7.67 2.033-15.088 3.025-22.929 3.008-25.017-.025-38.046-11.417-38.046-33.2 0-25.458 16.588-44.183 39.1-44.183 18.417 0 30.175 10.5 30.175 26.946 0 5.459-.796 10.771-2.746 18.296h-44.488c-1.583 10.633 6.188 15.304 19.412 15.304 7.925 0 15.092-1.425 23.025-4.612l-3.504 18.442zm-11.962-44.15c0-1.608 2.475-13.033-10.4-13.283-7.108 0-12.208 4.725-14.271 13.283h24.671zm27.032-5c0 9.404 5.296 15.9 17.329 20.738 9.2 3.77 10.65 4.858 10.65 8.22 0 4.663-4.067 6.805-13.092 6.747-6.78-.05-12.962-.871-20.262-2.896l-3.23 17.154c6.488 1.504 15.589 2 23.65 2.187 24.026 0 35.118-7.866 35.118-24.867 0-10.217-4.625-16.233-16.033-20.712-9.538-3.808-10.658-4.637-10.658-8.083 0-4.05 3.779-6.1 11.15-6.1 4.462 0 10.579.412 16.379 1.108l3.258-17.242c-5.912-.825-14.883-1.483-20.075-1.483-25.45 0-34.258 11.458-34.183 25.229m-88.241 50.93h-18.662l.446-7.82c-5.692 6.17-13.271 9.04-23.558 9.04-12.175 0-20.517-8.324-20.517-20.295 0-18.196 14.5-28.692 39.429-28.692 2.562 0 5.82.192 9.167.562.691-2.433.879-3.479.879-4.808 0-4.98-3.921-6.812-14.412-6.812-10.342.041-17.321 1.57-23.796 3.312l3.187-16.7c11.196-2.846 18.53-3.942 26.825-3.942 19.304 0 29.5 7.567 29.5 21.796.167 3.796-1.158 11.412-1.82 14.746-.759 4.855-6.109 32.975-6.667 39.612zm-16.379-33.192c-2.367-.242-3.396-.313-5.013-.313-12.729 0-19.183 3.788-19.183 11.268 0 4.691 3.15 7.633 8.059 7.633 9.146 0 15.75-7.65 16.138-18.588zM477 284.61c-6.125 1.68-10.896 2.408-16.058 2.408-11.433 0-17.675-5.841-17.675-16.25-.358-2.858 2.433-16.058 3.067-19.738.633-3.691 10.538-57.492 10.538-57.492h22.212l-3.363 17.8h11.392l-3.096 18.171h-11.442s-6.279 31.53-6.279 33.933c0 3.825 2.317 5.488 7.634 5.488 2.545 0 4.508-.238 6.029-.692L477 284.61m99.25-74.98c-16.279 0-29 6.7-36.388 17.892l6.412-16.596c-11.817-4.338-19.433 1.85-26.325 10.65 0 0-1.154 1.462-2.3 2.8v-13.05h-20.858c-2.825 23.029-7.82 46.379-11.729 69.446l-.941 5.02h22.438c2.125-11.707 3.875-21.211 5.617-28.787 4.766-20.788 12.788-27.142 24.829-24.333-2.78 5.979-4.305 12.892-4.305 20.554 0 18.579 10.092 33.788 35.15 33.788 25.288 0 43.596-13.508 43.596-44.308 0-18.58-12.2-33.075-35.196-33.075zm-6.53 59.317c-7.924.125-12.728-6.525-12.728-16.471 0-11.792 7.012-25.112 18.275-25.112 9.087 0 12.2 7.204 12.2 14.879 0 16.779-6.875 26.704-17.746 26.704zM226.53 285.79h-22.34l13.28-69.95-30.57 69.95h-20.37l-3.73-69.55-13.32 69.55h-20.27l17.27-90.99h34.91l2.91 50.72 22.12-50.72h37.72l-17.61 90.99" fill="#000"/><path d="M613.15 274.39a5.8 5.8 0 015.796-5.796c3.204 0 5.796 2.6 5.796 5.796a5.796 5.796 0 11-11.592 0zm5.796 4.412a4.414 4.414 0 004.408-4.412 4.407 4.407 0 00-4.408-4.404 4.406 4.406 0 00-4.409 4.404 4.414 4.414 0 004.409 4.412zm-.784-1.866h-1.187v-5.083h2.15c.45 0 .908 0 1.304.25.409.279.646.766.646 1.27 0 .58-.338 1.117-.883 1.317l.933 2.246h-1.317l-.77-2.008h-.876v2.008zm0-2.888h.659c.241 0 .504.017.725-.096a.702.702 0 00.296-.587.635.635 0 00-.284-.513c-.212-.129-.541-.095-.762-.095h-.634v1.291zM378.05 278.4c-7.667 2.033-15.088 3.03-22.925 3.013-25.017-.026-38.046-11.422-38.046-33.209 0-25.45 16.579-44.179 39.096-44.179 18.421 0 30.175 10.496 30.175 26.942 0 5.467-.8 10.771-2.742 18.3H339.12c-1.583 10.63 6.18 15.308 19.408 15.308 7.925 0 15.088-1.425 23.03-4.616l-3.509 18.442zm-11.962-44.15c0-1.604 2.47-13.033-10.4-13.279-7.108 0-12.204 4.73-14.271 13.279h24.671zm27.042-5c0 9.408 5.287 15.9 17.325 20.746 9.204 3.767 10.65 4.858 10.65 8.213 0 4.666-4.067 6.808-13.088 6.75-6.783-.046-12.967-.871-20.262-2.896l-3.238 17.146c6.492 1.516 15.596 2.012 23.654 2.2 24.025 0 35.121-7.871 35.121-24.871 0-10.217-4.629-16.238-16.042-20.712-9.537-3.809-10.654-4.638-10.654-8.084 0-4.05 3.784-6.1 11.146-6.1 4.471 0 10.583.417 16.388 1.113l3.25-17.246c-5.912-.825-14.879-1.483-20.067-1.483-25.458 0-34.262 11.454-34.183 25.225m-88.24 50.929h-18.667l.45-7.82c-5.696 6.157-13.275 9.032-23.558 9.032-12.175 0-20.521-8.325-20.521-20.288 0-18.204 14.496-28.696 39.429-28.696 2.562 0 5.817.192 9.17.563.692-2.433.876-3.475.876-4.808 0-4.984-3.917-6.813-14.408-6.813-10.342.042-17.321 1.575-23.796 3.313l3.183-16.696c11.2-2.85 18.53-3.946 26.83-3.946 19.303 0 29.495 7.567 29.495 21.792.167 3.8-1.158 11.412-1.817 14.754-.762 4.85-6.112 32.97-6.666 39.612zm-16.388-33.196c-2.358-.246-3.392-.313-5.013-.313-12.72 0-19.178 3.788-19.178 11.268 0 4.695 3.154 7.633 8.054 7.633 9.154 0 15.758-7.654 16.138-18.588zM482.61 279c-6.12 1.675-10.896 2.408-16.054 2.408-11.433 0-17.671-5.846-17.671-16.254-.362-2.854 2.433-16.058 3.063-19.738.633-3.691 10.538-57.492 10.538-57.492h22.208l-3.355 17.8h11.392l-3.095 18.171h-11.442s-6.284 31.53-6.284 33.933c0 3.825 2.321 5.48 7.634 5.48 2.541 0 4.508-.23 6.029-.692l-2.963 16.383m110.47-42.359c0 16.775-6.88 26.708-17.754 26.708-7.92.112-12.725-6.525-12.725-16.475 0-11.792 7.008-25.112 18.271-25.112 9.092 0 12.208 7.212 12.208 14.879zm23.979.467c0-18.58-12.208-33.08-35.196-33.08-26.45 0-43.55 17.626-43.55 43.597 0 18.579 10.083 33.792 35.15 33.792 25.288 0 43.596-13.512 43.596-44.308zM502.4 205.72c-2.82 23.029-7.817 46.375-11.721 69.45l-.946 5.02h22.433c8.088-44.557 10.8-57.253 27.742-52.782l8.15-21.088c-11.817-4.338-19.425 1.854-26.308 10.658.621-3.963 1.792-7.784 1.508-11.258H502.4m-270.26 74.47H209.8l13.27-69.96-30.57 69.96h-20.36l-3.73-69.55-13.32 69.55h-20.27l17.26-91H187l1.85 56.33 24.57-56.33h36.33l-17.61 91" fill="#fff"/></g></svg>
assets/dist/images/mastercard.svg CHANGED
@@ -1 +1 @@
1
- <svg width="750" height="471" xmlns="http://www.w3.org/2000/svg"><g fill="none"><rect fill="#000" width="750" height="471" rx="40"/><path d="M434.008 235.5c0 99.142-80.37 179.504-179.508 179.504S75 334.642 75 235.5c0-99.133 80.362-179.504 179.5-179.504 99.137 0 179.508 80.37 179.508 179.504" fill="#D9222A"/><path d="M495.492 55.996c-46.38 0-88.642 17.596-120.5 46.466a182.43 182.43 0 0 0-18.125 18.996h36.266a181.8 181.8 0 0 1 13.684 19.013h-63.634a178.716 178.716 0 0 0-10.341 19.008h84.312a179.19 179.19 0 0 1 7.6 19.004h-99.512a177.294 177.294 0 0 0-5.217 19.009h109.942a180.428 180.428 0 0 1 4.041 38.008c0 19.933-3.254 39.113-9.254 57.02h-99.512a177.651 177.651 0 0 0 7.595 19.01h84.317a179.97 179.97 0 0 1-10.346 19.012h-63.625a181.65 181.65 0 0 0 13.684 18.996h36.258a179.297 179.297 0 0 1-18.13 19.012c31.86 28.867 74.118 46.454 120.497 46.454C594.629 415.004 675 334.642 675 235.5c0-99.13-80.37-179.504-179.508-179.504" fill="#EE9F2D"/><path d="M651.075 335.558c0-3.2 2.592-5.8 5.796-5.8s5.796 2.6 5.796 5.8c0 3.2-2.592 5.8-5.796 5.8a5.798 5.798 0 0 1-5.796-5.8zm5.796 4.409a4.41 4.41 0 0 0 4.408-4.409 4.404 4.404 0 0 0-4.408-4.404 4.398 4.398 0 0 0-4.404 4.404 4.404 4.404 0 0 0 4.404 4.409zm-.783-1.859H654.9v-5.095h2.15c.45 0 .908 0 1.304.254.413.279.646.77.646 1.279 0 .57-.337 1.104-.883 1.312l.937 2.25h-1.316l-.78-2.016h-.87v2.016zm0-2.891h.658c.246 0 .504.02.725-.1.196-.125.296-.359.296-.584a.636.636 0 0 0-.288-.516c-.208-.13-.537-.1-.758-.1h-.633v1.3zm-443.501-80.063c-2.045-.237-2.945-.3-4.35-.3-11.045 0-16.637 3.788-16.637 11.267 0 4.612 2.73 7.546 6.987 7.546 7.938 0 13.659-7.559 14-18.513zm14.171 32.996h-16.146l.371-7.675c-4.925 6.067-11.496 8.95-20.425 8.95-10.562 0-17.804-8.25-17.804-20.23 0-18.024 12.596-28.54 34.217-28.54 2.208 0 5.041.2 7.941.57.605-2.442.763-3.487.763-4.8 0-4.908-3.396-6.738-12.5-6.738-9.533-.108-17.396 2.271-20.625 3.334.204-1.23 2.7-16.658 2.7-16.658 9.712-2.846 16.117-3.917 23.325-3.917 16.733 0 25.596 7.512 25.58 21.712.032 3.805-.597 8.5-1.58 14.671-1.692 10.73-5.32 33.717-5.817 39.321zm-62.158 0h-19.488l11.163-69.996-24.925 69.996h-13.28l-1.64-69.596-11.734 69.596H86.454l15.238-91.054h28.02l1.7 50.967 17.092-50.967h31.167L164.6 288.15m354.975-32.996c-2.037-.237-2.942-.3-4.342-.3-11.041 0-16.633 3.788-16.633 11.267 0 4.612 2.725 7.546 6.983 7.546 7.938 0 13.663-7.559 13.992-18.513zm14.183 32.996h-16.145l.366-7.675c-4.925 6.067-11.5 8.95-20.42 8.95-10.567 0-17.8-8.25-17.8-20.23 0-18.024 12.587-28.54 34.212-28.54 2.208 0 5.037.2 7.933.57.604-2.442.763-3.487.763-4.8 0-4.908-3.392-6.738-12.496-6.738-9.533-.108-17.388 2.271-20.63 3.334.205-1.23 2.709-16.658 2.709-16.658 9.713-2.846 16.113-3.917 23.313-3.917 16.741 0 25.604 7.512 25.587 21.712.033 3.805-.596 8.5-1.58 14.671-1.682 10.73-5.32 33.717-5.812 39.321zm-220.391-1.125c-5.334 1.68-9.492 2.4-14 2.4-9.963 0-15.4-5.725-15.4-16.267-.142-3.27 1.433-11.879 2.67-19.737 1.125-6.917 8.45-50.53 8.45-50.53h19.371l-2.262 11.209h11.7l-2.642 17.796h-11.742c-2.25 14.083-5.454 31.625-5.491 33.95 0 3.817 2.037 5.483 6.67 5.483 2.221 0 3.942-.225 5.255-.7l-2.58 16.396m59.392-.6c-6.654 2.033-13.075 3.017-19.879 3-21.683-.02-32.987-11.346-32.987-33.033 0-25.313 14.379-43.946 33.9-43.946 15.97 0 26.17 10.433 26.17 26.796 0 5.429-.7 10.729-2.387 18.212H339c-1.304 10.742 5.57 15.217 16.837 15.217 6.934 0 13.188-1.43 20.142-4.663l-3.22 18.417zm-10.887-43.9c.108-1.542 2.054-13.217-9.013-13.217-6.17 0-10.583 4.704-12.379 13.217h21.392zm-123.425-5.017c0 9.367 4.541 15.825 14.841 20.675 7.892 3.709 9.113 4.809 9.113 8.171 0 4.617-3.48 6.7-11.192 6.7-5.812 0-11.22-.908-17.458-2.92 0 0-2.563 16.32-2.68 17.1 4.43.966 8.38 1.862 20.28 2.191 20.562 0 30.058-7.83 30.058-24.75 0-10.175-3.975-16.146-13.737-20.633-8.171-3.75-9.109-4.588-9.109-8.046 0-4.004 3.238-6.046 9.538-6.046 3.825 0 9.05.408 14 1.113l2.775-17.175c-5.046-.8-12.696-1.442-17.15-1.442-21.8 0-29.346 11.387-29.28 25.062m229.088-23.116c5.413 0 10.459 1.42 17.413 4.92l3.187-19.762c-2.854-1.12-12.904-7.7-21.416-7.7-13.042 0-24.067 6.47-31.821 17.15-11.309-3.746-15.959 3.825-21.659 11.367l-5.062 1.179c.383-2.483.73-4.95.613-7.446h-17.896c-2.446 22.917-6.78 46.13-10.171 69.075l-.884 4.975h19.496c3.254-21.142 5.038-34.68 6.121-43.842l7.342-4.083c1.096-4.08 4.529-5.458 11.416-5.292a82.966 82.966 0 0 0-1.383 15.184c0 24.225 13.071 39.308 34.05 39.308 5.404 0 10.042-.712 17.221-2.658l3.43-20.759c-6.46 3.18-11.76 4.675-16.56 4.675-11.328 0-18.183-8.362-18.183-22.183 0-20.05 10.196-34.108 24.746-34.108" fill="#000"/><path fill="#FFF" d="M170.208 282.742h-19.491l11.17-69.988-24.925 69.988H123.68l-1.642-69.588-11.733 69.588H92.062L107.3 191.7h28.02l.788 56.363 18.904-56.363h30.267l-15.07 91.042"/><path d="M632.52 197.096l-4.32 26.308c-5.33-7.012-11.054-12.087-18.612-12.087-9.834 0-18.784 7.454-24.642 18.425-8.158-1.692-16.596-4.563-16.596-4.563l-.004.067c.658-6.133.92-9.875.862-11.146h-17.9c-2.437 22.917-6.77 46.13-10.158 69.075l-.892 4.975h19.492c2.633-17.096 4.65-31.292 6.133-42.55 6.659-6.017 9.992-11.267 16.721-10.917-2.979 7.205-4.725 15.505-4.725 24.017 0 18.513 9.367 30.725 23.534 30.725 7.141 0 12.62-2.462 17.966-8.17l-.912 6.883H636.9l14.842-91.042H632.52zm-24.37 73.942c-6.633 0-9.983-4.909-9.983-14.596 0-14.554 6.27-24.875 15.112-24.875 6.696 0 10.321 5.104 10.321 14.508 0 14.68-6.37 24.963-15.45 24.963z" fill="#000"/><path d="M218.192 249.758c-2.042-.237-2.946-.3-4.346-.3-11.046 0-16.634 3.788-16.634 11.267 0 4.604 2.73 7.546 6.98 7.546 7.945 0 13.666-7.558 14-18.513zm14.179 32.984h-16.146l.367-7.663c-4.921 6.054-11.5 8.95-20.421 8.95-10.567 0-17.804-8.25-17.804-20.229 0-18.033 12.591-28.542 34.216-28.542 2.209 0 5.042.2 7.938.571.604-2.442.762-3.487.762-4.808 0-4.908-3.391-6.73-12.496-6.73-9.537-.108-17.395 2.272-20.629 3.322.204-1.226 2.7-16.638 2.7-16.638 9.709-2.858 16.121-3.93 23.321-3.93 16.738 0 25.604 7.518 25.588 21.705.029 3.82-.605 8.512-1.584 14.675-1.687 10.725-5.32 33.725-5.812 39.317zm261.375-88.592l-3.192 19.767c-6.95-3.496-12-4.921-17.408-4.921-14.55 0-24.75 14.058-24.75 34.108 0 13.821 6.858 22.18 18.183 22.18 4.8 0 10.096-1.492 16.554-4.676l-3.42 20.75c-7.184 1.959-11.817 2.671-17.226 2.671-20.975 0-34.05-15.083-34.05-39.308 0-32.55 18.059-55.3 43.888-55.3 8.508 0 18.563 3.608 21.42 4.729m31.443 55.608c-2.042-.237-2.942-.3-4.346-.3-11.042 0-16.634 3.788-16.634 11.267 0 4.604 2.73 7.546 6.984 7.546 7.937 0 13.662-7.558 13.996-18.513zm14.179 32.984h-16.15l.37-7.663c-4.924 6.054-11.5 8.95-20.42 8.95-10.563 0-17.804-8.25-17.804-20.229 0-18.033 12.595-28.542 34.212-28.542 2.213 0 5.042.2 7.942.571.6-2.442.762-3.487.762-4.808 0-4.908-3.391-6.73-12.496-6.73-9.533-.108-17.395 2.272-20.629 3.322.204-1.226 2.704-16.638 2.704-16.638 9.709-2.858 16.117-3.93 23.317-3.93 16.742 0 25.604 7.518 25.583 21.705.034 3.82-.595 8.512-1.579 14.675-1.683 10.725-5.325 33.725-5.812 39.317zm-220.392-1.122c-5.338 1.68-9.496 2.41-14 2.41-9.963 0-15.4-5.726-15.4-16.267-.138-3.28 1.437-11.88 2.675-19.738 1.12-6.925 8.446-50.533 8.446-50.533h19.366l-2.258 11.212h9.942l-2.646 17.788h-9.975c-2.25 14.091-5.463 31.62-5.496 33.95 0 3.829 2.042 5.483 6.671 5.483 2.22 0 3.937-.217 5.254-.692l-2.579 16.388m59.392-.591c-6.65 2.033-13.08 3.012-19.88 3-21.683-.022-32.987-11.347-32.987-33.034 0-25.321 14.38-43.95 33.9-43.95 15.97 0 26.17 10.429 26.17 26.8 0 5.433-.7 10.733-2.382 18.212h-38.575c-1.305 10.742 5.57 15.221 16.837 15.221 6.93 0 13.188-1.433 20.137-4.675l-3.22 18.425zm-10.892-43.913c.117-1.538 2.058-13.217-9.013-13.217-6.166 0-10.579 4.717-12.375 13.217h21.388zm-123.421-5.004c0 9.366 4.542 15.816 14.842 20.675 7.891 3.708 9.112 4.812 9.112 8.17 0 4.617-3.483 6.7-11.187 6.7-5.817 0-11.225-.908-17.467-2.92 0 0-2.554 16.32-2.67 17.1 4.42.966 8.374 1.85 20.274 2.191 20.567 0 30.059-7.829 30.059-24.746 0-10.179-3.971-16.15-13.738-20.637-8.167-3.758-9.112-4.583-9.112-8.046 0-4 3.245-6.058 9.541-6.058 3.821 0 9.046.42 14.004 1.125l2.771-17.18c-5.041-.8-12.691-1.441-17.146-1.441-21.804 0-29.345 11.379-29.283 25.067m398.454 50.629h-18.437l.917-6.892c-5.346 5.717-10.825 8.18-17.967 8.18-14.167 0-23.53-12.213-23.53-30.726 0-24.629 14.522-45.392 31.709-45.392 7.558 0 13.28 3.088 18.604 10.096l4.325-26.308h19.221l-14.842 91.042zm-28.745-17.109c9.075 0 15.45-10.283 15.45-24.954 0-9.404-3.63-14.508-10.325-14.508-8.838 0-15.117 10.317-15.117 24.875 0 9.687 3.358 14.587 9.992 14.587zm-56.843-56.929c-2.44 22.917-6.774 46.13-10.162 69.063l-.891 4.975h19.491c6.971-45.275 8.659-54.117 19.588-53.009 1.742-9.266 4.983-17.383 7.4-21.479-8.163-1.7-12.721 2.913-18.688 11.675.471-3.787 1.334-7.466 1.163-11.225h-17.9m-160.421 0c-2.446 22.917-6.78 46.13-10.167 69.063l-.887 4.975h19.5c6.962-45.275 8.646-54.117 19.57-53.009 1.75-9.266 4.992-17.383 7.4-21.479-8.154-1.7-12.716 2.913-18.678 11.675.47-3.787 1.325-7.466 1.162-11.225h-17.9m254.567 68.242c0-3.213 2.596-5.8 5.796-5.8a5.79 5.79 0 0 1 5.795 5.8 5.797 5.797 0 0 1-5.795 5.796 5.8 5.8 0 0 1-5.796-5.796zm5.796 4.404a4.403 4.403 0 0 0 4.404-4.404 4.404 4.404 0 0 0-4.404-4.408 4.41 4.41 0 0 0-4.409 4.408 4.41 4.41 0 0 0 4.409 4.404zm-.784-1.87h-1.187v-5.084h2.154c.446 0 .908.008 1.296.254.416.283.654.767.654 1.275 0 .575-.338 1.113-.888 1.317l.942 2.237h-1.32l-.78-2.008h-.87v2.008zm0-2.88h.654c.246 0 .513.017.73-.1.195-.125.295-.362.295-.587a.677.677 0 0 0-.287-.525c-.204-.117-.542-.084-.763-.084h-.629v1.296z" fill="#FFF"/></g></svg>
1
+ <svg width="750" height="471" xmlns="http://www.w3.org/2000/svg"><g fill="none"><rect fill="#000" width="750" height="471" rx="40"/><path d="M434.008 235.5c0 99.142-80.37 179.504-179.508 179.504S75 334.642 75 235.5c0-99.133 80.362-179.504 179.5-179.504 99.137 0 179.508 80.37 179.508 179.504" fill="#D9222A"/><path d="M495.492 55.996c-46.38 0-88.642 17.596-120.5 46.466a182.43 182.43 0 00-18.125 18.996h36.266a181.8 181.8 0 0113.684 19.013h-63.634a178.716 178.716 0 00-10.341 19.008h84.312a179.19 179.19 0 017.6 19.004h-99.512a177.294 177.294 0 00-5.217 19.009h109.942a180.428 180.428 0 014.041 38.008c0 19.933-3.254 39.113-9.254 57.02h-99.512a177.651 177.651 0 007.595 19.01h84.317a179.97 179.97 0 01-10.346 19.012h-63.625a181.65 181.65 0 0013.684 18.996h36.258a179.297 179.297 0 01-18.13 19.012c31.86 28.867 74.118 46.454 120.497 46.454C594.629 415.004 675 334.642 675 235.5c0-99.13-80.37-179.504-179.508-179.504" fill="#EE9F2D"/><path d="M651.075 335.558c0-3.2 2.592-5.8 5.796-5.8s5.796 2.6 5.796 5.8c0 3.2-2.592 5.8-5.796 5.8a5.798 5.798 0 01-5.796-5.8zm5.796 4.409a4.41 4.41 0 004.408-4.409 4.404 4.404 0 00-4.408-4.404 4.398 4.398 0 00-4.404 4.404 4.404 4.404 0 004.404 4.409zm-.783-1.859H654.9v-5.095h2.15c.45 0 .908 0 1.304.254.413.279.646.77.646 1.279 0 .57-.337 1.104-.883 1.312l.937 2.25h-1.316l-.78-2.016h-.87v2.016zm0-2.891h.658c.246 0 .504.02.725-.1.196-.125.296-.359.296-.584a.636.636 0 00-.288-.516c-.208-.13-.537-.1-.758-.1h-.633v1.3zm-443.501-80.063c-2.045-.237-2.945-.3-4.35-.3-11.045 0-16.637 3.788-16.637 11.267 0 4.612 2.73 7.546 6.987 7.546 7.938 0 13.659-7.559 14-18.513zm14.171 32.996h-16.146l.371-7.675c-4.925 6.067-11.496 8.95-20.425 8.95-10.562 0-17.804-8.25-17.804-20.23 0-18.024 12.596-28.54 34.217-28.54 2.208 0 5.041.2 7.941.57.605-2.442.763-3.487.763-4.8 0-4.908-3.396-6.738-12.5-6.738-9.533-.108-17.396 2.271-20.625 3.334.204-1.23 2.7-16.658 2.7-16.658 9.712-2.846 16.117-3.917 23.325-3.917 16.733 0 25.596 7.512 25.58 21.712.032 3.805-.597 8.5-1.58 14.671-1.692 10.73-5.32 33.717-5.817 39.321zm-62.158 0h-19.488l11.163-69.996-24.925 69.996h-13.28l-1.64-69.596-11.734 69.596H86.454l15.238-91.054h28.02l1.7 50.967 17.092-50.967h31.167L164.6 288.15m354.975-32.996c-2.037-.237-2.942-.3-4.342-.3-11.041 0-16.633 3.788-16.633 11.267 0 4.612 2.725 7.546 6.983 7.546 7.938 0 13.663-7.559 13.992-18.513zm14.183 32.996h-16.145l.366-7.675c-4.925 6.067-11.5 8.95-20.42 8.95-10.567 0-17.8-8.25-17.8-20.23 0-18.024 12.587-28.54 34.212-28.54 2.208 0 5.037.2 7.933.57.604-2.442.763-3.487.763-4.8 0-4.908-3.392-6.738-12.496-6.738-9.533-.108-17.388 2.271-20.63 3.334.205-1.23 2.709-16.658 2.709-16.658 9.713-2.846 16.113-3.917 23.313-3.917 16.741 0 25.604 7.512 25.587 21.712.033 3.805-.596 8.5-1.58 14.671-1.682 10.73-5.32 33.717-5.812 39.321zm-220.391-1.125c-5.334 1.68-9.492 2.4-14 2.4-9.963 0-15.4-5.725-15.4-16.267-.142-3.27 1.433-11.879 2.67-19.737 1.125-6.917 8.45-50.53 8.45-50.53h19.371l-2.262 11.209h11.7l-2.642 17.796h-11.742c-2.25 14.083-5.454 31.625-5.491 33.95 0 3.817 2.037 5.483 6.67 5.483 2.221 0 3.942-.225 5.255-.7l-2.58 16.396m59.392-.6c-6.654 2.033-13.075 3.017-19.879 3-21.683-.02-32.987-11.346-32.987-33.033 0-25.313 14.379-43.946 33.9-43.946 15.97 0 26.17 10.433 26.17 26.796 0 5.429-.7 10.729-2.387 18.212H339c-1.304 10.742 5.57 15.217 16.837 15.217 6.934 0 13.188-1.43 20.142-4.663l-3.22 18.417zm-10.887-43.9c.108-1.542 2.054-13.217-9.013-13.217-6.17 0-10.583 4.704-12.379 13.217h21.392zm-123.425-5.017c0 9.367 4.541 15.825 14.841 20.675 7.892 3.709 9.113 4.809 9.113 8.171 0 4.617-3.48 6.7-11.192 6.7-5.812 0-11.22-.908-17.458-2.92 0 0-2.563 16.32-2.68 17.1 4.43.966 8.38 1.862 20.28 2.191 20.562 0 30.058-7.83 30.058-24.75 0-10.175-3.975-16.146-13.737-20.633-8.171-3.75-9.109-4.588-9.109-8.046 0-4.004 3.238-6.046 9.538-6.046 3.825 0 9.05.408 14 1.113l2.775-17.175c-5.046-.8-12.696-1.442-17.15-1.442-21.8 0-29.346 11.387-29.28 25.062m229.088-23.116c5.413 0 10.459 1.42 17.413 4.92l3.187-19.762c-2.854-1.12-12.904-7.7-21.416-7.7-13.042 0-24.067 6.47-31.821 17.15-11.309-3.746-15.959 3.825-21.659 11.367l-5.062 1.179c.383-2.483.73-4.95.613-7.446h-17.896c-2.446 22.917-6.78 46.13-10.171 69.075l-.884 4.975h19.496c3.254-21.142 5.038-34.68 6.121-43.842l7.342-4.083c1.096-4.08 4.529-5.458 11.416-5.292a82.966 82.966 0 00-1.383 15.184c0 24.225 13.071 39.308 34.05 39.308 5.404 0 10.042-.712 17.221-2.658l3.43-20.759c-6.46 3.18-11.76 4.675-16.56 4.675-11.328 0-18.183-8.362-18.183-22.183 0-20.05 10.196-34.108 24.746-34.108" fill="#000"/><path fill="#FFF" d="M170.208 282.742h-19.491l11.17-69.988-24.925 69.988H123.68l-1.642-69.588-11.733 69.588H92.062L107.3 191.7h28.02l.788 56.363 18.904-56.363h30.267l-15.07 91.042"/><path d="M632.52 197.096l-4.32 26.308c-5.33-7.012-11.054-12.087-18.612-12.087-9.834 0-18.784 7.454-24.642 18.425-8.158-1.692-16.596-4.563-16.596-4.563l-.004.067c.658-6.133.92-9.875.862-11.146h-17.9c-2.437 22.917-6.77 46.13-10.158 69.075l-.892 4.975h19.492c2.633-17.096 4.65-31.292 6.133-42.55 6.659-6.017 9.992-11.267 16.721-10.917-2.979 7.205-4.725 15.505-4.725 24.017 0 18.513 9.367 30.725 23.534 30.725 7.141 0 12.62-2.462 17.966-8.17l-.912 6.883H636.9l14.842-91.042H632.52zm-24.37 73.942c-6.633 0-9.983-4.909-9.983-14.596 0-14.554 6.27-24.875 15.112-24.875 6.696 0 10.321 5.104 10.321 14.508 0 14.68-6.37 24.963-15.45 24.963z" fill="#000"/><path d="M218.192 249.758c-2.042-.237-2.946-.3-4.346-.3-11.046 0-16.634 3.788-16.634 11.267 0 4.604 2.73 7.546 6.98 7.546 7.945 0 13.666-7.558 14-18.513zm14.179 32.984h-16.146l.367-7.663c-4.921 6.054-11.5 8.95-20.421 8.95-10.567 0-17.804-8.25-17.804-20.229 0-18.033 12.591-28.542 34.216-28.542 2.209 0 5.042.2 7.938.571.604-2.442.762-3.487.762-4.808 0-4.908-3.391-6.73-12.496-6.73-9.537-.108-17.395 2.272-20.629 3.322.204-1.226 2.7-16.638 2.7-16.638 9.709-2.858 16.121-3.93 23.321-3.93 16.738 0 25.604 7.518 25.588 21.705.029 3.82-.605 8.512-1.584 14.675-1.687 10.725-5.32 33.725-5.812 39.317zm261.375-88.592l-3.192 19.767c-6.95-3.496-12-4.921-17.408-4.921-14.55 0-24.75 14.058-24.75 34.108 0 13.821 6.858 22.18 18.183 22.18 4.8 0 10.096-1.492 16.554-4.676l-3.42 20.75c-7.184 1.959-11.817 2.671-17.226 2.671-20.975 0-34.05-15.083-34.05-39.308 0-32.55 18.059-55.3 43.888-55.3 8.508 0 18.563 3.608 21.42 4.729m31.443 55.608c-2.042-.237-2.942-.3-4.346-.3-11.042 0-16.634 3.788-16.634 11.267 0 4.604 2.73 7.546 6.984 7.546 7.937 0 13.662-7.558 13.996-18.513zm14.179 32.984h-16.15l.37-7.663c-4.924 6.054-11.5 8.95-20.42 8.95-10.563 0-17.804-8.25-17.804-20.229 0-18.033 12.595-28.542 34.212-28.542 2.213 0 5.042.2 7.942.571.6-2.442.762-3.487.762-4.808 0-4.908-3.391-6.73-12.496-6.73-9.533-.108-17.395 2.272-20.629 3.322.204-1.226 2.704-16.638 2.704-16.638 9.709-2.858 16.117-3.93 23.317-3.93 16.742 0 25.604 7.518 25.583 21.705.034 3.82-.595 8.512-1.579 14.675-1.683 10.725-5.325 33.725-5.812 39.317zm-220.392-1.122c-5.338 1.68-9.496 2.41-14 2.41-9.963 0-15.4-5.726-15.4-16.267-.138-3.28 1.437-11.88 2.675-19.738 1.12-6.925 8.446-50.533 8.446-50.533h19.366l-2.258 11.212h9.942l-2.646 17.788h-9.975c-2.25 14.091-5.463 31.62-5.496 33.95 0 3.829 2.042 5.483 6.671 5.483 2.22 0 3.937-.217 5.254-.692l-2.579 16.388m59.392-.591c-6.65 2.033-13.08 3.012-19.88 3-21.683-.022-32.987-11.347-32.987-33.034 0-25.321 14.38-43.95 33.9-43.95 15.97 0 26.17 10.429 26.17 26.8 0 5.433-.7 10.733-2.382 18.212h-38.575c-1.305 10.742 5.57 15.221 16.837 15.221 6.93 0 13.188-1.433 20.137-4.675l-3.22 18.425zm-10.892-43.913c.117-1.538 2.058-13.217-9.013-13.217-6.166 0-10.579 4.717-12.375 13.217h21.388zm-123.421-5.004c0 9.366 4.542 15.816 14.842 20.675 7.891 3.708 9.112 4.812 9.112 8.17 0 4.617-3.483 6.7-11.187 6.7-5.817 0-11.225-.908-17.467-2.92 0 0-2.554 16.32-2.67 17.1 4.42.966 8.374 1.85 20.274 2.191 20.567 0 30.059-7.829 30.059-24.746 0-10.179-3.971-16.15-13.738-20.637-8.167-3.758-9.112-4.583-9.112-8.046 0-4 3.245-6.058 9.541-6.058 3.821 0 9.046.42 14.004 1.125l2.771-17.18c-5.041-.8-12.691-1.441-17.146-1.441-21.804 0-29.345 11.379-29.283 25.067m398.454 50.629h-18.437l.917-6.892c-5.346 5.717-10.825 8.18-17.967 8.18-14.167 0-23.53-12.213-23.53-30.726 0-24.629 14.522-45.392 31.709-45.392 7.558 0 13.28 3.088 18.604 10.096l4.325-26.308h19.221l-14.842 91.042zm-28.745-17.109c9.075 0 15.45-10.283 15.45-24.954 0-9.404-3.63-14.508-10.325-14.508-8.838 0-15.117 10.317-15.117 24.875 0 9.687 3.358 14.587 9.992 14.587zm-56.843-56.929c-2.44 22.917-6.774 46.13-10.162 69.063l-.891 4.975h19.491c6.971-45.275 8.659-54.117 19.588-53.009 1.742-9.266 4.983-17.383 7.4-21.479-8.163-1.7-12.721 2.913-18.688 11.675.471-3.787 1.334-7.466 1.163-11.225h-17.9m-160.421 0c-2.446 22.917-6.78 46.13-10.167 69.063l-.887 4.975h19.5c6.962-45.275 8.646-54.117 19.57-53.009 1.75-9.266 4.992-17.383 7.4-21.479-8.154-1.7-12.716 2.913-18.678 11.675.47-3.787 1.325-7.466 1.162-11.225h-17.9m254.567 68.242c0-3.213 2.596-5.8 5.796-5.8a5.79 5.79 0 015.795 5.8 5.797 5.797 0 01-5.795 5.796 5.8 5.8 0 01-5.796-5.796zm5.796 4.404a4.403 4.403 0 004.404-4.404 4.404 4.404 0 00-4.404-4.408 4.41 4.41 0 00-4.409 4.408 4.41 4.41 0 004.409 4.404zm-.784-1.87h-1.187v-5.084h2.154c.446 0 .908.008 1.296.254.416.283.654.767.654 1.275 0 .575-.338 1.113-.888 1.317l.942 2.237h-1.32l-.78-2.008h-.87v2.008zm0-2.88h.654c.246 0 .513.017.73-.1.195-.125.295-.362.295-.587a.677.677 0 00-.287-.525c-.204-.117-.542-.084-.763-.084h-.629v1.296z" fill="#FFF"/></g></svg>
assets/dist/images/shopping-cart.svg CHANGED
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="62" height="65"><path d="M30.976 24.881h6.095v-9.143h9.143V9.643h-9.143V.5h-6.095v9.143h-9.143v6.095h9.143v9.143zM18.786 52.31c-3.353 0-6.065 2.742-6.065 6.095 0 3.352 2.712 6.095 6.065 6.095 3.352 0 6.095-2.743 6.095-6.095 0-3.353-2.743-6.095-6.095-6.095zm30.476 0c-3.352 0-6.065 2.742-6.065 6.095 0 3.352 2.713 6.095 6.065 6.095 3.352 0 6.095-2.743 6.095-6.095 0-3.353-2.743-6.095-6.095-6.095zM22.138 37.07h22.705a6.066 6.066 0 0 0 5.333-3.139L61.94 12.57l-5.333-2.926-11.764 21.333H23.449L10.466 3.548H.5v6.095h6.095l10.972 23.131-4.115 7.436c-2.224 4.084.701 9.052 5.334 9.052h36.571v-6.095H18.786l3.352-6.096z"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="62" height="65"><path d="M30.976 24.881h6.095v-9.143h9.143V9.643h-9.143V.5h-6.095v9.143h-9.143v6.095h9.143v9.143zM18.786 52.31c-3.353 0-6.065 2.742-6.065 6.095 0 3.352 2.712 6.095 6.065 6.095 3.352 0 6.095-2.743 6.095-6.095 0-3.353-2.743-6.095-6.095-6.095zm30.476 0c-3.352 0-6.065 2.742-6.065 6.095 0 3.352 2.713 6.095 6.065 6.095 3.352 0 6.095-2.743 6.095-6.095 0-3.353-2.743-6.095-6.095-6.095zM22.138 37.07h22.705a6.066 6.066 0 005.333-3.139L61.94 12.57l-5.333-2.926-11.764 21.333H23.449L10.466 3.548H.5v6.095h6.095l10.972 23.131-4.115 7.436c-2.224 4.084.701 9.052 5.334 9.052h36.571v-6.095H18.786l3.352-6.096z"/></svg>
assets/dist/js/admin-add-ons.js CHANGED
@@ -1 +1 @@
1
- !function(e){var n={};function t(a){if(n[a])return n[a].exports;var i=n[a]={i:a,l:!1,exports:{}};return e[a].call(i.exports,i,i.exports,t),i.l=!0,i.exports}t.m=e,t.c=n,t.d=function(e,n,a){t.o(e,n)||Object.defineProperty(e,n,{enumerable:!0,get:a})},t.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},t.t=function(e,n){if(1&n&&(e=t(e)),8&n)return e;if(4&n&&"object"==typeof e&&e&&e.__esModule)return e;var a=Object.create(null);if(t.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:e}),2&n&&"string"!=typeof e)for(var i in e)t.d(a,i,function(n){return e[n]}.bind(null,i));return a},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},t.p="",t(t.s=353)}({353:function(e,n,t){e.exports=t(354)},354:function(e,n){var t;(t=jQuery)(document).ready(function(){var e=t("#give-licenses-container"),n=t("#give-license-activator-wrap"),a=t("form",n),i=t('input[name="give_license_key"]',n),o=t('input[type="submit"]',a),r=t(".give-license-notices",n);r.on("click",t(".notice-dismiss",r),function(e){r.empty().hide()}),a.on("submit",function(){var n=i.val().trim(),a=t('input[name="give_license_activator_nonce"]',t(this)).val().trim();return r.empty(),n?(t.ajax({url:ajaxurl,method:"POST",data:{action:"give_get_license_info",license:n,_wpnonce:a},beforeSend:function(){o.val(o.attr("data-activating")),o.prop("disabled",!0),Give.fn.loader(e)},success:function(n){if(r.show(),i.val(""),!0!==n.success)n.data.hasOwnProperty("errorMsg")&&n.data.errorMsg?r.html(Give.notice.fn.getAdminNoticeHTML(n.data.errorMsg,"error")):r.html(Give.notice.fn.getAdminNoticeHTML(give_addon_var.notices.invalid_license,"error"));else if(n.data.hasOwnProperty("download")&&n.data.download){var t="string"==typeof n.data.download?give_addon_var.notices.download_file.replace("{link}",n.data.download):give_addon_var.notices.download_file.substring(0,give_addon_var.notices.download_file.indexOf(".")+1);r.html(Give.notice.fn.getAdminNoticeHTML(t,"success")),e.parent().parent().removeClass("give-hidden"),e.html(n.data.html)}else r.html(Give.notice.fn.getAdminNoticeHTML(give_addon_var.notices.invalid_license,"error"))}}).always(function(){Give.fn.loader(e,{show:!1}),o.val(o.attr("data-activate")),o.prop("disabled",!1)}),!1):(r.show(),r.html(Give.notice.fn.getAdminNoticeHTML(give_addon_var.notices.invalid_license,"error")),!1)}),e.on("click",".give-button__license-activate",function(n){n.preventDefault();var a=t(this),i=a.parents(".give-addon-wrap"),o=t(".give-license-notice-container",i),r=a.prev('.give-license__key input[type="text"]').val().trim();o.empty().removeClass("give-addon-notice-shown").show(),r?t.ajax({url:ajaxurl,method:"POST",data:{action:"give_get_license_info",license:r,single:1,addon:a.attr("data-addon"),_wpnonce:t("#give_license_activator_nonce").val().trim()},beforeSend:function(){Give.fn.loader(i)},success:function(n){!0!==n.success?o.addClass("give-addon-notice-shown").prepend(Give.notice.fn.getAdminNoticeHTML(n.data.errorMsg,"error")):n.data.hasOwnProperty("is_all_access_pass")&&n.data.is_all_access_pass?e.html(n.data.html):i.replaceWith(n.data.html)}}).done(function(){Give.fn.loader(i,{show:!1})}):o.addClass("give-addon-notice-shown").prepend(Give.notice.fn.getAdminNoticeHTML(give_addon_var.notices.invalid_license,"error")),e.on("click",".notice-dismiss",function(){o.slideUp(150,function(){o.removeClass("give-addon-notice-shown")})})}),e.on("click",".give-license__deactivate",function(n){n.preventDefault();var a=t(this),i=a.parents(".give-addon-wrap"),o=t(".give-license-notice-container",i),r=1<a.parents(".give-addon-inner").find(".give-addon-info-wrap").length,d=t(".give-addon-wrap").index(i);o.empty().removeClass("give-addon-notice-shown").show(),t.ajax({url:ajaxurl,method:"POST",data:{action:"give_deactivate_license",license:a.attr("data-license-key"),item_name:a.attr("data-item-name"),plugin_dirname:a.attr("data-plugin-dirname"),_wpnonce:a.attr("data-nonce")},beforeSend:function(){r?Give.fn.loader(e):Give.fn.loader(i)},success:function(n){!0===n.success?(r?e.html(n.data.html):i.replaceWith(n.data.html),i=t(".give-addon-wrap").get(d),(o=t(".give-license-notice-container",i)).addClass("give-addon-notice-shown").prepend(Give.notice.fn.getAdminNoticeHTML(n.data.msg,"success")),e.html().trim().length||e.parent().parent().addClass("give-hidden")):o.addClass("give-addon-notice-shown").prepend(Give.notice.fn.getAdminNoticeHTML(n.data.errorMsg,"error"))}}).done(function(){r?Give.fn.loader(e,{show:!1}):Give.fn.loader(i,{show:!1})}),e.on("click",".notice-dismiss",function(){o.slideUp(150,function(){o.removeClass("give-addon-notice-shown")})})}),e.on("click",".give-button__license-reactivate",function(n){n.preventDefault();var a=t(this),i=a.attr("data-license").trim(),o=t(".give-addon-wrap").index(r),r=a.parents(".give-addon-wrap"),d=t(".give-license-notice-container",r);d.empty().removeClass("give-addon-notice-shown").show(),i?t.ajax({url:ajaxurl,method:"POST",data:{action:"give_get_license_info",license:i,single:1,reactivate:1,addon:a.attr("data-addon"),_wpnonce:t("#give_license_activator_nonce").val().trim()},beforeSend:function(){Give.fn.loader(r)},success:function(n){!0!==n.success?(n.data.hasOwnProperty("html")&&n.data.html.length&&(n.data.hasOwnProperty("is_all_access_pass")&&n.data.is_all_access_pass?e.html(n.data.html):r.replaceWith(n.data.html)),r=t(".give-addon-wrap").get(o),(d=t(".give-license-notice-container",r)).addClass("give-addon-notice-shown").prepend(Give.notice.fn.getAdminNoticeHTML(n.data.errorMsg,"error"))):n.data.hasOwnProperty("is_all_access_pass")&&n.data.is_all_access_pass?e.html(n.data.html):r.replaceWith(n.data.html)}}).done(function(){Give.fn.loader(r,{show:!1})}):d.addClass("give-addon-notice-shown").prepend(Give.notice.fn.getAdminNoticeHTML(give_addon_var.notices.invalid_license,"error")),e.on("click",".notice-dismiss",function(){d.slideUp(150,function(){d.removeClass("give-addon-notice-shown")})})}),t("#give-button__refresh-licenses").on("click",function(n){n.preventDefault();var a=t(this);t.ajax({url:ajaxurl,method:"POST",data:{action:"give_refresh_all_licenses",_wpnonce:a.attr("data-nonce")},beforeSend:function(){a.text(a.attr("data-activating")),Give.fn.loader(e)},success:function(n){!0===n.success&&(e.html(n.data.html),t("#give-last-refresh-notice").text(n.data.lastUpdateMsg)),n.success&&!n.data.refreshButton||a.prop("disabled",!0)}}).done(function(){Give.fn.loader(e,{show:!1}),a.text(a.attr("data-activate"))})})}),t(document).ready(function(){var e=t(".give-upload-addon-form-wrap"),n=t("form",e),a=t('input[type="file"]',n),i=t(".give-activate-addon-wrap",n),o=t("button",n),r=t(".give-addon-upload-notices",n),d=t("#give-licenses-container");function c(a){r.empty(),t.ajax({url:"".concat(ajaxurl,"?action=give_upload_addon&_wpnonce=").concat(t('input[name="_give_upload_addon"]',n).val().trim()),method:"POST",data:a,contentType:!1,processData:!1,dataType:"json",beforeSend:function(){r.show(),Give.fn.loader(e,{loadingText:Give.fn.getGlobalVar("loader_translation").uploading})},success:function(e){var n;if(!0===e.success)return r.hide(),i.show(),o.attr("data-pluginPath",e.data.pluginPath),o.attr("data-pluginName",e.data.pluginName),o.attr("data-nonce",e.data.nonce),void d.html(e.data.licenseSectionHtml);n=e.data.hasOwnProperty("errorMsg")&&e.data.errorMsg?e.data.errorMsg:e.data.error,r.html(Give.notice.fn.getAdminNoticeHTML(n,"error"))}}).always(function(){Give.fn.loader(e,{show:!1})})}e.on("drop",function(e){e.stopPropagation(),e.preventDefault(),t(this).removeClass("give-dropzone-active");var n=e.originalEvent.dataTransfer.files,a=new FormData;a.append("file",n[0]),c(a)}),n.on("dragover",function(e){t(this).addClass("give-dropzone-active")}).on("dragleave",function(e){t(this).removeClass("give-dropzone-active")}),r.on("click",t(".notice-dismiss",r),function(e){r.empty().hide(),n.removeClass("give-dropzone-active")}),a.on("change",function(e){e.stopPropagation(),e.preventDefault();var n=new FormData,t=a[0].files[0];if(!t)return!1;n.append("file",t),c(n)}),o.on("click",function(e){e.preventDefault(),r.empty(),t.ajax({url:ajaxurl,method:"POST",data:{action:"give_activate_addon",plugin:o.attr("data-pluginPath"),_wpnonce:o.attr("data-nonce")},beforeSend:function(){r.show(),o.text(o.attr("data-activating"))},success:function(e){if(!0===e.success){var n=give_addon_var.notices.addon_activated.replace("{pluginName}",o.attr("data-pluginName"));return r.show(),r.html(Give.notice.fn.getAdminNoticeHTML(n,"success")),void d.html(e.data.licenseSectionHtml)}e.data.hasOwnProperty("errorMsg")&&e.data.errorMsg?r.html(Give.notice.fn.getAdminNoticeHTML(e.data.errorMsg,"error")):Give.notice.fn.getAdminNoticeHTML(give_addon_var.notices.addon_activation_error,"error")}}).always(function(){o.text(o.attr("data-activate")),i.hide()})})})}});
1
+ !function(e){var n={};function t(a){if(n[a])return n[a].exports;var i=n[a]={i:a,l:!1,exports:{}};return e[a].call(i.exports,i,i.exports,t),i.l=!0,i.exports}t.m=e,t.c=n,t.d=function(e,n,a){t.o(e,n)||Object.defineProperty(e,n,{enumerable:!0,get:a})},t.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},t.t=function(e,n){if(1&n&&(e=t(e)),8&n)return e;if(4&n&&"object"==typeof e&&e&&e.__esModule)return e;var a=Object.create(null);if(t.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:e}),2&n&&"string"!=typeof e)for(var i in e)t.d(a,i,function(n){return e[n]}.bind(null,i));return a},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},t.p="",t(t.s=664)}({664:function(e,n,t){e.exports=t(665)},665:function(e,n){var t;(t=jQuery)(document).ready((function(){var e=t("#give-licenses-container"),n=t("#give-license-activator-wrap"),a=t("form",n),i=t('input[name="give_license_key"]',n),o=t('input[type="submit"]',a),r=t(".give-license-notices",n);r.on("click",t(".notice-dismiss",r),(function(e){r.empty().hide()})),a.on("submit",(function(){var n=i.val().trim(),a=t('input[name="give_license_activator_nonce"]',t(this)).val().trim();return r.empty(),n?(t.ajax({url:ajaxurl,method:"POST",data:{action:"give_get_license_info",license:n,_wpnonce:a},beforeSend:function(){o.val(o.attr("data-activating")),o.prop("disabled",!0),Give.fn.loader(e)},success:function(n){if(r.show(),i.val(""),!0!==n.success)n.data.hasOwnProperty("errorMsg")&&n.data.errorMsg?r.html(Give.notice.fn.getAdminNoticeHTML(n.data.errorMsg,"error")):r.html(Give.notice.fn.getAdminNoticeHTML(give_addon_var.notices.invalid_license,"error"));else if(n.data.hasOwnProperty("download")&&n.data.download){var t="string"==typeof n.data.download?give_addon_var.notices.download_file.replace("{link}",n.data.download):give_addon_var.notices.download_file.substring(0,give_addon_var.notices.download_file.indexOf(".")+1);r.html(Give.notice.fn.getAdminNoticeHTML(t,"success")),e.parent().parent().removeClass("give-hidden"),e.html(n.data.html)}else r.html(Give.notice.fn.getAdminNoticeHTML(give_addon_var.notices.invalid_license,"error"))}}).always((function(){Give.fn.loader(e,{show:!1}),o.val(o.attr("data-activate")),o.prop("disabled",!1)})),!1):(r.show(),r.html(Give.notice.fn.getAdminNoticeHTML(give_addon_var.notices.invalid_license,"error")),!1)})),e.on("click",".give-button__license-activate",(function(n){n.preventDefault();var a=t(this),i=a.parents(".give-addon-wrap"),o=t(".give-license-notice-container",i),r=a.prev('.give-license__key input[type="text"]').val().trim();o.empty().removeClass("give-addon-notice-shown").show(),r?t.ajax({url:ajaxurl,method:"POST",data:{action:"give_get_license_info",license:r,single:1,addon:a.attr("data-addon"),_wpnonce:t("#give_license_activator_nonce").val().trim()},beforeSend:function(){Give.fn.loader(i)},success:function(n){!0!==n.success?o.addClass("give-addon-notice-shown").prepend(Give.notice.fn.getAdminNoticeHTML(n.data.errorMsg,"error")):n.data.hasOwnProperty("is_all_access_pass")&&n.data.is_all_access_pass?e.html(n.data.html):i.replaceWith(n.data.html)}}).done((function(){Give.fn.loader(i,{show:!1})})):o.addClass("give-addon-notice-shown").prepend(Give.notice.fn.getAdminNoticeHTML(give_addon_var.notices.invalid_license,"error")),e.on("click",".notice-dismiss",(function(){o.slideUp(150,(function(){o.removeClass("give-addon-notice-shown")}))}))})),e.on("click",".give-license__deactivate",(function(n){n.preventDefault();var a=t(this),i=a.parents(".give-addon-wrap"),o=t(".give-license-notice-container",i),r=1<a.parents(".give-addon-inner").find(".give-addon-info-wrap").length,d=t(".give-addon-wrap").index(i);o.empty().removeClass("give-addon-notice-shown").show(),t.ajax({url:ajaxurl,method:"POST",data:{action:"give_deactivate_license",license:a.attr("data-license-key"),item_name:a.attr("data-item-name"),plugin_dirname:a.attr("data-plugin-dirname"),_wpnonce:a.attr("data-nonce")},beforeSend:function(){r?Give.fn.loader(e):Give.fn.loader(i)},success:function(n){!0===n.success?(r?e.html(n.data.html):i.replaceWith(n.data.html),i=t(".give-addon-wrap").get(d),(o=t(".give-license-notice-container",i)).addClass("give-addon-notice-shown").prepend(Give.notice.fn.getAdminNoticeHTML(n.data.msg,"success")),e.html().trim().length||e.parent().parent().addClass("give-hidden")):o.addClass("give-addon-notice-shown").prepend(Give.notice.fn.getAdminNoticeHTML(n.data.errorMsg,"error"))}}).done((function(){r?Give.fn.loader(e,{show:!1}):Give.fn.loader(i,{show:!1})})),e.on("click",".notice-dismiss",(function(){o.slideUp(150,(function(){o.removeClass("give-addon-notice-shown")}))}))})),e.on("click",".give-button__license-reactivate",(function(n){n.preventDefault();var a=t(this),i=a.attr("data-license").trim(),o=t(".give-addon-wrap").index(r),r=a.parents(".give-addon-wrap"),d=t(".give-license-notice-container",r);d.empty().removeClass("give-addon-notice-shown").show(),i?t.ajax({url:ajaxurl,method:"POST",data:{action:"give_get_license_info",license:i,single:1,reactivate:1,addon:a.attr("data-addon"),_wpnonce:t("#give_license_activator_nonce").val().trim()},beforeSend:function(){Give.fn.loader(r)},success:function(n){!0!==n.success?(n.data.hasOwnProperty("html")&&n.data.html.length&&(n.data.hasOwnProperty("is_all_access_pass")&&n.data.is_all_access_pass?e.html(n.data.html):r.replaceWith(n.data.html)),r=t(".give-addon-wrap").get(o),(d=t(".give-license-notice-container",r)).addClass("give-addon-notice-shown").prepend(Give.notice.fn.getAdminNoticeHTML(n.data.errorMsg,"error"))):n.data.hasOwnProperty("is_all_access_pass")&&n.data.is_all_access_pass?e.html(n.data.html):r.replaceWith(n.data.html)}}).done((function(){Give.fn.loader(r,{show:!1})})):d.addClass("give-addon-notice-shown").prepend(Give.notice.fn.getAdminNoticeHTML(give_addon_var.notices.invalid_license,"error")),e.on("click",".notice-dismiss",(function(){d.slideUp(150,(function(){d.removeClass("give-addon-notice-shown")}))}))})),t("#give-button__refresh-licenses").on("click",(function(n){n.preventDefault();var a=t(this);t.ajax({url:ajaxurl,method:"POST",data:{action:"give_refresh_all_licenses",_wpnonce:a.attr("data-nonce")},beforeSend:function(){a.text(a.attr("data-activating")),Give.fn.loader(e)},success:function(n){!0===n.success&&(e.html(n.data.html),t("#give-last-refresh-notice").text(n.data.lastUpdateMsg)),n.success&&!n.data.refreshButton||a.prop("disabled",!0)}}).done((function(){Give.fn.loader(e,{show:!1}),a.text(a.attr("data-activate"))}))}))})),t(document).ready((function(){var e=t(".give-upload-addon-form-wrap"),n=t("form",e),a=t('input[type="file"]',n),i=t(".give-activate-addon-wrap",n),o=t("button",n),r=t(".give-addon-upload-notices",n),d=t("#give-licenses-container");function c(a){r.empty(),t.ajax({url:"".concat(ajaxurl,"?action=give_upload_addon&_wpnonce=").concat(t('input[name="_give_upload_addon"]',n).val().trim()),method:"POST",data:a,contentType:!1,processData:!1,dataType:"json",beforeSend:function(){r.show(),Give.fn.loader(e,{loadingText:Give.fn.getGlobalVar("loader_translation").uploading})},success:function(e){var n;if(!0===e.success)return r.hide(),i.show(),o.attr("data-pluginPath",e.data.pluginPath),o.attr("data-pluginName",e.data.pluginName),o.attr("data-nonce",e.data.nonce),void d.html(e.data.licenseSectionHtml);n=e.data.hasOwnProperty("errorMsg")&&e.data.errorMsg?e.data.errorMsg:e.data.error,r.html(Give.notice.fn.getAdminNoticeHTML(n,"error"))}}).always((function(){Give.fn.loader(e,{show:!1})}))}e.on("drop",(function(e){e.stopPropagation(),e.preventDefault(),t(this).removeClass("give-dropzone-active");var n=e.originalEvent.dataTransfer.files,a=new FormData;a.append("file",n[0]),c(a)})),n.on("dragover",(function(e){t(this).addClass("give-dropzone-active")})).on("dragleave",(function(e){t(this).removeClass("give-dropzone-active")})),r.on("click",t(".notice-dismiss",r),(function(e){r.empty().hide(),n.removeClass("give-dropzone-active")})),a.on("change",(function(e){e.stopPropagation(),e.preventDefault();var n=new FormData,t=a[0].files[0];if(!t)return!1;n.append("file",t),c(n)})),o.on("click",(function(e){e.preventDefault(),r.empty(),t.ajax({url:ajaxurl,method:"POST",data:{action:"give_activate_addon",plugin:o.attr("data-pluginPath"),_wpnonce:o.attr("data-nonce")},beforeSend:function(){r.show(),o.text(o.attr("data-activating"))},success:function(e){if(!0===e.success){var n=give_addon_var.notices.addon_activated.replace("{pluginName}",o.attr("data-pluginName"));return r.show(),r.html(Give.notice.fn.getAdminNoticeHTML(n,"success")),void d.html(e.data.licenseSectionHtml)}e.data.hasOwnProperty("errorMsg")&&e.data.errorMsg?r.html(Give.notice.fn.getAdminNoticeHTML(e.data.errorMsg,"error")):Give.notice.fn.getAdminNoticeHTML(give_addon_var.notices.addon_activation_error,"error")}}).always((function(){o.text(o.attr("data-activate")),i.hide()}))}))}))}});
assets/dist/js/admin-global.js CHANGED
@@ -1 +1 @@
1
- !function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=170)}({170:function(e,t,n){e.exports=n(171)},171:function(e,t,n){}});
1
+ !function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=481)}({481:function(e,t,n){e.exports=n(482)},482:function(e,t,n){}});
assets/dist/js/admin-reports-widget.js ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
1
+ !function(e){var t={};function n(a){if(t[a])return t[a].exports;var r=t[a]={i:a,l:!1,exports:{}};return e[a].call(r.exports,r,r.exports,n),r.l=!0,r.exports}n.m=e,n.c=t,n.d=function(e,t,a){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:a})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var a=Object.create(null);if(n.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)n.d(a,r,function(t){return e[t]}.bind(null,r));return a},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=781)}([function(e,t,n){(function(e){e.exports=function(){"use strict";var t,a;function r(){return t.apply(null,arguments)}function i(e){return e instanceof Array||"[object Array]"===Object.prototype.toString.call(e)}function o(e){return null!=e&&"[object Object]"===Object.prototype.toString.call(e)}function s(e){return void 0===e}function l(e){return"number"==typeof e||"[object Number]"===Object.prototype.toString.call(e)}function d(e){return e instanceof Date||"[object Date]"===Object.prototype.toString.call(e)}function u(e,t){var n,a=[];for(n=0;n<e.length;++n)a.push(t(e[n],n));return a}function c(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function m(e,t){for(var n in t)c(t,n)&&(e[n]=t[n]);return c(t,"toString")&&(e.toString=t.toString),c(t,"valueOf")&&(e.valueOf=t.valueOf),e}function f(e,t,n,a){return wt(e,t,n,a,!0).utc()}function h(e){return null==e._pf&&(e._pf={empty:!1,unusedTokens:[],unusedInput:[],overflow:-2,charsLeftOver:0,nullInput:!1,invalidMonth:null,invalidFormat:!1,userInvalidated:!1,iso:!1,parsedDateParts:[],meridiem:null,rfc2822:!1,weekdayMismatch:!1}),e._pf}function _(e){if(null==e._isValid){var t=h(e),n=a.call(t.parsedDateParts,(function(e){return null!=e})),r=!isNaN(e._d.getTime())&&t.overflow<0&&!t.empty&&!t.invalidMonth&&!t.invalidWeekday&&!t.weekdayMismatch&&!t.nullInput&&!t.invalidFormat&&!t.userInvalidated&&(!t.meridiem||t.meridiem&&n);if(e._strict&&(r=r&&0===t.charsLeftOver&&0===t.unusedTokens.length&&void 0===t.bigHour),null!=Object.isFrozen&&Object.isFrozen(e))return r;e._isValid=r}return e._isValid}function p(e){var t=f(NaN);return null!=e?m(h(t),e):h(t).userInvalidated=!0,t}a=Array.prototype.some?Array.prototype.some:function(e){for(var t=Object(this),n=t.length>>>0,a=0;a<n;a++)if(a in t&&e.call(this,t[a],a,t))return!0;return!1};var y=r.momentProperties=[];function g(e,t){var n,a,r;if(s(t._isAMomentObject)||(e._isAMomentObject=t._isAMomentObject),s(t._i)||(e._i=t._i),s(t._f)||(e._f=t._f),s(t._l)||(e._l=t._l),s(t._strict)||(e._strict=t._strict),s(t._tzm)||(e._tzm=t._tzm),s(t._isUTC)||(e._isUTC=t._isUTC),s(t._offset)||(e._offset=t._offset),s(t._pf)||(e._pf=h(t)),s(t._locale)||(e._locale=t._locale),y.length>0)for(n=0;n<y.length;n++)s(r=t[a=y[n]])||(e[a]=r);return e}var M=!1;function v(e){g(this,e),this._d=new Date(null!=e._d?e._d.getTime():NaN),this.isValid()||(this._d=new Date(NaN)),!1===M&&(M=!0,r.updateOffset(this),M=!1)}function b(e){return e instanceof v||null!=e&&null!=e._isAMomentObject}function L(e){return e<0?Math.ceil(e)||0:Math.floor(e)}function k(e){var t=+e,n=0;return 0!==t&&isFinite(t)&&(n=L(t)),n}function w(e,t,n){var a,r=Math.min(e.length,t.length),i=Math.abs(e.length-t.length),o=0;for(a=0;a<r;a++)(n&&e[a]!==t[a]||!n&&k(e[a])!==k(t[a]))&&o++;return o+i}function x(e){!1===r.suppressDeprecationWarnings&&"undefined"!=typeof console&&console.warn&&console.warn("Deprecation warning: "+e)}function T(e,t){var n=!0;return m((function(){if(null!=r.deprecationHandler&&r.deprecationHandler(null,e),n){for(var a,i=[],o=0;o<arguments.length;o++){if(a="","object"==typeof arguments[o]){for(var s in a+="\n["+o+"] ",arguments[0])a+=s+": "+arguments[0][s]+", ";a=a.slice(0,-2)}else a=arguments[o];i.push(a)}x(e+"\nArguments: "+Array.prototype.slice.call(i).join("")+"\n"+(new Error).stack),n=!1}return t.apply(this,arguments)}),t)}var Y,D={};function S(e,t){null!=r.deprecationHandler&&r.deprecationHandler(e,t),D[e]||(x(t),D[e]=!0)}function E(e){return e instanceof Function||"[object Function]"===Object.prototype.toString.call(e)}function P(e,t){var n,a=m({},e);for(n in t)c(t,n)&&(o(e[n])&&o(t[n])?(a[n]={},m(a[n],e[n]),m(a[n],t[n])):null!=t[n]?a[n]=t[n]:delete a[n]);for(n in e)c(e,n)&&!c(t,n)&&o(e[n])&&(a[n]=m({},a[n]));return a}function H(e){null!=e&&this.set(e)}r.suppressDeprecationWarnings=!1,r.deprecationHandler=null,Y=Object.keys?Object.keys:function(e){var t,n=[];for(t in e)c(e,t)&&n.push(t);return n};var j={};function C(e,t){var n=e.toLowerCase();j[n]=j[n+"s"]=j[t]=e}function O(e){return"string"==typeof e?j[e]||j[e.toLowerCase()]:void 0}function F(e){var t,n,a={};for(n in e)c(e,n)&&(t=O(n))&&(a[t]=e[n]);return a}var A={};function R(e,t){A[e]=t}function W(e,t,n){var a=""+Math.abs(e),r=t-a.length;return(e>=0?n?"+":"":"-")+Math.pow(10,Math.max(0,r)).toString().substr(1)+a}var I=/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,z=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,N={},V={};function B(e,t,n,a){var r=a;"string"==typeof a&&(r=function(){return this[a]()}),e&&(V[e]=r),t&&(V[t[0]]=function(){return W(r.apply(this,arguments),t[1],t[2])}),n&&(V[n]=function(){return this.localeData().ordinal(r.apply(this,arguments),e)})}function U(e,t){return e.isValid()?(t=$(t,e.localeData()),N[t]=N[t]||function(e){var t,n,a,r=e.match(I);for(t=0,n=r.length;t<n;t++)V[r[t]]?r[t]=V[r[t]]:r[t]=(a=r[t]).match(/\[[\s\S]/)?a.replace(/^\[|\]$/g,""):a.replace(/\\/g,"");return function(t){var a,i="";for(a=0;a<n;a++)i+=E(r[a])?r[a].call(t,e):r[a];return i}}(t),N[t](e)):e.localeData().invalidDate()}function $(e,t){var n=5;function a(e){return t.longDateFormat(e)||e}for(z.lastIndex=0;n>=0&&z.test(e);)e=e.replace(z,a),z.lastIndex=0,n-=1;return e}var J=/\d/,q=/\d\d/,G=/\d{3}/,K=/\d{4}/,Q=/[+-]?\d{6}/,Z=/\d\d?/,X=/\d\d\d\d?/,ee=/\d\d\d\d\d\d?/,te=/\d{1,3}/,ne=/\d{1,4}/,ae=/[+-]?\d{1,6}/,re=/\d+/,ie=/[+-]?\d+/,oe=/Z|[+-]\d\d:?\d\d/gi,se=/Z|[+-]\d\d(?::?\d\d)?/gi,le=/[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i,de={};function ue(e,t,n){de[e]=E(t)?t:function(e,a){return e&&n?n:t}}function ce(e,t){return c(de,e)?de[e](t._strict,t._locale):new RegExp(me(e.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,(function(e,t,n,a,r){return t||n||a||r}))))}function me(e){return e.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}var fe={};function he(e,t){var n,a=t;for("string"==typeof e&&(e=[e]),l(t)&&(a=function(e,n){n[t]=k(e)}),n=0;n<e.length;n++)fe[e[n]]=a}function _e(e,t){he(e,(function(e,n,a,r){a._w=a._w||{},t(e,a._w,a,r)}))}function pe(e,t,n){null!=t&&c(fe,e)&&fe[e](t,n._a,n,e)}function ye(e){return ge(e)?366:365}function ge(e){return e%4==0&&e%100!=0||e%400==0}B("Y",0,0,(function(){var e=this.year();return e<=9999?""+e:"+"+e})),B(0,["YY",2],0,(function(){return this.year()%100})),B(0,["YYYY",4],0,"year"),B(0,["YYYYY",5],0,"year"),B(0,["YYYYYY",6,!0],0,"year"),C("year","y"),R("year",1),ue("Y",ie),ue("YY",Z,q),ue("YYYY",ne,K),ue("YYYYY",ae,Q),ue("YYYYYY",ae,Q),he(["YYYYY","YYYYYY"],0),he("YYYY",(function(e,t){t[0]=2===e.length?r.parseTwoDigitYear(e):k(e)})),he("YY",(function(e,t){t[0]=r.parseTwoDigitYear(e)})),he("Y",(function(e,t){t[0]=parseInt(e,10)})),r.parseTwoDigitYear=function(e){return k(e)+(k(e)>68?1900:2e3)};var Me,ve=be("FullYear",!0);function be(e,t){return function(n){return null!=n?(ke(this,e,n),r.updateOffset(this,t),this):Le(this,e)}}function Le(e,t){return e.isValid()?e._d["get"+(e._isUTC?"UTC":"")+t]():NaN}function ke(e,t,n){e.isValid()&&!isNaN(n)&&("FullYear"===t&&ge(e.year())&&1===e.month()&&29===e.date()?e._d["set"+(e._isUTC?"UTC":"")+t](n,e.month(),we(n,e.month())):e._d["set"+(e._isUTC?"UTC":"")+t](n))}function we(e,t){if(isNaN(e)||isNaN(t))return NaN;var n,a=(t%(n=12)+n)%n;return e+=(t-a)/12,1===a?ge(e)?29:28:31-a%7%2}Me=Array.prototype.indexOf?Array.prototype.indexOf:function(e){var t;for(t=0;t<this.length;++t)if(this[t]===e)return t;return-1},B("M",["MM",2],"Mo",(function(){return this.month()+1})),B("MMM",0,0,(function(e){return this.localeData().monthsShort(this,e)})),B("MMMM",0,0,(function(e){return this.localeData().months(this,e)})),C("month","M"),R("month",8),ue("M",Z),ue("MM",Z,q),ue("MMM",(function(e,t){return t.monthsShortRegex(e)})),ue("MMMM",(function(e,t){return t.monthsRegex(e)})),he(["M","MM"],(function(e,t){t[1]=k(e)-1})),he(["MMM","MMMM"],(function(e,t,n,a){var r=n._locale.monthsParse(e,a,n._strict);null!=r?t[1]=r:h(n).invalidMonth=e}));var xe=/D[oD]?(\[[^\[\]]*\]|\s)+MMMM?/,Te="January_February_March_April_May_June_July_August_September_October_November_December".split("_"),Ye="Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_");function De(e,t,n){var a,r,i,o=e.toLocaleLowerCase();if(!this._monthsParse)for(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[],a=0;a<12;++a)i=f([2e3,a]),this._shortMonthsParse[a]=this.monthsShort(i,"").toLocaleLowerCase(),this._longMonthsParse[a]=this.months(i,"").toLocaleLowerCase();return n?"MMM"===t?-1!==(r=Me.call(this._shortMonthsParse,o))?r:null:-1!==(r=Me.call(this._longMonthsParse,o))?r:null:"MMM"===t?-1!==(r=Me.call(this._shortMonthsParse,o))?r:-1!==(r=Me.call(this._longMonthsParse,o))?r:null:-1!==(r=Me.call(this._longMonthsParse,o))?r:-1!==(r=Me.call(this._shortMonthsParse,o))?r:null}function Se(e,t){var n;if(!e.isValid())return e;if("string"==typeof t)if(/^\d+$/.test(t))t=k(t);else if(!l(t=e.localeData().monthsParse(t)))return e;return n=Math.min(e.date(),we(e.year(),t)),e._d["set"+(e._isUTC?"UTC":"")+"Month"](t,n),e}function Ee(e){return null!=e?(Se(this,e),r.updateOffset(this,!0),this):Le(this,"Month")}var Pe=le,He=le;function je(){function e(e,t){return t.length-e.length}var t,n,a=[],r=[],i=[];for(t=0;t<12;t++)n=f([2e3,t]),a.push(this.monthsShort(n,"")),r.push(this.months(n,"")),i.push(this.months(n,"")),i.push(this.monthsShort(n,""));for(a.sort(e),r.sort(e),i.sort(e),t=0;t<12;t++)a[t]=me(a[t]),r[t]=me(r[t]);for(t=0;t<24;t++)i[t]=me(i[t]);this._monthsRegex=new RegExp("^("+i.join("|")+")","i"),this._monthsShortRegex=this._monthsRegex,this._monthsStrictRegex=new RegExp("^("+r.join("|")+")","i"),this._monthsShortStrictRegex=new RegExp("^("+a.join("|")+")","i")}function Ce(e,t,n,a,r,i,o){var s;return e<100&&e>=0?(s=new Date(e+400,t,n,a,r,i,o),isFinite(s.getFullYear())&&s.setFullYear(e)):s=new Date(e,t,n,a,r,i,o),s}function Oe(e){var t;if(e<100&&e>=0){var n=Array.prototype.slice.call(arguments);n[0]=e+400,t=new Date(Date.UTC.apply(null,n)),isFinite(t.getUTCFullYear())&&t.setUTCFullYear(e)}else t=new Date(Date.UTC.apply(null,arguments));return t}function Fe(e,t,n){var a=7+t-n;return-(7+Oe(e,0,a).getUTCDay()-t)%7+a-1}function Ae(e,t,n,a,r){var i,o,s=1+7*(t-1)+(7+n-a)%7+Fe(e,a,r);return s<=0?o=ye(i=e-1)+s:s>ye(e)?(i=e+1,o=s-ye(e)):(i=e,o=s),{year:i,dayOfYear:o}}function Re(e,t,n){var a,r,i=Fe(e.year(),t,n),o=Math.floor((e.dayOfYear()-i-1)/7)+1;return o<1?a=o+We(r=e.year()-1,t,n):o>We(e.year(),t,n)?(a=o-We(e.year(),t,n),r=e.year()+1):(r=e.year(),a=o),{week:a,year:r}}function We(e,t,n){var a=Fe(e,t,n),r=Fe(e+1,t,n);return(ye(e)-a+r)/7}function Ie(e,t){return e.slice(t,7).concat(e.slice(0,t))}B("w",["ww",2],"wo","week"),B("W",["WW",2],"Wo","isoWeek"),C("week","w"),C("isoWeek","W"),R("week",5),R("isoWeek",5),ue("w",Z),ue("ww",Z,q),ue("W",Z),ue("WW",Z,q),_e(["w","ww","W","WW"],(function(e,t,n,a){t[a.substr(0,1)]=k(e)})),B("d",0,"do","day"),B("dd",0,0,(function(e){return this.localeData().weekdaysMin(this,e)})),B("ddd",0,0,(function(e){return this.localeData().weekdaysShort(this,e)})),B("dddd",0,0,(function(e){return this.localeData().weekdays(this,e)})),B("e",0,0,"weekday"),B("E",0,0,"isoWeekday"),C("day","d"),C("weekday","e"),C("isoWeekday","E"),R("day",11),R("weekday",11),R("isoWeekday",11),ue("d",Z),ue("e",Z),ue("E",Z),ue("dd",(function(e,t){return t.weekdaysMinRegex(e)})),ue("ddd",(function(e,t){return t.weekdaysShortRegex(e)})),ue("dddd",(function(e,t){return t.weekdaysRegex(e)})),_e(["dd","ddd","dddd"],(function(e,t,n,a){var r=n._locale.weekdaysParse(e,a,n._strict);null!=r?t.d=r:h(n).invalidWeekday=e})),_e(["d","e","E"],(function(e,t,n,a){t[a]=k(e)}));var ze="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),Ne="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),Ve="Su_Mo_Tu_We_Th_Fr_Sa".split("_");function Be(e,t,n){var a,r,i,o=e.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],a=0;a<7;++a)i=f([2e3,1]).day(a),this._minWeekdaysParse[a]=this.weekdaysMin(i,"").toLocaleLowerCase(),this._shortWeekdaysParse[a]=this.weekdaysShort(i,"").toLocaleLowerCase(),this._weekdaysParse[a]=this.weekdays(i,"").toLocaleLowerCase();return n?"dddd"===t?-1!==(r=Me.call(this._weekdaysParse,o))?r:null:"ddd"===t?-1!==(r=Me.call(this._shortWeekdaysParse,o))?r:null:-1!==(r=Me.call(this._minWeekdaysParse,o))?r:null:"dddd"===t?-1!==(r=Me.call(this._weekdaysParse,o))?r:-1!==(r=Me.call(this._shortWeekdaysParse,o))?r:-1!==(r=Me.call(this._minWeekdaysParse,o))?r:null:"ddd"===t?-1!==(r=Me.call(this._shortWeekdaysParse,o))?r:-1!==(r=Me.call(this._weekdaysParse,o))?r:-1!==(r=Me.call(this._minWeekdaysParse,o))?r:null:-1!==(r=Me.call(this._minWeekdaysParse,o))?r:-1!==(r=Me.call(this._weekdaysParse,o))?r:-1!==(r=Me.call(this._shortWeekdaysParse,o))?r:null}var Ue=le,$e=le,Je=le;function qe(){function e(e,t){return t.length-e.length}var t,n,a,r,i,o=[],s=[],l=[],d=[];for(t=0;t<7;t++)n=f([2e3,1]).day(t),a=this.weekdaysMin(n,""),r=this.weekdaysShort(n,""),i=this.weekdays(n,""),o.push(a),s.push(r),l.push(i),d.push(a),d.push(r),d.push(i);for(o.sort(e),s.sort(e),l.sort(e),d.sort(e),t=0;t<7;t++)s[t]=me(s[t]),l[t]=me(l[t]),d[t]=me(d[t]);this._weekdaysRegex=new RegExp("^("+d.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+l.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+s.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+o.join("|")+")","i")}function Ge(){return this.hours()%12||12}function Ke(e,t){B(e,0,0,(function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)}))}function Qe(e,t){return t._meridiemParse}B("H",["HH",2],0,"hour"),B("h",["hh",2],0,Ge),B("k",["kk",2],0,(function(){return this.hours()||24})),B("hmm",0,0,(function(){return""+Ge.apply(this)+W(this.minutes(),2)})),B("hmmss",0,0,(function(){return""+Ge.apply(this)+W(this.minutes(),2)+W(this.seconds(),2)})),B("Hmm",0,0,(function(){return""+this.hours()+W(this.minutes(),2)})),B("Hmmss",0,0,(function(){return""+this.hours()+W(this.minutes(),2)+W(this.seconds(),2)})),Ke("a",!0),Ke("A",!1),C("hour","h"),R("hour",13),ue("a",Qe),ue("A",Qe),ue("H",Z),ue("h",Z),ue("k",Z),ue("HH",Z,q),ue("hh",Z,q),ue("kk",Z,q),ue("hmm",X),ue("hmmss",ee),ue("Hmm",X),ue("Hmmss",ee),he(["H","HH"],3),he(["k","kk"],(function(e,t,n){var a=k(e);t[3]=24===a?0:a})),he(["a","A"],(function(e,t,n){n._isPm=n._locale.isPM(e),n._meridiem=e})),he(["h","hh"],(function(e,t,n){t[3]=k(e),h(n).bigHour=!0})),he("hmm",(function(e,t,n){var a=e.length-2;t[3]=k(e.substr(0,a)),t[4]=k(e.substr(a)),h(n).bigHour=!0})),he("hmmss",(function(e,t,n){var a=e.length-4,r=e.length-2;t[3]=k(e.substr(0,a)),t[4]=k(e.substr(a,2)),t[5]=k(e.substr(r)),h(n).bigHour=!0})),he("Hmm",(function(e,t,n){var a=e.length-2;t[3]=k(e.substr(0,a)),t[4]=k(e.substr(a))})),he("Hmmss",(function(e,t,n){var a=e.length-4,r=e.length-2;t[3]=k(e.substr(0,a)),t[4]=k(e.substr(a,2)),t[5]=k(e.substr(r))}));var Ze,Xe=be("Hours",!0),et={calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},longDateFormat:{LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},invalidDate:"Invalid date",ordinal:"%d",dayOfMonthOrdinalParse:/\d{1,2}/,relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},months:Te,monthsShort:Ye,week:{dow:0,doy:6},weekdays:ze,weekdaysMin:Ve,weekdaysShort:Ne,meridiemParse:/[ap]\.?m?\.?/i},tt={},nt={};function at(e){return e?e.toLowerCase().replace("_","-"):e}function rt(t){var a=null;if(!tt[t]&&void 0!==e&&e&&e.exports)try{a=Ze._abbr,n(313)("./"+t),it(a)}catch(e){}return tt[t]}function it(e,t){var n;return e&&((n=s(t)?st(e):ot(e,t))?Ze=n:"undefined"!=typeof console&&console.warn&&console.warn("Locale "+e+" not found. Did you forget to load it?")),Ze._abbr}function ot(e,t){if(null!==t){var n,a=et;if(t.abbr=e,null!=tt[e])S("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),a=tt[e]._config;else if(null!=t.parentLocale)if(null!=tt[t.parentLocale])a=tt[t.parentLocale]._config;else{if(null==(n=rt(t.parentLocale)))return nt[t.parentLocale]||(nt[t.parentLocale]=[]),nt[t.parentLocale].push({name:e,config:t}),null;a=n._config}return tt[e]=new H(P(a,t)),nt[e]&&nt[e].forEach((function(e){ot(e.name,e.config)})),it(e),tt[e]}return delete tt[e],null}function st(e){var t;if(e&&e._locale&&e._locale._abbr&&(e=e._locale._abbr),!e)return Ze;if(!i(e)){if(t=rt(e))return t;e=[e]}return function(e){for(var t,n,a,r,i=0;i<e.length;){for(t=(r=at(e[i]).split("-")).length,n=(n=at(e[i+1]))?n.split("-"):null;t>0;){if(a=rt(r.slice(0,t).join("-")))return a;if(n&&n.length>=t&&w(r,n,!0)>=t-1)break;t--}i++}return Ze}(e)}function lt(e){var t,n=e._a;return n&&-2===h(e).overflow&&(t=n[1]<0||n[1]>11?1:n[2]<1||n[2]>we(n[0],n[1])?2:n[3]<0||n[3]>24||24===n[3]&&(0!==n[4]||0!==n[5]||0!==n[6])?3:n[4]<0||n[4]>59?4:n[5]<0||n[5]>59?5:n[6]<0||n[6]>999?6:-1,h(e)._overflowDayOfYear&&(t<0||t>2)&&(t=2),h(e)._overflowWeeks&&-1===t&&(t=7),h(e)._overflowWeekday&&-1===t&&(t=8),h(e).overflow=t),e}function dt(e,t,n){return null!=e?e:null!=t?t:n}function ut(e){var t,n,a,i,o,s=[];if(!e._d){for(a=function(e){var t=new Date(r.now());return e._useUTC?[t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate()]:[t.getFullYear(),t.getMonth(),t.getDate()]}(e),e._w&&null==e._a[2]&&null==e._a[1]&&function(e){var t,n,a,r,i,o,s,l;if(null!=(t=e._w).GG||null!=t.W||null!=t.E)i=1,o=4,n=dt(t.GG,e._a[0],Re(xt(),1,4).year),a=dt(t.W,1),((r=dt(t.E,1))<1||r>7)&&(l=!0);else{i=e._locale._week.dow,o=e._locale._week.doy;var d=Re(xt(),i,o);n=dt(t.gg,e._a[0],d.year),a=dt(t.w,d.week),null!=t.d?((r=t.d)<0||r>6)&&(l=!0):null!=t.e?(r=t.e+i,(t.e<0||t.e>6)&&(l=!0)):r=i}a<1||a>We(n,i,o)?h(e)._overflowWeeks=!0:null!=l?h(e)._overflowWeekday=!0:(s=Ae(n,a,r,i,o),e._a[0]=s.year,e._dayOfYear=s.dayOfYear)}(e),null!=e._dayOfYear&&(o=dt(e._a[0],a[0]),(e._dayOfYear>ye(o)||0===e._dayOfYear)&&(h(e)._overflowDayOfYear=!0),n=Oe(o,0,e._dayOfYear),e._a[1]=n.getUTCMonth(),e._a[2]=n.getUTCDate()),t=0;t<3&&null==e._a[t];++t)e._a[t]=s[t]=a[t];for(;t<7;t++)e._a[t]=s[t]=null==e._a[t]?2===t?1:0:e._a[t];24===e._a[3]&&0===e._a[4]&&0===e._a[5]&&0===e._a[6]&&(e._nextDay=!0,e._a[3]=0),e._d=(e._useUTC?Oe:Ce).apply(null,s),i=e._useUTC?e._d.getUTCDay():e._d.getDay(),null!=e._tzm&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[3]=24),e._w&&void 0!==e._w.d&&e._w.d!==i&&(h(e).weekdayMismatch=!0)}}var ct=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,mt=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,ft=/Z|[+-]\d\d(?::?\d\d)?/,ht=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/]],_t=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],pt=/^\/?Date\((\-?\d+)/i;function yt(e){var t,n,a,r,i,o,s=e._i,l=ct.exec(s)||mt.exec(s);if(l){for(h(e).iso=!0,t=0,n=ht.length;t<n;t++)if(ht[t][1].exec(l[1])){r=ht[t][0],a=!1!==ht[t][2];break}if(null==r)return void(e._isValid=!1);if(l[3]){for(t=0,n=_t.length;t<n;t++)if(_t[t][1].exec(l[3])){i=(l[2]||" ")+_t[t][0];break}if(null==i)return void(e._isValid=!1)}if(!a&&null!=i)return void(e._isValid=!1);if(l[4]){if(!ft.exec(l[4]))return void(e._isValid=!1);o="Z"}e._f=r+(i||"")+(o||""),Lt(e)}else e._isValid=!1}var gt=/^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/;function Mt(e){var t=parseInt(e,10);return t<=49?2e3+t:t<=999?1900+t:t}var vt={UT:0,GMT:0,EDT:-240,EST:-300,CDT:-300,CST:-360,MDT:-360,MST:-420,PDT:-420,PST:-480};function bt(e){var t,n,a,r,i,o,s,l=gt.exec(e._i.replace(/\([^)]*\)|[\n\t]/g," ").replace(/(\s\s+)/g," ").replace(/^\s\s*/,"").replace(/\s\s*$/,""));if(l){var d=(t=l[4],n=l[3],a=l[2],r=l[5],i=l[6],o=l[7],s=[Mt(t),Ye.indexOf(n),parseInt(a,10),parseInt(r,10),parseInt(i,10)],o&&s.push(parseInt(o,10)),s);if(!function(e,t,n){return!e||Ne.indexOf(e)===new Date(t[0],t[1],t[2]).getDay()||(h(n).weekdayMismatch=!0,n._isValid=!1,!1)}(l[1],d,e))return;e._a=d,e._tzm=function(e,t,n){if(e)return vt[e];if(t)return 0;var a=parseInt(n,10),r=a%100;return(a-r)/100*60+r}(l[8],l[9],l[10]),e._d=Oe.apply(null,e._a),e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),h(e).rfc2822=!0}else e._isValid=!1}function Lt(e){if(e._f!==r.ISO_8601)if(e._f!==r.RFC_2822){e._a=[],h(e).empty=!0;var t,n,a,i,o,s=""+e._i,l=s.length,d=0;for(a=$(e._f,e._locale).match(I)||[],t=0;t<a.length;t++)i=a[t],(n=(s.match(ce(i,e))||[])[0])&&((o=s.substr(0,s.indexOf(n))).length>0&&h(e).unusedInput.push(o),s=s.slice(s.indexOf(n)+n.length),d+=n.length),V[i]?(n?h(e).empty=!1:h(e).unusedTokens.push(i),pe(i,n,e)):e._strict&&!n&&h(e).unusedTokens.push(i);h(e).charsLeftOver=l-d,s.length>0&&h(e).unusedInput.push(s),e._a[3]<=12&&!0===h(e).bigHour&&e._a[3]>0&&(h(e).bigHour=void 0),h(e).parsedDateParts=e._a.slice(0),h(e).meridiem=e._meridiem,e._a[3]=function(e,t,n){var a;return null==n?t:null!=e.meridiemHour?e.meridiemHour(t,n):null!=e.isPM?((a=e.isPM(n))&&t<12&&(t+=12),a||12!==t||(t=0),t):t}(e._locale,e._a[3],e._meridiem),ut(e),lt(e)}else bt(e);else yt(e)}function kt(e){var t=e._i,n=e._f;return e._locale=e._locale||st(e._l),null===t||void 0===n&&""===t?p({nullInput:!0}):("string"==typeof t&&(e._i=t=e._locale.preparse(t)),b(t)?new v(lt(t)):(d(t)?e._d=t:i(n)?function(e){var t,n,a,r,i;if(0===e._f.length)return h(e).invalidFormat=!0,void(e._d=new Date(NaN));for(r=0;r<e._f.length;r++)i=0,t=g({},e),null!=e._useUTC&&(t._useUTC=e._useUTC),t._f=e._f[r],Lt(t),_(t)&&(i+=h(t).charsLeftOver,i+=10*h(t).unusedTokens.length,h(t).score=i,(null==a||i<a)&&(a=i,n=t));m(e,n||t)}(e):n?Lt(e):function(e){var t=e._i;s(t)?e._d=new Date(r.now()):d(t)?e._d=new Date(t.valueOf()):"string"==typeof t?function(e){var t=pt.exec(e._i);null===t?(yt(e),!1===e._isValid&&(delete e._isValid,bt(e),!1===e._isValid&&(delete e._isValid,r.createFromInputFallback(e)))):e._d=new Date(+t[1])}(e):i(t)?(e._a=u(t.slice(0),(function(e){return parseInt(e,10)})),ut(e)):o(t)?function(e){if(!e._d){var t=F(e._i);e._a=u([t.year,t.month,t.day||t.date,t.hour,t.minute,t.second,t.millisecond],(function(e){return e&&parseInt(e,10)})),ut(e)}}(e):l(t)?e._d=new Date(t):r.createFromInputFallback(e)}(e),_(e)||(e._d=null),e))}function wt(e,t,n,a,r){var s,l={};return!0!==n&&!1!==n||(a=n,n=void 0),(o(e)&&function(e){if(Object.getOwnPropertyNames)return 0===Object.getOwnPropertyNames(e).length;var t;for(t in e)if(e.hasOwnProperty(t))return!1;return!0}(e)||i(e)&&0===e.length)&&(e=void 0),l._isAMomentObject=!0,l._useUTC=l._isUTC=r,l._l=n,l._i=e,l._f=t,l._strict=a,(s=new v(lt(kt(l))))._nextDay&&(s.add(1,"d"),s._nextDay=void 0),s}function xt(e,t,n,a){return wt(e,t,n,a,!1)}r.createFromInputFallback=T("value provided is not in a recognized RFC2822 or ISO format. moment construction falls back to js Date(), which is not reliable across all browsers and versions. Non RFC2822/ISO date formats are discouraged and will be removed in an upcoming major release. Please refer to http://momentjs.com/guides/#/warnings/js-date/ for more info.",(function(e){e._d=new Date(e._i+(e._useUTC?" UTC":""))})),r.ISO_8601=function(){},r.RFC_2822=function(){};var Tt=T("moment().min is deprecated, use moment.max instead. http://momentjs.com/guides/#/warnings/min-max/",(function(){var e=xt.apply(null,arguments);return this.isValid()&&e.isValid()?e<this?this:e:p()})),Yt=T("moment().max is deprecated, use moment.min instead. http://momentjs.com/guides/#/warnings/min-max/",(function(){var e=xt.apply(null,arguments);return this.isValid()&&e.isValid()?e>this?this:e:p()}));function Dt(e,t){var n,a;if(1===t.length&&i(t[0])&&(t=t[0]),!t.length)return xt();for(n=t[0],a=1;a<t.length;++a)t[a].isValid()&&!t[a][e](n)||(n=t[a]);return n}var St=["year","quarter","month","week","day","hour","minute","second","millisecond"];function Et(e){var t=F(e),n=t.year||0,a=t.quarter||0,r=t.month||0,i=t.week||t.isoWeek||0,o=t.day||0,s=t.hour||0,l=t.minute||0,d=t.second||0,u=t.millisecond||0;this._isValid=function(e){for(var t in e)if(-1===Me.call(St,t)||null!=e[t]&&isNaN(e[t]))return!1;for(var n=!1,a=0;a<St.length;++a)if(e[St[a]]){if(n)return!1;parseFloat(e[St[a]])!==k(e[St[a]])&&(n=!0)}return!0}(t),this._milliseconds=+u+1e3*d+6e4*l+1e3*s*60*60,this._days=+o+7*i,this._months=+r+3*a+12*n,this._data={},this._locale=st(),this._bubble()}function Pt(e){return e instanceof Et}function Ht(e){return e<0?-1*Math.round(-1*e):Math.round(e)}function jt(e,t){B(e,0,0,(function(){var e=this.utcOffset(),n="+";return e<0&&(e=-e,n="-"),n+W(~~(e/60),2)+t+W(~~e%60,2)}))}jt("Z",":"),jt("ZZ",""),ue("Z",se),ue("ZZ",se),he(["Z","ZZ"],(function(e,t,n){n._useUTC=!0,n._tzm=Ot(se,e)}));var Ct=/([\+\-]|\d\d)/gi;function Ot(e,t){var n=(t||"").match(e);if(null===n)return null;var a=((n[n.length-1]||[])+"").match(Ct)||["-",0,0],r=60*a[1]+k(a[2]);return 0===r?0:"+"===a[0]?r:-r}function Ft(e,t){var n,a;return t._isUTC?(n=t.clone(),a=(b(e)||d(e)?e.valueOf():xt(e).valueOf())-n.valueOf(),n._d.setTime(n._d.valueOf()+a),r.updateOffset(n,!1),n):xt(e).local()}function At(e){return 15*-Math.round(e._d.getTimezoneOffset()/15)}function Rt(){return!!this.isValid()&&this._isUTC&&0===this._offset}r.updateOffset=function(){};var Wt=/^(\-|\+)?(?:(\d*)[. ])?(\d+)\:(\d+)(?:\:(\d+)(\.\d*)?)?$/,It=/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;function zt(e,t){var n,a,r,i,o,s,d=e,u=null;return Pt(e)?d={ms:e._milliseconds,d:e._days,M:e._months}:l(e)?(d={},t?d[t]=e:d.milliseconds=e):(u=Wt.exec(e))?(n="-"===u[1]?-1:1,d={y:0,d:k(u[2])*n,h:k(u[3])*n,m:k(u[4])*n,s:k(u[5])*n,ms:k(Ht(1e3*u[6]))*n}):(u=It.exec(e))?(n="-"===u[1]?-1:1,d={y:Nt(u[2],n),M:Nt(u[3],n),w:Nt(u[4],n),d:Nt(u[5],n),h:Nt(u[6],n),m:Nt(u[7],n),s:Nt(u[8],n)}):null==d?d={}:"object"==typeof d&&("from"in d||"to"in d)&&(i=xt(d.from),o=xt(d.to),r=i.isValid()&&o.isValid()?(o=Ft(o,i),i.isBefore(o)?s=Vt(i,o):((s=Vt(o,i)).milliseconds=-s.milliseconds,s.months=-s.months),s):{milliseconds:0,months:0},(d={}).ms=r.milliseconds,d.M=r.months),a=new Et(d),Pt(e)&&c(e,"_locale")&&(a._locale=e._locale),a}function Nt(e,t){var n=e&&parseFloat(e.replace(",","."));return(isNaN(n)?0:n)*t}function Vt(e,t){var n={};return n.months=t.month()-e.month()+12*(t.year()-e.year()),e.clone().add(n.months,"M").isAfter(t)&&--n.months,n.milliseconds=+t-+e.clone().add(n.months,"M"),n}function Bt(e,t){return function(n,a){var r;return null===a||isNaN(+a)||(S(t,"moment()."+t+"(period, number) is deprecated. Please use moment()."+t+"(number, period). See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info."),r=n,n=a,a=r),Ut(this,zt(n="string"==typeof n?+n:n,a),e),this}}function Ut(e,t,n,a){var i=t._milliseconds,o=Ht(t._days),s=Ht(t._months);e.isValid()&&(a=null==a||a,s&&Se(e,Le(e,"Month")+s*n),o&&ke(e,"Date",Le(e,"Date")+o*n),i&&e._d.setTime(e._d.valueOf()+i*n),a&&r.updateOffset(e,o||s))}zt.fn=Et.prototype,zt.invalid=function(){return zt(NaN)};var $t=Bt(1,"add"),Jt=Bt(-1,"subtract");function qt(e,t){var n=12*(t.year()-e.year())+(t.month()-e.month()),a=e.clone().add(n,"months");return-(n+(t-a<0?(t-a)/(a-e.clone().add(n-1,"months")):(t-a)/(e.clone().add(n+1,"months")-a)))||0}function Gt(e){var t;return void 0===e?this._locale._abbr:(null!=(t=st(e))&&(this._locale=t),this)}r.defaultFormat="YYYY-MM-DDTHH:mm:ssZ",r.defaultFormatUtc="YYYY-MM-DDTHH:mm:ss[Z]";var Kt=T("moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.",(function(e){return void 0===e?this.localeData():this.locale(e)}));function Qt(){return this._locale}function Zt(e,t){return(e%t+t)%t}function Xt(e,t,n){return e<100&&e>=0?new Date(e+400,t,n)-126227808e5:new Date(e,t,n).valueOf()}function en(e,t,n){return e<100&&e>=0?Date.UTC(e+400,t,n)-126227808e5:Date.UTC(e,t,n)}function tn(e,t){B(0,[e,e.length],0,t)}function nn(e,t,n,a,r){var i;return null==e?Re(this,a,r).year:(t>(i=We(e,a,r))&&(t=i),an.call(this,e,t,n,a,r))}function an(e,t,n,a,r){var i=Ae(e,t,n,a,r),o=Oe(i.year,0,i.dayOfYear);return this.year(o.getUTCFullYear()),this.month(o.getUTCMonth()),this.date(o.getUTCDate()),this}B(0,["gg",2],0,(function(){return this.weekYear()%100})),B(0,["GG",2],0,(function(){return this.isoWeekYear()%100})),tn("gggg","weekYear"),tn("ggggg","weekYear"),tn("GGGG","isoWeekYear"),tn("GGGGG","isoWeekYear"),C("weekYear","gg"),C("isoWeekYear","GG"),R("weekYear",1),R("isoWeekYear",1),ue("G",ie),ue("g",ie),ue("GG",Z,q),ue("gg",Z,q),ue("GGGG",ne,K),ue("gggg",ne,K),ue("GGGGG",ae,Q),ue("ggggg",ae,Q),_e(["gggg","ggggg","GGGG","GGGGG"],(function(e,t,n,a){t[a.substr(0,2)]=k(e)})),_e(["gg","GG"],(function(e,t,n,a){t[a]=r.parseTwoDigitYear(e)})),B("Q",0,"Qo","quarter"),C("quarter","Q"),R("quarter",7),ue("Q",J),he("Q",(function(e,t){t[1]=3*(k(e)-1)})),B("D",["DD",2],"Do","date"),C("date","D"),R("date",9),ue("D",Z),ue("DD",Z,q),ue("Do",(function(e,t){return e?t._dayOfMonthOrdinalParse||t._ordinalParse:t._dayOfMonthOrdinalParseLenient})),he(["D","DD"],2),he("Do",(function(e,t){t[2]=k(e.match(Z)[0])}));var rn=be("Date",!0);B("DDD",["DDDD",3],"DDDo","dayOfYear"),C("dayOfYear","DDD"),R("dayOfYear",4),ue("DDD",te),ue("DDDD",G),he(["DDD","DDDD"],(function(e,t,n){n._dayOfYear=k(e)})),B("m",["mm",2],0,"minute"),C("minute","m"),R("minute",14),ue("m",Z),ue("mm",Z,q),he(["m","mm"],4);var on=be("Minutes",!1);B("s",["ss",2],0,"second"),C("second","s"),R("second",15),ue("s",Z),ue("ss",Z,q),he(["s","ss"],5);var sn,ln=be("Seconds",!1);for(B("S",0,0,(function(){return~~(this.millisecond()/100)})),B(0,["SS",2],0,(function(){return~~(this.millisecond()/10)})),B(0,["SSS",3],0,"millisecond"),B(0,["SSSS",4],0,(function(){return 10*this.millisecond()})),B(0,["SSSSS",5],0,(function(){return 100*this.millisecond()})),B(0,["SSSSSS",6],0,(function(){return 1e3*this.millisecond()})),B(0,["SSSSSSS",7],0,(function(){return 1e4*this.millisecond()})),B(0,["SSSSSSSS",8],0,(function(){return 1e5*this.millisecond()})),B(0,["SSSSSSSSS",9],0,(function(){return 1e6*this.millisecond()})),C("millisecond","ms"),R("millisecond",16),ue("S",te,J),ue("SS",te,q),ue("SSS",te,G),sn="SSSS";sn.length<=9;sn+="S")ue(sn,re);function dn(e,t){t[6]=k(1e3*("0."+e))}for(sn="S";sn.length<=9;sn+="S")he(sn,dn);var un=be("Milliseconds",!1);B("z",0,0,"zoneAbbr"),B("zz",0,0,"zoneName");var cn=v.prototype;function mn(e){return e}cn.add=$t,cn.calendar=function(e,t){var n=e||xt(),a=Ft(n,this).startOf("day"),i=r.calendarFormat(this,a)||"sameElse",o=t&&(E(t[i])?t[i].call(this,n):t[i]);return this.format(o||this.localeData().calendar(i,this,xt(n)))},cn.clone=function(){return new v(this)},cn.diff=function(e,t,n){var a,r,i;if(!this.isValid())return NaN;if(!(a=Ft(e,this)).isValid())return NaN;switch(r=6e4*(a.utcOffset()-this.utcOffset()),t=O(t)){case"year":i=qt(this,a)/12;break;case"month":i=qt(this,a);break;case"quarter":i=qt(this,a)/3;break;case"second":i=(this-a)/1e3;break;case"minute":i=(this-a)/6e4;break;case"hour":i=(this-a)/36e5;break;case"day":i=(this-a-r)/864e5;break;case"week":i=(this-a-r)/6048e5;break;default:i=this-a}return n?i:L(i)},cn.endOf=function(e){var t;if(void 0===(e=O(e))||"millisecond"===e||!this.isValid())return this;var n=this._isUTC?en:Xt;switch(e){case"year":t=n(this.year()+1,0,1)-1;break;case"quarter":t=n(this.year(),this.month()-this.month()%3+3,1)-1;break;case"month":t=n(this.year(),this.month()+1,1)-1;break;case"week":t=n(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case"isoWeek":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case"day":case"date":t=n(this.year(),this.month(),this.date()+1)-1;break;case"hour":t=this._d.valueOf(),t+=36e5-Zt(t+(this._isUTC?0:6e4*this.utcOffset()),36e5)-1;break;case"minute":t=this._d.valueOf(),t+=6e4-Zt(t,6e4)-1;break;case"second":t=this._d.valueOf(),t+=1e3-Zt(t,1e3)-1}return this._d.setTime(t),r.updateOffset(this,!0),this},cn.format=function(e){e||(e=this.isUtc()?r.defaultFormatUtc:r.defaultFormat);var t=U(this,e);return this.localeData().postformat(t)},cn.from=function(e,t){return this.isValid()&&(b(e)&&e.isValid()||xt(e).isValid())?zt({to:this,from:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},cn.fromNow=function(e){return this.from(xt(),e)},cn.to=function(e,t){return this.isValid()&&(b(e)&&e.isValid()||xt(e).isValid())?zt({from:this,to:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},cn.toNow=function(e){return this.to(xt(),e)},cn.get=function(e){return E(this[e=O(e)])?this[e]():this},cn.invalidAt=function(){return h(this).overflow},cn.isAfter=function(e,t){var n=b(e)?e:xt(e);return!(!this.isValid()||!n.isValid())&&("millisecond"===(t=O(t)||"millisecond")?this.valueOf()>n.valueOf():n.valueOf()<this.clone().startOf(t).valueOf())},cn.isBefore=function(e,t){var n=b(e)?e:xt(e);return!(!this.isValid()||!n.isValid())&&("millisecond"===(t=O(t)||"millisecond")?this.valueOf()<n.valueOf():this.clone().endOf(t).valueOf()<n.valueOf())},cn.isBetween=function(e,t,n,a){var r=b(e)?e:xt(e),i=b(t)?t:xt(t);return!!(this.isValid()&&r.isValid()&&i.isValid())&&("("===(a=a||"()")[0]?this.isAfter(r,n):!this.isBefore(r,n))&&(")"===a[1]?this.isBefore(i,n):!this.isAfter(i,n))},cn.isSame=function(e,t){var n,a=b(e)?e:xt(e);return!(!this.isValid()||!a.isValid())&&("millisecond"===(t=O(t)||"millisecond")?this.valueOf()===a.valueOf():(n=a.valueOf(),this.clone().startOf(t).valueOf()<=n&&n<=this.clone().endOf(t).valueOf()))},cn.isSameOrAfter=function(e,t){return this.isSame(e,t)||this.isAfter(e,t)},cn.isSameOrBefore=function(e,t){return this.isSame(e,t)||this.isBefore(e,t)},cn.isValid=function(){return _(this)},cn.lang=Kt,cn.locale=Gt,cn.localeData=Qt,cn.max=Yt,cn.min=Tt,cn.parsingFlags=function(){return m({},h(this))},cn.set=function(e,t){if("object"==typeof e)for(var n=function(e){var t=[];for(var n in e)t.push({unit:n,priority:A[n]});return t.sort((function(e,t){return e.priority-t.priority})),t}(e=F(e)),a=0;a<n.length;a++)this[n[a].unit](e[n[a].unit]);else if(E(this[e=O(e)]))return this[e](t);return this},cn.startOf=function(e){var t;if(void 0===(e=O(e))||"millisecond"===e||!this.isValid())return this;var n=this._isUTC?en:Xt;switch(e){case"year":t=n(this.year(),0,1);break;case"quarter":t=n(this.year(),this.month()-this.month()%3,1);break;case"month":t=n(this.year(),this.month(),1);break;case"week":t=n(this.year(),this.month(),this.date()-this.weekday());break;case"isoWeek":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1));break;case"day":case"date":t=n(this.year(),this.month(),this.date());break;case"hour":t=this._d.valueOf(),t-=Zt(t+(this._isUTC?0:6e4*this.utcOffset()),36e5);break;case"minute":t=this._d.valueOf(),t-=Zt(t,6e4);break;case"second":t=this._d.valueOf(),t-=Zt(t,1e3)}return this._d.setTime(t),r.updateOffset(this,!0),this},cn.subtract=Jt,cn.toArray=function(){var e=this;return[e.year(),e.month(),e.date(),e.hour(),e.minute(),e.second(),e.millisecond()]},cn.toObject=function(){var e=this;return{years:e.year(),months:e.month(),date:e.date(),hours:e.hours(),minutes:e.minutes(),seconds:e.seconds(),milliseconds:e.milliseconds()}},cn.toDate=function(){return new Date(this.valueOf())},cn.toISOString=function(e){if(!this.isValid())return null;var t=!0!==e,n=t?this.clone().utc():this;return n.year()<0||n.year()>9999?U(n,t?"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ"):E(Date.prototype.toISOString)?t?this.toDate().toISOString():new Date(this.valueOf()+60*this.utcOffset()*1e3).toISOString().replace("Z",U(n,"Z")):U(n,t?"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYY-MM-DD[T]HH:mm:ss.SSSZ")},cn.inspect=function(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var e="moment",t="";this.isLocal()||(e=0===this.utcOffset()?"moment.utc":"moment.parseZone",t="Z");var n="["+e+'("]',a=0<=this.year()&&this.year()<=9999?"YYYY":"YYYYYY",r=t+'[")]';return this.format(n+a+"-MM-DD[T]HH:mm:ss.SSS"+r)},cn.toJSON=function(){return this.isValid()?this.toISOString():null},cn.toString=function(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")},cn.unix=function(){return Math.floor(this.valueOf()/1e3)},cn.valueOf=function(){return this._d.valueOf()-6e4*(this._offset||0)},cn.creationData=function(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}},cn.year=ve,cn.isLeapYear=function(){return ge(this.year())},cn.weekYear=function(e){return nn.call(this,e,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)},cn.isoWeekYear=function(e){return nn.call(this,e,this.isoWeek(),this.isoWeekday(),1,4)},cn.quarter=cn.quarters=function(e){return null==e?Math.ceil((this.month()+1)/3):this.month(3*(e-1)+this.month()%3)},cn.month=Ee,cn.daysInMonth=function(){return we(this.year(),this.month())},cn.week=cn.weeks=function(e){var t=this.localeData().week(this);return null==e?t:this.add(7*(e-t),"d")},cn.isoWeek=cn.isoWeeks=function(e){var t=Re(this,1,4).week;return null==e?t:this.add(7*(e-t),"d")},cn.weeksInYear=function(){var e=this.localeData()._week;return We(this.year(),e.dow,e.doy)},cn.isoWeeksInYear=function(){return We(this.year(),1,4)},cn.date=rn,cn.day=cn.days=function(e){if(!this.isValid())return null!=e?this:NaN;var t=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=e?(e=function(e,t){return"string"!=typeof e?e:isNaN(e)?"number"==typeof(e=t.weekdaysParse(e))?e:null:parseInt(e,10)}(e,this.localeData()),this.add(e-t,"d")):t},cn.weekday=function(e){if(!this.isValid())return null!=e?this:NaN;var t=(this.day()+7-this.localeData()._week.dow)%7;return null==e?t:this.add(e-t,"d")},cn.isoWeekday=function(e){if(!this.isValid())return null!=e?this:NaN;if(null!=e){var t=function(e,t){return"string"==typeof e?t.weekdaysParse(e)%7||7:isNaN(e)?null:e}(e,this.localeData());return this.day(this.day()%7?t:t-7)}return this.day()||7},cn.dayOfYear=function(e){var t=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return null==e?t:this.add(e-t,"d")},cn.hour=cn.hours=Xe,cn.minute=cn.minutes=on,cn.second=cn.seconds=ln,cn.millisecond=cn.milliseconds=un,cn.utcOffset=function(e,t,n){var a,i=this._offset||0;if(!this.isValid())return null!=e?this:NaN;if(null!=e){if("string"==typeof e){if(null===(e=Ot(se,e)))return this}else Math.abs(e)<16&&!n&&(e*=60);return!this._isUTC&&t&&(a=At(this)),this._offset=e,this._isUTC=!0,null!=a&&this.add(a,"m"),i!==e&&(!t||this._changeInProgress?Ut(this,zt(e-i,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,r.updateOffset(this,!0),this._changeInProgress=null)),this}return this._isUTC?i:At(this)},cn.utc=function(e){return this.utcOffset(0,e)},cn.local=function(e){return this._isUTC&&(this.utcOffset(0,e),this._isUTC=!1,e&&this.subtract(At(this),"m")),this},cn.parseZone=function(){if(null!=this._tzm)this.utcOffset(this._tzm,!1,!0);else if("string"==typeof this._i){var e=Ot(oe,this._i);null!=e?this.utcOffset(e):this.utcOffset(0,!0)}return this},cn.hasAlignedHourOffset=function(e){return!!this.isValid()&&(e=e?xt(e).utcOffset():0,(this.utcOffset()-e)%60==0)},cn.isDST=function(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},cn.isLocal=function(){return!!this.isValid()&&!this._isUTC},cn.isUtcOffset=function(){return!!this.isValid()&&this._isUTC},cn.isUtc=Rt,cn.isUTC=Rt,cn.zoneAbbr=function(){return this._isUTC?"UTC":""},cn.zoneName=function(){return this._isUTC?"Coordinated Universal Time":""},cn.dates=T("dates accessor is deprecated. Use date instead.",rn),cn.months=T("months accessor is deprecated. Use month instead",Ee),cn.years=T("years accessor is deprecated. Use year instead",ve),cn.zone=T("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",(function(e,t){return null!=e?("string"!=typeof e&&(e=-e),this.utcOffset(e,t),this):-this.utcOffset()})),cn.isDSTShifted=T("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",(function(){if(!s(this._isDSTShifted))return this._isDSTShifted;var e={};if(g(e,this),(e=kt(e))._a){var t=e._isUTC?f(e._a):xt(e._a);this._isDSTShifted=this.isValid()&&w(e._a,t.toArray())>0}else this._isDSTShifted=!1;return this._isDSTShifted}));var fn=H.prototype;function hn(e,t,n,a){var r=st(),i=f().set(a,t);return r[n](i,e)}function _n(e,t,n){if(l(e)&&(t=e,e=void 0),e=e||"",null!=t)return hn(e,t,n,"month");var a,r=[];for(a=0;a<12;a++)r[a]=hn(e,a,n,"month");return r}function pn(e,t,n,a){"boolean"==typeof e?(l(t)&&(n=t,t=void 0),t=t||""):(n=t=e,e=!1,l(t)&&(n=t,t=void 0),t=t||"");var r,i=st(),o=e?i._week.dow:0;if(null!=n)return hn(t,(n+o)%7,a,"day");var s=[];for(r=0;r<7;r++)s[r]=hn(t,(r+o)%7,a,"day");return s}fn.calendar=function(e,t,n){var a=this._calendar[e]||this._calendar.sameElse;return E(a)?a.call(t,n):a},fn.longDateFormat=function(e){var t=this._longDateFormat[e],n=this._longDateFormat[e.toUpperCase()];return t||!n?t:(this._longDateFormat[e]=n.replace(/MMMM|MM|DD|dddd/g,(function(e){return e.slice(1)})),this._longDateFormat[e])},fn.invalidDate=function(){return this._invalidDate},fn.ordinal=function(e){return this._ordinal.replace("%d",e)},fn.preparse=mn,fn.postformat=mn,fn.relativeTime=function(e,t,n,a){var r=this._relativeTime[n];return E(r)?r(e,t,n,a):r.replace(/%d/i,e)},fn.pastFuture=function(e,t){var n=this._relativeTime[e>0?"future":"past"];return E(n)?n(t):n.replace(/%s/i,t)},fn.set=function(e){var t,n;for(n in e)E(t=e[n])?this[n]=t:this["_"+n]=t;this._config=e,this._dayOfMonthOrdinalParseLenient=new RegExp((this._dayOfMonthOrdinalParse.source||this._ordinalParse.source)+"|"+/\d{1,2}/.source)},fn.months=function(e,t){return e?i(this._months)?this._months[e.month()]:this._months[(this._months.isFormat||xe).test(t)?"format":"standalone"][e.month()]:i(this._months)?this._months:this._months.standalone},fn.monthsShort=function(e,t){return e?i(this._monthsShort)?this._monthsShort[e.month()]:this._monthsShort[xe.test(t)?"format":"standalone"][e.month()]:i(this._monthsShort)?this._monthsShort:this._monthsShort.standalone},fn.monthsParse=function(e,t,n){var a,r,i;if(this._monthsParseExact)return De.call(this,e,t,n);for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),a=0;a<12;a++){if(r=f([2e3,a]),n&&!this._longMonthsParse[a]&&(this._longMonthsParse[a]=new RegExp("^"+this.months(r,"").replace(".","")+"$","i"),this._shortMonthsParse[a]=new RegExp("^"+this.monthsShort(r,"").replace(".","")+"$","i")),n||this._monthsParse[a]||(i="^"+this.months(r,"")+"|^"+this.monthsShort(r,""),this._monthsParse[a]=new RegExp(i.replace(".",""),"i")),n&&"MMMM"===t&&this._longMonthsParse[a].test(e))return a;if(n&&"MMM"===t&&this._shortMonthsParse[a].test(e))return a;if(!n&&this._monthsParse[a].test(e))return a}},fn.monthsRegex=function(e){return this._monthsParseExact?(c(this,"_monthsRegex")||je.call(this),e?this._monthsStrictRegex:this._monthsRegex):(c(this,"_monthsRegex")||(this._monthsRegex=He),this._monthsStrictRegex&&e?this._monthsStrictRegex:this._monthsRegex)},fn.monthsShortRegex=function(e){return this._monthsParseExact?(c(this,"_monthsRegex")||je.call(this),e?this._monthsShortStrictRegex:this._monthsShortRegex):(c(this,"_monthsShortRegex")||(this._monthsShortRegex=Pe),this._monthsShortStrictRegex&&e?this._monthsShortStrictRegex:this._monthsShortRegex)},fn.week=function(e){return Re(e,this._week.dow,this._week.doy).week},fn.firstDayOfYear=function(){return this._week.doy},fn.firstDayOfWeek=function(){return this._week.dow},fn.weekdays=function(e,t){var n=i(this._weekdays)?this._weekdays:this._weekdays[e&&!0!==e&&this._weekdays.isFormat.test(t)?"format":"standalone"];return!0===e?Ie(n,this._week.dow):e?n[e.day()]:n},fn.weekdaysMin=function(e){return!0===e?Ie(this._weekdaysMin,this._week.dow):e?this._weekdaysMin[e.day()]:this._weekdaysMin},fn.weekdaysShort=function(e){return!0===e?Ie(this._weekdaysShort,this._week.dow):e?this._weekdaysShort[e.day()]:this._weekdaysShort},fn.weekdaysParse=function(e,t,n){var a,r,i;if(this._weekdaysParseExact)return Be.call(this,e,t,n);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),a=0;a<7;a++){if(r=f([2e3,1]).day(a),n&&!this._fullWeekdaysParse[a]&&(this._fullWeekdaysParse[a]=new RegExp("^"+this.weekdays(r,"").replace(".","\\.?")+"$","i"),this._shortWeekdaysParse[a]=new RegExp("^"+this.weekdaysShort(r,"").replace(".","\\.?")+"$","i"),this._minWeekdaysParse[a]=new RegExp("^"+this.weekdaysMin(r,"").replace(".","\\.?")+"$","i")),this._weekdaysParse[a]||(i="^"+this.weekdays(r,"")+"|^"+this.weekdaysShort(r,"")+"|^"+this.weekdaysMin(r,""),this._weekdaysParse[a]=new RegExp(i.replace(".",""),"i")),n&&"dddd"===t&&this._fullWeekdaysParse[a].test(e))return a;if(n&&"ddd"===t&&this._shortWeekdaysParse[a].test(e))return a;if(n&&"dd"===t&&this._minWeekdaysParse[a].test(e))return a;if(!n&&this._weekdaysParse[a].test(e))return a}},fn.weekdaysRegex=function(e){return this._weekdaysParseExact?(c(this,"_weekdaysRegex")||qe.call(this),e?this._weekdaysStrictRegex:this._weekdaysRegex):(c(this,"_weekdaysRegex")||(this._weekdaysRegex=Ue),this._weekdaysStrictRegex&&e?this._weekdaysStrictRegex:this._weekdaysRegex)},fn.weekdaysShortRegex=function(e){return this._weekdaysParseExact?(c(this,"_weekdaysRegex")||qe.call(this),e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(c(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=$e),this._weekdaysShortStrictRegex&&e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)},fn.weekdaysMinRegex=function(e){return this._weekdaysParseExact?(c(this,"_weekdaysRegex")||qe.call(this),e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(c(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=Je),this._weekdaysMinStrictRegex&&e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)},fn.isPM=function(e){return"p"===(e+"").toLowerCase().charAt(0)},fn.meridiem=function(e,t,n){return e>11?n?"pm":"PM":n?"am":"AM"},it("en",{dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1===k(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")}}),r.lang=T("moment.lang is deprecated. Use moment.locale instead.",it),r.langData=T("moment.langData is deprecated. Use moment.localeData instead.",st);var yn=Math.abs;function gn(e,t,n,a){var r=zt(t,n);return e._milliseconds+=a*r._milliseconds,e._days+=a*r._days,e._months+=a*r._months,e._bubble()}function Mn(e){return e<0?Math.floor(e):Math.ceil(e)}function vn(e){return 4800*e/146097}function bn(e){return 146097*e/4800}function Ln(e){return function(){return this.as(e)}}var kn=Ln("ms"),wn=Ln("s"),xn=Ln("m"),Tn=Ln("h"),Yn=Ln("d"),Dn=Ln("w"),Sn=Ln("M"),En=Ln("Q"),Pn=Ln("y");function Hn(e){return function(){return this.isValid()?this._data[e]:NaN}}var jn=Hn("milliseconds"),Cn=Hn("seconds"),On=Hn("minutes"),Fn=Hn("hours"),An=Hn("days"),Rn=Hn("months"),Wn=Hn("years"),In=Math.round,zn={ss:44,s:45,m:45,h:22,d:26,M:11};function Nn(e,t,n,a,r){return r.relativeTime(t||1,!!n,e,a)}var Vn=Math.abs;function Bn(e){return(e>0)-(e<0)||+e}function Un(){if(!this.isValid())return this.localeData().invalidDate();var e,t,n=Vn(this._milliseconds)/1e3,a=Vn(this._days),r=Vn(this._months);e=L(n/60),t=L(e/60),n%=60,e%=60;var i=L(r/12),o=r%=12,s=a,l=t,d=e,u=n?n.toFixed(3).replace(/\.?0+$/,""):"",c=this.asSeconds();if(!c)return"P0D";var m=c<0?"-":"",f=Bn(this._months)!==Bn(c)?"-":"",h=Bn(this._days)!==Bn(c)?"-":"",_=Bn(this._milliseconds)!==Bn(c)?"-":"";return m+"P"+(i?f+i+"Y":"")+(o?f+o+"M":"")+(s?h+s+"D":"")+(l||d||u?"T":"")+(l?_+l+"H":"")+(d?_+d+"M":"")+(u?_+u+"S":"")}var $n=Et.prototype;return $n.isValid=function(){return this._isValid},$n.abs=function(){var e=this._data;return this._milliseconds=yn(this._milliseconds),this._days=yn(this._days),this._months=yn(this._months),e.milliseconds=yn(e.milliseconds),e.seconds=yn(e.seconds),e.minutes=yn(e.minutes),e.hours=yn(e.hours),e.months=yn(e.months),e.years=yn(e.years),this},$n.add=function(e,t){return gn(this,e,t,1)},$n.subtract=function(e,t){return gn(this,e,t,-1)},$n.as=function(e){if(!this.isValid())return NaN;var t,n,a=this._milliseconds;if("month"===(e=O(e))||"quarter"===e||"year"===e)switch(t=this._days+a/864e5,n=this._months+vn(t),e){case"month":return n;case"quarter":return n/3;case"year":return n/12}else switch(t=this._days+Math.round(bn(this._months)),e){case"week":return t/7+a/6048e5;case"day":return t+a/864e5;case"hour":return 24*t+a/36e5;case"minute":return 1440*t+a/6e4;case"second":return 86400*t+a/1e3;case"millisecond":return Math.floor(864e5*t)+a;default:throw new Error("Unknown unit "+e)}},$n.asMilliseconds=kn,$n.asSeconds=wn,$n.asMinutes=xn,$n.asHours=Tn,$n.asDays=Yn,$n.asWeeks=Dn,$n.asMonths=Sn,$n.asQuarters=En,$n.asYears=Pn,$n.valueOf=function(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*k(this._months/12):NaN},$n._bubble=function(){var e,t,n,a,r,i=this._milliseconds,o=this._days,s=this._months,l=this._data;return i>=0&&o>=0&&s>=0||i<=0&&o<=0&&s<=0||(i+=864e5*Mn(bn(s)+o),o=0,s=0),l.milliseconds=i%1e3,e=L(i/1e3),l.seconds=e%60,t=L(e/60),l.minutes=t%60,n=L(t/60),l.hours=n%24,o+=L(n/24),r=L(vn(o)),s+=r,o-=Mn(bn(r)),a=L(s/12),s%=12,l.days=o,l.months=s,l.years=a,this},$n.clone=function(){return zt(this)},$n.get=function(e){return e=O(e),this.isValid()?this[e+"s"]():NaN},$n.milliseconds=jn,$n.seconds=Cn,$n.minutes=On,$n.hours=Fn,$n.days=An,$n.weeks=function(){return L(this.days()/7)},$n.months=Rn,$n.years=Wn,$n.humanize=function(e){if(!this.isValid())return this.localeData().invalidDate();var t=this.localeData(),n=function(e,t,n){var a=zt(e).abs(),r=In(a.as("s")),i=In(a.as("m")),o=In(a.as("h")),s=In(a.as("d")),l=In(a.as("M")),d=In(a.as("y")),u=r<=zn.ss&&["s",r]||r<zn.s&&["ss",r]||i<=1&&["m"]||i<zn.m&&["mm",i]||o<=1&&["h"]||o<zn.h&&["hh",o]||s<=1&&["d"]||s<zn.d&&["dd",s]||l<=1&&["M"]||l<zn.M&&["MM",l]||d<=1&&["y"]||["yy",d];return u[2]=t,u[3]=+e>0,u[4]=n,Nn.apply(null,u)}(this,!e,t);return e&&(n=t.pastFuture(+this,n)),t.postformat(n)},$n.toISOString=Un,$n.toString=Un,$n.toJSON=Un,$n.locale=Gt,$n.localeData=Qt,$n.toIsoString=T("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",Un),$n.lang=Kt,B("X",0,0,"unix"),B("x",0,0,"valueOf"),ue("x",ie),ue("X",/[+-]?\d+(\.\d{1,3})?/),he("X",(function(e,t,n){n._d=new Date(1e3*parseFloat(e,10))})),he("x",(function(e,t,n){n._d=new Date(k(e))})),r.version="2.24.0",t=xt,r.fn=cn,r.min=function(){var e=[].slice.call(arguments,0);return Dt("isBefore",e)},r.max=function(){var e=[].slice.call(arguments,0);return Dt("isAfter",e)},r.now=function(){return Date.now?Date.now():+new Date},r.utc=f,r.unix=function(e){return xt(1e3*e)},r.months=function(e,t){return _n(e,t,"months")},r.isDate=d,r.locale=it,r.invalid=p,r.duration=zt,r.isMoment=b,r.weekdays=function(e,t,n){return pn(e,t,n,"weekdays")},r.parseZone=function(){return xt.apply(null,arguments).parseZone()},r.localeData=st,r.isDuration=Pt,r.monthsShort=function(e,t){return _n(e,t,"monthsShort")},r.weekdaysMin=function(e,t,n){return pn(e,t,n,"weekdaysMin")},r.defineLocale=ot,r.updateLocale=function(e,t){if(null!=t){var n,a,r=et;null!=(a=rt(e))&&(r=a._config),t=P(r,t),(n=new H(t)).parentLocale=tt[e],tt[e]=n,it(e)}else null!=tt[e]&&(null!=tt[e].parentLocale?tt[e]=tt[e].parentLocale:null!=tt[e]&&delete tt[e]);return tt[e]},r.locales=function(){return Y(tt)},r.weekdaysShort=function(e,t,n){return pn(e,t,n,"weekdaysShort")},r.normalizeUnits=O,r.relativeTimeRounding=function(e){return void 0===e?In:"function"==typeof e&&(In=e,!0)},r.relativeTimeThreshold=function(e,t){return void 0!==zn[e]&&(void 0===t?zn[e]:(zn[e]=t,"s"===e&&(zn.ss=t-1),!0))},r.calendarFormat=function(e,t){var n=e.diff(t,"days",!0);return n<-6?"sameElse":n<-1?"lastWeek":n<0?"lastDay":n<1?"sameDay":n<2?"nextDay":n<7?"nextWeek":"sameElse"},r.prototype=cn,r.HTML5_FMT={DATETIME_LOCAL:"YYYY-MM-DDTHH:mm",DATETIME_LOCAL_SECONDS:"YYYY-MM-DDTHH:mm:ss",DATETIME_LOCAL_MS:"YYYY-MM-DDTHH:mm:ss.SSS",DATE:"YYYY-MM-DD",TIME:"HH:mm",TIME_SECONDS:"HH:mm:ss",TIME_MS:"HH:mm:ss.SSS",WEEK:"GGGG-[W]WW",MONTH:"YYYY-MM"},r}()}).call(this,n(97)(e))},function(e,t,n){"use strict";e.exports=n(309)},function(e,t,n){e.exports=n(336)()},,,function(e,t,n){var a=n(314),r=n(315),i=n(316);e.exports=function(e,t){return a(e)||r(e,t)||i()}},function(e,t){e.exports=function(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}},,,,,,,,function(e,t,n){"use strict";var a=n(233),r=n(318),i=Object.prototype.toString;function o(e){return"[object Array]"===i.call(e)}function s(e){return null!==e&&"object"==typeof e}function l(e){return"[object Function]"===i.call(e)}function d(e,t){if(null!=e)if("object"!=typeof e&&(e=[e]),o(e))for(var n=0,a=e.length;n<a;n++)t.call(null,e[n],n,e);else for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.call(null,e[r],r,e)}e.exports={isArray:o,isArrayBuffer:function(e){return"[object ArrayBuffer]"===i.call(e)},isBuffer:r,isFormData:function(e){return"undefined"!=typeof FormData&&e instanceof FormData},isArrayBufferView:function(e){return"undefined"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(e):e&&e.buffer&&e.buffer instanceof ArrayBuffer},isString:function(e){return"string"==typeof e},isNumber:function(e){return"number"==typeof e},isObject:s,isUndefined:function(e){return void 0===e},isDate:function(e){return"[object Date]"===i.call(e)},isFile:function(e){return"[object File]"===i.call(e)},isBlob:function(e){return"[object Blob]"===i.call(e)},isFunction:l,isStream:function(e){return s(e)&&l(e.pipe)},isURLSearchParams:function(e){return"undefined"!=typeof URLSearchParams&&e instanceof URLSearchParams},isStandardBrowserEnv:function(){return("undefined"==typeof navigator||"ReactNative"!==navigator.product&&"NativeScript"!==navigator.product&&"NS"!==navigator.product)&&("undefined"!=typeof window&&"undefined"!=typeof document)},forEach:d,merge:function e(){var t={};function n(n,a){"object"==typeof t[a]&&"object"==typeof n?t[a]=e(t[a],n):t[a]=n}for(var a=0,r=arguments.length;a<r;a++)d(arguments[a],n);return t},deepMerge:function e(){var t={};function n(n,a){"object"==typeof t[a]&&"object"==typeof n?t[a]=e(t[a],n):t[a]="object"==typeof n?e({},n):n}for(var a=0,r=arguments.length;a<r;a++)d(arguments[a],n);return t},extend:function(e,t,n){return d(t,(function(t,r){e[r]=n&&"function"==typeof t?a(t,n):t})),e},trim:function(e){return e.replace(/^\s*/,"").replace(/\s*$/,"")}}},function(e,t){function n(t){return"function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?e.exports=n=function(e){return typeof e}:e.exports=n=function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(t)}e.exports=n},,,function(e,t,n){"use strict";var a=n(5),r=n.n(a),i=n(28),o=n(1),s=n(84),l=n.n(s),d=n(25);n.d(t,"a",(function(){return u})),n.d(t,"b",(function(){return c}));var u=function(e){return window.giveReportsData[e]},c=function(e){var t=Object(i.b)(),n=r()(t,2),a=n[0].period,s=n[1],u=Object(o.useState)(null),c=r()(u,2),m=c[0],f=c[1],h=Object(o.useState)(!1),_=r()(h,2),p=_[0],y=_[1],g=l.a.CancelToken.source();return Object(o.useEffect)((function(){a.startDate&&a.endDate&&(!0===p&&g.cancel("Operation canceled by the user."),y(!0),l.a.get(wpApiSettings.root+"give-api/v2/reports/"+e,{cancelToken:g.token,params:{start:a.startDate.format("YYYY-MM-DD"),end:a.endDate.format("YYYY-MM-DD")},headers:{"X-WP-Nonce":wpApiSettings.nonce}}).then((function(t){var n=t.data.status;if(s(Object(d.c)(n)),"no_donations_found"===n){var a=function(e){switch(e){case"income":return{datasets:[{data:[{x:"2020-02-24 00:00:00",y:0},{x:"2020-02-25 00:00:00",y:223},{x:"2020-02-26 00:00:00",y:5},{x:"2020-02-27 00:00:00",y:376},{x:"2020-02-28 00:00:00",y:25},{x:"2020-02-29 00:00:00",y:0},{x:"2020-03-01 00:00:00",y:250},{x:"2020-03-02 00:00:00",y:41}],tooltips:[{title:"$0",body:"0 Donors",footer:"Monday"},{title:"$223.00",body:"1 Donors",footer:"Tuesday"},{title:"$5.00",body:"1 Donors",footer:"Wednesday"},{title:"$376.00",body:"2 Donors",footer:"Thursday"},{title:"$25.00",body:"1 Donors",footer:"Friday"},{title:"$0",body:"0 Donors",footer:"Saturday"},{title:"$250.00",body:"1 Donors",footer:"Sunday"},{title:"$41.00",body:"1 Donors",footer:"Monday"}]}]};case"total-income":return{datasets:[{data:[{x:"2020-02-24 00:00:00",y:0},{x:"2020-02-24 03:00:00",y:0},{x:"2020-02-24 06:00:00",y:0},{x:"2020-02-24 09:00:00",y:0},{x:"2020-02-24 12:00:00",y:0},{x:"2020-02-24 15:00:00",y:0},{x:"2020-02-24 18:00:00",y:0},{x:"2020-02-24 21:00:00",y:0},{x:"2020-02-25 00:00:00",y:0},{x:"2020-02-25 03:00:00",y:0},{x:"2020-02-25 06:00:00",y:0},{x:"2020-02-25 09:00:00",y:0},{x:"2020-02-25 12:00:00",y:223},{x:"2020-02-25 15:00:00",y:0},{x:"2020-02-25 18:00:00",y:0},{x:"2020-02-25 21:00:00",y:0},{x:"2020-02-26 00:00:00",y:0},{x:"2020-02-26 03:00:00",y:0},{x:"2020-02-26 06:00:00",y:0},{x:"2020-02-26 09:00:00",y:0},{x:"2020-02-26 12:00:00",y:5},{x:"2020-02-26 15:00:00",y:0},{x:"2020-02-26 18:00:00",y:0},{x:"2020-02-26 21:00:00",y:0},{x:"2020-02-27 00:00:00",y:0},{x:"2020-02-27 03:00:00",y:0},{x:"2020-02-27 06:00:00",y:0},{x:"2020-02-27 09:00:00",y:0},{x:"2020-02-27 12:00:00",y:250},{x:"2020-02-27 15:00:00",y:126},{x:"2020-02-27 18:00:00",y:0},{x:"2020-02-27 21:00:00",y:0},{x:"2020-02-28 00:00:00",y:0},{x:"2020-02-28 03:00:00",y:0},{x:"2020-02-28 06:00:00",y:0},{x:"2020-02-28 09:00:00",y:0},{x:"2020-02-28 12:00:00",y:25},{x:"2020-02-28 15:00:00",y:0},{x:"2020-02-28 18:00:00",y:0},{x:"2020-02-28 21:00:00",y:0},{x:"2020-02-29 00:00:00",y:0},{x:"2020-02-29 03:00:00",y:0},{x:"2020-02-29 06:00:00",y:0},{x:"2020-02-29 09:00:00",y:0},{x:"2020-02-29 12:00:00",y:0},{x:"2020-02-29 15:00:00",y:0},{x:"2020-02-29 18:00:00",y:0},{x:"2020-02-29 21:00:00",y:0},{x:"2020-03-01 00:00:00",y:0},{x:"2020-03-01 03:00:00",y:0},{x:"2020-03-01 06:00:00",y:0},{x:"2020-03-01 09:00:00",y:0},{x:"2020-03-01 12:00:00",y:250},{x:"2020-03-01 15:00:00",y:0},{x:"2020-03-01 18:00:00",y:0},{x:"2020-03-01 21:00:00",y:0},{x:"2020-03-02 00:00:00",y:0},{x:"2020-03-02 03:00:00",y:0},{x:"2020-03-02 06:00:00",y:0},{x:"2020-03-02 09:00:00",y:0},{x:"2020-03-02 12:00:00",y:41},{x:"2020-03-02 15:00:00",y:0},{x:"2020-03-02 18:00:00",y:0},{x:"2020-03-02 21:00:00",y:0},{x:"2020-03-03 00:00:00",y:0}],tooltips:[{title:"$0",body:"Total Income",footer:"Sun 9pm - Mon 12am"},{title:"$0",body:"Total Income",footer:"Mon 12am - Mon 3am"},{title:"$0",body:"Total Income",footer:"Mon 3am - Mon 6am"},{title:"$0",body:"Total Income",footer:"Mon 6am - Mon 9am"},{title:"$0",body:"Total Income",footer:"Mon 9am - Mon 12pm"},{title:"$0",body:"Total Income",footer:"Mon 12pm - Mon 3pm"},{title:"$0",body:"Total Income",footer:"Mon 3pm - Mon 6pm"},{title:"$0",body:"Total Income",footer:"Mon 6pm - Mon 9pm"},{title:"$0",body:"Total Income",footer:"Mon 9pm - Tue 12am"},{title:"$0",body:"Total Income",footer:"Tue 12am - Tue 3am"},{title:"$0",body:"Total Income",footer:"Tue 3am - Tue 6am"},{title:"$0",body:"Total Income",footer:"Tue 6am - Tue 9am"},{title:"$223.00",body:"Total Income",footer:"Tue 9am - Tue 12pm"},{title:"$0",body:"Total Income",footer:"Tue 12pm - Tue 3pm"},{title:"$0",body:"Total Income",footer:"Tue 3pm - Tue 6pm"},{title:"$0",body:"Total Income",footer:"Tue 6pm - Tue 9pm"},{title:"$0",body:"Total Income",footer:"Tue 9pm - Wed 12am"},{title:"$0",body:"Total Income",footer:"Wed 12am - Wed 3am"},{title:"$0",body:"Total Income",footer:"Wed 3am - Wed 6am"},{title:"$0",body:"Total Income",footer:"Wed 6am - Wed 9am"},{title:"$5.00",body:"Total Income",footer:"Wed 9am - Wed 12pm"},{title:"$0",body:"Total Income",footer:"Wed 12pm - Wed 3pm"},{title:"$0",body:"Total Income",footer:"Wed 3pm - Wed 6pm"},{title:"$0",body:"Total Income",footer:"Wed 6pm - Wed 9pm"},{title:"$0",body:"Total Income",footer:"Wed 9pm - Thu 12am"},{title:"$0",body:"Total Income",footer:"Thu 12am - Thu 3am"},{title:"$0",body:"Total Income",footer:"Thu 3am - Thu 6am"},{title:"$0",body:"Total Income",footer:"Thu 6am - Thu 9am"},{title:"$250.00",body:"Total Income",footer:"Thu 9am - Thu 12pm"},{title:"$126.00",body:"Total Income",footer:"Thu 12pm - Thu 3pm"},{title:"$0",body:"Total Income",footer:"Thu 3pm - Thu 6pm"},{title:"$0",body:"Total Income",footer:"Thu 6pm - Thu 9pm"},{title:"$0",body:"Total Income",footer:"Thu 9pm - Fri 12am"},{title:"$0",body:"Total Income",footer:"Fri 12am - Fri 3am"},{title:"$0",body:"Total Income",footer:"Fri 3am - Fri 6am"},{title:"$0",body:"Total Income",footer:"Fri 6am - Fri 9am"},{title:"$25.00",body:"Total Income",footer:"Fri 9am - Fri 12pm"},{title:"$0",body:"Total Income",footer:"Fri 12pm - Fri 3pm"},{title:"$0",body:"Total Income",footer:"Fri 3pm - Fri 6pm"},{title:"$0",body:"Total Income",footer:"Fri 6pm - Fri 9pm"},{title:"$0",body:"Total Income",footer:"Fri 9pm - Sat 12am"},{title:"$0",body:"Total Income",footer:"Sat 12am - Sat 3am"},{title:"$0",body:"Total Income",footer:"Sat 3am - Sat 6am"},{title:"$0",body:"Total Income",footer:"Sat 6am - Sat 9am"},{title:"$0",body:"Total Income",footer:"Sat 9am - Sat 12pm"},{title:"$0",body:"Total Income",footer:"Sat 12pm - Sat 3pm"},{title:"$0",body:"Total Income",footer:"Sat 3pm - Sat 6pm"},{title:"$0",body:"Total Income",footer:"Sat 6pm - Sat 9pm"},{title:"$0",body:"Total Income",footer:"Sat 9pm - Sun 12am"},{title:"$0",body:"Total Income",footer:"Sun 12am - Sun 3am"},{title:"$0",body:"Total Income",footer:"Sun 3am - Sun 6am"},{title:"$0",body:"Total Income",footer:"Sun 6am - Sun 9am"},{title:"$250.00",body:"Total Income",footer:"Sun 9am - Sun 12pm"},{title:"$0",body:"Total Income",footer:"Sun 12pm - Sun 3pm"},{title:"$0",body:"Total Income",footer:"Sun 3pm - Sun 6pm"},{title:"$0",body:"Total Income",footer:"Sun 6pm - Sun 9pm"},{title:"$0",body:"Total Income",footer:"Sun 9pm - Mon 12am"},{title:"$0",body:"Total Income",footer:"Mon 12am - Mon 3am"},{title:"$0",body:"Total Income",footer:"Mon 3am - Mon 6am"},{title:"$0",body:"Total Income",footer:"Mon 6am - Mon 9am"},{title:"$41.00",body:"Total Income",footer:"Mon 9am - Mon 12pm"},{title:"$0",body:"Total Income",footer:"Mon 12pm - Mon 3pm"},{title:"$0",body:"Total Income",footer:"Mon 3pm - Mon 6pm"},{title:"$0",body:"Total Income",footer:"Mon 6pm - Mon 9pm"},{title:"$0",body:"Total Income",footer:"Mon 9pm - Tue 12am"}],trend:7.1,info:"VS previous 7 days",highlight:"$920.00"}]};case"total-donors":return{datasets:[{data:[{x:"2020-02-24 00:00:00",y:0},{x:"2020-02-24 03:00:00",y:0},{x:"2020-02-24 06:00:00",y:0},{x:"2020-02-24 09:00:00",y:0},{x:"2020-02-24 12:00:00",y:0},{x:"2020-02-24 15:00:00",y:0},{x:"2020-02-24 18:00:00",y:0},{x:"2020-02-24 21:00:00",y:0},{x:"2020-02-25 00:00:00",y:0},{x:"2020-02-25 03:00:00",y:0},{x:"2020-02-25 06:00:00",y:0},{x:"2020-02-25 09:00:00",y:0},{x:"2020-02-25 12:00:00",y:1},{x:"2020-02-25 15:00:00",y:0},{x:"2020-02-25 18:00:00",y:0},{x:"2020-02-25 21:00:00",y:0},{x:"2020-02-26 00:00:00",y:0},{x:"2020-02-26 03:00:00",y:0},{x:"2020-02-26 06:00:00",y:0},{x:"2020-02-26 09:00:00",y:0},{x:"2020-02-26 12:00:00",y:1},{x:"2020-02-26 15:00:00",y:0},{x:"2020-02-26 18:00:00",y:0},{x:"2020-02-26 21:00:00",y:0},{x:"2020-02-27 00:00:00",y:0},{x:"2020-02-27 03:00:00",y:0},{x:"2020-02-27 06:00:00",y:0},{x:"2020-02-27 09:00:00",y:0},{x:"2020-02-27 12:00:00",y:1},{x:"2020-02-27 15:00:00",y:1},{x:"2020-02-27 18:00:00",y:0},{x:"2020-02-27 21:00:00",y:0},{x:"2020-02-28 00:00:00",y:0},{x:"2020-02-28 03:00:00",y:0},{x:"2020-02-28 06:00:00",y:0},{x:"2020-02-28 09:00:00",y:0},{x:"2020-02-28 12:00:00",y:1},{x:"2020-02-28 15:00:00",y:0},{x:"2020-02-28 18:00:00",y:0},{x:"2020-02-28 21:00:00",y:0},{x:"2020-02-29 00:00:00",y:0},{x:"2020-02-29 03:00:00",y:0},{x:"2020-02-29 06:00:00",y:0},{x:"2020-02-29 09:00:00",y:0},{x:"2020-02-29 12:00:00",y:0},{x:"2020-02-29 15:00:00",y:0},{x:"2020-02-29 18:00:00",y:0},{x:"2020-02-29 21:00:00",y:0},{x:"2020-03-01 00:00:00",y:0},{x:"2020-03-01 03:00:00",y:0},{x:"2020-03-01 06:00:00",y:0},{x:"2020-03-01 09:00:00",y:0},{x:"2020-03-01 12:00:00",y:1},{x:"2020-03-01 15:00:00",y:0},{x:"2020-03-01 18:00:00",y:0},{x:"2020-03-01 21:00:00",y:0},{x:"2020-03-02 00:00:00",y:0},{x:"2020-03-02 03:00:00",y:0},{x:"2020-03-02 06:00:00",y:0},{x:"2020-03-02 09:00:00",y:0},{x:"2020-03-02 12:00:00",y:1},{x:"2020-03-02 15:00:00",y:0},{x:"2020-03-02 18:00:00",y:0},{x:"2020-03-02 21:00:00",y:0},{x:"2020-03-03 00:00:00",y:0}],tooltips:[{title:"0 Donors",body:"Total Donors",footer:"Sun 9pm - Mon 12am"},{title:"0 Donors",body:"Total Donors",footer:"Mon 12am - Mon 3am"},{title:"0 Donors",body:"Total Donors",footer:"Mon 3am - Mon 6am"},{title:"0 Donors",body:"Total Donors",footer:"Mon 6am - Mon 9am"},{title:"0 Donors",body:"Total Donors",footer:"Mon 9am - Mon 12pm"},{title:"0 Donors",body:"Total Donors",footer:"Mon 12pm - Mon 3pm"},{title:"0 Donors",body:"Total Donors",footer:"Mon 3pm - Mon 6pm"},{title:"0 Donors",body:"Total Donors",footer:"Mon 6pm - Mon 9pm"},{title:"0 Donors",body:"Total Donors",footer:"Mon 9pm - Tue 12am"},{title:"0 Donors",body:"Total Donors",footer:"Tue 12am - Tue 3am"},{title:"0 Donors",body:"Total Donors",footer:"Tue 3am - Tue 6am"},{title:"0 Donors",body:"Total Donors",footer:"Tue 6am - Tue 9am"},{title:"1 Donors",body:"Total Donors",footer:"Tue 9am - Tue 12pm"},{title:"0 Donors",body:"Total Donors",footer:"Tue 12pm - Tue 3pm"},{title:"0 Donors",body:"Total Donors",footer:"Tue 3pm - Tue 6pm"},{title:"0 Donors",body:"Total Donors",footer:"Tue 6pm - Tue 9pm"},{title:"0 Donors",body:"Total Donors",footer:"Tue 9pm - Wed 12am"},{title:"0 Donors",body:"Total Donors",footer:"Wed 12am - Wed 3am"},{title:"0 Donors",body:"Total Donors",footer:"Wed 3am - Wed 6am"},{title:"0 Donors",body:"Total Donors",footer:"Wed 6am - Wed 9am"},{title:"1 Donors",body:"Total Donors",footer:"Wed 9am - Wed 12pm"},{title:"0 Donors",body:"Total Donors",footer:"Wed 12pm - Wed 3pm"},{title:"0 Donors",body:"Total Donors",footer:"Wed 3pm - Wed 6pm"},{title:"0 Donors",body:"Total Donors",footer:"Wed 6pm - Wed 9pm"},{title:"0 Donors",body:"Total Donors",footer:"Wed 9pm - Thu 12am"},{title:"0 Donors",body:"Total Donors",footer:"Thu 12am - Thu 3am"},{title:"0 Donors",body:"Total Donors",footer:"Thu 3am - Thu 6am"},{title:"0 Donors",body:"Total Donors",footer:"Thu 6am - Thu 9am"},{title:"1 Donors",body:"Total Donors",footer:"Thu 9am - Thu 12pm"},{title:"1 Donors",body:"Total Donors",footer:"Thu 12pm - Thu 3pm"},{title:"0 Donors",body:"Total Donors",footer:"Thu 3pm - Thu 6pm"},{title:"0 Donors",body:"Total Donors",footer:"Thu 6pm - Thu 9pm"},{title:"0 Donors",body:"Total Donors",footer:"Thu 9pm - Fri 12am"},{title:"0 Donors",body:"Total Donors",footer:"Fri 12am - Fri 3am"},{title:"0 Donors",body:"Total Donors",footer:"Fri 3am - Fri 6am"},{title:"0 Donors",body:"Total Donors",footer:"Fri 6am - Fri 9am"},{title:"1 Donors",body:"Total Donors",footer:"Fri 9am - Fri 12pm"},{title:"0 Donors",body:"Total Donors",footer:"Fri 12pm - Fri 3pm"},{title:"0 Donors",body:"Total Donors",footer:"Fri 3pm - Fri 6pm"},{title:"0 Donors",body:"Total Donors",footer:"Fri 6pm - Fri 9pm"},{title:"0 Donors",body:"Total Donors",footer:"Fri 9pm - Sat 12am"},{title:"0 Donors",body:"Total Donors",footer:"Sat 12am - Sat 3am"},{title:"0 Donors",body:"Total Donors",footer:"Sat 3am - Sat 6am"},{title:"0 Donors",body:"Total Donors",footer:"Sat 6am - Sat 9am"},{title:"0 Donors",body:"Total Donors",footer:"Sat 9am - Sat 12pm"},{title:"0 Donors",body:"Total Donors",footer:"Sat 12pm - Sat 3pm"},{title:"0 Donors",body:"Total Donors",footer:"Sat 3pm - Sat 6pm"},{title:"0 Donors",body:"Total Donors",footer:"Sat 6pm - Sat 9pm"},{title:"0 Donors",body:"Total Donors",footer:"Sat 9pm - Sun 12am"},{title:"0 Donors",body:"Total Donors",footer:"Sun 12am - Sun 3am"},{title:"0 Donors",body:"Total Donors",footer:"Sun 3am - Sun 6am"},{title:"0 Donors",body:"Total Donors",footer:"Sun 6am - Sun 9am"},{title:"1 Donors",body:"Total Donors",footer:"Sun 9am - Sun 12pm"},{title:"0 Donors",body:"Total Donors",footer:"Sun 12pm - Sun 3pm"},{title:"0 Donors",body:"Total Donors",footer:"Sun 3pm - Sun 6pm"},{title:"0 Donors",body:"Total Donors",footer:"Sun 6pm - Sun 9pm"},{title:"0 Donors",body:"Total Donors",footer:"Sun 9pm - Mon 12am"},{title:"0 Donors",body:"Total Donors",footer:"Mon 12am - Mon 3am"},{title:"0 Donors",body:"Total Donors",footer:"Mon 3am - Mon 6am"},{title:"0 Donors",body:"Total Donors",footer:"Mon 6am - Mon 9am"},{title:"1 Donors",body:"Total Donors",footer:"Mon 9am - Mon 12pm"},{title:"0 Donors",body:"Total Donors",footer:"Mon 12pm - Mon 3pm"},{title:"0 Donors",body:"Total Donors",footer:"Mon 3pm - Mon 6pm"},{title:"0 Donors",body:"Total Donors",footer:"Mon 6pm - Mon 9pm"},{title:"0 Donors",body:"Total Donors",footer:"Mon 9pm - Tue 12am"}],trend:-12.5,info:"VS previous 7 days",highlight:7}]};case"average-donation":return{datasets:[{data:[{x:"2020-02-24 00:00:00",y:0},{x:"2020-02-24 03:00:00",y:0},{x:"2020-02-24 06:00:00",y:0},{x:"2020-02-24 09:00:00",y:0},{x:"2020-02-24 12:00:00",y:0},{x:"2020-02-24 15:00:00",y:0},{x:"2020-02-24 18:00:00",y:0},{x:"2020-02-24 21:00:00",y:0},{x:"2020-02-25 00:00:00",y:0},{x:"2020-02-25 03:00:00",y:0},{x:"2020-02-25 06:00:00",y:0},{x:"2020-02-25 09:00:00",y:0},{x:"2020-02-25 12:00:00",y:223},{x:"2020-02-25 15:00:00",y:0},{x:"2020-02-25 18:00:00",y:0},{x:"2020-02-25 21:00:00",y:0},{x:"2020-02-26 00:00:00",y:0},{x:"2020-02-26 03:00:00",y:0},{x:"2020-02-26 06:00:00",y:0},{x:"2020-02-26 09:00:00",y:0},{x:"2020-02-26 12:00:00",y:5},{x:"2020-02-26 15:00:00",y:0},{x:"2020-02-26 18:00:00",y:0},{x:"2020-02-26 21:00:00",y:0},{x:"2020-02-27 00:00:00",y:0},{x:"2020-02-27 03:00:00",y:0},{x:"2020-02-27 06:00:00",y:0},{x:"2020-02-27 09:00:00",y:0},{x:"2020-02-27 12:00:00",y:250},{x:"2020-02-27 15:00:00",y:126},{x:"2020-02-27 18:00:00",y:0},{x:"2020-02-27 21:00:00",y:0},{x:"2020-02-28 00:00:00",y:0},{x:"2020-02-28 03:00:00",y:0},{x:"2020-02-28 06:00:00",y:0},{x:"2020-02-28 09:00:00",y:0},{x:"2020-02-28 12:00:00",y:25},{x:"2020-02-28 15:00:00",y:0},{x:"2020-02-28 18:00:00",y:0},{x:"2020-02-28 21:00:00",y:0},{x:"2020-02-29 00:00:00",y:0},{x:"2020-02-29 03:00:00",y:0},{x:"2020-02-29 06:00:00",y:0},{x:"2020-02-29 09:00:00",y:0},{x:"2020-02-29 12:00:00",y:0},{x:"2020-02-29 15:00:00",y:0},{x:"2020-02-29 18:00:00",y:0},{x:"2020-02-29 21:00:00",y:0},{x:"2020-03-01 00:00:00",y:0},{x:"2020-03-01 03:00:00",y:0},{x:"2020-03-01 06:00:00",y:0},{x:"2020-03-01 09:00:00",y:0},{x:"2020-03-01 12:00:00",y:250},{x:"2020-03-01 15:00:00",y:0},{x:"2020-03-01 18:00:00",y:0},{x:"2020-03-01 21:00:00",y:0},{x:"2020-03-02 00:00:00",y:0},{x:"2020-03-02 03:00:00",y:0},{x:"2020-03-02 06:00:00",y:0},{x:"2020-03-02 09:00:00",y:0},{x:"2020-03-02 12:00:00",y:41},{x:"2020-03-02 15:00:00",y:0},{x:"2020-03-02 18:00:00",y:0},{x:"2020-03-02 21:00:00",y:0},{x:"2020-03-03 00:00:00",y:0}],tooltips:[{title:"$0",body:"Avg Donation",footer:"Feb 23, 2020 - Feb 24, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 24, 2020 - Feb 24, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 24, 2020 - Feb 24, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 24, 2020 - Feb 24, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 24, 2020 - Feb 24, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 24, 2020 - Feb 24, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 24, 2020 - Feb 24, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 24, 2020 - Feb 24, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 24, 2020 - Feb 25, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 25, 2020 - Feb 25, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 25, 2020 - Feb 25, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 25, 2020 - Feb 25, 2020"},{title:"$223.00",body:"Avg Donation",footer:"Feb 25, 2020 - Feb 25, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 25, 2020 - Feb 25, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 25, 2020 - Feb 25, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 25, 2020 - Feb 25, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 25, 2020 - Feb 26, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 26, 2020 - Feb 26, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 26, 2020 - Feb 26, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 26, 2020 - Feb 26, 2020"},{title:"$5.00",body:"Avg Donation",footer:"Feb 26, 2020 - Feb 26, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 26, 2020 - Feb 26, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 26, 2020 - Feb 26, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 26, 2020 - Feb 26, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 26, 2020 - Feb 27, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 27, 2020 - Feb 27, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 27, 2020 - Feb 27, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 27, 2020 - Feb 27, 2020"},{title:"$250.00",body:"Avg Donation",footer:"Feb 27, 2020 - Feb 27, 2020"},{title:"$126.00",body:"Avg Donation",footer:"Feb 27, 2020 - Feb 27, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 27, 2020 - Feb 27, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 27, 2020 - Feb 27, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 27, 2020 - Feb 28, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 28, 2020 - Feb 28, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 28, 2020 - Feb 28, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 28, 2020 - Feb 28, 2020"},{title:"$25.00",body:"Avg Donation",footer:"Feb 28, 2020 - Feb 28, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 28, 2020 - Feb 28, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 28, 2020 - Feb 28, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 28, 2020 - Feb 28, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 28, 2020 - Feb 29, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 29, 2020 - Feb 29, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 29, 2020 - Feb 29, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 29, 2020 - Feb 29, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 29, 2020 - Feb 29, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 29, 2020 - Feb 29, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 29, 2020 - Feb 29, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 29, 2020 - Feb 29, 2020"},{title:"$0",body:"Avg Donation",footer:"Feb 29, 2020 - Mar 1, 2020"},{title:"$0",body:"Avg Donation",footer:"Mar 1, 2020 - Mar 1, 2020"},{title:"$0",body:"Avg Donation",footer:"Mar 1, 2020 - Mar 1, 2020"},{title:"$0",body:"Avg Donation",footer:"Mar 1, 2020 - Mar 1, 2020"},{title:"$250.00",body:"Avg Donation",footer:"Mar 1, 2020 - Mar 1, 2020"},{title:"$0",body:"Avg Donation",footer:"Mar 1, 2020 - Mar 1, 2020"},{title:"$0",body:"Avg Donation",footer:"Mar 1, 2020 - Mar 1, 2020"},{title:"$0",body:"Avg Donation",footer:"Mar 1, 2020 - Mar 1, 2020"},{title:"$0",body:"Avg Donation",footer:"Mar 1, 2020 - Mar 2, 2020"},{title:"$0",body:"Avg Donation",footer:"Mar 2, 2020 - Mar 2, 2020"},{title:"$0",body:"Avg Donation",footer:"Mar 2, 2020 - Mar 2, 2020"},{title:"$0",body:"Avg Donation",footer:"Mar 2, 2020 - Mar 2, 2020"},{title:"$41.00",body:"Avg Donation",footer:"Mar 2, 2020 - Mar 2, 2020"},{title:"$0",body:"Avg Donation",footer:"Mar 2, 2020 - Mar 2, 2020"},{title:"$0",body:"Avg Donation",footer:"Mar 2, 2020 - Mar 2, 2020"},{title:"$0",body:"Avg Donation",footer:"Mar 2, 2020 - Mar 2, 2020"},{title:"$0",body:"Avg Donation",footer:"Mar 2, 2020 - Mar 3, 2020"}],trend:22.4,info:"VS previous 7 days",highlight:"$131.43"}]};case"total-refunds":return{datasets:[{data:[{x:"2020-02-24 00:00:00",y:0},{x:"2020-02-24 03:00:00",y:0},{x:"2020-02-24 06:00:00",y:0},{x:"2020-02-24 09:00:00",y:0},{x:"2020-02-24 12:00:00",y:0},{x:"2020-02-24 15:00:00",y:0},{x:"2020-02-24 18:00:00",y:0},{x:"2020-02-24 21:00:00",y:0},{x:"2020-02-25 00:00:00",y:0},{x:"2020-02-25 03:00:00",y:0},{x:"2020-02-25 06:00:00",y:0},{x:"2020-02-25 09:00:00",y:0},{x:"2020-02-25 12:00:00",y:0},{x:"2020-02-25 15:00:00",y:0},{x:"2020-02-25 18:00:00",y:0},{x:"2020-02-25 21:00:00",y:0},{x:"2020-02-26 00:00:00",y:0},{x:"2020-02-26 03:00:00",y:0},{x:"2020-02-26 06:00:00",y:0},{x:"2020-02-26 09:00:00",y:0},{x:"2020-02-26 12:00:00",y:0},{x:"2020-02-26 15:00:00",y:0},{x:"2020-02-26 18:00:00",y:0},{x:"2020-02-26 21:00:00",y:0},{x:"2020-02-27 00:00:00",y:0},{x:"2020-02-27 03:00:00",y:0},{x:"2020-02-27 06:00:00",y:0},{x:"2020-02-27 09:00:00",y:0},{x:"2020-02-27 12:00:00",y:0},{x:"2020-02-27 15:00:00",y:0},{x:"2020-02-27 18:00:00",y:0},{x:"2020-02-27 21:00:00",y:0},{x:"2020-02-28 00:00:00",y:0},{x:"2020-02-28 03:00:00",y:0},{x:"2020-02-28 06:00:00",y:0},{x:"2020-02-28 09:00:00",y:0},{x:"2020-02-28 12:00:00",y:0},{x:"2020-02-28 15:00:00",y:0},{x:"2020-02-28 18:00:00",y:0},{x:"2020-02-28 21:00:00",y:0},{x:"2020-02-29 00:00:00",y:0},{x:"2020-02-29 03:00:00",y:0},{x:"2020-02-29 06:00:00",y:0},{x:"2020-02-29 09:00:00",y:0},{x:"2020-02-29 12:00:00",y:0},{x:"2020-02-29 15:00:00",y:0},{x:"2020-02-29 18:00:00",y:0},{x:"2020-02-29 21:00:00",y:0},{x:"2020-03-01 00:00:00",y:0},{x:"2020-03-01 03:00:00",y:0},{x:"2020-03-01 06:00:00",y:0},{x:"2020-03-01 09:00:00",y:0},{x:"2020-03-01 12:00:00",y:0},{x:"2020-03-01 15:00:00",y:0},{x:"2020-03-01 18:00:00",y:0},{x:"2020-03-01 21:00:00",y:0},{x:"2020-03-02 00:00:00",y:0},{x:"2020-03-02 03:00:00",y:0},{x:"2020-03-02 06:00:00",y:0},{x:"2020-03-02 09:00:00",y:0},{x:"2020-03-02 12:00:00",y:0},{x:"2020-03-02 15:00:00",y:0},{x:"2020-03-02 18:00:00",y:0},{x:"2020-03-02 21:00:00",y:0},{x:"2020-03-03 00:00:00",y:0}],tooltips:[{title:"0 Refunds",body:"Total Refunds",footer:"Sun 9pm - Mon 12am"},{title:"0 Refunds",body:"Total Refunds",footer:"Mon 12am - Mon 3am"},{title:"0 Refunds",body:"Total Refunds",footer:"Mon 3am - Mon 6am"},{title:"0 Refunds",body:"Total Refunds",footer:"Mon 6am - Mon 9am"},{title:"0 Refunds",body:"Total Refunds",footer:"Mon 9am - Mon 12pm"},{title:"0 Refunds",body:"Total Refunds",footer:"Mon 12pm - Mon 3pm"},{title:"0 Refunds",body:"Total Refunds",footer:"Mon 3pm - Mon 6pm"},{title:"0 Refunds",body:"Total Refunds",footer:"Mon 6pm - Mon 9pm"},{title:"0 Refunds",body:"Total Refunds",footer:"Mon 9pm - Tue 12am"},{title:"0 Refunds",body:"Total Refunds",footer:"Tue 12am - Tue 3am"},{title:"0 Refunds",body:"Total Refunds",footer:"Tue 3am - Tue 6am"},{title:"0 Refunds",body:"Total Refunds",footer:"Tue 6am - Tue 9am"},{title:"0 Refunds",body:"Total Refunds",footer:"Tue 9am - Tue 12pm"},{title:"0 Refunds",body:"Total Refunds",footer:"Tue 12pm - Tue 3pm"},{title:"0 Refunds",body:"Total Refunds",footer:"Tue 3pm - Tue 6pm"},{title:"0 Refunds",body:"Total Refunds",footer:"Tue 6pm - Tue 9pm"},{title:"0 Refunds",body:"Total Refunds",footer:"Tue 9pm - Wed 12am"},{title:"0 Refunds",body:"Total Refunds",footer:"Wed 12am - Wed 3am"},{title:"0 Refunds",body:"Total Refunds",footer:"Wed 3am - Wed 6am"},{title:"0 Refunds",body:"Total Refunds",footer:"Wed 6am - Wed 9am"},{title:"0 Refunds",body:"Total Refunds",footer:"Wed 9am - Wed 12pm"},{title:"0 Refunds",body:"Total Refunds",footer:"Wed 12pm - Wed 3pm"},{title:"0 Refunds",body:"Total Refunds",footer:"Wed 3pm - Wed 6pm"},{title:"0 Refunds",body:"Total Refunds",footer:"Wed 6pm - Wed 9pm"},{title:"0 Refunds",body:"Total Refunds",footer:"Wed 9pm - Thu 12am"},{title:"0 Refunds",body:"Total Refunds",footer:"Thu 12am - Thu 3am"},{title:"0 Refunds",body:"Total Refunds",footer:"Thu 3am - Thu 6am"},{title:"0 Refunds",body:"Total Refunds",footer:"Thu 6am - Thu 9am"},{title:"0 Refunds",body:"Total Refunds",footer:"Thu 9am - Thu 12pm"},{title:"0 Refunds",body:"Total Refunds",footer:"Thu 12pm - Thu 3pm"},{title:"0 Refunds",body:"Total Refunds",footer:"Thu 3pm - Thu 6pm"},{title:"0 Refunds",body:"Total Refunds",footer:"Thu 6pm - Thu 9pm"},{title:"0 Refunds",body:"Total Refunds",footer:"Thu 9pm - Fri 12am"},{title:"0 Refunds",body:"Total Refunds",footer:"Fri 12am - Fri 3am"},{title:"0 Refunds",body:"Total Refunds",footer:"Fri 3am - Fri 6am"},{title:"0 Refunds",body:"Total Refunds",footer:"Fri 6am - Fri 9am"},{title:"0 Refunds",body:"Total Refunds",footer:"Fri 9am - Fri 12pm"},{title:"0 Refunds",body:"Total Refunds",footer:"Fri 12pm - Fri 3pm"},{title:"0 Refunds",body:"Total Refunds",footer:"Fri 3pm - Fri 6pm"},{title:"0 Refunds",body:"Total Refunds",footer:"Fri 6pm - Fri 9pm"},{title:"0 Refunds",body:"Total Refunds",footer:"Fri 9pm - Sat 12am"},{title:"0 Refunds",body:"Total Refunds",footer:"Sat 12am - Sat 3am"},{title:"0 Refunds",body:"Total Refunds",footer:"Sat 3am - Sat 6am"},{title:"0 Refunds",body:"Total Refunds",footer:"Sat 6am - Sat 9am"},{title:"0 Refunds",body:"Total Refunds",footer:"Sat 9am - Sat 12pm"},{title:"0 Refunds",body:"Total Refunds",footer:"Sat 12pm - Sat 3pm"},{title:"0 Refunds",body:"Total Refunds",footer:"Sat 3pm - Sat 6pm"},{title:"0 Refunds",body:"Total Refunds",footer:"Sat 6pm - Sat 9pm"},{title:"0 Refunds",body:"Total Refunds",footer:"Sat 9pm - Sun 12am"},{title:"0 Refunds",body:"Total Refunds",footer:"Sun 12am - Sun 3am"},{title:"0 Refunds",body:"Total Refunds",footer:"Sun 3am - Sun 6am"},{title:"0 Refunds",body:"Total Refunds",footer:"Sun 6am - Sun 9am"},{title:"0 Refunds",body:"Total Refunds",footer:"Sun 9am - Sun 12pm"},{title:"0 Refunds",body:"Total Refunds",footer:"Sun 12pm - Sun 3pm"},{title:"0 Refunds",body:"Total Refunds",footer:"Sun 3pm - Sun 6pm"},{title:"0 Refunds",body:"Total Refunds",footer:"Sun 6pm - Sun 9pm"},{title:"0 Refunds",body:"Total Refunds",footer:"Sun 9pm - Mon 12am"},{title:"0 Refunds",body:"Total Refunds",footer:"Mon 12am - Mon 3am"},{title:"0 Refunds",body:"Total Refunds",footer:"Mon 3am - Mon 6am"},{title:"0 Refunds",body:"Total Refunds",footer:"Mon 6am - Mon 9am"},{title:"0 Refunds",body:"Total Refunds",footer:"Mon 9am - Mon 12pm"},{title:"0 Refunds",body:"Total Refunds",footer:"Mon 12pm - Mon 3pm"},{title:"0 Refunds",body:"Total Refunds",footer:"Mon 3pm - Mon 6pm"},{title:"0 Refunds",body:"Total Refunds",footer:"Mon 6pm - Mon 9pm"},{title:"0 Refunds",body:"Total Refunds",footer:"Mon 9pm - Tue 12am"}],trend:0,info:"VS previous 7 days",highlight:0}]};case"payment-methods":return{labels:["Stripe - Credit Card","Offline Donation","PayPal Standard","Test Donation","Stripe - Checkout"],datasets:[{data:[417,255,248,0,0],tooltips:[{title:"$417.00",body:"7 Payments",footer:"Stripe - Credit Card"},{title:"$255.00",body:"7 Payments",footer:"Offline Donation"},{title:"$248.00",body:"7 Payments",footer:"PayPal Standard"},{title:"$0",body:"7 Payments",footer:"Test Donation"},{title:"$0",body:"7 Payments",footer:"Stripe - Checkout"}]}]};case"payment-statuses":return{labels:["Completed","Pending","Refunded","Abandoned"],datasets:[{data:[7,0,0,0],tooltips:[{title:"7 Payments",body:"Completed",footer:""},{title:"0 Payments",body:"Pending",footer:""},{title:"0 Payments",body:"Refunded",footer:""},{title:"0 Payments",body:"Abandoned",footer:""}]}]};case"form-performance":return{forms:null,datasets:[{data:[500,379,41],tooltips:[{title:"$500.00",body:"2 Donations",footer:"Save the Rainforest"},{title:"$379.00",body:"4 Donations",footer:"Homeless Outreach Fund"},{title:"$41.00",body:"1 Donations",footer:"Support the Veterans Choir"}],labels:["Save the Rainforest","Homeless Outreach Fund","Support the Veterans Choir"]}]};case"recent-donations":return[{type:"donation",donation:{ID:2189},status:"completed",amount:"$41.00",url:"https://give.local/wp-admin/edit.php?post_type=give_forms&page=give-payment-history&view=view-payment-details&id=2189",time:"2020-03-02 11:21:00",donor:{name:"Philippine Ferraraccio",id:"2096"},source:"Support the Veterans Choir"},{type:"donation",donation:{ID:2188},status:"completed",amount:"$250.00",url:"https://give.local/wp-admin/edit.php?post_type=give_forms&page=give-payment-history&view=view-payment-details&id=2188",time:"2020-03-01 11:21:00",donor:{name:"Sheridan Frowd",id:"2095"},source:"Save the Rainforest"},{type:"donation",donation:{ID:2187},status:"completed",amount:"$25.00",url:"https://give.local/wp-admin/edit.php?post_type=give_forms&page=give-payment-history&view=view-payment-details&id=2187",time:"2020-02-28 11:21:00",donor:{name:"Loraine Swettenham",id:"2094"},source:"Homeless Outreach Fund"},{type:"donation",donation:{ID:2186},status:"completed",amount:"$126.00",url:"https://give.local/wp-admin/edit.php?post_type=give_forms&page=give-payment-history&view=view-payment-details&id=2186",time:"2020-02-27 12:21:00",donor:{name:"Les Leddie",id:"2082"},source:"Homeless Outreach Fund"},{type:"donation",donation:{ID:2185},status:"completed",amount:"$250.00",url:"https://give.local/wp-admin/edit.php?post_type=give_forms&page=give-payment-history&view=view-payment-details&id=2185",time:"2020-02-27 11:21:00",donor:{name:"Flint Cruikshanks",id:"2093"},source:"Save the Rainforest"},{type:"donation",donation:{ID:2184},status:"completed",amount:"$5.00",url:"https://give.local/wp-admin/edit.php?post_type=give_forms&page=give-payment-history&view=view-payment-details&id=2184",time:"2020-02-26 11:21:00",donor:{name:"Dunn Layman",id:"2092"},source:"Homeless Outreach Fund"},{type:"donation",donation:{ID:2183},status:"completed",amount:"$223.00",url:"https://give.local/wp-admin/edit.php?post_type=give_forms&page=give-payment-history&view=view-payment-details&id=2183",time:"2020-02-25 11:21:00",donor:{name:"Barrie Hartop",id:"2091"},source:"Homeless Outreach Fund"},{type:"donation",donation:{ID:2182},status:"cancelled",amount:"$25.00",url:"https://give.local/wp-admin/edit.php?post_type=give_forms&page=give-payment-history&view=view-payment-details&id=2182",time:"2020-02-24 11:21:00",donor:{name:"Teressa Corrado",id:"2090"},source:"Help Feed America"}];case"top-donors":return[{type:"donor",earnings:250,total:"$250.00",donations:1,count:"1 Donation",name:"Sheridan Frowd",email:"sfrowd86@usgs.gov",image:null,url:"https://give.local/wp-admin/edit.php?post_type=give_forms&page=give-donors&view=overview&id=1795"},{type:"donor",earnings:250,total:"$250.00",donations:1,count:"1 Donation",name:"Flint Cruikshanks",email:"fcruikshanks84@unesco.org",image:null,url:"https://give.local/wp-admin/edit.php?post_type=give_forms&page=give-donors&view=overview&id=1793"},{type:"donor",earnings:223,total:"$223.00",donations:1,count:"1 Donation",name:"Barrie Hartop",email:"bhartop82@goo.ne.jp",image:null,url:"https://give.local/wp-admin/edit.php?post_type=give_forms&page=give-donors&view=overview&id=1791"},{type:"donor",earnings:126,total:"$126.00",donations:1,count:"1 Donation",name:"Les Leddie",email:"lleddie7t@zdnet.com",image:null,url:"https://give.local/wp-admin/edit.php?post_type=give_forms&page=give-donors&view=overview&id=1782"},{type:"donor",earnings:41,total:"$41.00",donations:1,count:"1 Donation",name:"Philippine Ferraraccio",email:"pferraraccio87@dailymail.co.uk",image:null,url:"https://give.local/wp-admin/edit.php?post_type=give_forms&page=give-donors&view=overview&id=1796"},{type:"donor",earnings:25,total:"$25.00",donations:1,count:"1 Donation",name:"Loraine Swettenham",email:"lswettenham85@opera.com",image:null,url:"https://give.local/wp-admin/edit.php?post_type=give_forms&page=give-donors&view=overview&id=1794"},{type:"donor",earnings:5,total:"$5.00",donations:1,count:"1 Donation",name:"Dunn Layman",email:"dlayman83@phoca.cz",image:null,url:"https://give.local/wp-admin/edit.php?post_type=give_forms&page=give-donors&view=overview&id=1792"}];case"income-breakdown":return[{Date:"February 24, 2020",Donors:0,Donations:"$0",Refunds:0,Net:"$0"},{Date:"February 25, 2020",Donors:0,Donations:"$0",Refunds:0,Net:"$0"},{Date:"February 26, 2020",Donors:1,Donations:"$223.00",Refunds:0,Net:"$223.00"},{Date:"February 27, 2020",Donors:1,Donations:"$5.00",Refunds:0,Net:"$5.00"},{Date:"February 28, 2020",Donors:2,Donations:"$376.00",Refunds:0,Net:"$376.00"},{Date:"February 29, 2020",Donors:1,Donations:"$25.00",Refunds:0,Net:"$25.00"},{Date:"March 1, 2020",Donors:0,Donations:"$0",Refunds:0,Net:"$0"},{Date:"March 2, 2020",Donors:1,Donations:"$250.00",Refunds:0,Net:"$250.00"},{Date:"March 3, 2020",Donors:1,Donations:"$41.00",Refunds:0,Net:"$41.00"}];default:return null}}(e);f(a)}else f(t.data.data);"income"===e&&s(Object(d.d)()),y(!1)})).catch((function(){y(!1)})))}),[a,e]),[m,p]}},,,,,,function(e,t,n){var a=n(6);e.exports=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(Object(n));"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter((function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable})))),r.forEach((function(t){a(e,t,n[t])}))}return e}},function(e,t,n){"use strict";n.d(t,"b",(function(){return a})),n.d(t,"e",(function(){return r})),n.d(t,"a",(function(){return i})),n.d(t,"c",(function(){return o})),n.d(t,"d",(function(){return s}));var a=function(e,t){return{type:"SET_DATES",payload:{startDate:e,endDate:t}}},r=function(e){return{type:"SET_RANGE",payload:{range:e}}},i=function(){return{type:"ENABLE_PERIOD_SELECTOR",payload:!1}},o=function(e){return{type:"SET_GIVE_STATUS",payload:e}},s=function(){return{type:"SET_PAGE_LOADED",payload:!0}}},,,function(e,t,n){"use strict";n.d(t,"a",(function(){return i})),n.d(t,"b",(function(){return o}));var a=n(1),r=Object(a.createContext)(),i=function(e){var t=e.reducer,n=e.initialState,i=e.children;return wp.element.createElement(r.Provider,{value:Object(a.useReducer)(t,n)},i)},o=function(){return Object(a.useContext)(r)}},,,,function(e,t,n){"use strict";var a=n(2),r=n.n(a),i=(n(350),function(e){var t=e.width,n=e.title,a=e.children;return wp.element.createElement("div",{className:"givewp-card",style:{gridColumn:"span "+t}},n&&wp.element.createElement("div",{className:"title"},n),wp.element.createElement("div",{className:"content"},a))});i.propTypes={width:r.a.number,title:r.a.string,children:r.a.node.isRequired},i.defaultProps={width:4,title:null,children:null},t.a=i},,,,,,,,,,function(e,t,n){"use strict";n(353);t.a=function(){return wp.element.createElement("div",{className:"givewp-spinner"})}},,,,,,function(e,t,n){var a=n(339),r=n(340),i=n(341);e.exports=function(e){return a(e)||r(e)||i()}},function(e,t,n){"use strict";!function e(){if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&"function"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE){0;try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e)}catch(e){console.error(e)}}}(),e.exports=n(310)},,function(e,t,n){"use strict";var a=n(5),r=n.n(a),i=n(1),o=n(2),s=n.n(o),l=n(63),d=n.n(l);n(354);var u=function(e){var t=e.title,n=e.body,a=e.position,r=a?{top:a.y,left:a.x}:null;return wp.element.createElement("div",{className:"givewp-tooltip",style:r},t&&wp.element.createElement("div",{className:"givewp-tooltip__header"},t),wp.element.createElement("div",{className:"givewp-tooltip__body"},n),wp.element.createElement("div",{className:"givewp-tooltip__footer"}),wp.element.createElement("div",{className:"givewp-tooltip__caret"}))},c=(n(355),function(e){var t=e.title,n=e.data,a=wp.element.createElement("svg",{width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},wp.element.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7 13C10.3137 13 13 10.3137 13 7C13 3.68629 10.3137 1 7 1C3.68629 1 1 3.68629 1 7C1 10.3137 3.68629 13 7 13Z",fill:"#69B868",fillOpacity:"0.3"}),wp.element.createElement("mask",{id:"maskUp","mask-type":"alpha",maskUnits:"userSpaceOnUse",x:"3",y:"4",width:"8",height:"5"},wp.element.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7 4.6665L3.5 8.1665L4.3225 8.989L7 6.31734L9.6775 8.989L10.5 8.1665L7 4.6665Z",fill:"white"})),wp.element.createElement("g",{mask:"url(#maskUp)"},wp.element.createElement("rect",{x:"-7.5835",y:"-7.5835",width:"29.1667",height:"29.1667",fill:"#69B868"}))),o=wp.element.createElement("svg",{width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},wp.element.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7 13C10.3137 13 13 10.3137 13 7C13 3.68629 10.3137 1 7 1C3.68629 1 1 3.68629 1 7C1 10.3137 3.68629 13 7 13Z",fill:"#D75A4B",fillOpacity:"0.3"}),wp.element.createElement("mask",{id:"maskDown","mask-type":"alpha",maskUnits:"userSpaceOnUse",x:"3",y:"5",width:"8",height:"5"},wp.element.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.6775 5.01074L7 7.68241L4.3225 5.01074L3.5 5.83324L7 9.33324L10.5 5.83324L9.6775 5.01074Z",fill:"white"})),wp.element.createElement("g",{mask:"url(#maskDown)"},wp.element.createElement("rect",{x:"-7.5835",y:"-7.5835",width:"29.1667",height:"29.1667",fill:"#D75A4B"}))),s=Object(i.useState)(null),l=r()(s,2),c=l[0],m=l[1],f=Object(i.useState)(null),h=r()(f,2),_=h[0],p=h[1],y=Object(i.useState)(null),g=r()(y,2),M=g[0],v=g[1],b=Object(i.useState)(!1),L=r()(b,2),k=L[0],w=L[1],x=Object(i.useState)(null),T=r()(x,2),Y=T[0],D=T[1],S=Object(i.useState)({x:0,y:0}),E=r()(S,2),P=E[0],H=E[1],j=Object(i.useState)(!1),C=r()(j,2),O=C[0],F=C[1],A=Object(i.createRef)(),R=function(e){return{type:"line",data:function(e){return{labels:e.labels,datasets:e.datasets.map((function(e){return{data:e.data,backgroundColor:"#FFFFFF",borderColor:"#DDDDDD"}}))}}(e),options:{hover:{intersect:!1},plugins:{crosshair:!1},layout:{padding:4},legend:{display:!1},scales:{yAxes:[{display:!1}],xAxes:[{display:!1,type:"time"}]},tooltips:{enabled:!1,mode:"index",intersect:!1,custom:function(t){var n=document.getElementById("givewp-mini-chartjs-tooltip");if(n||((n=document.createElement("div")).id="givewp-mini-chartjs-tooltip",n.innerHTML='<div class="givewp-tooltip-header"></div><div class="givewp-tooltip-body"><bold></b><br></div><div class="givewp-tooltip-caret"></div>',document.body.appendChild(n)),0===t.opacity)return n.style.opacity=0,void(n.style.display="none");n.classList.remove("above","below","no-transform"),t.yAlign?n.classList.add(t.yAlign):n.classList.add("no-transform");var a=this._chart.canvas.getBoundingClientRect();n.style.opacity=1,n.style.display="block",n.style.position="absolute",n.style.left=a.left+t.caretX+"px",n.style.top=a.top+window.pageYOffset+t.caretY-(n.offsetHeight+6)+"px",n.style.pointerEvents="none";var r=e.datasets[t.dataPoints[0].datasetIndex].tooltips[t.dataPoints[0].index];n.innerHTML='<div class="givewp-mini-tooltip-header">'.concat(r.title,'</div><div class="givewp-mini-tooltip-body"><bold>').concat(r.body,"</b><br>").concat(r.footer,'</div><div class="givewp-mini-tooltip-caret"></div>')}},elements:{point:{radius:0,hitRadius:3,hoverRadius:4,backgroundColor:"#555555"}}}}}(n),W=Object(i.createRef)();return Object(i.useEffect)((function(){var e,t=function(e){return e.datasets[0].highlight}(n),r=function(e){return e.datasets[0].trend}(n),s=function(e){return e.datasets[0].info}(n);switch(!0){case r<0:e=wp.element.createElement(i.Fragment,null,o,wp.element.createElement("span",{style:{color:"#D75A4B"}},"".concat(Math.abs(r),"%")));break;case r>0:e=wp.element.createElement(i.Fragment,null,a,wp.element.createElement("span",{style:{color:"#69B868"}},"".concat(Math.abs(r),"%")));break;default:e=wp.element.createElement(i.Fragment,null,wp.element.createElement("span",{style:{color:"#82878c"}},"".concat(Math.abs(r),"%")))}m(t),D(s),p(r),v(e);var l=A.current.getContext("2d"),u=new d.a(l,R);return function(){u.destroy()}}),[n]),Object(i.useLayoutEffect)((function(){function e(){var e=W.current,t=e.getBoundingClientRect(),n=e.closest(".givewp-card").getBoundingClientRect(),a=t.width>.5*n.width;F(a)}return window.addEventListener("resize",e),e(),function(){window.removeEventListener("resize",e)}})),wp.element.createElement("div",{className:"givewp-mini-chart"},wp.element.createElement("div",{className:"header"},wp.element.createElement("div",{className:"title"},t),"NaN"!==_&&wp.element.createElement("div",{className:"indicator",onMouseEnter:function(e){var t=e.target.classList.contains("indicator")?e.target:e.target.closest(".indicator"),n=t.getBoundingClientRect();H({x:t.offsetLeft+n.width/2,y:t.offsetTop}),w(!0)},onMouseLeave:function(){w(!1)}},k&&wp.element.createElement(u,{body:Y,position:P}),M)),wp.element.createElement("div",{className:O?"content stacked":"content"},wp.element.createElement("div",{className:"amount",ref:W},c&&c),wp.element.createElement("div",{className:"chart"},wp.element.createElement("canvas",{width:100,height:40,ref:A}))))});c.propTypes={title:s.a.string.isRequired,data:s.a.object.isRequired},c.defaultProps={title:null,data:null};var m=c,f=n(64),h=n(18),_=function(e){var t=e.title,n=e.endpoint,a=Object(h.b)(n),o=r()(a,2),s=o[0],l=o[1];return wp.element.createElement(i.Fragment,null,l&&wp.element.createElement(f.a,null),s?wp.element.createElement(m,{title:t,data:s}):wp.element.createElement("div",{style:{width:"100%",height:"95px"}}))};_.propTypes={title:s.a.string.isRequired,endpoint:s.a.string.isRequired},_.defaultProps={title:null,endpoint:null};t.a=_},,,,,,,,,,,,function(e,t,n){
2
+ /*!
3
+ * Chart.js v2.9.3
4
+ * https://www.chartjs.org
5
+ * (c) 2019 Chart.js Contributors
6
+ * Released under the MIT License
7
+ */
8
+ e.exports=function(e){"use strict";e=e&&e.hasOwnProperty("default")?e.default:e;var t={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]},n=function(e,t){return e(t={exports:{}},t.exports),t.exports}((function(e){var n={};for(var a in t)t.hasOwnProperty(a)&&(n[t[a]]=a);var r=e.exports={rgb:{channels:3,labels:"rgb"},hsl:{channels:3,labels:"hsl"},hsv:{channels:3,labels:"hsv"},hwb:{channels:3,labels:"hwb"},cmyk:{channels:4,labels:"cmyk"},xyz:{channels:3,labels:"xyz"},lab:{channels:3,labels:"lab"},lch:{channels:3,labels:"lch"},hex:{channels:1,labels:["hex"]},keyword:{channels:1,labels:["keyword"]},ansi16:{channels:1,labels:["ansi16"]},ansi256:{channels:1,labels:["ansi256"]},hcg:{channels:3,labels:["h","c","g"]},apple:{channels:3,labels:["r16","g16","b16"]},gray:{channels:1,labels:["gray"]}};for(var i in r)if(r.hasOwnProperty(i)){if(!("channels"in r[i]))throw new Error("missing channels property: "+i);if(!("labels"in r[i]))throw new Error("missing channel labels property: "+i);if(r[i].labels.length!==r[i].channels)throw new Error("channel and label counts mismatch: "+i);var o=r[i].channels,s=r[i].labels;delete r[i].channels,delete r[i].labels,Object.defineProperty(r[i],"channels",{value:o}),Object.defineProperty(r[i],"labels",{value:s})}r.rgb.hsl=function(e){var t,n,a=e[0]/255,r=e[1]/255,i=e[2]/255,o=Math.min(a,r,i),s=Math.max(a,r,i),l=s-o;return s===o?t=0:a===s?t=(r-i)/l:r===s?t=2+(i-a)/l:i===s&&(t=4+(a-r)/l),(t=Math.min(60*t,360))<0&&(t+=360),n=(o+s)/2,[t,100*(s===o?0:n<=.5?l/(s+o):l/(2-s-o)),100*n]},r.rgb.hsv=function(e){var t,n,a,r,i,o=e[0]/255,s=e[1]/255,l=e[2]/255,d=Math.max(o,s,l),u=d-Math.min(o,s,l),c=function(e){return(d-e)/6/u+.5};return 0===u?r=i=0:(i=u/d,t=c(o),n=c(s),a=c(l),o===d?r=a-n:s===d?r=1/3+t-a:l===d&&(r=2/3+n-t),r<0?r+=1:r>1&&(r-=1)),[360*r,100*i,100*d]},r.rgb.hwb=function(e){var t=e[0],n=e[1],a=e[2];return[r.rgb.hsl(e)[0],1/255*Math.min(t,Math.min(n,a))*100,100*(a=1-1/255*Math.max(t,Math.max(n,a)))]},r.rgb.cmyk=function(e){var t,n=e[0]/255,a=e[1]/255,r=e[2]/255;return[100*((1-n-(t=Math.min(1-n,1-a,1-r)))/(1-t)||0),100*((1-a-t)/(1-t)||0),100*((1-r-t)/(1-t)||0),100*t]},r.rgb.keyword=function(e){var a=n[e];if(a)return a;var r,i,o,s=1/0;for(var l in t)if(t.hasOwnProperty(l)){var d=t[l],u=(i=e,o=d,Math.pow(i[0]-o[0],2)+Math.pow(i[1]-o[1],2)+Math.pow(i[2]-o[2],2));u<s&&(s=u,r=l)}return r},r.keyword.rgb=function(e){return t[e]},r.rgb.xyz=function(e){var t=e[0]/255,n=e[1]/255,a=e[2]/255;return[100*(.4124*(t=t>.04045?Math.pow((t+.055)/1.055,2.4):t/12.92)+.3576*(n=n>.04045?Math.pow((n+.055)/1.055,2.4):n/12.92)+.1805*(a=a>.04045?Math.pow((a+.055)/1.055,2.4):a/12.92)),100*(.2126*t+.7152*n+.0722*a),100*(.0193*t+.1192*n+.9505*a)]},r.rgb.lab=function(e){var t=r.rgb.xyz(e),n=t[0],a=t[1],i=t[2];return a/=100,i/=108.883,n=(n/=95.047)>.008856?Math.pow(n,1/3):7.787*n+16/116,[116*(a=a>.008856?Math.pow(a,1/3):7.787*a+16/116)-16,500*(n-a),200*(a-(i=i>.008856?Math.pow(i,1/3):7.787*i+16/116))]},r.hsl.rgb=function(e){var t,n,a,r,i,o=e[0]/360,s=e[1]/100,l=e[2]/100;if(0===s)return[i=255*l,i,i];t=2*l-(n=l<.5?l*(1+s):l+s-l*s),r=[0,0,0];for(var d=0;d<3;d++)(a=o+1/3*-(d-1))<0&&a++,a>1&&a--,i=6*a<1?t+6*(n-t)*a:2*a<1?n:3*a<2?t+(n-t)*(2/3-a)*6:t,r[d]=255*i;return r},r.hsl.hsv=function(e){var t=e[0],n=e[1]/100,a=e[2]/100,r=n,i=Math.max(a,.01);return n*=(a*=2)<=1?a:2-a,r*=i<=1?i:2-i,[t,100*(0===a?2*r/(i+r):2*n/(a+n)),(a+n)/2*100]},r.hsv.rgb=function(e){var t=e[0]/60,n=e[1]/100,a=e[2]/100,r=Math.floor(t)%6,i=t-Math.floor(t),o=255*a*(1-n),s=255*a*(1-n*i),l=255*a*(1-n*(1-i));switch(a*=255,r){case 0:return[a,l,o];case 1:return[s,a,o];case 2:return[o,a,l];case 3:return[o,s,a];case 4:return[l,o,a];case 5:return[a,o,s]}},r.hsv.hsl=function(e){var t,n,a,r=e[0],i=e[1]/100,o=e[2]/100,s=Math.max(o,.01);return a=(2-i)*o,n=i*s,[r,100*(n=(n/=(t=(2-i)*s)<=1?t:2-t)||0),100*(a/=2)]},r.hwb.rgb=function(e){var t,n,a,r,i,o,s,l=e[0]/360,d=e[1]/100,u=e[2]/100,c=d+u;switch(c>1&&(d/=c,u/=c),a=6*l-(t=Math.floor(6*l)),0!=(1&t)&&(a=1-a),r=d+a*((n=1-u)-d),t){default:case 6:case 0:i=n,o=r,s=d;break;case 1:i=r,o=n,s=d;break;case 2:i=d,o=n,s=r;break;case 3:i=d,o=r,s=n;break;case 4:i=r,o=d,s=n;break;case 5:i=n,o=d,s=r}return[255*i,255*o,255*s]},r.cmyk.rgb=function(e){var t=e[0]/100,n=e[1]/100,a=e[2]/100,r=e[3]/100;return[255*(1-Math.min(1,t*(1-r)+r)),255*(1-Math.min(1,n*(1-r)+r)),255*(1-Math.min(1,a*(1-r)+r))]},r.xyz.rgb=function(e){var t,n,a,r=e[0]/100,i=e[1]/100,o=e[2]/100;return n=-.9689*r+1.8758*i+.0415*o,a=.0557*r+-.204*i+1.057*o,t=(t=3.2406*r+-1.5372*i+-.4986*o)>.0031308?1.055*Math.pow(t,1/2.4)-.055:12.92*t,n=n>.0031308?1.055*Math.pow(n,1/2.4)-.055:12.92*n,a=a>.0031308?1.055*Math.pow(a,1/2.4)-.055:12.92*a,[255*(t=Math.min(Math.max(0,t),1)),255*(n=Math.min(Math.max(0,n),1)),255*(a=Math.min(Math.max(0,a),1))]},r.xyz.lab=function(e){var t=e[0],n=e[1],a=e[2];return n/=100,a/=108.883,t=(t/=95.047)>.008856?Math.pow(t,1/3):7.787*t+16/116,[116*(n=n>.008856?Math.pow(n,1/3):7.787*n+16/116)-16,500*(t-n),200*(n-(a=a>.008856?Math.pow(a,1/3):7.787*a+16/116))]},r.lab.xyz=function(e){var t,n,a,r=e[0];t=e[1]/500+(n=(r+16)/116),a=n-e[2]/200;var i=Math.pow(n,3),o=Math.pow(t,3),s=Math.pow(a,3);return n=i>.008856?i:(n-16/116)/7.787,t=o>.008856?o:(t-16/116)/7.787,a=s>.008856?s:(a-16/116)/7.787,[t*=95.047,n*=100,a*=108.883]},r.lab.lch=function(e){var t,n=e[0],a=e[1],r=e[2];return(t=360*Math.atan2(r,a)/2/Math.PI)<0&&(t+=360),[n,Math.sqrt(a*a+r*r),t]},r.lch.lab=function(e){var t,n=e[0],a=e[1];return t=e[2]/360*2*Math.PI,[n,a*Math.cos(t),a*Math.sin(t)]},r.rgb.ansi16=function(e){var t=e[0],n=e[1],a=e[2],i=1 in arguments?arguments[1]:r.rgb.hsv(e)[2];if(0===(i=Math.round(i/50)))return 30;var o=30+(Math.round(a/255)<<2|Math.round(n/255)<<1|Math.round(t/255));return 2===i&&(o+=60),o},r.hsv.ansi16=function(e){return r.rgb.ansi16(r.hsv.rgb(e),e[2])},r.rgb.ansi256=function(e){var t=e[0],n=e[1],a=e[2];return t===n&&n===a?t<8?16:t>248?231:Math.round((t-8)/247*24)+232:16+36*Math.round(t/255*5)+6*Math.round(n/255*5)+Math.round(a/255*5)},r.ansi16.rgb=function(e){var t=e%10;if(0===t||7===t)return e>50&&(t+=3.5),[t=t/10.5*255,t,t];var n=.5*(1+~~(e>50));return[(1&t)*n*255,(t>>1&1)*n*255,(t>>2&1)*n*255]},r.ansi256.rgb=function(e){if(e>=232){var t=10*(e-232)+8;return[t,t,t]}var n;return e-=16,[Math.floor(e/36)/5*255,Math.floor((n=e%36)/6)/5*255,n%6/5*255]},r.rgb.hex=function(e){var t=(((255&Math.round(e[0]))<<16)+((255&Math.round(e[1]))<<8)+(255&Math.round(e[2]))).toString(16).toUpperCase();return"000000".substring(t.length)+t},r.hex.rgb=function(e){var t=e.toString(16).match(/[a-f0-9]{6}|[a-f0-9]{3}/i);if(!t)return[0,0,0];var n=t[0];3===t[0].length&&(n=n.split("").map((function(e){return e+e})).join(""));var a=parseInt(n,16);return[a>>16&255,a>>8&255,255&a]},r.rgb.hcg=function(e){var t,n=e[0]/255,a=e[1]/255,r=e[2]/255,i=Math.max(Math.max(n,a),r),o=Math.min(Math.min(n,a),r),s=i-o;return t=s<=0?0:i===n?(a-r)/s%6:i===a?2+(r-n)/s:4+(n-a)/s+4,t/=6,[360*(t%=1),100*s,100*(s<1?o/(1-s):0)]},r.hsl.hcg=function(e){var t=e[1]/100,n=e[2]/100,a=1,r=0;return(a=n<.5?2*t*n:2*t*(1-n))<1&&(r=(n-.5*a)/(1-a)),[e[0],100*a,100*r]},r.hsv.hcg=function(e){var t=e[1]/100,n=e[2]/100,a=t*n,r=0;return a<1&&(r=(n-a)/(1-a)),[e[0],100*a,100*r]},r.hcg.rgb=function(e){var t=e[0]/360,n=e[1]/100,a=e[2]/100;if(0===n)return[255*a,255*a,255*a];var r,i=[0,0,0],o=t%1*6,s=o%1,l=1-s;switch(Math.floor(o)){case 0:i[0]=1,i[1]=s,i[2]=0;break;case 1:i[0]=l,i[1]=1,i[2]=0;break;case 2:i[0]=0,i[1]=1,i[2]=s;break;case 3:i[0]=0,i[1]=l,i[2]=1;break;case 4:i[0]=s,i[1]=0,i[2]=1;break;default:i[0]=1,i[1]=0,i[2]=l}return r=(1-n)*a,[255*(n*i[0]+r),255*(n*i[1]+r),255*(n*i[2]+r)]},r.hcg.hsv=function(e){var t=e[1]/100,n=t+e[2]/100*(1-t),a=0;return n>0&&(a=t/n),[e[0],100*a,100*n]},r.hcg.hsl=function(e){var t=e[1]/100,n=e[2]/100*(1-t)+.5*t,a=0;return n>0&&n<.5?a=t/(2*n):n>=.5&&n<1&&(a=t/(2*(1-n))),[e[0],100*a,100*n]},r.hcg.hwb=function(e){var t=e[1]/100,n=t+e[2]/100*(1-t);return[e[0],100*(n-t),100*(1-n)]},r.hwb.hcg=function(e){var t=e[1]/100,n=1-e[2]/100,a=n-t,r=0;return a<1&&(r=(n-a)/(1-a)),[e[0],100*a,100*r]},r.apple.rgb=function(e){return[e[0]/65535*255,e[1]/65535*255,e[2]/65535*255]},r.rgb.apple=function(e){return[e[0]/255*65535,e[1]/255*65535,e[2]/255*65535]},r.gray.rgb=function(e){return[e[0]/100*255,e[0]/100*255,e[0]/100*255]},r.gray.hsl=r.gray.hsv=function(e){return[0,0,e[0]]},r.gray.hwb=function(e){return[0,100,e[0]]},r.gray.cmyk=function(e){return[0,0,0,e[0]]},r.gray.lab=function(e){return[e[0],0,0]},r.gray.hex=function(e){var t=255&Math.round(e[0]/100*255),n=((t<<16)+(t<<8)+t).toString(16).toUpperCase();return"000000".substring(n.length)+n},r.rgb.gray=function(e){return[(e[0]+e[1]+e[2])/3/255*100]}}));function a(e){var t=function(){for(var e={},t=Object.keys(n),a=t.length,r=0;r<a;r++)e[t[r]]={distance:-1,parent:null};return e}(),a=[e];for(t[e].distance=0;a.length;)for(var r=a.pop(),i=Object.keys(n[r]),o=i.length,s=0;s<o;s++){var l=i[s],d=t[l];-1===d.distance&&(d.distance=t[r].distance+1,d.parent=r,a.unshift(l))}return t}function r(e,t){return function(n){return t(e(n))}}function i(e,t){for(var a=[t[e].parent,e],i=n[t[e].parent][e],o=t[e].parent;t[o].parent;)a.unshift(t[o].parent),i=r(n[t[o].parent][o],i),o=t[o].parent;return i.conversion=a,i}n.rgb,n.hsl,n.hsv,n.hwb,n.cmyk,n.xyz,n.lab,n.lch,n.hex,n.keyword,n.ansi16,n.ansi256,n.hcg,n.apple,n.gray;var o={};Object.keys(n).forEach((function(e){o[e]={},Object.defineProperty(o[e],"channels",{value:n[e].channels}),Object.defineProperty(o[e],"labels",{value:n[e].labels});var t=function(e){for(var t=a(e),n={},r=Object.keys(t),o=r.length,s=0;s<o;s++){var l=r[s];null!==t[l].parent&&(n[l]=i(l,t))}return n}(e);Object.keys(t).forEach((function(n){var a=t[n];o[e][n]=function(e){var t=function(t){if(null==t)return t;arguments.length>1&&(t=Array.prototype.slice.call(arguments));var n=e(t);if("object"==typeof n)for(var a=n.length,r=0;r<a;r++)n[r]=Math.round(n[r]);return n};return"conversion"in e&&(t.conversion=e.conversion),t}(a),o[e][n].raw=function(e){var t=function(t){return null==t?t:(arguments.length>1&&(t=Array.prototype.slice.call(arguments)),e(t))};return"conversion"in e&&(t.conversion=e.conversion),t}(a)}))}));var s=o,l={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]},d={getRgba:u,getHsla:c,getRgb:function(e){var t=u(e);return t&&t.slice(0,3)},getHsl:function(e){var t=c(e);return t&&t.slice(0,3)},getHwb:m,getAlpha:function(e){var t=u(e);return t?t[3]:(t=c(e))?t[3]:(t=m(e))?t[3]:void 0},hexString:function(e,t){return t=void 0!==t&&3===e.length?t:e[3],"#"+y(e[0])+y(e[1])+y(e[2])+(t>=0&&t<1?y(Math.round(255*t)):"")},rgbString:function(e,t){return t<1||e[3]&&e[3]<1?f(e,t):"rgb("+e[0]+", "+e[1]+", "+e[2]+")"},rgbaString:f,percentString:function(e,t){if(t<1||e[3]&&e[3]<1)return h(e,t);var n=Math.round(e[0]/255*100),a=Math.round(e[1]/255*100),r=Math.round(e[2]/255*100);return"rgb("+n+"%, "+a+"%, "+r+"%)"},percentaString:h,hslString:function(e,t){return t<1||e[3]&&e[3]<1?_(e,t):"hsl("+e[0]+", "+e[1]+"%, "+e[2]+"%)"},hslaString:_,hwbString:function(e,t){return void 0===t&&(t=void 0!==e[3]?e[3]:1),"hwb("+e[0]+", "+e[1]+"%, "+e[2]+"%"+(void 0!==t&&1!==t?", "+t:"")+")"},keyword:function(e){return g[e.slice(0,3)]}};function u(e){if(e){var t=[0,0,0],n=1,a=e.match(/^#([a-fA-F0-9]{3,4})$/i),r="";if(a){r=(a=a[1])[3];for(var i=0;i<t.length;i++)t[i]=parseInt(a[i]+a[i],16);r&&(n=Math.round(parseInt(r+r,16)/255*100)/100)}else if(a=e.match(/^#([a-fA-F0-9]{6}([a-fA-F0-9]{2})?)$/i)){for(r=a[2],a=a[1],i=0;i<t.length;i++)t[i]=parseInt(a.slice(2*i,2*i+2),16);r&&(n=Math.round(parseInt(r,16)/255*100)/100)}else if(a=e.match(/^rgba?\(\s*([+-]?\d+)\s*,\s*([+-]?\d+)\s*,\s*([+-]?\d+)\s*(?:,\s*([+-]?[\d\.]+)\s*)?\)$/i)){for(i=0;i<t.length;i++)t[i]=parseInt(a[i+1]);n=parseFloat(a[4])}else if(a=e.match(/^rgba?\(\s*([+-]?[\d\.]+)\%\s*,\s*([+-]?[\d\.]+)\%\s*,\s*([+-]?[\d\.]+)\%\s*(?:,\s*([+-]?[\d\.]+)\s*)?\)$/i)){for(i=0;i<t.length;i++)t[i]=Math.round(2.55*parseFloat(a[i+1]));n=parseFloat(a[4])}else if(a=e.match(/(\w+)/)){if("transparent"==a[1])return[0,0,0,0];if(!(t=l[a[1]]))return}for(i=0;i<t.length;i++)t[i]=p(t[i],0,255);return n=n||0==n?p(n,0,1):1,t[3]=n,t}}function c(e){if(e){var t=e.match(/^hsla?\(\s*([+-]?\d+)(?:deg)?\s*,\s*([+-]?[\d\.]+)%\s*,\s*([+-]?[\d\.]+)%\s*(?:,\s*([+-]?[\d\.]+)\s*)?\)/);if(t){var n=parseFloat(t[4]);return[p(parseInt(t[1]),0,360),p(parseFloat(t[2]),0,100),p(parseFloat(t[3]),0,100),p(isNaN(n)?1:n,0,1)]}}}function m(e){if(e){var t=e.match(/^hwb\(\s*([+-]?\d+)(?:deg)?\s*,\s*([+-]?[\d\.]+)%\s*,\s*([+-]?[\d\.]+)%\s*(?:,\s*([+-]?[\d\.]+)\s*)?\)/);if(t){var n=parseFloat(t[4]);return[p(parseInt(t[1]),0,360),p(parseFloat(t[2]),0,100),p(parseFloat(t[3]),0,100),p(isNaN(n)?1:n,0,1)]}}}function f(e,t){return void 0===t&&(t=void 0!==e[3]?e[3]:1),"rgba("+e[0]+", "+e[1]+", "+e[2]+", "+t+")"}function h(e,t){return"rgba("+Math.round(e[0]/255*100)+"%, "+Math.round(e[1]/255*100)+"%, "+Math.round(e[2]/255*100)+"%, "+(t||e[3]||1)+")"}function _(e,t){return void 0===t&&(t=void 0!==e[3]?e[3]:1),"hsla("+e[0]+", "+e[1]+"%, "+e[2]+"%, "+t+")"}function p(e,t,n){return Math.min(Math.max(t,e),n)}function y(e){var t=e.toString(16).toUpperCase();return t.length<2?"0"+t:t}var g={};for(var M in l)g[l[M]]=M;var v=function(e){return e instanceof v?e:this instanceof v?(this.valid=!1,this.values={rgb:[0,0,0],hsl:[0,0,0],hsv:[0,0,0],hwb:[0,0,0],cmyk:[0,0,0,0],alpha:1},void("string"==typeof e?(t=d.getRgba(e))?this.setValues("rgb",t):(t=d.getHsla(e))?this.setValues("hsl",t):(t=d.getHwb(e))&&this.setValues("hwb",t):"object"==typeof e&&(void 0!==(t=e).r||void 0!==t.red?this.setValues("rgb",t):void 0!==t.l||void 0!==t.lightness?this.setValues("hsl",t):void 0!==t.v||void 0!==t.value?this.setValues("hsv",t):void 0!==t.w||void 0!==t.whiteness?this.setValues("hwb",t):void 0===t.c&&void 0===t.cyan||this.setValues("cmyk",t)))):new v(e);var t};v.prototype={isValid:function(){return this.valid},rgb:function(){return this.setSpace("rgb",arguments)},hsl:function(){return this.setSpace("hsl",arguments)},hsv:function(){return this.setSpace("hsv",arguments)},hwb:function(){return this.setSpace("hwb",arguments)},cmyk:function(){return this.setSpace("cmyk",arguments)},rgbArray:function(){return this.values.rgb},hslArray:function(){return this.values.hsl},hsvArray:function(){return this.values.hsv},hwbArray:function(){var e=this.values;return 1!==e.alpha?e.hwb.concat([e.alpha]):e.hwb},cmykArray:function(){return this.values.cmyk},rgbaArray:function(){var e=this.values;return e.rgb.concat([e.alpha])},hslaArray:function(){var e=this.values;return e.hsl.concat([e.alpha])},alpha:function(e){return void 0===e?this.values.alpha:(this.setValues("alpha",e),this)},red:function(e){return this.setChannel("rgb",0,e)},green:function(e){return this.setChannel("rgb",1,e)},blue:function(e){return this.setChannel("rgb",2,e)},hue:function(e){return e&&(e=(e%=360)<0?360+e:e),this.setChannel("hsl",0,e)},saturation:function(e){return this.setChannel("hsl",1,e)},lightness:function(e){return this.setChannel("hsl",2,e)},saturationv:function(e){return this.setChannel("hsv",1,e)},whiteness:function(e){return this.setChannel("hwb",1,e)},blackness:function(e){return this.setChannel("hwb",2,e)},value:function(e){return this.setChannel("hsv",2,e)},cyan:function(e){return this.setChannel("cmyk",0,e)},magenta:function(e){return this.setChannel("cmyk",1,e)},yellow:function(e){return this.setChannel("cmyk",2,e)},black:function(e){return this.setChannel("cmyk",3,e)},hexString:function(){return d.hexString(this.values.rgb)},rgbString:function(){return d.rgbString(this.values.rgb,this.values.alpha)},rgbaString:function(){return d.rgbaString(this.values.rgb,this.values.alpha)},percentString:function(){return d.percentString(this.values.rgb,this.values.alpha)},hslString:function(){return d.hslString(this.values.hsl,this.values.alpha)},hslaString:function(){return d.hslaString(this.values.hsl,this.values.alpha)},hwbString:function(){return d.hwbString(this.values.hwb,this.values.alpha)},keyword:function(){return d.keyword(this.values.rgb,this.values.alpha)},rgbNumber:function(){var e=this.values.rgb;return e[0]<<16|e[1]<<8|e[2]},luminosity:function(){for(var e=this.values.rgb,t=[],n=0;n<e.length;n++){var a=e[n]/255;t[n]=a<=.03928?a/12.92:Math.pow((a+.055)/1.055,2.4)}return.2126*t[0]+.7152*t[1]+.0722*t[2]},contrast:function(e){var t=this.luminosity(),n=e.luminosity();return t>n?(t+.05)/(n+.05):(n+.05)/(t+.05)},level:function(e){var t=this.contrast(e);return t>=7.1?"AAA":t>=4.5?"AA":""},dark:function(){var e=this.values.rgb;return(299*e[0]+587*e[1]+114*e[2])/1e3<128},light:function(){return!this.dark()},negate:function(){for(var e=[],t=0;t<3;t++)e[t]=255-this.values.rgb[t];return this.setValues("rgb",e),this},lighten:function(e){var t=this.values.hsl;return t[2]+=t[2]*e,this.setValues("hsl",t),this},darken:function(e){var t=this.values.hsl;return t[2]-=t[2]*e,this.setValues("hsl",t),this},saturate:function(e){var t=this.values.hsl;return t[1]+=t[1]*e,this.setValues("hsl",t),this},desaturate:function(e){var t=this.values.hsl;return t[1]-=t[1]*e,this.setValues("hsl",t),this},whiten:function(e){var t=this.values.hwb;return t[1]+=t[1]*e,this.setValues("hwb",t),this},blacken:function(e){var t=this.values.hwb;return t[2]+=t[2]*e,this.setValues("hwb",t),this},greyscale:function(){var e=this.values.rgb,t=.3*e[0]+.59*e[1]+.11*e[2];return this.setValues("rgb",[t,t,t]),this},clearer:function(e){var t=this.values.alpha;return this.setValues("alpha",t-t*e),this},opaquer:function(e){var t=this.values.alpha;return this.setValues("alpha",t+t*e),this},rotate:function(e){var t=this.values.hsl,n=(t[0]+e)%360;return t[0]=n<0?360+n:n,this.setValues("hsl",t),this},mix:function(e,t){var n=e,a=void 0===t?.5:t,r=2*a-1,i=this.alpha()-n.alpha(),o=((r*i==-1?r:(r+i)/(1+r*i))+1)/2,s=1-o;return this.rgb(o*this.red()+s*n.red(),o*this.green()+s*n.green(),o*this.blue()+s*n.blue()).alpha(this.alpha()*a+n.alpha()*(1-a))},toJSON:function(){return this.rgb()},clone:function(){var e,t,n=new v,a=this.values,r=n.values;for(var i in a)a.hasOwnProperty(i)&&(e=a[i],"[object Array]"===(t={}.toString.call(e))?r[i]=e.slice(0):"[object Number]"===t?r[i]=e:console.error("unexpected color value:",e));return n}},v.prototype.spaces={rgb:["red","green","blue"],hsl:["hue","saturation","lightness"],hsv:["hue","saturation","value"],hwb:["hue","whiteness","blackness"],cmyk:["cyan","magenta","yellow","black"]},v.prototype.maxes={rgb:[255,255,255],hsl:[360,100,100],hsv:[360,100,100],hwb:[360,100,100],cmyk:[100,100,100,100]},v.prototype.getValues=function(e){for(var t=this.values,n={},a=0;a<e.length;a++)n[e.charAt(a)]=t[e][a];return 1!==t.alpha&&(n.a=t.alpha),n},v.prototype.setValues=function(e,t){var n,a,r=this.values,i=this.spaces,o=this.maxes,l=1;if(this.valid=!0,"alpha"===e)l=t;else if(t.length)r[e]=t.slice(0,e.length),l=t[e.length];else if(void 0!==t[e.charAt(0)]){for(n=0;n<e.length;n++)r[e][n]=t[e.charAt(n)];l=t.a}else if(void 0!==t[i[e][0]]){var d=i[e];for(n=0;n<e.length;n++)r[e][n]=t[d[n]];l=t.alpha}if(r.alpha=Math.max(0,Math.min(1,void 0===l?r.alpha:l)),"alpha"===e)return!1;for(n=0;n<e.length;n++)a=Math.max(0,Math.min(o[e][n],r[e][n])),r[e][n]=Math.round(a);for(var u in i)u!==e&&(r[u]=s[e][u](r[e]));return!0},v.prototype.setSpace=function(e,t){var n=t[0];return void 0===n?this.getValues(e):("number"==typeof n&&(n=Array.prototype.slice.call(t)),this.setValues(e,n),this)},v.prototype.setChannel=function(e,t,n){var a=this.values[e];return void 0===n?a[t]:n===a[t]?this:(a[t]=n,this.setValues(e,a),this)},"undefined"!=typeof window&&(window.Color=v);var b,L=v,k={noop:function(){},uid:(b=0,function(){return b++}),isNullOrUndef:function(e){return null==e},isArray:function(e){if(Array.isArray&&Array.isArray(e))return!0;var t=Object.prototype.toString.call(e);return"[object"===t.substr(0,7)&&"Array]"===t.substr(-6)},isObject:function(e){return null!==e&&"[object Object]"===Object.prototype.toString.call(e)},isFinite:function(e){return("number"==typeof e||e instanceof Number)&&isFinite(e)},valueOrDefault:function(e,t){return void 0===e?t:e},valueAtIndexOrDefault:function(e,t,n){return k.valueOrDefault(k.isArray(e)?e[t]:e,n)},callback:function(e,t,n){if(e&&"function"==typeof e.call)return e.apply(n,t)},each:function(e,t,n,a){var r,i,o;if(k.isArray(e))if(i=e.length,a)for(r=i-1;r>=0;r--)t.call(n,e[r],r);else for(r=0;r<i;r++)t.call(n,e[r],r);else if(k.isObject(e))for(i=(o=Object.keys(e)).length,r=0;r<i;r++)t.call(n,e[o[r]],o[r])},arrayEquals:function(e,t){var n,a,r,i;if(!e||!t||e.length!==t.length)return!1;for(n=0,a=e.length;n<a;++n)if(r=e[n],i=t[n],r instanceof Array&&i instanceof Array){if(!k.arrayEquals(r,i))return!1}else if(r!==i)return!1;return!0},clone:function(e){if(k.isArray(e))return e.map(k.clone);if(k.isObject(e)){for(var t={},n=Object.keys(e),a=n.length,r=0;r<a;++r)t[n[r]]=k.clone(e[n[r]]);return t}return e},_merger:function(e,t,n,a){var r=t[e],i=n[e];k.isObject(r)&&k.isObject(i)?k.merge(r,i,a):t[e]=k.clone(i)},_mergerIf:function(e,t,n){var a=t[e],r=n[e];k.isObject(a)&&k.isObject(r)?k.mergeIf(a,r):t.hasOwnProperty(e)||(t[e]=k.clone(r))},merge:function(e,t,n){var a,r,i,o,s,l=k.isArray(t)?t:[t],d=l.length;if(!k.isObject(e))return e;for(a=(n=n||{}).merger||k._merger,r=0;r<d;++r)if(t=l[r],k.isObject(t))for(s=0,o=(i=Object.keys(t)).length;s<o;++s)a(i[s],e,t,n);return e},mergeIf:function(e,t){return k.merge(e,t,{merger:k._mergerIf})},extend:Object.assign||function(e){return k.merge(e,[].slice.call(arguments,1),{merger:function(e,t,n){t[e]=n[e]}})},inherits:function(e){var t=this,n=e&&e.hasOwnProperty("constructor")?e.constructor:function(){return t.apply(this,arguments)},a=function(){this.constructor=n};return a.prototype=t.prototype,n.prototype=new a,n.extend=k.inherits,e&&k.extend(n.prototype,e),n.__super__=t.prototype,n},_deprecated:function(e,t,n,a){void 0!==t&&console.warn(e+': "'+n+'" is deprecated. Please use "'+a+'" instead')}},w=k;k.callCallback=k.callback,k.indexOf=function(e,t,n){return Array.prototype.indexOf.call(e,t,n)},k.getValueOrDefault=k.valueOrDefault,k.getValueAtIndexOrDefault=k.valueAtIndexOrDefault;var x={linear:function(e){return e},easeInQuad:function(e){return e*e},easeOutQuad:function(e){return-e*(e-2)},easeInOutQuad:function(e){return(e/=.5)<1?.5*e*e:-.5*(--e*(e-2)-1)},easeInCubic:function(e){return e*e*e},easeOutCubic:function(e){return(e-=1)*e*e+1},easeInOutCubic:function(e){return(e/=.5)<1?.5*e*e*e:.5*((e-=2)*e*e+2)},easeInQuart:function(e){return e*e*e*e},easeOutQuart:function(e){return-((e-=1)*e*e*e-1)},easeInOutQuart:function(e){return(e/=.5)<1?.5*e*e*e*e:-.5*((e-=2)*e*e*e-2)},easeInQuint:function(e){return e*e*e*e*e},easeOutQuint:function(e){return(e-=1)*e*e*e*e+1},easeInOutQuint:function(e){return(e/=.5)<1?.5*e*e*e*e*e:.5*((e-=2)*e*e*e*e+2)},easeInSine:function(e){return 1-Math.cos(e*(Math.PI/2))},easeOutSine:function(e){return Math.sin(e*(Math.PI/2))},easeInOutSine:function(e){return-.5*(Math.cos(Math.PI*e)-1)},easeInExpo:function(e){return 0===e?0:Math.pow(2,10*(e-1))},easeOutExpo:function(e){return 1===e?1:1-Math.pow(2,-10*e)},easeInOutExpo:function(e){return 0===e?0:1===e?1:(e/=.5)<1?.5*Math.pow(2,10*(e-1)):.5*(2-Math.pow(2,-10*--e))},easeInCirc:function(e){return e>=1?e:-(Math.sqrt(1-e*e)-1)},easeOutCirc:function(e){return Math.sqrt(1-(e-=1)*e)},easeInOutCirc:function(e){return(e/=.5)<1?-.5*(Math.sqrt(1-e*e)-1):.5*(Math.sqrt(1-(e-=2)*e)+1)},easeInElastic:function(e){var t=1.70158,n=0,a=1;return 0===e?0:1===e?1:(n||(n=.3),a<1?(a=1,t=n/4):t=n/(2*Math.PI)*Math.asin(1/a),-a*Math.pow(2,10*(e-=1))*Math.sin((e-t)*(2*Math.PI)/n))},easeOutElastic:function(e){var t=1.70158,n=0,a=1;return 0===e?0:1===e?1:(n||(n=.3),a<1?(a=1,t=n/4):t=n/(2*Math.PI)*Math.asin(1/a),a*Math.pow(2,-10*e)*Math.sin((e-t)*(2*Math.PI)/n)+1)},easeInOutElastic:function(e){var t=1.70158,n=0,a=1;return 0===e?0:2==(e/=.5)?1:(n||(n=.45),a<1?(a=1,t=n/4):t=n/(2*Math.PI)*Math.asin(1/a),e<1?a*Math.pow(2,10*(e-=1))*Math.sin((e-t)*(2*Math.PI)/n)*-.5:a*Math.pow(2,-10*(e-=1))*Math.sin((e-t)*(2*Math.PI)/n)*.5+1)},easeInBack:function(e){var t=1.70158;return e*e*((t+1)*e-t)},easeOutBack:function(e){var t=1.70158;return(e-=1)*e*((t+1)*e+t)+1},easeInOutBack:function(e){var t=1.70158;return(e/=.5)<1?e*e*((1+(t*=1.525))*e-t)*.5:.5*((e-=2)*e*((1+(t*=1.525))*e+t)+2)},easeInBounce:function(e){return 1-x.easeOutBounce(1-e)},easeOutBounce:function(e){return e<1/2.75?7.5625*e*e:e<2/2.75?7.5625*(e-=1.5/2.75)*e+.75:e<2.5/2.75?7.5625*(e-=2.25/2.75)*e+.9375:7.5625*(e-=2.625/2.75)*e+.984375},easeInOutBounce:function(e){return e<.5?.5*x.easeInBounce(2*e):.5*x.easeOutBounce(2*e-1)+.5}},T={effects:x};w.easingEffects=x;var Y=Math.PI,D=Y/180,S=2*Y,E=Y/2,P=Y/4,H=2*Y/3,j={clear:function(e){e.ctx.clearRect(0,0,e.width,e.height)},roundedRect:function(e,t,n,a,r,i){if(i){var o=Math.min(i,r/2,a/2),s=t+o,l=n+o,d=t+a-o,u=n+r-o;e.moveTo(t,l),s<d&&l<u?(e.arc(s,l,o,-Y,-E),e.arc(d,l,o,-E,0),e.arc(d,u,o,0,E),e.arc(s,u,o,E,Y)):s<d?(e.moveTo(s,n),e.arc(d,l,o,-E,E),e.arc(s,l,o,E,Y+E)):l<u?(e.arc(s,l,o,-Y,0),e.arc(s,u,o,0,Y)):e.arc(s,l,o,-Y,Y),e.closePath(),e.moveTo(t,n)}else e.rect(t,n,a,r)},drawPoint:function(e,t,n,a,r,i){var o,s,l,d,u,c=(i||0)*D;if(t&&"object"==typeof t&&("[object HTMLImageElement]"===(o=t.toString())||"[object HTMLCanvasElement]"===o))return e.save(),e.translate(a,r),e.rotate(c),e.drawImage(t,-t.width/2,-t.height/2,t.width,t.height),void e.restore();if(!(isNaN(n)||n<=0)){switch(e.beginPath(),t){default:e.arc(a,r,n,0,S),e.closePath();break;case"triangle":e.moveTo(a+Math.sin(c)*n,r-Math.cos(c)*n),c+=H,e.lineTo(a+Math.sin(c)*n,r-Math.cos(c)*n),c+=H,e.lineTo(a+Math.sin(c)*n,r-Math.cos(c)*n),e.closePath();break;case"rectRounded":d=n-(u=.516*n),s=Math.cos(c+P)*d,l=Math.sin(c+P)*d,e.arc(a-s,r-l,u,c-Y,c-E),e.arc(a+l,r-s,u,c-E,c),e.arc(a+s,r+l,u,c,c+E),e.arc(a-l,r+s,u,c+E,c+Y),e.closePath();break;case"rect":if(!i){d=Math.SQRT1_2*n,e.rect(a-d,r-d,2*d,2*d);break}c+=P;case"rectRot":s=Math.cos(c)*n,l=Math.sin(c)*n,e.moveTo(a-s,r-l),e.lineTo(a+l,r-s),e.lineTo(a+s,r+l),e.lineTo(a-l,r+s),e.closePath();break;case"crossRot":c+=P;case"cross":s=Math.cos(c)*n,l=Math.sin(c)*n,e.moveTo(a-s,r-l),e.lineTo(a+s,r+l),e.moveTo(a+l,r-s),e.lineTo(a-l,r+s);break;case"star":s=Math.cos(c)*n,l=Math.sin(c)*n,e.moveTo(a-s,r-l),e.lineTo(a+s,r+l),e.moveTo(a+l,r-s),e.lineTo(a-l,r+s),c+=P,s=Math.cos(c)*n,l=Math.sin(c)*n,e.moveTo(a-s,r-l),e.lineTo(a+s,r+l),e.moveTo(a+l,r-s),e.lineTo(a-l,r+s);break;case"line":s=Math.cos(c)*n,l=Math.sin(c)*n,e.moveTo(a-s,r-l),e.lineTo(a+s,r+l);break;case"dash":e.moveTo(a,r),e.lineTo(a+Math.cos(c)*n,r+Math.sin(c)*n)}e.fill(),e.stroke()}},_isPointInArea:function(e,t){return e.x>t.left-1e-6&&e.x<t.right+1e-6&&e.y>t.top-1e-6&&e.y<t.bottom+1e-6},clipArea:function(e,t){e.save(),e.beginPath(),e.rect(t.left,t.top,t.right-t.left,t.bottom-t.top),e.clip()},unclipArea:function(e){e.restore()},lineTo:function(e,t,n,a){var r=n.steppedLine;if(r){if("middle"===r){var i=(t.x+n.x)/2;e.lineTo(i,a?n.y:t.y),e.lineTo(i,a?t.y:n.y)}else"after"===r&&!a||"after"!==r&&a?e.lineTo(t.x,n.y):e.lineTo(n.x,t.y);e.lineTo(n.x,n.y)}else n.tension?e.bezierCurveTo(a?t.controlPointPreviousX:t.controlPointNextX,a?t.controlPointPreviousY:t.controlPointNextY,a?n.controlPointNextX:n.controlPointPreviousX,a?n.controlPointNextY:n.controlPointPreviousY,n.x,n.y):e.lineTo(n.x,n.y)}},C=j;w.clear=j.clear,w.drawRoundedRectangle=function(e){e.beginPath(),j.roundedRect.apply(j,arguments)};var O={_set:function(e,t){return w.merge(this[e]||(this[e]={}),t)}};O._set("global",{defaultColor:"rgba(0,0,0,0.1)",defaultFontColor:"#666",defaultFontFamily:"'Helvetica Neue', 'Helvetica', 'Arial', sans-serif",defaultFontSize:12,defaultFontStyle:"normal",defaultLineHeight:1.2,showLines:!0});var F=O,A=w.valueOrDefault,R={toLineHeight:function(e,t){var n=(""+e).match(/^(normal|(\d+(?:\.\d+)?)(px|em|%)?)$/);if(!n||"normal"===n[1])return 1.2*t;switch(e=+n[2],n[3]){case"px":return e;case"%":e/=100}return t*e},toPadding:function(e){var t,n,a,r;return w.isObject(e)?(t=+e.top||0,n=+e.right||0,a=+e.bottom||0,r=+e.left||0):t=n=a=r=+e||0,{top:t,right:n,bottom:a,left:r,height:t+a,width:r+n}},_parseFont:function(e){var t=F.global,n=A(e.fontSize,t.defaultFontSize),a={family:A(e.fontFamily,t.defaultFontFamily),lineHeight:w.options.toLineHeight(A(e.lineHeight,t.defaultLineHeight),n),size:n,style:A(e.fontStyle,t.defaultFontStyle),weight:null,string:""};return a.string=function(e){return!e||w.isNullOrUndef(e.size)||w.isNullOrUndef(e.family)?null:(e.style?e.style+" ":"")+(e.weight?e.weight+" ":"")+e.size+"px "+e.family}(a),a},resolve:function(e,t,n,a){var r,i,o,s=!0;for(r=0,i=e.length;r<i;++r)if(void 0!==(o=e[r])&&(void 0!==t&&"function"==typeof o&&(o=o(t),s=!1),void 0!==n&&w.isArray(o)&&(o=o[n],s=!1),void 0!==o))return a&&!s&&(a.cacheable=!1),o}},W={_factorize:function(e){var t,n=[],a=Math.sqrt(e);for(t=1;t<a;t++)e%t==0&&(n.push(t),n.push(e/t));return a===(0|a)&&n.push(a),n.sort((function(e,t){return e-t})).pop(),n},log10:Math.log10||function(e){var t=Math.log(e)*Math.LOG10E,n=Math.round(t);return e===Math.pow(10,n)?n:t}},I=W;w.log10=W.log10;var z=w,N=T,V=C,B=R,U=I,$={getRtlAdapter:function(e,t,n){return e?function(e,t){return{x:function(n){return e+e+t-n},setWidth:function(e){t=e},textAlign:function(e){return"center"===e?e:"right"===e?"left":"right"},xPlus:function(e,t){return e-t},leftForLtr:function(e,t){return e-t}}}(t,n):{x:function(e){return e},setWidth:function(e){},textAlign:function(e){return e},xPlus:function(e,t){return e+t},leftForLtr:function(e,t){return e}}},overrideTextDirection:function(e,t){var n,a;"ltr"!==t&&"rtl"!==t||(a=[(n=e.canvas.style).getPropertyValue("direction"),n.getPropertyPriority("direction")],n.setProperty("direction",t,"important"),e.prevTextDirection=a)},restoreTextDirection:function(e){var t=e.prevTextDirection;void 0!==t&&(delete e.prevTextDirection,e.canvas.style.setProperty("direction",t[0],t[1]))}};z.easing=N,z.canvas=V,z.options=B,z.math=U,z.rtl=$;var J=function(e){z.extend(this,e),this.initialize.apply(this,arguments)};z.extend(J.prototype,{_type:void 0,initialize:function(){this.hidden=!1},pivot:function(){var e=this;return e._view||(e._view=z.extend({},e._model)),e._start={},e},transition:function(e){var t=this,n=t._model,a=t._start,r=t._view;return n&&1!==e?(r||(r=t._view={}),a||(a=t._start={}),function(e,t,n,a){var r,i,o,s,l,d,u,c,m,f=Object.keys(n);for(r=0,i=f.length;r<i;++r)if(d=n[o=f[r]],t.hasOwnProperty(o)||(t[o]=d),(s=t[o])!==d&&"_"!==o[0]){if(e.hasOwnProperty(o)||(e[o]=s),(u=typeof d)==typeof(l=e[o]))if("string"===u){if((c=L(l)).valid&&(m=L(d)).valid){t[o]=m.mix(c,a).rgbString();continue}}else if(z.isFinite(l)&&z.isFinite(d)){t[o]=l+(d-l)*a;continue}t[o]=d}}(a,r,n,e),t):(t._view=z.extend({},n),t._start=null,t)},tooltipPosition:function(){return{x:this._model.x,y:this._model.y}},hasValue:function(){return z.isNumber(this._model.x)&&z.isNumber(this._model.y)}}),J.extend=z.inherits;var q=J,G=q.extend({chart:null,currentStep:0,numSteps:60,easing:"",render:null,onAnimationProgress:null,onAnimationComplete:null}),K=G;Object.defineProperty(G.prototype,"animationObject",{get:function(){return this}}),Object.defineProperty(G.prototype,"chartInstance",{get:function(){return this.chart},set:function(e){this.chart=e}}),F._set("global",{animation:{duration:1e3,easing:"easeOutQuart",onProgress:z.noop,onComplete:z.noop}});var Q={animations:[],request:null,addAnimation:function(e,t,n,a){var r,i,o=this.animations;for(t.chart=e,t.startTime=Date.now(),t.duration=n,a||(e.animating=!0),r=0,i=o.length;r<i;++r)if(o[r].chart===e)return void(o[r]=t);o.push(t),1===o.length&&this.requestAnimationFrame()},cancelAnimation:function(e){var t=z.findIndex(this.animations,(function(t){return t.chart===e}));-1!==t&&(this.animations.splice(t,1),e.animating=!1)},requestAnimationFrame:function(){var e=this;null===e.request&&(e.request=z.requestAnimFrame.call(window,(function(){e.request=null,e.startDigest()})))},startDigest:function(){this.advance(),this.animations.length>0&&this.requestAnimationFrame()},advance:function(){for(var e,t,n,a,r=this.animations,i=0;i<r.length;)t=(e=r[i]).chart,n=e.numSteps,a=Math.floor((Date.now()-e.startTime)/e.duration*n)+1,e.currentStep=Math.min(a,n),z.callback(e.render,[t,e],t),z.callback(e.onAnimationProgress,[e],t),e.currentStep>=n?(z.callback(e.onAnimationComplete,[e],t),t.animating=!1,r.splice(i,1)):++i}},Z=z.options.resolve,X=["push","pop","shift","splice","unshift"];function ee(e,t){var n=e._chartjs;if(n){var a=n.listeners,r=a.indexOf(t);-1!==r&&a.splice(r,1),a.length>0||(X.forEach((function(t){delete e[t]})),delete e._chartjs)}}var te=function(e,t){this.initialize(e,t)};z.extend(te.prototype,{datasetElementType:null,dataElementType:null,_datasetElementOptions:["backgroundColor","borderCapStyle","borderColor","borderDash","borderDashOffset","borderJoinStyle","borderWidth"],_dataElementOptions:["backgroundColor","borderColor","borderWidth","pointStyle"],initialize:function(e,t){var n=this;n.chart=e,n.index=t,n.linkScales(),n.addElements(),n._type=n.getMeta().type},updateIndex:function(e){this.index=e},linkScales:function(){var e=this.getMeta(),t=this.chart,n=t.scales,a=this.getDataset(),r=t.options.scales;null!==e.xAxisID&&e.xAxisID in n&&!a.xAxisID||(e.xAxisID=a.xAxisID||r.xAxes[0].id),null!==e.yAxisID&&e.yAxisID in n&&!a.yAxisID||(e.yAxisID=a.yAxisID||r.yAxes[0].id)},getDataset:function(){return this.chart.data.datasets[this.index]},getMeta:function(){return this.chart.getDatasetMeta(this.index)},getScaleForId:function(e){return this.chart.scales[e]},_getValueScaleId:function(){return this.getMeta().yAxisID},_getIndexScaleId:function(){return this.getMeta().xAxisID},_getValueScale:function(){return this.getScaleForId(this._getValueScaleId())},_getIndexScale:function(){return this.getScaleForId(this._getIndexScaleId())},reset:function(){this._update(!0)},destroy:function(){this._data&&ee(this._data,this)},createMetaDataset:function(){var e=this.datasetElementType;return e&&new e({_chart:this.chart,_datasetIndex:this.index})},createMetaData:function(e){var t=this.dataElementType;return t&&new t({_chart:this.chart,_datasetIndex:this.index,_index:e})},addElements:function(){var e,t,n=this.getMeta(),a=this.getDataset().data||[],r=n.data;for(e=0,t=a.length;e<t;++e)r[e]=r[e]||this.createMetaData(e);n.dataset=n.dataset||this.createMetaDataset()},addElementAndReset:function(e){var t=this.createMetaData(e);this.getMeta().data.splice(e,0,t),this.updateElement(t,e,!0)},buildOrUpdateElements:function(){var e,t,n=this,a=n.getDataset(),r=a.data||(a.data=[]);n._data!==r&&(n._data&&ee(n._data,n),r&&Object.isExtensible(r)&&(t=n,(e=r)._chartjs?e._chartjs.listeners.push(t):(Object.defineProperty(e,"_chartjs",{configurable:!0,enumerable:!1,value:{listeners:[t]}}),X.forEach((function(t){var n="onData"+t.charAt(0).toUpperCase()+t.slice(1),a=e[t];Object.defineProperty(e,t,{configurable:!0,enumerable:!1,value:function(){var t=Array.prototype.slice.call(arguments),r=a.apply(this,t);return z.each(e._chartjs.listeners,(function(e){"function"==typeof e[n]&&e[n].apply(e,t)})),r}})})))),n._data=r),n.resyncElements()},_configure:function(){this._config=z.merge({},[this.chart.options.datasets[this._type],this.getDataset()],{merger:function(e,t,n){"_meta"!==e&&"data"!==e&&z._merger(e,t,n)}})},_update:function(e){this._configure(),this._cachedDataOpts=null,this.update(e)},update:z.noop,transition:function(e){for(var t=this.getMeta(),n=t.data||[],a=n.length,r=0;r<a;++r)n[r].transition(e);t.dataset&&t.dataset.transition(e)},draw:function(){var e=this.getMeta(),t=e.data||[],n=t.length,a=0;for(e.dataset&&e.dataset.draw();a<n;++a)t[a].draw()},getStyle:function(e){var t,n=this.getMeta(),a=n.dataset;return this._configure(),a&&void 0===e?t=this._resolveDatasetElementOptions(a||{}):(e=e||0,t=this._resolveDataElementOptions(n.data[e]||{},e)),!1!==t.fill&&null!==t.fill||(t.backgroundColor=t.borderColor),t},_resolveDatasetElementOptions:function(e,t){var n,a,r,i,o=this,s=o.chart,l=o._config,d=e.custom||{},u=s.options.elements[o.datasetElementType.prototype._type]||{},c=o._datasetElementOptions,m={},f={chart:s,dataset:o.getDataset(),datasetIndex:o.index,hover:t};for(n=0,a=c.length;n<a;++n)r=c[n],i=t?"hover"+r.charAt(0).toUpperCase()+r.slice(1):r,m[r]=Z([d[i],l[i],u[i]],f);return m},_resolveDataElementOptions:function(e,t){var n=this,a=e&&e.custom,r=n._cachedDataOpts;if(r&&!a)return r;var i,o,s,l,d=n.chart,u=n._config,c=d.options.elements[n.dataElementType.prototype._type]||{},m=n._dataElementOptions,f={},h={chart:d,dataIndex:t,dataset:n.getDataset(),datasetIndex:n.index},_={cacheable:!a};if(a=a||{},z.isArray(m))for(o=0,s=m.length;o<s;++o)f[l=m[o]]=Z([a[l],u[l],c[l]],h,t,_);else for(o=0,s=(i=Object.keys(m)).length;o<s;++o)f[l=i[o]]=Z([a[l],u[m[l]],u[l],c[l]],h,t,_);return _.cacheable&&(n._cachedDataOpts=Object.freeze(f)),f},removeHoverStyle:function(e){z.merge(e._model,e.$previousStyle||{}),delete e.$previousStyle},setHoverStyle:function(e){var t=this.chart.data.datasets[e._datasetIndex],n=e._index,a=e.custom||{},r=e._model,i=z.getHoverColor;e.$previousStyle={backgroundColor:r.backgroundColor,borderColor:r.borderColor,borderWidth:r.borderWidth},r.backgroundColor=Z([a.hoverBackgroundColor,t.hoverBackgroundColor,i(r.backgroundColor)],void 0,n),r.borderColor=Z([a.hoverBorderColor,t.hoverBorderColor,i(r.borderColor)],void 0,n),r.borderWidth=Z([a.hoverBorderWidth,t.hoverBorderWidth,r.borderWidth],void 0,n)},_removeDatasetHoverStyle:function(){var e=this.getMeta().dataset;e&&this.removeHoverStyle(e)},_setDatasetHoverStyle:function(){var e,t,n,a,r,i,o=this.getMeta().dataset,s={};if(o){for(i=o._model,r=this._resolveDatasetElementOptions(o,!0),e=0,t=(a=Object.keys(r)).length;e<t;++e)s[n=a[e]]=i[n],i[n]=r[n];o.$previousStyle=s}},resyncElements:function(){var e=this.getMeta(),t=this.getDataset().data,n=e.data.length,a=t.length;a<n?e.data.splice(a,n-a):a>n&&this.insertElements(n,a-n)},insertElements:function(e,t){for(var n=0;n<t;++n)this.addElementAndReset(e+n)},onDataPush:function(){var e=arguments.length;this.insertElements(this.getDataset().data.length-e,e)},onDataPop:function(){this.getMeta().data.pop()},onDataShift:function(){this.getMeta().data.shift()},onDataSplice:function(e,t){this.getMeta().data.splice(e,t),this.insertElements(e,arguments.length-2)},onDataUnshift:function(){this.insertElements(0,arguments.length)}}),te.extend=z.inherits;var ne=te,ae=2*Math.PI;function re(e,t){var n=t.startAngle,a=t.endAngle,r=t.pixelMargin,i=r/t.outerRadius,o=t.x,s=t.y;e.beginPath(),e.arc(o,s,t.outerRadius,n-i,a+i),t.innerRadius>r?(i=r/t.innerRadius,e.arc(o,s,t.innerRadius-r,a+i,n-i,!0)):e.arc(o,s,r,a+Math.PI/2,n-Math.PI/2),e.closePath(),e.clip()}function ie(e,t,n){var a="inner"===t.borderAlign;a?(e.lineWidth=2*t.borderWidth,e.lineJoin="round"):(e.lineWidth=t.borderWidth,e.lineJoin="bevel"),n.fullCircles&&function(e,t,n,a){var r,i=n.endAngle;for(a&&(n.endAngle=n.startAngle+ae,re(e,n),n.endAngle=i,n.endAngle===n.startAngle&&n.fullCircles&&(n.endAngle+=ae,n.fullCircles--)),e.beginPath(),e.arc(n.x,n.y,n.innerRadius,n.startAngle+ae,n.startAngle,!0),r=0;r<n.fullCircles;++r)e.stroke();for(e.beginPath(),e.arc(n.x,n.y,t.outerRadius,n.startAngle,n.startAngle+ae),r=0;r<n.fullCircles;++r)e.stroke()}(e,t,n,a),a&&re(e,n),e.beginPath(),e.arc(n.x,n.y,t.outerRadius,n.startAngle,n.endAngle),e.arc(n.x,n.y,n.innerRadius,n.endAngle,n.startAngle,!0),e.closePath(),e.stroke()}F._set("global",{elements:{arc:{backgroundColor:F.global.defaultColor,borderColor:"#fff",borderWidth:2,borderAlign:"center"}}});var oe=q.extend({_type:"arc",inLabelRange:function(e){var t=this._view;return!!t&&Math.pow(e-t.x,2)<Math.pow(t.radius+t.hoverRadius,2)},inRange:function(e,t){var n=this._view;if(n){for(var a=z.getAngleFromPoint(n,{x:e,y:t}),r=a.angle,i=a.distance,o=n.startAngle,s=n.endAngle;s<o;)s+=ae;for(;r>s;)r-=ae;for(;r<o;)r+=ae;var l=r>=o&&r<=s,d=i>=n.innerRadius&&i<=n.outerRadius;return l&&d}return!1},getCenterPoint:function(){var e=this._view,t=(e.startAngle+e.endAngle)/2,n=(e.innerRadius+e.outerRadius)/2;return{x:e.x+Math.cos(t)*n,y:e.y+Math.sin(t)*n}},getArea:function(){var e=this._view;return Math.PI*((e.endAngle-e.startAngle)/(2*Math.PI))*(Math.pow(e.outerRadius,2)-Math.pow(e.innerRadius,2))},tooltipPosition:function(){var e=this._view,t=e.startAngle+(e.endAngle-e.startAngle)/2,n=(e.outerRadius-e.innerRadius)/2+e.innerRadius;return{x:e.x+Math.cos(t)*n,y:e.y+Math.sin(t)*n}},draw:function(){var e,t=this._chart.ctx,n=this._view,a="inner"===n.borderAlign?.33:0,r={x:n.x,y:n.y,innerRadius:n.innerRadius,outerRadius:Math.max(n.outerRadius-a,0),pixelMargin:a,startAngle:n.startAngle,endAngle:n.endAngle,fullCircles:Math.floor(n.circumference/ae)};if(t.save(),t.fillStyle=n.backgroundColor,t.strokeStyle=n.borderColor,r.fullCircles){for(r.endAngle=r.startAngle+ae,t.beginPath(),t.arc(r.x,r.y,r.outerRadius,r.startAngle,r.endAngle),t.arc(r.x,r.y,r.innerRadius,r.endAngle,r.startAngle,!0),t.closePath(),e=0;e<r.fullCircles;++e)t.fill();r.endAngle=r.startAngle+n.circumference%ae}t.beginPath(),t.arc(r.x,r.y,r.outerRadius,r.startAngle,r.endAngle),t.arc(r.x,r.y,r.innerRadius,r.endAngle,r.startAngle,!0),t.closePath(),t.fill(),n.borderWidth&&ie(t,n,r),t.restore()}}),se=z.valueOrDefault,le=F.global.defaultColor;F._set("global",{elements:{line:{tension:.4,backgroundColor:le,borderWidth:3,borderColor:le,borderCapStyle:"butt",borderDash:[],borderDashOffset:0,borderJoinStyle:"miter",capBezierPoints:!0,fill:!0}}});var de=q.extend({_type:"line",draw:function(){var e,t,n,a=this,r=a._view,i=a._chart.ctx,o=r.spanGaps,s=a._children.slice(),l=F.global,d=l.elements.line,u=-1,c=a._loop;if(s.length){if(a._loop){for(e=0;e<s.length;++e)if(t=z.previousItem(s,e),!s[e]._view.skip&&t._view.skip){s=s.slice(e).concat(s.slice(0,e)),c=o;break}c&&s.push(s[0])}for(i.save(),i.lineCap=r.borderCapStyle||d.borderCapStyle,i.setLineDash&&i.setLineDash(r.borderDash||d.borderDash),i.lineDashOffset=se(r.borderDashOffset,d.borderDashOffset),i.lineJoin=r.borderJoinStyle||d.borderJoinStyle,i.lineWidth=se(r.borderWidth,d.borderWidth),i.strokeStyle=r.borderColor||l.defaultColor,i.beginPath(),(n=s[0]._view).skip||(i.moveTo(n.x,n.y),u=0),e=1;e<s.length;++e)n=s[e]._view,t=-1===u?z.previousItem(s,e):s[u],n.skip||(u!==e-1&&!o||-1===u?i.moveTo(n.x,n.y):z.canvas.lineTo(i,t._view,n),u=e);c&&i.closePath(),i.stroke(),i.restore()}}}),ue=z.valueOrDefault,ce=F.global.defaultColor;function me(e){var t=this._view;return!!t&&Math.abs(e-t.x)<t.radius+t.hitRadius}F._set("global",{elements:{point:{radius:3,pointStyle:"circle",backgroundColor:ce,borderColor:ce,borderWidth:1,hitRadius:1,hoverRadius:4,hoverBorderWidth:1}}});var fe=q.extend({_type:"point",inRange:function(e,t){var n=this._view;return!!n&&Math.pow(e-n.x,2)+Math.pow(t-n.y,2)<Math.pow(n.hitRadius+n.radius,2)},inLabelRange:me,inXRange:me,inYRange:function(e){var t=this._view;return!!t&&Math.abs(e-t.y)<t.radius+t.hitRadius},getCenterPoint:function(){var e=this._view;return{x:e.x,y:e.y}},getArea:function(){return Math.PI*Math.pow(this._view.radius,2)},tooltipPosition:function(){var e=this._view;return{x:e.x,y:e.y,padding:e.radius+e.borderWidth}},draw:function(e){var t=this._view,n=this._chart.ctx,a=t.pointStyle,r=t.rotation,i=t.radius,o=t.x,s=t.y,l=F.global,d=l.defaultColor;t.skip||(void 0===e||z.canvas._isPointInArea(t,e))&&(n.strokeStyle=t.borderColor||d,n.lineWidth=ue(t.borderWidth,l.elements.point.borderWidth),n.fillStyle=t.backgroundColor||d,z.canvas.drawPoint(n,a,i,o,s,r))}}),he=F.global.defaultColor;function _e(e){return e&&void 0!==e.width}function pe(e){var t,n,a,r,i;return _e(e)?(i=e.width/2,t=e.x-i,n=e.x+i,a=Math.min(e.y,e.base),r=Math.max(e.y,e.base)):(i=e.height/2,t=Math.min(e.x,e.base),n=Math.max(e.x,e.base),a=e.y-i,r=e.y+i),{left:t,top:a,right:n,bottom:r}}function ye(e,t,n){return e===t?n:e===n?t:e}function ge(e,t,n){var a,r,i,o,s=e.borderWidth,l=function(e){var t=e.borderSkipped,n={};return t?(e.horizontal?e.base>e.x&&(t=ye(t,"left","right")):e.base<e.y&&(t=ye(t,"bottom","top")),n[t]=!0,n):n}(e);return z.isObject(s)?(a=+s.top||0,r=+s.right||0,i=+s.bottom||0,o=+s.left||0):a=r=i=o=+s||0,{t:l.top||a<0?0:a>n?n:a,r:l.right||r<0?0:r>t?t:r,b:l.bottom||i<0?0:i>n?n:i,l:l.left||o<0?0:o>t?t:o}}function Me(e,t,n){var a=null===t,r=null===n,i=!(!e||a&&r)&&pe(e);return i&&(a||t>=i.left&&t<=i.right)&&(r||n>=i.top&&n<=i.bottom)}F._set("global",{elements:{rectangle:{backgroundColor:he,borderColor:he,borderSkipped:"bottom",borderWidth:0}}});var ve=q.extend({_type:"rectangle",draw:function(){var e=this._chart.ctx,t=this._view,n=function(e){var t=pe(e),n=t.right-t.left,a=t.bottom-t.top,r=ge(e,n/2,a/2);return{outer:{x:t.left,y:t.top,w:n,h:a},inner:{x:t.left+r.l,y:t.top+r.t,w:n-r.l-r.r,h:a-r.t-r.b}}}(t),a=n.outer,r=n.inner;e.fillStyle=t.backgroundColor,e.fillRect(a.x,a.y,a.w,a.h),a.w===r.w&&a.h===r.h||(e.save(),e.beginPath(),e.rect(a.x,a.y,a.w,a.h),e.clip(),e.fillStyle=t.borderColor,e.rect(r.x,r.y,r.w,r.h),e.fill("evenodd"),e.restore())},height:function(){var e=this._view;return e.base-e.y},inRange:function(e,t){return Me(this._view,e,t)},inLabelRange:function(e,t){var n=this._view;return _e(n)?Me(n,e,null):Me(n,null,t)},inXRange:function(e){return Me(this._view,e,null)},inYRange:function(e){return Me(this._view,null,e)},getCenterPoint:function(){var e,t,n=this._view;return _e(n)?(e=n.x,t=(n.y+n.base)/2):(e=(n.x+n.base)/2,t=n.y),{x:e,y:t}},getArea:function(){var e=this._view;return _e(e)?e.width*Math.abs(e.y-e.base):e.height*Math.abs(e.x-e.base)},tooltipPosition:function(){var e=this._view;return{x:e.x,y:e.y}}}),be={},Le=oe,ke=de,we=fe,xe=ve;be.Arc=Le,be.Line=ke,be.Point=we,be.Rectangle=xe;var Te=z._deprecated,Ye=z.valueOrDefault;function De(e,t,n){var a,r,i=n.barThickness,o=t.stackCount,s=t.pixels[e],l=z.isNullOrUndef(i)?function(e,t){var n,a,r,i,o=e._length;for(r=1,i=t.length;r<i;++r)o=Math.min(o,Math.abs(t[r]-t[r-1]));for(r=0,i=e.getTicks().length;r<i;++r)a=e.getPixelForTick(r),o=r>0?Math.min(o,Math.abs(a-n)):o,n=a;return o}(t.scale,t.pixels):-1;return z.isNullOrUndef(i)?(a=l*n.categoryPercentage,r=n.barPercentage):(a=i*o,r=1),{chunk:a/o,ratio:r,start:s-a/2}}F._set("bar",{hover:{mode:"label"},scales:{xAxes:[{type:"category",offset:!0,gridLines:{offsetGridLines:!0}}],yAxes:[{type:"linear"}]}}),F._set("global",{datasets:{bar:{categoryPercentage:.8,barPercentage:.9}}});var Se=ne.extend({dataElementType:be.Rectangle,_dataElementOptions:["backgroundColor","borderColor","borderSkipped","borderWidth","barPercentage","barThickness","categoryPercentage","maxBarThickness","minBarLength"],initialize:function(){var e,t,n=this;ne.prototype.initialize.apply(n,arguments),(e=n.getMeta()).stack=n.getDataset().stack,e.bar=!0,t=n._getIndexScale().options,Te("bar chart",t.barPercentage,"scales.[x/y]Axes.barPercentage","dataset.barPercentage"),Te("bar chart",t.barThickness,"scales.[x/y]Axes.barThickness","dataset.barThickness"),Te("bar chart",t.categoryPercentage,"scales.[x/y]Axes.categoryPercentage","dataset.categoryPercentage"),Te("bar chart",n._getValueScale().options.minBarLength,"scales.[x/y]Axes.minBarLength","dataset.minBarLength"),Te("bar chart",t.maxBarThickness,"scales.[x/y]Axes.maxBarThickness","dataset.maxBarThickness")},update:function(e){var t,n,a=this.getMeta().data;for(this._ruler=this.getRuler(),t=0,n=a.length;t<n;++t)this.updateElement(a[t],t,e)},updateElement:function(e,t,n){var a=this,r=a.getMeta(),i=a.getDataset(),o=a._resolveDataElementOptions(e,t);e._xScale=a.getScaleForId(r.xAxisID),e._yScale=a.getScaleForId(r.yAxisID),e._datasetIndex=a.index,e._index=t,e._model={backgroundColor:o.backgroundColor,borderColor:o.borderColor,borderSkipped:o.borderSkipped,borderWidth:o.borderWidth,datasetLabel:i.label,label:a.chart.data.labels[t]},z.isArray(i.data[t])&&(e._model.borderSkipped=null),a._updateElementGeometry(e,t,n,o),e.pivot()},_updateElementGeometry:function(e,t,n,a){var r=this,i=e._model,o=r._getValueScale(),s=o.getBasePixel(),l=o.isHorizontal(),d=r._ruler||r.getRuler(),u=r.calculateBarValuePixels(r.index,t,a),c=r.calculateBarIndexPixels(r.index,t,d,a);i.horizontal=l,i.base=n?s:u.base,i.x=l?n?s:u.head:c.center,i.y=l?c.center:n?s:u.head,i.height=l?c.size:void 0,i.width=l?void 0:c.size},_getStacks:function(e){var t,n,a=this._getIndexScale(),r=a._getMatchingVisibleMetas(this._type),i=a.options.stacked,o=r.length,s=[];for(t=0;t<o&&(n=r[t],(!1===i||-1===s.indexOf(n.stack)||void 0===i&&void 0===n.stack)&&s.push(n.stack),n.index!==e);++t);return s},getStackCount:function(){return this._getStacks().length},getStackIndex:function(e,t){var n=this._getStacks(e),a=void 0!==t?n.indexOf(t):-1;return-1===a?n.length-1:a},getRuler:function(){var e,t,n=this._getIndexScale(),a=[];for(e=0,t=this.getMeta().data.length;e<t;++e)a.push(n.getPixelForValue(null,e,this.index));return{pixels:a,start:n._startPixel,end:n._endPixel,stackCount:this.getStackCount(),scale:n}},calculateBarValuePixels:function(e,t,n){var a,r,i,o,s,l,d,u=this.chart,c=this._getValueScale(),m=c.isHorizontal(),f=u.data.datasets,h=c._getMatchingVisibleMetas(this._type),_=c._parseValue(f[e].data[t]),p=n.minBarLength,y=c.options.stacked,g=this.getMeta().stack,M=void 0===_.start?0:_.max>=0&&_.min>=0?_.min:_.max,v=void 0===_.start?_.end:_.max>=0&&_.min>=0?_.max-_.min:_.min-_.max,b=h.length;if(y||void 0===y&&void 0!==g)for(a=0;a<b&&(r=h[a]).index!==e;++a)r.stack===g&&(i=void 0===(d=c._parseValue(f[r.index].data[t])).start?d.end:d.min>=0&&d.max>=0?d.max:d.min,(_.min<0&&i<0||_.max>=0&&i>0)&&(M+=i));return o=c.getPixelForValue(M),l=(s=c.getPixelForValue(M+v))-o,void 0!==p&&Math.abs(l)<p&&(l=p,s=v>=0&&!m||v<0&&m?o-p:o+p),{size:l,base:o,head:s,center:s+l/2}},calculateBarIndexPixels:function(e,t,n,a){var r="flex"===a.barThickness?function(e,t,n){var a,r=t.pixels,i=r[e],o=e>0?r[e-1]:null,s=e<r.length-1?r[e+1]:null,l=n.categoryPercentage;return null===o&&(o=i-(null===s?t.end-t.start:s-i)),null===s&&(s=i+i-o),a=i-(i-Math.min(o,s))/2*l,{chunk:Math.abs(s-o)/2*l/t.stackCount,ratio:n.barPercentage,start:a}}(t,n,a):De(t,n,a),i=this.getStackIndex(e,this.getMeta().stack),o=r.start+r.chunk*i+r.chunk/2,s=Math.min(Ye(a.maxBarThickness,1/0),r.chunk*r.ratio);return{base:o-s/2,head:o+s/2,center:o,size:s}},draw:function(){var e=this.chart,t=this._getValueScale(),n=this.getMeta().data,a=this.getDataset(),r=n.length,i=0;for(z.canvas.clipArea(e.ctx,e.chartArea);i<r;++i){var o=t._parseValue(a.data[i]);isNaN(o.min)||isNaN(o.max)||n[i].draw()}z.canvas.unclipArea(e.ctx)},_resolveDataElementOptions:function(){var e=this,t=z.extend({},ne.prototype._resolveDataElementOptions.apply(e,arguments)),n=e._getIndexScale().options,a=e._getValueScale().options;return t.barPercentage=Ye(n.barPercentage,t.barPercentage),t.barThickness=Ye(n.barThickness,t.barThickness),t.categoryPercentage=Ye(n.categoryPercentage,t.categoryPercentage),t.maxBarThickness=Ye(n.maxBarThickness,t.maxBarThickness),t.minBarLength=Ye(a.minBarLength,t.minBarLength),t}}),Ee=z.valueOrDefault,Pe=z.options.resolve;F._set("bubble",{hover:{mode:"single"},scales:{xAxes:[{type:"linear",position:"bottom",id:"x-axis-0"}],yAxes:[{type:"linear",position:"left",id:"y-axis-0"}]},tooltips:{callbacks:{title:function(){return""},label:function(e,t){var n=t.datasets[e.datasetIndex].label||"",a=t.datasets[e.datasetIndex].data[e.index];return n+": ("+e.xLabel+", "+e.yLabel+", "+a.r+")"}}}});var He=ne.extend({dataElementType:be.Point,_dataElementOptions:["backgroundColor","borderColor","borderWidth","hoverBackgroundColor","hoverBorderColor","hoverBorderWidth","hoverRadius","hitRadius","pointStyle","rotation"],update:function(e){var t=this,n=t.getMeta().data;z.each(n,(function(n,a){t.updateElement(n,a,e)}))},updateElement:function(e,t,n){var a=this,r=a.getMeta(),i=e.custom||{},o=a.getScaleForId(r.xAxisID),s=a.getScaleForId(r.yAxisID),l=a._resolveDataElementOptions(e,t),d=a.getDataset().data[t],u=a.index,c=n?o.getPixelForDecimal(.5):o.getPixelForValue("object"==typeof d?d:NaN,t,u),m=n?s.getBasePixel():s.getPixelForValue(d,t,u);e._xScale=o,e._yScale=s,e._options=l,e._datasetIndex=u,e._index=t,e._model={backgroundColor:l.backgroundColor,borderColor:l.borderColor,borderWidth:l.borderWidth,hitRadius:l.hitRadius,pointStyle:l.pointStyle,rotation:l.rotation,radius:n?0:l.radius,skip:i.skip||isNaN(c)||isNaN(m),x:c,y:m},e.pivot()},setHoverStyle:function(e){var t=e._model,n=e._options,a=z.getHoverColor;e.$previousStyle={backgroundColor:t.backgroundColor,borderColor:t.borderColor,borderWidth:t.borderWidth,radius:t.radius},t.backgroundColor=Ee(n.hoverBackgroundColor,a(n.backgroundColor)),t.borderColor=Ee(n.hoverBorderColor,a(n.borderColor)),t.borderWidth=Ee(n.hoverBorderWidth,n.borderWidth),t.radius=n.radius+n.hoverRadius},_resolveDataElementOptions:function(e,t){var n=this,a=n.chart,r=n.getDataset(),i=e.custom||{},o=r.data[t]||{},s=ne.prototype._resolveDataElementOptions.apply(n,arguments),l={chart:a,dataIndex:t,dataset:r,datasetIndex:n.index};return n._cachedDataOpts===s&&(s=z.extend({},s)),s.radius=Pe([i.radius,o.r,n._config.radius,a.options.elements.point.radius],l,t),s}}),je=z.valueOrDefault,Ce=Math.PI,Oe=2*Ce,Fe=Ce/2;F._set("doughnut",{animation:{animateRotate:!0,animateScale:!1},hover:{mode:"single"},legendCallback:function(e){var t,n,a,r=document.createElement("ul"),i=e.data,o=i.datasets,s=i.labels;if(r.setAttribute("class",e.id+"-legend"),o.length)for(t=0,n=o[0].data.length;t<n;++t)(a=r.appendChild(document.createElement("li"))).appendChild(document.createElement("span")).style.backgroundColor=o[0].backgroundColor[t],s[t]&&a.appendChild(document.createTextNode(s[t]));return r.outerHTML},legend:{labels:{generateLabels:function(e){var t=e.data;return t.labels.length&&t.datasets.length?t.labels.map((function(n,a){var r=e.getDatasetMeta(0),i=r.controller.getStyle(a);return{text:n,fillStyle:i.backgroundColor,strokeStyle:i.borderColor,lineWidth:i.borderWidth,hidden:isNaN(t.datasets[0].data[a])||r.data[a].hidden,index:a}})):[]}},onClick:function(e,t){var n,a,r,i=t.index,o=this.chart;for(n=0,a=(o.data.datasets||[]).length;n<a;++n)(r=o.getDatasetMeta(n)).data[i]&&(r.data[i].hidden=!r.data[i].hidden);o.update()}},cutoutPercentage:50,rotation:-Fe,circumference:Oe,tooltips:{callbacks:{title:function(){return""},label:function(e,t){var n=t.labels[e.index],a=": "+t.datasets[e.datasetIndex].data[e.index];return z.isArray(n)?(n=n.slice())[0]+=a:n+=a,n}}}});var Ae=ne.extend({dataElementType:be.Arc,linkScales:z.noop,_dataElementOptions:["backgroundColor","borderColor","borderWidth","borderAlign","hoverBackgroundColor","hoverBorderColor","hoverBorderWidth"],getRingIndex:function(e){for(var t=0,n=0;n<e;++n)this.chart.isDatasetVisible(n)&&++t;return t},update:function(e){var t,n,a,r,i=this,o=i.chart,s=o.chartArea,l=o.options,d=1,u=1,c=0,m=0,f=i.getMeta(),h=f.data,_=l.cutoutPercentage/100||0,p=l.circumference,y=i._getRingWeight(i.index);if(p<Oe){var g=l.rotation%Oe,M=(g+=g>=Ce?-Oe:g<-Ce?Oe:0)+p,v=Math.cos(g),b=Math.sin(g),L=Math.cos(M),k=Math.sin(M),w=g<=0&&M>=0||M>=Oe,x=g<=Fe&&M>=Fe||M>=Oe+Fe,T=g<=-Fe&&M>=-Fe||M>=Ce+Fe,Y=g===-Ce||M>=Ce?-1:Math.min(v,v*_,L,L*_),D=T?-1:Math.min(b,b*_,k,k*_),S=w?1:Math.max(v,v*_,L,L*_),E=x?1:Math.max(b,b*_,k,k*_);d=(S-Y)/2,u=(E-D)/2,c=-(S+Y)/2,m=-(E+D)/2}for(a=0,r=h.length;a<r;++a)h[a]._options=i._resolveDataElementOptions(h[a],a);for(o.borderWidth=i.getMaxBorderWidth(),t=(s.right-s.left-o.borderWidth)/d,n=(s.bottom-s.top-o.borderWidth)/u,o.outerRadius=Math.max(Math.min(t,n)/2,0),o.innerRadius=Math.max(o.outerRadius*_,0),o.radiusLength=(o.outerRadius-o.innerRadius)/(i._getVisibleDatasetWeightTotal()||1),o.offsetX=c*o.outerRadius,o.offsetY=m*o.outerRadius,f.total=i.calculateTotal(),i.outerRadius=o.outerRadius-o.radiusLength*i._getRingWeightOffset(i.index),i.innerRadius=Math.max(i.outerRadius-o.radiusLength*y,0),a=0,r=h.length;a<r;++a)i.updateElement(h[a],a,e)},updateElement:function(e,t,n){var a=this,r=a.chart,i=r.chartArea,o=r.options,s=o.animation,l=(i.left+i.right)/2,d=(i.top+i.bottom)/2,u=o.rotation,c=o.rotation,m=a.getDataset(),f=n&&s.animateRotate?0:e.hidden?0:a.calculateCircumference(m.data[t])*(o.circumference/Oe),h=n&&s.animateScale?0:a.innerRadius,_=n&&s.animateScale?0:a.outerRadius,p=e._options||{};z.extend(e,{_datasetIndex:a.index,_index:t,_model:{backgroundColor:p.backgroundColor,borderColor:p.borderColor,borderWidth:p.borderWidth,borderAlign:p.borderAlign,x:l+r.offsetX,y:d+r.offsetY,startAngle:u,endAngle:c,circumference:f,outerRadius:_,innerRadius:h,label:z.valueAtIndexOrDefault(m.label,t,r.data.labels[t])}});var y=e._model;n&&s.animateRotate||(y.startAngle=0===t?o.rotation:a.getMeta().data[t-1]._model.endAngle,y.endAngle=y.startAngle+y.circumference),e.pivot()},calculateTotal:function(){var e,t=this.getDataset(),n=this.getMeta(),a=0;return z.each(n.data,(function(n,r){e=t.data[r],isNaN(e)||n.hidden||(a+=Math.abs(e))})),a},calculateCircumference:function(e){var t=this.getMeta().total;return t>0&&!isNaN(e)?Oe*(Math.abs(e)/t):0},getMaxBorderWidth:function(e){var t,n,a,r,i,o,s,l,d=0,u=this.chart;if(!e)for(t=0,n=u.data.datasets.length;t<n;++t)if(u.isDatasetVisible(t)){e=(a=u.getDatasetMeta(t)).data,t!==this.index&&(i=a.controller);break}if(!e)return 0;for(t=0,n=e.length;t<n;++t)r=e[t],i?(i._configure(),o=i._resolveDataElementOptions(r,t)):o=r._options,"inner"!==o.borderAlign&&(s=o.borderWidth,d=(l=o.hoverBorderWidth)>(d=s>d?s:d)?l:d);return d},setHoverStyle:function(e){var t=e._model,n=e._options,a=z.getHoverColor;e.$previousStyle={backgroundColor:t.backgroundColor,borderColor:t.borderColor,borderWidth:t.borderWidth},t.backgroundColor=je(n.hoverBackgroundColor,a(n.backgroundColor)),t.borderColor=je(n.hoverBorderColor,a(n.borderColor)),t.borderWidth=je(n.hoverBorderWidth,n.borderWidth)},_getRingWeightOffset:function(e){for(var t=0,n=0;n<e;++n)this.chart.isDatasetVisible(n)&&(t+=this._getRingWeight(n));return t},_getRingWeight:function(e){return Math.max(je(this.chart.data.datasets[e].weight,1),0)},_getVisibleDatasetWeightTotal:function(){return this._getRingWeightOffset(this.chart.data.datasets.length)}});F._set("horizontalBar",{hover:{mode:"index",axis:"y"},scales:{xAxes:[{type:"linear",position:"bottom"}],yAxes:[{type:"category",position:"left",offset:!0,gridLines:{offsetGridLines:!0}}]},elements:{rectangle:{borderSkipped:"left"}},tooltips:{mode:"index",axis:"y"}}),F._set("global",{datasets:{horizontalBar:{categoryPercentage:.8,barPercentage:.9}}});var Re=Se.extend({_getValueScaleId:function(){return this.getMeta().xAxisID},_getIndexScaleId:function(){return this.getMeta().yAxisID}}),We=z.valueOrDefault,Ie=z.options.resolve,ze=z.canvas._isPointInArea;function Ne(e,t){var n=e&&e.options.ticks||{},a=n.reverse,r=void 0===n.min?t:0,i=void 0===n.max?t:0;return{start:a?i:r,end:a?r:i}}function Ve(e,t,n){var a=n/2,r=Ne(e,a),i=Ne(t,a);return{top:i.end,right:r.end,bottom:i.start,left:r.start}}function Be(e){var t,n,a,r;return z.isObject(e)?(t=e.top,n=e.right,a=e.bottom,r=e.left):t=n=a=r=e,{top:t,right:n,bottom:a,left:r}}F._set("line",{showLines:!0,spanGaps:!1,hover:{mode:"label"},scales:{xAxes:[{type:"category",id:"x-axis-0"}],yAxes:[{type:"linear",id:"y-axis-0"}]}});var Ue=ne.extend({datasetElementType:be.Line,dataElementType:be.Point,_datasetElementOptions:["backgroundColor","borderCapStyle","borderColor","borderDash","borderDashOffset","borderJoinStyle","borderWidth","cubicInterpolationMode","fill"],_dataElementOptions:{backgroundColor:"pointBackgroundColor",borderColor:"pointBorderColor",borderWidth:"pointBorderWidth",hitRadius:"pointHitRadius",hoverBackgroundColor:"pointHoverBackgroundColor",hoverBorderColor:"pointHoverBorderColor",hoverBorderWidth:"pointHoverBorderWidth",hoverRadius:"pointHoverRadius",pointStyle:"pointStyle",radius:"pointRadius",rotation:"pointRotation"},update:function(e){var t,n,a=this,r=a.getMeta(),i=r.dataset,o=r.data||[],s=a.chart.options,l=a._config,d=a._showLine=We(l.showLine,s.showLines);for(a._xScale=a.getScaleForId(r.xAxisID),a._yScale=a.getScaleForId(r.yAxisID),d&&(void 0!==l.tension&&void 0===l.lineTension&&(l.lineTension=l.tension),i._scale=a._yScale,i._datasetIndex=a.index,i._children=o,i._model=a._resolveDatasetElementOptions(i),i.pivot()),t=0,n=o.length;t<n;++t)a.updateElement(o[t],t,e);for(d&&0!==i._model.tension&&a.updateBezierControlPoints(),t=0,n=o.length;t<n;++t)o[t].pivot()},updateElement:function(e,t,n){var a,r,i=this,o=i.getMeta(),s=e.custom||{},l=i.getDataset(),d=i.index,u=l.data[t],c=i._xScale,m=i._yScale,f=o.dataset._model,h=i._resolveDataElementOptions(e,t);a=c.getPixelForValue("object"==typeof u?u:NaN,t,d),r=n?m.getBasePixel():i.calculatePointY(u,t,d),e._xScale=c,e._yScale=m,e._options=h,e._datasetIndex=d,e._index=t,e._model={x:a,y:r,skip:s.skip||isNaN(a)||isNaN(r),radius:h.radius,pointStyle:h.pointStyle,rotation:h.rotation,backgroundColor:h.backgroundColor,borderColor:h.borderColor,borderWidth:h.borderWidth,tension:We(s.tension,f?f.tension:0),steppedLine:!!f&&f.steppedLine,hitRadius:h.hitRadius}},_resolveDatasetElementOptions:function(e){var t=this,n=t._config,a=e.custom||{},r=t.chart.options,i=r.elements.line,o=ne.prototype._resolveDatasetElementOptions.apply(t,arguments);return o.spanGaps=We(n.spanGaps,r.spanGaps),o.tension=We(n.lineTension,i.tension),o.steppedLine=Ie([a.steppedLine,n.steppedLine,i.stepped]),o.clip=Be(We(n.clip,Ve(t._xScale,t._yScale,o.borderWidth))),o},calculatePointY:function(e,t,n){var a,r,i,o,s,l,d,u=this.chart,c=this._yScale,m=0,f=0;if(c.options.stacked){for(s=+c.getRightValue(e),d=(l=u._getSortedVisibleDatasetMetas()).length,a=0;a<d&&(i=l[a]).index!==n;++a)r=u.data.datasets[i.index],"line"===i.type&&i.yAxisID===c.id&&((o=+c.getRightValue(r.data[t]))<0?f+=o||0:m+=o||0);return s<0?c.getPixelForValue(f+s):c.getPixelForValue(m+s)}return c.getPixelForValue(e)},updateBezierControlPoints:function(){var e,t,n,a,r=this.chart,i=this.getMeta(),o=i.dataset._model,s=r.chartArea,l=i.data||[];function d(e,t,n){return Math.max(Math.min(e,n),t)}if(o.spanGaps&&(l=l.filter((function(e){return!e._model.skip}))),"monotone"===o.cubicInterpolationMode)z.splineCurveMonotone(l);else for(e=0,t=l.length;e<t;++e)n=l[e]._model,a=z.splineCurve(z.previousItem(l,e)._model,n,z.nextItem(l,e)._model,o.tension),n.controlPointPreviousX=a.previous.x,n.controlPointPreviousY=a.previous.y,n.controlPointNextX=a.next.x,n.controlPointNextY=a.next.y;if(r.options.elements.line.capBezierPoints)for(e=0,t=l.length;e<t;++e)n=l[e]._model,ze(n,s)&&(e>0&&ze(l[e-1]._model,s)&&(n.controlPointPreviousX=d(n.controlPointPreviousX,s.left,s.right),n.controlPointPreviousY=d(n.controlPointPreviousY,s.top,s.bottom)),e<l.length-1&&ze(l[e+1]._model,s)&&(n.controlPointNextX=d(n.controlPointNextX,s.left,s.right),n.controlPointNextY=d(n.controlPointNextY,s.top,s.bottom)))},draw:function(){var e,t=this.chart,n=this.getMeta(),a=n.data||[],r=t.chartArea,i=t.canvas,o=0,s=a.length;for(this._showLine&&(e=n.dataset._model.clip,z.canvas.clipArea(t.ctx,{left:!1===e.left?0:r.left-e.left,right:!1===e.right?i.width:r.right+e.right,top:!1===e.top?0:r.top-e.top,bottom:!1===e.bottom?i.height:r.bottom+e.bottom}),n.dataset.draw(),z.canvas.unclipArea(t.ctx));o<s;++o)a[o].draw(r)},setHoverStyle:function(e){var t=e._model,n=e._options,a=z.getHoverColor;e.$previousStyle={backgroundColor:t.backgroundColor,borderColor:t.borderColor,borderWidth:t.borderWidth,radius:t.radius},t.backgroundColor=We(n.hoverBackgroundColor,a(n.backgroundColor)),t.borderColor=We(n.hoverBorderColor,a(n.borderColor)),t.borderWidth=We(n.hoverBorderWidth,n.borderWidth),t.radius=We(n.hoverRadius,n.radius)}}),$e=z.options.resolve;F._set("polarArea",{scale:{type:"radialLinear",angleLines:{display:!1},gridLines:{circular:!0},pointLabels:{display:!1},ticks:{beginAtZero:!0}},animation:{animateRotate:!0,animateScale:!0},startAngle:-.5*Math.PI,legendCallback:function(e){var t,n,a,r=document.createElement("ul"),i=e.data,o=i.datasets,s=i.labels;if(r.setAttribute("class",e.id+"-legend"),o.length)for(t=0,n=o[0].data.length;t<n;++t)(a=r.appendChild(document.createElement("li"))).appendChild(document.createElement("span")).style.backgroundColor=o[0].backgroundColor[t],s[t]&&a.appendChild(document.createTextNode(s[t]));return r.outerHTML},legend:{labels:{generateLabels:function(e){var t=e.data;return t.labels.length&&t.datasets.length?t.labels.map((function(n,a){var r=e.getDatasetMeta(0),i=r.controller.getStyle(a);return{text:n,fillStyle:i.backgroundColor,strokeStyle:i.borderColor,lineWidth:i.borderWidth,hidden:isNaN(t.datasets[0].data[a])||r.data[a].hidden,index:a}})):[]}},onClick:function(e,t){var n,a,r,i=t.index,o=this.chart;for(n=0,a=(o.data.datasets||[]).length;n<a;++n)(r=o.getDatasetMeta(n)).data[i].hidden=!r.data[i].hidden;o.update()}},tooltips:{callbacks:{title:function(){return""},label:function(e,t){return t.labels[e.index]+": "+e.yLabel}}}});var Je=ne.extend({dataElementType:be.Arc,linkScales:z.noop,_dataElementOptions:["backgroundColor","borderColor","borderWidth","borderAlign","hoverBackgroundColor","hoverBorderColor","hoverBorderWidth"],_getIndexScaleId:function(){return this.chart.scale.id},_getValueScaleId:function(){return this.chart.scale.id},update:function(e){var t,n,a,r=this,i=r.getDataset(),o=r.getMeta(),s=r.chart.options.startAngle||0,l=r._starts=[],d=r._angles=[],u=o.data;for(r._updateRadius(),o.count=r.countVisibleElements(),t=0,n=i.data.length;t<n;t++)l[t]=s,a=r._computeAngle(t),d[t]=a,s+=a;for(t=0,n=u.length;t<n;++t)u[t]._options=r._resolveDataElementOptions(u[t],t),r.updateElement(u[t],t,e)},_updateRadius:function(){var e=this,t=e.chart,n=t.chartArea,a=t.options,r=Math.min(n.right-n.left,n.bottom-n.top);t.outerRadius=Math.max(r/2,0),t.innerRadius=Math.max(a.cutoutPercentage?t.outerRadius/100*a.cutoutPercentage:1,0),t.radiusLength=(t.outerRadius-t.innerRadius)/t.getVisibleDatasetCount(),e.outerRadius=t.outerRadius-t.radiusLength*e.index,e.innerRadius=e.outerRadius-t.radiusLength},updateElement:function(e,t,n){var a=this,r=a.chart,i=a.getDataset(),o=r.options,s=o.animation,l=r.scale,d=r.data.labels,u=l.xCenter,c=l.yCenter,m=o.startAngle,f=e.hidden?0:l.getDistanceFromCenterForValue(i.data[t]),h=a._starts[t],_=h+(e.hidden?0:a._angles[t]),p=s.animateScale?0:l.getDistanceFromCenterForValue(i.data[t]),y=e._options||{};z.extend(e,{_datasetIndex:a.index,_index:t,_scale:l,_model:{backgroundColor:y.backgroundColor,borderColor:y.borderColor,borderWidth:y.borderWidth,borderAlign:y.borderAlign,x:u,y:c,innerRadius:0,outerRadius:n?p:f,startAngle:n&&s.animateRotate?m:h,endAngle:n&&s.animateRotate?m:_,label:z.valueAtIndexOrDefault(d,t,d[t])}}),e.pivot()},countVisibleElements:function(){var e=this.getDataset(),t=this.getMeta(),n=0;return z.each(t.data,(function(t,a){isNaN(e.data[a])||t.hidden||n++})),n},setHoverStyle:function(e){var t=e._model,n=e._options,a=z.getHoverColor,r=z.valueOrDefault;e.$previousStyle={backgroundColor:t.backgroundColor,borderColor:t.borderColor,borderWidth:t.borderWidth},t.backgroundColor=r(n.hoverBackgroundColor,a(n.backgroundColor)),t.borderColor=r(n.hoverBorderColor,a(n.borderColor)),t.borderWidth=r(n.hoverBorderWidth,n.borderWidth)},_computeAngle:function(e){var t=this,n=this.getMeta().count,a=t.getDataset(),r=t.getMeta();if(isNaN(a.data[e])||r.data[e].hidden)return 0;var i={chart:t.chart,dataIndex:e,dataset:a,datasetIndex:t.index};return $e([t.chart.options.elements.arc.angle,2*Math.PI/n],i,e)}});F._set("pie",z.clone(F.doughnut)),F._set("pie",{cutoutPercentage:0});var qe=Ae,Ge=z.valueOrDefault;F._set("radar",{spanGaps:!1,scale:{type:"radialLinear"},elements:{line:{fill:"start",tension:0}}});var Ke=ne.extend({datasetElementType:be.Line,dataElementType:be.Point,linkScales:z.noop,_datasetElementOptions:["backgroundColor","borderWidth","borderColor","borderCapStyle","borderDash","borderDashOffset","borderJoinStyle","fill"],_dataElementOptions:{backgroundColor:"pointBackgroundColor",borderColor:"pointBorderColor",borderWidth:"pointBorderWidth",hitRadius:"pointHitRadius",hoverBackgroundColor:"pointHoverBackgroundColor",hoverBorderColor:"pointHoverBorderColor",hoverBorderWidth:"pointHoverBorderWidth",hoverRadius:"pointHoverRadius",pointStyle:"pointStyle",radius:"pointRadius",rotation:"pointRotation"},_getIndexScaleId:function(){return this.chart.scale.id},_getValueScaleId:function(){return this.chart.scale.id},update:function(e){var t,n,a=this,r=a.getMeta(),i=r.dataset,o=r.data||[],s=a.chart.scale,l=a._config;for(void 0!==l.tension&&void 0===l.lineTension&&(l.lineTension=l.tension),i._scale=s,i._datasetIndex=a.index,i._children=o,i._loop=!0,i._model=a._resolveDatasetElementOptions(i),i.pivot(),t=0,n=o.length;t<n;++t)a.updateElement(o[t],t,e);for(a.updateBezierControlPoints(),t=0,n=o.length;t<n;++t)o[t].pivot()},updateElement:function(e,t,n){var a=this,r=e.custom||{},i=a.getDataset(),o=a.chart.scale,s=o.getPointPositionForValue(t,i.data[t]),l=a._resolveDataElementOptions(e,t),d=a.getMeta().dataset._model,u=n?o.xCenter:s.x,c=n?o.yCenter:s.y;e._scale=o,e._options=l,e._datasetIndex=a.index,e._index=t,e._model={x:u,y:c,skip:r.skip||isNaN(u)||isNaN(c),radius:l.radius,pointStyle:l.pointStyle,rotation:l.rotation,backgroundColor:l.backgroundColor,borderColor:l.borderColor,borderWidth:l.borderWidth,tension:Ge(r.tension,d?d.tension:0),hitRadius:l.hitRadius}},_resolveDatasetElementOptions:function(){var e=this,t=e._config,n=e.chart.options,a=ne.prototype._resolveDatasetElementOptions.apply(e,arguments);return a.spanGaps=Ge(t.spanGaps,n.spanGaps),a.tension=Ge(t.lineTension,n.elements.line.tension),a},updateBezierControlPoints:function(){var e,t,n,a,r=this.getMeta(),i=this.chart.chartArea,o=r.data||[];function s(e,t,n){return Math.max(Math.min(e,n),t)}for(r.dataset._model.spanGaps&&(o=o.filter((function(e){return!e._model.skip}))),e=0,t=o.length;e<t;++e)n=o[e]._model,a=z.splineCurve(z.previousItem(o,e,!0)._model,n,z.nextItem(o,e,!0)._model,n.tension),n.controlPointPreviousX=s(a.previous.x,i.left,i.right),n.controlPointPreviousY=s(a.previous.y,i.top,i.bottom),n.controlPointNextX=s(a.next.x,i.left,i.right),n.controlPointNextY=s(a.next.y,i.top,i.bottom)},setHoverStyle:function(e){var t=e._model,n=e._options,a=z.getHoverColor;e.$previousStyle={backgroundColor:t.backgroundColor,borderColor:t.borderColor,borderWidth:t.borderWidth,radius:t.radius},t.backgroundColor=Ge(n.hoverBackgroundColor,a(n.backgroundColor)),t.borderColor=Ge(n.hoverBorderColor,a(n.borderColor)),t.borderWidth=Ge(n.hoverBorderWidth,n.borderWidth),t.radius=Ge(n.hoverRadius,n.radius)}});F._set("scatter",{hover:{mode:"single"},scales:{xAxes:[{id:"x-axis-1",type:"linear",position:"bottom"}],yAxes:[{id:"y-axis-1",type:"linear",position:"left"}]},tooltips:{callbacks:{title:function(){return""},label:function(e){return"("+e.xLabel+", "+e.yLabel+")"}}}}),F._set("global",{datasets:{scatter:{showLine:!1}}});var Qe={bar:Se,bubble:He,doughnut:Ae,horizontalBar:Re,line:Ue,polarArea:Je,pie:qe,radar:Ke,scatter:Ue};function Ze(e,t){return e.native?{x:e.x,y:e.y}:z.getRelativePosition(e,t)}function Xe(e,t){var n,a,r,i,o,s,l=e._getSortedVisibleDatasetMetas();for(a=0,i=l.length;a<i;++a)for(r=0,o=(n=l[a].data).length;r<o;++r)(s=n[r])._view.skip||t(s)}function et(e,t){var n=[];return Xe(e,(function(e){e.inRange(t.x,t.y)&&n.push(e)})),n}function tt(e,t,n,a){var r=Number.POSITIVE_INFINITY,i=[];return Xe(e,(function(e){if(!n||e.inRange(t.x,t.y)){var o=e.getCenterPoint(),s=a(t,o);s<r?(i=[e],r=s):s===r&&i.push(e)}})),i}function nt(e){var t=-1!==e.indexOf("x"),n=-1!==e.indexOf("y");return function(e,a){var r=t?Math.abs(e.x-a.x):0,i=n?Math.abs(e.y-a.y):0;return Math.sqrt(Math.pow(r,2)+Math.pow(i,2))}}function at(e,t,n){var a=Ze(t,e);n.axis=n.axis||"x";var r=nt(n.axis),i=n.intersect?et(e,a):tt(e,a,!1,r),o=[];return i.length?(e._getSortedVisibleDatasetMetas().forEach((function(e){var t=e.data[i[0]._index];t&&!t._view.skip&&o.push(t)})),o):[]}var rt={modes:{single:function(e,t){var n=Ze(t,e),a=[];return Xe(e,(function(e){if(e.inRange(n.x,n.y))return a.push(e),a})),a.slice(0,1)},label:at,index:at,dataset:function(e,t,n){var a=Ze(t,e);n.axis=n.axis||"xy";var r=nt(n.axis),i=n.intersect?et(e,a):tt(e,a,!1,r);return i.length>0&&(i=e.getDatasetMeta(i[0]._datasetIndex).data),i},"x-axis":function(e,t){return at(e,t,{intersect:!1})},point:function(e,t){return et(e,Ze(t,e))},nearest:function(e,t,n){var a=Ze(t,e);n.axis=n.axis||"xy";var r=nt(n.axis);return tt(e,a,n.intersect,r)},x:function(e,t,n){var a=Ze(t,e),r=[],i=!1;return Xe(e,(function(e){e.inXRange(a.x)&&r.push(e),e.inRange(a.x,a.y)&&(i=!0)})),n.intersect&&!i&&(r=[]),r},y:function(e,t,n){var a=Ze(t,e),r=[],i=!1;return Xe(e,(function(e){e.inYRange(a.y)&&r.push(e),e.inRange(a.x,a.y)&&(i=!0)})),n.intersect&&!i&&(r=[]),r}}},it=z.extend;function ot(e,t){return z.where(e,(function(e){return e.pos===t}))}function st(e,t){return e.sort((function(e,n){var a=t?n:e,r=t?e:n;return a.weight===r.weight?a.index-r.index:a.weight-r.weight}))}function lt(e,t,n,a){return Math.max(e[n],t[n])+Math.max(e[a],t[a])}function dt(e,t,n){var a,r,i=n.box,o=e.maxPadding;if(n.size&&(e[n.pos]-=n.size),n.size=n.horizontal?i.height:i.width,e[n.pos]+=n.size,i.getPadding){var s=i.getPadding();o.top=Math.max(o.top,s.top),o.left=Math.max(o.left,s.left),o.bottom=Math.max(o.bottom,s.bottom),o.right=Math.max(o.right,s.right)}if(a=t.outerWidth-lt(o,e,"left","right"),r=t.outerHeight-lt(o,e,"top","bottom"),a!==e.w||r!==e.h)return e.w=a,e.h=r,n.horizontal?a!==e.w:r!==e.h}function ut(e,t){var n=t.maxPadding;function a(e){var a={left:0,top:0,right:0,bottom:0};return e.forEach((function(e){a[e]=Math.max(t[e],n[e])})),a}return a(e?["left","right"]:["top","bottom"])}function ct(e,t,n){var a,r,i,o,s,l,d=[];for(a=0,r=e.length;a<r;++a)(o=(i=e[a]).box).update(i.width||t.w,i.height||t.h,ut(i.horizontal,t)),dt(t,n,i)&&(l=!0,d.length&&(s=!0)),o.fullWidth||d.push(i);return s&&ct(d,t,n)||l}function mt(e,t,n){var a,r,i,o,s=n.padding,l=t.x,d=t.y;for(a=0,r=e.length;a<r;++a)o=(i=e[a]).box,i.horizontal?(o.left=o.fullWidth?s.left:t.left,o.right=o.fullWidth?n.outerWidth-s.right:t.left+t.w,o.top=d,o.bottom=d+o.height,o.width=o.right-o.left,d=o.bottom):(o.left=l,o.right=l+o.width,o.top=t.top,o.bottom=t.top+t.h,o.height=o.bottom-o.top,l=o.right);t.x=l,t.y=d}F._set("global",{layout:{padding:{top:0,right:0,bottom:0,left:0}}});var ft,ht={defaults:{},addBox:function(e,t){e.boxes||(e.boxes=[]),t.fullWidth=t.fullWidth||!1,t.position=t.position||"top",t.weight=t.weight||0,t._layers=t._layers||function(){return[{z:0,draw:function(){t.draw.apply(t,arguments)}}]},e.boxes.push(t)},removeBox:function(e,t){var n=e.boxes?e.boxes.indexOf(t):-1;-1!==n&&e.boxes.splice(n,1)},configure:function(e,t,n){for(var a,r=["fullWidth","position","weight"],i=r.length,o=0;o<i;++o)a=r[o],n.hasOwnProperty(a)&&(t[a]=n[a])},update:function(e,t,n){if(e){var a=e.options.layout||{},r=z.options.toPadding(a.padding),i=t-r.width,o=n-r.height,s=function(e){var t=function(e){var t,n,a,r=[];for(t=0,n=(e||[]).length;t<n;++t)a=e[t],r.push({index:t,box:a,pos:a.position,horizontal:a.isHorizontal(),weight:a.weight});return r}(e),n=st(ot(t,"left"),!0),a=st(ot(t,"right")),r=st(ot(t,"top"),!0),i=st(ot(t,"bottom"));return{leftAndTop:n.concat(r),rightAndBottom:a.concat(i),chartArea:ot(t,"chartArea"),vertical:n.concat(a),horizontal:r.concat(i)}}(e.boxes),l=s.vertical,d=s.horizontal,u=Object.freeze({outerWidth:t,outerHeight:n,padding:r,availableWidth:i,vBoxMaxWidth:i/2/l.length,hBoxMaxHeight:o/2}),c=it({maxPadding:it({},r),w:i,h:o,x:r.left,y:r.top},r);!function(e,t){var n,a,r;for(n=0,a=e.length;n<a;++n)(r=e[n]).width=r.horizontal?r.box.fullWidth&&t.availableWidth:t.vBoxMaxWidth,r.height=r.horizontal&&t.hBoxMaxHeight}(l.concat(d),u),ct(l,c,u),ct(d,c,u)&&ct(l,c,u),function(e){var t=e.maxPadding;function n(n){var a=Math.max(t[n]-e[n],0);return e[n]+=a,a}e.y+=n("top"),e.x+=n("left"),n("right"),n("bottom")}(c),mt(s.leftAndTop,c,u),c.x+=c.w,c.y+=c.h,mt(s.rightAndBottom,c,u),e.chartArea={left:c.left,top:c.top,right:c.left+c.w,bottom:c.top+c.h},z.each(s.chartArea,(function(t){var n=t.box;it(n,e.chartArea),n.update(c.w,c.h)}))}}},_t=(ft=Object.freeze({__proto__:null,default:"/*\n * DOM element rendering detection\n * https://davidwalsh.name/detect-node-insertion\n */\n@keyframes chartjs-render-animation {\n\tfrom { opacity: 0.99; }\n\tto { opacity: 1; }\n}\n\n.chartjs-render-monitor {\n\tanimation: chartjs-render-animation 0.001s;\n}\n\n/*\n * DOM element resizing detection\n * https://github.com/marcj/css-element-queries\n */\n.chartjs-size-monitor,\n.chartjs-size-monitor-expand,\n.chartjs-size-monitor-shrink {\n\tposition: absolute;\n\tdirection: ltr;\n\tleft: 0;\n\ttop: 0;\n\tright: 0;\n\tbottom: 0;\n\toverflow: hidden;\n\tpointer-events: none;\n\tvisibility: hidden;\n\tz-index: -1;\n}\n\n.chartjs-size-monitor-expand > div {\n\tposition: absolute;\n\twidth: 1000000px;\n\theight: 1000000px;\n\tleft: 0;\n\ttop: 0;\n}\n\n.chartjs-size-monitor-shrink > div {\n\tposition: absolute;\n\twidth: 200%;\n\theight: 200%;\n\tleft: 0;\n\ttop: 0;\n}\n"}))&&ft.default||ft,pt=["animationstart","webkitAnimationStart"],yt={touchstart:"mousedown",touchmove:"mousemove",touchend:"mouseup",pointerenter:"mouseenter",pointerdown:"mousedown",pointermove:"mousemove",pointerup:"mouseup",pointerleave:"mouseout",pointerout:"mouseout"};function gt(e,t){var n=z.getStyle(e,t),a=n&&n.match(/^(\d+)(\.\d+)?px$/);return a?Number(a[1]):void 0}var Mt=!!function(){var e=!1;try{var t=Object.defineProperty({},"passive",{get:function(){e=!0}});window.addEventListener("e",null,t)}catch(e){}return e}()&&{passive:!0};function vt(e,t,n){e.addEventListener(t,n,Mt)}function bt(e,t,n){e.removeEventListener(t,n,Mt)}function Lt(e,t,n,a,r){return{type:e,chart:t,native:r||null,x:void 0!==n?n:null,y:void 0!==a?a:null}}function kt(e){var t=document.createElement("div");return t.className=e||"",t}function wt(e,t,n){var a,r,i,o,s=e.$chartjs||(e.$chartjs={}),l=s.resizer=function(e){var t=kt("chartjs-size-monitor"),n=kt("chartjs-size-monitor-expand"),a=kt("chartjs-size-monitor-shrink");n.appendChild(kt()),a.appendChild(kt()),t.appendChild(n),t.appendChild(a),t._reset=function(){n.scrollLeft=1e6,n.scrollTop=1e6,a.scrollLeft=1e6,a.scrollTop=1e6};var r=function(){t._reset(),e()};return vt(n,"scroll",r.bind(n,"expand")),vt(a,"scroll",r.bind(a,"shrink")),t}((a=function(){if(s.resizer){var a=n.options.maintainAspectRatio&&e.parentNode,r=a?a.clientWidth:0;t(Lt("resize",n)),a&&a.clientWidth<r&&n.canvas&&t(Lt("resize",n))}},i=!1,o=[],function(){o=Array.prototype.slice.call(arguments),r=r||this,i||(i=!0,z.requestAnimFrame.call(window,(function(){i=!1,a.apply(r,o)})))}));!function(e,t){var n=e.$chartjs||(e.$chartjs={}),a=n.renderProxy=function(e){"chartjs-render-animation"===e.animationName&&t()};z.each(pt,(function(t){vt(e,t,a)})),n.reflow=!!e.offsetParent,e.classList.add("chartjs-render-monitor")}(e,(function(){if(s.resizer){var t=e.parentNode;t&&t!==l.parentNode&&t.insertBefore(l,t.firstChild),l._reset()}}))}function xt(e){var t=e.$chartjs||{},n=t.resizer;delete t.resizer,function(e){var t=e.$chartjs||{},n=t.renderProxy;n&&(z.each(pt,(function(t){bt(e,t,n)})),delete t.renderProxy),e.classList.remove("chartjs-render-monitor")}(e),n&&n.parentNode&&n.parentNode.removeChild(n)}var Tt={disableCSSInjection:!1,_enabled:"undefined"!=typeof window&&"undefined"!=typeof document,_ensureLoaded:function(e){if(!this.disableCSSInjection){var t=e.getRootNode?e.getRootNode():document;!function(e,t){var n=e.$chartjs||(e.$chartjs={});if(!n.containsStyles){n.containsStyles=!0,t="/* Chart.js */\n"+t;var a=document.createElement("style");a.setAttribute("type","text/css"),a.appendChild(document.createTextNode(t)),e.appendChild(a)}}(t.host?t:document.head,_t)}},acquireContext:function(e,t){"string"==typeof e?e=document.getElementById(e):e.length&&(e=e[0]),e&&e.canvas&&(e=e.canvas);var n=e&&e.getContext&&e.getContext("2d");return n&&n.canvas===e?(this._ensureLoaded(e),function(e,t){var n=e.style,a=e.getAttribute("height"),r=e.getAttribute("width");if(e.$chartjs={initial:{height:a,width:r,style:{display:n.display,height:n.height,width:n.width}}},n.display=n.display||"block",null===r||""===r){var i=gt(e,"width");void 0!==i&&(e.width=i)}if(null===a||""===a)if(""===e.style.height)e.height=e.width/(t.options.aspectRatio||2);else{var o=gt(e,"height");void 0!==i&&(e.height=o)}}(e,t),n):null},releaseContext:function(e){var t=e.canvas;if(t.$chartjs){var n=t.$chartjs.initial;["height","width"].forEach((function(e){var a=n[e];z.isNullOrUndef(a)?t.removeAttribute(e):t.setAttribute(e,a)})),z.each(n.style||{},(function(e,n){t.style[n]=e})),t.width=t.width,delete t.$chartjs}},addEventListener:function(e,t,n){var a=e.canvas;if("resize"!==t){var r=n.$chartjs||(n.$chartjs={});vt(a,t,(r.proxies||(r.proxies={}))[e.id+"_"+t]=function(t){n(function(e,t){var n=yt[e.type]||e.type,a=z.getRelativePosition(e,t);return Lt(n,t,a.x,a.y,e)}(t,e))})}else wt(a,n,e)},removeEventListener:function(e,t,n){var a=e.canvas;if("resize"!==t){var r=((n.$chartjs||{}).proxies||{})[e.id+"_"+t];r&&bt(a,t,r)}else xt(a)}};z.addEvent=vt,z.removeEvent=bt;var Yt=Tt._enabled?Tt:{acquireContext:function(e){return e&&e.canvas&&(e=e.canvas),e&&e.getContext("2d")||null}},Dt=z.extend({initialize:function(){},acquireContext:function(){},releaseContext:function(){},addEventListener:function(){},removeEventListener:function(){}},Yt);F._set("global",{plugins:{}});var St={_plugins:[],_cacheId:0,register:function(e){var t=this._plugins;[].concat(e).forEach((function(e){-1===t.indexOf(e)&&t.push(e)})),this._cacheId++},unregister:function(e){var t=this._plugins;[].concat(e).forEach((function(e){var n=t.indexOf(e);-1!==n&&t.splice(n,1)})),this._cacheId++},clear:function(){this._plugins=[],this._cacheId++},count:function(){return this._plugins.length},getAll:function(){return this._plugins},notify:function(e,t,n){var a,r,i,o,s,l=this.descriptors(e),d=l.length;for(a=0;a<d;++a)if("function"==typeof(s=(i=(r=l[a]).plugin)[t])&&((o=[e].concat(n||[])).push(r.options),!1===s.apply(i,o)))return!1;return!0},descriptors:function(e){var t=e.$plugins||(e.$plugins={});if(t.id===this._cacheId)return t.descriptors;var n=[],a=[],r=e&&e.config||{},i=r.options&&r.options.plugins||{};return this._plugins.concat(r.plugins||[]).forEach((function(e){if(-1===n.indexOf(e)){var t=e.id,r=i[t];!1!==r&&(!0===r&&(r=z.clone(F.global.plugins[t])),n.push(e),a.push({plugin:e,options:r||{}}))}})),t.descriptors=a,t.id=this._cacheId,a},_invalidate:function(e){delete e.$plugins}},Et={constructors:{},defaults:{},registerScaleType:function(e,t,n){this.constructors[e]=t,this.defaults[e]=z.clone(n)},getScaleConstructor:function(e){return this.constructors.hasOwnProperty(e)?this.constructors[e]:void 0},getScaleDefaults:function(e){return this.defaults.hasOwnProperty(e)?z.merge({},[F.scale,this.defaults[e]]):{}},updateScaleDefaults:function(e,t){this.defaults.hasOwnProperty(e)&&(this.defaults[e]=z.extend(this.defaults[e],t))},addScalesToLayout:function(e){z.each(e.scales,(function(t){t.fullWidth=t.options.fullWidth,t.position=t.options.position,t.weight=t.options.weight,ht.addBox(e,t)}))}},Pt=z.valueOrDefault,Ht=z.rtl.getRtlAdapter;F._set("global",{tooltips:{enabled:!0,custom:null,mode:"nearest",position:"average",intersect:!0,backgroundColor:"rgba(0,0,0,0.8)",titleFontStyle:"bold",titleSpacing:2,titleMarginBottom:6,titleFontColor:"#fff",titleAlign:"left",bodySpacing:2,bodyFontColor:"#fff",bodyAlign:"left",footerFontStyle:"bold",footerSpacing:2,footerMarginTop:6,footerFontColor:"#fff",footerAlign:"left",yPadding:6,xPadding:6,caretPadding:2,caretSize:5,cornerRadius:6,multiKeyBackground:"#fff",displayColors:!0,borderColor:"rgba(0,0,0,0)",borderWidth:0,callbacks:{beforeTitle:z.noop,title:function(e,t){var n="",a=t.labels,r=a?a.length:0;if(e.length>0){var i=e[0];i.label?n=i.label:i.xLabel?n=i.xLabel:r>0&&i.index<r&&(n=a[i.index])}return n},afterTitle:z.noop,beforeBody:z.noop,beforeLabel:z.noop,label:function(e,t){var n=t.datasets[e.datasetIndex].label||"";return n&&(n+=": "),z.isNullOrUndef(e.value)?n+=e.yLabel:n+=e.value,n},labelColor:function(e,t){var n=t.getDatasetMeta(e.datasetIndex).data[e.index]._view;return{borderColor:n.borderColor,backgroundColor:n.backgroundColor}},labelTextColor:function(){return this._options.bodyFontColor},afterLabel:z.noop,afterBody:z.noop,beforeFooter:z.noop,footer:z.noop,afterFooter:z.noop}}});var jt={average:function(e){if(!e.length)return!1;var t,n,a=0,r=0,i=0;for(t=0,n=e.length;t<n;++t){var o=e[t];if(o&&o.hasValue()){var s=o.tooltipPosition();a+=s.x,r+=s.y,++i}}return{x:a/i,y:r/i}},nearest:function(e,t){var n,a,r,i=t.x,o=t.y,s=Number.POSITIVE_INFINITY;for(n=0,a=e.length;n<a;++n){var l=e[n];if(l&&l.hasValue()){var d=l.getCenterPoint(),u=z.distanceBetweenPoints(t,d);u<s&&(s=u,r=l)}}if(r){var c=r.tooltipPosition();i=c.x,o=c.y}return{x:i,y:o}}};function Ct(e,t){return t&&(z.isArray(t)?Array.prototype.push.apply(e,t):e.push(t)),e}function Ot(e){return("string"==typeof e||e instanceof String)&&e.indexOf("\n")>-1?e.split("\n"):e}function Ft(e){var t=F.global;return{xPadding:e.xPadding,yPadding:e.yPadding,xAlign:e.xAlign,yAlign:e.yAlign,rtl:e.rtl,textDirection:e.textDirection,bodyFontColor:e.bodyFontColor,_bodyFontFamily:Pt(e.bodyFontFamily,t.defaultFontFamily),_bodyFontStyle:Pt(e.bodyFontStyle,t.defaultFontStyle),_bodyAlign:e.bodyAlign,bodyFontSize:Pt(e.bodyFontSize,t.defaultFontSize),bodySpacing:e.bodySpacing,titleFontColor:e.titleFontColor,_titleFontFamily:Pt(e.titleFontFamily,t.defaultFontFamily),_titleFontStyle:Pt(e.titleFontStyle,t.defaultFontStyle),titleFontSize:Pt(e.titleFontSize,t.defaultFontSize),_titleAlign:e.titleAlign,titleSpacing:e.titleSpacing,titleMarginBottom:e.titleMarginBottom,footerFontColor:e.footerFontColor,_footerFontFamily:Pt(e.footerFontFamily,t.defaultFontFamily),_footerFontStyle:Pt(e.footerFontStyle,t.defaultFontStyle),footerFontSize:Pt(e.footerFontSize,t.defaultFontSize),_footerAlign:e.footerAlign,footerSpacing:e.footerSpacing,footerMarginTop:e.footerMarginTop,caretSize:e.caretSize,cornerRadius:e.cornerRadius,backgroundColor:e.backgroundColor,opacity:0,legendColorBackground:e.multiKeyBackground,displayColors:e.displayColors,borderColor:e.borderColor,borderWidth:e.borderWidth}}function At(e,t){return"center"===t?e.x+e.width/2:"right"===t?e.x+e.width-e.xPadding:e.x+e.xPadding}function Rt(e){return Ct([],Ot(e))}var Wt=q.extend({initialize:function(){this._model=Ft(this._options),this._lastActive=[]},getTitle:function(){var e=this,t=e._options,n=t.callbacks,a=n.beforeTitle.apply(e,arguments),r=n.title.apply(e,arguments),i=n.afterTitle.apply(e,arguments),o=[];return o=Ct(o,Ot(a)),o=Ct(o,Ot(r)),o=Ct(o,Ot(i))},getBeforeBody:function(){return Rt(this._options.callbacks.beforeBody.apply(this,arguments))},getBody:function(e,t){var n=this,a=n._options.callbacks,r=[];return z.each(e,(function(e){var i={before:[],lines:[],after:[]};Ct(i.before,Ot(a.beforeLabel.call(n,e,t))),Ct(i.lines,a.label.call(n,e,t)),Ct(i.after,Ot(a.afterLabel.call(n,e,t))),r.push(i)})),r},getAfterBody:function(){return Rt(this._options.callbacks.afterBody.apply(this,arguments))},getFooter:function(){var e=this,t=e._options.callbacks,n=t.beforeFooter.apply(e,arguments),a=t.footer.apply(e,arguments),r=t.afterFooter.apply(e,arguments),i=[];return i=Ct(i,Ot(n)),i=Ct(i,Ot(a)),i=Ct(i,Ot(r))},update:function(e){var t,n,a,r,i,o,s,l,d,u,c=this,m=c._options,f=c._model,h=c._model=Ft(m),_=c._active,p=c._data,y={xAlign:f.xAlign,yAlign:f.yAlign},g={x:f.x,y:f.y},M={width:f.width,height:f.height},v={x:f.caretX,y:f.caretY};if(_.length){h.opacity=1;var b=[],L=[];v=jt[m.position].call(c,_,c._eventPosition);var k=[];for(t=0,n=_.length;t<n;++t)k.push((a=_[t],r=void 0,i=void 0,o=void 0,s=void 0,l=void 0,d=void 0,u=void 0,r=a._xScale,i=a._yScale||a._scale,o=a._index,s=a._datasetIndex,l=a._chart.getDatasetMeta(s).controller,d=l._getIndexScale(),u=l._getValueScale(),{xLabel:r?r.getLabelForIndex(o,s):"",yLabel:i?i.getLabelForIndex(o,s):"",label:d?""+d.getLabelForIndex(o,s):"",value:u?""+u.getLabelForIndex(o,s):"",index:o,datasetIndex:s,x:a._model.x,y:a._model.y}));m.filter&&(k=k.filter((function(e){return m.filter(e,p)}))),m.itemSort&&(k=k.sort((function(e,t){return m.itemSort(e,t,p)}))),z.each(k,(function(e){b.push(m.callbacks.labelColor.call(c,e,c._chart)),L.push(m.callbacks.labelTextColor.call(c,e,c._chart))})),h.title=c.getTitle(k,p),h.beforeBody=c.getBeforeBody(k,p),h.body=c.getBody(k,p),h.afterBody=c.getAfterBody(k,p),h.footer=c.getFooter(k,p),h.x=v.x,h.y=v.y,h.caretPadding=m.caretPadding,h.labelColors=b,h.labelTextColors=L,h.dataPoints=k,M=function(e,t){var n=e._chart.ctx,a=2*t.yPadding,r=0,i=t.body,o=i.reduce((function(e,t){return e+t.before.length+t.lines.length+t.after.length}),0);o+=t.beforeBody.length+t.afterBody.length;var s=t.title.length,l=t.footer.length,d=t.titleFontSize,u=t.bodyFontSize,c=t.footerFontSize;a+=s*d,a+=s?(s-1)*t.titleSpacing:0,a+=s?t.titleMarginBottom:0,a+=o*u,a+=o?(o-1)*t.bodySpacing:0,a+=l?t.footerMarginTop:0,a+=l*c,a+=l?(l-1)*t.footerSpacing:0;var m=0,f=function(e){r=Math.max(r,n.measureText(e).width+m)};return n.font=z.fontString(d,t._titleFontStyle,t._titleFontFamily),z.each(t.title,f),n.font=z.fontString(u,t._bodyFontStyle,t._bodyFontFamily),z.each(t.beforeBody.concat(t.afterBody),f),m=t.displayColors?u+2:0,z.each(i,(function(e){z.each(e.before,f),z.each(e.lines,f),z.each(e.after,f)})),m=0,n.font=z.fontString(c,t._footerFontStyle,t._footerFontFamily),z.each(t.footer,f),{width:r+=2*t.xPadding,height:a}}(this,h),g=function(e,t,n,a){var r=e.x,i=e.y,o=e.caretSize,s=e.caretPadding,l=e.cornerRadius,d=n.xAlign,u=n.yAlign,c=o+s,m=l+s;return"right"===d?r-=t.width:"center"===d&&((r-=t.width/2)+t.width>a.width&&(r=a.width-t.width),r<0&&(r=0)),"top"===u?i+=c:i-="bottom"===u?t.height+c:t.height/2,"center"===u?"left"===d?r+=c:"right"===d&&(r-=c):"left"===d?r-=m:"right"===d&&(r+=m),{x:r,y:i}}(h,M,y=function(e,t){var n,a,r,i,o,s=e._model,l=e._chart,d=e._chart.chartArea,u="center",c="center";s.y<t.height?c="top":s.y>l.height-t.height&&(c="bottom");var m=(d.left+d.right)/2,f=(d.top+d.bottom)/2;"center"===c?(n=function(e){return e<=m},a=function(e){return e>m}):(n=function(e){return e<=t.width/2},a=function(e){return e>=l.width-t.width/2}),r=function(e){return e+t.width+s.caretSize+s.caretPadding>l.width},i=function(e){return e-t.width-s.caretSize-s.caretPadding<0},o=function(e){return e<=f?"top":"bottom"},n(s.x)?(u="left",r(s.x)&&(u="center",c=o(s.y))):a(s.x)&&(u="right",i(s.x)&&(u="center",c=o(s.y)));var h=e._options;return{xAlign:h.xAlign?h.xAlign:u,yAlign:h.yAlign?h.yAlign:c}}(this,M),c._chart)}else h.opacity=0;return h.xAlign=y.xAlign,h.yAlign=y.yAlign,h.x=g.x,h.y=g.y,h.width=M.width,h.height=M.height,h.caretX=v.x,h.caretY=v.y,c._model=h,e&&m.custom&&m.custom.call(c,h),c},drawCaret:function(e,t){var n=this._chart.ctx,a=this._view,r=this.getCaretPosition(e,t,a);n.lineTo(r.x1,r.y1),n.lineTo(r.x2,r.y2),n.lineTo(r.x3,r.y3)},getCaretPosition:function(e,t,n){var a,r,i,o,s,l,d=n.caretSize,u=n.cornerRadius,c=n.xAlign,m=n.yAlign,f=e.x,h=e.y,_=t.width,p=t.height;if("center"===m)s=h+p/2,"left"===c?(r=(a=f)-d,i=a,o=s+d,l=s-d):(r=(a=f+_)+d,i=a,o=s-d,l=s+d);else if("left"===c?(a=(r=f+u+d)-d,i=r+d):"right"===c?(a=(r=f+_-u-d)-d,i=r+d):(a=(r=n.caretX)-d,i=r+d),"top"===m)s=(o=h)-d,l=o;else{s=(o=h+p)+d,l=o;var y=i;i=a,a=y}return{x1:a,x2:r,x3:i,y1:o,y2:s,y3:l}},drawTitle:function(e,t,n){var a,r,i,o=t.title,s=o.length;if(s){var l=Ht(t.rtl,t.x,t.width);for(e.x=At(t,t._titleAlign),n.textAlign=l.textAlign(t._titleAlign),n.textBaseline="middle",a=t.titleFontSize,r=t.titleSpacing,n.fillStyle=t.titleFontColor,n.font=z.fontString(a,t._titleFontStyle,t._titleFontFamily),i=0;i<s;++i)n.fillText(o[i],l.x(e.x),e.y+a/2),e.y+=a+r,i+1===s&&(e.y+=t.titleMarginBottom-r)}},drawBody:function(e,t,n){var a,r,i,o,s,l,d,u,c=t.bodyFontSize,m=t.bodySpacing,f=t._bodyAlign,h=t.body,_=t.displayColors,p=0,y=_?At(t,"left"):0,g=Ht(t.rtl,t.x,t.width),M=function(t){n.fillText(t,g.x(e.x+p),e.y+c/2),e.y+=c+m},v=g.textAlign(f);for(n.textAlign=f,n.textBaseline="middle",n.font=z.fontString(c,t._bodyFontStyle,t._bodyFontFamily),e.x=At(t,v),n.fillStyle=t.bodyFontColor,z.each(t.beforeBody,M),p=_&&"right"!==v?"center"===f?c/2+1:c+2:0,s=0,d=h.length;s<d;++s){for(a=h[s],r=t.labelTextColors[s],i=t.labelColors[s],n.fillStyle=r,z.each(a.before,M),l=0,u=(o=a.lines).length;l<u;++l){if(_){var b=g.x(y);n.fillStyle=t.legendColorBackground,n.fillRect(g.leftForLtr(b,c),e.y,c,c),n.lineWidth=1,n.strokeStyle=i.borderColor,n.strokeRect(g.leftForLtr(b,c),e.y,c,c),n.fillStyle=i.backgroundColor,n.fillRect(g.leftForLtr(g.xPlus(b,1),c-2),e.y+1,c-2,c-2),n.fillStyle=r}M(o[l])}z.each(a.after,M)}p=0,z.each(t.afterBody,M),e.y-=m},drawFooter:function(e,t,n){var a,r,i=t.footer,o=i.length;if(o){var s=Ht(t.rtl,t.x,t.width);for(e.x=At(t,t._footerAlign),e.y+=t.footerMarginTop,n.textAlign=s.textAlign(t._footerAlign),n.textBaseline="middle",a=t.footerFontSize,n.fillStyle=t.footerFontColor,n.font=z.fontString(a,t._footerFontStyle,t._footerFontFamily),r=0;r<o;++r)n.fillText(i[r],s.x(e.x),e.y+a/2),e.y+=a+t.footerSpacing}},drawBackground:function(e,t,n,a){n.fillStyle=t.backgroundColor,n.strokeStyle=t.borderColor,n.lineWidth=t.borderWidth;var r=t.xAlign,i=t.yAlign,o=e.x,s=e.y,l=a.width,d=a.height,u=t.cornerRadius;n.beginPath(),n.moveTo(o+u,s),"top"===i&&this.drawCaret(e,a),n.lineTo(o+l-u,s),n.quadraticCurveTo(o+l,s,o+l,s+u),"center"===i&&"right"===r&&this.drawCaret(e,a),n.lineTo(o+l,s+d-u),n.quadraticCurveTo(o+l,s+d,o+l-u,s+d),"bottom"===i&&this.drawCaret(e,a),n.lineTo(o+u,s+d),n.quadraticCurveTo(o,s+d,o,s+d-u),"center"===i&&"left"===r&&this.drawCaret(e,a),n.lineTo(o,s+u),n.quadraticCurveTo(o,s,o+u,s),n.closePath(),n.fill(),t.borderWidth>0&&n.stroke()},draw:function(){var e=this._chart.ctx,t=this._view;if(0!==t.opacity){var n={width:t.width,height:t.height},a={x:t.x,y:t.y},r=Math.abs(t.opacity<.001)?0:t.opacity,i=t.title.length||t.beforeBody.length||t.body.length||t.afterBody.length||t.footer.length;this._options.enabled&&i&&(e.save(),e.globalAlpha=r,this.drawBackground(a,t,e,n),a.y+=t.yPadding,z.rtl.overrideTextDirection(e,t.textDirection),this.drawTitle(a,t,e),this.drawBody(a,t,e),this.drawFooter(a,t,e),z.rtl.restoreTextDirection(e,t.textDirection),e.restore())}},handleEvent:function(e){var t,n=this,a=n._options;return n._lastActive=n._lastActive||[],"mouseout"===e.type?n._active=[]:(n._active=n._chart.getElementsAtEventForMode(e,a.mode,a),a.reverse&&n._active.reverse()),(t=!z.arrayEquals(n._active,n._lastActive))&&(n._lastActive=n._active,(a.enabled||a.custom)&&(n._eventPosition={x:e.x,y:e.y},n.update(!0),n.pivot())),t}}),It=jt,zt=Wt;zt.positioners=It;var Nt=z.valueOrDefault;function Vt(){return z.merge({},[].slice.call(arguments),{merger:function(e,t,n,a){if("xAxes"===e||"yAxes"===e){var r,i,o,s=n[e].length;for(t[e]||(t[e]=[]),r=0;r<s;++r)o=n[e][r],i=Nt(o.type,"xAxes"===e?"category":"linear"),r>=t[e].length&&t[e].push({}),!t[e][r].type||o.type&&o.type!==t[e][r].type?z.merge(t[e][r],[Et.getScaleDefaults(i),o]):z.merge(t[e][r],o)}else z._merger(e,t,n,a)}})}function Bt(){return z.merge({},[].slice.call(arguments),{merger:function(e,t,n,a){var r=t[e]||{},i=n[e];"scales"===e?t[e]=Vt(r,i):"scale"===e?t[e]=z.merge(r,[Et.getScaleDefaults(i.type),i]):z._merger(e,t,n,a)}})}function Ut(e){var t=e.options;z.each(e.scales,(function(t){ht.removeBox(e,t)})),t=Bt(F.global,F[e.config.type],t),e.options=e.config.options=t,e.ensureScalesHaveIDs(),e.buildOrUpdateScales(),e.tooltip._options=t.tooltips,e.tooltip.initialize()}function $t(e,t,n){var a,r=function(e){return e.id===a};do{a=t+n++}while(z.findIndex(e,r)>=0);return a}function Jt(e){return"top"===e||"bottom"===e}function qt(e,t){return function(n,a){return n[e]===a[e]?n[t]-a[t]:n[e]-a[e]}}F._set("global",{elements:{},events:["mousemove","mouseout","click","touchstart","touchmove"],hover:{onHover:null,mode:"nearest",intersect:!0,animationDuration:400},onClick:null,maintainAspectRatio:!0,responsive:!0,responsiveAnimationDuration:0});var Gt=function(e,t){return this.construct(e,t),this};z.extend(Gt.prototype,{construct:function(e,t){var n=this;t=function(e){var t=(e=e||{}).data=e.data||{};return t.datasets=t.datasets||[],t.labels=t.labels||[],e.options=Bt(F.global,F[e.type],e.options||{}),e}(t);var a=Dt.acquireContext(e,t),r=a&&a.canvas,i=r&&r.height,o=r&&r.width;n.id=z.uid(),n.ctx=a,n.canvas=r,n.config=t,n.width=o,n.height=i,n.aspectRatio=i?o/i:null,n.options=t.options,n._bufferedRender=!1,n._layers=[],n.chart=n,n.controller=n,Gt.instances[n.id]=n,Object.defineProperty(n,"data",{get:function(){return n.config.data},set:function(e){n.config.data=e}}),a&&r?(n.initialize(),n.update()):console.error("Failed to create chart: can't acquire context from the given item")},initialize:function(){var e=this;return St.notify(e,"beforeInit"),z.retinaScale(e,e.options.devicePixelRatio),e.bindEvents(),e.options.responsive&&e.resize(!0),e.initToolTip(),St.notify(e,"afterInit"),e},clear:function(){return z.canvas.clear(this),this},stop:function(){return Q.cancelAnimation(this),this},resize:function(e){var t=this,n=t.options,a=t.canvas,r=n.maintainAspectRatio&&t.aspectRatio||null,i=Math.max(0,Math.floor(z.getMaximumWidth(a))),o=Math.max(0,Math.floor(r?i/r:z.getMaximumHeight(a)));if((t.width!==i||t.height!==o)&&(a.width=t.width=i,a.height=t.height=o,a.style.width=i+"px",a.style.height=o+"px",z.retinaScale(t,n.devicePixelRatio),!e)){var s={width:i,height:o};St.notify(t,"resize",[s]),n.onResize&&n.onResize(t,s),t.stop(),t.update({duration:n.responsiveAnimationDuration})}},ensureScalesHaveIDs:function(){var e=this.options,t=e.scales||{},n=e.scale;z.each(t.xAxes,(function(e,n){e.id||(e.id=$t(t.xAxes,"x-axis-",n))})),z.each(t.yAxes,(function(e,n){e.id||(e.id=$t(t.yAxes,"y-axis-",n))})),n&&(n.id=n.id||"scale")},buildOrUpdateScales:function(){var e=this,t=e.options,n=e.scales||{},a=[],r=Object.keys(n).reduce((function(e,t){return e[t]=!1,e}),{});t.scales&&(a=a.concat((t.scales.xAxes||[]).map((function(e){return{options:e,dtype:"category",dposition:"bottom"}})),(t.scales.yAxes||[]).map((function(e){return{options:e,dtype:"linear",dposition:"left"}})))),t.scale&&a.push({options:t.scale,dtype:"radialLinear",isDefault:!0,dposition:"chartArea"}),z.each(a,(function(t){var a=t.options,i=a.id,o=Nt(a.type,t.dtype);Jt(a.position)!==Jt(t.dposition)&&(a.position=t.dposition),r[i]=!0;var s=null;if(i in n&&n[i].type===o)(s=n[i]).options=a,s.ctx=e.ctx,s.chart=e;else{var l=Et.getScaleConstructor(o);if(!l)return;s=new l({id:i,type:o,options:a,ctx:e.ctx,chart:e}),n[s.id]=s}s.mergeTicksOptions(),t.isDefault&&(e.scale=s)})),z.each(r,(function(e,t){e||delete n[t]})),e.scales=n,Et.addScalesToLayout(this)},buildOrUpdateControllers:function(){var e,t,n=this,a=[],r=n.data.datasets;for(e=0,t=r.length;e<t;e++){var i=r[e],o=n.getDatasetMeta(e),s=i.type||n.config.type;if(o.type&&o.type!==s&&(n.destroyDatasetMeta(e),o=n.getDatasetMeta(e)),o.type=s,o.order=i.order||0,o.index=e,o.controller)o.controller.updateIndex(e),o.controller.linkScales();else{var l=Qe[o.type];if(void 0===l)throw new Error('"'+o.type+'" is not a chart type.');o.controller=new l(n,e),a.push(o.controller)}}return a},resetElements:function(){var e=this;z.each(e.data.datasets,(function(t,n){e.getDatasetMeta(n).controller.reset()}),e)},reset:function(){this.resetElements(),this.tooltip.initialize()},update:function(e){var t,n,a=this;if(e&&"object"==typeof e||(e={duration:e,lazy:arguments[1]}),Ut(a),St._invalidate(a),!1!==St.notify(a,"beforeUpdate")){a.tooltip._data=a.data;var r=a.buildOrUpdateControllers();for(t=0,n=a.data.datasets.length;t<n;t++)a.getDatasetMeta(t).controller.buildOrUpdateElements();a.updateLayout(),a.options.animation&&a.options.animation.duration&&z.each(r,(function(e){e.reset()})),a.updateDatasets(),a.tooltip.initialize(),a.lastActive=[],St.notify(a,"afterUpdate"),a._layers.sort(qt("z","_idx")),a._bufferedRender?a._bufferedRequest={duration:e.duration,easing:e.easing,lazy:e.lazy}:a.render(e)}},updateLayout:function(){var e=this;!1!==St.notify(e,"beforeLayout")&&(ht.update(this,this.width,this.height),e._layers=[],z.each(e.boxes,(function(t){t._configure&&t._configure(),e._layers.push.apply(e._layers,t._layers())}),e),e._layers.forEach((function(e,t){e._idx=t})),St.notify(e,"afterScaleUpdate"),St.notify(e,"afterLayout"))},updateDatasets:function(){if(!1!==St.notify(this,"beforeDatasetsUpdate")){for(var e=0,t=this.data.datasets.length;e<t;++e)this.updateDataset(e);St.notify(this,"afterDatasetsUpdate")}},updateDataset:function(e){var t=this.getDatasetMeta(e),n={meta:t,index:e};!1!==St.notify(this,"beforeDatasetUpdate",[n])&&(t.controller._update(),St.notify(this,"afterDatasetUpdate",[n]))},render:function(e){var t=this;e&&"object"==typeof e||(e={duration:e,lazy:arguments[1]});var n=t.options.animation,a=Nt(e.duration,n&&n.duration),r=e.lazy;if(!1!==St.notify(t,"beforeRender")){var i=function(e){St.notify(t,"afterRender"),z.callback(n&&n.onComplete,[e],t)};if(n&&a){var o=new K({numSteps:a/16.66,easing:e.easing||n.easing,render:function(e,t){var n=z.easing.effects[t.easing],a=t.currentStep,r=a/t.numSteps;e.draw(n(r),r,a)},onAnimationProgress:n.onProgress,onAnimationComplete:i});Q.addAnimation(t,o,a,r)}else t.draw(),i(new K({numSteps:0,chart:t}));return t}},draw:function(e){var t,n,a=this;if(a.clear(),z.isNullOrUndef(e)&&(e=1),a.transition(e),!(a.width<=0||a.height<=0)&&!1!==St.notify(a,"beforeDraw",[e])){for(n=a._layers,t=0;t<n.length&&n[t].z<=0;++t)n[t].draw(a.chartArea);for(a.drawDatasets(e);t<n.length;++t)n[t].draw(a.chartArea);a._drawTooltip(e),St.notify(a,"afterDraw",[e])}},transition:function(e){for(var t=0,n=(this.data.datasets||[]).length;t<n;++t)this.isDatasetVisible(t)&&this.getDatasetMeta(t).controller.transition(e);this.tooltip.transition(e)},_getSortedDatasetMetas:function(e){var t,n,a=[];for(t=0,n=(this.data.datasets||[]).length;t<n;++t)e&&!this.isDatasetVisible(t)||a.push(this.getDatasetMeta(t));return a.sort(qt("order","index")),a},_getSortedVisibleDatasetMetas:function(){return this._getSortedDatasetMetas(!0)},drawDatasets:function(e){var t,n;if(!1!==St.notify(this,"beforeDatasetsDraw",[e])){for(n=(t=this._getSortedVisibleDatasetMetas()).length-1;n>=0;--n)this.drawDataset(t[n],e);St.notify(this,"afterDatasetsDraw",[e])}},drawDataset:function(e,t){var n={meta:e,index:e.index,easingValue:t};!1!==St.notify(this,"beforeDatasetDraw",[n])&&(e.controller.draw(t),St.notify(this,"afterDatasetDraw",[n]))},_drawTooltip:function(e){var t=this.tooltip,n={tooltip:t,easingValue:e};!1!==St.notify(this,"beforeTooltipDraw",[n])&&(t.draw(),St.notify(this,"afterTooltipDraw",[n]))},getElementAtEvent:function(e){return rt.modes.single(this,e)},getElementsAtEvent:function(e){return rt.modes.label(this,e,{intersect:!0})},getElementsAtXAxis:function(e){return rt.modes["x-axis"](this,e,{intersect:!0})},getElementsAtEventForMode:function(e,t,n){var a=rt.modes[t];return"function"==typeof a?a(this,e,n):[]},getDatasetAtEvent:function(e){return rt.modes.dataset(this,e,{intersect:!0})},getDatasetMeta:function(e){var t=this.data.datasets[e];t._meta||(t._meta={});var n=t._meta[this.id];return n||(n=t._meta[this.id]={type:null,data:[],dataset:null,controller:null,hidden:null,xAxisID:null,yAxisID:null,order:t.order||0,index:e}),n},getVisibleDatasetCount:function(){for(var e=0,t=0,n=this.data.datasets.length;t<n;++t)this.isDatasetVisible(t)&&e++;return e},isDatasetVisible:function(e){var t=this.getDatasetMeta(e);return"boolean"==typeof t.hidden?!t.hidden:!this.data.datasets[e].hidden},generateLegend:function(){return this.options.legendCallback(this)},destroyDatasetMeta:function(e){var t=this.id,n=this.data.datasets[e],a=n._meta&&n._meta[t];a&&(a.controller.destroy(),delete n._meta[t])},destroy:function(){var e,t,n=this,a=n.canvas;for(n.stop(),e=0,t=n.data.datasets.length;e<t;++e)n.destroyDatasetMeta(e);a&&(n.unbindEvents(),z.canvas.clear(n),Dt.releaseContext(n.ctx),n.canvas=null,n.ctx=null),St.notify(n,"destroy"),delete Gt.instances[n.id]},toBase64Image:function(){return this.canvas.toDataURL.apply(this.canvas,arguments)},initToolTip:function(){var e=this;e.tooltip=new zt({_chart:e,_chartInstance:e,_data:e.data,_options:e.options.tooltips},e)},bindEvents:function(){var e=this,t=e._listeners={},n=function(){e.eventHandler.apply(e,arguments)};z.each(e.options.events,(function(a){Dt.addEventListener(e,a,n),t[a]=n})),e.options.responsive&&(n=function(){e.resize()},Dt.addEventListener(e,"resize",n),t.resize=n)},unbindEvents:function(){var e=this,t=e._listeners;t&&(delete e._listeners,z.each(t,(function(t,n){Dt.removeEventListener(e,n,t)})))},updateHoverStyle:function(e,t,n){var a,r,i,o=n?"set":"remove";for(r=0,i=e.length;r<i;++r)(a=e[r])&&this.getDatasetMeta(a._datasetIndex).controller[o+"HoverStyle"](a);"dataset"===t&&this.getDatasetMeta(e[0]._datasetIndex).controller["_"+o+"DatasetHoverStyle"]()},eventHandler:function(e){var t=this,n=t.tooltip;if(!1!==St.notify(t,"beforeEvent",[e])){t._bufferedRender=!0,t._bufferedRequest=null;var a=t.handleEvent(e);n&&(a=n._start?n.handleEvent(e):a|n.handleEvent(e)),St.notify(t,"afterEvent",[e]);var r=t._bufferedRequest;return r?t.render(r):a&&!t.animating&&(t.stop(),t.render({duration:t.options.hover.animationDuration,lazy:!0})),t._bufferedRender=!1,t._bufferedRequest=null,t}},handleEvent:function(e){var t,n=this,a=n.options||{},r=a.hover;return n.lastActive=n.lastActive||[],"mouseout"===e.type?n.active=[]:n.active=n.getElementsAtEventForMode(e,r.mode,r),z.callback(a.onHover||a.hover.onHover,[e.native,n.active],n),"mouseup"!==e.type&&"click"!==e.type||a.onClick&&a.onClick.call(n,e.native,n.active),n.lastActive.length&&n.updateHoverStyle(n.lastActive,r.mode,!1),n.active.length&&r.mode&&n.updateHoverStyle(n.active,r.mode,!0),t=!z.arrayEquals(n.active,n.lastActive),n.lastActive=n.active,t}}),Gt.instances={};var Kt=Gt;function Qt(){throw new Error("This method is not implemented: either no adapter can be found or an incomplete integration was provided.")}function Zt(e){this.options=e||{}}Gt.Controller=Gt,Gt.types={},z.configMerge=Bt,z.scaleMerge=Vt,z.extend(Zt.prototype,{formats:Qt,parse:Qt,format:Qt,add:Qt,diff:Qt,startOf:Qt,endOf:Qt,_create:function(e){return e}}),Zt.override=function(e){z.extend(Zt.prototype,e)};var Xt={_date:Zt},en={formatters:{values:function(e){return z.isArray(e)?e:""+e},linear:function(e,t,n){var a=n.length>3?n[2]-n[1]:n[1]-n[0];Math.abs(a)>1&&e!==Math.floor(e)&&(a=e-Math.floor(e));var r=z.log10(Math.abs(a)),i="";if(0!==e)if(Math.max(Math.abs(n[0]),Math.abs(n[n.length-1]))<1e-4){var o=z.log10(Math.abs(e)),s=Math.floor(o)-Math.floor(r);s=Math.max(Math.min(s,20),0),i=e.toExponential(s)}else{var l=-1*Math.floor(r);l=Math.max(Math.min(l,20),0),i=e.toFixed(l)}else i="0";return i},logarithmic:function(e,t,n){var a=e/Math.pow(10,Math.floor(z.log10(e)));return 0===e?"0":1===a||2===a||5===a||0===t||t===n.length-1?e.toExponential():""}}},tn=z.isArray,nn=z.isNullOrUndef,an=z.valueOrDefault,rn=z.valueAtIndexOrDefault;function on(e,t,n){var a,r=e.getTicks().length,i=Math.min(t,r-1),o=e.getPixelForTick(i),s=e._startPixel,l=e._endPixel;if(!(n&&(a=1===r?Math.max(o-s,l-o):0===t?(e.getPixelForTick(1)-o)/2:(o-e.getPixelForTick(i-1))/2,(o+=i<t?a:-a)<s-1e-6||o>l+1e-6)))return o}function sn(e,t,n,a){var r,i,o,s,l,d,u,c,m,f,h,_,p,y=n.length,g=[],M=[],v=[];for(r=0;r<y;++r){if(s=n[r].label,l=n[r].major?t.major:t.minor,e.font=d=l.string,u=a[d]=a[d]||{data:{},gc:[]},c=l.lineHeight,m=f=0,nn(s)||tn(s)){if(tn(s))for(i=0,o=s.length;i<o;++i)h=s[i],nn(h)||tn(h)||(m=z.measureText(e,u.data,u.gc,m,h),f+=c)}else m=z.measureText(e,u.data,u.gc,m,s),f=c;g.push(m),M.push(f),v.push(c/2)}function b(e){return{width:g[e]||0,height:M[e]||0,offset:v[e]||0}}return function(e,t){z.each(e,(function(e){var n,a=e.gc,r=a.length/2;if(r>t){for(n=0;n<r;++n)delete e.data[a[n]];a.splice(0,r)}}))}(a,y),_=g.indexOf(Math.max.apply(null,g)),p=M.indexOf(Math.max.apply(null,M)),{first:b(0),last:b(y-1),widest:b(_),highest:b(p)}}function ln(e){return e.drawTicks?e.tickMarkLength:0}function dn(e){var t,n;return e.display?(t=z.options._parseFont(e),n=z.options.toPadding(e.padding),t.lineHeight+n.height):0}function un(e,t){return z.extend(z.options._parseFont({fontFamily:an(t.fontFamily,e.fontFamily),fontSize:an(t.fontSize,e.fontSize),fontStyle:an(t.fontStyle,e.fontStyle),lineHeight:an(t.lineHeight,e.lineHeight)}),{color:z.options.resolve([t.fontColor,e.fontColor,F.global.defaultFontColor])})}function cn(e){var t=un(e,e.minor);return{minor:t,major:e.major.enabled?un(e,e.major):t}}function mn(e){var t,n,a,r=[];for(n=0,a=e.length;n<a;++n)void 0!==(t=e[n])._index&&r.push(t);return r}function fn(e,t,n,a){var r,i,o,s,l=an(n,0),d=Math.min(an(a,e.length),e.length),u=0;for(t=Math.ceil(t),a&&(t=(r=a-n)/Math.floor(r/t)),s=l;s<0;)u++,s=Math.round(l+u*t);for(i=Math.max(l,0);i<d;i++)o=e[i],i===s?(o._index=i,u++,s=Math.round(l+u*t)):delete o.label}F._set("scale",{display:!0,position:"left",offset:!1,gridLines:{display:!0,color:"rgba(0,0,0,0.1)",lineWidth:1,drawBorder:!0,drawOnChartArea:!0,drawTicks:!0,tickMarkLength:10,zeroLineWidth:1,zeroLineColor:"rgba(0,0,0,0.25)",zeroLineBorderDash:[],zeroLineBorderDashOffset:0,offsetGridLines:!1,borderDash:[],borderDashOffset:0},scaleLabel:{display:!1,labelString:"",padding:{top:4,bottom:4}},ticks:{beginAtZero:!1,minRotation:0,maxRotation:50,mirror:!1,padding:0,reverse:!1,display:!0,autoSkip:!0,autoSkipPadding:0,labelOffset:0,callback:en.formatters.values,minor:{},major:{}}});var hn=q.extend({zeroLineIndex:0,getPadding:function(){return{left:this.paddingLeft||0,top:this.paddingTop||0,right:this.paddingRight||0,bottom:this.paddingBottom||0}},getTicks:function(){return this._ticks},_getLabels:function(){var e=this.chart.data;return this.options.labels||(this.isHorizontal()?e.xLabels:e.yLabels)||e.labels||[]},mergeTicksOptions:function(){},beforeUpdate:function(){z.callback(this.options.beforeUpdate,[this])},update:function(e,t,n){var a,r,i,o,s,l=this,d=l.options.ticks,u=d.sampleSize;if(l.beforeUpdate(),l.maxWidth=e,l.maxHeight=t,l.margins=z.extend({left:0,right:0,top:0,bottom:0},n),l._ticks=null,l.ticks=null,l._labelSizes=null,l._maxLabelLines=0,l.longestLabelWidth=0,l.longestTextCache=l.longestTextCache||{},l._gridLineItems=null,l._labelItems=null,l.beforeSetDimensions(),l.setDimensions(),l.afterSetDimensions(),l.beforeDataLimits(),l.determineDataLimits(),l.afterDataLimits(),l.beforeBuildTicks(),o=l.buildTicks()||[],(!(o=l.afterBuildTicks(o)||o)||!o.length)&&l.ticks)for(o=[],a=0,r=l.ticks.length;a<r;++a)o.push({value:l.ticks[a],major:!1});return l._ticks=o,s=u<o.length,i=l._convertTicksToLabels(s?function(e,t){for(var n=[],a=e.length/t,r=0,i=e.length;r<i;r+=a)n.push(e[Math.floor(r)]);return n}(o,u):o),l._configure(),l.beforeCalculateTickRotation(),l.calculateTickRotation(),l.afterCalculateTickRotation(),l.beforeFit(),l.fit(),l.afterFit(),l._ticksToDraw=d.display&&(d.autoSkip||"auto"===d.source)?l._autoSkip(o):o,s&&(i=l._convertTicksToLabels(l._ticksToDraw)),l.ticks=i,l.afterUpdate(),l.minSize},_configure:function(){var e,t,n=this,a=n.options.ticks.reverse;n.isHorizontal()?(e=n.left,t=n.right):(e=n.top,t=n.bottom,a=!a),n._startPixel=e,n._endPixel=t,n._reversePixels=a,n._length=t-e},afterUpdate:function(){z.callback(this.options.afterUpdate,[this])},beforeSetDimensions:function(){z.callback(this.options.beforeSetDimensions,[this])},setDimensions:function(){var e=this;e.isHorizontal()?(e.width=e.maxWidth,e.left=0,e.right=e.width):(e.height=e.maxHeight,e.top=0,e.bottom=e.height),e.paddingLeft=0,e.paddingTop=0,e.paddingRight=0,e.paddingBottom=0},afterSetDimensions:function(){z.callback(this.options.afterSetDimensions,[this])},beforeDataLimits:function(){z.callback(this.options.beforeDataLimits,[this])},determineDataLimits:z.noop,afterDataLimits:function(){z.callback(this.options.afterDataLimits,[this])},beforeBuildTicks:function(){z.callback(this.options.beforeBuildTicks,[this])},buildTicks:z.noop,afterBuildTicks:function(e){var t=this;return tn(e)&&e.length?z.callback(t.options.afterBuildTicks,[t,e]):(t.ticks=z.callback(t.options.afterBuildTicks,[t,t.ticks])||t.ticks,e)},beforeTickToLabelConversion:function(){z.callback(this.options.beforeTickToLabelConversion,[this])},convertTicksToLabels:function(){var e=this.options.ticks;this.ticks=this.ticks.map(e.userCallback||e.callback,this)},afterTickToLabelConversion:function(){z.callback(this.options.afterTickToLabelConversion,[this])},beforeCalculateTickRotation:function(){z.callback(this.options.beforeCalculateTickRotation,[this])},calculateTickRotation:function(){var e,t,n,a,r,i,o,s=this,l=s.options,d=l.ticks,u=s.getTicks().length,c=d.minRotation||0,m=d.maxRotation,f=c;!s._isVisible()||!d.display||c>=m||u<=1||!s.isHorizontal()?s.labelRotation=c:(t=(e=s._getLabelSizes()).widest.width,n=e.highest.height-e.highest.offset,a=Math.min(s.maxWidth,s.chart.width-t),t+6>(r=l.offset?s.maxWidth/u:a/(u-1))&&(r=a/(u-(l.offset?.5:1)),i=s.maxHeight-ln(l.gridLines)-d.padding-dn(l.scaleLabel),o=Math.sqrt(t*t+n*n),f=z.toDegrees(Math.min(Math.asin(Math.min((e.highest.height+6)/r,1)),Math.asin(Math.min(i/o,1))-Math.asin(n/o))),f=Math.max(c,Math.min(m,f))),s.labelRotation=f)},afterCalculateTickRotation:function(){z.callback(this.options.afterCalculateTickRotation,[this])},beforeFit:function(){z.callback(this.options.beforeFit,[this])},fit:function(){var e=this,t=e.minSize={width:0,height:0},n=e.chart,a=e.options,r=a.ticks,i=a.scaleLabel,o=a.gridLines,s=e._isVisible(),l="bottom"===a.position,d=e.isHorizontal();if(d?t.width=e.maxWidth:s&&(t.width=ln(o)+dn(i)),d?s&&(t.height=ln(o)+dn(i)):t.height=e.maxHeight,r.display&&s){var u=cn(r),c=e._getLabelSizes(),m=c.first,f=c.last,h=c.widest,_=c.highest,p=.4*u.minor.lineHeight,y=r.padding;if(d){var g=0!==e.labelRotation,M=z.toRadians(e.labelRotation),v=Math.cos(M),b=Math.sin(M),L=b*h.width+v*(_.height-(g?_.offset:0))+(g?0:p);t.height=Math.min(e.maxHeight,t.height+L+y);var k,w,x=e.getPixelForTick(0)-e.left,T=e.right-e.getPixelForTick(e.getTicks().length-1);g?(k=l?v*m.width+b*m.offset:b*(m.height-m.offset),w=l?b*(f.height-f.offset):v*f.width+b*f.offset):(k=m.width/2,w=f.width/2),e.paddingLeft=Math.max((k-x)*e.width/(e.width-x),0)+3,e.paddingRight=Math.max((w-T)*e.width/(e.width-T),0)+3}else{var Y=r.mirror?0:h.width+y+p;t.width=Math.min(e.maxWidth,t.width+Y),e.paddingTop=m.height/2,e.paddingBottom=f.height/2}}e.handleMargins(),d?(e.width=e._length=n.width-e.margins.left-e.margins.right,e.height=t.height):(e.width=t.width,e.height=e._length=n.height-e.margins.top-e.margins.bottom)},handleMargins:function(){var e=this;e.margins&&(e.margins.left=Math.max(e.paddingLeft,e.margins.left),e.margins.top=Math.max(e.paddingTop,e.margins.top),e.margins.right=Math.max(e.paddingRight,e.margins.right),e.margins.bottom=Math.max(e.paddingBottom,e.margins.bottom))},afterFit:function(){z.callback(this.options.afterFit,[this])},isHorizontal:function(){var e=this.options.position;return"top"===e||"bottom"===e},isFullWidth:function(){return this.options.fullWidth},getRightValue:function(e){if(nn(e))return NaN;if(("number"==typeof e||e instanceof Number)&&!isFinite(e))return NaN;if(e)if(this.isHorizontal()){if(void 0!==e.x)return this.getRightValue(e.x)}else if(void 0!==e.y)return this.getRightValue(e.y);return e},_convertTicksToLabels:function(e){var t,n,a,r=this;for(r.ticks=e.map((function(e){return e.value})),r.beforeTickToLabelConversion(),t=r.convertTicksToLabels(e)||r.ticks,r.afterTickToLabelConversion(),n=0,a=e.length;n<a;++n)e[n].label=t[n];return t},_getLabelSizes:function(){var e=this,t=e._labelSizes;return t||(e._labelSizes=t=sn(e.ctx,cn(e.options.ticks),e.getTicks(),e.longestTextCache),e.longestLabelWidth=t.widest.width),t},_parseValue:function(e){var t,n,a,r;return tn(e)?(t=+this.getRightValue(e[0]),n=+this.getRightValue(e[1]),a=Math.min(t,n),r=Math.max(t,n)):(t=void 0,n=e=+this.getRightValue(e),a=e,r=e),{min:a,max:r,start:t,end:n}},_getScaleLabel:function(e){var t=this._parseValue(e);return void 0!==t.start?"["+t.start+", "+t.end+"]":+this.getRightValue(e)},getLabelForIndex:z.noop,getPixelForValue:z.noop,getValueForPixel:z.noop,getPixelForTick:function(e){var t=this.options.offset,n=this._ticks.length,a=1/Math.max(n-(t?0:1),1);return e<0||e>n-1?null:this.getPixelForDecimal(e*a+(t?a/2:0))},getPixelForDecimal:function(e){return this._reversePixels&&(e=1-e),this._startPixel+e*this._length},getDecimalForPixel:function(e){var t=(e-this._startPixel)/this._length;return this._reversePixels?1-t:t},getBasePixel:function(){return this.getPixelForValue(this.getBaseValue())},getBaseValue:function(){var e=this.min,t=this.max;return this.beginAtZero?0:e<0&&t<0?t:e>0&&t>0?e:0},_autoSkip:function(e){var t,n,a,r,i=this.options.ticks,o=this._length,s=i.maxTicksLimit||o/this._tickSize()+1,l=i.major.enabled?function(e){var t,n,a=[];for(t=0,n=e.length;t<n;t++)e[t].major&&a.push(t);return a}(e):[],d=l.length,u=l[0],c=l[d-1];if(d>s)return function(e,t,n){var a,r,i=0,o=t[0];for(n=Math.ceil(n),a=0;a<e.length;a++)r=e[a],a===o?(r._index=a,o=t[++i*n]):delete r.label}(e,l,d/s),mn(e);if(a=function(e,t,n,a){var r,i,o,s,l=function(e){var t,n,a=e.length;if(a<2)return!1;for(n=e[0],t=1;t<a;++t)if(e[t]-e[t-1]!==n)return!1;return n}(e),d=(t.length-1)/a;if(!l)return Math.max(d,1);for(o=0,s=(r=z.math._factorize(l)).length-1;o<s;o++)if((i=r[o])>d)return i;return Math.max(d,1)}(l,e,0,s),d>0){for(t=0,n=d-1;t<n;t++)fn(e,a,l[t],l[t+1]);return r=d>1?(c-u)/(d-1):null,fn(e,a,z.isNullOrUndef(r)?0:u-r,u),fn(e,a,c,z.isNullOrUndef(r)?e.length:c+r),mn(e)}return fn(e,a),mn(e)},_tickSize:function(){var e=this.options.ticks,t=z.toRadians(this.labelRotation),n=Math.abs(Math.cos(t)),a=Math.abs(Math.sin(t)),r=this._getLabelSizes(),i=e.autoSkipPadding||0,o=r?r.widest.width+i:0,s=r?r.highest.height+i:0;return this.isHorizontal()?s*n>o*a?o/n:s/a:s*a<o*n?s/n:o/a},_isVisible:function(){var e,t,n,a=this.chart,r=this.options.display;if("auto"!==r)return!!r;for(e=0,t=a.data.datasets.length;e<t;++e)if(a.isDatasetVisible(e)&&((n=a.getDatasetMeta(e)).xAxisID===this.id||n.yAxisID===this.id))return!0;return!1},_computeGridLineItems:function(e){var t,n,a,r,i,o,s,l,d,u,c,m,f,h,_,p,y,g=this,M=g.chart,v=g.options,b=v.gridLines,L=v.position,k=b.offsetGridLines,w=g.isHorizontal(),x=g._ticksToDraw,T=x.length+(k?1:0),Y=ln(b),D=[],S=b.drawBorder?rn(b.lineWidth,0,0):0,E=S/2,P=z._alignPixel,H=function(e){return P(M,e,S)};for("top"===L?(t=H(g.bottom),s=g.bottom-Y,d=t-E,c=H(e.top)+E,f=e.bottom):"bottom"===L?(t=H(g.top),c=e.top,f=H(e.bottom)-E,s=t+E,d=g.top+Y):"left"===L?(t=H(g.right),o=g.right-Y,l=t-E,u=H(e.left)+E,m=e.right):(t=H(g.left),u=e.left,m=H(e.right)-E,o=t+E,l=g.left+Y),n=0;n<T;++n)a=x[n]||{},nn(a.label)&&n<x.length||(n===g.zeroLineIndex&&v.offset===k?(h=b.zeroLineWidth,_=b.zeroLineColor,p=b.zeroLineBorderDash||[],y=b.zeroLineBorderDashOffset||0):(h=rn(b.lineWidth,n,1),_=rn(b.color,n,"rgba(0,0,0,0.1)"),p=b.borderDash||[],y=b.borderDashOffset||0),void 0!==(r=on(g,a._index||n,k))&&(i=P(M,r,h),w?o=l=u=m=i:s=d=c=f=i,D.push({tx1:o,ty1:s,tx2:l,ty2:d,x1:u,y1:c,x2:m,y2:f,width:h,color:_,borderDash:p,borderDashOffset:y})));return D.ticksLength=T,D.borderValue=t,D},_computeLabelItems:function(){var e,t,n,a,r,i,o,s,l,d,u,c,m=this,f=m.options,h=f.ticks,_=f.position,p=h.mirror,y=m.isHorizontal(),g=m._ticksToDraw,M=cn(h),v=h.padding,b=ln(f.gridLines),L=-z.toRadians(m.labelRotation),k=[];for("top"===_?(i=m.bottom-b-v,o=L?"left":"center"):"bottom"===_?(i=m.top+b+v,o=L?"right":"center"):"left"===_?(r=m.right-(p?0:b)-v,o=p?"left":"right"):(r=m.left+(p?0:b)+v,o=p?"right":"left"),e=0,t=g.length;e<t;++e)a=(n=g[e]).label,nn(a)||(s=m.getPixelForTick(n._index||e)+h.labelOffset,d=(l=n.major?M.major:M.minor).lineHeight,u=tn(a)?a.length:1,y?(r=s,c="top"===_?((L?1:.5)-u)*d:(L?0:.5)*d):(i=s,c=(1-u)*d/2),k.push({x:r,y:i,rotation:L,label:a,font:l,textOffset:c,textAlign:o}));return k},_drawGrid:function(e){var t=this,n=t.options.gridLines;if(n.display){var a,r,i,o,s,l=t.ctx,d=t.chart,u=z._alignPixel,c=n.drawBorder?rn(n.lineWidth,0,0):0,m=t._gridLineItems||(t._gridLineItems=t._computeGridLineItems(e));for(i=0,o=m.length;i<o;++i)a=(s=m[i]).width,r=s.color,a&&r&&(l.save(),l.lineWidth=a,l.strokeStyle=r,l.setLineDash&&(l.setLineDash(s.borderDash),l.lineDashOffset=s.borderDashOffset),l.beginPath(),n.drawTicks&&(l.moveTo(s.tx1,s.ty1),l.lineTo(s.tx2,s.ty2)),n.drawOnChartArea&&(l.moveTo(s.x1,s.y1),l.lineTo(s.x2,s.y2)),l.stroke(),l.restore());if(c){var f,h,_,p,y=c,g=rn(n.lineWidth,m.ticksLength-1,1),M=m.borderValue;t.isHorizontal()?(f=u(d,t.left,y)-y/2,h=u(d,t.right,g)+g/2,_=p=M):(_=u(d,t.top,y)-y/2,p=u(d,t.bottom,g)+g/2,f=h=M),l.lineWidth=c,l.strokeStyle=rn(n.color,0),l.beginPath(),l.moveTo(f,_),l.lineTo(h,p),l.stroke()}}},_drawLabels:function(){var e=this;if(e.options.ticks.display){var t,n,a,r,i,o,s,l,d=e.ctx,u=e._labelItems||(e._labelItems=e._computeLabelItems());for(t=0,a=u.length;t<a;++t){if(o=(i=u[t]).font,d.save(),d.translate(i.x,i.y),d.rotate(i.rotation),d.font=o.string,d.fillStyle=o.color,d.textBaseline="middle",d.textAlign=i.textAlign,s=i.label,l=i.textOffset,tn(s))for(n=0,r=s.length;n<r;++n)d.fillText(""+s[n],0,l),l+=o.lineHeight;else d.fillText(s,0,l);d.restore()}}},_drawTitle:function(){var e=this,t=e.ctx,n=e.options,a=n.scaleLabel;if(a.display){var r,i,o=an(a.fontColor,F.global.defaultFontColor),s=z.options._parseFont(a),l=z.options.toPadding(a.padding),d=s.lineHeight/2,u=n.position,c=0;if(e.isHorizontal())r=e.left+e.width/2,i="bottom"===u?e.bottom-d-l.bottom:e.top+d+l.top;else{var m="left"===u;r=m?e.left+d+l.top:e.right-d-l.top,i=e.top+e.height/2,c=m?-.5*Math.PI:.5*Math.PI}t.save(),t.translate(r,i),t.rotate(c),t.textAlign="center",t.textBaseline="middle",t.fillStyle=o,t.font=s.string,t.fillText(a.labelString,0,0),t.restore()}},draw:function(e){this._isVisible()&&(this._drawGrid(e),this._drawTitle(),this._drawLabels())},_layers:function(){var e=this,t=e.options,n=t.ticks&&t.ticks.z||0,a=t.gridLines&&t.gridLines.z||0;return e._isVisible()&&n!==a&&e.draw===e._draw?[{z:a,draw:function(){e._drawGrid.apply(e,arguments),e._drawTitle.apply(e,arguments)}},{z:n,draw:function(){e._drawLabels.apply(e,arguments)}}]:[{z:n,draw:function(){e.draw.apply(e,arguments)}}]},_getMatchingVisibleMetas:function(e){var t=this,n=t.isHorizontal();return t.chart._getSortedVisibleDatasetMetas().filter((function(a){return(!e||a.type===e)&&(n?a.xAxisID===t.id:a.yAxisID===t.id)}))}});hn.prototype._draw=hn.prototype.draw;var _n=hn,pn=z.isNullOrUndef,yn=_n.extend({determineDataLimits:function(){var e,t=this,n=t._getLabels(),a=t.options.ticks,r=a.min,i=a.max,o=0,s=n.length-1;void 0!==r&&(e=n.indexOf(r))>=0&&(o=e),void 0!==i&&(e=n.indexOf(i))>=0&&(s=e),t.minIndex=o,t.maxIndex=s,t.min=n[o],t.max=n[s]},buildTicks:function(){var e=this._getLabels(),t=this.minIndex,n=this.maxIndex;this.ticks=0===t&&n===e.length-1?e:e.slice(t,n+1)},getLabelForIndex:function(e,t){var n=this.chart;return n.getDatasetMeta(t).controller._getValueScaleId()===this.id?this.getRightValue(n.data.datasets[t].data[e]):this._getLabels()[e]},_configure:function(){var e=this,t=e.options.offset,n=e.ticks;_n.prototype._configure.call(e),e.isHorizontal()||(e._reversePixels=!e._reversePixels),n&&(e._startValue=e.minIndex-(t?.5:0),e._valueRange=Math.max(n.length-(t?0:1),1))},getPixelForValue:function(e,t,n){var a,r,i,o=this;return pn(t)||pn(n)||(e=o.chart.data.datasets[n].data[t]),pn(e)||(a=o.isHorizontal()?e.x:e.y),(void 0!==a||void 0!==e&&isNaN(t))&&(r=o._getLabels(),e=z.valueOrDefault(a,e),t=-1!==(i=r.indexOf(e))?i:t,isNaN(t)&&(t=e)),o.getPixelForDecimal((t-o._startValue)/o._valueRange)},getPixelForTick:function(e){var t=this.ticks;return e<0||e>t.length-1?null:this.getPixelForValue(t[e],e+this.minIndex)},getValueForPixel:function(e){var t=Math.round(this._startValue+this.getDecimalForPixel(e)*this._valueRange);return Math.min(Math.max(t,0),this.ticks.length-1)},getBasePixel:function(){return this.bottom}}),gn={position:"bottom"};yn._defaults=gn;var Mn=z.noop,vn=z.isNullOrUndef,bn=_n.extend({getRightValue:function(e){return"string"==typeof e?+e:_n.prototype.getRightValue.call(this,e)},handleTickRangeOptions:function(){var e=this,t=e.options.ticks;if(t.beginAtZero){var n=z.sign(e.min),a=z.sign(e.max);n<0&&a<0?e.max=0:n>0&&a>0&&(e.min=0)}var r=void 0!==t.min||void 0!==t.suggestedMin,i=void 0!==t.max||void 0!==t.suggestedMax;void 0!==t.min?e.min=t.min:void 0!==t.suggestedMin&&(null===e.min?e.min=t.suggestedMin:e.min=Math.min(e.min,t.suggestedMin)),void 0!==t.max?e.max=t.max:void 0!==t.suggestedMax&&(null===e.max?e.max=t.suggestedMax:e.max=Math.max(e.max,t.suggestedMax)),r!==i&&e.min>=e.max&&(r?e.max=e.min+1:e.min=e.max-1),e.min===e.max&&(e.max++,t.beginAtZero||e.min--)},getTickLimit:function(){var e,t=this.options.ticks,n=t.stepSize,a=t.maxTicksLimit;return n?e=Math.ceil(this.max/n)-Math.floor(this.min/n)+1:(e=this._computeTickLimit(),a=a||11),a&&(e=Math.min(a,e)),e},_computeTickLimit:function(){return Number.POSITIVE_INFINITY},handleDirectionalChanges:Mn,buildTicks:function(){var e=this,t=e.options.ticks,n=e.getTickLimit(),a={maxTicks:n=Math.max(2,n),min:t.min,max:t.max,precision:t.precision,stepSize:z.valueOrDefault(t.fixedStepSize,t.stepSize)},r=e.ticks=function(e,t){var n,a,r,i,o=[],s=e.stepSize,l=s||1,d=e.maxTicks-1,u=e.min,c=e.max,m=e.precision,f=t.min,h=t.max,_=z.niceNum((h-f)/d/l)*l;if(_<1e-14&&vn(u)&&vn(c))return[f,h];(i=Math.ceil(h/_)-Math.floor(f/_))>d&&(_=z.niceNum(i*_/d/l)*l),s||vn(m)?n=Math.pow(10,z._decimalPlaces(_)):(n=Math.pow(10,m),_=Math.ceil(_*n)/n),a=Math.floor(f/_)*_,r=Math.ceil(h/_)*_,s&&(!vn(u)&&z.almostWhole(u/_,_/1e3)&&(a=u),!vn(c)&&z.almostWhole(c/_,_/1e3)&&(r=c)),i=(r-a)/_,i=z.almostEquals(i,Math.round(i),_/1e3)?Math.round(i):Math.ceil(i),a=Math.round(a*n)/n,r=Math.round(r*n)/n,o.push(vn(u)?a:u);for(var p=1;p<i;++p)o.push(Math.round((a+p*_)*n)/n);return o.push(vn(c)?r:c),o}(a,e);e.handleDirectionalChanges(),e.max=z.max(r),e.min=z.min(r),t.reverse?(r.reverse(),e.start=e.max,e.end=e.min):(e.start=e.min,e.end=e.max)},convertTicksToLabels:function(){var e=this;e.ticksAsNumbers=e.ticks.slice(),e.zeroLineIndex=e.ticks.indexOf(0),_n.prototype.convertTicksToLabels.call(e)},_configure:function(){var e,t=this,n=t.getTicks(),a=t.min,r=t.max;_n.prototype._configure.call(t),t.options.offset&&n.length&&(a-=e=(r-a)/Math.max(n.length-1,1)/2,r+=e),t._startValue=a,t._endValue=r,t._valueRange=r-a}}),Ln={position:"left",ticks:{callback:en.formatters.linear}};function kn(e,t,n,a){var r,i,o=e.options,s=function(e,t,n){var a=[n.type,void 0===t&&void 0===n.stack?n.index:"",n.stack].join(".");return void 0===e[a]&&(e[a]={pos:[],neg:[]}),e[a]}(t,o.stacked,n),l=s.pos,d=s.neg,u=a.length;for(r=0;r<u;++r)i=e._parseValue(a[r]),isNaN(i.min)||isNaN(i.max)||n.data[r].hidden||(l[r]=l[r]||0,d[r]=d[r]||0,o.relativePoints?l[r]=100:i.min<0||i.max<0?d[r]+=i.min:l[r]+=i.max)}function wn(e,t,n){var a,r,i=n.length;for(a=0;a<i;++a)r=e._parseValue(n[a]),isNaN(r.min)||isNaN(r.max)||t.data[a].hidden||(e.min=Math.min(e.min,r.min),e.max=Math.max(e.max,r.max))}var xn=bn.extend({determineDataLimits:function(){var e,t,n,a,r=this,i=r.options,o=r.chart.data.datasets,s=r._getMatchingVisibleMetas(),l=i.stacked,d={},u=s.length;if(r.min=Number.POSITIVE_INFINITY,r.max=Number.NEGATIVE_INFINITY,void 0===l)for(e=0;!l&&e<u;++e)l=void 0!==(t=s[e]).stack;for(e=0;e<u;++e)n=o[(t=s[e]).index].data,l?kn(r,d,t,n):wn(r,t,n);z.each(d,(function(e){a=e.pos.concat(e.neg),r.min=Math.min(r.min,z.min(a)),r.max=Math.max(r.max,z.max(a))})),r.min=z.isFinite(r.min)&&!isNaN(r.min)?r.min:0,r.max=z.isFinite(r.max)&&!isNaN(r.max)?r.max:1,r.handleTickRangeOptions()},_computeTickLimit:function(){var e;return this.isHorizontal()?Math.ceil(this.width/40):(e=z.options._parseFont(this.options.ticks),Math.ceil(this.height/e.lineHeight))},handleDirectionalChanges:function(){this.isHorizontal()||this.ticks.reverse()},getLabelForIndex:function(e,t){return this._getScaleLabel(this.chart.data.datasets[t].data[e])},getPixelForValue:function(e){return this.getPixelForDecimal((+this.getRightValue(e)-this._startValue)/this._valueRange)},getValueForPixel:function(e){return this._startValue+this.getDecimalForPixel(e)*this._valueRange},getPixelForTick:function(e){var t=this.ticksAsNumbers;return e<0||e>t.length-1?null:this.getPixelForValue(t[e])}}),Tn=Ln;xn._defaults=Tn;var Yn=z.valueOrDefault,Dn=z.math.log10,Sn={position:"left",ticks:{callback:en.formatters.logarithmic}};function En(e,t){return z.isFinite(e)&&e>=0?e:t}var Pn=_n.extend({determineDataLimits:function(){var e,t,n,a,r,i,o=this,s=o.options,l=o.chart,d=l.data.datasets,u=o.isHorizontal();function c(e){return u?e.xAxisID===o.id:e.yAxisID===o.id}o.min=Number.POSITIVE_INFINITY,o.max=Number.NEGATIVE_INFINITY,o.minNotZero=Number.POSITIVE_INFINITY;var m=s.stacked;if(void 0===m)for(e=0;e<d.length;e++)if(t=l.getDatasetMeta(e),l.isDatasetVisible(e)&&c(t)&&void 0!==t.stack){m=!0;break}if(s.stacked||m){var f={};for(e=0;e<d.length;e++){var h=[(t=l.getDatasetMeta(e)).type,void 0===s.stacked&&void 0===t.stack?e:"",t.stack].join(".");if(l.isDatasetVisible(e)&&c(t))for(void 0===f[h]&&(f[h]=[]),r=0,i=(a=d[e].data).length;r<i;r++){var _=f[h];n=o._parseValue(a[r]),isNaN(n.min)||isNaN(n.max)||t.data[r].hidden||n.min<0||n.max<0||(_[r]=_[r]||0,_[r]+=n.max)}}z.each(f,(function(e){if(e.length>0){var t=z.min(e),n=z.max(e);o.min=Math.min(o.min,t),o.max=Math.max(o.max,n)}}))}else for(e=0;e<d.length;e++)if(t=l.getDatasetMeta(e),l.isDatasetVisible(e)&&c(t))for(r=0,i=(a=d[e].data).length;r<i;r++)n=o._parseValue(a[r]),isNaN(n.min)||isNaN(n.max)||t.data[r].hidden||n.min<0||n.max<0||(o.min=Math.min(n.min,o.min),o.max=Math.max(n.max,o.max),0!==n.min&&(o.minNotZero=Math.min(n.min,o.minNotZero)));o.min=z.isFinite(o.min)?o.min:null,o.max=z.isFinite(o.max)?o.max:null,o.minNotZero=z.isFinite(o.minNotZero)?o.minNotZero:null,this.handleTickRangeOptions()},handleTickRangeOptions:function(){var e=this,t=e.options.ticks;e.min=En(t.min,e.min),e.max=En(t.max,e.max),e.min===e.max&&(0!==e.min&&null!==e.min?(e.min=Math.pow(10,Math.floor(Dn(e.min))-1),e.max=Math.pow(10,Math.floor(Dn(e.max))+1)):(e.min=1,e.max=10)),null===e.min&&(e.min=Math.pow(10,Math.floor(Dn(e.max))-1)),null===e.max&&(e.max=0!==e.min?Math.pow(10,Math.floor(Dn(e.min))+1):10),null===e.minNotZero&&(e.min>0?e.minNotZero=e.min:e.max<1?e.minNotZero=Math.pow(10,Math.floor(Dn(e.max))):e.minNotZero=1)},buildTicks:function(){var e=this,t=e.options.ticks,n=!e.isHorizontal(),a={min:En(t.min),max:En(t.max)},r=e.ticks=function(e,t){var n,a,r=[],i=Yn(e.min,Math.pow(10,Math.floor(Dn(t.min)))),o=Math.floor(Dn(t.max)),s=Math.ceil(t.max/Math.pow(10,o));0===i?(n=Math.floor(Dn(t.minNotZero)),a=Math.floor(t.minNotZero/Math.pow(10,n)),r.push(i),i=a*Math.pow(10,n)):(n=Math.floor(Dn(i)),a=Math.floor(i/Math.pow(10,n)));var l=n<0?Math.pow(10,Math.abs(n)):1;do{r.push(i),10==++a&&(a=1,l=++n>=0?1:l),i=Math.round(a*Math.pow(10,n)*l)/l}while(n<o||n===o&&a<s);var d=Yn(e.max,i);return r.push(d),r}(a,e);e.max=z.max(r),e.min=z.min(r),t.reverse?(n=!n,e.start=e.max,e.end=e.min):(e.start=e.min,e.end=e.max),n&&r.reverse()},convertTicksToLabels:function(){this.tickValues=this.ticks.slice(),_n.prototype.convertTicksToLabels.call(this)},getLabelForIndex:function(e,t){return this._getScaleLabel(this.chart.data.datasets[t].data[e])},getPixelForTick:function(e){var t=this.tickValues;return e<0||e>t.length-1?null:this.getPixelForValue(t[e])},_getFirstTickValue:function(e){var t=Math.floor(Dn(e));return Math.floor(e/Math.pow(10,t))*Math.pow(10,t)},_configure:function(){var e=this,t=e.min,n=0;_n.prototype._configure.call(e),0===t&&(t=e._getFirstTickValue(e.minNotZero),n=Yn(e.options.ticks.fontSize,F.global.defaultFontSize)/e._length),e._startValue=Dn(t),e._valueOffset=n,e._valueRange=(Dn(e.max)-Dn(t))/(1-n)},getPixelForValue:function(e){var t=this,n=0;return(e=+t.getRightValue(e))>t.min&&e>0&&(n=(Dn(e)-t._startValue)/t._valueRange+t._valueOffset),t.getPixelForDecimal(n)},getValueForPixel:function(e){var t=this,n=t.getDecimalForPixel(e);return 0===n&&0===t.min?0:Math.pow(10,t._startValue+(n-t._valueOffset)*t._valueRange)}}),Hn=Sn;Pn._defaults=Hn;var jn=z.valueOrDefault,Cn=z.valueAtIndexOrDefault,On=z.options.resolve,Fn={display:!0,animate:!0,position:"chartArea",angleLines:{display:!0,color:"rgba(0,0,0,0.1)",lineWidth:1,borderDash:[],borderDashOffset:0},gridLines:{circular:!1},ticks:{showLabelBackdrop:!0,backdropColor:"rgba(255,255,255,0.75)",backdropPaddingY:2,backdropPaddingX:2,callback:en.formatters.linear},pointLabels:{display:!0,fontSize:10,callback:function(e){return e}}};function An(e){var t=e.ticks;return t.display&&e.display?jn(t.fontSize,F.global.defaultFontSize)+2*t.backdropPaddingY:0}function Rn(e,t,n,a,r){return e===a||e===r?{start:t-n/2,end:t+n/2}:e<a||e>r?{start:t-n,end:t}:{start:t,end:t+n}}function Wn(e){return 0===e||180===e?"center":e<180?"left":"right"}function In(e,t,n,a){var r,i,o=n.y+a/2;if(z.isArray(t))for(r=0,i=t.length;r<i;++r)e.fillText(t[r],n.x,o),o+=a;else e.fillText(t,n.x,o)}function zn(e,t,n){90===e||270===e?n.y-=t.h/2:(e>270||e<90)&&(n.y-=t.h)}function Nn(e){return z.isNumber(e)?e:0}var Vn=bn.extend({setDimensions:function(){var e=this;e.width=e.maxWidth,e.height=e.maxHeight,e.paddingTop=An(e.options)/2,e.xCenter=Math.floor(e.width/2),e.yCenter=Math.floor((e.height-e.paddingTop)/2),e.drawingArea=Math.min(e.height-e.paddingTop,e.width)/2},determineDataLimits:function(){var e=this,t=e.chart,n=Number.POSITIVE_INFINITY,a=Number.NEGATIVE_INFINITY;z.each(t.data.datasets,(function(r,i){if(t.isDatasetVisible(i)){var o=t.getDatasetMeta(i);z.each(r.data,(function(t,r){var i=+e.getRightValue(t);isNaN(i)||o.data[r].hidden||(n=Math.min(i,n),a=Math.max(i,a))}))}})),e.min=n===Number.POSITIVE_INFINITY?0:n,e.max=a===Number.NEGATIVE_INFINITY?0:a,e.handleTickRangeOptions()},_computeTickLimit:function(){return Math.ceil(this.drawingArea/An(this.options))},convertTicksToLabels:function(){var e=this;bn.prototype.convertTicksToLabels.call(e),e.pointLabels=e.chart.data.labels.map((function(){var t=z.callback(e.options.pointLabels.callback,arguments,e);return t||0===t?t:""}))},getLabelForIndex:function(e,t){return+this.getRightValue(this.chart.data.datasets[t].data[e])},fit:function(){var e=this.options;e.display&&e.pointLabels.display?function(e){var t,n,a,r=z.options._parseFont(e.options.pointLabels),i={l:0,r:e.width,t:0,b:e.height-e.paddingTop},o={};e.ctx.font=r.string,e._pointLabelSizes=[];var s,l,d,u=e.chart.data.labels.length;for(t=0;t<u;t++){a=e.getPointPosition(t,e.drawingArea+5),s=e.ctx,l=r.lineHeight,d=e.pointLabels[t],n=z.isArray(d)?{w:z.longestText(s,s.font,d),h:d.length*l}:{w:s.measureText(d).width,h:l},e._pointLabelSizes[t]=n;var c=e.getIndexAngle(t),m=z.toDegrees(c)%360,f=Rn(m,a.x,n.w,0,180),h=Rn(m,a.y,n.h,90,270);f.start<i.l&&(i.l=f.start,o.l=c),f.end>i.r&&(i.r=f.end,o.r=c),h.start<i.t&&(i.t=h.start,o.t=c),h.end>i.b&&(i.b=h.end,o.b=c)}e.setReductions(e.drawingArea,i,o)}(this):this.setCenterPoint(0,0,0,0)},setReductions:function(e,t,n){var a=this,r=t.l/Math.sin(n.l),i=Math.max(t.r-a.width,0)/Math.sin(n.r),o=-t.t/Math.cos(n.t),s=-Math.max(t.b-(a.height-a.paddingTop),0)/Math.cos(n.b);r=Nn(r),i=Nn(i),o=Nn(o),s=Nn(s),a.drawingArea=Math.min(Math.floor(e-(r+i)/2),Math.floor(e-(o+s)/2)),a.setCenterPoint(r,i,o,s)},setCenterPoint:function(e,t,n,a){var r=this,i=r.width-t-r.drawingArea,o=e+r.drawingArea,s=n+r.drawingArea,l=r.height-r.paddingTop-a-r.drawingArea;r.xCenter=Math.floor((o+i)/2+r.left),r.yCenter=Math.floor((s+l)/2+r.top+r.paddingTop)},getIndexAngle:function(e){var t=this.chart,n=(e*(360/t.data.labels.length)+((t.options||{}).startAngle||0))%360;return(n<0?n+360:n)*Math.PI*2/360},getDistanceFromCenterForValue:function(e){var t=this;if(z.isNullOrUndef(e))return NaN;var n=t.drawingArea/(t.max-t.min);return t.options.ticks.reverse?(t.max-e)*n:(e-t.min)*n},getPointPosition:function(e,t){var n=this.getIndexAngle(e)-Math.PI/2;return{x:Math.cos(n)*t+this.xCenter,y:Math.sin(n)*t+this.yCenter}},getPointPositionForValue:function(e,t){return this.getPointPosition(e,this.getDistanceFromCenterForValue(t))},getBasePosition:function(e){var t=this.min,n=this.max;return this.getPointPositionForValue(e||0,this.beginAtZero?0:t<0&&n<0?n:t>0&&n>0?t:0)},_drawGrid:function(){var e,t,n,a=this,r=a.ctx,i=a.options,o=i.gridLines,s=i.angleLines,l=jn(s.lineWidth,o.lineWidth),d=jn(s.color,o.color);if(i.pointLabels.display&&function(e){var t=e.ctx,n=e.options,a=n.pointLabels,r=An(n),i=e.getDistanceFromCenterForValue(n.ticks.reverse?e.min:e.max),o=z.options._parseFont(a);t.save(),t.font=o.string,t.textBaseline="middle";for(var s=e.chart.data.labels.length-1;s>=0;s--){var l=0===s?r/2:0,d=e.getPointPosition(s,i+l+5),u=Cn(a.fontColor,s,F.global.defaultFontColor);t.fillStyle=u;var c=e.getIndexAngle(s),m=z.toDegrees(c);t.textAlign=Wn(m),zn(m,e._pointLabelSizes[s],d),In(t,e.pointLabels[s],d,o.lineHeight)}t.restore()}(a),o.display&&z.each(a.ticks,(function(e,n){0!==n&&(t=a.getDistanceFromCenterForValue(a.ticksAsNumbers[n]),function(e,t,n,a){var r,i=e.ctx,o=t.circular,s=e.chart.data.labels.length,l=Cn(t.color,a-1),d=Cn(t.lineWidth,a-1);if((o||s)&&l&&d){if(i.save(),i.strokeStyle=l,i.lineWidth=d,i.setLineDash&&(i.setLineDash(t.borderDash||[]),i.lineDashOffset=t.borderDashOffset||0),i.beginPath(),o)i.arc(e.xCenter,e.yCenter,n,0,2*Math.PI);else{r=e.getPointPosition(0,n),i.moveTo(r.x,r.y);for(var u=1;u<s;u++)r=e.getPointPosition(u,n),i.lineTo(r.x,r.y)}i.closePath(),i.stroke(),i.restore()}}(a,o,t,n))})),s.display&&l&&d){for(r.save(),r.lineWidth=l,r.strokeStyle=d,r.setLineDash&&(r.setLineDash(On([s.borderDash,o.borderDash,[]])),r.lineDashOffset=On([s.borderDashOffset,o.borderDashOffset,0])),e=a.chart.data.labels.length-1;e>=0;e--)t=a.getDistanceFromCenterForValue(i.ticks.reverse?a.min:a.max),n=a.getPointPosition(e,t),r.beginPath(),r.moveTo(a.xCenter,a.yCenter),r.lineTo(n.x,n.y),r.stroke();r.restore()}},_drawLabels:function(){var e=this,t=e.ctx,n=e.options.ticks;if(n.display){var a,r,i=e.getIndexAngle(0),o=z.options._parseFont(n),s=jn(n.fontColor,F.global.defaultFontColor);t.save(),t.font=o.string,t.translate(e.xCenter,e.yCenter),t.rotate(i),t.textAlign="center",t.textBaseline="middle",z.each(e.ticks,(function(i,l){(0!==l||n.reverse)&&(a=e.getDistanceFromCenterForValue(e.ticksAsNumbers[l]),n.showLabelBackdrop&&(r=t.measureText(i).width,t.fillStyle=n.backdropColor,t.fillRect(-r/2-n.backdropPaddingX,-a-o.size/2-n.backdropPaddingY,r+2*n.backdropPaddingX,o.size+2*n.backdropPaddingY)),t.fillStyle=s,t.fillText(i,0,-a))})),t.restore()}},_drawTitle:z.noop}),Bn=Fn;Vn._defaults=Bn;var Un=z._deprecated,$n=z.options.resolve,Jn=z.valueOrDefault,qn=Number.MIN_SAFE_INTEGER||-9007199254740991,Gn=Number.MAX_SAFE_INTEGER||9007199254740991,Kn={millisecond:{common:!0,size:1,steps:1e3},second:{common:!0,size:1e3,steps:60},minute:{common:!0,size:6e4,steps:60},hour:{common:!0,size:36e5,steps:24},day:{common:!0,size:864e5,steps:30},week:{common:!1,size:6048e5,steps:4},month:{common:!0,size:2628e6,steps:12},quarter:{common:!1,size:7884e6,steps:4},year:{common:!0,size:3154e7}},Qn=Object.keys(Kn);function Zn(e,t){return e-t}function Xn(e){return z.valueOrDefault(e.time.min,e.ticks.min)}function ea(e){return z.valueOrDefault(e.time.max,e.ticks.max)}function ta(e,t,n,a){var r=function(e,t,n){for(var a,r,i,o=0,s=e.length-1;o>=0&&o<=s;){if(r=e[(a=o+s>>1)-1]||null,i=e[a],!r)return{lo:null,hi:i};if(i[t]<n)o=a+1;else{if(!(r[t]>n))return{lo:r,hi:i};s=a-1}}return{lo:i,hi:null}}(e,t,n),i=r.lo?r.hi?r.lo:e[e.length-2]:e[0],o=r.lo?r.hi?r.hi:e[e.length-1]:e[1],s=o[t]-i[t],l=s?(n-i[t])/s:0,d=(o[a]-i[a])*l;return i[a]+d}function na(e,t){var n=e._adapter,a=e.options.time,r=a.parser,i=r||a.format,o=t;return"function"==typeof r&&(o=r(o)),z.isFinite(o)||(o="string"==typeof i?n.parse(o,i):n.parse(o)),null!==o?+o:(r||"function"!=typeof i||(o=i(t),z.isFinite(o)||(o=n.parse(o))),o)}function aa(e,t){if(z.isNullOrUndef(t))return null;var n=e.options.time,a=na(e,e.getRightValue(t));return null===a?a:(n.round&&(a=+e._adapter.startOf(a,n.round)),a)}function ra(e,t,n,a){var r,i,o,s=Qn.length;for(r=Qn.indexOf(e);r<s-1;++r)if(o=(i=Kn[Qn[r]]).steps?i.steps:Gn,i.common&&Math.ceil((n-t)/(o*i.size))<=a)return Qn[r];return Qn[s-1]}function ia(e,t,n){var a,r,i=[],o={},s=t.length;for(a=0;a<s;++a)o[r=t[a]]=a,i.push({value:r,major:!1});return 0!==s&&n?function(e,t,n,a){var r,i,o=e._adapter,s=+o.startOf(t[0].value,a),l=t[t.length-1].value;for(r=s;r<=l;r=+o.add(r,1,a))(i=n[r])>=0&&(t[i].major=!0);return t}(e,i,o,n):i}var oa=_n.extend({initialize:function(){this.mergeTicksOptions(),_n.prototype.initialize.call(this)},update:function(){var e=this,t=e.options,n=t.time||(t.time={}),a=e._adapter=new Xt._date(t.adapters.date);return Un("time scale",n.format,"time.format","time.parser"),Un("time scale",n.min,"time.min","ticks.min"),Un("time scale",n.max,"time.max","ticks.max"),z.mergeIf(n.displayFormats,a.formats()),_n.prototype.update.apply(e,arguments)},getRightValue:function(e){return e&&void 0!==e.t&&(e=e.t),_n.prototype.getRightValue.call(this,e)},determineDataLimits:function(){var e,t,n,a,r,i,o,s=this,l=s.chart,d=s._adapter,u=s.options,c=u.time.unit||"day",m=Gn,f=qn,h=[],_=[],p=[],y=s._getLabels();for(e=0,n=y.length;e<n;++e)p.push(aa(s,y[e]));for(e=0,n=(l.data.datasets||[]).length;e<n;++e)if(l.isDatasetVisible(e))if(r=l.data.datasets[e].data,z.isObject(r[0]))for(_[e]=[],t=0,a=r.length;t<a;++t)i=aa(s,r[t]),h.push(i),_[e][t]=i;else _[e]=p.slice(0),o||(h=h.concat(p),o=!0);else _[e]=[];p.length&&(m=Math.min(m,p[0]),f=Math.max(f,p[p.length-1])),h.length&&(h=n>1?function(e){var t,n,a,r={},i=[];for(t=0,n=e.length;t<n;++t)r[a=e[t]]||(r[a]=!0,i.push(a));return i}(h).sort(Zn):h.sort(Zn),m=Math.min(m,h[0]),f=Math.max(f,h[h.length-1])),m=aa(s,Xn(u))||m,f=aa(s,ea(u))||f,m=m===Gn?+d.startOf(Date.now(),c):m,f=f===qn?+d.endOf(Date.now(),c)+1:f,s.min=Math.min(m,f),s.max=Math.max(m+1,f),s._table=[],s._timestamps={data:h,datasets:_,labels:p}},buildTicks:function(){var e,t,n,a=this,r=a.min,i=a.max,o=a.options,s=o.ticks,l=o.time,d=a._timestamps,u=[],c=a.getLabelCapacity(r),m=s.source,f=o.distribution;for(d="data"===m||"auto"===m&&"series"===f?d.data:"labels"===m?d.labels:function(e,t,n,a){var r,i=e._adapter,o=e.options,s=o.time,l=s.unit||ra(s.minUnit,t,n,a),d=$n([s.stepSize,s.unitStepSize,1]),u="week"===l&&s.isoWeekday,c=t,m=[];if(u&&(c=+i.startOf(c,"isoWeek",u)),c=+i.startOf(c,u?"day":l),i.diff(n,t,l)>1e5*d)throw t+" and "+n+" are too far apart with stepSize of "+d+" "+l;for(r=c;r<n;r=+i.add(r,d,l))m.push(r);return r!==n&&"ticks"!==o.bounds||m.push(r),m}(a,r,i,c),"ticks"===o.bounds&&d.length&&(r=d[0],i=d[d.length-1]),r=aa(a,Xn(o))||r,i=aa(a,ea(o))||i,e=0,t=d.length;e<t;++e)(n=d[e])>=r&&n<=i&&u.push(n);return a.min=r,a.max=i,a._unit=l.unit||(s.autoSkip?ra(l.minUnit,a.min,a.max,c):function(e,t,n,a,r){var i,o;for(i=Qn.length-1;i>=Qn.indexOf(n);i--)if(o=Qn[i],Kn[o].common&&e._adapter.diff(r,a,o)>=t-1)return o;return Qn[n?Qn.indexOf(n):0]}(a,u.length,l.minUnit,a.min,a.max)),a._majorUnit=s.major.enabled&&"year"!==a._unit?function(e){for(var t=Qn.indexOf(e)+1,n=Qn.length;t<n;++t)if(Kn[Qn[t]].common)return Qn[t]}(a._unit):void 0,a._table=function(e,t,n,a){if("linear"===a||!e.length)return[{time:t,pos:0},{time:n,pos:1}];var r,i,o,s,l,d=[],u=[t];for(r=0,i=e.length;r<i;++r)(s=e[r])>t&&s<n&&u.push(s);for(u.push(n),r=0,i=u.length;r<i;++r)l=u[r+1],o=u[r-1],s=u[r],void 0!==o&&void 0!==l&&Math.round((l+o)/2)===s||d.push({time:s,pos:r/(i-1)});return d}(a._timestamps.data,r,i,f),a._offsets=function(e,t,n,a,r){var i,o,s=0,l=0;return r.offset&&t.length&&(i=ta(e,"time",t[0],"pos"),s=1===t.length?1-i:(ta(e,"time",t[1],"pos")-i)/2,o=ta(e,"time",t[t.length-1],"pos"),l=1===t.length?o:(o-ta(e,"time",t[t.length-2],"pos"))/2),{start:s,end:l,factor:1/(s+1+l)}}(a._table,u,0,0,o),s.reverse&&u.reverse(),ia(a,u,a._majorUnit)},getLabelForIndex:function(e,t){var n=this,a=n._adapter,r=n.chart.data,i=n.options.time,o=r.labels&&e<r.labels.length?r.labels[e]:"",s=r.datasets[t].data[e];return z.isObject(s)&&(o=n.getRightValue(s)),i.tooltipFormat?a.format(na(n,o),i.tooltipFormat):"string"==typeof o?o:a.format(na(n,o),i.displayFormats.datetime)},tickFormatFunction:function(e,t,n,a){var r=this._adapter,i=this.options,o=i.time.displayFormats,s=o[this._unit],l=this._majorUnit,d=o[l],u=n[t],c=i.ticks,m=l&&d&&u&&u.major,f=r.format(e,a||(m?d:s)),h=m?c.major:c.minor,_=$n([h.callback,h.userCallback,c.callback,c.userCallback]);return _?_(f,t,n):f},convertTicksToLabels:function(e){var t,n,a=[];for(t=0,n=e.length;t<n;++t)a.push(this.tickFormatFunction(e[t].value,t,e));return a},getPixelForOffset:function(e){var t=this._offsets,n=ta(this._table,"time",e,"pos");return this.getPixelForDecimal((t.start+n)*t.factor)},getPixelForValue:function(e,t,n){var a=null;if(void 0!==t&&void 0!==n&&(a=this._timestamps.datasets[n][t]),null===a&&(a=aa(this,e)),null!==a)return this.getPixelForOffset(a)},getPixelForTick:function(e){var t=this.getTicks();return e>=0&&e<t.length?this.getPixelForOffset(t[e].value):null},getValueForPixel:function(e){var t=this._offsets,n=this.getDecimalForPixel(e)/t.factor-t.end,a=ta(this._table,"pos",n,"time");return this._adapter._create(a)},_getLabelSize:function(e){var t=this.options.ticks,n=this.ctx.measureText(e).width,a=z.toRadians(this.isHorizontal()?t.maxRotation:t.minRotation),r=Math.cos(a),i=Math.sin(a),o=Jn(t.fontSize,F.global.defaultFontSize);return{w:n*r+o*i,h:n*i+o*r}},getLabelWidth:function(e){return this._getLabelSize(e).w},getLabelCapacity:function(e){var t=this,n=t.options.time,a=n.displayFormats,r=a[n.unit]||a.millisecond,i=t.tickFormatFunction(e,0,ia(t,[e],t._majorUnit),r),o=t._getLabelSize(i),s=Math.floor(t.isHorizontal()?t.width/o.w:t.height/o.h);return t.options.offset&&s--,s>0?s:1}}),sa={position:"bottom",distribution:"linear",bounds:"data",adapters:{},time:{parser:!1,unit:!1,round:!1,displayFormat:!1,isoWeekday:!1,minUnit:"millisecond",displayFormats:{}},ticks:{autoSkip:!1,source:"auto",major:{enabled:!1}}};oa._defaults=sa;var la={category:yn,linear:xn,logarithmic:Pn,radialLinear:Vn,time:oa},da={datetime:"MMM D, YYYY, h:mm:ss a",millisecond:"h:mm:ss.SSS a",second:"h:mm:ss a",minute:"h:mm a",hour:"hA",day:"MMM D",week:"ll",month:"MMM YYYY",quarter:"[Q]Q - YYYY",year:"YYYY"};Xt._date.override("function"==typeof e?{_id:"moment",formats:function(){return da},parse:function(t,n){return"string"==typeof t&&"string"==typeof n?t=e(t,n):t instanceof e||(t=e(t)),t.isValid()?t.valueOf():null},format:function(t,n){return e(t).format(n)},add:function(t,n,a){return e(t).add(n,a).valueOf()},diff:function(t,n,a){return e(t).diff(e(n),a)},startOf:function(t,n,a){return t=e(t),"isoWeek"===n?t.isoWeekday(a).valueOf():t.startOf(n).valueOf()},endOf:function(t,n){return e(t).endOf(n).valueOf()},_create:function(t){return e(t)}}:{}),F._set("global",{plugins:{filler:{propagate:!0}}});var ua={dataset:function(e){var t=e.fill,n=e.chart,a=n.getDatasetMeta(t),r=a&&n.isDatasetVisible(t)&&a.dataset._children||[],i=r.length||0;return i?function(e,t){return t<i&&r[t]._view||null}:null},boundary:function(e){var t=e.boundary,n=t?t.x:null,a=t?t.y:null;return z.isArray(t)?function(e,n){return t[n]}:function(e){return{x:null===n?e.x:n,y:null===a?e.y:a}}}};function ca(e,t,n){var a,r=e._model||{},i=r.fill;if(void 0===i&&(i=!!r.backgroundColor),!1===i||null===i)return!1;if(!0===i)return"origin";if(a=parseFloat(i,10),isFinite(a)&&Math.floor(a)===a)return"-"!==i[0]&&"+"!==i[0]||(a=t+a),!(a===t||a<0||a>=n)&&a;switch(i){case"bottom":return"start";case"top":return"end";case"zero":return"origin";case"origin":case"start":case"end":return i;default:return!1}}function ma(e){return(e.el._scale||{}).getPointPositionForValue?function(e){var t,n,a,r,i,o=e.el._scale,s=o.options,l=o.chart.data.labels.length,d=e.fill,u=[];if(!l)return null;for(t=s.ticks.reverse?o.max:o.min,n=s.ticks.reverse?o.min:o.max,a=o.getPointPositionForValue(0,t),r=0;r<l;++r)i="start"===d||"end"===d?o.getPointPositionForValue(r,"start"===d?t:n):o.getBasePosition(r),s.gridLines.circular&&(i.cx=a.x,i.cy=a.y,i.angle=o.getIndexAngle(r)-Math.PI/2),u.push(i);return u}(e):function(e){var t,n=e.el._model||{},a=e.el._scale||{},r=e.fill,i=null;if(isFinite(r))return null;if("start"===r?i=void 0===n.scaleBottom?a.bottom:n.scaleBottom:"end"===r?i=void 0===n.scaleTop?a.top:n.scaleTop:void 0!==n.scaleZero?i=n.scaleZero:a.getBasePixel&&(i=a.getBasePixel()),null!=i){if(void 0!==i.x&&void 0!==i.y)return i;if(z.isFinite(i))return{x:(t=a.isHorizontal())?i:null,y:t?null:i}}return null}(e)}function fa(e,t,n){var a,r=e[t].fill,i=[t];if(!n)return r;for(;!1!==r&&-1===i.indexOf(r);){if(!isFinite(r))return r;if(!(a=e[r]))return!1;if(a.visible)return r;i.push(r),r=a.fill}return!1}function ha(e){var t=e.fill,n="dataset";return!1===t?null:(isFinite(t)||(n="boundary"),ua[n](e))}function _a(e){return e&&!e.skip}function pa(e,t,n,a,r){var i,o,s,l;if(a&&r){for(e.moveTo(t[0].x,t[0].y),i=1;i<a;++i)z.canvas.lineTo(e,t[i-1],t[i]);if(void 0===n[0].angle)for(e.lineTo(n[r-1].x,n[r-1].y),i=r-1;i>0;--i)z.canvas.lineTo(e,n[i],n[i-1],!0);else for(o=n[0].cx,s=n[0].cy,l=Math.sqrt(Math.pow(n[0].x-o,2)+Math.pow(n[0].y-s,2)),i=r-1;i>0;--i)e.arc(o,s,l,n[i].angle,n[i-1].angle,!0)}}function ya(e,t,n,a,r,i){var o,s,l,d,u,c,m,f,h=t.length,_=a.spanGaps,p=[],y=[],g=0,M=0;for(e.beginPath(),o=0,s=h;o<s;++o)u=n(d=t[l=o%h]._view,l,a),c=_a(d),m=_a(u),i&&void 0===f&&c&&(s=h+(f=o+1)),c&&m?(g=p.push(d),M=y.push(u)):g&&M&&(_?(c&&p.push(d),m&&y.push(u)):(pa(e,p,y,g,M),g=M=0,p=[],y=[]));pa(e,p,y,g,M),e.closePath(),e.fillStyle=r,e.fill()}var ga={id:"filler",afterDatasetsUpdate:function(e,t){var n,a,r,i,o=(e.data.datasets||[]).length,s=t.propagate,l=[];for(a=0;a<o;++a)i=null,(r=(n=e.getDatasetMeta(a)).dataset)&&r._model&&r instanceof be.Line&&(i={visible:e.isDatasetVisible(a),fill:ca(r,a,o),chart:e,el:r}),n.$filler=i,l.push(i);for(a=0;a<o;++a)(i=l[a])&&(i.fill=fa(l,a,s),i.boundary=ma(i),i.mapper=ha(i))},beforeDatasetsDraw:function(e){var t,n,a,r,i,o,s,l=e._getSortedVisibleDatasetMetas(),d=e.ctx;for(n=l.length-1;n>=0;--n)(t=l[n].$filler)&&t.visible&&(r=(a=t.el)._view,i=a._children||[],o=t.mapper,s=r.backgroundColor||F.global.defaultColor,o&&s&&i.length&&(z.canvas.clipArea(d,e.chartArea),ya(d,i,o,r,s,a._loop),z.canvas.unclipArea(d)))}},Ma=z.rtl.getRtlAdapter,va=z.noop,ba=z.valueOrDefault;function La(e,t){return e.usePointStyle&&e.boxWidth>t?t:e.boxWidth}F._set("global",{legend:{display:!0,position:"top",align:"center",fullWidth:!0,reverse:!1,weight:1e3,onClick:function(e,t){var n=t.datasetIndex,a=this.chart,r=a.getDatasetMeta(n);r.hidden=null===r.hidden?!a.data.datasets[n].hidden:null,a.update()},onHover:null,onLeave:null,labels:{boxWidth:40,padding:10,generateLabels:function(e){var t=e.data.datasets,n=e.options.legend||{},a=n.labels&&n.labels.usePointStyle;return e._getSortedDatasetMetas().map((function(n){var r=n.controller.getStyle(a?0:void 0);return{text:t[n.index].label,fillStyle:r.backgroundColor,hidden:!e.isDatasetVisible(n.index),lineCap:r.borderCapStyle,lineDash:r.borderDash,lineDashOffset:r.borderDashOffset,lineJoin:r.borderJoinStyle,lineWidth:r.borderWidth,strokeStyle:r.borderColor,pointStyle:r.pointStyle,rotation:r.rotation,datasetIndex:n.index}}),this)}}},legendCallback:function(e){var t,n,a,r=document.createElement("ul"),i=e.data.datasets;for(r.setAttribute("class",e.id+"-legend"),t=0,n=i.length;t<n;t++)(a=r.appendChild(document.createElement("li"))).appendChild(document.createElement("span")).style.backgroundColor=i[t].backgroundColor,i[t].label&&a.appendChild(document.createTextNode(i[t].label));return r.outerHTML}});var ka=q.extend({initialize:function(e){z.extend(this,e),this.legendHitBoxes=[],this._hoveredItem=null,this.doughnutMode=!1},beforeUpdate:va,update:function(e,t,n){var a=this;return a.beforeUpdate(),a.maxWidth=e,a.maxHeight=t,a.margins=n,a.beforeSetDimensions(),a.setDimensions(),a.afterSetDimensions(),a.beforeBuildLabels(),a.buildLabels(),a.afterBuildLabels(),a.beforeFit(),a.fit(),a.afterFit(),a.afterUpdate(),a.minSize},afterUpdate:va,beforeSetDimensions:va,setDimensions:function(){var e=this;e.isHorizontal()?(e.width=e.maxWidth,e.left=0,e.right=e.width):(e.height=e.maxHeight,e.top=0,e.bottom=e.height),e.paddingLeft=0,e.paddingTop=0,e.paddingRight=0,e.paddingBottom=0,e.minSize={width:0,height:0}},afterSetDimensions:va,beforeBuildLabels:va,buildLabels:function(){var e=this,t=e.options.labels||{},n=z.callback(t.generateLabels,[e.chart],e)||[];t.filter&&(n=n.filter((function(n){return t.filter(n,e.chart.data)}))),e.options.reverse&&n.reverse(),e.legendItems=n},afterBuildLabels:va,beforeFit:va,fit:function(){var e=this,t=e.options,n=t.labels,a=t.display,r=e.ctx,i=z.options._parseFont(n),o=i.size,s=e.legendHitBoxes=[],l=e.minSize,d=e.isHorizontal();if(d?(l.width=e.maxWidth,l.height=a?10:0):(l.width=a?10:0,l.height=e.maxHeight),a){if(r.font=i.string,d){var u=e.lineWidths=[0],c=0;r.textAlign="left",r.textBaseline="middle",z.each(e.legendItems,(function(e,t){var a=La(n,o)+o/2+r.measureText(e.text).width;(0===t||u[u.length-1]+a+2*n.padding>l.width)&&(c+=o+n.padding,u[u.length-(t>0?0:1)]=0),s[t]={left:0,top:0,width:a,height:o},u[u.length-1]+=a+n.padding})),l.height+=c}else{var m=n.padding,f=e.columnWidths=[],h=e.columnHeights=[],_=n.padding,p=0,y=0;z.each(e.legendItems,(function(e,t){var a=La(n,o)+o/2+r.measureText(e.text).width;t>0&&y+o+2*m>l.height&&(_+=p+n.padding,f.push(p),h.push(y),p=0,y=0),p=Math.max(p,a),y+=o+m,s[t]={left:0,top:0,width:a,height:o}})),_+=p,f.push(p),h.push(y),l.width+=_}e.width=l.width,e.height=l.height}else e.width=l.width=e.height=l.height=0},afterFit:va,isHorizontal:function(){return"top"===this.options.position||"bottom"===this.options.position},draw:function(){var e=this,t=e.options,n=t.labels,a=F.global,r=a.defaultColor,i=a.elements.line,o=e.height,s=e.columnHeights,l=e.width,d=e.lineWidths;if(t.display){var u,c=Ma(t.rtl,e.left,e.minSize.width),m=e.ctx,f=ba(n.fontColor,a.defaultFontColor),h=z.options._parseFont(n),_=h.size;m.textAlign=c.textAlign("left"),m.textBaseline="middle",m.lineWidth=.5,m.strokeStyle=f,m.fillStyle=f,m.font=h.string;var p=La(n,_),y=e.legendHitBoxes,g=function(e,a){switch(t.align){case"start":return n.padding;case"end":return e-a;default:return(e-a+n.padding)/2}},M=e.isHorizontal();u=M?{x:e.left+g(l,d[0]),y:e.top+n.padding,line:0}:{x:e.left+n.padding,y:e.top+g(o,s[0]),line:0},z.rtl.overrideTextDirection(e.ctx,t.textDirection);var v=_+n.padding;z.each(e.legendItems,(function(t,a){var f=m.measureText(t.text).width,h=p+_/2+f,b=u.x,L=u.y;c.setWidth(e.minSize.width),M?a>0&&b+h+n.padding>e.left+e.minSize.width&&(L=u.y+=v,u.line++,b=u.x=e.left+g(l,d[u.line])):a>0&&L+v>e.top+e.minSize.height&&(b=u.x=b+e.columnWidths[u.line]+n.padding,u.line++,L=u.y=e.top+g(o,s[u.line]));var k=c.x(b);!function(e,t,a){if(!(isNaN(p)||p<=0)){m.save();var o=ba(a.lineWidth,i.borderWidth);if(m.fillStyle=ba(a.fillStyle,r),m.lineCap=ba(a.lineCap,i.borderCapStyle),m.lineDashOffset=ba(a.lineDashOffset,i.borderDashOffset),m.lineJoin=ba(a.lineJoin,i.borderJoinStyle),m.lineWidth=o,m.strokeStyle=ba(a.strokeStyle,r),m.setLineDash&&m.setLineDash(ba(a.lineDash,i.borderDash)),n&&n.usePointStyle){var s=p*Math.SQRT2/2,l=c.xPlus(e,p/2),d=t+_/2;z.canvas.drawPoint(m,a.pointStyle,s,l,d,a.rotation)}else m.fillRect(c.leftForLtr(e,p),t,p,_),0!==o&&m.strokeRect(c.leftForLtr(e,p),t,p,_);m.restore()}}(k,L,t),y[a].left=c.leftForLtr(k,y[a].width),y[a].top=L,function(e,t,n,a){var r=_/2,i=c.xPlus(e,p+r),o=t+r;m.fillText(n.text,i,o),n.hidden&&(m.beginPath(),m.lineWidth=2,m.moveTo(i,o),m.lineTo(c.xPlus(i,a),o),m.stroke())}(k,L,t,f),M?u.x+=h+n.padding:u.y+=v})),z.rtl.restoreTextDirection(e.ctx,t.textDirection)}},_getLegendItemAt:function(e,t){var n,a,r,i=this;if(e>=i.left&&e<=i.right&&t>=i.top&&t<=i.bottom)for(r=i.legendHitBoxes,n=0;n<r.length;++n)if(e>=(a=r[n]).left&&e<=a.left+a.width&&t>=a.top&&t<=a.top+a.height)return i.legendItems[n];return null},handleEvent:function(e){var t,n=this,a=n.options,r="mouseup"===e.type?"click":e.type;if("mousemove"===r){if(!a.onHover&&!a.onLeave)return}else{if("click"!==r)return;if(!a.onClick)return}t=n._getLegendItemAt(e.x,e.y),"click"===r?t&&a.onClick&&a.onClick.call(n,e.native,t):(a.onLeave&&t!==n._hoveredItem&&(n._hoveredItem&&a.onLeave.call(n,e.native,n._hoveredItem),n._hoveredItem=t),a.onHover&&t&&a.onHover.call(n,e.native,t))}});function wa(e,t){var n=new ka({ctx:e.ctx,options:t,chart:e});ht.configure(e,n,t),ht.addBox(e,n),e.legend=n}var xa={id:"legend",_element:ka,beforeInit:function(e){var t=e.options.legend;t&&wa(e,t)},beforeUpdate:function(e){var t=e.options.legend,n=e.legend;t?(z.mergeIf(t,F.global.legend),n?(ht.configure(e,n,t),n.options=t):wa(e,t)):n&&(ht.removeBox(e,n),delete e.legend)},afterEvent:function(e,t){var n=e.legend;n&&n.handleEvent(t)}},Ta=z.noop;F._set("global",{title:{display:!1,fontStyle:"bold",fullWidth:!0,padding:10,position:"top",text:"",weight:2e3}});var Ya=q.extend({initialize:function(e){z.extend(this,e),this.legendHitBoxes=[]},beforeUpdate:Ta,update:function(e,t,n){var a=this;return a.beforeUpdate(),a.maxWidth=e,a.maxHeight=t,a.margins=n,a.beforeSetDimensions(),a.setDimensions(),a.afterSetDimensions(),a.beforeBuildLabels(),a.buildLabels(),a.afterBuildLabels(),a.beforeFit(),a.fit(),a.afterFit(),a.afterUpdate(),a.minSize},afterUpdate:Ta,beforeSetDimensions:Ta,setDimensions:function(){var e=this;e.isHorizontal()?(e.width=e.maxWidth,e.left=0,e.right=e.width):(e.height=e.maxHeight,e.top=0,e.bottom=e.height),e.paddingLeft=0,e.paddingTop=0,e.paddingRight=0,e.paddingBottom=0,e.minSize={width:0,height:0}},afterSetDimensions:Ta,beforeBuildLabels:Ta,buildLabels:Ta,afterBuildLabels:Ta,beforeFit:Ta,fit:function(){var e,t=this,n=t.options,a=t.minSize={},r=t.isHorizontal();n.display?(e=(z.isArray(n.text)?n.text.length:1)*z.options._parseFont(n).lineHeight+2*n.padding,t.width=a.width=r?t.maxWidth:e,t.height=a.height=r?e:t.maxHeight):t.width=a.width=t.height=a.height=0},afterFit:Ta,isHorizontal:function(){var e=this.options.position;return"top"===e||"bottom"===e},draw:function(){var e=this,t=e.ctx,n=e.options;if(n.display){var a,r,i,o=z.options._parseFont(n),s=o.lineHeight,l=s/2+n.padding,d=0,u=e.top,c=e.left,m=e.bottom,f=e.right;t.fillStyle=z.valueOrDefault(n.fontColor,F.global.defaultFontColor),t.font=o.string,e.isHorizontal()?(r=c+(f-c)/2,i=u+l,a=f-c):(r="left"===n.position?c+l:f-l,i=u+(m-u)/2,a=m-u,d=Math.PI*("left"===n.position?-.5:.5)),t.save(),t.translate(r,i),t.rotate(d),t.textAlign="center",t.textBaseline="middle";var h=n.text;if(z.isArray(h))for(var _=0,p=0;p<h.length;++p)t.fillText(h[p],0,_,a),_+=s;else t.fillText(h,0,0,a);t.restore()}}});function Da(e,t){var n=new Ya({ctx:e.ctx,options:t,chart:e});ht.configure(e,n,t),ht.addBox(e,n),e.titleBlock=n}var Sa={},Ea=ga,Pa=xa,Ha={id:"title",_element:Ya,beforeInit:function(e){var t=e.options.title;t&&Da(e,t)},beforeUpdate:function(e){var t=e.options.title,n=e.titleBlock;t?(z.mergeIf(t,F.global.title),n?(ht.configure(e,n,t),n.options=t):Da(e,t)):n&&(ht.removeBox(e,n),delete e.titleBlock)}};for(var ja in Sa.filler=Ea,Sa.legend=Pa,Sa.title=Ha,Kt.helpers=z,function(){function e(e,t,n){var a;return"string"==typeof e?(a=parseInt(e,10),-1!==e.indexOf("%")&&(a=a/100*t.parentNode[n])):a=e,a}function t(e){return null!=e&&"none"!==e}function n(n,a,r){var i=document.defaultView,o=z._getParentNode(n),s=i.getComputedStyle(n)[a],l=i.getComputedStyle(o)[a],d=t(s),u=t(l),c=Number.POSITIVE_INFINITY;return d||u?Math.min(d?e(s,n,r):c,u?e(l,o,r):c):"none"}z.where=function(e,t){if(z.isArray(e)&&Array.prototype.filter)return e.filter(t);var n=[];return z.each(e,(function(e){t(e)&&n.push(e)})),n},z.findIndex=Array.prototype.findIndex?function(e,t,n){return e.findIndex(t,n)}:function(e,t,n){n=void 0===n?e:n;for(var a=0,r=e.length;a<r;++a)if(t.call(n,e[a],a,e))return a;return-1},z.findNextWhere=function(e,t,n){z.isNullOrUndef(n)&&(n=-1);for(var a=n+1;a<e.length;a++){var r=e[a];if(t(r))return r}},z.findPreviousWhere=function(e,t,n){z.isNullOrUndef(n)&&(n=e.length);for(var a=n-1;a>=0;a--){var r=e[a];if(t(r))return r}},z.isNumber=function(e){return!isNaN(parseFloat(e))&&isFinite(e)},z.almostEquals=function(e,t,n){return Math.abs(e-t)<n},z.almostWhole=function(e,t){var n=Math.round(e);return n-t<=e&&n+t>=e},z.max=function(e){return e.reduce((function(e,t){return isNaN(t)?e:Math.max(e,t)}),Number.NEGATIVE_INFINITY)},z.min=function(e){return e.reduce((function(e,t){return isNaN(t)?e:Math.min(e,t)}),Number.POSITIVE_INFINITY)},z.sign=Math.sign?function(e){return Math.sign(e)}:function(e){return 0==(e=+e)||isNaN(e)?e:e>0?1:-1},z.toRadians=function(e){return e*(Math.PI/180)},z.toDegrees=function(e){return e*(180/Math.PI)},z._decimalPlaces=function(e){if(z.isFinite(e)){for(var t=1,n=0;Math.round(e*t)/t!==e;)t*=10,n++;return n}},z.getAngleFromPoint=function(e,t){var n=t.x-e.x,a=t.y-e.y,r=Math.sqrt(n*n+a*a),i=Math.atan2(a,n);return i<-.5*Math.PI&&(i+=2*Math.PI),{angle:i,distance:r}},z.distanceBetweenPoints=function(e,t){return Math.sqrt(Math.pow(t.x-e.x,2)+Math.pow(t.y-e.y,2))},z.aliasPixel=function(e){return e%2==0?0:.5},z._alignPixel=function(e,t,n){var a=e.currentDevicePixelRatio,r=n/2;return Math.round((t-r)*a)/a+r},z.splineCurve=function(e,t,n,a){var r=e.skip?t:e,i=t,o=n.skip?t:n,s=Math.sqrt(Math.pow(i.x-r.x,2)+Math.pow(i.y-r.y,2)),l=Math.sqrt(Math.pow(o.x-i.x,2)+Math.pow(o.y-i.y,2)),d=s/(s+l),u=l/(s+l),c=a*(d=isNaN(d)?0:d),m=a*(u=isNaN(u)?0:u);return{previous:{x:i.x-c*(o.x-r.x),y:i.y-c*(o.y-r.y)},next:{x:i.x+m*(o.x-r.x),y:i.y+m*(o.y-r.y)}}},z.EPSILON=Number.EPSILON||1e-14,z.splineCurveMonotone=function(e){var t,n,a,r,i,o,s,l,d,u=(e||[]).map((function(e){return{model:e._model,deltaK:0,mK:0}})),c=u.length;for(t=0;t<c;++t)if(!(a=u[t]).model.skip){if(n=t>0?u[t-1]:null,(r=t<c-1?u[t+1]:null)&&!r.model.skip){var m=r.model.x-a.model.x;a.deltaK=0!==m?(r.model.y-a.model.y)/m:0}!n||n.model.skip?a.mK=a.deltaK:!r||r.model.skip?a.mK=n.deltaK:this.sign(n.deltaK)!==this.sign(a.deltaK)?a.mK=0:a.mK=(n.deltaK+a.deltaK)/2}for(t=0;t<c-1;++t)a=u[t],r=u[t+1],a.model.skip||r.model.skip||(z.almostEquals(a.deltaK,0,this.EPSILON)?a.mK=r.mK=0:(i=a.mK/a.deltaK,o=r.mK/a.deltaK,(l=Math.pow(i,2)+Math.pow(o,2))<=9||(s=3/Math.sqrt(l),a.mK=i*s*a.deltaK,r.mK=o*s*a.deltaK)));for(t=0;t<c;++t)(a=u[t]).model.skip||(n=t>0?u[t-1]:null,r=t<c-1?u[t+1]:null,n&&!n.model.skip&&(d=(a.model.x-n.model.x)/3,a.model.controlPointPreviousX=a.model.x-d,a.model.controlPointPreviousY=a.model.y-d*a.mK),r&&!r.model.skip&&(d=(r.model.x-a.model.x)/3,a.model.controlPointNextX=a.model.x+d,a.model.controlPointNextY=a.model.y+d*a.mK))},z.nextItem=function(e,t,n){return n?t>=e.length-1?e[0]:e[t+1]:t>=e.length-1?e[e.length-1]:e[t+1]},z.previousItem=function(e,t,n){return n?t<=0?e[e.length-1]:e[t-1]:t<=0?e[0]:e[t-1]},z.niceNum=function(e,t){var n=Math.floor(z.log10(e)),a=e/Math.pow(10,n);return(t?a<1.5?1:a<3?2:a<7?5:10:a<=1?1:a<=2?2:a<=5?5:10)*Math.pow(10,n)},z.requestAnimFrame="undefined"==typeof window?function(e){e()}:window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(e){return window.setTimeout(e,1e3/60)},z.getRelativePosition=function(e,t){var n,a,r=e.originalEvent||e,i=e.target||e.srcElement,o=i.getBoundingClientRect(),s=r.touches;s&&s.length>0?(n=s[0].clientX,a=s[0].clientY):(n=r.clientX,a=r.clientY);var l=parseFloat(z.getStyle(i,"padding-left")),d=parseFloat(z.getStyle(i,"padding-top")),u=parseFloat(z.getStyle(i,"padding-right")),c=parseFloat(z.getStyle(i,"padding-bottom")),m=o.right-o.left-l-u,f=o.bottom-o.top-d-c;return{x:n=Math.round((n-o.left-l)/m*i.width/t.currentDevicePixelRatio),y:a=Math.round((a-o.top-d)/f*i.height/t.currentDevicePixelRatio)}},z.getConstraintWidth=function(e){return n(e,"max-width","clientWidth")},z.getConstraintHeight=function(e){return n(e,"max-height","clientHeight")},z._calculatePadding=function(e,t,n){return(t=z.getStyle(e,t)).indexOf("%")>-1?n*parseInt(t,10)/100:parseInt(t,10)},z._getParentNode=function(e){var t=e.parentNode;return t&&"[object ShadowRoot]"===t.toString()&&(t=t.host),t},z.getMaximumWidth=function(e){var t=z._getParentNode(e);if(!t)return e.clientWidth;var n=t.clientWidth,a=n-z._calculatePadding(t,"padding-left",n)-z._calculatePadding(t,"padding-right",n),r=z.getConstraintWidth(e);return isNaN(r)?a:Math.min(a,r)},z.getMaximumHeight=function(e){var t=z._getParentNode(e);if(!t)return e.clientHeight;var n=t.clientHeight,a=n-z._calculatePadding(t,"padding-top",n)-z._calculatePadding(t,"padding-bottom",n),r=z.getConstraintHeight(e);return isNaN(r)?a:Math.min(a,r)},z.getStyle=function(e,t){return e.currentStyle?e.currentStyle[t]:document.defaultView.getComputedStyle(e,null).getPropertyValue(t)},z.retinaScale=function(e,t){var n=e.currentDevicePixelRatio=t||"undefined"!=typeof window&&window.devicePixelRatio||1;if(1!==n){var a=e.canvas,r=e.height,i=e.width;a.height=r*n,a.width=i*n,e.ctx.scale(n,n),a.style.height||a.style.width||(a.style.height=r+"px",a.style.width=i+"px")}},z.fontString=function(e,t,n){return t+" "+e+"px "+n},z.longestText=function(e,t,n,a){var r=(a=a||{}).data=a.data||{},i=a.garbageCollect=a.garbageCollect||[];a.font!==t&&(r=a.data={},i=a.garbageCollect=[],a.font=t),e.font=t;var o,s,l,d,u,c=0,m=n.length;for(o=0;o<m;o++)if(null!=(d=n[o])&&!0!==z.isArray(d))c=z.measureText(e,r,i,c,d);else if(z.isArray(d))for(s=0,l=d.length;s<l;s++)null==(u=d[s])||z.isArray(u)||(c=z.measureText(e,r,i,c,u));var f=i.length/2;if(f>n.length){for(o=0;o<f;o++)delete r[i[o]];i.splice(0,f)}return c},z.measureText=function(e,t,n,a,r){var i=t[r];return i||(i=t[r]=e.measureText(r).width,n.push(r)),i>a&&(a=i),a},z.numberOfLabelLines=function(e){var t=1;return z.each(e,(function(e){z.isArray(e)&&e.length>t&&(t=e.length)})),t},z.color=L?function(e){return e instanceof CanvasGradient&&(e=F.global.defaultColor),L(e)}:function(e){return console.error("Color.js not found!"),e},z.getHoverColor=function(e){return e instanceof CanvasPattern||e instanceof CanvasGradient?e:z.color(e).saturate(.5).darken(.1).rgbString()}}(),Kt._adapters=Xt,Kt.Animation=K,Kt.animationService=Q,Kt.controllers=Qe,Kt.DatasetController=ne,Kt.defaults=F,Kt.Element=q,Kt.elements=be,Kt.Interaction=rt,Kt.layouts=ht,Kt.platform=Dt,Kt.plugins=St,Kt.Scale=_n,Kt.scaleService=Et,Kt.Ticks=en,Kt.Tooltip=zt,Kt.helpers.each(la,(function(e,t){Kt.scaleService.registerScaleType(t,e,e._defaults)})),Sa)Sa.hasOwnProperty(ja)&&Kt.plugins.register(Sa[ja]);Kt.platform.initialize();var Ca=Kt;return"undefined"!=typeof window&&(window.Chart=Kt),Kt.Chart=Kt,Kt.Legend=Sa.legend._element,Kt.Title=Sa.title._element,Kt.pluginService=Kt.plugins,Kt.PluginBase=Kt.Element.extend({}),Kt.canvasHelpers=Kt.helpers.canvas,Kt.layoutService=Kt.layouts,Kt.LinearScaleBase=bn,Kt.helpers.each(["Bar","Bubble","Doughnut","Line","PolarArea","Radar","Scatter"],(function(e){Kt[e]=function(t,n){return new Kt(t,Kt.helpers.merge(n||{},{type:e.charAt(0).toLowerCase()+e.slice(1)}))}})),Ca}(function(){try{return n(0)}catch(e){}}())},function(e,t,n){"use strict";var a=n(42);n(356);t.a=function(){return wp.element.createElement("div",{className:"givewp-loading-overlay"},wp.element.createElement(a.a,null))}},,,,function(e,t,n){"use strict";var a=n(5),r=n.n(a),i=n(1),o=n(2),s=n.n(o),l=n(18),d=n(63),u=n.n(d),c=(n(351),n(48)),m=n.n(c),f=n(15),h=n.n(f),_={color:"#9EA3A8",width:1,dashPattern:[5,10]},p={enabled:!0},y={id:"crosshair",afterInit:function(e){if(0!==e.config.options.scales.xAxes.length){var t=e.config.options.scales.xAxes[0].type;"linear"!==t&&"time"!==t||(e.crosshair={enabled:!1,x:null})}},getXScale:function(e){return e.data.datasets.length?e.scales[e.getDatasetMeta(0).xAxisID]:null},getYScale:function(e){return e.scales[e.getDatasetMeta(0).yAxisID]},afterEvent:function(e,t){if(0!==e.config.options.scales.xAxes.length){var n=e.config.options.scales.xAxes[0].type;if("linear"===n||"time"===n){var a=this.getXScale(e);if(a){if(e.crosshair.enabled="mouseout"!==t.type&&t.x>a.getPixelForValue(a.min)&&t.x<a.getPixelForValue(a.max),!e.crosshair.enabled)return t.x>a.getPixelForValue(a.max)&&e.update(),!0;e.crosshair.x=t.x,e.draw()}}}},afterDraw:function(e){if(e.crosshair.enabled)return this.drawTracePoints(e),this.drawTraceLine(e),!0;var t=document.getElementById("givewp-chartjs-tooltip");t&&(t.style.opacity=0,t.style.display="none")},drawTraceLine:function(e){var t=this.getYScale(e),n=this.getXScale(e),a=e.crosshair.x,r=!1===e.config.options.hover.intersect;p.enabled&&r&&e.active.length&&(a=e.active[0]._view.x);var i=_.width,o=_.color,s=_.dashPattern;e.ctx.beginPath(),e.ctx.setLineDash(s),e.ctx.moveTo(a,t.getPixelForValue(t.max)),e.ctx.lineWidth=i,e.ctx.strokeStyle=o,e.ctx.lineTo(a,t.getPixelForValue(t.min)),e.ctx.stroke(),e.ctx.setLineDash([]),e.ctx.beginPath(),e.ctx.fillStyle="rgba(35, 36, 37, 0.05)";var l,d,u=n.getPixelForValue(n.min),c=n.getPixelForValue(n.max);a-70<u?(l=u,d=a-u+70):a+70>c?(l=a-70,d=c-a+70):(l=a-70,d=140);var m=t.getPixelForValue(t.max),f=t.getPixelForValue(t.min)-t.getPixelForValue(t.max);e.ctx.rect(l,m,d,f),e.ctx.fill()},drawTracePoints:function(e){for(var t=0;t<e.data.datasets.length;t++){var n=e.data.datasets[t],a=e.getDatasetMeta(t),r=e.scales[a.yAxisID];!a.hidden&&n.interpolate&&(e.ctx.beginPath(),e.ctx.arc(e.crosshair.x,r.getPixelForValue(n.interpolatedValue),3,0,2*Math.PI,!1),e.ctx.fillStyle="white",e.ctx.lineWidth=2,e.ctx.strokeStyle=n.borderColor,e.ctx.fill(),e.ctx.stroke())}}};n(352);var g=function(e){var t=e.data,n=e.chartRef,a=t.datasets[0].data.length>0?t.datasets[0].data.reduce((function(e,t){return parseInt(e)+parseInt(t)})):0,o=Object(i.useState)([]),s=r()(o,2),l=s[0],d=s[1],u=t.datasets[0].data.map((function(e,r){var i=l.includes(r)?" inactive":"",o=function(e){return["#69B868","#556E79","#9EA3A8","#4BB5D7","#F49420","#D75A4B","#914BD7"][e]}(r),s=Math.round(e/a*100),u=isNaN(s)?"0%":s+"%",c=t.datasets[0].tooltips[r];return wp.element.createElement("div",{className:"item"+i,key:r,onClick:function(){return function(e,t){var a=l.slice(0);if(n.data.datasets[0].data[e]===t)n.data.datasets[0].data[e]=null,a.push(e),d(a);else{n.data.datasets[0].data[e]=t;var r=a.indexOf(e);a.splice(r,1),d(a)}n.update()}(r,e)}},wp.element.createElement("div",{className:"bar",style:{background:o}}),wp.element.createElement("p",{className:"label"},c.footer),wp.element.createElement("p",{className:"data"},c.title),wp.element.createElement("p",{className:"percent"},u))}));return wp.element.createElement("div",{className:"givewp-legend"},u)};g.propTypes={data:s.a.object.isRequired,chartRef:s.a.object.isRequired},g.defaultProps={data:null,chartRef:null};var M=g,v=function(e){var t=e.type,n=e.aspectRatio,a=e.data,o=e.showLegend,s=Object(i.createRef)(),l=function(e,t){var n=function(e,t){return{labels:t.labels?t.labels.slice(0):null,datasets:t.datasets.map((function(t,n){var a=function(e,t,n){var a=["#69B868","#556E79","#9EA3A8","#4BB5D7","#F49420","#D75A4B","#914BD7"],r={backgroundColor:a,borderColor:a,borderWidth:0};switch(e){case"line":r.backgroundColor=[a[n]+"44"],r.borderColor=[a[n]],r.borderWidth=3;break;case"pie":case"doughnut":r.borderColor=["rgb(244, 244, 244)"],r.borderWidth=3}return r}(e,t.data,n);return{data:t.data.slice(0),yAxisID:"y-axis-".concat(n),backgroundColor:a.backgroundColor,borderColor:a.borderColor,borderWidth:a.borderWidth}}))}}(e,t),a="line"!==e&&"bar"!==e,r={type:e,data:n,options:{hover:{intersect:a},legend:{display:!1},layout:{padding:16},scales:{xAxes:[],yAxes:[]},elements:{point:{radius:4,hitRadius:2,hoverRadius:6,backgroundColor:"#69B868"}},tooltips:{enabled:!1,mode:"index",intersect:a,custom:function(e){var n=document.getElementById("givewp-chartjs-tooltip");if(n||((n=document.createElement("div")).id="givewp-chartjs-tooltip",n.innerHTML='<div class="givewp-tooltip-header"></div><div class="givewp-tooltip-body"><bold></b><br></div><div class="givewp-tooltip-caret"></div>',document.body.appendChild(n)),0===e.opacity)return n.style.opacity=0,void(n.style.display="none");n.classList.remove("above","below","no-transform"),e.yAlign?n.classList.add(e.yAlign):n.classList.add("no-transform");var a=this._chart.canvas.getBoundingClientRect();n.style.opacity=1,n.style.display="block",n.style.position="absolute",n.style.left=a.left+e.caretX+"px",n.style.top=a.top+window.pageYOffset+e.caretY-(n.offsetHeight+6)+"px",n.style.pointerEvents="none";var r=t.datasets[e.dataPoints[0].datasetIndex].tooltips[e.dataPoints[0].index];n.innerHTML='<div class="givewp-tooltip-header">'.concat(r.title,'</div><div class="givewp-tooltip-body"><bold>').concat(r.body,"</b><br>").concat(r.footer,'</div><div class="givewp-tooltip-caret"></div>')}}}};if("line"===e||"bar"===e){var i=t.datasets.map((function(t,n){var a;switch(h()(t.data[0])){case"object":var r=1.1*Math.max.apply(Math,m()(t.data.map((function(e){return e.y}))).concat([0]));switch(e){case"line":a=r>100?r:100;break;case"bar":a=r>10?r:10}break;default:var i=1.1*Math.max.apply(Math,m()(t.data.map((function(e){return e}))).concat([0]));switch(e){case"line":a=i>100?i:100;break;case"bar":a=i>10?i:10}