commit fbdd3574b3a39671d8e019d963e22dfed63047ba Author: corrado.mulas Date: Mon Apr 6 14:03:15 2026 +0200 security: sanitize hardcoded values with placeholders for public repo diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..c62681d Binary files /dev/null and b/.DS_Store differ diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..7aca1d3 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,3 @@ +FROM nginx:alpine +COPY ./frontend /usr/share/nginx/html +#COPY ./nginx.conf /etc/nginx/nginx.conf \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..64bd5d4 --- /dev/null +++ b/LICENSE @@ -0,0 +1,28 @@ +BSD 3-Clause License + +Copyright (c) 2026, overleaf-registration-fe contributors + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..e172377 --- /dev/null +++ b/README.md @@ -0,0 +1,153 @@ +# overleaf-registration-fe + +Frontend signup interface for controlled Overleaf account registration. + +Static HTML/JS/CSS site that presents a registration form with domain validation, Cloudflare Turnstile CAPTCHA, and Terms of Service acceptance. Served via nginx and designed to work with the [overleaf-registration-be](https://github.com/ssep1ol/overleaf-registration-be) backend API. + +## Features + +- Clean, responsive signup form +- Client-side email domain validation +- Cloudflare Turnstile CAPTCHA integration +- Terms of Service modal with acceptance checkbox +- Privacy policy page +- Static site served via nginx +- Docker container deployment + +## How It Works + +1. User visits signup page. +2. User enters email address (validated client-side against hardcoded domain allowlist). +3. User completes Cloudflare Turnstile CAPTCHA challenge. +4. User accepts Terms of Service and Privacy Policy. +5. Form submits JSON payload to backend API endpoint. +6. User sees success/error message based on backend response. + +## Tech Stack + +- Vanilla JavaScript (no framework) +- HTML5 with semantic markup +- CSS (with Bootstrap-style classes from Overleaf theme) +- Cloudflare Turnstile +- nginx (Alpine-based container) + +## Project Structure + +``` +frontend/ +├── index.html # Main signup page +├── script.js # Form validation and submission logic +├── privacy.html # Privacy policy page +├── main-style-*.css # Compiled CSS from Overleaf theme +├── style.css # Additional custom styles +├── styles.css # Additional custom styles +├── scripts.js # Additional JS (if any) +└── fonts/ # Web fonts (Lato, Merriweather, Font Awesome) +nginx.conf # nginx server configuration +Dockerfile # Container image build instructions +``` + +## Configuration + +**REQUIRED:** Before deploying, you must configure the following hardcoded values in the source files. + +### 1. Cloudflare Turnstile Site Key + +In `frontend/index.html`, replace the placeholder: + +```html +
+``` + +Change `YOUR_TURNSTILE_SITE_KEY_HERE` to your actual Turnstile site key from the Cloudflare dashboard. + +### 2. Allowed Email Domains + +In `frontend/script.js`, update the `allowedDomains` array: + +```javascript +const allowedDomains = ['example.edu', 'university.edu']; // CONFIGURE: Replace with your allowed email domains +``` + +Replace with your institution's email domains (e.g., `['studenti.polito.it', 'edu.unito.it']`). + +### 3. Backend API Endpoint + +In `frontend/script.js`, update the fetch URL: + +```javascript +const response = await fetch('https://YOUR_BACKEND_API_URL/signup', { // CONFIGURE: Replace with your backend API endpoint +``` + +Replace `YOUR_BACKEND_API_URL` with your actual backend service URL. + +### Summary of Required Changes + +| File | Line/Element | What to Replace | +|------|--------------|-----------------| +| `frontend/index.html` | Turnstile div | `YOUR_TURNSTILE_SITE_KEY_HERE` → your site key | +| `frontend/script.js` | `allowedDomains` array | `['example.edu', ...]` → your domains | +| `frontend/script.js` | `fetch()` URL | `YOUR_BACKEND_API_URL` → your backend URL | + +## Hardcoded Values in script.js + +The following values are embedded in the client-side JavaScript and must be configured before deployment: + +- **Allowed email domains:** Set in `allowedDomains` array +- **Backend API endpoint:** Set in `fetch()` call +- **Turnstile Site Key:** Set in `index.html` `data-sitekey` attribute + +## Run Locally + +Serve the `frontend/` directory with any web server. + +Example with Python: + +```bash +cd frontend +python3 -m http.server 8080 +``` + +Then visit `http://localhost:8080`. + +## Run With Docker + +Build image: + +```bash +docker build -t overleaf-registration-fe . +``` + +Run container: + +```bash +docker run --rm -p 8080:80 overleaf-registration-fe +``` + +Then visit `http://localhost:8080`. + +## Deployment Notes + +- **Configuration Required:** You must update the placeholders in `frontend/index.html` and `frontend/script.js` before deploying (see Configuration section above). +- nginx serves static files from `/usr/share/nginx/html`. +- All routes fall back to `index.html` for single-page behavior. +- No environment variables or build-time configuration needed - all config is hardcoded in client-side files. +- After configuration, rebuild the Docker image to include your changes. + +## Terms of Service + +The embedded ToS modal enforces: +- Non-commercial use only +- No copyrighted material without authorization +- No NSFW, gore, or illegal content +- Users must backup their own work +- No guarantees on service availability or data safety +- Service maintained by volunteers on best-effort basis + +## Privacy Policy + +Located at `frontend/privacy.html` and accessible via link in signup form. + +## License + +This project is licensed under the BSD 3-Clause License - see the [LICENSE](LICENSE) file for details. diff --git a/frontend/.DS_Store b/frontend/.DS_Store new file mode 100644 index 0000000..74d0a29 Binary files /dev/null and b/frontend/.DS_Store differ diff --git a/frontend/fonts/font-awesome-v470-20fd1704ea223900efa9.woff2 b/frontend/fonts/font-awesome-v470-20fd1704ea223900efa9.woff2 new file mode 100644 index 0000000..4d13fc6 Binary files /dev/null and b/frontend/fonts/font-awesome-v470-20fd1704ea223900efa9.woff2 differ diff --git a/frontend/fonts/lato-v2-latin-ext-700-b4fe4204d19d86376b18.woff2 b/frontend/fonts/lato-v2-latin-ext-700-b4fe4204d19d86376b18.woff2 new file mode 100644 index 0000000..2615c85 Binary files /dev/null and b/frontend/fonts/lato-v2-latin-ext-700-b4fe4204d19d86376b18.woff2 differ diff --git a/frontend/fonts/lato-v2-latin-ext-regular-f42ffe0a26eed80e72e2.woff2 b/frontend/fonts/lato-v2-latin-ext-regular-f42ffe0a26eed80e72e2.woff2 new file mode 100644 index 0000000..a4d084b Binary files /dev/null and b/frontend/fonts/lato-v2-latin-ext-regular-f42ffe0a26eed80e72e2.woff2 differ diff --git a/frontend/fonts/merriweather-v21-latin-regular-d9479e8023bef9cbd9bf.woff2 b/frontend/fonts/merriweather-v21-latin-regular-d9479e8023bef9cbd9bf.woff2 new file mode 100644 index 0000000..0998409 Binary files /dev/null and b/frontend/fonts/merriweather-v21-latin-regular-d9479e8023bef9cbd9bf.woff2 differ diff --git a/frontend/index.html b/frontend/index.html new file mode 100644 index 0000000..add3489 --- /dev/null +++ b/frontend/index.html @@ -0,0 +1,125 @@ + + + + AppuntiPolito - Overleaf SignUp + + + + + + + + + + + + + + +
+
+
+
+
+ +
+
+ +
+ +
+
+
+ + +
+
+
+ +
+
+
+
+
+
+
+ + + + + + + + + diff --git a/frontend/main-style-f17f58e57337cfb154da.css b/frontend/main-style-f17f58e57337cfb154da.css new file mode 100644 index 0000000..26fd3e1 --- /dev/null +++ b/frontend/main-style-f17f58e57337cfb154da.css @@ -0,0 +1,71 @@ +@font-face{font-family:Lato;font-style:normal;font-weight:400;src:url(fonts/lato-v2-latin-ext-regular-f42ffe0a26eed80e72e2.woff2) format("woff2"),url(fonts/lato-v2-latin-ext-regular-ddabf82b5d4d1b866907.woff) format("woff")}@font-face{font-family:Lato;font-style:italic;font-weight:400;src:url(fonts/lato-v2-latin-ext-italic-1bc6c436a84acdf2b502.woff2) format("woff2"),url(fonts/lato-v2-latin-ext-italic-39aa466c56f4e0dea659.woff) format("woff")}@font-face{font-family:Lato;font-style:normal;font-weight:700;src:url(fonts/lato-v2-latin-ext-700-b4fe4204d19d86376b18.woff2) format("woff2"),url(fonts/lato-v2-latin-ext-700-f8070493677d71497ccd.woff) format("woff")}@font-face{font-family:Lato;font-style:italic;font-weight:700;src:url(fonts/lato-v2-latin-ext-700italic-ad5dc25ce2697a4ac70a.woff2) format("woff2"),url(fonts/lato-v2-latin-ext-700italic-605cceb154ea64fa2166.woff) format("woff")}@font-face{font-display:fallback;font-family:DM Mono;font-style:normal;font-weight:400;src:url(fonts/DMMono-Regular-cb3a6f61622bf9e8fda5.woff2) format("woff2")}@font-face{font-display:fallback;font-family:DM Mono;font-style:italic;font-weight:400;src:url(fonts/DMMono-Italic-6a66a48fc5945130c738.woff2) format("woff2")}@font-face{font-display:fallback;font-family:DM Mono;font-style:normal;font-weight:500;src:url(fonts/DMMono-Medium-3a940e30f39c63e28f2a.woff2) format("woff2")}@font-face{font-display:fallback;font-family:DM Mono;font-style:italic;font-weight:500;src:url(fonts/DMMono-MediumItalic-06160f094ccd96fa4098.woff2) format("woff2")}@font-face{font-display:fallback;font-family:Noto Sans;font-style:normal;font-weight:400;src:url(fonts/NotoSans-Regular-d5ba5263f927b6a021a1.woff2) format("woff2")}@font-face{font-display:fallback;font-family:Noto Sans;font-style:italic;font-weight:400;src:url(fonts/NotoSans-Italic-0a31a052efc254a3fe3e.woff2) format("woff2")}@font-face{font-display:fallback;font-family:Noto Sans;font-style:normal;font-weight:500;src:url(fonts/NotoSans-Medium-2daf8ee61fc8b9be8d27.woff2) format("woff2")}@font-face{font-display:fallback;font-family:Noto Sans;font-style:italic;font-weight:500;src:url(fonts/NotoSans-MediumItalic-7e6d49e93d6828f9e38b.woff2) format("woff2")}@font-face{font-display:fallback;font-family:Noto Sans;font-style:normal;font-weight:600;src:url(fonts/NotoSans-SemiBold-ec3686a5f671b8ba1438.woff2) format("woff2")}@font-face{font-display:fallback;font-family:Noto Sans;font-style:italic;font-weight:600;src:url(fonts/NotoSans-SemiBoldItalic-94f2cb56bdcbc95d2f27.woff2) format("woff2")}@font-face{font-family:Merriweather;font-style:normal;font-weight:400;src:local("Merriweather Regular"),local("Merriweather-Regular"),url(fonts/merriweather-v21-latin-regular-d9479e8023bef9cbd9bf.woff2) format("woff2"),url(fonts/merriweather-v21-latin-regular-040426f99ff6e00b8650.woff) format("woff")}@font-face{font-family:Merriweather;font-style:italic;font-weight:400;src:local("Merriweather Italic"),local("Merriweather-Italic"),url(fonts/merriweather-v21-latin-italic-2de7bfeaf08fb03d4315.woff2) format("woff2"),url(fonts/merriweather-v21-latin-italic-79db67aca65f5285964a.woff) format("woff")}@font-face{font-family:Merriweather;font-style:normal;font-weight:700;src:local("Merriweather Bold"),local("Merriweather-Bold"),url(fonts/merriweather-v21-latin-700-4b08e01d805fa35d7bf7.woff2) format("woff2"),url(fonts/merriweather-v21-latin-700-22fb8afba4ab1f093b6e.woff) format("woff")}@font-face{font-family:Merriweather;font-style:italic;font-weight:700;src:local("Merriweather Bold Italic"),local("Merriweather-BoldItalic"),url(fonts/merriweather-v21-latin-700italic-cd92541b177652fffb6e.woff2) format("woff2"),url(fonts/merriweather-v21-latin-700italic-f87f3d87cea0dd0979bf.woff) format("woff")}@font-face{font-family:Source Code Pro;font-style:normal;font-weight:400;src:local("Source Code Pro Regular"),local("SourceCodePro-Regular"),url(fonts/source-code-pro-v13-latin-regular-ba66f53e94dde1e31fac.woff2) format("woff2"),url(fonts/source-code-pro-v13-latin-regular-4da4c19319100df7734c.woff) format("woff")}@font-face{font-family:Stix Two Math;src:url(fonts/STIXTwoMath-Regular-8ac84c426b06f86bebf8.woff2) format("woff2")}@font-face{font-family:"Noto Serif";font-stretch:62.5% 100%;font-style:normal;font-weight:200 700;src:url(fonts/NotoSerif[wght]-b0c0bc80d3b68550bd9d.woff2) format("woff2")}@font-face{font-family:"Noto Serif";font-stretch:62.5% 100%;font-style:italic;font-weight:200 700;src:url(fonts/NotoSerif-Italic[wght]-0d09250fcd6e4e7431fe.woff2) format("woff2")}@font-face{font-display:block;font-family:Material Symbols Rounded;font-style:normal;font-weight:400;src:url(fonts/MaterialSymbolsRoundedSlice-162614e95e84ada139d9.woff2) format("woff2")}.material-symbols{word-wrap:normal;font-feature-settings:"liga";-webkit-font-smoothing:antialiased;direction:ltr;display:inline-block;font-family:Material Symbols Rounded;font-size:20px;font-style:normal;font-variation-settings:"FILL" 1,"wght" 400,"GRAD" 0,"opsz" 20;font-weight:400;letter-spacing:normal;line-height:1;text-transform:none;white-space:nowrap}.material-symbols.size-2x{font-size:2em}.material-symbols.rotate-180{transform:rotate(180deg)}:root{--white:#fff;--neutral-10:#f4f5f6;--neutral-20:#e7e9ee;--neutral-30:#d0d5dd;--neutral-40:#afb5c0;--neutral-50:#8d96a5;--neutral-60:#677283;--neutral-70:#495365;--neutral-80:#2f3a4c;--neutral-90:#1b222c;--green-10:#eaf6ef;--green-20:#b8dbc8;--green-30:#86caa5;--green-40:#53b57f;--green-50:#098842;--green-60:#1e6b41;--green-70:#195936;--blue-10:#f1f4f9;--blue-20:#c3d0e3;--blue-30:#97b6e5;--blue-40:#6597e0;--blue-50:#3265b2;--blue-60:#28518f;--blue-70:#214475;--red-10:#f9f1f1;--red-20:#f5beba;--red-30:#e59d9a;--red-40:#e36d66;--red-50:#b83a33;--red-60:#942f2a;--red-70:#782722;--yellow-10:#fcf1e3;--yellow-20:#fcc483;--yellow-30:#f7a445;--yellow-40:#de8014;--yellow-50:#8f5514;--yellow-60:#7a4304;--yellow-70:#633a0b;--ol-blue:#3265b2;--ol-blue-gray-0:#f4f5f6;--ol-blue-gray-1:#e7e9ee;--ol-blue-gray-2:#afb5c0;--ol-blue-gray-3:#677283;--ol-blue-gray-4:#495365;--ol-blue-gray-5:#2f3a4c;--ol-blue-gray-6:#1b222c;--input-color:#1b222c;--input-border:#677283;--input-border-radius:4px;--input-border-focus:#3265b2;--input-border-danger:#b83a33;--input-shadow-danger-color:rgba(184,58,51,.5);--btn-border-radius-base:9999px;--btn-default-bg:#495365;--line-height-base:1.5625;--toolbar-btn-color:#fff;--editor-toolbar-bg:#2f3a4c;--premium-gradient:linear-gradient(246deg,#214475,#254c84 29%,#6597e0 97%);--ceil:#9597c9;--caramel:#f9d38f;--dark-jungle-green:#0f271a;--malachite:#13c965;--sapphire-blue:#4354a3;--sapphire-blue-dark:#3c4c93;--vivid-tangerine:#f1a695;--spacing-00:0px;--spacing-01:2px;--spacing-02:4px;--spacing-03:6px;--spacing-04:8px;--spacing-05:12px;--spacing-06:16px;--spacing-07:20px;--spacing-08:24px;--spacing-09:32px;--spacing-10:40px;--spacing-11:48px;--spacing-12:56px;--spacing-13:64px;--spacing-14:72px;--spacing-15:80px;--spacing-16:96px;--header-height:68px;--font-size-01:0.75rem;--font-size-02:0.875rem;--font-size-03:1rem;--font-size-04:1.125rem;--font-size-05:1.25rem;--font-size-06:1.5rem;--font-size-07:1.875rem;--font-size-08:2.25rem;--font-size-09:3rem;--font-size-10:3.25rem;--font-size-11:3.75rem;--font-size-12:4.5rem;--font-size-13:6rem;--font-size-body-base:1rem;--line-height-01:1rem;--line-height-02:1.25rem;--line-height-03:1.5rem;--line-height-04:1.75rem;--line-height-05:2rem;--line-height-06:2.5rem;--line-height-07:3rem;--line-height-08:4rem;--line-height-09:4.25rem;--line-height-10:5rem;--line-height-11:6rem;--line-height-12:8rem;--border-radius-base-new:4px;--border-radius-medium-new:8px;--border-radius-large-new:16px;--border-radius-full-new:9999px;--border-width-sm:1px;--border-width-base:3px}.color-row{display:flex;justify-content:space-between}.color-box{background:#fff;border-radius:4px;margin:10px 4px;width:16.666%}.color-box.ol-blue-gray-1 .color-swatch{background-color:#e7e9ee}.color-box.ol-blue-gray-1 .color-less-var:before{content:"@ol-blue-gray-1"}.color-box.ol-blue-gray-1 .color-hex-val:before{content:"#e7e9ee"}.color-box.ol-blue-gray-1 .color-rgb-val:before{content:"rgb(231, 233, 238)";font-size:10px}.color-box.ol-blue-gray-2 .color-swatch{background-color:#afb5c0}.color-box.ol-blue-gray-2 .color-less-var:before{content:"@ol-blue-gray-2"}.color-box.ol-blue-gray-2 .color-hex-val:before{content:"#afb5c0"}.color-box.ol-blue-gray-2 .color-rgb-val:before{content:"rgb(175, 181, 192)";font-size:10px}.color-box.ol-blue-gray-3 .color-swatch{background-color:#677283}.color-box.ol-blue-gray-3 .color-less-var:before{content:"@ol-blue-gray-3"}.color-box.ol-blue-gray-3 .color-hex-val:before{content:"#677283"}.color-box.ol-blue-gray-3 .color-rgb-val:before{content:"rgb(103, 114, 131)";font-size:10px}.color-box.ol-blue-gray-4 .color-swatch{background-color:#495365}.color-box.ol-blue-gray-4 .color-less-var:before{content:"@ol-blue-gray-4"}.color-box.ol-blue-gray-4 .color-hex-val:before{content:"#495365"}.color-box.ol-blue-gray-4 .color-rgb-val:before{content:"rgb(73, 83, 101)";font-size:10px}.color-box.ol-blue-gray-5 .color-swatch{background-color:#2f3a4c}.color-box.ol-blue-gray-5 .color-less-var:before{content:"@ol-blue-gray-5"}.color-box.ol-blue-gray-5 .color-hex-val:before{content:"#2f3a4c"}.color-box.ol-blue-gray-5 .color-rgb-val:before{content:"rgb(47, 58, 76)";font-size:10px}.color-box.ol-blue-gray-6 .color-swatch{background-color:#1b222c}.color-box.ol-blue-gray-6 .color-less-var:before{content:"@ol-blue-gray-6"}.color-box.ol-blue-gray-6 .color-hex-val:before{content:"#1b222c"}.color-box.ol-blue-gray-6 .color-rgb-val:before{content:"rgb(27, 34, 44)";font-size:10px}.color-box.ol-green .color-swatch{background-color:#098842}.color-box.ol-green .color-less-var:before{content:"@ol-green"}.color-box.ol-green .color-hex-val:before{content:"#098842"}.color-box.ol-green .color-rgb-val:before{content:"rgb(9, 136, 66)";font-size:10px}.color-box.ol-dark-green .color-swatch{background-color:#195936}.color-box.ol-dark-green .color-less-var:before{content:"@ol-dark-green"}.color-box.ol-dark-green .color-hex-val:before{content:"#195936"}.color-box.ol-dark-green .color-rgb-val:before{content:"rgb(25, 89, 54)";font-size:10px}.color-box.ol-blue .color-swatch{background-color:#3265b2}.color-box.ol-blue .color-less-var:before{content:"@ol-blue"}.color-box.ol-blue .color-hex-val:before{content:"#3265b2"}.color-box.ol-blue .color-rgb-val:before{content:"rgb(50, 101, 178)";font-size:10px}.color-box.ol-dark-blue .color-swatch{background-color:#28518f}.color-box.ol-dark-blue .color-less-var:before{content:"@ol-dark-blue"}.color-box.ol-dark-blue .color-hex-val:before{content:"#28518f"}.color-box.ol-dark-blue .color-rgb-val:before{content:"rgb(40, 81, 143)";font-size:10px}.color-box.ol-red .color-swatch{background-color:#b83a33}.color-box.ol-red .color-less-var:before{content:"@ol-red"}.color-box.ol-red .color-hex-val:before{content:"#b83a33"}.color-box.ol-red .color-rgb-val:before{content:"rgb(184, 58, 51)";font-size:10px}.color-box.ol-dark-red .color-swatch{background-color:#942f2a}.color-box.ol-dark-red .color-less-var:before{content:"@ol-dark-red"}.color-box.ol-dark-red .color-hex-val:before{content:"#942f2a"}.color-box.ol-dark-red .color-rgb-val:before{content:"rgb(148, 47, 42)";font-size:10px}.color-swatch{border-radius:4px;height:100px;margin:10px auto;width:100px}.color-label{display:flex;flex-direction:column;margin:0 3px 10px}.color-label pre{font-size:12px;line-height:1.8em;margin:0 auto} +/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:FontAwesome;font-style:normal;font-weight:400;src:url(fonts/font-awesome-v470-20fd1704ea223900efa9.woff2) format("woff2"),url(fonts/font-awesome-v470-f691f37e57f04c152e23.woff) format("woff")}.fa{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{text-align:center;width:1.28571429em}.fa-ul{list-style-type:none;margin-left:2.14285714em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2.14285714em;position:absolute;text-align:center;top:.14285714em;width:2.14285714em}.fa-li.fa-lg{left:-1.85714286em}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{animation:fa-spin 2s linear infinite}.fa-pulse{animation:fa-spin 1s steps(8) infinite}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";transform:scaleY(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-close:before,.fa-remove:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-repeat:before,.fa-rotate-right:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-exclamation-triangle:before,.fa-warning:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-floppy-o:before,.fa-save:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-bolt:before,.fa-flash:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-chain-broken:before,.fa-unlink:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:"\f150"}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:"\f151"}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:"\f152"}.fa-eur:before,.fa-euro:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-inr:before,.fa-rupee:before{content:"\f156"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:"\f157"}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:"\f158"}.fa-krw:before,.fa-won:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-try:before,.fa-turkish-lira:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-bank:before,.fa-institution:before,.fa-university:before{content:"\f19c"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:"\f1c5"}.fa-file-archive-o:before,.fa-file-zip-o:before{content:"\f1c6"}.fa-file-audio-o:before,.fa-file-sound-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:"\f1d0"}.fa-empire:before,.fa-ge:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-paper-plane:before,.fa-send:before{content:"\f1d8"}.fa-paper-plane-o:before,.fa-send-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-bed:before,.fa-hotel:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-y-combinator:before,.fa-yc:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-television:before,.fa-tv:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:"\f2a3"}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-address-card:before,.fa-vcard:before{content:"\f2bb"}.fa-address-card-o:before,.fa-vcard-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}.premium-background,.premium-text{background-image:linear-gradient(246deg,#214475,#254c84 29%,#6597e0 97%)}.premium-text{-webkit-text-fill-color:transparent;background-clip:text;-webkit-background-clip:text;background-color:#214475;color:#fff}.form-control:focus,.form-control:focus-visible,.input-focus-style,.plans-new-design .plans-new-group-member-picker .plans-new-group-member-picker-form li input[type=radio]:focus+p,.recurly-element-card.recurly-element-focus,.tags-input .tags:focus,.tags-input .tags:focus-visible,.tags-input .tags:focus-within,.website-redesign .inline-green-link:focus{border-color:#3265b2;box-shadow:0 0 0 2px #97b6e5;outline:0}.no-outline-ring-on-click:focus,.no-outline-ring-on-click:focus:active{outline:0}.reset-button{-webkit-appearance:none;background:transparent;border:0;cursor:pointer;padding:0} +/*! normalize.css v3.0.0 | MIT License | git.io/normalize */html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;font-family:sans-serif}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none!important}a{background:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}@media print{*{background:transparent!important;box-shadow:none!important;color:#000!important;text-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff!important}.navbar{display:none}.table td,.table th{background-color:#fff!important}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.gallery-official,.gallery-top-pick-badge,.label,.phase-badge{border:1px solid #000}.table{border-collapse:collapse!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}} +/*! + * ui-select + * http://github.com/angular-ui/ui-select + * Version: 0.19.7 - 2017-04-15T14:28:36.790Z + * License: MIT + */.ui-select-highlight{font-weight:700}.ui-select-offscreen{clip:rect(0 0 0 0)!important;border:0!important;height:1px!important;left:0!important;margin:0!important;outline:0!important;overflow:hidden!important;padding:0!important;position:absolute!important;top:0!important;width:1px!important}.ui-select-choices-row--highlighted,.ui-select-choices-row:hover{background-color:#f5f5f5}.ng-dirty.ng-invalid>a.select2-choice{border-color:#d44950}.select2-result-single{padding-left:0}.select-locked>.ui-select-match-close,.select2-locked>.select2-search-choice-close{display:none}body>.select2-container.open{z-index:9999}.ui-select-container.select2.direction-up .ui-select-match,.ui-select-container[theme=select2].direction-up .ui-select-match{border-radius:4px;border-top-left-radius:0;border-top-right-radius:0}.ui-select-container.select2.direction-up .ui-select-dropdown,.ui-select-container[theme=select2].direction-up .ui-select-dropdown{border-radius:4px;border-bottom-left-radius:0;border-bottom-right-radius:0;border-top-style:solid;border-top-width:1px;box-shadow:0 -4px 8px rgba(0,0,0,.25);margin-top:-4px}.ui-select-container.select2.direction-up .ui-select-dropdown .select2-search,.ui-select-container[theme=select2].direction-up .ui-select-dropdown .select2-search{margin-top:4px}.ui-select-container.select2.direction-up.select2-dropdown-open .ui-select-match,.ui-select-container[theme=select2].direction-up.select2-dropdown-open .ui-select-match{border-bottom-color:#5897fb}.ui-select-container[theme=select2] .ui-select-dropdown .ui-select-search-hidden,.ui-select-container[theme=select2] .ui-select-dropdown .ui-select-search-hidden input{border:0;height:0;margin:0;min-height:0;opacity:0;padding:0}.selectize-input.selectize-focus{border-color:#007fbb!important}.selectize-control.single>.selectize-input>input{width:100%}.selectize-control.multi>.selectize-input>input{margin:0!important}.selectize-control>.selectize-dropdown{width:100%}.ng-dirty.ng-invalid>div.selectize-input{border-color:#d44950}.ui-select-container[theme=selectize].direction-up .ui-select-dropdown{box-shadow:0 -4px 8px rgba(0,0,0,.25);margin-top:-2px}.ui-select-container[theme=selectize] input.ui-select-search-hidden{border:0;height:0;margin:0;min-height:0;opacity:0;padding:0;width:0}.btn-default-focus{background-color:#ebebeb;border-color:#adadad;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);color:#333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;text-decoration:none}.ui-select-bootstrap .ui-select-toggle{position:relative}.ui-select-bootstrap .ui-select-toggle>.caret{height:10px;margin-top:-2px;position:absolute;right:10px;top:50%}.input-group>.ui-select-bootstrap.dropdown{position:static}.input-group>.ui-select-bootstrap>input.ui-select-search.form-control{border-radius:4px;border-bottom-right-radius:0;border-top-right-radius:0}.input-group>.ui-select-bootstrap>input.ui-select-search.form-control.direction-up{border-radius:4px!important;border-bottom-right-radius:0!important;border-top-right-radius:0!important}.ui-select-bootstrap .ui-select-search-hidden{border:0;height:0;margin:0;min-height:0;opacity:0;padding:0}.ui-select-bootstrap>.ui-select-match>.btn{text-align:left!important}.ui-select-bootstrap>.ui-select-match>.caret{position:absolute;right:15px;top:45%}.ui-select-bootstrap>.ui-select-choices,.ui-select-bootstrap>.ui-select-no-choice{height:auto;margin-top:-1px;max-height:200px;overflow-x:hidden;width:100%}body>.ui-select-bootstrap.open{z-index:1000}.ui-select-multiple.ui-select-bootstrap{height:auto;padding:3px 3px 0 3px}.ui-select-multiple.ui-select-bootstrap input.ui-select-search{background-color:transparent!important;border:none;height:1.666666em;margin-bottom:3px;outline:none}.ui-select-multiple.ui-select-bootstrap .ui-select-match .close{font-size:1.6em;line-height:.75}.ui-select-multiple.ui-select-bootstrap .ui-select-match-item{margin:0 3px 3px 0;outline:0}.ui-select-multiple .ui-select-match-item{position:relative}.ui-select-multiple .ui-select-match-item.dropping .ui-select-match-close{pointer-events:none}.ui-select-multiple:hover .ui-select-match-item.dropping-before:before{border-left:1px solid #428bca;content:"";height:100%;margin-right:2px;position:absolute;right:100%;top:0}.ui-select-multiple:hover .ui-select-match-item.dropping-after:after{border-right:1px solid #428bca;content:"";height:100%;left:100%;margin-left:2px;position:absolute;top:0}.ui-select-bootstrap .ui-select-choices-row>span{clear:both;color:#333;cursor:pointer;display:block;font-weight:400;line-height:1.42857143;padding:3px 20px;white-space:nowrap}.ui-select-title{font-size:14px;padding:3px 20px}.ui-select-bootstrap .ui-select-choices-row>span:focus,.ui-select-bootstrap .ui-select-choices-row>span:hover{background-color:#f5f5f5;color:#262626;text-decoration:none}.ui-select-bootstrap .ui-select-choices-row.active>span{background-color:#428bca;color:#fff;outline:0;text-decoration:none}.ui-select-bootstrap .ui-select-choices-row.active.disabled>span,.ui-select-bootstrap .ui-select-choices-row.disabled>span{background-color:#fff;color:#777;cursor:not-allowed}.ui-select-match.ng-hide-add,.ui-select-search.ng-hide-add{display:none!important}.ui-select-bootstrap.ng-dirty.ng-invalid>button.btn.ui-select-match{border-color:#d44950}.ui-select-container[theme=bootstrap].direction-up .ui-select-dropdown{box-shadow:0 -4px 8px rgba(0,0,0,.25)}.ui-select-bootstrap .ui-select-match-text{padding-right:1em;width:100%}.ui-select-bootstrap .ui-select-match-text span{display:inline-block;overflow:hidden;width:100%}.ui-select-bootstrap .ui-select-toggle>a.btn{height:10px;margin-top:-2px;position:absolute;right:10px}.ui-select-refreshing.glyphicon{padding:8px 27px;position:absolute;right:0}@keyframes ui-select-spin{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.ui-select-spin{animation:ui-select-spin 2s linear infinite}.ui-select-refreshing.ng-animate{-webkit-animation:0s none}.website-redesign video{clip-path:inset(0 0)}*,:after,:before{box-sizing:border-box}html{-webkit-tap-highlight-color:rgba(0,0,0,0);height:100%}html.fixed-size-document{position:fixed;width:100%}body{background-color:#fff;color:#495365;font-family:Lato,sans-serif;font-size:16px;line-height:1.5625;min-height:100%;position:relative}body>.content{min-height:100vh;padding-top:93px}body.thin-footer .container{padding-bottom:50px}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}textarea{resize:vertical}a{color:#3265b2;text-decoration:none}a:focus,a:hover{color:#28518f;text-decoration:underline}a:focus{outline:none}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;height:auto;max-width:100%}.img-rounded{border-radius:5px}.img-thumbnail{background-color:#fff;border:1px solid #ddd;border-radius:3px;display:inline-block;height:auto;line-height:1.5625;max-width:100%;padding:4px;transition:all .2s ease-in-out}hr{border:0;border-top:1px solid #e7e9ee;margin-bottom:25px;margin-top:25px}hr.thin{margin-bottom:12.5px;margin-top:12.5px}.sr-only{clip:rect(0,0,0,0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}@media (max-width:767px){.sr-only-xs{clip:rect(0,0,0,0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}}.content{padding-bottom:25px;padding-top:25px}.content-alt{background-color:#f4f5f6}.row-spaced{margin-top:25px}.row-spaced-small{margin-top:12.5px}.row-spaced-large{margin-top:50px}.row-spaced-extra-large{margin-top:100px}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{color:#1b222c;font-family:Merriweather,serif;font-weight:500;line-height:1.35}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{color:#afb5c0;font-weight:400;line-height:1}.h1,.h2,.h3,h1,h2,h3{margin-bottom:12.5px;margin-top:25px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:70%}.h4,.h5,.h6,h4,h5,h6{margin-bottom:12.5px;margin-top:12.5px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:32px}.h2,h2{font-size:25px}.h3,h3{font-size:20px}.h4,h4{font-size:18px}.h5,h5{font-size:16px}.h6,h6{font-size:14px}.ui-heading{font-family:Lato,sans-serif;font-size:18px;font-weight:700}p{margin:0 0 12.5px}.lead{font-size:18px;font-weight:200;line-height:1.4;margin-bottom:25px}@media (min-width:768px){.lead{font-size:24px}}.small,small{color:#495365}.login-register-hr-text-container,.small,.text-small,small{font-size:90%}cite{font-style:normal}.text-left,.text-start{text-align:left}.text-end,.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-right-to-left{direction:rtl}@media (min-width:992px){.text-lg-end,.text-md-right{text-align:right}}.text-muted{color:#afb5c0}.text-primary{color:#098842}a.text-primary:hover{color:#06582b}.text-success{color:#098842}a.text-success:hover{color:#06582b}.text-info{color:#495365}a.text-info:hover{color:#343b47}.text-warning{color:#de8014}a.text-warning:hover{color:#af6510}.text-danger{color:#b83a33}a.text-danger:hover{color:#902d28}.text-serif{font-family:Merriweather,serif}.text-sans-serif{font-family:Lato,sans-serif}.text-centered{text-align:center}.text-capitalize{text-transform:capitalize}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-italic{font-style:italic}.bg-primary{background-color:#098842;color:#fff}a.bg-primary:hover{background-color:#06582b}.bg-success{background-color:#98f8c3}a.bg-success:hover{background-color:#68f5a7}.bg-info{background-color:#dee7f6}a.bg-info:hover{background-color:#b6cbeb}.bg-warning{background-color:#fceddc}a.bg-warning:hover{background-color:#f8d5ad}.bg-danger{background-color:#fbf0ef}a.bg-danger:hover{background-color:#f0cac7}.page-header,.page-separator,.template-section-header{border-bottom:1px solid #e7e9ee;margin:25px 0 25px;padding-bottom:11.5px}ol,ul{margin-bottom:12.5px;margin-top:0}.list-no-margin-bottom,ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-inline,.list-unstyled{list-style:none;padding-left:0}.list-inline{margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-bottom:25px;margin-top:0}dd,dt{line-height:1.5625}dt{font-weight:700}dd{margin-left:0}@media (min-width:992px){.dl-horizontal dt{clear:left;float:left;overflow:hidden;text-align:right;text-overflow:ellipsis;white-space:nowrap;width:160px}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{border-bottom:1px dotted #afb5c0;cursor:help}.initialism{font-size:90%;text-transform:uppercase}blockquote{border-left:5px solid #d0d5dd;font-size:18px;margin:0 0 25px;padding:12.5px 25px;quotes:"\201C" "\201D" "\2018" "\2019"}blockquote:before{color:#d0d5dd;content:open-quote;font-size:54px;line-height:.1em;margin-right:.25em;vertical-align:-.4em}blockquote:after{content:close-quote;display:inherit;height:0;visibility:hidden}blockquote p{display:inline}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{color:#677283;display:block;font-size:80%;line-height:1.5625;padding-top:12.5px}blockquote .small:before,blockquote footer:before,blockquote small:before{content:"\2014 \00A0"}.blockquote-reverse{border-left:0;border-right:5px solid #d0d5dd;padding-left:0;padding-right:15px;text-align:right}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before{content:""}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after{content:"\00A0 \2014"}address{font-style:normal;line-height:1.5625;margin-bottom:25px}.orange-text{color:#7a4304}.container,.ol-tabs .tab-content{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container,.ol-tabs .tab-content{width:750px}}@media (min-width:992px){.container,.ol-tabs .tab-content{width:970px}}@media (min-width:1200px){.container,.ol-tabs .tab-content{width:1170px}}.container-fluid{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{min-height:1px;padding-left:15px;padding-right:15px;position:relative}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:0}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:0}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:0}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:0}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:0}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:0}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:0}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:0}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}.website-redesign .plans-new-design .container,.website-redesign .plans-page .container{margin-left:auto;margin-right:auto;padding-left:16px;padding-right:16px}@media (min-width:768px){.website-redesign .plans-new-design .container,.website-redesign .plans-page .container{width:750px}}@media (min-width:992px){.website-redesign .plans-new-design .container,.website-redesign .plans-page .container{width:970px}}@media (min-width:1200px){.website-redesign .plans-new-design .container,.website-redesign .plans-page .container{width:1170px}}@media (min-width:1400px){.website-redesign .plans-new-design .container,.website-redesign .plans-page .container{width:1280px}}.website-redesign .plans-new-design .row,.website-redesign .plans-page .row{margin-left:-16px;margin-right:-16px}.website-redesign .plans-new-design .col-lg-1,.website-redesign .plans-new-design .col-lg-10,.website-redesign .plans-new-design .col-lg-11,.website-redesign .plans-new-design .col-lg-12,.website-redesign .plans-new-design .col-lg-2,.website-redesign .plans-new-design .col-lg-3,.website-redesign .plans-new-design .col-lg-4,.website-redesign .plans-new-design .col-lg-5,.website-redesign .plans-new-design .col-lg-6,.website-redesign .plans-new-design .col-lg-7,.website-redesign .plans-new-design .col-lg-8,.website-redesign .plans-new-design .col-lg-9,.website-redesign .plans-new-design .col-md-1,.website-redesign .plans-new-design .col-md-10,.website-redesign .plans-new-design .col-md-11,.website-redesign .plans-new-design .col-md-12,.website-redesign .plans-new-design .col-md-2,.website-redesign .plans-new-design .col-md-3,.website-redesign .plans-new-design .col-md-4,.website-redesign .plans-new-design .col-md-5,.website-redesign .plans-new-design .col-md-6,.website-redesign .plans-new-design .col-md-7,.website-redesign .plans-new-design .col-md-8,.website-redesign .plans-new-design .col-md-9,.website-redesign .plans-new-design .col-sm-1,.website-redesign .plans-new-design .col-sm-10,.website-redesign .plans-new-design .col-sm-11,.website-redesign .plans-new-design .col-sm-12,.website-redesign .plans-new-design .col-sm-2,.website-redesign .plans-new-design .col-sm-3,.website-redesign .plans-new-design .col-sm-4,.website-redesign .plans-new-design .col-sm-5,.website-redesign .plans-new-design .col-sm-6,.website-redesign .plans-new-design .col-sm-7,.website-redesign .plans-new-design .col-sm-8,.website-redesign .plans-new-design .col-sm-9,.website-redesign .plans-new-design .col-xs-1,.website-redesign .plans-new-design .col-xs-10,.website-redesign .plans-new-design .col-xs-11,.website-redesign .plans-new-design .col-xs-12,.website-redesign .plans-new-design .col-xs-2,.website-redesign .plans-new-design .col-xs-3,.website-redesign .plans-new-design .col-xs-4,.website-redesign .plans-new-design .col-xs-5,.website-redesign .plans-new-design .col-xs-6,.website-redesign .plans-new-design .col-xs-7,.website-redesign .plans-new-design .col-xs-8,.website-redesign .plans-new-design .col-xs-9,.website-redesign .plans-page .col-lg-1,.website-redesign .plans-page .col-lg-10,.website-redesign .plans-page .col-lg-11,.website-redesign .plans-page .col-lg-12,.website-redesign .plans-page .col-lg-2,.website-redesign .plans-page .col-lg-3,.website-redesign .plans-page .col-lg-4,.website-redesign .plans-page .col-lg-5,.website-redesign .plans-page .col-lg-6,.website-redesign .plans-page .col-lg-7,.website-redesign .plans-page .col-lg-8,.website-redesign .plans-page .col-lg-9,.website-redesign .plans-page .col-md-1,.website-redesign .plans-page .col-md-10,.website-redesign .plans-page .col-md-11,.website-redesign .plans-page .col-md-12,.website-redesign .plans-page .col-md-2,.website-redesign .plans-page .col-md-3,.website-redesign .plans-page .col-md-4,.website-redesign .plans-page .col-md-5,.website-redesign .plans-page .col-md-6,.website-redesign .plans-page .col-md-7,.website-redesign .plans-page .col-md-8,.website-redesign .plans-page .col-md-9,.website-redesign .plans-page .col-sm-1,.website-redesign .plans-page .col-sm-10,.website-redesign .plans-page .col-sm-11,.website-redesign .plans-page .col-sm-12,.website-redesign .plans-page .col-sm-2,.website-redesign .plans-page .col-sm-3,.website-redesign .plans-page .col-sm-4,.website-redesign .plans-page .col-sm-5,.website-redesign .plans-page .col-sm-6,.website-redesign .plans-page .col-sm-7,.website-redesign .plans-page .col-sm-8,.website-redesign .plans-page .col-sm-9,.website-redesign .plans-page .col-xs-1,.website-redesign .plans-page .col-xs-10,.website-redesign .plans-page .col-xs-11,.website-redesign .plans-page .col-xs-12,.website-redesign .plans-page .col-xs-2,.website-redesign .plans-page .col-xs-3,.website-redesign .plans-page .col-xs-4,.website-redesign .plans-page .col-xs-5,.website-redesign .plans-page .col-xs-6,.website-redesign .plans-page .col-xs-7,.website-redesign .plans-page .col-xs-8,.website-redesign .plans-page .col-xs-9{min-height:1px;padding-left:16px;padding-right:16px;position:relative}del:after,del:before{clip:rect(1px,1px,1px,1px);clip-path:inset(100%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}del:before{content:" [deletion start] "}del:after{content:" [deletion end] "}.m-0{margin:0!important}.ms-0{margin-left:0!important}.me-0{margin-right:0!important}.mt-0{margin-top:0!important}.mb-0{margin-bottom:0!important}.mx-0{margin-left:0!important;margin-right:0!important}.my-0{margin-bottom:0!important;margin-top:0!important}.m-n0{margin:0!important}.ms-n0{margin-left:0!important}.me-n0{margin-right:0!important}.mt-n0{margin-top:0!important}.mb-n0{margin-bottom:0!important}.mx-n0{margin-left:0!important;margin-right:0!important}.my-n0{margin-bottom:0!important;margin-top:0!important}.p-0{padding:0!important}.ps-0{padding-left:0!important}.pe-0{padding-right:0!important}.pt-0{padding-top:0!important}.pb-0{padding-bottom:0!important}.px-0{padding-left:0!important;padding-right:0!important}.py-0{padding-bottom:0!important;padding-top:0!important}.m-1{margin:5px!important}.ms-1{margin-left:5px!important}.me-1{margin-right:5px!important}.mt-1{margin-top:5px!important}.mb-1{margin-bottom:5px!important}.mx-1{margin-left:5px!important;margin-right:5px!important}.my-1{margin-bottom:5px!important;margin-top:5px!important}.m-n1{margin:-5px!important}.ms-n1{margin-left:-5px!important}.me-n1{margin-right:-5px!important}.mt-n1{margin-top:-5px!important}.mb-n1{margin-bottom:-5px!important}.mx-n1{margin-left:-5px!important;margin-right:-5px!important}.my-n1{margin-bottom:-5px!important;margin-top:-5px!important}.p-1{padding:5px!important}.ps-1{padding-left:5px!important}.pe-1{padding-right:5px!important}.pt-1{padding-top:5px!important}.pb-1{padding-bottom:5px!important}.px-1{padding-left:5px!important;padding-right:5px!important}.py-1{padding-bottom:5px!important;padding-top:5px!important}.m-2{margin:10px!important}.ms-2{margin-left:10px!important}.me-2{margin-right:10px!important}.mt-2{margin-top:10px!important}.mb-2{margin-bottom:10px!important}.mx-2{margin-left:10px!important;margin-right:10px!important}.my-2{margin-bottom:10px!important;margin-top:10px!important}.m-n2{margin:-10px!important}.ms-n2{margin-left:-10px!important}.me-n2{margin-right:-10px!important}.mt-n2{margin-top:-10px!important}.mb-n2{margin-bottom:-10px!important}.mx-n2{margin-left:-10px!important;margin-right:-10px!important}.my-n2{margin-bottom:-10px!important;margin-top:-10px!important}.p-2{padding:10px!important}.ps-2{padding-left:10px!important}.pe-2{padding-right:10px!important}.pt-2{padding-top:10px!important}.pb-2{padding-bottom:10px!important}.px-2{padding-left:10px!important;padding-right:10px!important}.py-2{padding-bottom:10px!important;padding-top:10px!important}.m-3{margin:20px!important}.ms-3{margin-left:20px!important}.me-3{margin-right:20px!important}.mt-3{margin-top:20px!important}.mb-3{margin-bottom:20px!important}.mx-3{margin-left:20px!important;margin-right:20px!important}.my-3{margin-bottom:20px!important;margin-top:20px!important}.m-n3{margin:-20px!important}.ms-n3{margin-left:-20px!important}.me-n3{margin-right:-20px!important}.mt-n3{margin-top:-20px!important}.mb-n3{margin-bottom:-20px!important}.mx-n3{margin-left:-20px!important;margin-right:-20px!important}.my-n3{margin-bottom:-20px!important;margin-top:-20px!important}.p-3{padding:20px!important}.ps-3{padding-left:20px!important}.pe-3{padding-right:20px!important}.pt-3{padding-top:20px!important}.pb-3{padding-bottom:20px!important}.px-3{padding-left:20px!important;padding-right:20px!important}.py-3{padding-bottom:20px!important;padding-top:20px!important}.m-4{margin:30px!important}.ms-4{margin-left:30px!important}.me-4{margin-right:30px!important}.mt-4{margin-top:30px!important}.mb-4{margin-bottom:30px!important}.mx-4{margin-left:30px!important;margin-right:30px!important}.my-4{margin-bottom:30px!important;margin-top:30px!important}.m-n4{margin:-30px!important}.ms-n4{margin-left:-30px!important}.me-n4{margin-right:-30px!important}.mt-n4{margin-top:-30px!important}.mb-n4{margin-bottom:-30px!important}.mx-n4{margin-left:-30px!important;margin-right:-30px!important}.my-n4{margin-bottom:-30px!important;margin-top:-30px!important}.p-4{padding:30px!important}.ps-4{padding-left:30px!important}.pe-4{padding-right:30px!important}.pt-4{padding-top:30px!important}.pb-4{padding-bottom:30px!important}.px-4{padding-left:30px!important;padding-right:30px!important}.py-4{padding-bottom:30px!important;padding-top:30px!important}.m-5{margin:40px!important}.ms-5{margin-left:40px!important}.me-5{margin-right:40px!important}.mt-5{margin-top:40px!important}.mb-5{margin-bottom:40px!important}.mx-5{margin-left:40px!important;margin-right:40px!important}.my-5{margin-bottom:40px!important;margin-top:40px!important}.m-n5{margin:-40px!important}.ms-n5{margin-left:-40px!important}.me-n5{margin-right:-40px!important}.mt-n5{margin-top:-40px!important}.mb-n5{margin-bottom:-40px!important}.mx-n5{margin-left:-40px!important;margin-right:-40px!important}.my-n5{margin-bottom:-40px!important;margin-top:-40px!important}.p-5{padding:40px!important}.ps-5{padding-left:40px!important}.pe-5{padding-right:40px!important}.pt-5{padding-top:40px!important}.pb-5{padding-bottom:40px!important}.px-5{padding-left:40px!important;padding-right:40px!important}.py-5{padding-bottom:40px!important;padding-top:40px!important}.m-6{margin:50px!important}.ms-6{margin-left:50px!important}.me-6{margin-right:50px!important}.mt-6{margin-top:50px!important}.mb-6{margin-bottom:50px!important}.mx-6{margin-left:50px!important;margin-right:50px!important}.my-6{margin-bottom:50px!important;margin-top:50px!important}.m-n6{margin:-50px!important}.ms-n6{margin-left:-50px!important}.me-n6{margin-right:-50px!important}.mt-n6{margin-top:-50px!important}.mb-n6{margin-bottom:-50px!important}.mx-n6{margin-left:-50px!important;margin-right:-50px!important}.my-n6{margin-bottom:-50px!important;margin-top:-50px!important}.p-6{padding:50px!important}.ps-6{padding-left:50px!important}.pe-6{padding-right:50px!important}.pt-6{padding-top:50px!important}.pb-6{padding-bottom:50px!important}.px-6{padding-left:50px!important;padding-right:50px!important}.py-6{padding-bottom:50px!important;padding-top:50px!important}.m-auto{margin:auto!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.my-auto{margin-bottom:auto!important;margin-top:auto!important}.ms-auto{margin-left:auto!important}.me-auto{margin-right:auto!important}.mt-auto{margin-top:auto!important}.mb-auto{margin-bottom:auto!important}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.ol-tabs .tab-content:after,.ol-tabs .tab-content:before,.row:after,.row:before,.site-footer-content:after,.site-footer-content:before,.website-redesign .plans-new-design .container:after,.website-redesign .plans-new-design .container:before,.website-redesign .plans-new-design .row:after,.website-redesign .plans-new-design .row:before,.website-redesign .plans-page .container:after,.website-redesign .plans-page .container:before,.website-redesign .plans-page .row:after,.website-redesign .plans-page .row:before{content:" ";display:table}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.form-horizontal .form-group:after,.modal-footer:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.ol-tabs .tab-content:after,.row:after,.site-footer-content:after,.website-redesign .plans-new-design .container:after,.website-redesign .plans-new-design .row:after,.website-redesign .plans-page .container:after,.website-redesign .plans-page .row:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{background-color:transparent;border:0;color:transparent;font:0/0 a;text-shadow:none}.hidden{display:none!important;visibility:hidden!important}.affix{position:fixed}.w-100{width:100%}.min-vh-100{min-height:100vh}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ol-overlay{position:absolute;z-index:1}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}.hidden-print{display:none!important}}@container (max-width: 480px){.hidden-xs-container{display:none!important}}@container (max-width: 768px){.hidden-sm-container{display:none!important}}@container (max-width: 992px){.hidden-md-container{display:none!important}}table{background-color:transparent;max-width:100%}th{text-align:left}.table{margin-bottom:25px;width:100%}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{border-top:1px solid #e7e9ee;line-height:1.5625;padding:8px;vertical-align:top}.table>thead>tr>th{border-bottom:2px solid #e7e9ee;vertical-align:bottom}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #e7e9ee}.table .table{background-color:#fff}.table-fixed{word-wrap:break-word;margin-bottom:25px;table-layout:fixed;width:100%}.table-fixed>tbody>tr>td,.table-fixed>tbody>tr>th,.table-fixed>tfoot>tr>td,.table-fixed>tfoot>tr>th,.table-fixed>thead>tr>td,.table-fixed>thead>tr>th{border-top:1px solid #e7e9ee;line-height:1.5625;padding:8px;vertical-align:top}.table-fixed>thead>tr>th{border-bottom:2px solid #e7e9ee;vertical-align:bottom}.table-fixed>caption+thead>tr:first-child>td,.table-fixed>caption+thead>tr:first-child>th,.table-fixed>colgroup+thead>tr:first-child>td,.table-fixed>colgroup+thead>tr:first-child>th,.table-fixed>thead:first-child>tr:first-child>td,.table-fixed>thead:first-child>tr:first-child>th{border-top:0}.table-fixed>tbody+tbody{border-top:2px solid #e7e9ee}.table-fixed .table{background-color:#fff}.table-vertically-centered-cells>tbody>tr>td{vertical-align:middle}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #e7e9ee}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd)>td,.table-striped>tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#f5f5f5}table col[class*=col-]{display:table-column;float:none;position:static}table td[class*=col-],table th[class*=col-]{display:table-cell;float:none;position:static}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#98f8c3}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#80f7b5}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#dee7f6}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#cad9f0}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fceddc}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#fae1c4}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#fbf0ef}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#f5dddb}@media (max-width:767px){.table-responsive{-ms-overflow-style:-ms-autohiding-scrollbar;-webkit-overflow-scrolling:touch;border:1px solid #e7e9ee;margin-bottom:18.75px;overflow-x:scroll;overflow-y:hidden;width:100%}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}.table-outlined-container{border:1px solid #e7e9ee;border-radius:4px;padding:10px 10px 0 10px}.table-outlined-container table{margin-bottom:0}fieldset{margin:0;min-width:0}fieldset,legend{border:0;padding:0}legend{border-bottom:1px solid #e5e5e5;color:#495365;display:block;font-size:24px;line-height:inherit;margin-bottom:25px;width:100%}.legend-as-label,label{display:inline-block;font-weight:700;margin-bottom:5px}.legend-as-label{border:0;color:#495365;font-size:16px;line-height:1rem;margin-bottom:0}input[type=search]{box-sizing:border-box}input[type=checkbox],input[type=radio]{line-height:normal;margin:4px 0 0;margin-top:1px\9}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=checkbox]:focus,input[type=file]:focus,input[type=radio]:focus{outline:none}output{color:#1b222c;display:block;font-size:16px;line-height:1.5625;padding-top:6px}.form-control,.recurly-element-card,.recurly-element-number,.recurly-hosted-field,.recurly-hosted-field-input{background-color:#fff;border:1px solid #677283;border-radius:4px;color:#1b222c;display:block;font-size:16px;height:35px;line-height:1.5625;padding:5px 10px;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:100%}.form-control::-moz-placeholder{color:#677283;opacity:1}.form-control:-ms-input-placeholder{color:#677283}.form-control::-webkit-input-placeholder{color:#677283}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#e7e9ee;border-color:#e7e9ee;cursor:not-allowed;opacity:1}.form-control[disabled]::-moz-placeholder,.form-control[readonly]::-moz-placeholder,fieldset[disabled] .form-control::-moz-placeholder{color:#afb5c0;opacity:1}.form-control[disabled]:-ms-input-placeholder,.form-control[readonly]:-ms-input-placeholder,fieldset[disabled] .form-control:-ms-input-placeholder{color:#afb5c0}.form-control[disabled]::-webkit-input-placeholder,.form-control[readonly]::-webkit-input-placeholder,fieldset[disabled] .form-control::-webkit-input-placeholder{color:#afb5c0}textarea.form-control{border-radius:3px;height:auto}select.form-control{border-radius:3px}input[type=search]{-webkit-appearance:none}input[type=date]{line-height:35px}.form-group{margin-bottom:15px}.checkbox,.radio{display:block;margin-bottom:10px;margin-top:10px;min-height:25px;padding-left:20px}.checkbox label,.radio label{cursor:pointer;display:inline;font-weight:400}.fake-disabled-checkbox{opacity:.5}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{float:left;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{cursor:pointer;display:inline-block;font-weight:400;margin-bottom:0;padding-left:20px;vertical-align:middle}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-left:10px;margin-top:0}.checkbox-inline[disabled],.checkbox[disabled],.radio-inline[disabled],.radio[disabled],fieldset[disabled] .checkbox,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio,fieldset[disabled] .radio-inline,fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox][disabled],input[type=radio][disabled]{cursor:not-allowed}.input-sm{border-radius:2px;font-size:14px;height:33px;line-height:1.5;padding:5px 10px}select.input-sm{height:33px;line-height:33px}select[multiple].input-sm,textarea.input-sm{height:auto}.input-lg{border-radius:5px;font-size:20px;height:49px;line-height:1.33;padding:10px 16px}select.input-lg{height:49px;line-height:49px}select[multiple].input-lg,textarea.input-lg{height:auto}.has-feedback{position:relative}.has-feedback .form-control-feedback{display:block;height:35px;line-height:35px;position:absolute;right:0;text-align:center;top:30px;width:35px}.has-feedback-left{position:relative}.has-feedback-left .form-control{padding-left:35px}.has-feedback-left .form-control-feedback-left{display:block;height:35px;left:0;line-height:35px;position:absolute;text-align:center;top:30px;width:35px}.has-success,.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline{color:#098842}.has-success .form-control{border-color:#098842}.has-success .form-control:focus{border-color:#3265b2}.has-success .form-control-feedback{color:#098842}.has-warning,.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline{color:#de8014}.has-warning .form-control{border-color:#de8014}.has-warning .form-control:focus{border-color:#3265b2}.has-warning .form-control-feedback{color:#de8014}.has-error,.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.recurly-element-card-invalid{color:#b83a33}.has-error .form-control{border-color:#b83a33}.has-error .form-control:focus{border-color:#3265b2}.has-error .form-control-feedback{color:#b83a33}.form-control.ng-dirty.ng-invalid:not(:focus),.form-control[data-ol-dirty]:invalid:not(:focus){border-color:#b83a33;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.form-control.ng-dirty.ng-invalid:not(:focus):focus,.form-control[data-ol-dirty]:invalid:not(:focus):focus{border-color:#902d28;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #d97d78}.form-control-static{margin-bottom:0}.help-block{color:#8692a8;display:block;margin-bottom:10px;margin-top:5px}.help-block.invalid-only{display:none}.has-error .help-block.invalid-only{display:block}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;vertical-align:middle;width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-bottom:0;margin-top:0;padding-left:0;vertical-align:middle}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{float:none;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .control-label,.form-horizontal .radio,.form-horizontal .radio-inline{margin-bottom:0;margin-top:0;padding-top:6px}.form-horizontal .checkbox,.form-horizontal .radio{min-height:31px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}.form-horizontal .form-control-static{padding-top:6px}@media (min-width:768px){.form-horizontal .control-label{text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px;top:0}.form-horizontal .has-feedback-left .form-control-feedback-left{left:15px;top:0}.invalid-feedback{align-items:baseline;color:#b83a33;display:flex;font-size:14px}a.invalid-feedback:hover{color:#902d28}.badge-tag-bs3{align-items:center;background-color:#e7e9ee;border-radius:4px;color:#1b222c;display:inline-flex;height:24px;max-width:100%;min-height:24px;white-space:nowrap}.badge-tag-bs3:hover{background-color:#d0d5dd}.badge-tag-bs3-content-wrapper{align-items:center;border-bottom-left-radius:inherit;border-top-left-radius:inherit;display:flex;overflow:hidden;padding-left:4px;padding-right:4px}.badge-tag-bs3-prepend{margin-right:2px}.badge-tag-bs3-close{align-items:center;-webkit-appearance:none;background:transparent;border:0;border-bottom-right-radius:inherit;border-top-right-radius:inherit;color:inherit;cursor:pointer;display:flex;flex-shrink:0;font-size:20px;height:24px;justify-content:center;line-height:1;padding:0;padding:0 4px;width:24px}.badge-tag-bs3-close:hover{background-color:#afb5c0}.badge-tag-bs3-content{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.btn{border:0 solid transparent;border-radius:9999px;cursor:pointer;display:inline-block;font-size:16px;font-weight:700;line-height:1.5625;margin-bottom:0;padding:4px 16px;text-align:center;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle;white-space:nowrap}.btn.active:focus,.btn:active:focus,.btn:focus{outline:none}.btn:focus,.btn:hover{color:#fff;text-decoration:none}.btn.disabled,.btn.disabled.active,.btn.disabled:active,.btn.disabled:focus,.btn.disabled:hover,.btn[disabled],.btn[disabled].active,.btn[disabled]:active,.btn[disabled]:focus,.btn[disabled]:hover,fieldset[disabled] .btn,fieldset[disabled] .btn.active,fieldset[disabled] .btn:active,fieldset[disabled] .btn:focus,fieldset[disabled] .btn:hover{box-shadow:none;cursor:not-allowed;opacity:1}.btn fieldset[disabled].btn-info,.btn.disabled.btn-default,.btn.disabled.btn-info,.btn[disabled].btn-default,.btn[disabled].btn-info,fieldset[disabled].btn-default .btn{filter:alpha(opacity=65);opacity:.65}.btn-default{background-color:#495365;border-color:transparent;color:#fff}.alert .btn-default{background-color:#272c36}.alert .btn-default.active,.alert .btn-default.checked,.alert .btn-default:active,.alert .btn-default:focus,.alert .btn-default:hover,.open .dropdown-toggle.alert .btn-default{background-color:#16191e}.btn-default.active,.btn-default.checked,.btn-default:active,.btn-default:focus,.btn-default:hover,.open .dropdown-toggle.btn-default{background-color:#38404d;border-color:transparent;color:#fff}.btn-default.active,.btn-default:active,.open .dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#495365;border-color:transparent}.btn-default .badge{background-color:#fff;color:#495365}.btn-default-outline{border-color:#495365;color:#495365}.alert .btn-default-outline,.btn-default-outline{background-color:transparent}.btn-default-outline.active,.btn-default-outline.checked,.btn-default-outline:active,.btn-default-outline:focus,.btn-default-outline:hover,.open .dropdown-toggle.btn-default-outline{background-color:transparent;border-color:#2f3641;color:#495365}.alert .btn-default-outline.active,.alert .btn-default-outline.checked,.alert .btn-default-outline:active,.alert .btn-default-outline:focus,.alert .btn-default-outline:hover,.alert .open .dropdown-toggle.btn-default-outline{background-color:transparent}.btn-default-outline.active,.btn-default-outline:active,.open .dropdown-toggle.btn-default-outline{background-image:none}.btn-default-outline.disabled,.btn-default-outline.disabled.active,.btn-default-outline.disabled:active,.btn-default-outline.disabled:focus,.btn-default-outline.disabled:hover,.btn-default-outline[disabled],.btn-default-outline[disabled].active,.btn-default-outline[disabled]:active,.btn-default-outline[disabled]:focus,.btn-default-outline[disabled]:hover,fieldset[disabled] .btn-default-outline,fieldset[disabled] .btn-default-outline.active,fieldset[disabled] .btn-default-outline:active,fieldset[disabled] .btn-default-outline:focus,fieldset[disabled] .btn-default-outline:hover{background-color:transparent;border-color:#495365}.btn-default-outline .badge{background-color:#495365;color:transparent}.btn-primary{background-color:#098842;border-color:#098842;border-width:1px;color:#fff}.btn-primary:hover{background-color:#1e6b41;border-color:#1e6b41}.btn-primary:focus{color:#fff;outline:none}.btn-primary:active,.btn-primary:focus-visible{background-color:#098842;border-color:#098842;box-shadow:0 0 0 2px #97b6e5;outline:none}.btn-primary:active,.btn-primary:focus-visible,.btn-primary:hover{color:#fff}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled:active,.btn-primary.disabled:focus-visible,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled]:active,.btn-primary[disabled]:focus-visible,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus-visible,fieldset[disabled] .btn-primary:hover{background-color:#e7e9ee;border-color:#e7e9ee;color:#afb5c0}.btn-primary[data-ol-loading=true],.btn-primary[data-ol-loading=true]:hover{background-color:#098842!important;border-color:#098842;color:#fff!important}.btn-primary-on-primary-bg{background-color:#195936;border-color:#195936;color:#fff}.alert .btn-primary-on-primary-bg{background-color:#07190f}.alert .btn-primary-on-primary-bg.active,.alert .btn-primary-on-primary-bg.checked,.alert .btn-primary-on-primary-bg:active,.alert .btn-primary-on-primary-bg:focus,.alert .btn-primary-on-primary-bg:hover,.open .dropdown-toggle.alert .btn-primary-on-primary-bg{background-color:#000}.btn-primary-on-primary-bg.active,.btn-primary-on-primary-bg.checked,.btn-primary-on-primary-bg:active,.btn-primary-on-primary-bg:focus,.btn-primary-on-primary-bg:hover,.open .dropdown-toggle.btn-primary-on-primary-bg{background-color:#103923;border-color:#0c2919;color:#fff}.btn-primary-on-primary-bg.active,.btn-primary-on-primary-bg:active,.open .dropdown-toggle.btn-primary-on-primary-bg{background-image:none}.btn-primary-on-primary-bg.disabled,.btn-primary-on-primary-bg.disabled.active,.btn-primary-on-primary-bg.disabled:active,.btn-primary-on-primary-bg.disabled:focus,.btn-primary-on-primary-bg.disabled:hover,.btn-primary-on-primary-bg[disabled],.btn-primary-on-primary-bg[disabled].active,.btn-primary-on-primary-bg[disabled]:active,.btn-primary-on-primary-bg[disabled]:focus,.btn-primary-on-primary-bg[disabled]:hover,fieldset[disabled] .btn-primary-on-primary-bg,fieldset[disabled] .btn-primary-on-primary-bg.active,fieldset[disabled] .btn-primary-on-primary-bg:active,fieldset[disabled] .btn-primary-on-primary-bg:focus,fieldset[disabled] .btn-primary-on-primary-bg:hover{background-color:#195936;border-color:#195936}.btn-primary-on-primary-bg .badge{background-color:#fff;color:#195936}.btn-success{background-color:#098842;border-color:#098842;border-width:1px;color:#fff}.btn-success:hover{background-color:#1e6b41;border-color:#1e6b41}.btn-success:focus{color:#fff;outline:none}.btn-success:active,.btn-success:focus-visible{background-color:#098842;border-color:#098842;box-shadow:0 0 0 2px #97b6e5;outline:none}.btn-success:active,.btn-success:focus-visible,.btn-success:hover{color:#fff}.btn-success.disabled,.btn-success.disabled.active,.btn-success.disabled:active,.btn-success.disabled:focus-visible,.btn-success.disabled:hover,.btn-success[disabled],.btn-success[disabled].active,.btn-success[disabled]:active,.btn-success[disabled]:focus-visible,.btn-success[disabled]:hover,fieldset[disabled] .btn-success,fieldset[disabled] .btn-success.active,fieldset[disabled] .btn-success:active,fieldset[disabled] .btn-success:focus-visible,fieldset[disabled] .btn-success:hover{background-color:#e7e9ee;border-color:#e7e9ee;color:#afb5c0}.btn-success[data-ol-loading=true],.btn-success[data-ol-loading=true]:hover{background-color:#098842!important;border-color:#098842;color:#fff!important}.btn-info{background-color:#3265b2;border-color:transparent;color:#fff}.alert .btn-info{background-color:#204172}.alert .btn-info.active,.alert .btn-info.checked,.alert .btn-info:active,.alert .btn-info:focus,.alert .btn-info:hover,.open .dropdown-toggle.alert .btn-info{background-color:#172f52}.btn-info.active,.btn-info.checked,.btn-info:active,.btn-info:focus,.btn-info:hover,.open .dropdown-toggle.btn-info{background-color:#295392;border-color:transparent;color:#fff}.btn-info.active,.btn-info:active,.open .dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info.disabled.active,.btn-info.disabled:active,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled],.btn-info[disabled].active,.btn-info[disabled]:active,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info,fieldset[disabled] .btn-info.active,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#3265b2;border-color:transparent}.btn-info .badge{background-color:#fff;color:#3265b2}.btn-warning{background-color:#de8014;border-color:transparent;color:#fff}.alert .btn-warning{background-color:#93550d}.alert .btn-warning.active,.alert .btn-warning.checked,.alert .btn-warning:active,.alert .btn-warning:focus,.alert .btn-warning:hover,.open .dropdown-toggle.alert .btn-warning{background-color:#6e3f0a}.btn-warning.active,.btn-warning.checked,.btn-warning:active,.btn-warning:focus,.btn-warning:hover,.open .dropdown-toggle.btn-warning{background-color:#b96a11;border-color:transparent;color:#fff}.btn-warning.active,.btn-warning:active,.open .dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning.disabled.active,.btn-warning.disabled:active,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled],.btn-warning[disabled].active,.btn-warning[disabled]:active,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-warning.active,fieldset[disabled] .btn-warning:active,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#de8014;border-color:transparent}.btn-warning .badge{background-color:#fff;color:#de8014}.btn-danger{background-color:#b83a33;border-color:#b83a33;border-width:1px;color:#fff}.btn-danger:hover{background-color:#942f2a;border-color:#942f2a}.btn-danger:focus{color:#fff;outline:none}.btn-danger:active,.btn-danger:focus-visible{background-color:#b83a33;border-color:#b83a33;box-shadow:0 0 0 2px #97b6e5;outline:none}.btn-danger:active,.btn-danger:focus-visible,.btn-danger:hover{color:#fff}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled:active,.btn-danger.disabled:focus-visible,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled]:active,.btn-danger[disabled]:focus-visible,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus-visible,fieldset[disabled] .btn-danger:hover{background-color:#e7e9ee;border-color:#e7e9ee;color:#afb5c0}.btn-danger[data-ol-loading=true],.btn-danger[data-ol-loading=true]:hover{background-color:#b83a33!important;border-color:#b83a33;color:#fff!important}.btn-danger-ghost{background-color:transparent;border-color:transparent;border-width:1px;color:#b83a33}.btn-danger-ghost:hover{background-color:#f9f1f1;border-color:#f9f1f1}.btn-danger-ghost:focus{color:#b83a33;outline:none}.btn-danger-ghost:active,.btn-danger-ghost:focus-visible{background-color:transparent;border-color:transparent;box-shadow:0 0 0 2px #97b6e5;outline:none}.btn-danger-ghost:active,.btn-danger-ghost:focus-visible,.btn-danger-ghost:hover{color:#b83a33}.btn-danger-ghost.disabled,.btn-danger-ghost.disabled.active,.btn-danger-ghost.disabled:active,.btn-danger-ghost.disabled:focus-visible,.btn-danger-ghost.disabled:hover,.btn-danger-ghost[disabled],.btn-danger-ghost[disabled].active,.btn-danger-ghost[disabled]:active,.btn-danger-ghost[disabled]:focus-visible,.btn-danger-ghost[disabled]:hover,fieldset[disabled] .btn-danger-ghost,fieldset[disabled] .btn-danger-ghost.active,fieldset[disabled] .btn-danger-ghost:active,fieldset[disabled] .btn-danger-ghost:focus-visible,fieldset[disabled] .btn-danger-ghost:hover{background-color:#e7e9ee;border-color:#e7e9ee;color:#afb5c0}.btn-danger-ghost[data-ol-loading=true],.btn-danger-ghost[data-ol-loading=true]:hover{background-color:transparent!important;border-color:transparent;color:#b83a33!important}.btn-info-ghost{background-color:transparent;border-color:transparent;border-width:1px;color:#3265b2}.btn-info-ghost:hover{background-color:#f1f4f9;border-color:#f1f4f9}.btn-info-ghost:focus{color:#3265b2;outline:none}.btn-info-ghost:active,.btn-info-ghost:focus-visible{background-color:transparent;border-color:transparent;box-shadow:0 0 0 2px #97b6e5;outline:none}.btn-info-ghost:active,.btn-info-ghost:focus-visible,.btn-info-ghost:hover{color:#3265b2}.btn-info-ghost.disabled,.btn-info-ghost.disabled.active,.btn-info-ghost.disabled:active,.btn-info-ghost.disabled:focus-visible,.btn-info-ghost.disabled:hover,.btn-info-ghost[disabled],.btn-info-ghost[disabled].active,.btn-info-ghost[disabled]:active,.btn-info-ghost[disabled]:focus-visible,.btn-info-ghost[disabled]:hover,fieldset[disabled] .btn-info-ghost,fieldset[disabled] .btn-info-ghost.active,fieldset[disabled] .btn-info-ghost:active,fieldset[disabled] .btn-info-ghost:focus-visible,fieldset[disabled] .btn-info-ghost:hover{background-color:#e7e9ee;border-color:#e7e9ee;color:#afb5c0}.btn-info-ghost[data-ol-loading=true],.btn-info-ghost[data-ol-loading=true]:hover{background-color:transparent!important;border-color:transparent;color:#3265b2!important}.btn-bg-ghost{background-color:transparent;border-color:transparent;border-width:1px;color:#1b222c}.btn-bg-ghost:hover{background-color:#f4f5f6;border-color:#f4f5f6}.btn-bg-ghost:focus{color:#1b222c;outline:none}.btn-bg-ghost:active,.btn-bg-ghost:focus-visible{background-color:transparent;border-color:transparent;box-shadow:0 0 0 2px #97b6e5;outline:none}.btn-bg-ghost:active,.btn-bg-ghost:focus-visible,.btn-bg-ghost:hover{color:#1b222c}.btn-bg-ghost.disabled,.btn-bg-ghost.disabled.active,.btn-bg-ghost.disabled:active,.btn-bg-ghost.disabled:focus-visible,.btn-bg-ghost.disabled:hover,.btn-bg-ghost[disabled],.btn-bg-ghost[disabled].active,.btn-bg-ghost[disabled]:active,.btn-bg-ghost[disabled]:focus-visible,.btn-bg-ghost[disabled]:hover,fieldset[disabled] .btn-bg-ghost,fieldset[disabled] .btn-bg-ghost.active,fieldset[disabled] .btn-bg-ghost:active,fieldset[disabled] .btn-bg-ghost:focus-visible,fieldset[disabled] .btn-bg-ghost:hover{background-color:#e7e9ee;border-color:#e7e9ee;color:#afb5c0}.btn-bg-ghost[data-ol-loading=true],.btn-bg-ghost[data-ol-loading=true]:hover{background-color:transparent!important;border-color:transparent;color:#1b222c!important}.btn-info-ghost-inline{background-color:transparent;border-color:transparent;border-width:1px;color:#3265b2;font-size:inherit!important;padding:0!important;vertical-align:inherit}.btn-info-ghost-inline:hover{background-color:#f1f4f9;border-color:#f1f4f9}.btn-info-ghost-inline:focus{color:#3265b2;outline:none}.btn-info-ghost-inline:active,.btn-info-ghost-inline:focus-visible{background-color:transparent;border-color:transparent;box-shadow:0 0 0 2px #97b6e5;outline:none}.btn-info-ghost-inline:active,.btn-info-ghost-inline:focus-visible,.btn-info-ghost-inline:hover{color:#3265b2}.btn-info-ghost-inline.disabled,.btn-info-ghost-inline.disabled.active,.btn-info-ghost-inline.disabled:active,.btn-info-ghost-inline.disabled:focus-visible,.btn-info-ghost-inline.disabled:hover,.btn-info-ghost-inline[disabled],.btn-info-ghost-inline[disabled].active,.btn-info-ghost-inline[disabled]:active,.btn-info-ghost-inline[disabled]:focus-visible,.btn-info-ghost-inline[disabled]:hover,fieldset[disabled] .btn-info-ghost-inline,fieldset[disabled] .btn-info-ghost-inline.active,fieldset[disabled] .btn-info-ghost-inline:active,fieldset[disabled] .btn-info-ghost-inline:focus-visible,fieldset[disabled] .btn-info-ghost-inline:hover{background-color:#e7e9ee;border-color:#e7e9ee;color:#afb5c0}.btn-info-ghost-inline[data-ol-loading=true],.btn-info-ghost-inline[data-ol-loading=true]:hover{background-color:transparent!important;border-color:transparent;color:#3265b2!important}.btn-secondary{background-color:#fff;border-color:#677283;border-width:1px;color:#1b222c}.btn-secondary:hover{background-color:#e7e9ee}.btn-secondary:focus{color:#1b222c;outline:none}.btn-secondary:active,.btn-secondary:focus-visible{box-shadow:0 0 0 2px #97b6e5;outline:none}.btn-secondary:active,.btn-secondary:focus-visible,.btn-secondary:hover{color:#1b222c}.btn-secondary.disabled,.btn-secondary.disabled.active,.btn-secondary.disabled:active,.btn-secondary.disabled:focus-visible,.btn-secondary.disabled:hover,.btn-secondary[disabled],.btn-secondary[disabled].active,.btn-secondary[disabled]:active,.btn-secondary[disabled]:focus-visible,.btn-secondary[disabled]:hover,fieldset[disabled] .btn-secondary,fieldset[disabled] .btn-secondary.active,fieldset[disabled] .btn-secondary:active,fieldset[disabled] .btn-secondary:focus-visible,fieldset[disabled] .btn-secondary:hover{background-color:#e7e9ee;border-color:#e7e9ee;color:#afb5c0}.btn-secondary[data-ol-loading=true],.btn-secondary[data-ol-loading=true]:hover{background-color:#fff!important;border-color:#677283!important;color:#1b222c!important}.btn-secondary-info{background-color:#fff;border-color:#677283;border-width:1px;color:#1b222c}.btn-secondary-info:hover{background-color:#e7e9ee}.btn-secondary-info:focus{color:#1b222c;outline:none}.btn-secondary-info:active,.btn-secondary-info:focus-visible{box-shadow:0 0 0 2px #97b6e5;outline:none}.btn-secondary-info:active,.btn-secondary-info:focus-visible,.btn-secondary-info:hover{color:#1b222c}.btn-secondary-info.disabled,.btn-secondary-info.disabled.active,.btn-secondary-info.disabled:active,.btn-secondary-info.disabled:focus-visible,.btn-secondary-info.disabled:hover,.btn-secondary-info[disabled],.btn-secondary-info[disabled].active,.btn-secondary-info[disabled]:active,.btn-secondary-info[disabled]:focus-visible,.btn-secondary-info[disabled]:hover,fieldset[disabled] .btn-secondary-info,fieldset[disabled] .btn-secondary-info.active,fieldset[disabled] .btn-secondary-info:active,fieldset[disabled] .btn-secondary-info:focus-visible,fieldset[disabled] .btn-secondary-info:hover{background-color:#e7e9ee;border-color:#e7e9ee;color:#afb5c0}.btn-secondary-info[data-ol-loading=true],.btn-secondary-info[data-ol-loading=true]:hover{background-color:#fff!important;border-color:#677283!important;color:#1b222c!important}.btn-premium{background-image:linear-gradient(246deg,#214475,#254c84 29%,#6597e0 97%);color:#fff}.btn-premium:hover{background:#214475}.reset-btns .btn-danger{background-color:#b83a33;border-color:#b83a33;border-width:1px;color:#fff}.reset-btns .btn-danger:hover{background-color:#942f2a;border-color:#942f2a}.reset-btns .btn-danger:focus{color:#fff;outline:none}.reset-btns .btn-danger:active,.reset-btns .btn-danger:focus-visible{background-color:#b83a33;border-color:#b83a33;box-shadow:0 0 0 2px #97b6e5;outline:none}.reset-btns .btn-danger:active,.reset-btns .btn-danger:focus-visible,.reset-btns .btn-danger:hover{color:#fff}.reset-btns .btn-danger.disabled,.reset-btns .btn-danger.disabled.active,.reset-btns .btn-danger.disabled:active,.reset-btns .btn-danger.disabled:focus-visible,.reset-btns .btn-danger.disabled:hover,.reset-btns .btn-danger[disabled],.reset-btns .btn-danger[disabled].active,.reset-btns .btn-danger[disabled]:active,.reset-btns .btn-danger[disabled]:focus-visible,.reset-btns .btn-danger[disabled]:hover,fieldset[disabled] .reset-btns .btn-danger,fieldset[disabled] .reset-btns .btn-danger.active,fieldset[disabled] .reset-btns .btn-danger:active,fieldset[disabled] .reset-btns .btn-danger:focus-visible,fieldset[disabled] .reset-btns .btn-danger:hover{background-color:#e7e9ee;border-color:#e7e9ee;color:#afb5c0}.reset-btns .btn-danger[data-ol-loading=true],.reset-btns .btn-danger[data-ol-loading=true]:hover{background-color:#b83a33!important;border-color:#b83a33;color:#fff!important}.reset-btns .btn-default{background-color:#495365;border-color:transparent;color:#fff}.alert .reset-btns .btn-default{background-color:#272c36}.alert .reset-btns .btn-default.active,.alert .reset-btns .btn-default.checked,.alert .reset-btns .btn-default:active,.alert .reset-btns .btn-default:focus,.alert .reset-btns .btn-default:hover,.open .dropdown-toggle.alert .reset-btns .btn-default{background-color:#16191e}.open .dropdown-toggle.reset-btns .btn-default,.reset-btns .btn-default.active,.reset-btns .btn-default.checked,.reset-btns .btn-default:active,.reset-btns .btn-default:focus,.reset-btns .btn-default:hover{background-color:#38404d;border-color:transparent;color:#fff}.open .dropdown-toggle.reset-btns .btn-default,.reset-btns .btn-default.active,.reset-btns .btn-default:active{background-image:none}.reset-btns .btn-default.disabled,.reset-btns .btn-default.disabled.active,.reset-btns .btn-default.disabled:active,.reset-btns .btn-default.disabled:focus,.reset-btns .btn-default.disabled:hover,.reset-btns .btn-default[disabled],.reset-btns .btn-default[disabled].active,.reset-btns .btn-default[disabled]:active,.reset-btns .btn-default[disabled]:focus,.reset-btns .btn-default[disabled]:hover,fieldset[disabled] .reset-btns .btn-default,fieldset[disabled] .reset-btns .btn-default.active,fieldset[disabled] .reset-btns .btn-default:active,fieldset[disabled] .reset-btns .btn-default:focus,fieldset[disabled] .reset-btns .btn-default:hover{background-color:#495365;border-color:transparent}.reset-btns .btn-default .badge{background-color:#fff;color:#495365}.reset-btns .btn-default-outline{background-color:transparent;border-color:#495365;color:#495365}.alert .reset-btns .btn-default-outline{background-color:transparent}.open .dropdown-toggle.reset-btns .btn-default-outline,.reset-btns .btn-default-outline.active,.reset-btns .btn-default-outline.checked,.reset-btns .btn-default-outline:active,.reset-btns .btn-default-outline:focus,.reset-btns .btn-default-outline:hover{background-color:transparent;border-color:#2f3641;color:#495365}.alert .open .dropdown-toggle.reset-btns .btn-default-outline,.alert .reset-btns .btn-default-outline.active,.alert .reset-btns .btn-default-outline.checked,.alert .reset-btns .btn-default-outline:active,.alert .reset-btns .btn-default-outline:focus,.alert .reset-btns .btn-default-outline:hover{background-color:transparent}.open .dropdown-toggle.reset-btns .btn-default-outline,.reset-btns .btn-default-outline.active,.reset-btns .btn-default-outline:active{background-image:none}.reset-btns .btn-default-outline.disabled,.reset-btns .btn-default-outline.disabled.active,.reset-btns .btn-default-outline.disabled:active,.reset-btns .btn-default-outline.disabled:focus,.reset-btns .btn-default-outline.disabled:hover,.reset-btns .btn-default-outline[disabled],.reset-btns .btn-default-outline[disabled].active,.reset-btns .btn-default-outline[disabled]:active,.reset-btns .btn-default-outline[disabled]:focus,.reset-btns .btn-default-outline[disabled]:hover,fieldset[disabled] .reset-btns .btn-default-outline,fieldset[disabled] .reset-btns .btn-default-outline.active,fieldset[disabled] .reset-btns .btn-default-outline:active,fieldset[disabled] .reset-btns .btn-default-outline:focus,fieldset[disabled] .reset-btns .btn-default-outline:hover{background-color:transparent;border-color:#495365}.reset-btns .btn-default-outline .badge{background-color:#495365;color:transparent}.reset-btns .btn-info{background-color:#3265b2;border-color:transparent;color:#fff}.alert .reset-btns .btn-info{background-color:#204172}.alert .reset-btns .btn-info.active,.alert .reset-btns .btn-info.checked,.alert .reset-btns .btn-info:active,.alert .reset-btns .btn-info:focus,.alert .reset-btns .btn-info:hover,.open .dropdown-toggle.alert .reset-btns .btn-info{background-color:#172f52}.open .dropdown-toggle.reset-btns .btn-info,.reset-btns .btn-info.active,.reset-btns .btn-info.checked,.reset-btns .btn-info:active,.reset-btns .btn-info:focus,.reset-btns .btn-info:hover{background-color:#295392;border-color:transparent;color:#fff}.open .dropdown-toggle.reset-btns .btn-info,.reset-btns .btn-info.active,.reset-btns .btn-info:active{background-image:none}.reset-btns .btn-info.disabled,.reset-btns .btn-info.disabled.active,.reset-btns .btn-info.disabled:active,.reset-btns .btn-info.disabled:focus,.reset-btns .btn-info.disabled:hover,.reset-btns .btn-info[disabled],.reset-btns .btn-info[disabled].active,.reset-btns .btn-info[disabled]:active,.reset-btns .btn-info[disabled]:focus,.reset-btns .btn-info[disabled]:hover,fieldset[disabled] .reset-btns .btn-info,fieldset[disabled] .reset-btns .btn-info.active,fieldset[disabled] .reset-btns .btn-info:active,fieldset[disabled] .reset-btns .btn-info:focus,fieldset[disabled] .reset-btns .btn-info:hover{background-color:#3265b2;border-color:transparent}.reset-btns .btn-info .badge{background-color:#fff;color:#3265b2}.reset-btns .btn-primary{background-color:#098842;border-color:#098842;border-width:1px;color:#fff}.reset-btns .btn-primary:hover{background-color:#1e6b41;border-color:#1e6b41}.reset-btns .btn-primary:focus{color:#fff;outline:none}.reset-btns .btn-primary:active,.reset-btns .btn-primary:focus-visible{background-color:#098842;border-color:#098842;box-shadow:0 0 0 2px #97b6e5;outline:none}.reset-btns .btn-primary:active,.reset-btns .btn-primary:focus-visible,.reset-btns .btn-primary:hover{color:#fff}.reset-btns .btn-primary.disabled,.reset-btns .btn-primary.disabled.active,.reset-btns .btn-primary.disabled:active,.reset-btns .btn-primary.disabled:focus-visible,.reset-btns .btn-primary.disabled:hover,.reset-btns .btn-primary[disabled],.reset-btns .btn-primary[disabled].active,.reset-btns .btn-primary[disabled]:active,.reset-btns .btn-primary[disabled]:focus-visible,.reset-btns .btn-primary[disabled]:hover,fieldset[disabled] .reset-btns .btn-primary,fieldset[disabled] .reset-btns .btn-primary.active,fieldset[disabled] .reset-btns .btn-primary:active,fieldset[disabled] .reset-btns .btn-primary:focus-visible,fieldset[disabled] .reset-btns .btn-primary:hover{background-color:#e7e9ee;border-color:#e7e9ee;color:#afb5c0}.reset-btns .btn-primary[data-ol-loading=true],.reset-btns .btn-primary[data-ol-loading=true]:hover{background-color:#098842!important;border-color:#098842;color:#fff!important}.reset-btns .btn-success{background-color:#098842;border-color:#098842;border-width:1px;color:#fff}.reset-btns .btn-success:hover{background-color:#1e6b41;border-color:#1e6b41}.reset-btns .btn-success:focus{color:#fff;outline:none}.reset-btns .btn-success:active,.reset-btns .btn-success:focus-visible{background-color:#098842;border-color:#098842;box-shadow:0 0 0 2px #97b6e5;outline:none}.reset-btns .btn-success:active,.reset-btns .btn-success:focus-visible,.reset-btns .btn-success:hover{color:#fff}.reset-btns .btn-success.disabled,.reset-btns .btn-success.disabled.active,.reset-btns .btn-success.disabled:active,.reset-btns .btn-success.disabled:focus-visible,.reset-btns .btn-success.disabled:hover,.reset-btns .btn-success[disabled],.reset-btns .btn-success[disabled].active,.reset-btns .btn-success[disabled]:active,.reset-btns .btn-success[disabled]:focus-visible,.reset-btns .btn-success[disabled]:hover,fieldset[disabled] .reset-btns .btn-success,fieldset[disabled] .reset-btns .btn-success.active,fieldset[disabled] .reset-btns .btn-success:active,fieldset[disabled] .reset-btns .btn-success:focus-visible,fieldset[disabled] .reset-btns .btn-success:hover{background-color:#e7e9ee;border-color:#e7e9ee;color:#afb5c0}.reset-btns .btn-success[data-ol-loading=true],.reset-btns .btn-success[data-ol-loading=true]:hover{background-color:#098842!important;border-color:#098842;color:#fff!important}.reset-btns .btn-warning{background-color:#de8014;border-color:transparent;color:#fff}.alert .reset-btns .btn-warning{background-color:#93550d}.alert .reset-btns .btn-warning.active,.alert .reset-btns .btn-warning.checked,.alert .reset-btns .btn-warning:active,.alert .reset-btns .btn-warning:focus,.alert .reset-btns .btn-warning:hover,.open .dropdown-toggle.alert .reset-btns .btn-warning{background-color:#6e3f0a}.open .dropdown-toggle.reset-btns .btn-warning,.reset-btns .btn-warning.active,.reset-btns .btn-warning.checked,.reset-btns .btn-warning:active,.reset-btns .btn-warning:focus,.reset-btns .btn-warning:hover{background-color:#b96a11;border-color:transparent;color:#fff}.open .dropdown-toggle.reset-btns .btn-warning,.reset-btns .btn-warning.active,.reset-btns .btn-warning:active{background-image:none}.reset-btns .btn-warning.disabled,.reset-btns .btn-warning.disabled.active,.reset-btns .btn-warning.disabled:active,.reset-btns .btn-warning.disabled:focus,.reset-btns .btn-warning.disabled:hover,.reset-btns .btn-warning[disabled],.reset-btns .btn-warning[disabled].active,.reset-btns .btn-warning[disabled]:active,.reset-btns .btn-warning[disabled]:focus,.reset-btns .btn-warning[disabled]:hover,fieldset[disabled] .reset-btns .btn-warning,fieldset[disabled] .reset-btns .btn-warning.active,fieldset[disabled] .reset-btns .btn-warning:active,fieldset[disabled] .reset-btns .btn-warning:focus,fieldset[disabled] .reset-btns .btn-warning:hover{background-color:#de8014;border-color:transparent}.reset-btns .btn-warning .badge{background-color:#fff;color:#de8014}.reset-btns .btn-secondary{background-color:#fff;border-color:#677283;border-width:1px;color:#1b222c}.reset-btns .btn-secondary:hover{background-color:#e7e9ee}.reset-btns .btn-secondary:focus{color:#1b222c;outline:none}.reset-btns .btn-secondary:active,.reset-btns .btn-secondary:focus-visible{box-shadow:0 0 0 2px #97b6e5;outline:none}.reset-btns .btn-secondary:active,.reset-btns .btn-secondary:focus-visible,.reset-btns .btn-secondary:hover{color:#1b222c}.reset-btns .btn-secondary.disabled,.reset-btns .btn-secondary.disabled.active,.reset-btns .btn-secondary.disabled:active,.reset-btns .btn-secondary.disabled:focus-visible,.reset-btns .btn-secondary.disabled:hover,.reset-btns .btn-secondary[disabled],.reset-btns .btn-secondary[disabled].active,.reset-btns .btn-secondary[disabled]:active,.reset-btns .btn-secondary[disabled]:focus-visible,.reset-btns .btn-secondary[disabled]:hover,fieldset[disabled] .reset-btns .btn-secondary,fieldset[disabled] .reset-btns .btn-secondary.active,fieldset[disabled] .reset-btns .btn-secondary:active,fieldset[disabled] .reset-btns .btn-secondary:focus-visible,fieldset[disabled] .reset-btns .btn-secondary:hover{background-color:#e7e9ee;border-color:#e7e9ee;color:#afb5c0}.reset-btns .btn-secondary[data-ol-loading=true],.reset-btns .btn-secondary[data-ol-loading=true]:hover{background-color:#fff!important;border-color:#677283!important;color:#1b222c!important}.reset-btns .btn-premium{background-image:linear-gradient(246deg,#214475,#254c84 29%,#6597e0 97%);color:#fff}.reset-btns .btn-premium:hover{background:#214475}.btn-link{border-radius:0;color:#3265b2;cursor:pointer;font-weight:400}.btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{background-color:transparent;color:#28518f;text-decoration:underline}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#afb5c0;text-decoration:none}.btn-link.btn-danger{color:#b83a33}.btn-link.btn-danger:focus,.btn-link.btn-danger:hover{color:#942f2a}.btn-inline-link{border-radius:0;color:#3265b2;cursor:pointer;font-size:inherit;font-weight:400;padding:0;vertical-align:inherit}.btn-inline-link,.btn-inline-link:active,.btn-inline-link[disabled],fieldset[disabled] .btn-inline-link{background-color:transparent;box-shadow:none}.btn-inline-link,.btn-inline-link:active,.btn-inline-link:focus,.btn-inline-link:hover{border-color:transparent}.btn-inline-link:focus,.btn-inline-link:hover{background-color:transparent;color:#28518f;text-decoration:underline}.btn-inline-link[disabled]:focus,.btn-inline-link[disabled]:hover,fieldset[disabled] .btn-inline-link:focus,fieldset[disabled] .btn-inline-link:hover{color:#afb5c0;text-decoration:none}.btn-inline-link.btn-danger{color:#b83a33}.btn-inline-link.btn-danger:focus,.btn-inline-link.btn-danger:hover{color:#942f2a}.btn-xl{font-size:25px}.btn-group-lg>.btn,.btn-lg,.btn-xl{border-radius:9999px;line-height:1.33;padding:9px 16px}.btn-group-lg>.btn,.btn-lg{font-size:20px}.btn-group-sm>.btn,.btn-sm{border-radius:9999px;font-size:14px;line-height:1.5;padding:4px 10px}.btn-group-xs>.btn,.btn-xs{border-radius:9999px;font-size:14px;line-height:1.5;padding:0 8px}.btn-block{display:block;padding-left:0;padding-right:0;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.login-btn{background-color:#fff;border:0 solid transparent;border-color:#677283;border-radius:9999px;border-width:1px;color:#1b222c;cursor:pointer;display:inline-block;font-size:16px;font-weight:700;line-height:1.5625;margin-bottom:0;padding:4px 16px;padding-left:20px;padding-right:0;position:relative;text-align:center;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle;white-space:nowrap}.login-btn.active:focus,.login-btn:active:focus,.login-btn:focus{outline:none}.login-btn:focus,.login-btn:hover{color:#fff;text-decoration:none}.login-btn.disabled,.login-btn.disabled.active,.login-btn.disabled:active,.login-btn.disabled:focus,.login-btn.disabled:hover,.login-btn[disabled],.login-btn[disabled].active,.login-btn[disabled]:active,.login-btn[disabled]:focus,.login-btn[disabled]:hover,fieldset[disabled] .login-btn,fieldset[disabled] .login-btn.active,fieldset[disabled] .login-btn:active,fieldset[disabled] .login-btn:focus,fieldset[disabled] .login-btn:hover{box-shadow:none;cursor:not-allowed;opacity:1}.login-btn fieldset[disabled].btn-info,.login-btn.disabled.btn-default,.login-btn.disabled.btn-info,.login-btn[disabled].btn-default,.login-btn[disabled].btn-info,fieldset[disabled].btn-default .login-btn{filter:alpha(opacity=65);opacity:.65}.login-btn:hover{background-color:#e7e9ee}.login-btn:focus{color:#1b222c;outline:none}.login-btn:active,.login-btn:focus-visible{box-shadow:0 0 0 2px #97b6e5;outline:none}.login-btn:active,.login-btn:focus-visible,.login-btn:hover{color:#1b222c}.login-btn.disabled,.login-btn.disabled.active,.login-btn.disabled:active,.login-btn.disabled:focus-visible,.login-btn.disabled:hover,.login-btn[disabled],.login-btn[disabled].active,.login-btn[disabled]:active,.login-btn[disabled]:focus-visible,.login-btn[disabled]:hover,fieldset[disabled] .login-btn,fieldset[disabled] .login-btn.active,fieldset[disabled] .login-btn:active,fieldset[disabled] .login-btn:focus-visible,fieldset[disabled] .login-btn:hover{background-color:#e7e9ee;border-color:#e7e9ee;color:#afb5c0}.login-btn[data-ol-loading=true],.login-btn[data-ol-loading=true]:hover{background-color:#fff!important;border-color:#677283!important;color:#1b222c!important}.card,.card-gray,.card-gray-dark{background-color:#fff;border-radius:3px;box-shadow:none;padding:25px}.card .page-header{margin:0 0 1.5625rem}.card .page-header h1,.card .page-header h2,.card .page-header h3{margin-top:0}.card>.container-fluid{padding:0}.card .card-header{border-bottom:1px solid #d0d5dd;margin-bottom:25px;padding-bottom:25px}.card .card-header h2{margin:0}.card>:first-child{margin-top:0}.card>:last-child{margin-bottom:0}.card.card-drop-shadow{background-color:#fff;box-shadow:0 4px 12px rgba(30,37,48,.12),0 2px 4px rgba(30,37,48,.08)}.card.card-drop-shadow>hr{margin-left:-25px;margin-right:-25px}.card-hint,.card-thin{padding:12.5px}.card-group .card{border-radius:0;margin:25px -15px 0 -15px}.card-group .card.card-highlighted{border-radius:3px;margin-top:0}.card-group .card.card-first{border-bottom-left-radius:3px;border-top-left-radius:3px}.card-group .card.card-last{border-bottom-right-radius:3px;border-top-right-radius:3px}.card-border{border:3px solid #677283}.card-content{padding:20px}.card-gray{background-color:#f4f5f6;border-radius:4px}.card-gray-dark{background-color:#e7e9ee;border-radius:4px}.website-redesign .card{background-color:#f4f5f6;border-radius:24px}.card.card-dark-green-bg{background:var(--dark-jungle-green);border-radius:16px;color:var(--green-10);padding:var(--spacing-09)}.card.card-dark-green-bg a:not(.btn),.card.card-dark-green-bg a:not(.btn):hover{color:var(--green-30)}.card.card-purple-top-border{background-color:#fff;border-radius:8px;border-top:8px solid var(--sapphire-blue);box-shadow:0 2px 4px 0 #1e253014,0 4px 12px 0 #1e25301f;padding:32px 40px 32px 40px}.card.card-premium-border{background:linear-gradient(#fff,#fff) padding-box,linear-gradient(to right,var(--blue-40),#254c84,var(--blue-70)) border-box;border:2px solid transparent;border-radius:8px;padding:var(--spacing-10)}.card.card-premium-border h2,.card.card-premium-border h3,.card.card-premium-border h4{color:var(--blue-60)}.card.card-premium-border .btn{width:100%}.card.card-pattern{background-image:linear-gradient(to right,rgba(0,0,0,.4) 0,var(--dark-jungle-green) 25%,var(--dark-jungle-green) 75%,rgba(0,0,0,.4) 100%),url(/images/overleaf-pattern-purple-caf28131e23c91db3926.png);background-size:cover;border-radius:var(--border-radius-medium-new);color:var(--white);padding:var(--spacing-13);text-align:center}.card.card-pattern h2{font-size:var(--font-size-07);line-height:var(--line-height-06)}.card.card-pattern p{font-size:var(--font-size-04);line-height:var(--line-height-03)}.card.card-pattern h1,.card.card-pattern h2,.card.card-pattern h3,.card.card-pattern h4,.card.card-pattern h5,.card.card-pattern p{color:var(--white)}.card.card-pattern-left-only{background-image:linear-gradient(to right,rgba(0,0,0,.4) 0,var(--dark-jungle-green) 20%,var(--dark-jungle-green) 100%),url(/images/overleaf-pattern-purple-caf28131e23c91db3926.png);background-size:cover;border-radius:var(--border-radius-medium-new);color:var(--white);padding:var(--spacing-13)}.card.card-pattern-left-only h2{font-size:var(--font-size-07);line-height:var(--line-height-06)}.card.card-pattern-left-only p{font-size:var(--font-size-04);line-height:var(--line-height-03)}.card.card-pattern-left-only h1,.card.card-pattern-left-only h2,.card.card-pattern-left-only h3,.card.card-pattern-left-only h4,.card.card-pattern-left-only h5,.card.card-pattern-left-only p{color:var(--white)}.fade{opacity:0;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}.collapsing{height:0;overflow:hidden;position:relative;transition:height .35s ease}.dev-toolbar{background-color:#1b222c;bottom:0;height:40px;left:0;padding:5px 12px;position:fixed;right:0;z-index:100}.dev-toolbar button.widget{border:none;color:#f4f5f6;margin:0 4px;padding:0 4px;text-decoration:none}.dev-toolbar .collapse-button{color:#8d96a5;margin-top:-2px;padding:0;position:absolute}.dev-toolbar .collapse-button span{font-size:28px}.dev-toolbar .collapse-button:hover{color:#d0d5dd}.dev-tool-bar-open-button{bottom:-2px;color:#8d96a5;left:6px;position:fixed}.dev-tool-bar-open-button span{font-size:28px}.dev-tool-bar-open-button:hover{color:#d0d5dd}.dev-toolbar-tooltip a{color:#c3d0e3}.dev-toolbar-tooltip a.btn{color:#f4f5f6}.dev-toolbar-tooltip.tooltip.top{margin-top:-10px;opacity:1}.dev-toolbar-tooltip .tooltip-inner{max-height:800px;min-width:300px;overflow-y:auto;padding:2px 8px 8px 8px;text-align:left}.dev-toolbar-tooltip .title{margin-top:4px}.dev-toolbar-tooltip .test-card{background-color:#2f3a4c;border:2px solid #495365;border-radius:4px;color:#f4f5f6;margin-top:8px;padding:6px;text-align:left}.dev-toolbar-tooltip .test-card.override{border-color:#6597e0}.dev-toolbar-tooltip .test-card .test-name{font-family:monospace;font-size:12px;font-weight:700}.dev-toolbar-tooltip .test-card ul li.variant-row{line-height:24px}.dev-toolbar-tooltip .actions{margin-top:8px;text-align:right}.dev-toolbar-tooltip ul{margin-bottom:0}.caret{border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid;display:inline-block;height:0;margin-left:2px;margin-top:-2px;vertical-align:middle;width:0}.dropdown{position:relative}.open button.dropdown-toggle.dropdown-toggle-no-background,button.dropdown-toggle.dropdown-toggle-no-background{background-color:transparent;border:0;box-shadow:none}.open button.dropdown-toggle.dropdown-toggle-no-background:active,.open button.dropdown-toggle.dropdown-toggle-no-background:focus,.open button.dropdown-toggle.dropdown-toggle-no-background:hover,button.dropdown-toggle.dropdown-toggle-no-background:active,button.dropdown-toggle.dropdown-toggle-no-background:focus,button.dropdown-toggle.dropdown-toggle-no-background:hover{background-color:transparent;box-shadow:none}.dropdown-toggle:focus{outline:0}.dropdown-menu{background-clip:padding-box;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:3px;box-shadow:0 6px 12px rgba(0,0,0,.175);display:none;float:left;font-size:16px;left:0;list-style:none;margin:2px 0 0;min-width:160px;padding:5px 0;position:absolute;top:100%;z-index:1000}.dropdown-menu.pull-right{left:auto;right:0}.dropdown-menu .divider{background-color:#e5e5e5;height:1px;margin:6px;overflow:hidden}.dropdown-menu .dropdown-menu-button,.dropdown-menu div,.dropdown-menu>li>a{clear:both;color:#495365;display:block;font-weight:400;line-height:1.5625;padding:4px 20px;white-space:nowrap}.dropdown-menu .dropdown-menu-button .subdued,.dropdown-menu .dropdown-menu-button.subdued,.dropdown-menu div .subdued,.dropdown-menu div.subdued,.dropdown-menu>li>a .subdued,.dropdown-menu>li>a.subdued{color:#7a7a7a}.dropdown-menu .dropdown-menu-button{border:none;outline:none;width:100%}.dropdown-menu .dropdown-header{color:#afb5c0}.dropdown-menu.dropdown-menu-unpositioned{display:block;float:unset;left:unset;position:unset;top:unset;z-index:unset}.dropdown-menu .dropdown-menu-button:focus,.dropdown-menu .dropdown-menu-button:hover,.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{background-color:#098842;color:#fff;text-decoration:none}.dropdown-menu .dropdown-menu-button:focus .subdued,.dropdown-menu .dropdown-menu-button:focus div,.dropdown-menu .dropdown-menu-button:hover .subdued,.dropdown-menu .dropdown-menu-button:hover div,.dropdown-menu>li>a:focus .subdued,.dropdown-menu>li>a:focus div,.dropdown-menu>li>a:hover .subdued,.dropdown-menu>li>a:hover div{color:#fff}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{background-color:#098842;color:#fff;outline:0;text-decoration:none}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a div,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:focus div,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:hover div{color:#afb5c0}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{background-color:transparent;background-image:none;cursor:not-allowed;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);text-decoration:none}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{color:#afb5c0;display:block;font-size:14px;line-height:1.5625;padding:12.5px 15px}.dropdown-backdrop{bottom:0;left:0;position:fixed;right:0;top:0;z-index:990}.pull-right>.dropdown-menu{left:auto;right:0}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-bottom:4px solid;border-top:0;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{bottom:100%;margin-bottom:1px;top:auto}@media (min-width:992px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.layout-dropdown .dropdown-toggle{text-decoration:none!important}.layout-dropdown .dropdown-menu>li svg line,.layout-dropdown .dropdown-menu>li svg rect{stroke:#495365}.layout-dropdown .dropdown-menu>li svg path{fill:#495365}.layout-dropdown .dropdown-menu>li>a{padding:4px 10px}.layout-dropdown .dropdown-menu>li>a:focus svg line,.layout-dropdown .dropdown-menu>li>a:focus svg rect,.layout-dropdown .dropdown-menu>li>a:hover svg line,.layout-dropdown .dropdown-menu>li>a:hover svg rect{stroke:#fff}.layout-dropdown .dropdown-menu>li>a:focus svg path,.layout-dropdown .dropdown-menu>li>a:hover svg path{fill:#fff}.layout-dropdown .dropdown-menu>li.disabled .subdued{color:#afb5c0}.layout-dropdown .dropdown-menu>li.disabled svg line,.layout-dropdown .dropdown-menu>li.disabled svg rect{stroke:#afb5c0}.layout-dropdown .dropdown-menu>li.disabled svg path{fill:#afb5c0}.layout-dropdown .dropdown-menu>li.disabled>a:focus .subdued,.layout-dropdown .dropdown-menu>li.disabled>a:hover .subdued{color:#afb5c0}.layout-dropdown .dropdown-menu>li.disabled>a:focus svg line,.layout-dropdown .dropdown-menu>li.disabled>a:focus svg rect,.layout-dropdown .dropdown-menu>li.disabled>a:hover svg line,.layout-dropdown .dropdown-menu>li.disabled>a:hover svg rect{stroke:#afb5c0}.layout-dropdown .dropdown-menu>li.disabled>a:focus svg path,.layout-dropdown .dropdown-menu>li.disabled>a:hover svg path{fill:#afb5c0}.layout-dropdown .layout-menu-item{justify-content:space-between;white-space:nowrap}.layout-dropdown .layout-menu-item,.layout-dropdown .layout-menu-item .layout-menu-item-start{align-items:center;display:flex;padding:0}.layout-dropdown .layout-menu-item .layout-menu-item-start>div{padding:0}.layout-dropdown .layout-dropdown-list a i{margin-right:5px}.btn-group,.btn-group-vertical{display:inline-block;position:relative;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{float:left;position:relative}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group-vertical>.btn:focus,.btn-group>.btn:focus{outline:none}.btn-group label.btn.active{background-color:#e7e9ee}.btn-group label.btn[disabled]{background-color:#e7e9ee;border-color:#e7e9ee;color:#1b222c;cursor:not-allowed;opacity:1}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle.btn-secondary{background-color:#e7e9ee}.btn-group.open .dropdown-toggle.btn-primary{background-color:#1e6b41;border-color:#1e6b41}.btn-form-cross{display:block}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;max-width:100%;width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-left:0;margin-top:-1px}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-bottom-left-radius:0;border-bottom-right-radius:0;border-top-right-radius:3px}.btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-left-radius:3px;border-top-left-radius:0;border-top-right-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-left-radius:0;border-bottom-right-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{border-collapse:separate;display:table;table-layout:fixed;width:100%}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}[data-toggle=buttons]>.btn>input[type=checkbox],[data-toggle=buttons]>.btn>input[type=radio]{display:none}.btn-group.toolbar-item{display:flex;flex-wrap:nowrap}.input-group{border-collapse:separate;display:table;position:relative}.input-group[class*=col-]{float:none;padding-left:0;padding-right:0}.input-group .form-control{float:left;margin-bottom:0;position:relative;width:100%;z-index:2}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{border-radius:5px;font-size:20px;height:49px;line-height:1.33;padding:10px 16px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:49px;line-height:49px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{border-radius:2px;font-size:14px;height:33px;line-height:1.5;padding:5px 10px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:33px;line-height:33px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{vertical-align:middle;white-space:nowrap;width:1%}.input-group-addon{background-color:#d0d5dd;border:1px solid #677283;border-radius:3px;color:#1b222c;font-size:16px;font-weight:400;line-height:1;padding:5px 16px;text-align:center}.input-group-addon.input-sm{border-radius:2px;font-size:14px;padding:5px 10px}.input-group-addon.input-lg{border-radius:5px;font-size:20px;padding:10px 16px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{font-size:0;white-space:nowrap}.input-group-btn,.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{margin-left:-1px}.nav{list-style:none;margin-bottom:0;padding-left:0}.nav>li,.nav>li>a{display:block;position:relative}.nav>li>a{padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{background-color:#3265b2;color:#fff;text-decoration:none}.nav>li.disabled>a{color:#afb5c0}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{background-color:transparent;color:#afb5c0;cursor:not-allowed;text-decoration:none}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#3265b2;border-color:#3265b2}.nav .nav-divider{background-color:#e5e5e5;height:1px;margin:6px;overflow:hidden}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{border:1px solid transparent;border-radius:3px 3px 0 0;line-height:1.5625;margin-right:2px}.nav-tabs>li>a:hover{border-color:#3265b2 #3265b2 #ddd;cursor:pointer}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;color:#677283;cursor:default}.nav-tabs.nav-justified{border-bottom:0;width:100%}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{left:auto;top:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{border-radius:3px;margin-right:0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:3px 3px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>button{border:2px solid #495365;border-radius:3px;color:#495365;padding:8px 13px}.nav-pills>li>button:focus,.nav-pills>li>button:hover{background-color:#38404d;border:2px solid #38404d}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>button,.nav-pills>li.active>button:focus,.nav-pills>li.active>button:hover{background-color:#195936;border:2px solid #195936;color:#fff}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-left:0;margin-top:2px}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{left:auto;top:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{border-radius:3px;margin-right:0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:3px 3px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content{background-color:#fff;border:1px solid #ddd;border-top:none;padding:12.5px}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{border-top-left-radius:0;border-top-right-radius:0;margin-top:-1px}.navbar{border-bottom:1px solid transparent;margin-bottom:0;min-height:60px;position:relative}@media (min-width:992px){.navbar{border-radius:0}.navbar-header{float:left}}.navbar-collapse{-webkit-overflow-scrolling:touch;height:100vh;overflow-x:visible;padding-left:15px;padding-right:15px}.navbar-collapse.in{overflow-y:auto}@media (min-width:992px){.navbar-collapse{border-top:0;box-shadow:none;width:auto}.navbar-collapse.collapse{display:block!important;height:auto!important;overflow:visible!important;padding-bottom:0}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-left:0;padding-right:0}}.navbar-main{z-index:200}.navbar-main .container-fluid>.navbar-collapse{margin:10px 0 0}@media (min-width:992px){.navbar-main .container-fluid>.navbar-collapse{margin:0}}.navbar-main .navbar-collapse{background-color:#1b222c;border-bottom:1px solid transparent;left:0;margin:0;padding:0;position:absolute;width:100%}@media (min-width:992px){.navbar-main .navbar-collapse{background-color:transparent;border-bottom:0;padding-left:15px;padding-right:15px;position:static}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-left:-15px;margin-right:-15px}@media (min-width:992px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-left:0;margin-right:0}}.navbar-static-top{border-width:0 0 1px;z-index:1000}@media (min-width:992px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{left:0;position:fixed;right:0;z-index:1030}@media (min-width:992px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{border-width:0 0 1px;top:0}.navbar-fixed-bottom{border-width:1px 0 0;bottom:0;margin-bottom:0}.navbar-brand{float:left;line-height:25px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-title{color:#e7e9ee;display:inline-block;font-size:20px;margin-top:2px}.navbar-title:active,.navbar-title:focus,.navbar-title:hover{color:#afb5c0;text-decoration:none}.navbar-toggle{background-color:transparent;background-image:none;border:0;border-radius:3px;float:right;padding:3px 10px 0;position:relative}.navbar-toggle .fa{font-size:30px}.navbar-toggle:focus{outline:none}@media (min-width:992px){.navbar-toggle{display:none}}.navbar-nav{margin:8.75px -15px}.navbar-nav>li>a{line-height:25px;padding-bottom:10px;padding-top:10px}@media (max-width:991px){.navbar-nav{margin:8.75px 0}.navbar-nav .open .dropdown-menu{background-color:transparent;border:0;box-shadow:none;float:none;margin-top:0;position:static;width:auto}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu>li>div.subdued,.navbar-nav .open .dropdown-menu>li>form>button{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu>li>form>button{line-height:25px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>form>button:focus,.navbar-nav .open .dropdown-menu>li>form>button:hover{background-image:none}.navbar-nav .open .dropdown-menu>li>div.subdued{line-height:25px}}@media (min-width:992px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-bottom:17.5px;padding-top:17.5px}.navbar-nav.navbar-right:last-child{margin-right:-15px}.navbar-left{float:left;float:left!important}.navbar-right{float:right;float:right!important}}.navbar-form{border-bottom:1px solid transparent;border-top:1px solid transparent;box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1),0 1px 0 hsla(0,0%,100%,.1);margin-bottom:12.5px;margin-left:-15px;margin-right:-15px;margin-top:12.5px;padding:10px 15px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;vertical-align:middle;width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-bottom:0;margin-top:0;padding-left:0;vertical-align:middle}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{float:none;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:991px){.navbar-form .form-group{margin-bottom:5px}}@media (min-width:992px){.navbar-form{border:0;box-shadow:none;margin-left:0;margin-right:0;padding-bottom:0;padding-top:0;width:auto}.navbar-form.navbar-right:last-child{margin-right:-15px}}.navbar-nav>li>.dropdown-menu{border-top-left-radius:0;border-top-right-radius:0;margin-top:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-bottom-left-radius:0;border-bottom-right-radius:0}.navbar-btn{margin-bottom:12.5px;margin-top:12.5px}.navbar-btn.btn-sm{margin-bottom:13.5px;margin-top:13.5px}.navbar-btn.btn-xs{margin-bottom:19px;margin-top:19px}.navbar-text{margin-bottom:17.5px;margin-top:17.5px}@media (min-width:992px){.navbar-text{float:left;margin-left:15px;margin-right:15px}.navbar-text.navbar-right:last-child{margin-right:0}}.navbar-default{background-color:#1b222c;border-color:transparent;height:68px;padding:15px 10px;position:absolute;top:0;width:100%}.navbar-default .navbar-brand{background-image:url(/images/overleaf-white-65b70e33f35fccdf6f8d.svg);background-position:0;background-repeat:no-repeat;background-size:contain;bottom:5px;padding:0;position:absolute;top:5px;width:130px}.navbar-default .navbar-text{color:#fff}.navbar-default .navbar-nav>li>a{background-color:transparent;border:2px solid transparent;color:#fff;font-size:16px;font-weight:400;line-height:1.5625}@media (min-width:992px){.navbar-default .navbar-nav>li>a{border-radius:9999px;padding:4px 16px 5px}}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{background-color:#098842;border:2px solid #098842;color:#fff}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{background-color:#098842;color:#fff}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{background-color:transparent;color:#ccc}.navbar-default .navbar-nav>li.subdued>a{background-color:transparent;border:0;color:#fff;margin-left:0}.navbar-default .navbar-nav>li.subdued>a:focus,.navbar-default .navbar-nav>li.subdued>a:hover{background-color:#fff;color:#098842}.navbar-default .navbar-nav>li.subdued>a:focus{outline:none}@media (min-width:992px){.navbar-default .navbar-nav>li.subdued>a{padding:6px 17px 7px}}.navbar-default .navbar-nav>li.primary>a{background-color:#098842;border-color:#098842;border-width:1px;color:#fff}.navbar-default .navbar-nav>li.primary>a:hover{background-color:#1e6b41;border-color:#1e6b41}.navbar-default .navbar-nav>li.primary>a:focus{color:#fff;outline:none}.navbar-default .navbar-nav>li.primary>a:active,.navbar-default .navbar-nav>li.primary>a:focus-visible{background-color:#098842;border-color:#098842;box-shadow:0 0 0 2px #97b6e5;outline:none}.navbar-default .navbar-nav>li.primary>a:active,.navbar-default .navbar-nav>li.primary>a:focus-visible,.navbar-default .navbar-nav>li.primary>a:hover{color:#fff}.navbar-default .navbar-nav>li.primary>a.disabled,.navbar-default .navbar-nav>li.primary>a.disabled.active,.navbar-default .navbar-nav>li.primary>a.disabled:active,.navbar-default .navbar-nav>li.primary>a.disabled:focus-visible,.navbar-default .navbar-nav>li.primary>a.disabled:hover,.navbar-default .navbar-nav>li.primary>a[disabled],.navbar-default .navbar-nav>li.primary>a[disabled].active,.navbar-default .navbar-nav>li.primary>a[disabled]:active,.navbar-default .navbar-nav>li.primary>a[disabled]:focus-visible,.navbar-default .navbar-nav>li.primary>a[disabled]:hover,fieldset[disabled] .navbar-default .navbar-nav>li.primary>a,fieldset[disabled] .navbar-default .navbar-nav>li.primary>a.active,fieldset[disabled] .navbar-default .navbar-nav>li.primary>a:active,fieldset[disabled] .navbar-default .navbar-nav>li.primary>a:focus-visible,fieldset[disabled] .navbar-default .navbar-nav>li.primary>a:hover{background-color:#e7e9ee;border-color:#e7e9ee;color:#afb5c0}.navbar-default .navbar-nav>li.primary>a[data-ol-loading=true],.navbar-default .navbar-nav>li.primary>a[data-ol-loading=true]:hover{background-color:#098842!important;border-color:#098842;color:#fff!important}.navbar-default .navbar-nav>li.secondary>a{background-color:#fff;border-color:#677283;border-width:1px;border-width:2px;color:#1b222c}.navbar-default .navbar-nav>li.secondary>a:hover{background-color:#e7e9ee}.navbar-default .navbar-nav>li.secondary>a:focus{color:#1b222c;outline:none}.navbar-default .navbar-nav>li.secondary>a:active,.navbar-default .navbar-nav>li.secondary>a:focus-visible{box-shadow:0 0 0 2px #97b6e5;outline:none}.navbar-default .navbar-nav>li.secondary>a:active,.navbar-default .navbar-nav>li.secondary>a:focus-visible,.navbar-default .navbar-nav>li.secondary>a:hover{color:#1b222c}.navbar-default .navbar-nav>li.secondary>a.disabled,.navbar-default .navbar-nav>li.secondary>a.disabled.active,.navbar-default .navbar-nav>li.secondary>a.disabled:active,.navbar-default .navbar-nav>li.secondary>a.disabled:focus-visible,.navbar-default .navbar-nav>li.secondary>a.disabled:hover,.navbar-default .navbar-nav>li.secondary>a[disabled],.navbar-default .navbar-nav>li.secondary>a[disabled].active,.navbar-default .navbar-nav>li.secondary>a[disabled]:active,.navbar-default .navbar-nav>li.secondary>a[disabled]:focus-visible,.navbar-default .navbar-nav>li.secondary>a[disabled]:hover,fieldset[disabled] .navbar-default .navbar-nav>li.secondary>a,fieldset[disabled] .navbar-default .navbar-nav>li.secondary>a.active,fieldset[disabled] .navbar-default .navbar-nav>li.secondary>a:active,fieldset[disabled] .navbar-default .navbar-nav>li.secondary>a:focus-visible,fieldset[disabled] .navbar-default .navbar-nav>li.secondary>a:hover{background-color:#e7e9ee;border-color:#e7e9ee;color:#afb5c0}.navbar-default .navbar-nav>li.secondary>a[data-ol-loading=true],.navbar-default .navbar-nav>li.secondary>a[data-ol-loading=true]:hover{background-color:#fff!important;border-color:#677283!important;color:#1b222c!important}@media (min-width:992px){.navbar-default .navbar-nav>li>a{border-color:#fff;margin-left:1rem}}.navbar-default .navbar-toggle.collapsed{border-color:#3265b2;color:#fff;transition:.2s ease-out}.navbar-default .navbar-toggle:not(.collapsed){background-color:#28518f;border-color:#28518f;color:#fff;transition:.2s ease-in}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:transparent}.navbar-default .navbar-collapse.in{box-shadow:0 10px 15px rgba(0,0,0,.25)}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{background-color:#098842;color:#fff}.navbar-default .navbar-nav>.open.subdued>a,.navbar-default .navbar-nav>.open.subdued>a:focus,.navbar-default .navbar-nav>.open.subdued>a:hover{background-color:#fff;color:#098842}@media (max-width:991px){.navbar-default .navbar-nav .open .dropdown-menu{background-color:#2e3a4c}.navbar-default .navbar-nav .open .dropdown-menu>li>div.subdued{color:#8d9196}.navbar-default .navbar-nav .open .dropdown-menu>li>a,.navbar-default .navbar-nav .open .dropdown-menu>li>form>button{color:#fff}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>form>button,.navbar-default .navbar-nav .open .dropdown-menu>.active>form>button:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>form>button:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>form>button:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>form>button:hover{background-color:#098842;color:#fff}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>form>button,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>form>button:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>form>button:hover{background-color:transparent;color:#ccc}}.navbar-default .navbar-link{color:#fff}.navbar-default .navbar-link:hover{color:#098842}@media (min-width:992px){.navbar-default{padding:15px 0}}.skip-to-content{background-color:transparent;border:2px solid transparent;border-radius:9999px;color:#fff;font-size:16px;font-weight:400;left:160px;line-height:1.5625;padding:4px 16px 5px;position:absolute;top:-200px;z-index:1001}.skip-to-content:focus{background-color:#098842;border:2px solid #098842;color:#fff;text-decoration:none;top:15px}.website-redesign-navbar.navbar-default{background-color:#fff}.website-redesign-navbar.navbar-default .navbar-brand{background-image:url(/images/overleaf-black-4ff59a38c75ed119cbb3.svg)}.website-redesign-navbar.navbar-default .navbar-text{color:#1b222c}@media (min-width:992px){.website-redesign-navbar.navbar-default .navbar-right:last-child{margin-right:0}}.website-redesign-navbar.navbar-default .navbar-nav>li>a{color:#1b222c}@media (min-width:992px){.website-redesign-navbar.navbar-default .navbar-nav>li>a{border-radius:9999px;padding:4px 16px 5px}}.website-redesign-navbar.navbar-default .navbar-nav>li.subdued>a{color:#1b222c}.website-redesign-navbar.navbar-default .navbar-nav>li.subdued>a:focus,.website-redesign-navbar.navbar-default .navbar-nav>li.subdued>a:hover{background-color:#1b222c;color:#fff}.website-redesign-navbar.navbar-default .navbar-nav>li.subdued>a:focus{outline:none}@media (min-width:992px){.website-redesign-navbar.navbar-default .navbar-nav>li.subdued>a{padding:6px 17px 7px}}.website-redesign-navbar.navbar-default .navbar-nav>li.primary>a{background-color:#098842;border-color:#098842;border-width:1px;color:#fff}.website-redesign-navbar.navbar-default .navbar-nav>li.primary>a:hover{background-color:#1e6b41;border-color:#1e6b41}.website-redesign-navbar.navbar-default .navbar-nav>li.primary>a:focus{color:#fff;outline:none}.website-redesign-navbar.navbar-default .navbar-nav>li.primary>a:active,.website-redesign-navbar.navbar-default .navbar-nav>li.primary>a:focus-visible{background-color:#098842;border-color:#098842;box-shadow:0 0 0 2px #97b6e5;outline:none}.website-redesign-navbar.navbar-default .navbar-nav>li.primary>a:active,.website-redesign-navbar.navbar-default .navbar-nav>li.primary>a:focus-visible,.website-redesign-navbar.navbar-default .navbar-nav>li.primary>a:hover{color:#fff}.website-redesign-navbar.navbar-default .navbar-nav>li.primary>a.disabled,.website-redesign-navbar.navbar-default .navbar-nav>li.primary>a.disabled.active,.website-redesign-navbar.navbar-default .navbar-nav>li.primary>a.disabled:active,.website-redesign-navbar.navbar-default .navbar-nav>li.primary>a.disabled:focus-visible,.website-redesign-navbar.navbar-default .navbar-nav>li.primary>a.disabled:hover,.website-redesign-navbar.navbar-default .navbar-nav>li.primary>a[disabled],.website-redesign-navbar.navbar-default .navbar-nav>li.primary>a[disabled].active,.website-redesign-navbar.navbar-default .navbar-nav>li.primary>a[disabled]:active,.website-redesign-navbar.navbar-default .navbar-nav>li.primary>a[disabled]:focus-visible,.website-redesign-navbar.navbar-default .navbar-nav>li.primary>a[disabled]:hover,fieldset[disabled] .website-redesign-navbar.navbar-default .navbar-nav>li.primary>a,fieldset[disabled] .website-redesign-navbar.navbar-default .navbar-nav>li.primary>a.active,fieldset[disabled] .website-redesign-navbar.navbar-default .navbar-nav>li.primary>a:active,fieldset[disabled] .website-redesign-navbar.navbar-default .navbar-nav>li.primary>a:focus-visible,fieldset[disabled] .website-redesign-navbar.navbar-default .navbar-nav>li.primary>a:hover{background-color:#e7e9ee;border-color:#e7e9ee;color:#afb5c0}.website-redesign-navbar.navbar-default .navbar-nav>li.primary>a[data-ol-loading=true],.website-redesign-navbar.navbar-default .navbar-nav>li.primary>a[data-ol-loading=true]:hover{background-color:#098842!important;border-color:#098842;color:#fff!important}.website-redesign-navbar.navbar-default .navbar-nav>li.secondary>a{background-color:#fff;border-color:#677283;border-color:transparent;border-width:1px;border-width:2px;color:#1b222c}.website-redesign-navbar.navbar-default .navbar-nav>li.secondary>a:hover{background-color:#e7e9ee}.website-redesign-navbar.navbar-default .navbar-nav>li.secondary>a:focus{color:#1b222c;outline:none}.website-redesign-navbar.navbar-default .navbar-nav>li.secondary>a:active,.website-redesign-navbar.navbar-default .navbar-nav>li.secondary>a:focus-visible{box-shadow:0 0 0 2px #97b6e5;outline:none}.website-redesign-navbar.navbar-default .navbar-nav>li.secondary>a:active,.website-redesign-navbar.navbar-default .navbar-nav>li.secondary>a:focus-visible,.website-redesign-navbar.navbar-default .navbar-nav>li.secondary>a:hover{color:#1b222c}.website-redesign-navbar.navbar-default .navbar-nav>li.secondary>a.disabled,.website-redesign-navbar.navbar-default .navbar-nav>li.secondary>a.disabled.active,.website-redesign-navbar.navbar-default .navbar-nav>li.secondary>a.disabled:active,.website-redesign-navbar.navbar-default .navbar-nav>li.secondary>a.disabled:focus-visible,.website-redesign-navbar.navbar-default .navbar-nav>li.secondary>a.disabled:hover,.website-redesign-navbar.navbar-default .navbar-nav>li.secondary>a[disabled],.website-redesign-navbar.navbar-default .navbar-nav>li.secondary>a[disabled].active,.website-redesign-navbar.navbar-default .navbar-nav>li.secondary>a[disabled]:active,.website-redesign-navbar.navbar-default .navbar-nav>li.secondary>a[disabled]:focus-visible,.website-redesign-navbar.navbar-default .navbar-nav>li.secondary>a[disabled]:hover,fieldset[disabled] .website-redesign-navbar.navbar-default .navbar-nav>li.secondary>a,fieldset[disabled] .website-redesign-navbar.navbar-default .navbar-nav>li.secondary>a.active,fieldset[disabled] .website-redesign-navbar.navbar-default .navbar-nav>li.secondary>a:active,fieldset[disabled] .website-redesign-navbar.navbar-default .navbar-nav>li.secondary>a:focus-visible,fieldset[disabled] .website-redesign-navbar.navbar-default .navbar-nav>li.secondary>a:hover{background-color:#e7e9ee;border-color:#e7e9ee;color:#afb5c0}.website-redesign-navbar.navbar-default .navbar-nav>li.secondary>a[data-ol-loading=true],.website-redesign-navbar.navbar-default .navbar-nav>li.secondary>a[data-ol-loading=true]:hover{background-color:#fff!important;border-color:#677283!important;color:#1b222c!important}@media (min-width:992px){.website-redesign-navbar.navbar-default .navbar-nav>li.secondary>a{border-color:#677283}}.website-redesign-navbar.navbar-default .navbar-toggle.collapsed{border-color:#1b222c;color:#1b222c;transition:.2s ease-out}.website-redesign-navbar.navbar-default .navbar-toggle:not(.collapsed){background-color:#1b222c;border-color:#1b222c;color:#fff;transition:.2s ease-in}.website-redesign-navbar.navbar-default .navbar-collapse{background-color:#fff;border-bottom:1px solid transparent}.website-redesign-navbar.navbar-default .navbar-nav .dropdown-menu-button:focus,.website-redesign-navbar.navbar-default .navbar-nav .dropdown-menu-button:hover,.website-redesign-navbar.navbar-default .navbar-nav .dropdown-menu>li>a:focus,.website-redesign-navbar.navbar-default .navbar-nav .dropdown-menu>li>a:hover{background-color:#1b222c}.website-redesign-navbar.navbar-default .navbar-nav>.open>a,.website-redesign-navbar.navbar-default .navbar-nav>.open>a:focus,.website-redesign-navbar.navbar-default .navbar-nav>.open>a:hover{background-color:#e7e9ee;color:#1b222c}.website-redesign-navbar.navbar-default .navbar-nav>.open.subdued>a,.website-redesign-navbar.navbar-default .navbar-nav>.open.subdued>a:focus,.website-redesign-navbar.navbar-default .navbar-nav>.open.subdued>a:hover{background-color:#1b222c;color:#fff}@media (max-width:991px){.website-redesign-navbar.navbar-default .navbar-nav .open .dropdown-menu{background-color:#f2f2f2}.website-redesign-navbar.navbar-default .navbar-nav .open .dropdown-menu>li>div.subdued{color:#8d9196}.website-redesign-navbar.navbar-default .navbar-nav .open .dropdown-menu>li>a,.website-redesign-navbar.navbar-default .navbar-nav .open .dropdown-menu>li>form>button{color:#1b222c}.website-redesign-navbar.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.website-redesign-navbar.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.website-redesign-navbar.navbar-default .navbar-nav .open .dropdown-menu>li>form>button:focus,.website-redesign-navbar.navbar-default .navbar-nav .open .dropdown-menu>li>form>button:hover{background-color:#1b222c;color:#fff}.website-redesign-navbar.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.website-redesign-navbar.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.website-redesign-navbar.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.website-redesign-navbar.navbar-default .navbar-nav .open .dropdown-menu>.active>form>button,.website-redesign-navbar.navbar-default .navbar-nav .open .dropdown-menu>.active>form>button:focus,.website-redesign-navbar.navbar-default .navbar-nav .open .dropdown-menu>.active>form>button:hover{background-color:#1b222c;color:#1b222c}.website-redesign-navbar.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.website-redesign-navbar.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.website-redesign-navbar.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.website-redesign-navbar.navbar-default .navbar-nav .open .dropdown-menu>.disabled>form>button,.website-redesign-navbar.navbar-default .navbar-nav .open .dropdown-menu>.disabled>form>button:focus,.website-redesign-navbar.navbar-default .navbar-nav .open .dropdown-menu>.disabled>form>button:hover{background-color:transparent;color:#2f3a4c}}blockquote.quote-large-text-centered{font-size:var(--font-size-07)!important;font-weight:600!important;line-height:var(--line-height-06)!important;text-align:center}blockquote.quote-large-text-centered:after,blockquote.quote-large-text-centered:before{content:none}blockquote.quote-large-text-centered .quote{margin-bottom:var(--spacing-08)}blockquote.quote-large-text-centered .quote:before{content:open-quote}blockquote.quote-large-text-centered .quote:after{content:close-quote}blockquote.quote-large-text-centered .quote-img img{border-radius:50%;height:64px;max-width:64px}blockquote.quote-large-text-centered footer{color:inherit;font-size:var(--font-size-body-base);font-weight:400;line-height:var(--line-height-03);padding:var(--spacing-04) 0 0 0}blockquote.quote-large-text-centered footer:before{content:none}blockquote.quote-large-text-centered footer .quote-link{margin-top:var(--spacing-05);text-align:center}@media (max-width:991px){blockquote.quote-large-text-centered{font-size:var(--font-size-04)!important;line-height:var(--line-height-04)!important}blockquote.quote-large-text-centered footer{font-size:var(--font-size-02)!important;line-height:var(--line-height-02)!important}}blockquote.quote-left-green-border{border-left:2px solid var(--green-60)!important;color:var(--neutral-90);font-size:var(--font-size-07)!important;line-height:var(--line-height-06)!important;padding:var(--spacing-04) 0 var(--spacing-04) var(--spacing-06)!important;text-align:left}blockquote.quote-left-green-border:after,blockquote.quote-left-green-border:before{content:none}blockquote.quote-left-green-border .quote:before{content:open-quote}blockquote.quote-left-green-border .quote:after{content:close-quote}blockquote.quote-left-green-border footer{color:var(--neutral-70);font-size:var(--font-size-04);font-weight:400;line-height:var(--line-height-03);margin:var(--spacing-09) 0 0 0;padding:0}blockquote.quote-left-green-border .quote-link{margin-top:var(--spacing-05)}footer.site-footer{background-color:#fff;border-top:1px solid #d0d5dd;bottom:0;font-size:.9rem;height:50px;line-height:49px;position:absolute;width:100%}footer.site-footer ul{list-style:none;margin:0}footer.site-footer ul li{display:inline-block;margin:0 .5em}footer.site-footer ul i{font-size:1.2rem}footer.site-footer li.lng-option{display:list-item;text-align:left}footer.site-footer li.lng-option img{vertical-align:text-bottom}footer.site-footer li.lng-option a:focus,footer.site-footer li.lng-option a:hover{color:#fff}footer.site-footer a{color:#1e6b41}footer.site-footer a:focus,footer.site-footer a:hover{color:#195936}.site-footer-content{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px}.site-footer-content>.navbar-collapse,.site-footer-content>.navbar-header{margin-left:-15px;margin-right:-15px}@media (min-width:992px){.site-footer-content>.navbar-collapse,.site-footer-content>.navbar-header{margin-left:0;margin-right:0}}.sprite-icon-lang{display:inline-block;vertical-align:middle}.fat-footer{background:#1b222c;color:#e7e9ee;display:flex;flex-direction:column}.fat-footer .fat-footer-container{margin:50px auto}.fat-footer a{color:#e7e9ee}.fat-footer .footer-brand-container{flex:1}.fat-footer .fat-footer-sections{-moz-column-gap:20px;column-gap:20px;display:grid;padding:0 20px 20px}.fat-footer .footer-brand{background-image:url(/images/overleaf-white-65b70e33f35fccdf6f8d.svg);background-position:0;background-repeat:no-repeat;background-size:contain;display:block;height:37px;width:130px}.fat-footer .footer-section-heading{color:#e7e9ee;font-family:Merriweather,serif;font-size:20px;line-height:1.35;margin-bottom:20px;margin-top:20px}.fat-footer .footer-section ul{font-family:Lato,sans-serif;font-size:16px;line-height:1.5}.fat-footer .footer-section li{padding-bottom:10px}.fat-footer #footer-brand{grid-column:1/-1;margin-top:20px}.fat-footer .fat-footer-base{color:#afb5c0;font-size:14px;line-height:1.5625}.fat-footer .fat-footer-base .fat-footer-base-meta a:not(.dropdown-toggle){color:inherit}.fat-footer .fat-footer-base .language-picker .dropdown-menu .dropdown-header{display:none}.fat-footer .fat-footer-base .language-picker .dropdown-menu a{color:#495365}.fat-footer .fat-footer-base .language-picker .dropdown-menu a:hover{color:#fff}.fat-footer .fat-footer-base-item{display:flex;white-space:nowrap}@media (max-width:767px){.fat-footer .fat-footer-sections{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(4,auto)}.fat-footer .fat-footer-base{flex-direction:column;margin:20px auto 0}.fat-footer .fat-footer-base,.fat-footer .fat-footer-base .fat-footer-base-section{align-items:center;display:flex}.fat-footer .fat-footer-base .fat-footer-base-social{order:1}.fat-footer .fat-footer-base .fat-footer-base-meta{align-items:center;display:flex;flex-direction:column-reverse;order:2}.fat-footer .fat-footer-base .fat-footer-base-item{margin:15px;padding:5px}.fat-footer .fat-footer-base .fat-footer-base-meta .fat-footer-base-item{gap:30px}.fat-footer .fat-footer-base .fat-footer-base-social .fat-footer-base-item{gap:20px}.fat-footer .fat-footer-base .fat-footer-social{font-size:30px}.fat-footer .fat-footer-base .fat-footer-base-copyright{order:2}}@media (min-width:768px){.fat-footer .fat-footer-container{width:748px}.fat-footer #footer-brand{grid-column:auto;grid-row:1/-1}.fat-footer .fat-footer-sections{grid-template-columns:repeat(4,1fr);grid-template-rows:repeat(2,auto)}.fat-footer .footer-section:last-of-type{grid-column:4}.fat-footer .footer-section ul{line-height:20px}.fat-footer .fat-footer-base{display:flex;justify-content:space-between;margin:20px auto}.fat-footer .fat-footer-base .fat-footer-base-section{align-items:center;display:flex}.fat-footer .fat-footer-base .fat-footer-base-item{margin:5px;padding:5px}.fat-footer .fat-footer-base .fat-footer-base-meta .fat-footer-base-item{gap:20px}.fat-footer .fat-footer-base .fat-footer-social{font-size:30px;margin:0 5px}}@media (min-width:992px){.fat-footer .fat-footer-container{width:972px}.fat-footer .fat-footer-sections{grid-template-columns:repeat(4,1fr)}}@media (min-width:1200px){.fat-footer .fat-footer-container{width:1170px}.fat-footer .fat-footer-sections{grid-template-columns:repeat(6,1fr);grid-template-rows:auto}.fat-footer .footer-section:last-of-type{grid-column:6}}.cookie-banner{background:#f4f5f6;bottom:0;box-shadow:0 -5px 8px 0 #0000001a;color:#495365;font-size:.9rem;left:0;line-height:1;padding:10px 20px;position:fixed;right:0;z-index:100}.cookie-banner .cookie-banner-actions{padding-top:10px}@media (min-width:768px){.cookie-banner{align-items:center;display:flex;flex-wrap:wrap}.cookie-banner .cookie-banner-content{flex:1}.cookie-banner .cookie-banner-actions{flex-shrink:0;padding-top:0;white-space:nowrap}}@media (max-width:767px){.website-redesign-fat-footer .fat-footer-container{margin:50px 0}}.website-redesign-fat-footer.fat-footer{background:#fff;color:#1b222c}.website-redesign-fat-footer.fat-footer .footer-section-heading,.website-redesign-fat-footer.fat-footer a{color:#1b222c}.website-redesign-fat-footer.fat-footer h2{font-weight:400}.website-redesign-fat-footer.fat-footer .fat-footer-base{color:#1b222c}.website-redesign-fat-footer .footer-brand{background-image:url(/images/overleaf-black-4ff59a38c75ed119cbb3.svg)}@media (max-width:767px){.website-redesign-fat-footer .fat-footer-sections{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(6,auto)}}.notification-body{flex-grow:1;width:90%}@media (min-width:768px){.notification-body{width:auto}}.notification-action{margin-top:12.5px;order:1}@media (min-width:768px){.notification-action{margin-top:0;order:0;padding-left:10px}}.notification-close{padding-left:10px;text-align:right;width:10%}.notification-close button{aspect-ratio:1;background:transparent;border:0;border-radius:50%;cursor:pointer;display:flex;float:right;padding:5.5px}.notification-close button:focus,.notification-close button:hover{background-color:rgba(27,34,44,.08);color:#495365}@media (min-width:768px){.notification-close{width:auto}}.notification{border-radius:4px;color:#1b222c;display:flex;padding:0 16px 0 16px;width:100%}.notification a:not(.btn){text-decoration:underline}.notification p{margin-bottom:4px}.notification .notification-icon{flex-grow:0;padding:18px 16px 0 0}.notification .notification-content-and-cta{display:flex;flex-grow:1;flex-wrap:wrap}.notification .notification-content-and-cta p:last-child{margin-bottom:0}.notification .notification-content{flex-grow:1;padding:16px 0 16px 0;width:100%}.notification .notification-cta{padding-bottom:16px}.notification .notification-cta a{font-weight:700}.notification .notification-cta a,.notification .notification-cta button{white-space:nowrap}.notification .notification-disclaimer{color:#677283;font-size:14px;padding-bottom:16px}.notification .notification-close-btn{align-items:center;display:flex;height:56px;padding:0 0 0 16px}.notification .notification-close-btn button{aspect-ratio:1;background:transparent;border:0;border-radius:50%;cursor:pointer;display:flex;float:right;padding:5.5px}.notification .notification-close-btn button:focus,.notification .notification-close-btn button:hover{background-color:rgba(27,34,44,.08);color:#495365}.notification.notification-type-info{background-color:#f1f4f9;border:1px solid #c3d0e3}.notification.notification-type-info .notification-icon{color:#3265b2}.notification.notification-type-success{background-color:#eaf6ef;border:1px solid #b8dbc8}.notification.notification-type-success .notification-icon{color:#098842}.notification.notification-type-warning{background-color:#fcf1e3;border:1px solid #fcc483}.notification.notification-type-warning .notification-icon{color:#de8014}.notification.notification-type-error{background-color:#f9f1f1;border:1px solid #f5beba}.notification.notification-type-error .notification-icon{color:#b83a33}.notification.notification-type-offer{background-color:#fff;border:1px solid #e7e9ee}.notification.notification-type-offer .notification-icon{color:#8d96a5}@media (min-width:768px){.notification:not(.notification-cta-below-content) .notification-content-and-cta{flex-wrap:nowrap}.notification:not(.notification-cta-below-content) .notification-content{width:auto}.notification:not(.notification-cta-below-content) .notification-cta{align-items:center;display:flex;height:56px;padding-bottom:0;padding-left:16px}}.notification-with-scroll-margin{scroll-margin:16px}.notification-list .notification{margin-bottom:20px}.reconfirm-notification{display:flex;width:100%}.reconfirm-notification .fa-warning{margin-right:10px}.reconfirm-notification .btn-reconfirm{float:right;margin-left:10px;text-transform:capitalize}.group-invitation-cancel-subscription-notification-buttons{align-items:center;display:flex}.affiliations-table .reconfirm-notification{margin:0 auto 10px auto!important;padding:20px}.affiliations-table .reconfirm-row td{border:0}.affiliations-table .reconfirm-row td .alert{border:0;padding:0}.affiliations-table .reconfirm-row td :not(.alert) .reconfirm-notification{background-color:#f4f5f6;border-radius:3px}.affiliations-table .reconfirm-row td :not(.alert) .reconfirm-notification .fa-warning{color:#de8014}.gallery-official,.gallery-top-pick-badge,.label,.phase-badge{border-radius:.25em;color:#fff;display:inline;font-size:85%;font-weight:700;line-height:1;padding:.2em .6em .3em;text-align:center;vertical-align:baseline;white-space:nowrap}.label[href]:focus,.label[href]:hover{color:#fff;cursor:pointer;text-decoration:none}.label:empty{display:none}.btn .label{position:relative;top:-1px}.gallery-official,.gallery-top-pick-badge,.label,.phase-badge{align-items:center;display:inline-flex;max-width:100%;padding:.3em .6em}.label-default{background-color:#afb5c0}.label-default[href]:focus,.label-default[href]:hover{background-color:#929baa}.gallery-top-pick-badge,.label-primary{background-color:#098842}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#06582b}.label-success{background-color:#098842}.label-success[href]:focus,.label-success[href]:hover{background-color:#06582b}.gallery-official,.label-info,.phase-badge{background-color:#3265b2}.label-info[href]:focus,.label-info[href]:hover{background-color:#274e8a}.label-warning{background-color:#de8014}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#af6510}.label-danger{background-color:#b83a33}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#902d28}.label-text{color:#495365;font-size:100%}.label-premium{background-color:#e7e9ee;background-image:url(/images/star-gradient-98c2d414c9c4880d3b59.svg);background-position:2px 2px;background-repeat:no-repeat;border-radius:4px;color:#1b222c;display:inline-block;font-family:Lato,sans-serif;font-size:12px;margin-left:10px;padding:4px 4px 4px 20px;vertical-align:middle}.full-size-loading-spinner-container{align-items:center;display:flex;height:100%;justify-content:center;width:100%}.loading{align-items:center;display:inline-flex}.thumbnail{background-color:#fff;border:1px solid #ddd;border-radius:3px;display:block;line-height:1.5625;margin-bottom:25px;padding:4px;transition:all .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-left:auto;margin-right:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#3265b2}.thumbnail .caption{color:#495365;padding:9px}.alert{border-left:3px solid transparent;border-radius:3px;margin-bottom:25px;padding:15px}.alert h4{color:inherit;margin-top:0}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert p:last-child{margin-bottom:0}.alert-dismissable{padding-right:35px}.alert-dismissable .close{color:inherit;position:relative;right:-21px;top:-2px}.alert-success{background-color:#098842;border-color:transparent;color:#fff}.alert-success hr{border-top-color:transparent}.alert-success .alert-link{color:#e6e6e6}.alert-success .alert-link-as-btn,.alert-success button{background-color:#087438;border-color:transparent;border-radius:9999px;color:#fff;display:inline-block;font-size:14px;font-weight:700;line-height:1.5;padding:0 10px;text-decoration:none}.alert .alert-success .alert-link-as-btn,.alert .alert-success button{background-color:#032713}.alert .alert-success .alert-link-as-btn.active,.alert .alert-success .alert-link-as-btn.checked,.alert .alert-success .alert-link-as-btn:active,.alert .alert-success .alert-link-as-btn:focus,.alert .alert-success .alert-link-as-btn:hover,.alert .alert-success button.active,.alert .alert-success button.checked,.alert .alert-success button:active,.alert .alert-success button:focus,.alert .alert-success button:hover,.open .dropdown-toggle.alert .alert-success .alert-link-as-btn,.open .dropdown-toggle.alert .alert-success button{background-color:#000100}.alert-success .alert-link-as-btn.active,.alert-success .alert-link-as-btn.checked,.alert-success .alert-link-as-btn:active,.alert-success .alert-link-as-btn:focus,.alert-success .alert-link-as-btn:hover,.alert-success button.active,.alert-success button.checked,.alert-success button:active,.alert-success button:focus,.alert-success button:hover,.open .dropdown-toggle.alert-success .alert-link-as-btn,.open .dropdown-toggle.alert-success button{background-color:#054d26;border-color:transparent;color:#fff}.alert-success .alert-link-as-btn.active,.alert-success .alert-link-as-btn:active,.alert-success button.active,.alert-success button:active,.open .dropdown-toggle.alert-success .alert-link-as-btn,.open .dropdown-toggle.alert-success button{background-image:none}.alert-success .alert-link-as-btn.disabled,.alert-success .alert-link-as-btn.disabled.active,.alert-success .alert-link-as-btn.disabled:active,.alert-success .alert-link-as-btn.disabled:focus,.alert-success .alert-link-as-btn.disabled:hover,.alert-success .alert-link-as-btn[disabled],.alert-success .alert-link-as-btn[disabled].active,.alert-success .alert-link-as-btn[disabled]:active,.alert-success .alert-link-as-btn[disabled]:focus,.alert-success .alert-link-as-btn[disabled]:hover,.alert-success button.disabled,.alert-success button.disabled.active,.alert-success button.disabled:active,.alert-success button.disabled:focus,.alert-success button.disabled:hover,.alert-success button[disabled],.alert-success button[disabled].active,.alert-success button[disabled]:active,.alert-success button[disabled]:focus,.alert-success button[disabled]:hover,fieldset[disabled] .alert-success .alert-link-as-btn,fieldset[disabled] .alert-success .alert-link-as-btn.active,fieldset[disabled] .alert-success .alert-link-as-btn:active,fieldset[disabled] .alert-success .alert-link-as-btn:focus,fieldset[disabled] .alert-success .alert-link-as-btn:hover,fieldset[disabled] .alert-success button,fieldset[disabled] .alert-success button.active,fieldset[disabled] .alert-success button:active,fieldset[disabled] .alert-success button:focus,fieldset[disabled] .alert-success button:hover{background-color:#087438;border-color:transparent}.alert-success .alert-link-as-btn .badge,.alert-success button .badge{background-color:#fff;color:#087438}.alert-success .alert-link-as-btn:hover,.alert-success button:hover{text-decoration:none}.alert-success button{border-width:0}.alert-success .small,.alert-success small{color:#fff}.btn-alert-success{background-color:#087438;border-color:transparent;border-radius:9999px;color:#fff}.alert .btn-alert-success{background-color:#032713}.alert .btn-alert-success.active,.alert .btn-alert-success.checked,.alert .btn-alert-success:active,.alert .btn-alert-success:focus,.alert .btn-alert-success:hover,.open .dropdown-toggle.alert .btn-alert-success{background-color:#000100}.btn-alert-success.active,.btn-alert-success.checked,.btn-alert-success:active,.btn-alert-success:focus,.btn-alert-success:hover,.open .dropdown-toggle.btn-alert-success{background-color:#054d26;border-color:transparent;color:#fff}.btn-alert-success.active,.btn-alert-success:active,.open .dropdown-toggle.btn-alert-success{background-image:none}.btn-alert-success.disabled,.btn-alert-success.disabled.active,.btn-alert-success.disabled:active,.btn-alert-success.disabled:focus,.btn-alert-success.disabled:hover,.btn-alert-success[disabled],.btn-alert-success[disabled].active,.btn-alert-success[disabled]:active,.btn-alert-success[disabled]:focus,.btn-alert-success[disabled]:hover,fieldset[disabled] .btn-alert-success,fieldset[disabled] .btn-alert-success.active,fieldset[disabled] .btn-alert-success:active,fieldset[disabled] .btn-alert-success:focus,fieldset[disabled] .btn-alert-success:hover{background-color:#087438;border-color:transparent}.btn-alert-success .badge{background-color:#fff;color:#087438}.alert-info{background-color:#3265b2;border-color:transparent;color:#fff}.alert-info hr{border-top-color:transparent}.alert-info .alert-link{color:#e6e6e6}.alert-info .alert-link-as-btn,.alert-info button{background-color:#2b5697;border-color:transparent;border-radius:9999px;color:#fff;display:inline-block;font-size:14px;font-weight:700;line-height:1.5;padding:0 10px;text-decoration:none}.alert .alert-info .alert-link-as-btn,.alert .alert-info button{background-color:#193258}.alert .alert-info .alert-link-as-btn.active,.alert .alert-info .alert-link-as-btn.checked,.alert .alert-info .alert-link-as-btn:active,.alert .alert-info .alert-link-as-btn:focus,.alert .alert-info .alert-link-as-btn:hover,.alert .alert-info button.active,.alert .alert-info button.checked,.alert .alert-info button:active,.alert .alert-info button:focus,.alert .alert-info button:hover,.open .dropdown-toggle.alert .alert-info .alert-link-as-btn,.open .dropdown-toggle.alert .alert-info button{background-color:#102038}.alert-info .alert-link-as-btn.active,.alert-info .alert-link-as-btn.checked,.alert-info .alert-link-as-btn:active,.alert-info .alert-link-as-btn:focus,.alert-info .alert-link-as-btn:hover,.alert-info button.active,.alert-info button.checked,.alert-info button:active,.alert-info button:focus,.alert-info button:hover,.open .dropdown-toggle.alert-info .alert-link-as-btn,.open .dropdown-toggle.alert-info button{background-color:#247;border-color:transparent;color:#fff}.alert-info .alert-link-as-btn.active,.alert-info .alert-link-as-btn:active,.alert-info button.active,.alert-info button:active,.open .dropdown-toggle.alert-info .alert-link-as-btn,.open .dropdown-toggle.alert-info button{background-image:none}.alert-info .alert-link-as-btn.disabled,.alert-info .alert-link-as-btn.disabled.active,.alert-info .alert-link-as-btn.disabled:active,.alert-info .alert-link-as-btn.disabled:focus,.alert-info .alert-link-as-btn.disabled:hover,.alert-info .alert-link-as-btn[disabled],.alert-info .alert-link-as-btn[disabled].active,.alert-info .alert-link-as-btn[disabled]:active,.alert-info .alert-link-as-btn[disabled]:focus,.alert-info .alert-link-as-btn[disabled]:hover,.alert-info button.disabled,.alert-info button.disabled.active,.alert-info button.disabled:active,.alert-info button.disabled:focus,.alert-info button.disabled:hover,.alert-info button[disabled],.alert-info button[disabled].active,.alert-info button[disabled]:active,.alert-info button[disabled]:focus,.alert-info button[disabled]:hover,fieldset[disabled] .alert-info .alert-link-as-btn,fieldset[disabled] .alert-info .alert-link-as-btn.active,fieldset[disabled] .alert-info .alert-link-as-btn:active,fieldset[disabled] .alert-info .alert-link-as-btn:focus,fieldset[disabled] .alert-info .alert-link-as-btn:hover,fieldset[disabled] .alert-info button,fieldset[disabled] .alert-info button.active,fieldset[disabled] .alert-info button:active,fieldset[disabled] .alert-info button:focus,fieldset[disabled] .alert-info button:hover{background-color:#2b5697;border-color:transparent}.alert-info .alert-link-as-btn .badge,.alert-info button .badge{background-color:#fff;color:#2b5697}.alert-info .alert-link-as-btn:hover,.alert-info button:hover{text-decoration:none}.alert-info button{border-width:0}.alert-info .small,.alert-info small{color:#fff}.alert-info-alt{background-color:#495365;border-color:transparent;color:#e7e9ee}.alert-info-alt hr{border-top-color:transparent}.alert-info-alt .alert-link{color:#c9ced9}.alert-info-alt .alert-link-as-btn,.alert-info-alt button{background-color:#3e4756;border-color:transparent;border-radius:9999px;color:#fff;display:inline-block;font-size:14px;font-weight:700;line-height:1.5;padding:0 10px;text-decoration:none}.alert .alert-info-alt .alert-link-as-btn,.alert .alert-info-alt button{background-color:#1c2026}.alert .alert-info-alt .alert-link-as-btn.active,.alert .alert-info-alt .alert-link-as-btn.checked,.alert .alert-info-alt .alert-link-as-btn:active,.alert .alert-info-alt .alert-link-as-btn:focus,.alert .alert-info-alt .alert-link-as-btn:hover,.alert .alert-info-alt button.active,.alert .alert-info-alt button.checked,.alert .alert-info-alt button:active,.alert .alert-info-alt button:focus,.alert .alert-info-alt button:hover,.open .dropdown-toggle.alert .alert-info-alt .alert-link-as-btn,.open .dropdown-toggle.alert .alert-info-alt button{background-color:#0b0c0f}.alert-info-alt .alert-link-as-btn.active,.alert-info-alt .alert-link-as-btn.checked,.alert-info-alt .alert-link-as-btn:active,.alert-info-alt .alert-link-as-btn:focus,.alert-info-alt .alert-link-as-btn:hover,.alert-info-alt button.active,.alert-info-alt button.checked,.alert-info-alt button:active,.alert-info-alt button:focus,.alert-info-alt button:hover,.open .dropdown-toggle.alert-info-alt .alert-link-as-btn,.open .dropdown-toggle.alert-info-alt button{background-color:#2d333e;border-color:transparent;color:#fff}.alert-info-alt .alert-link-as-btn.active,.alert-info-alt .alert-link-as-btn:active,.alert-info-alt button.active,.alert-info-alt button:active,.open .dropdown-toggle.alert-info-alt .alert-link-as-btn,.open .dropdown-toggle.alert-info-alt button{background-image:none}.alert-info-alt .alert-link-as-btn.disabled,.alert-info-alt .alert-link-as-btn.disabled.active,.alert-info-alt .alert-link-as-btn.disabled:active,.alert-info-alt .alert-link-as-btn.disabled:focus,.alert-info-alt .alert-link-as-btn.disabled:hover,.alert-info-alt .alert-link-as-btn[disabled],.alert-info-alt .alert-link-as-btn[disabled].active,.alert-info-alt .alert-link-as-btn[disabled]:active,.alert-info-alt .alert-link-as-btn[disabled]:focus,.alert-info-alt .alert-link-as-btn[disabled]:hover,.alert-info-alt button.disabled,.alert-info-alt button.disabled.active,.alert-info-alt button.disabled:active,.alert-info-alt button.disabled:focus,.alert-info-alt button.disabled:hover,.alert-info-alt button[disabled],.alert-info-alt button[disabled].active,.alert-info-alt button[disabled]:active,.alert-info-alt button[disabled]:focus,.alert-info-alt button[disabled]:hover,fieldset[disabled] .alert-info-alt .alert-link-as-btn,fieldset[disabled] .alert-info-alt .alert-link-as-btn.active,fieldset[disabled] .alert-info-alt .alert-link-as-btn:active,fieldset[disabled] .alert-info-alt .alert-link-as-btn:focus,fieldset[disabled] .alert-info-alt .alert-link-as-btn:hover,fieldset[disabled] .alert-info-alt button,fieldset[disabled] .alert-info-alt button.active,fieldset[disabled] .alert-info-alt button:active,fieldset[disabled] .alert-info-alt button:focus,fieldset[disabled] .alert-info-alt button:hover{background-color:#3e4756;border-color:transparent}.alert-info-alt .alert-link-as-btn .badge,.alert-info-alt button .badge{background-color:#fff;color:#3e4756}.alert-info-alt .alert-link-as-btn:hover,.alert-info-alt button:hover{text-decoration:none}.alert-info-alt button{border-width:0}.alert-info-alt .small,.alert-info-alt small{color:#e7e9ee}.btn-alert-info{background-color:#3265b2;border-color:transparent;color:#fff}.alert .btn-alert-info,.btn-alert-info{background-color:#204172}.alert .btn-alert-info.active,.alert .btn-alert-info.checked,.alert .btn-alert-info:active,.alert .btn-alert-info:focus,.alert .btn-alert-info:hover,.open .dropdown-toggle.alert .btn-alert-info{background-color:#172f52}.btn-alert-info.active,.btn-alert-info.checked,.btn-alert-info:active,.btn-alert-info:focus,.btn-alert-info:hover,.open .dropdown-toggle.btn-alert-info{background-color:#295392;border-color:transparent;color:#fff}.btn-alert-info.active,.btn-alert-info:active,.open .dropdown-toggle.btn-alert-info{background-image:none}.btn-alert-info.disabled,.btn-alert-info.disabled.active,.btn-alert-info.disabled:active,.btn-alert-info.disabled:focus,.btn-alert-info.disabled:hover,.btn-alert-info[disabled],.btn-alert-info[disabled].active,.btn-alert-info[disabled]:active,.btn-alert-info[disabled]:focus,.btn-alert-info[disabled]:hover,fieldset[disabled] .btn-alert-info,fieldset[disabled] .btn-alert-info.active,fieldset[disabled] .btn-alert-info:active,fieldset[disabled] .btn-alert-info:focus,fieldset[disabled] .btn-alert-info:hover{background-color:#3265b2;border-color:transparent}.btn-alert-info .badge{background-color:#fff;color:#3265b2}.btn-alert-info.active,.btn-alert-info.checked,.btn-alert-info:active,.btn-alert-info:focus,.btn-alert-info:hover,.open .dropdown-toggle.btn-alert-info{background-color:#172f52}.alert-warning{background-color:#de8014;border-color:transparent;color:#fff}.alert-warning hr{border-top-color:transparent}.alert-warning .alert-link{color:#e6e6e6}.alert-warning .alert-link-as-btn,.alert-warning button{background-color:#bd6d11;border-color:transparent;border-radius:9999px;color:#fff;display:inline-block;font-size:14px;font-weight:700;line-height:1.5;padding:0 10px;text-decoration:none}.alert .alert-warning .alert-link-as-btn,.alert .alert-warning button{background-color:#72420a}.alert .alert-warning .alert-link-as-btn.active,.alert .alert-warning .alert-link-as-btn.checked,.alert .alert-warning .alert-link-as-btn:active,.alert .alert-warning .alert-link-as-btn:focus,.alert .alert-warning .alert-link-as-btn:hover,.alert .alert-warning button.active,.alert .alert-warning button.checked,.alert .alert-warning button:active,.alert .alert-warning button:focus,.alert .alert-warning button:hover,.open .dropdown-toggle.alert .alert-warning .alert-link-as-btn,.open .dropdown-toggle.alert .alert-warning button{background-color:#4c2c07}.alert-warning .alert-link-as-btn.active,.alert-warning .alert-link-as-btn.checked,.alert-warning .alert-link-as-btn:active,.alert-warning .alert-link-as-btn:focus,.alert-warning .alert-link-as-btn:hover,.alert-warning button.active,.alert-warning button.checked,.alert-warning button:active,.alert-warning button:focus,.alert-warning button:hover,.open .dropdown-toggle.alert-warning .alert-link-as-btn,.open .dropdown-toggle.alert-warning button{background-color:#97570e;border-color:transparent;color:#fff}.alert-warning .alert-link-as-btn.active,.alert-warning .alert-link-as-btn:active,.alert-warning button.active,.alert-warning button:active,.open .dropdown-toggle.alert-warning .alert-link-as-btn,.open .dropdown-toggle.alert-warning button{background-image:none}.alert-warning .alert-link-as-btn.disabled,.alert-warning .alert-link-as-btn.disabled.active,.alert-warning .alert-link-as-btn.disabled:active,.alert-warning .alert-link-as-btn.disabled:focus,.alert-warning .alert-link-as-btn.disabled:hover,.alert-warning .alert-link-as-btn[disabled],.alert-warning .alert-link-as-btn[disabled].active,.alert-warning .alert-link-as-btn[disabled]:active,.alert-warning .alert-link-as-btn[disabled]:focus,.alert-warning .alert-link-as-btn[disabled]:hover,.alert-warning button.disabled,.alert-warning button.disabled.active,.alert-warning button.disabled:active,.alert-warning button.disabled:focus,.alert-warning button.disabled:hover,.alert-warning button[disabled],.alert-warning button[disabled].active,.alert-warning button[disabled]:active,.alert-warning button[disabled]:focus,.alert-warning button[disabled]:hover,fieldset[disabled] .alert-warning .alert-link-as-btn,fieldset[disabled] .alert-warning .alert-link-as-btn.active,fieldset[disabled] .alert-warning .alert-link-as-btn:active,fieldset[disabled] .alert-warning .alert-link-as-btn:focus,fieldset[disabled] .alert-warning .alert-link-as-btn:hover,fieldset[disabled] .alert-warning button,fieldset[disabled] .alert-warning button.active,fieldset[disabled] .alert-warning button:active,fieldset[disabled] .alert-warning button:focus,fieldset[disabled] .alert-warning button:hover{background-color:#bd6d11;border-color:transparent}.alert-warning .alert-link-as-btn .badge,.alert-warning button .badge{background-color:#fff;color:#bd6d11}.alert-warning .alert-link-as-btn:hover,.alert-warning button:hover{text-decoration:none}.alert-warning button{border-width:0}.alert-warning .small,.alert-warning small{color:#fff}.btn-alert-warning{background-color:#bd6d11;border-color:transparent;border-radius:9999px;color:#fff}.alert .btn-alert-warning{background-color:#72420a}.alert .btn-alert-warning.active,.alert .btn-alert-warning.checked,.alert .btn-alert-warning:active,.alert .btn-alert-warning:focus,.alert .btn-alert-warning:hover,.open .dropdown-toggle.alert .btn-alert-warning{background-color:#4c2c07}.btn-alert-warning.active,.btn-alert-warning.checked,.btn-alert-warning:active,.btn-alert-warning:focus,.btn-alert-warning:hover,.open .dropdown-toggle.btn-alert-warning{background-color:#97570e;border-color:transparent;color:#fff}.btn-alert-warning.active,.btn-alert-warning:active,.open .dropdown-toggle.btn-alert-warning{background-image:none}.btn-alert-warning.disabled,.btn-alert-warning.disabled.active,.btn-alert-warning.disabled:active,.btn-alert-warning.disabled:focus,.btn-alert-warning.disabled:hover,.btn-alert-warning[disabled],.btn-alert-warning[disabled].active,.btn-alert-warning[disabled]:active,.btn-alert-warning[disabled]:focus,.btn-alert-warning[disabled]:hover,fieldset[disabled] .btn-alert-warning,fieldset[disabled] .btn-alert-warning.active,fieldset[disabled] .btn-alert-warning:active,fieldset[disabled] .btn-alert-warning:focus,fieldset[disabled] .btn-alert-warning:hover{background-color:#bd6d11;border-color:transparent}.btn-alert-warning .badge{background-color:#fff;color:#bd6d11}.alert-danger{background-color:#b83a33;border-color:transparent;color:#fff}.alert-danger hr{border-top-color:transparent}.alert-danger .alert-link{color:#e6e6e6}.alert-danger .alert-link-as-btn,.alert-danger button{background-color:#9c312b;border-color:transparent;border-radius:9999px;color:#fff;display:inline-block;font-size:14px;font-weight:700;line-height:1.5;padding:0 10px;text-decoration:none}.alert .alert-danger .alert-link-as-btn,.alert .alert-danger button{background-color:#5d1d1a}.alert .alert-danger .alert-link-as-btn.active,.alert .alert-danger .alert-link-as-btn.checked,.alert .alert-danger .alert-link-as-btn:active,.alert .alert-danger .alert-link-as-btn:focus,.alert .alert-danger .alert-link-as-btn:hover,.alert .alert-danger button.active,.alert .alert-danger button.checked,.alert .alert-danger button:active,.alert .alert-danger button:focus,.alert .alert-danger button:hover,.open .dropdown-toggle.alert .alert-danger .alert-link-as-btn,.open .dropdown-toggle.alert .alert-danger button{background-color:#3d1311}.alert-danger .alert-link-as-btn.active,.alert-danger .alert-link-as-btn.checked,.alert-danger .alert-link-as-btn:active,.alert-danger .alert-link-as-btn:focus,.alert-danger .alert-link-as-btn:hover,.alert-danger button.active,.alert-danger button.checked,.alert-danger button:active,.alert-danger button:focus,.alert-danger button:hover,.open .dropdown-toggle.alert-danger .alert-link-as-btn,.open .dropdown-toggle.alert-danger button{background-color:#7c2722;border-color:transparent;color:#fff}.alert-danger .alert-link-as-btn.active,.alert-danger .alert-link-as-btn:active,.alert-danger button.active,.alert-danger button:active,.open .dropdown-toggle.alert-danger .alert-link-as-btn,.open .dropdown-toggle.alert-danger button{background-image:none}.alert-danger .alert-link-as-btn.disabled,.alert-danger .alert-link-as-btn.disabled.active,.alert-danger .alert-link-as-btn.disabled:active,.alert-danger .alert-link-as-btn.disabled:focus,.alert-danger .alert-link-as-btn.disabled:hover,.alert-danger .alert-link-as-btn[disabled],.alert-danger .alert-link-as-btn[disabled].active,.alert-danger .alert-link-as-btn[disabled]:active,.alert-danger .alert-link-as-btn[disabled]:focus,.alert-danger .alert-link-as-btn[disabled]:hover,.alert-danger button.disabled,.alert-danger button.disabled.active,.alert-danger button.disabled:active,.alert-danger button.disabled:focus,.alert-danger button.disabled:hover,.alert-danger button[disabled],.alert-danger button[disabled].active,.alert-danger button[disabled]:active,.alert-danger button[disabled]:focus,.alert-danger button[disabled]:hover,fieldset[disabled] .alert-danger .alert-link-as-btn,fieldset[disabled] .alert-danger .alert-link-as-btn.active,fieldset[disabled] .alert-danger .alert-link-as-btn:active,fieldset[disabled] .alert-danger .alert-link-as-btn:focus,fieldset[disabled] .alert-danger .alert-link-as-btn:hover,fieldset[disabled] .alert-danger button,fieldset[disabled] .alert-danger button.active,fieldset[disabled] .alert-danger button:active,fieldset[disabled] .alert-danger button:focus,fieldset[disabled] .alert-danger button:hover{background-color:#9c312b;border-color:transparent}.alert-danger .alert-link-as-btn .badge,.alert-danger button .badge{background-color:#fff;color:#9c312b}.alert-danger .alert-link-as-btn:hover,.alert-danger button:hover{text-decoration:none}.alert-danger button{border-width:0}.alert-danger .small,.alert-danger small{color:#fff}.btn-alert-danger{background-color:#9c312b;border-color:transparent;border-radius:9999px;color:#fff}.alert .btn-alert-danger{background-color:#5d1d1a}.alert .btn-alert-danger.active,.alert .btn-alert-danger.checked,.alert .btn-alert-danger:active,.alert .btn-alert-danger:focus,.alert .btn-alert-danger:hover,.open .dropdown-toggle.alert .btn-alert-danger{background-color:#3d1311}.btn-alert-danger.active,.btn-alert-danger.checked,.btn-alert-danger:active,.btn-alert-danger:focus,.btn-alert-danger:hover,.open .dropdown-toggle.btn-alert-danger{background-color:#7c2722;border-color:transparent;color:#fff}.btn-alert-danger.active,.btn-alert-danger:active,.open .dropdown-toggle.btn-alert-danger{background-image:none}.btn-alert-danger.disabled,.btn-alert-danger.disabled.active,.btn-alert-danger.disabled:active,.btn-alert-danger.disabled:focus,.btn-alert-danger.disabled:hover,.btn-alert-danger[disabled],.btn-alert-danger[disabled].active,.btn-alert-danger[disabled]:active,.btn-alert-danger[disabled]:focus,.btn-alert-danger[disabled]:hover,fieldset[disabled] .btn-alert-danger,fieldset[disabled] .btn-alert-danger.active,fieldset[disabled] .btn-alert-danger:active,fieldset[disabled] .btn-alert-danger:focus,fieldset[disabled] .btn-alert-danger:hover{background-color:#9c312b;border-color:transparent}.btn-alert-danger .badge{background-color:#fff;color:#9c312b}.alert-alt{background-color:#e7e9ee;border-color:transparent;color:#495365}.alert-alt hr{border-top-color:transparent}.alert-alt .alert-link{color:#343b47}.alert-alt .alert-link-as-btn,.alert-alt button{background-color:#c4c6ca;border-color:transparent;border-radius:9999px;color:#fff;display:inline-block;font-size:14px;font-weight:700;line-height:1.5;padding:0 10px;text-decoration:none}.alert .alert-alt .alert-link-as-btn,.alert .alert-alt button{background-color:#999ca4}.alert .alert-alt .alert-link-as-btn.active,.alert .alert-alt .alert-link-as-btn.checked,.alert .alert-alt .alert-link-as-btn:active,.alert .alert-alt .alert-link-as-btn:focus,.alert .alert-alt .alert-link-as-btn:hover,.alert .alert-alt button.active,.alert .alert-alt button.checked,.alert .alert-alt button:active,.alert .alert-alt button:focus,.alert .alert-alt button:hover,.open .dropdown-toggle.alert .alert-alt .alert-link-as-btn,.open .dropdown-toggle.alert .alert-alt button{background-color:#848790}.alert-alt .alert-link-as-btn.active,.alert-alt .alert-link-as-btn.checked,.alert-alt .alert-link-as-btn:active,.alert-alt .alert-link-as-btn:focus,.alert-alt .alert-link-as-btn:hover,.alert-alt button.active,.alert-alt button.checked,.alert-alt button:active,.alert-alt button:focus,.alert-alt button:hover,.open .dropdown-toggle.alert-alt .alert-link-as-btn,.open .dropdown-toggle.alert-alt button{background-color:#afb1b7;border-color:transparent;color:#fff}.alert-alt .alert-link-as-btn.active,.alert-alt .alert-link-as-btn:active,.alert-alt button.active,.alert-alt button:active,.open .dropdown-toggle.alert-alt .alert-link-as-btn,.open .dropdown-toggle.alert-alt button{background-image:none}.alert-alt .alert-link-as-btn.disabled,.alert-alt .alert-link-as-btn.disabled.active,.alert-alt .alert-link-as-btn.disabled:active,.alert-alt .alert-link-as-btn.disabled:focus,.alert-alt .alert-link-as-btn.disabled:hover,.alert-alt .alert-link-as-btn[disabled],.alert-alt .alert-link-as-btn[disabled].active,.alert-alt .alert-link-as-btn[disabled]:active,.alert-alt .alert-link-as-btn[disabled]:focus,.alert-alt .alert-link-as-btn[disabled]:hover,.alert-alt button.disabled,.alert-alt button.disabled.active,.alert-alt button.disabled:active,.alert-alt button.disabled:focus,.alert-alt button.disabled:hover,.alert-alt button[disabled],.alert-alt button[disabled].active,.alert-alt button[disabled]:active,.alert-alt button[disabled]:focus,.alert-alt button[disabled]:hover,fieldset[disabled] .alert-alt .alert-link-as-btn,fieldset[disabled] .alert-alt .alert-link-as-btn.active,fieldset[disabled] .alert-alt .alert-link-as-btn:active,fieldset[disabled] .alert-alt .alert-link-as-btn:focus,fieldset[disabled] .alert-alt .alert-link-as-btn:hover,fieldset[disabled] .alert-alt button,fieldset[disabled] .alert-alt button.active,fieldset[disabled] .alert-alt button:active,fieldset[disabled] .alert-alt button:focus,fieldset[disabled] .alert-alt button:hover{background-color:#c4c6ca;border-color:transparent}.alert-alt .alert-link-as-btn .badge,.alert-alt button .badge{background-color:#fff;color:#c4c6ca}.alert-alt .alert-link-as-btn:hover,.alert-alt button:hover{text-decoration:none}.alert-alt button{border-width:0}.alert-alt .small,.alert-alt small{color:#495365}.btn-alert-alt{background-color:#c4c6ca;border-color:transparent;border-radius:9999px;color:#fff}.alert .btn-alert-alt{background-color:#999ca4}.alert .btn-alert-alt.active,.alert .btn-alert-alt.checked,.alert .btn-alert-alt:active,.alert .btn-alert-alt:focus,.alert .btn-alert-alt:hover,.open .dropdown-toggle.alert .btn-alert-alt{background-color:#848790}.btn-alert-alt.active,.btn-alert-alt.checked,.btn-alert-alt:active,.btn-alert-alt:focus,.btn-alert-alt:hover,.open .dropdown-toggle.btn-alert-alt{background-color:#afb1b7;border-color:transparent;color:#fff}.btn-alert-alt.active,.btn-alert-alt:active,.open .dropdown-toggle.btn-alert-alt{background-image:none}.btn-alert-alt.disabled,.btn-alert-alt.disabled.active,.btn-alert-alt.disabled:active,.btn-alert-alt.disabled:focus,.btn-alert-alt.disabled:hover,.btn-alert-alt[disabled],.btn-alert-alt[disabled].active,.btn-alert-alt[disabled]:active,.btn-alert-alt[disabled]:focus,.btn-alert-alt[disabled]:hover,fieldset[disabled] .btn-alert-alt,fieldset[disabled] .btn-alert-alt.active,fieldset[disabled] .btn-alert-alt:active,fieldset[disabled] .btn-alert-alt:focus,fieldset[disabled] .btn-alert-alt:hover{background-color:#c4c6ca;border-color:transparent}.btn-alert-alt .badge{background-color:#fff;color:#c4c6ca}.alert .btn-inline-link,.alert a{background:none;color:#fff;text-decoration:underline}.alert .btn-inline-link:active,.alert .btn-inline-link:focus,.alert .btn-inline-link:hover,.alert a:active,.alert a:focus,.alert a:hover{background:none}.alert .btn:not(.btn-inline-link){text-decoration:none}@keyframes progress-bar-stripes{0%{background-position:40px 0}to{background-position:0 0}}.progress{background-color:#fff;border:0 solid #d0d5dd;border-radius:25px;box-shadow:inset 0 1px 2px rgba(0,0,0,.1);height:25px;margin-bottom:25px;overflow:hidden}.progress-bar{background-color:#495365;box-shadow:none;color:#fff;float:left;font-size:14px;height:100%;line-height:25px;text-align:center;transition:width .6s ease;width:0}.progress-striped .progress-bar{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:40px 40px}.progress.active .progress-bar{animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#098842}.progress-striped .progress-bar-success{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}.progress-bar-info{background-color:#3265b2}.progress-striped .progress-bar-info{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}.progress-bar-warning{background-color:#de8014}.progress-striped .progress-bar-warning{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}.progress-bar-danger{background-color:#b83a33}.progress-striped .progress-bar-danger{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}.close{color:#000;filter:alpha(opacity=40);float:right;font-size:24px;font-weight:700;line-height:1;opacity:.4;text-shadow:0 1px 0 #fff}.close:focus,.close:hover{color:#000;cursor:pointer;filter:alpha(opacity=50);opacity:.5;text-decoration:none}button.close{-webkit-appearance:none;background:transparent;border:0;cursor:pointer;padding:0}.hover-container .show-on-hover{display:none}.hover-container:hover .show-on-hover{display:initial}.ui-select-bootstrap>.ui-select-choices,.ui-select-bootstrap>.ui-select-no-choice{max-width:400px;width:auto}.dropdown-menu .ui-select-choices-row{padding:4px 0}.dropdown-menu .ui-select-choices-row>.ui-select-choices-row-inner{overflow:hidden;text-overflow:ellipsis}.ui-select-match-text,.ui-select-placeholder{font-weight:400;overflow:hidden;text-overflow:ellipsis}.ui-select-bootstrap:focus,.ui-select-bootstrap>.ui-select-match:focus{outline:none}.ui-select-bootstrap>.ui-select-match.btn-default-focus{background-color:transparent;box-shadow:none;outline:0}.ui-select-bootstrap>.ui-select-match.btn-default-focus>.btn{border-color:#3265b2;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(50,101,178,.6);padding-top:4px}.ui-select-bootstrap>.ui-select-match>.btn{background-color:#fff;border:1px solid #677283;color:#1b222c;padding-top:4px}.ui-select-bootstrap>.ui-select-match>.btn[disabled]{background-color:#e7e9ee;cursor:not-allowed;opacity:1}.ui-select-container[tagging] .ui-select-toggle{cursor:text;padding-top:4px}.ui-select-container[tagging] .ui-select-toggle>i.caret.pull-right{display:none}.input-suggestions{position:relative}.input-suggestions-main{background-color:transparent;position:absolute;top:0}.input-suggestions-shadow{background-color:#fff!important;color:#4b5f7b}.nvd3 .nv-axis{opacity:1;pointer-events:none}.nvd3 .nv-axis path{fill:none;stroke:#000;stroke-opacity:.75;shape-rendering:crispEdges}.nvd3 .nv-axis path.domain{stroke-opacity:.75}.nvd3 .nv-axis.nv-x path.domain{stroke-opacity:0}.nvd3 .nv-axis line{fill:none;stroke:#e5e5e5;shape-rendering:crispEdges}.nvd3 .nv-axis .zero line,.nvd3 .nv-axis line.zero{stroke-opacity:.75}.nvd3 .nv-axis .nv-axisMaxMin text{font-weight:700}.nvd3 .x .nv-axis .nv-axisMaxMin text,.nvd3 .x2 .nv-axis .nv-axisMaxMin text,.nvd3 .x3 .nv-axis .nv-axisMaxMin text{text-anchor:middle}.nvd3 .nv-axis.nv-disabled{opacity:0}.nvd3 .nv-bars rect{fill-opacity:.75;transition:fill-opacity .25s linear;-moz-transition:fill-opacity .25s linear;-webkit-transition:fill-opacity .25s linear}.nvd3 .nv-bars rect.hover{fill-opacity:1}.nvd3 .nv-bars .hover rect{fill:#add8e6}.nvd3 .nv-bars text{fill:transparent}.nvd3 .nv-bars .hover text{fill:#000}.nvd3 .nv-discretebar .nv-groups rect,.nvd3 .nv-multibar .nv-groups rect,.nvd3 .nv-multibarHorizontal .nv-groups rect{stroke-opacity:0;transition:fill-opacity .25s linear;-moz-transition:fill-opacity .25s linear;-webkit-transition:fill-opacity .25s linear}.nvd3 .nv-candlestickBar .nv-ticks rect:hover,.nvd3 .nv-discretebar .nv-groups rect:hover,.nvd3 .nv-multibar .nv-groups rect:hover,.nvd3 .nv-multibarHorizontal .nv-groups rect:hover{fill-opacity:1}.nvd3 .nv-discretebar .nv-groups text,.nvd3 .nv-multibarHorizontal .nv-groups text{fill:#000;stroke:transparent;font-weight:700}.nvd3 .nv-boxplot circle{fill-opacity:.5}.nvd3 .nv-boxplot circle:hover,.nvd3 .nv-boxplot rect:hover{fill-opacity:1}.nvd3 line.nv-boxplot-median{stroke:#000}.nv-boxplot-tick:hover{stroke-width:2.5px}.nvd3.nv-bullet{font:10px sans-serif}.nvd3.nv-bullet .nv-measure{fill-opacity:.8}.nvd3.nv-bullet .nv-measure:hover{fill-opacity:1}.nvd3.nv-bullet .nv-marker{stroke:#000;stroke-width:2px}.nvd3.nv-bullet .nv-markerTriangle{stroke:#000;fill:#fff;stroke-width:1.5px}.nvd3.nv-bullet .nv-markerLine{stroke:#000;stroke-width:1.5px}.nvd3.nv-bullet .nv-tick line{stroke:#666;stroke-width:.5px}.nvd3.nv-bullet .nv-range.nv-s0{fill:#eee}.nvd3.nv-bullet .nv-range.nv-s1{fill:#ddd}.nvd3.nv-bullet .nv-range.nv-s2{fill:#ccc}.nvd3.nv-bullet .nv-title{font-size:14px;font-weight:700}.nvd3.nv-bullet .nv-subtitle{fill:#999}.nvd3.nv-bullet .nv-range{fill:#bababa;fill-opacity:.4}.nvd3.nv-bullet .nv-range:hover{fill-opacity:.7}.nvd3.nv-candlestickBar .nv-ticks .nv-tick{stroke-width:1px}.nvd3.nv-candlestickBar .nv-ticks .nv-tick.hover{stroke-width:2px}.nvd3.nv-candlestickBar .nv-ticks .nv-tick.positive rect{stroke:#2ca02c;fill:#2ca02c}.nvd3.nv-candlestickBar .nv-ticks .nv-tick.negative rect{stroke:#d62728;fill:#d62728}.with-transitions .nv-candlestickBar .nv-ticks .nv-tick{transition:stroke-width .25s linear,stroke-opacity .25s linear;-moz-transition:stroke-width .25s linear,stroke-opacity .25s linear;-webkit-transition:stroke-width .25s linear,stroke-opacity .25s linear}.nvd3.nv-candlestickBar .nv-ticks line{stroke:#333}.nv-force-node{stroke:#fff;stroke-width:1.5px}.nv-force-link{stroke:#999;stroke-opacity:.6}.nv-force-node text{stroke-width:0px}.nvd3 .nv-check-box .nv-box{fill-opacity:0;stroke-width:2}.nvd3 .nv-check-box .nv-check{fill-opacity:0;stroke-width:4}.nvd3 .nv-series.nv-disabled .nv-check-box .nv-check{fill-opacity:0;stroke-opacity:0}.nvd3 .nv-controlsWrap .nv-legend .nv-check-box .nv-check{opacity:0}.nvd3.nv-linePlusBar .nv-bar rect{fill-opacity:.75}.nvd3.nv-linePlusBar .nv-bar rect:hover{fill-opacity:1}.nvd3 .nv-groups path.nv-line{fill:none}.nvd3 .nv-groups path.nv-area{stroke:none}.nvd3.nv-line .nvd3.nv-scatter .nv-groups .nv-point{fill-opacity:0;stroke-opacity:0}.nvd3.nv-scatter.nv-single-point .nv-groups .nv-point{fill-opacity:.5!important;stroke-opacity:.5!important}.with-transitions .nvd3 .nv-groups .nv-point{transition:stroke-width .25s linear,stroke-opacity .25s linear;-moz-transition:stroke-width .25s linear,stroke-opacity .25s linear;-webkit-transition:stroke-width .25s linear,stroke-opacity .25s linear}.nvd3 .nv-groups .nv-point.hover,.nvd3.nv-scatter .nv-groups .nv-point.hover{stroke-width:7px;fill-opacity:.95!important;stroke-opacity:.95!important}.nvd3 .nv-point-paths path{stroke:#aaa;stroke-opacity:0;fill:#eee;fill-opacity:0}.nvd3 .nv-indexLine{cursor:ew-resize}svg.nvd3-iddle,svg.nvd3-svg{-webkit-touch-callout:none;display:block;height:100%;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:100%}.nvtooltip.with-3d-shadow,.with-3d-shadow .nvtooltip{border-radius:5px;box-shadow:0 5px 10px rgba(0,0,0,.2)}.nvd3 text{font:normal 12px Arial}.nvd3 .title{font:700 14px Arial}.nvd3 .nv-background{fill:#fff;fill-opacity:0}.nvd3.nv-noData{font-size:18px;font-weight:700}.nv-brush .extent{fill-opacity:.125;shape-rendering:crispEdges}.nv-brush .resize path{fill:#eee;stroke:#666}.nvd3 .nv-legend .nv-series{cursor:pointer}.nvd3 .nv-legend .nv-disabled circle{fill-opacity:0}.nvd3 .nv-brush .extent{fill-opacity:0!important}.nvd3 .nv-brushBackground rect{stroke:#000;stroke-width:.4;fill:#fff;fill-opacity:.7}@media print{.nvd3 text{stroke-width:0;fill-opacity:1}}.nvd3.nv-ohlcBar .nv-ticks .nv-tick{stroke-width:1px}.nvd3.nv-ohlcBar .nv-ticks .nv-tick.hover{stroke-width:2px}.nvd3.nv-ohlcBar .nv-ticks .nv-tick.positive{stroke:#2ca02c}.nvd3.nv-ohlcBar .nv-ticks .nv-tick.negative{stroke:#d62728}.nvd3 .background path{fill:none;stroke:#eee;stroke-opacity:.4;shape-rendering:crispEdges}.nvd3 .foreground path{fill:none;stroke-opacity:.7}.nvd3 .nv-parallelCoordinates-brush .extent{fill:#fff;fill-opacity:.6;stroke:gray;shape-rendering:crispEdges}.nvd3 .nv-parallelCoordinates .hover{fill-opacity:1;stroke-width:3px}.nvd3 .missingValuesline line{fill:none;stroke:#000;stroke-width:1;stroke-opacity:1;stroke-dasharray:5,5}.nvd3.nv-pie path{stroke-opacity:0;transition:fill-opacity .25s linear,stroke-width .25s linear,stroke-opacity .25s linear;-moz-transition:fill-opacity .25s linear,stroke-width .25s linear,stroke-opacity .25s linear;-webkit-transition:fill-opacity .25s linear,stroke-width .25s linear,stroke-opacity .25s linear}.nvd3.nv-pie .nv-pie-title{fill:rgba(19,196,249,.59);font-size:24px}.nvd3.nv-pie .nv-slice text{stroke:#000;stroke-width:0}.nvd3.nv-pie path{stroke:#fff;stroke-width:1px;stroke-opacity:1;fill-opacity:.7}.nvd3.nv-pie .hover path{fill-opacity:1}.nvd3.nv-pie .nv-label{pointer-events:none}.nvd3.nv-pie .nv-label rect{fill-opacity:0;stroke-opacity:0}.nvd3 .nv-groups .nv-point.hover{stroke-width:20px;stroke-opacity:.5}.nvd3 .nv-scatter .nv-point.hover{fill-opacity:1}.nv-distx,.nv-disty,.nv-noninteractive{pointer-events:none}.nvd3.nv-sparkline path{fill:none}.nvd3.nv-sparklineplus g.nv-hoverValue{pointer-events:none}.nvd3.nv-sparklineplus .nv-hoverValue line{stroke:#333;stroke-width:1.5px}.nvd3.nv-sparklineplus,.nvd3.nv-sparklineplus g{pointer-events:all}.nvd3 .nv-hoverArea{fill-opacity:0;stroke-opacity:0}.nvd3.nv-sparklineplus .nv-xValue,.nvd3.nv-sparklineplus .nv-yValue{stroke-width:0;font-size:.9em;font-weight:400}.nvd3.nv-sparklineplus .nv-yValue{stroke:#f66}.nvd3.nv-sparklineplus .nv-maxValue{stroke:#2ca02c;fill:#2ca02c}.nvd3.nv-sparklineplus .nv-minValue{stroke:#d62728;fill:#d62728}.nvd3.nv-sparklineplus .nv-currentValue{font-size:1.1em;font-weight:700}.nvd3.nv-stackedarea path.nv-area{fill-opacity:.7;stroke-opacity:0;transition:fill-opacity .25s linear,stroke-opacity .25s linear;-moz-transition:fill-opacity .25s linear,stroke-opacity .25s linear;-webkit-transition:fill-opacity .25s linear,stroke-opacity .25s linear}.nvd3.nv-stackedarea path.nv-area.hover{fill-opacity:.9}.nvd3.nv-stackedarea .nv-groups .nv-point{stroke-opacity:0;fill-opacity:0}.nvtooltip{-webkit-touch-callout:none;background-color:#fff;background:hsla(0,0%,100%,.8);border:1px solid rgba(0,0,0,.2);border:1px solid rgba(0,0,0,.5);border-radius:4px;color:#000;display:block;font-family:Arial;font-size:13px;padding:1px;pointer-events:none;position:absolute;text-align:left;-webkit-user-select:none;-moz-user-select:none;user-select:none;white-space:nowrap;z-index:10000}.nvtooltip.with-transitions,.with-transitions .nvtooltip{transition:opacity 50ms linear;-moz-transition:opacity 50ms linear;-webkit-transition:opacity 50ms linear;transition-delay:.2s;-moz-transition-delay:.2s;-webkit-transition-delay:.2s}.nvtooltip.x-nvtooltip,.nvtooltip.y-nvtooltip{padding:8px}.nvtooltip h3{background-color:hsla(0,0%,97%,.75);border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0;color:#000;font-weight:400;line-height:18px;margin:0;padding:4px 14px;text-align:center}.nvtooltip p{margin:0;padding:5px 14px;text-align:center}.nvtooltip span{display:inline-block;margin:2px 0}.nvtooltip table{border-spacing:0;margin:6px}.nvtooltip table td{padding:2px 9px 2px 0;vertical-align:middle}.nvtooltip table td.key{font-weight:400}.nvtooltip table td.key.total{font-weight:700}.nvtooltip table td.value{font-weight:700;text-align:right}.nvtooltip table td.percent{color:#a9a9a9}.nvtooltip table tr.highlight td{border-bottom-style:solid;border-bottom-width:1px;border-top-style:solid;border-top-width:1px;padding:1px 9px 1px 0}.nvtooltip table td.legend-color-guide div{border:1px solid #999;height:8px;height:12px;vertical-align:middle;width:8px;width:12px}.nvtooltip .footer{padding:3px;text-align:center}.nvtooltip-pending-removal{display:none;pointer-events:none}.nvd3 .nv-interactiveGuideLine{pointer-events:none}.nvd3 line.nv-guideline{stroke:#ccc}.nvd3 .nv-axis .tick line,.nvd3 .nv-axis path.domain{opacity:0}.infinite-scroll{overflow-y:auto}.expand-collapse-container{overflow:hidden;transition:height .15s ease-in-out,width .15s ease-in-out}.alpha-badge,.beta-badge,.info-badge{color:#fff;display:inline-block;font-size:18.75px;font-weight:400;height:18.75px;line-height:14px;text-align:center;width:18.75px}.alpha-badge:before,.beta-badge:before,.info-badge:before{font-size:14px;line-height:14px}.alpha-badge:focus,.alpha-badge:hover,.beta-badge:focus,.beta-badge:hover,.info-badge:focus,.info-badge:hover{color:#fff;text-decoration:none}.info-badge{background-color:#3265b2;border-radius:18.75px;font-family:Merriweather,serif;font-style:italic}.info-badge:before{content:"i"}.info-badge-fade-bg{background-color:#3265b2;background-color:rgba(0,0,0,.25);border-radius:18.75px;color:#fff;display:inline-block;font-family:Merriweather,serif;font-size:18.75px;font-style:italic;font-weight:400;height:18.75px;line-height:14px;text-align:center;width:18.75px}.info-badge-fade-bg:before{font-size:14px;line-height:14px}.info-badge-fade-bg:focus,.info-badge-fade-bg:hover{color:#fff;text-decoration:none}.info-badge-fade-bg:before{content:"i"}.beta-badge{background-color:#de8014;border-radius:3px}.beta-badge:before{content:"β"}.alpha-badge{background-color:#098842;border-radius:3px}.alpha-badge:before{content:"α"}.labs-badge{background-color:#de8014;border-radius:3px;color:#fff;padding:2px}.split-test-badge-tooltip .tooltip-inner{white-space:pre-wrap}.horizontal-divider{border-top:1px solid #e7e9ee}.input-switch{display:inline-block;padding-left:5px;vertical-align:middle}.input-switch-hidden-input{display:none}.input-switch-hidden-input+.input-switch-btn{background-color:#8a96b5;border-radius:.875em;cursor:pointer;display:block;font-weight:400;height:20px;margin:0;outline:0;padding:1px;position:relative;transition:background .15s ease,border-color .15s ease;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:34px}.input-switch-hidden-input+.input-switch-btn:before{background-color:#fff;border-radius:.875em;content:"";display:block;height:16px;left:1px;position:relative;top:1px;transition:background-color .15s ease,color .15s ease,left .15s ease;width:16px}.input-switch-hidden-input:checked+.input-switch-btn{background-color:#098842;border-color:#fff}.input-switch-hidden-input:checked+.input-switch-btn:before{left:15px;top:1px}.input-switch-hidden-input:disabled+.input-switch-btn{cursor:default;opacity:.35}.container-custom-sm{max-width:400px}.split-menu{display:flex}.split-menu.btn-md,.split-menu.btn-sm,.split-menu.btn-xs{padding:0}.split-menu.btn-md>.split-menu-button,.split-menu.btn-md>.split-menu-dropdown-toggle{height:36px}.split-menu.btn-sm>.split-menu-button,.split-menu.btn-sm>.split-menu-dropdown-toggle{height:32px}.split-menu.btn-xs>.split-menu-button,.split-menu.btn-xs>.split-menu-dropdown-toggle{height:28px}.split-menu.btn-primary{background-color:#098842}.split-menu .split-menu-icon{margin-right:6.25px}.split-menu .split-menu-button{border-bottom-right-radius:0;border-top-right-radius:0;height:100%;padding-bottom:0;padding-top:0}.split-menu .split-menu-button.btn-danger,.split-menu .split-menu-button.btn-primary{border-right:1px solid rgba(27,34,44,.16)}.split-menu .split-menu-button.no-left-radius{border-bottom-left-radius:0;border-top-left-radius:0}.split-menu .split-menu-button{z-index:1}.split-menu .split-menu-dropdown{align-self:stretch;display:flex;flex-wrap:nowrap;float:none;margin-right:6px}.split-menu .split-menu-dropdown .split-menu-dropdown-toggle{border-bottom-left-radius:0;border-top-left-radius:0;padding:0 8px}.split-menu .split-menu-dropdown .split-menu-dropdown-toggle.btn-secondary,.split-menu .split-menu-dropdown .split-menu-dropdown-toggle.no-left-border{border-left:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{background-color:#fff;border:1px solid #ddd;display:block;margin-bottom:-1px;padding:10px 15px;position:relative}.list-group-item:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.list-group-item:last-child{border-bottom-left-radius:3px;border-bottom-right-radius:3px;margin-bottom:0}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{background-color:#098842;color:#fff;text-decoration:none}a.list-group-item.active,a.list-group-item.active:focus,a.list-group-item.active:hover,button.list-group-item.active,button.list-group-item.active:focus,button.list-group-item.active:hover{background-color:#098842;border-color:#098842;color:#fff;z-index:2}a.list-group-item.active .list-group-item-heading,a.list-group-item.active:focus .list-group-item-heading,a.list-group-item.active:hover .list-group-item-heading,button.list-group-item.active .list-group-item-heading,button.list-group-item.active:focus .list-group-item-heading,button.list-group-item.active:hover .list-group-item-heading{color:inherit}a.list-group-item.active .list-group-item-text,a.list-group-item.active:focus .list-group-item-text,a.list-group-item.active:hover .list-group-item-text,button.list-group-item.active .list-group-item-text,button.list-group-item.active:focus .list-group-item-text,button.list-group-item.active:hover .list-group-item-text{color:#68f5a7}.list-group-item-success{background-color:#98f8c3;color:#098842}a.list-group-item-success{color:#098842}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover{background-color:#80f7b5;color:#098842}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover{background-color:#098842;border-color:#098842;color:#fff}.list-group-item-info{background-color:#dee7f6;color:#495365}a.list-group-item-info{color:#495365}a.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover{background-color:#cad9f0;color:#495365}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover{background-color:#495365;border-color:#495365;color:#fff}.list-group-item-warning{background-color:#fceddc;color:#de8014}a.list-group-item-warning{color:#de8014}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover{background-color:#fae1c4;color:#de8014}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover{background-color:#de8014;border-color:#de8014;color:#fff}.list-group-item-danger{background-color:#fbf0ef;color:#b83a33}a.list-group-item-danger{color:#b83a33}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover{background-color:#f5dddb;color:#b83a33}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover{background-color:#b83a33;border-color:#b83a33;color:#fff}.list-group-item-heading{margin-bottom:5px;margin-top:0}.list-group-item-text{line-height:1.3;margin-bottom:0}.select-trigger{border:1px solid #000;border-radius:4px;color:#1b222c;display:flex;justify-content:space-between;padding:5px 10px;-webkit-user-select:none;-moz-user-select:none;user-select:none}.select-trigger.disabled{background-color:#e7e9ee;border-color:#e7e9ee;cursor:not-allowed}.select-highlighted:not(.select-disabled){background-color:#f4f5f6;border-radius:4px}.select-active{font-weight:700}.select-disabled{color:#afb5c0;cursor:not-allowed}.select-items{background-color:#fff;box-shadow:0 2px 4px 0 #1e253029;list-style:none;margin:0;max-height:200px;overflow-y:auto;padding:4px;position:absolute;width:100%;z-index:1}.select-items li{padding:12px 8px}.select-wrapper{position:relative}.select-item-subtitle,.select-item-title{display:block;-webkit-user-select:none;-moz-user-select:none;user-select:none}.select-item-subtitle :not(.select-disabled),.select-item-title :not(.select-disabled){cursor:default}.select-item-icon{display:inline-block;width:30px}.select-item-subtitle{font-size:.9rem}.select-icon .select-item-subtitle{margin-left:30px}.select-optional-label{font-weight:400}.switch-input{display:inline-block;height:20px;position:relative;width:34px}.switch-input input.invisible-input{height:0;opacity:0;width:0}.switch-input input.invisible-input+span.switch{background-color:#495365;border-radius:10px;bottom:0;cursor:pointer;left:0;position:absolute;right:0;top:0;transition:.4s}.switch-input input.invisible-input+span.switch:before{background-color:#fff;border-radius:50%;bottom:2px;content:"";height:16px;left:2px;position:absolute;transition:.4s;width:16px}.switch-input input.invisible-input:checked+span.switch{background-color:#098842}.switch-input input.invisible-input:checked+span.switch:before{transform:translateX(14px)}.switch-input.disabled input.invisible-input+span.switch{background-color:#afb5c0}.stepper{display:flex;gap:12px;height:6px;width:100%}.stepper .step{background:#e7e9ee;border-radius:6px;width:100%}.stepper .step.completed{background:#098842}.stepper .step.active{background:#b8dbc8}.radio-chip{background:#fff;border:1px solid #677283;border-radius:999px;color:#1b222c;cursor:pointer;display:inline-flex;font-weight:400;gap:4px;inline-size:-moz-fit-content;inline-size:fit-content;line-height:1.4;padding:8px 16px 8px 8px}@media only screen and (max-width:768px){.radio-chip{width:100%}}.radio-chip:hover{background:#e7e9ee}.radio-chip:focus-within{box-shadow:0 0 0 2px #97b6e5}.radio-chip input[type=radio]{accent-color:#098842;cursor:pointer;height:16px;margin:4px;width:15px}.radio-chip[data-disabled=true]{border-color:#e7e9ee}.radio-chip[data-disabled=true]:hover{background:#fff;cursor:not-allowed}.radio-group{grid-gap:16px;display:flex;flex-direction:column;flex-wrap:wrap;height:180px;width:100%}@media (max-width:768px){.radio-group{flex-wrap:nowrap;height:100%}}.interstitial{background:#fff;display:flex;flex-direction:column;margin:0 auto;max-width:400px;padding:24px}.interstitial .logo{margin:0 auto;margin-bottom:24px;width:130px}.interstitial .btn{width:100%}.interstitial .interstitial-header{margin-bottom:4px;margin-top:0}.ol-accordions-container :last-child{border:0!important}.ol-accordions-container .custom-accordion-item{border-bottom:1px solid var(--neutral-20);padding-bottom:var(--spacing-09);padding-top:var(--spacing-08);width:100%}.ol-accordions-container .custom-accordion-item .custom-accordion-header{background-color:unset;border:unset;color:var(--neutral-90);display:flex;font-size:var(--font-size-04);font-weight:600;justify-content:space-between;line-height:var(--line-height-03);padding:unset;text-align:left;width:100%}.ol-accordions-container .custom-accordion-item .custom-accordion-header .custom-accordion-icon{align-items:center;display:flex;margin-left:var(--spacing-08);transition:transform .35s ease}.ol-accordions-container .custom-accordion-item .custom-accordion-header:not(.collapsed) .custom-accordion-icon{transform:rotate(180deg);transition:transform .35s ease}.ol-accordions-container .custom-accordion-item .custom-accordion-body{background-color:unset;font-size:var(--font-size-body-base);line-height:var(--line-height-03);margin-top:var(--spacing-04);padding:unset;padding-right:2rem;text-align:left}.modal-open{overflow:hidden}.modal{-webkit-overflow-scrolling:touch;bottom:0;display:none;left:0;outline:0;overflow:auto;overflow-y:scroll;position:fixed;right:0;top:0;z-index:1050}.modal.fade .modal-dialog{transform:translateY(-25%);transition:transform .3s ease-out}.modal.in .modal-dialog{transform:translate(0)}.modal-dialog{margin:10px;position:relative;width:auto}.modal-content{background-clip:padding-box;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:5px;box-shadow:0 3px 9px rgba(0,0,0,.5);outline:none;position:relative}.modal-backdrop{background-color:#000;bottom:0;left:0;position:fixed;right:0;top:0;z-index:1040}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{border-bottom:1px solid #e5e5e5;min-height:16.5625px;padding:15px}.modal-header .close{margin-top:-2px}.modal-header h1,.modal-header h2,.modal-header h3,.modal-header h4,.modal-header h5{font-family:Lato,sans-serif;font-weight:700;margin:0}.modal-title{line-height:1.5625;margin:0}.modal-body{padding:20px;position:relative}.modal-footer{background-color:#f4f5f6;border-radius:0 0 5px 5px;border-top:1px solid #e5e5e5;padding:19px 20px 20px;text-align:right}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-footer .modal-footer-left{float:left}@media (min-width:768px){.modal-dialog{margin:30px auto;width:600px}.modal-content{box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){#change-plan .modal-dialog,.modal-lg{width:900px}}.website-redesign-modal .modal-title{font-size:var(--font-size-05);line-height:var(--line-height-04);margin-bottom:var(--spacing-02)}.website-redesign-modal .modal-subtitle{font-size:var(--font-size-03);line-height:var(--line-height-03);margin:0}.website-redesign-modal .modal-body,.website-redesign-modal .modal-footer{padding:var(--spacing-06)}.website-redesign-modal .modal-header{border-bottom:1px solid var(--neutral-20)}.website-redesign-modal .modal-footer{background-color:transparent;border-top:1px solid var(--neutral-20)}.website-redesign-modal .modal-footer p:last-child{margin-bottom:0}.website-redesign-modal .close{color:var(--neutral-90);font-size:var(--font-size-05);height:36px;line-height:var(--line-height-02);opacity:1;padding:var(--spacing-04);width:36px}.website-redesign-modal .close:hover{background-color:var(--neutral-10);border-radius:50%}.tooltip{display:block;filter:alpha(opacity=0);font-size:14px;line-height:1.4;opacity:0;position:absolute;visibility:visible;z-index:1070}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{background-color:#000;border-radius:3px;color:#fff;max-width:220px;padding:3px 8px;text-align:center;text-decoration:none}.tooltip-wide .tooltip-inner{max-width:unset}.tooltip-arrow{border-color:transparent;border-style:solid;height:0;position:absolute;width:0}.tooltip.top .tooltip-arrow{border-top-color:#000;border-width:5px 5px 0;bottom:0;left:50%;margin-left:-5px}.tooltip.top-left .tooltip-arrow{border-top-color:#000;border-width:5px 5px 0;bottom:0;left:5px}.tooltip.top-right .tooltip-arrow{border-top-color:#000;border-width:5px 5px 0;bottom:0;right:5px}.tooltip.right .tooltip-arrow{border-right-color:#000;border-width:5px 5px 5px 0;left:0;margin-top:-5px;top:50%}.tooltip.left .tooltip-arrow{border-left-color:#000;border-width:5px 0 5px 5px;margin-top:-5px;right:0;top:50%}.tooltip.bottom .tooltip-arrow{border-bottom-color:#000;border-width:0 5px 5px;left:50%;margin-left:-5px;top:0}.tooltip.bottom-left .tooltip-arrow{border-bottom-color:#000;border-width:0 5px 5px;left:5px;top:0}.tooltip.bottom-right .tooltip-arrow{border-bottom-color:#000;border-width:0 5px 5px;right:5px;top:0}.popover{background-clip:padding-box;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:5px;box-shadow:0 5px 10px rgba(0,0,0,.2);display:none;left:0;max-width:276px;padding:1px;position:absolute;text-align:left;top:0;white-space:normal;z-index:1060}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0;font-size:16px;font-weight:400;line-height:18px;margin:0;padding:8px 14px}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{border-color:transparent;border-style:solid;display:block;height:0;position:absolute;width:0}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,.25);bottom:-11px;left:50%;margin-left:-11px}.popover.top>.arrow:after{border-bottom-width:0;border-top-color:#fff;bottom:1px;content:" ";margin-left:-10px}.popover.right>.arrow{border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,.25);left:-11px;margin-top:-11px;top:50%}.popover.right>.arrow:after{border-left-width:0;border-right-color:#fff;bottom:-10px;content:" ";left:1px}.popover.bottom>.arrow{border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25);border-top-width:0;left:50%;margin-left:-11px;top:-11px}.popover.bottom>.arrow:after{border-bottom-color:#fff;border-top-width:0;content:" ";margin-left:-10px;top:1px}.popover.left>.arrow{border-left-color:#999;border-left-color:rgba(0,0,0,.25);border-right-width:0;margin-top:-11px;right:-11px;top:50%}.popover.left>.arrow:after{border-left-color:#fff;border-right-width:0;bottom:-10px;content:" ";right:1px}.popover.dark-themed{border:1px solid #000;max-width:512px;padding:0}.popover.dark-themed .popover-title{background-color:#000;border-bottom:0;color:#fff;font-family:Lato,sans-serif;font-weight:700}.popover.dark-themed .popover-content{background-color:#000;color:#fff}.popover.dark-themed a{color:#97b6e5}.popover.dark-themed.top>.arrow,.popover.dark-themed.top>.arrow:after{border-top-color:#000}.popover.dark-themed.right>.arrow,.popover.dark-themed.right>.arrow:after{border-right-color:#000}.popover.dark-themed.bottom>.arrow,.popover.dark-themed.bottom>.arrow:after{border-bottom-color:#000}.popover.dark-themed.left>.arrow,.popover.dark-themed.left>.arrow:after{border-left-color:#000}.daterangepicker{background-color:#fff;border-radius:4px;color:#098842;margin-top:1px;padding:4px;position:absolute;width:278px}.daterangepicker:after,.daterangepicker:before{border-bottom-color:rgba(0,0,0,.2);content:"";display:inline-block;position:absolute}.daterangepicker:before{border-bottom:7px solid #ccc;border-left:7px solid transparent;border-right:7px solid transparent;top:-7px}.daterangepicker:after{border-bottom:6px solid #fff;border-left:6px solid transparent;border-right:6px solid transparent;top:-6px}.daterangepicker.opensleft:before{right:9px}.daterangepicker.opensleft:after{right:10px}.daterangepicker.openscenter:after,.daterangepicker.openscenter:before{left:0;margin-left:auto;margin-right:auto;right:0;width:0}.daterangepicker.opensright:before{left:9px}.daterangepicker.opensright:after{left:10px}.daterangepicker.dropup{margin-top:-5px}.daterangepicker.dropup:before{border-bottom:initial;border-top:7px solid #ccc;bottom:-7px;top:auto}.daterangepicker.dropup:after{border-bottom:initial;border-top:6px solid #fff;bottom:-6px;top:auto}.daterangepicker.dropdown-menu{max-width:none;z-index:3001}.daterangepicker.single .calendar,.daterangepicker.single .ranges{float:none}.daterangepicker.show-calendar .calendar{display:block}.daterangepicker .calendar{display:none;margin:4px;max-width:270px}.daterangepicker .calendar.single .calendar-table{border:none}.daterangepicker .calendar td,.daterangepicker .calendar th{min-width:32px;text-align:center;white-space:nowrap}.daterangepicker .calendar-table{background-color:#fff;border:1px solid #fff;border-radius:4px;padding:4px}.daterangepicker table{margin:0;width:100%}.daterangepicker td,.daterangepicker th{border:1px solid transparent;border-radius:4px;cursor:pointer;height:20px;text-align:center;white-space:nowrap;width:20px}.daterangepicker td.available:hover,.daterangepicker th.available:hover{background-color:#eee;border-color:transparent;color:#098842}.daterangepicker td.week,.daterangepicker th.week{color:#ccc;font-size:80%}.daterangepicker td.off,.daterangepicker td.off.end-date,.daterangepicker td.off.in-range,.daterangepicker td.off.start-date{background-color:#fff;border-color:transparent;color:#999}.daterangepicker td.in-range{background-color:#ebf4f8;border-color:transparent;border-radius:0;color:#000}.daterangepicker td.start-date{border-radius:4px 0 0 4px}.daterangepicker td.end-date{border-radius:0 4px 4px 0}.daterangepicker td.start-date.end-date{border-radius:4px}.daterangepicker td.active,.daterangepicker td.active:hover{background-color:#138a07;border-color:transparent;color:#fff}.daterangepicker th.month{width:auto}.daterangepicker option.disabled,.daterangepicker td.disabled{color:#999;cursor:not-allowed;text-decoration:line-through}.daterangepicker select.monthselect,.daterangepicker select.yearselect{cursor:default;font-size:12px;height:auto;margin:0;padding:1px}.daterangepicker select.monthselect{margin-right:2%;width:56%}.daterangepicker select.yearselect{width:40%}.daterangepicker select.ampmselect,.daterangepicker select.hourselect,.daterangepicker select.minuteselect,.daterangepicker select.secondselect{margin-bottom:0;width:50px}.daterangepicker .input-mini{border:1px solid #ccc;border-radius:4px;color:#555;display:block;height:30px;line-height:30px;margin:0 0 5px 0;padding:0 6px 0 28px;vertical-align:middle;width:100%}.daterangepicker .input-mini.active{border:1px solid #098842;border-radius:4px}.daterangepicker .daterangepicker_input{padding-left:0;position:relative}.daterangepicker .daterangepicker_input i{left:8px;position:absolute;top:10px}.daterangepicker.rtl .input-mini{padding-left:6px;padding-right:28px}.daterangepicker.rtl .daterangepicker_input i{left:auto;right:8px}.daterangepicker .calendar-time{line-height:30px;margin:5px auto;padding-left:28px;position:relative;text-align:center}.daterangepicker .calendar-time select.disabled{color:#ccc;cursor:not-allowed}.ranges{float:none;font-size:11px;margin:4px;text-align:left}.ranges ul{list-style:none;margin:0 auto;padding:0;width:100%}.ranges li{background-color:daterangepicker-ranges-color;border:1px solid daterangepicker-ranges-color;border-radius:4px;color:#098842;cursor:pointer;font-size:13px;margin-bottom:8px;padding:3px 12px}.ranges li.active,.ranges li:hover{background-color:#098842;color:#fff}.ranges li.active{border:1px solid #098842}@media (min-width:564px){.daterangepicker{width:auto}.daterangepicker .glyphicon{font-family:FontAwesome}.daterangepicker .glyphicon-chevron-left:before{content:"\f053"}.daterangepicker .glyphicon-chevron-right:before{content:"\f054"}.daterangepicker .glyphicon-calendar:before{content:"\f073"}.daterangepicker .ranges ul{width:160px}.daterangepicker.single .ranges ul{width:100%}.daterangepicker.single .calendar.left{clear:none}.daterangepicker.single.ltr .calendar,.daterangepicker.single.ltr .ranges{float:left}.daterangepicker.single.rtl .calendar,.daterangepicker.single.rtl .ranges{float:right}.daterangepicker.ltr{direction:ltr;text-align:left}.daterangepicker.ltr .calendar.left{clear:left;margin-right:0}.daterangepicker.ltr .calendar.left .calendar-table{border-bottom-right-radius:0;border-right:none;border-top-right-radius:0}.daterangepicker.ltr .calendar.right{margin-left:0}.daterangepicker.ltr .calendar.right .calendar-table{border-bottom-left-radius:0;border-left:none;border-top-left-radius:0}.daterangepicker.ltr .calendar.left .calendar-table,.daterangepicker.ltr .left .daterangepicker_input{padding-right:12px}.daterangepicker.ltr .calendar,.daterangepicker.ltr .ranges{float:left}.daterangepicker.rtl{direction:rtl;text-align:right}.daterangepicker.rtl .calendar.left{clear:right;margin-left:0}.daterangepicker.rtl .calendar.left .calendar-table{border-bottom-left-radius:0;border-left:none;border-top-left-radius:0}.daterangepicker.rtl .calendar.right{margin-right:0}.daterangepicker.rtl .calendar.right .calendar-table{border-bottom-right-radius:0;border-right:none;border-top-right-radius:0}.daterangepicker.rtl .calendar.left .calendar-table,.daterangepicker.rtl .left .daterangepicker_input{padding-left:12px}.daterangepicker.rtl .calendar,.daterangepicker.rtl .ranges{float:right;text-align:right}}@media (min-width:730px){.show-calendar{min-width:658px;width:-moz-max-content;width:max-content}.daterangepicker .ranges{width:auto}.daterangepicker.ltr .ranges{clear:none!important;float:left}.daterangepicker.rtl .ranges{float:right}.daterangepicker .calendar{clear:none!important}}.list-like-table{border:1px solid #e7e9ee;border-radius:3px;list-style:none;margin:0;padding:0 10px}.list-like-table li{border-top:1px solid #e7e9ee}.list-like-table li div{display:table-cell;float:none;vertical-align:middle}.list-like-table li .row{display:table;margin:0;width:100%}.list-like-table li:first-child{border-top:0}.list-style-check-green{list-style-image:url(/images/fa-check-green-4374f694f7f1bd0f32e9.svg)}.icon-bullet-list ul{list-style:none;margin-top:30px;padding-left:20px}.icon-bullet-list.checked li{background:url(/images/circle-green-24-83bc0e918e47fe5c0e33.svg) no-repeat 0 0;background-size:30px 30px;margin-bottom:18px;min-height:30px;padding-left:42px}.icon-bullet-list.checked li:first-line{line-height:30px}.overbox{background:#fff;border:1px solid #afb5c0;margin:0;padding:40px 20px}.overbox.overbox-small{padding:10px}.embed-responsive{display:block;height:0;overflow:hidden;padding:0;position:relative}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{border:0;bottom:0;height:100%;left:0;position:absolute;top:0;width:100%}.embed-responsive-16by9{padding-bottom:56.25%!important}.embed-responsive-4by3{padding-bottom:75%!important}.icon-accent{color:#195936!important}.icon-lg{font-size:32px!important;height:32px!important;width:32px!important}.icon-md{font-size:24px!important;height:24px!important;width:24px!important}.icon-sm{font-size:20px!important;height:20px!important;width:20px!important}.icon-xs{font-size:16px!important;height:16px!important;width:16px!important}.icon-round-background{border-radius:50%}.icon-green-round-background{background:var(--green-30);border-radius:50%;color:var(--dark-jungle-green)}.circle-img{border-radius:50%;float:left;height:100px;max-width:100px;overflow:hidden;position:relative}.circle-img img{display:inline;margin:0 auto;width:100%}.blockquote-with-img{margin-left:115px}.nav-pills>li>button{border-radius:9999px}.pagination{border-radius:3px;display:inline-block;margin:25px 0;padding-left:0}.pagination>li{display:inline}.pagination>li>a,.pagination>li>button,.pagination>li>span{background-color:#fff;border:1px solid #d0d5dd;color:#195936;float:left;line-height:1.5625;margin-left:-1px;padding:5px 16px;position:relative;text-decoration:none}.pagination>li:first-child>a,.pagination>li:first-child>button,.pagination>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px;margin-left:0}.pagination>li:last-child>a,.pagination>li:last-child>button,.pagination>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>button:focus,.pagination>li>button:hover,.pagination>li>span:focus,.pagination>li>span:hover{background-color:#f4f5f6;border-color:#d0d5dd;color:#195936}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>button,.pagination>.active>button:focus,.pagination>.active>button:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{background-color:#195936;border-color:#d0d5dd;color:#fff;cursor:default;z-index:2}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>button,.pagination>.disabled>button:focus,.pagination>.disabled>button:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{background-color:#f4f5f6;border-color:#d0d5dd;color:#495365;cursor:not-allowed}.pagination .ellipses{pointer-events:none}.pagination-lg>li>a,.pagination-lg>li>span{font-size:20px;padding:10px 16px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:5px;border-top-left-radius:5px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:5px;border-top-right-radius:5px}.pagination-sm>li>a,.pagination-sm>li>span{font-size:14px;padding:5px 10px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:2px;border-top-left-radius:2px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:2px;border-top-right-radius:2px}.ol-tabs .nav-tabs{border:0!important;margin-bottom:0;margin-top:-25px;padding:30px 0 20px;text-align:center}.ol-tabs .nav-tabs>li{display:inline-block;float:none}.ol-tabs .nav-tabs>li a{border:0;color:#1e6b41}.ol-tabs .nav-tabs>li a:focus,.ol-tabs .nav-tabs>li a:hover{background-color:transparent!important;border:0;color:#195936}.ol-tabs li.active>a{background-color:transparent!important;border:0!important}.ol-tabs li.active>a,.ol-tabs li.active>a:hover{border-bottom:1px solid #195936!important;color:#195936!important}.ol-tabs .tab-content{background-color:transparent!important;border:none!important}.ol-tabs-scrollable{margin:0 auto;max-width:800px}.ol-tabs-scrollable .nav-tabs-container{margin-bottom:var(--spacing-11);overflow-x:auto;text-align:center}.ol-tabs-scrollable .nav-tabs-container .nav-tabs{border-bottom:var(--border-width-base) solid var(--neutral-20);border-top:2px solid transparent;display:inline-flex;margin:0 auto;min-width:-moz-max-content;min-width:max-content;padding:0;text-align:center}.ol-tabs-scrollable .nav-tabs-container .nav-tabs li{display:inline-block;float:none;margin-bottom:calc(var(--border-width-base)*-1);margin-right:var(--spacing-04)}.ol-tabs-scrollable .nav-tabs-container .nav-tabs li:last-child{margin-right:0}.ol-tabs-scrollable .nav-tabs-container .nav-tabs li a{border:0;border-radius:0;color:var(--neutral-70);line-height:var(--line-height-03);margin-right:unset;padding:var(--spacing-04)}.ol-tabs-scrollable .nav-tabs-container .nav-tabs li a:focus,.ol-tabs-scrollable .nav-tabs-container .nav-tabs li a:hover{border:0}.ol-tabs-scrollable .nav-tabs-container .nav-tabs li a:focus,.ol-tabs-scrollable .nav-tabs-container .nav-tabs li a:focus-visible{background-color:unset;outline:0}.ol-tabs-scrollable .nav-tabs-container .nav-tabs li a:hover{background-color:var(--neutral-10)}.ol-tabs-scrollable .nav-tabs-container .nav-tabs li a:focus-visible{box-shadow:0 0 0 2px #97b6e5}.ol-tabs-scrollable .nav-tabs-container .nav-tabs li.active>a{background-color:transparent!important;border:0!important;border-bottom:3px solid var(--green-50)!important;color:#1b222c!important}.ol-tabs-scrollable .nav-tabs-container .nav-tabs li.active>a:hover{border-bottom:3px solid var(--green-50)!important}@media (max-width:767px){.ol-tabs-scrollable .nav-tabs-container .nav-tabs{text-align:left}}.ol-tabs-scrollable .tab-content{border:0!important;padding:0!important}.ol-tabs-scrollable .ol-accordions-container :first-child{padding-top:0!important}[data-ol-bookmarkable-tabset] .tab-pane{scroll-margin-top:77.5px}.structured-list.managed-users-list{overflow:initial;overflow-x:initial;overflow-y:initial}.managed-users-list .security-state-invite-pending{color:#afb5c0}.managed-users-list .security-state-managed{color:#098842}.managed-users-list .security-state-not-managed{color:#b83a33}.managed-users-list .managed-user-row{overflow-wrap:break-word}.managed-users-list .managed-user-security{display:flex;justify-content:space-between}.managed-users-list .managed-user-actions button.dropdown-toggle{color:#495365;padding-left:1em;padding-right:1em}.managed-users-list .managed-user-actions .managed-user-dropdown-menu{width:300px}.managed-users-list .managed-user-actions .managed-user-dropdown-menu li>button:hover{background-color:#f4f5f6}.managed-users-list .managed-user-actions .managed-user-dropdown-menu .delete-user-action button{color:#b83a33}.managed-users-list .managed-user-menu-item-button{background:inherit;border:none;box-shadow:none;color:#2f3a4c;padding:12px 20px;position:relative;text-align:left;width:100%}.managed-users-list .managed-user-menu-item-button[disabled]{background-color:#d0d5dd}.managed-users-list-alert{display:flex;justify-content:space-between}.managed-users-list-alert .managed-users-list-alert-close{padding-left:10px;text-align:right;width:10%}@media (min-width:768px){.managed-users-list-alert .managed-users-list-alert-close{width:auto}}.managed-users-table{table-layout:fixed;width:100%}.managed-users-table tr{border-bottom:1px solid #e7e9ee}.managed-users-table td,.managed-users-table th{padding:6.25px 12.5px;vertical-align:top}.managed-users-table thead tr:hover{background-color:transparent}.managed-users-table tbody tr:last-child{border-bottom:0 none}.managed-users-table tbody tr:hover{background-color:#f6f7f9}@media (min-width:480px){.managed-users-table .cell-checkbox{width:5%}.managed-users-active.group-sso-active .managed-users-table .cell-checkbox{width:3%}.managed-users-table .cell-email{width:50%}.managed-users-active .managed-users-table .cell-email{width:35%}.group-sso-active .managed-users-table .cell-email{width:37%}.managed-users-active.group-sso-active .managed-users-table .cell-email{width:29%}.managed-users-table .cell-name{width:20%}.managed-users-active.group-sso-active .managed-users-table .cell-name{width:18%}.managed-users-table .cell-last-active{width:20%}.managed-users-active.group-sso-active .managed-users-table .cell-last-active{width:16%}.managed-users-table .cell-security{width:12%}.managed-users-table .cell-managed{width:15%}.managed-users-table .cell-dropdown{min-width:25px;width:6%}}@media (min-width:1200px){.managed-users-table .cell-checkbox{width:5%}.managed-users-active.group-sso-active .managed-users-table .cell-checkbox{width:3%}.managed-users-table .cell-email{width:55%}.managed-users-active .managed-users-table .cell-email{width:42%}.group-sso-active .managed-users-table .cell-email{width:45%}.managed-users-active.group-sso-active .managed-users-table .cell-email{width:36%}.managed-users-table .cell-name{width:20%}.managed-users-active.group-sso-active .managed-users-table .cell-name{width:18%}.managed-users-table .cell-last-active{width:15%}.managed-users-table .cell-security{width:10%}.managed-users-table .cell-managed{width:13%}.managed-users-table .cell-dropdown{min-width:25px;width:5%}}.managed-user-security .material-symbols{position:relative;top:4px}.tags-input{display:block}.tags-input *,.tags-input :after,.tags-input :before{box-sizing:border-box}.tags-input label.small{font-weight:400}.tags-input .host{height:100%;position:relative}.tags-input .host:active{outline:none}.tags-input .tags{word-wrap:break-word;appearance:textfield;-moz-appearance:textfield;-webkit-appearance:textfield;background-color:#fff;border:1px solid #677283;border-radius:4px;color:#1b222c;cursor:text;display:block;display:flex;flex-wrap:wrap;font-size:16px;height:35px;height:100%;line-height:1.5625;overflow:hidden;padding:5px 10px;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:100%}.tags-input .tags::-moz-placeholder{color:#677283;opacity:1}.tags-input .tags:-ms-input-placeholder{color:#677283}.tags-input .tags::-webkit-input-placeholder{color:#677283}.tags-input .tags[disabled],.tags-input .tags[readonly],fieldset[disabled] .tags-input .tags{background-color:#e7e9ee;border-color:#e7e9ee;cursor:not-allowed;opacity:1}.tags-input .tags[disabled]::-moz-placeholder,.tags-input .tags[readonly]::-moz-placeholder,fieldset[disabled] .tags-input .tags::-moz-placeholder{color:#afb5c0;opacity:1}.tags-input .tags[disabled]:-ms-input-placeholder,.tags-input .tags[readonly]:-ms-input-placeholder,fieldset[disabled] .tags-input .tags:-ms-input-placeholder{color:#afb5c0}.tags-input .tags[disabled]::-webkit-input-placeholder,.tags-input .tags[readonly]::-webkit-input-placeholder,fieldset[disabled] .tags-input .tags::-webkit-input-placeholder{color:#afb5c0}textarea.tags-input .tags{border-radius:3px;height:auto}select.tags-input .tags{border-radius:3px}.tags-input .tags .tag-list{list-style-type:none;margin:0;padding:0}.tags-input .tags .tag-item{align-items:center;background-color:#f4f5f6;border:1px solid #afb5c0;border-radius:3px;display:inline-flex;line-height:1;margin:2px;overflow:hidden;padding:2px 7px;text-overflow:ellipsis}.tags-input .tags .tag-item.selected{background-color:#d0d5dd}.tags-input .tags .tag-item .fa{flex-shrink:0}.tags-input .tags .tag-item .remove-button{color:#afb5c0;cursor:pointer;flex-shrink:0;text-decoration:none}.tags-input .tags .tag-item .remove-button:active{color:#098842}.tags-input .tags .input{border:0;flex-grow:1;outline:none;overflow:hidden;text-overflow:ellipsis}.tags-input .tags .input::-moz-placeholder{color:#677283;opacity:1}.tags-input .tags .input:-ms-input-placeholder{color:#677283}.tags-input .tags .input::-webkit-input-placeholder{color:#677283}.tags-input .tags .input.invalid-tag{color:#b83a33}.tags-input .tags .input::-ms-clear{display:none}.tags-input.ng-invalid .tags{box-shadow:0 0 3px 1px rgba(255,0,0,.6)}.tags-input[disabled] .host:focus{outline:none}.tags-input[disabled] .tags{background-color:#eee;cursor:default}.tags-input[disabled] .tags .tag-item{background:linear-gradient(180deg,#f0f9ff 0,rgba(203,235,255,.75) 47%,rgba(161,219,255,.62));opacity:.65}.tags-input[disabled] .tags .tag-item .remove-button{cursor:default}.tags-input[disabled] .tags .tag-item .remove-button:active{color:#098842}.tags-input[disabled] .tags .input{background-color:#eee;cursor:default}.tags-input .autocomplete{background-color:#fff;border:1px solid rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);margin-top:5px;padding:5px 0;position:absolute;width:100%;z-index:999}.tags-input .autocomplete .suggestion-list{list-style-type:none;margin:0;max-height:280px;overflow-y:auto;padding:0;position:relative}.tags-input .autocomplete .suggestion-item{cursor:pointer;overflow:hidden;padding:5px 10px;text-overflow:ellipsis;white-space:nowrap}.tags-input .autocomplete .suggestion-item.selected{background-color:#098842;color:#fff}.tags-input .autocomplete .suggestion-item.selected .subdued{color:#fff}.tags-input .autocomplete .suggestion-item em{font-style:normal;font-weight:700}.system-messages{list-style:none;margin:0;padding:0}.system-message{background-color:#3265b2;border-bottom:1px solid #4b7ecc;color:#fff;padding:6.25px 12.5px}.system-message a{color:#fff;text-decoration:underline}.system-message .close{color:#fff;opacity:1;text-shadow:none}.light.close{color:#000}.dark.close{color:#fff;opacity:1;text-shadow:none}.clickable{cursor:pointer}.img-circle{border-radius:50%;display:inline-block;height:100px;overflow:hidden;width:100px}.img-circle img{margin-top:-10px}@keyframes bounce{0%,10%,26%,40%,50%{transform:translateZ(0);transition-timing-function:cubic-bezier(.215,.61,.355,1)}20%,21%{transform:translate3d(0,-10px,0);transition-timing-function:cubic-bezier(.755,.05,.855,.06)}35%{transform:translate3d(0,-5px,0);transition-timing-function:cubic-bezier(.755,.05,.855,.06)}45%{transform:translate3d(0,-2px,0)}50%{transform:translateZ(0)}}@keyframes pulse{0%{opacity:.7}to{opacity:.9}}@keyframes fade-in{0%{opacity:0}to{opacity:1}}.bounce{animation-duration:2s;animation-fill-mode:both;animation-iteration-count:infinite;animation-name:bounce;transform-origin:center bottom}.grecaptcha-badge{height:0!important;visibility:hidden}.recaptcha-branding{font-size:14px;padding:10px 10px 0 10px;text-align:center}.tos-agreement-notice{font-size:14px;margin-bottom:0;margin-top:6.25px;text-align:center}.tos-agreement-notice.tos-agreement-notice-homepage{color:#fff;margin-top:12.5px}.tos-agreement-notice.tos-agreement-notice-homepage>a{color:#fff;text-decoration:underline}.website-redesign .recaptcha-branding{font-size:12px;padding:10px 0;text-align:left}.website-redesign .recaptcha-branding>a{color:var(--green-50);text-decoration:underline}.website-redesign .recaptcha-branding>a:hover{color:var(--green-60)}.website-redesign .light-design .recaptcha-branding{font-size:12px;padding:10px 0;text-align:center}.website-redesign .light-design .recaptcha-branding>a{color:var(--green-50);text-decoration:underline}.website-redesign .light-design .recaptcha-branding>a:hover{color:var(--green-60)}.account-settings .alert{margin-bottom:0}.account-settings h3{margin-top:0}#delete-account-modal .alert{margin-bottom:4px;margin-top:25px}#delete-account-modal .confirmation-checkbox-wrapper{padding-top:8px}#delete-account-modal .confirmation-checkbox-wrapper input{margin-right:6px}.affiliations-table{table-layout:fixed}.affiliations-table-cell{overflow-wrap:break-word;padding:.5rem}.affiliations-table-cell-tabbed{border-left:2px solid #e7e9ee;margin:10px 0 0 20px;padding-left:10px}.affiliations-table-row-highlighted{background-color:#f5f6f7}.affiliations-table-email,.affiliations-table-institution{width:40%}.affiliations-table-inline-actions{word-wrap:break-word;padding:0!important;text-align:right}.affiliations-table-inline-actions button{margin:8px 0}.affiliations-table-inline-action{text-transform:capitalize}.affiliations-table-inline-action-disabled-wrapper{display:inline-block}.affiliations-table-highlighted-row{background-color:#f5f6f7}.affiliations-table-error-row{background-color:#b83a33;color:#fff}.affiliations-table-error-row .btn{background-color:#98302a;border-color:transparent;color:#fff;margin-top:8px}.alert .affiliations-table-error-row .btn{background-color:#581c18}.alert .affiliations-table-error-row .btn.active,.alert .affiliations-table-error-row .btn.checked,.alert .affiliations-table-error-row .btn:active,.alert .affiliations-table-error-row .btn:focus,.alert .affiliations-table-error-row .btn:hover,.open .dropdown-toggle.alert .affiliations-table-error-row .btn{background-color:#381210}.affiliations-table-error-row .btn.active,.affiliations-table-error-row .btn.checked,.affiliations-table-error-row .btn:active,.affiliations-table-error-row .btn:focus,.affiliations-table-error-row .btn:hover,.open .dropdown-toggle.affiliations-table-error-row .btn{background-color:#782621;border-color:transparent;color:#fff}.affiliations-table-error-row .btn.active,.affiliations-table-error-row .btn:active,.open .dropdown-toggle.affiliations-table-error-row .btn{background-image:none}.affiliations-table-error-row .btn.disabled,.affiliations-table-error-row .btn.disabled.active,.affiliations-table-error-row .btn.disabled:active,.affiliations-table-error-row .btn.disabled:focus,.affiliations-table-error-row .btn.disabled:hover,.affiliations-table-error-row .btn[disabled],.affiliations-table-error-row .btn[disabled].active,.affiliations-table-error-row .btn[disabled]:active,.affiliations-table-error-row .btn[disabled]:focus,.affiliations-table-error-row .btn[disabled]:hover,fieldset[disabled] .affiliations-table-error-row .btn,fieldset[disabled] .affiliations-table-error-row .btn.active,fieldset[disabled] .affiliations-table-error-row .btn:active,fieldset[disabled] .affiliations-table-error-row .btn:focus,fieldset[disabled] .affiliations-table-error-row .btn:hover{background-color:#98302a;border-color:transparent}.affiliations-table-error-row .btn .badge{background-color:#fff;color:#98302a}.affiliations-table-error-row .small{color:#fff}.affiliations-table-info-row{background-color:#3265b2;color:#fff}.affiliations-table-info-row .small{color:#fff}.affiliations-table-warning-row{background-color:#de8014;color:#fff}.affiliations-table-warning-row .small{color:#fff}tbody>tr.affiliations-table-info-row>td,tbody>tr.affiliations-table-saml-row>td:not(.with-border),tbody>tr.affiliations-table-warning-row>td{border:0}.affiliations-form-group{margin-top:8px}.affiliations-form-group:first-child{margin-top:0}.affiliation-change-actions,.affiliation-change-container{margin-top:8px}.affiliations-table-label{padding-top:4px}.btn-link-accounts{margin-bottom:4.5px}.dropbox-sync-icon,.settings-widget-status-icon{font-size:1.3em;line-height:1.3em;position:relative;vertical-align:top}.dropbox-sync-icon.dropbox-sync-icon-error,.dropbox-sync-icon.status-error,.settings-widget-status-icon.dropbox-sync-icon-error,.settings-widget-status-icon.status-error{color:#b83a33}.dropbox-sync-icon.dropbox-sync-icon-success,.dropbox-sync-icon.status-success,.settings-widget-status-icon.dropbox-sync-icon-success,.settings-widget-status-icon.status-success{color:#098842}.dropbox-sync-icon.dropbox-sync-icon-updating,.dropbox-sync-icon.status-pending,.settings-widget-status-icon.dropbox-sync-icon-updating,.settings-widget-status-icon.status-pending{color:#3265b2}.dropbox-sync-icon.dropbox-sync-icon-updating:after,.dropbox-sync-icon.status-pending:after,.settings-widget-status-icon.dropbox-sync-icon-updating:after,.settings-widget-status-icon.status-pending:after{animation:fa-spin 2s linear infinite;color:#fff;content:"\f021";font-size:60%;left:50%;margin-left:-20%;position:absolute;top:0}.settings-widgets-container{border:1px solid #d0d5dd}.settings-widgets-container hr{margin:0 10px}.settings-widget-container{align-items:center;display:grid;gap:20px;grid-template-columns:40px 1fr auto;padding:10px}.settings-widget-container>div{display:flex;flex-direction:column;padding-right:20px}.settings-widget-container>div:last-child{padding-right:0}.settings-widget-container img{height:40px;width:40px}.settings-widget-container .description-container{flex-grow:1}.settings-widget-container .title-row{align-items:center;display:flex;margin-bottom:10px}.settings-widget-container .title-row>h4{margin:0;margin-right:10px}.settings-widget-container p{margin-bottom:10px}.settings-widget-container p:last-child{margin-bottom:0}@media (max-width:767px){.settings-widget-container{grid-template-columns:1fr}.settings-widget-container .title-row{display:unset}}.settings-reconfirm-info{display:flex;justify-content:space-between;margin:0 auto 10px auto!important;padding:20px}.settings-reconfirm-info:not(.alert-info){background-color:#f4f5f6}.settings-reconfirm-info:not(.alert-info) .fa-warning{color:#de8014}.settings-reconfirm-info>:not(:last-child){margin-right:20px}.setting-reconfirm-info-right{white-space:nowrap}.linking-icon-fixed-position{align-self:start;padding-top:10px}.linking-git-bridge-table-cell{padding-right:0}.linking-git-bridge-revoke-button{padding:2px 4px}.security-row{color:#495365;display:flex;flex-direction:row;line-height:24px;padding:6px 0}.security-row .line-header>b{color:#1b222c}.security-row .icon{color:#1b222c;display:flex;flex:1 1 7%;margin-top:16px;padding:0 16px}.security-row .text{display:flex;flex:1 1 93%;flex-direction:column;margin-right:16px}.security-row .button-column{align-items:center;display:flex}.security-row .status-label{border-radius:4px;flex-shrink:0;font-size:14px;margin-left:8px;margin-top:4px;padding:2px 4px}.security-row .status-label.status-label-configured{background-color:#098842;color:#f4f5f6}.security-row .status-label.status-label-ready{background-color:#e7e9ee;color:#1b222c}.beta-opt-in .form-group{margin-top:15px}.team-profile{clear:both}.team-profile .img-container{float:left;margin:6.25px 25px 25px 12.5px;overflow:hidden}.v1-import-title{margin-top:12.5px;text-align:center}.v1-import-row{align-items:center;display:flex}.v1-import-col{padding-left:15px;padding-right:15px}.v1-import-col ul{margin-bottom:0}.v1-import-col--left{flex-shrink:1.1}.v1-import-img{margin-top:30px;width:100%}.v1-import-cta{margin-left:auto;margin-right:auto;margin-top:20px;text-align:center;width:90%}.v1-import-warning{color:#4b7fd1;font-size:10em;line-height:1em}.v1-import-footer{display:flex;justify-content:space-evenly;text-align:left}.v1-import-btn{width:20rem}.project-list-page{bottom:50px;overflow-x:hidden;overflow-y:auto;padding-bottom:0;position:absolute;top:68px;width:100%}body>.content.project-list-page{min-height:calc(100vh - 118px);padding-top:0}.project-list-content{height:100%;margin:0;overflow:hidden}.project-list-empty{height:100%;overflow-y:scroll}.project-list-empty-col{display:flex;flex-direction:column;flex-wrap:nowrap;height:100%}.project-list-empty-col .row:first-child{flex-grow:1}.project-list-empty-col .card{padding-bottom:37.5px}.sidebar-new-proj-btn{display:block;padding-left:0;padding-right:0;width:100%}.project-list-row{height:100%;min-height:calc(100vh - 118px)}.project-list-container{height:100%}.project-list-sidebar{-ms-overflow-style:-ms-autohiding-scrollbar;background-color:#2f3a4c;color:#afb5c0;overflow-x:hidden;overflow-y:auto;padding-bottom:25px;padding-top:25px}.project-list-sidebar .small{color:#afb5c0}.project-list-main{height:100%;margin-left:-15px;overflow-y:auto;padding-bottom:25px;padding-top:25px}.project-header .btn-group>.btn{padding-left:.78125;padding-right:.78125}.project-tools{display:inline;float:right;line-height:1.5625}.tags-dropdown-menu{max-width:50vw}.tags-dropdown-menu.dropdown-menu>li>a{overflow:hidden;text-overflow:ellipsis}.project-list-table{table-layout:fixed;width:100%}.project-list-table-header-row,.project-list-table-row{border-bottom:1px solid #e7e9ee}.project-list-table-row{position:relative}.project-list-table-row:last-child{border-bottom:0 none}.project-list-table-row:hover{background-color:#f6f7f9}.project-list-table-row:first-child{border-bottom-color:#dbdde2}.project-list-table-row:first-child:hover{background-color:transparent}.project-list-table-actions-cell,.project-list-table-lastupdated-cell,.project-list-table-name-cell,.project-list-table-owner-cell{padding:6.25px 0;vertical-align:top}.project-list-table-name-cell{padding-right:12.5px;width:50%}@media (min-width:992px){.project-list-table-name-cell{width:47%}}@media (min-width:1200px){.project-list-table-name-cell{width:50%}}.project-list-table-name-container{overflow:hidden;position:relative;text-overflow:ellipsis}input.project-list-table-select-item[type=checkbox]{left:10px;margin-top:5px;position:absolute}.project-list-table-name{display:inline-block;padding-left:37.5px;vertical-align:top}.project-list-table-name-link{padding:0}.project-list-table-owner-cell{overflow:hidden;padding-right:12.5px;text-overflow:ellipsis;width:23%}@media (min-width:768px){.project-list-table-owner-cell{width:12%}}.project-list-table-lastupdated-cell{overflow:hidden;padding-right:12.5px;text-overflow:ellipsis;width:27%}@media (min-width:768px){.project-list-table-lastupdated-cell{width:14%}}.project-list-table-actions-cell{display:none;padding-right:10px;text-align:right;white-space:nowrap}@media (min-width:768px){.project-list-table-actions-cell{display:table-cell;width:18%}}@media (min-width:992px){.project-list-table-actions-cell{width:11%}}@media (min-width:1200px){.project-list-table-actions-cell{width:10%}}.action-btn{padding:0 .2em}.first-project{text-align:center;width:127px}.add-affiliation-mobile-wrapper{padding:20px 0}.add-affiliation .progress{height:12.5px;margin-bottom:6.25px}.add-affiliation p{margin-bottom:6.25px}.add-affiliation.is-mobile p{font-size:12px;white-space:normal}.user-notifications ul{margin-bottom:0}.user-notifications .notification-entry .alert{box-shadow:2px 4px 6px rgba(0,0,0,.25);display:flex;flex-wrap:wrap}@media (min-width:768px){.user-notifications .notification-entry .alert{flex-wrap:nowrap}}.user-notifications .notification-entry .notification{margin-bottom:25px}.user-notifications .notification-entry.centered-alert .alert{align-items:center}ul.folders-menu{margin:-15px}ul.folders-menu .subdued{color:#afb5c0}ul.folders-menu>li{cursor:pointer;position:relative}ul.folders-menu>li>a{border-bottom:1px solid transparent;color:#fff;display:block;padding:6.25px 15px}ul.folders-menu>li>a:hover{background-color:#495365;text-decoration:none}ul.folders-menu>li>a:focus{text-decoration:none}ul.folders-menu>li.separator{cursor:auto;padding:6.25px 15px}ul.folders-menu>li.active{border-radius:0}ul.folders-menu>li.active>a{background-color:#1b222c;color:#fff;font-weight:700}ul.folders-menu>li.active>a .subdued{color:#fff}ul.folders-menu>li>a.small{color:#677283}ul.folders-menu h2{color:#afb5c0;font-family:Lato,sans-serif;font-size:14px;font-weight:400;margin-bottom:0;margin-top:0;padding:6.25px 0;text-transform:uppercase}ul.folders-menu>li.tag.active .tag-menu>a{border-color:#fff;color:#fff}ul.folders-menu>li.tag.active .tag-menu>a:hover{background-color:rgba(0,0,0,.1)}ul.folders-menu>li.tag.untagged a.tag-name span.name{font-style:italic;padding-left:0}ul.folders-menu>li.tag:hover:not(.active){background-color:#495365}ul.folders-menu>li.tag:hover .tag-menu{display:block}ul.folders-menu>li.tag:not(.active) .tag-menu>a:hover{background-color:rgba(0,0,0,.1)}ul.folders-menu>li.tag .tag-name{display:flex;padding:6.25px 30px 6.25px 15px;position:relative}ul.folders-menu>li.tag .tag-name span.name{line-height:1.4;padding-left:.5em}ul.folders-menu>li.tag .tag-menu{display:none;margin-top:-8px;position:absolute;right:4px;top:50%}ul.folders-menu>li.tag .tag-menu>a{border:1px solid #fff;border-radius:2px;color:#fff;display:block;height:16px;position:relative;width:16px}ul.folders-menu>li.tag .tag-menu>a .caret{left:1px;position:absolute;top:6px}ul.folders-menu>li.tag .tag-menu.open{display:block}ul.folders-menu>li.tag .dropdown-toggle{float:right}.project-action-alert{align-items:center;display:flex;margin-bottom:0}.project-action-alert-msg{flex-grow:1;padding-right:10px}form.project-search .form-group{margin-bottom:0}.project-search-clear-btn{border:0;color:#495365;padding:0;width:100%}.project-search-clear-btn:active,.project-search-clear-btn:hover{color:#495365}ul.structured-list{-ms-overflow-style:-ms-autohiding-scrollbar;list-style-type:none;margin:0;overflow:hidden;overflow-y:auto}ul.structured-list>li{border-bottom:1px solid #e7e9ee;padding:6.25px 0}ul.structured-list>li:last-child{border-bottom:0 none}ul.structured-list>li:hover{background-color:#f6f7f9}ul.structured-list>li:first-child{border-bottom-color:#dbdde2}ul.structured-list>li:first-child:hover{background-color:transparent}ul.structured-list>li a{color:#3265b2}ul.structured-list>li .header{font-weight:600}ul.structured-list>li .select-all,ul.structured-list>li .select-item{left:25px;position:absolute}ul.structured-list>li .select-all+span,ul.structured-list>li .select-item+span{display:inline-block;max-width:100%;overflow:hidden;padding-left:37.5px;text-overflow:ellipsis;vertical-align:top}.project-list-card{padding:0 6.25px}ul.project-list li .projectName{margin-right:6.25px}i.tablesort{padding-left:8px}.tablesort-text{padding-right:8px}.tag-label{display:inline-block;line-height:1;margin-left:6.25px;position:relative;top:2px;white-space:nowrap}.label.tag-label-name,.label.tag-label-remove{background-color:#e7e9ee;border-radius:9999px;border-width:0;color:#495365;display:inline-block;padding:3px 4px;vertical-align:text-bottom}.label.tag-label-name:focus,.label.tag-label-name:hover,.label.tag-label-remove:focus,.label.tag-label-remove:hover{background-color:#d8dbe3;color:#495365;outline-width:0}.label.tag-label-name{border-bottom-right-radius:0;border-top-right-radius:0;max-width:150px;overflow:hidden;padding-right:2px;text-overflow:ellipsis}.label.tag-label-name>.fa{margin-right:.3em}.label.tag-label-remove{border-bottom-left-radius:0;border-top-left-radius:0;padding-left:2px}.user_details_auto_complete ul>li{list-style:none}.user_details_auto_complete .autocomplete{position:relative;width:100%}.user_details_auto_complete .autocomplete ul{background-clip:padding-box;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:3px;box-shadow:0 6px 12px rgba(0,0,0,.175);float:left;font-size:16px;left:0;list-style:none;margin:2px 0 0;min-width:160px;padding:5px 0;position:absolute;top:100%;z-index:1000}.user_details_auto_complete .autocomplete ul>li{clear:both;color:#495365;display:block;font-weight:400;line-height:1.5625;padding:3px 20px;white-space:nowrap}.user_details_auto_complete .autocomplete ul>li.active{background-color:#098842;color:#fff;text-decoration:none}.user_details_auto_complete .autocomplete .highlight{font-weight:700}body>.content.project-list-react{display:flex;flex-direction:column;min-height:calc(100vh - 68px);padding-bottom:0;padding-top:68px}.project-list-react .container:before{content:"";display:block;float:left;height:100%}.project-list-react .fill{position:relative}.project-list-react .fill:after{clear:left;content:"";display:block}.project-list-react .project-list-wrapper{align-items:stretch;display:flex;min-height:calc(100vh - 68px);width:100%}.project-list-react .project-list-sidebar-wrapper-react{background-color:#2f3a4c;flex:0 0 15%;max-width:320px;min-height:calc(100vh - 68px);min-width:200px;position:relative}.project-list-react .project-list-sidebar-wrapper-react .project-list-sidebar-subwrapper{display:flex;flex-direction:column;height:100%}.project-list-react .project-list-sidebar-wrapper-react .project-list-sidebar-subwrapper .project-list-sidebar-react{-ms-overflow-style:-ms-autohiding-scrollbar;color:#afb5c0;flex-grow:1;padding-bottom:25px;padding-left:15px;padding-right:15px;padding-top:25px}.project-list-react .project-list-sidebar-wrapper-react .project-list-sidebar-subwrapper .project-list-sidebar-react .small{color:#afb5c0}.project-list-react .project-list-sidebar-wrapper-react .project-list-sidebar-subwrapper .project-list-sidebar-react button{word-wrap:anywhere;white-space:normal}.project-list-react .project-list-sidebar-wrapper-react .project-list-sidebar-subwrapper .project-list-sidebar-react>.dropdown,.project-list-react .project-list-sidebar-wrapper-react .project-list-sidebar-subwrapper .project-list-sidebar-react>.dropdown .new-project-button{width:100%}.project-list-react .project-list-welcome-wrapper{padding-bottom:25px;width:100%}.project-list-react .project-list-welcome-wrapper .welcome-new-wrapper .welcome-title{font-size:32px}.project-list-react .project-list-welcome-wrapper .welcome-new-wrapper .welcome-message-cards-wrapper{align-items:center;display:flex;flex-direction:column;justify-content:space-between;margin-top:50px}@media (min-width:992px){.project-list-react .project-list-welcome-wrapper .welcome-new-wrapper .welcome-message-cards-wrapper{flex-direction:row;justify-content:center}}.project-list-react .project-list-welcome-wrapper .welcome-new-wrapper .welcome-message-card-item{display:flex;flex:1;flex-direction:column}@media (min-width:992px){.project-list-react .project-list-welcome-wrapper .welcome-new-wrapper .welcome-message-card-item{flex:0 1 310px}}.project-list-react .project-list-welcome-wrapper .welcome-new-wrapper .welcome-message-card{align-items:center;border:1px solid #e7e9ee;border-radius:16px;cursor:pointer;display:flex;flex-direction:column;height:200px;justify-content:space-between;margin:10px 0;padding:24px 16px;position:relative;width:280px}@media (min-width:992px){.project-list-react .project-list-welcome-wrapper .welcome-new-wrapper .welcome-message-card{height:240px;margin:0 15px;width:auto}}.project-list-react .project-list-welcome-wrapper .welcome-new-wrapper .welcome-message-card:hover{background-color:#f4f5f6}.project-list-react .project-list-welcome-wrapper .welcome-new-wrapper .welcome-message-card .welcome-message-card-img{max-width:100%}@media (min-width:992px){.project-list-react .project-list-welcome-wrapper .welcome-new-wrapper .welcome-message-card .welcome-message-card-img{margin-bottom:20px}}.project-list-react .project-list-welcome-wrapper .welcome-new-wrapper .welcome-message-card .create-new-project-dropdown{border:1px solid #e7e9ee;border-radius:3px;left:5%;margin-top:8px;padding:0;position:absolute;text-align:left;top:100%;width:90%;z-index:1}.project-list-react .project-list-welcome-wrapper .welcome-new-wrapper .welcome-message-card .create-new-project-dropdown .dropdown-header,.project-list-react .project-list-welcome-wrapper .welcome-new-wrapper .welcome-message-card .create-new-project-dropdown a,.project-list-react .project-list-welcome-wrapper .welcome-new-wrapper .welcome-message-card .create-new-project-dropdown button{padding:5px 10px}.project-list-react .project-list-welcome-wrapper .welcome-new-wrapper .welcome-message-card .create-new-project-dropdown>button{align-items:center;background-color:#fff;border:none;box-shadow:none;display:flex;width:100%}.project-list-react .project-list-welcome-wrapper .welcome-new-wrapper .welcome-message-card .create-new-project-dropdown>button:hover{background-color:#f4f5f6}.project-list-react .project-list-welcome-wrapper .welcome-new-wrapper .welcome-message-card .create-new-project-dropdown>a{color:#495365;display:block}.project-list-react .project-list-welcome-wrapper .welcome-new-wrapper .welcome-message-card .create-new-project-dropdown>a:hover{background-color:#f4f5f6;text-decoration:none}.project-list-react .project-list-welcome-wrapper .welcome-new-wrapper .welcome-message-card .create-new-project-dropdown hr{margin-bottom:6px;margin-top:6px}.project-list-react .project-list-welcome-wrapper .welcome-new-wrapper .welcome-message-card-link,.project-list-react .project-list-welcome-wrapper .welcome-new-wrapper .welcome-message-card-link:hover{color:#495365;text-decoration:none}.project-list-react .project-list-main-react{flex:1;overflow-x:hidden;padding:25px 15px}.project-list-react .project-list-header-row{align-items:center;display:flex;margin-bottom:10px;min-height:36px}.project-list-react .project-list-title{color:#495365;font-family:Lato,sans-serif;font-size:20px;font-weight:700;line-height:28px;min-width:0}.project-list-react ul.project-list-filters{margin:10px -15px}.project-list-react ul.project-list-filters .dropdown-header{color:#afb5c0;font-family:Lato,sans-serif;font-size:14px;font-weight:400;margin-bottom:0;margin-top:0;padding:12.5px 16px;text-transform:uppercase}.project-list-react ul.project-list-filters .subdued{color:#afb5c0}.project-list-react ul.project-list-filters>li{cursor:pointer;position:relative}.project-list-react ul.project-list-filters>li>button{background-color:transparent;border:none;border-bottom:1px solid transparent;border-radius:unset;color:#fff;display:block;font-weight:400;padding:6.25px 15px;text-align:left;width:100%}.project-list-react ul.project-list-filters>li>button:hover{background-color:#495365;text-decoration:none}.project-list-react ul.project-list-filters>li>button:focus{outline:none;text-decoration:none}.project-list-react ul.project-list-filters>li.separator{cursor:auto;padding:6.25px 15px}.project-list-react ul.project-list-filters>li.active{border-radius:0}.project-list-react ul.project-list-filters>li.active>button{background-color:#1b222c;color:#fff;font-weight:700}.project-list-react ul.project-list-filters>li.active>button .subdued{color:#fff}.project-list-react ul.project-list-filters>li.tag.active .tag-menu>button{border-color:#fff;color:#fff}.project-list-react ul.project-list-filters>li.tag.active .tag-menu>button:hover{background-color:rgba(0,0,0,.1)}.project-list-react ul.project-list-filters>li.tag.untagged button.tag-name span.name{font-style:italic;padding-left:0}.project-list-react ul.project-list-filters>li.tag:hover:not(.active){background-color:#495365}.project-list-react ul.project-list-filters>li.tag:hover .tag-menu{display:block}.project-list-react ul.project-list-filters>li.tag:not(.active) .tag-menu>a:hover{background-color:rgba(0,0,0,.1)}.project-list-react ul.project-list-filters>li.tag button.tag-name{word-wrap:anywhere;align-items:center;display:flex;padding:6.25px 30px 6.25px 15px;position:relative}.project-list-react ul.project-list-filters>li.tag button.tag-name .tag-list-icon{font-weight:700;vertical-align:sub}.project-list-react ul.project-list-filters>li.tag button.tag-name span.name{line-height:1.4;padding-left:.5em}.project-list-react ul.project-list-filters .tag-menu{display:none;margin-top:-8px;position:absolute;right:4px;top:50%;width:auto}.project-list-react ul.project-list-filters .tag-menu button.dropdown-toggle{background-color:transparent;border:1px solid #fff;border-radius:2px;color:#fff;display:block;height:16px;position:relative;width:16px}.project-list-react ul.project-list-filters .tag-menu button.dropdown-toggle .caret{left:1px;position:absolute;top:6px}.project-list-react ul.project-list-filters .tag-menu.open{display:block}.project-list-react ul.project-list-filters .tag-menu button.tag-action{background-color:transparent;border-color:transparent;border-radius:unset;color:#495365;font-weight:400;text-align:left;width:100%}.project-list-react ul.project-list-filters .tag-menu button.tag-action:hover{background-color:#098842;color:#fff}.project-list-react ul.project-list-filters .tag-menu button.tag-action:active{outline:none}.project-list-react .project-tools{flex-shrink:0;margin-left:auto}.project-list-react .project-dash-table{table-layout:fixed;width:100%}.project-list-react .project-dash-table tr{border-bottom:1px solid #e7e9ee}.project-list-react .project-dash-table td,.project-list-react .project-dash-table th{padding:6.25px 12.5px;vertical-align:top}.project-list-react .project-dash-table tr td:first-child,.project-list-react .project-dash-table tr td:last-child,.project-list-react .project-dash-table tr th:first-child,.project-list-react .project-dash-table tr th:last-child{padding-right:10px}.project-list-react .project-dash-table tbody tr:not(.no-projects):hover{background-color:#f6f7f9}.project-list-react .project-dash-table tbody tr:last-child{border-bottom:0 none}.project-list-react .project-dash-table .table-header-sort-btn{background-color:transparent;border:0;color:#495365;font-weight:700;max-width:100%;overflow:hidden;padding:0;text-align:left;text-decoration:none;text-overflow:ellipsis}.project-list-react .project-dash-table .table-header-sort-btn:focus,.project-list-react .project-dash-table .table-header-sort-btn:hover{color:#495365;text-decoration:none}.project-list-react .project-dash-table .dash-cell-checkbox{line-height:1.55;width:5%}.project-list-react .project-dash-table .dash-cell-checkbox input[type=checkbox]{margin-top:5px}.project-list-react .project-dash-table .dash-cell-checkbox .dash-cell-checkbox-wrapper label{display:block;line-height:1;margin:0}.project-list-react .project-dash-table .dash-cell-name{-webkit-hyphens:auto;hyphens:auto;width:50%;word-break:break-word}.project-list-react .project-dash-table .dash-cell-owner{width:20%}.project-list-react .project-dash-table .dash-cell-date{width:25%}.project-list-react .project-dash-table .dash-cell-actions{display:none;text-align:right}.project-list-react .project-dash-table .dash-cell-date-owner{font-size:14px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.project-list-react .project-dash-table .clone-project-tag .tag-label,.project-list-react .project-dash-table .dash-cell-tag .tag-label{cursor:pointer;padding:14px 0}.project-list-react .project-dash-table .clone-project-tag .tag-label:not(.tag-label-close-hover):focus .label.tag-label-name,.project-list-react .project-dash-table .clone-project-tag .tag-label:not(.tag-label-close-hover):hover .label.tag-label-name,.project-list-react .project-dash-table .dash-cell-tag .tag-label:not(.tag-label-close-hover):focus .label.tag-label-name,.project-list-react .project-dash-table .dash-cell-tag .tag-label:not(.tag-label-close-hover):hover .label.tag-label-name{background-color:#d8dbe3;color:#495365;outline-width:0}.project-list-react .project-dash-table .clone-project-tag .tag-label:first-child,.project-list-react .project-dash-table .dash-cell-tag .tag-label:first-child{margin-left:0}@media (min-width:480px){.project-list-react .project-dash-table .dash-cell-checkbox{width:4%}.project-list-react .project-dash-table .dash-cell-name{width:50%}.project-list-react .project-dash-table .dash-cell-owner{width:21%}.project-list-react .project-dash-table .dash-cell-date{width:25%}.project-list-react .project-dash-table .dash-cell-actions{width:0}}@media (min-width:768px){.project-list-react .project-dash-table .dash-cell-checkbox{width:3%}.project-list-react .project-dash-table .dash-cell-name{width:45%}.project-list-react .project-dash-table .dash-cell-owner{width:16%}.project-list-react .project-dash-table .dash-cell-date{width:21%}.project-list-react .project-dash-table .dash-cell-actions{display:table-cell;width:15%}.project-list-react .project-dash-table .project-tools{float:none}}@media (min-width:992px){.project-list-react .project-dash-table .dash-cell-checkbox{width:3%}.project-list-react .project-dash-table .dash-cell-name{width:46%}.project-list-react .project-dash-table .dash-cell-owner{width:13%}.project-list-react .project-dash-table .dash-cell-date{width:16%}.project-list-react .project-dash-table .dash-cell-actions{width:22%}.project-list-react .project-dash-table tbody .dash-cell-actions{white-space:nowrap}}@media (min-width:1200px){.project-list-react .project-dash-table .dash-cell-checkbox{width:3%}.project-list-react .project-dash-table .dash-cell-name{width:46%}.project-list-react .project-dash-table .dash-cell-owner{width:15%}.project-list-react .project-dash-table .dash-cell-date{width:19%}.project-list-react .project-dash-table .dash-cell-actions{width:17%}}@media (min-width:1440px){.project-list-react .project-dash-table .dash-cell-checkbox{width:2%}.project-list-react .project-dash-table .dash-cell-name{width:49%}.project-list-react .project-dash-table .dash-cell-owner{width:16%}.project-list-react .project-dash-table .dash-cell-date{width:19%}.project-list-react .project-dash-table .dash-cell-actions{width:14%}}@media (max-width:767px){.project-list-react .project-dash-table tr{display:flex;flex-direction:column;position:relative}.project-list-react .project-dash-table tr td{padding-bottom:4.16666667px;padding-top:4.16666667px}.project-list-react .project-dash-table tr td:not(.dash-cell-actions){padding-right:60.5px}.project-list-react .project-dash-table .dash-cell-actions,.project-list-react .project-dash-table .dash-cell-date,.project-list-react .project-dash-table .dash-cell-name,.project-list-react .project-dash-table .dash-cell-owner,.project-list-react .project-dash-table .dash-cell-tag{display:block;width:auto}.project-list-react .project-dash-table .dash-cell-actions{padding:0!important;position:absolute;right:0;top:0}.project-list-react .project-dash-table .dash-cell-actions .dropdown-toggle{border-radius:0;font-size:14px;padding:13px 15px}}.project-list-react .loading-container{align-items:center;display:flex;flex-direction:column;justify-content:center;min-height:calc(100vh - 68px)}.project-list-react .loading-container .loading-screen-brand-container{margin:0 auto}@media (max-width:767px){.project-list-react .project-tools{float:left;margin-left:0}}.project-list-react .projects-toolbar,.project-list-react .tag-item{align-items:center;display:flex}.project-list-react .projects-toolbar .dropdown,.project-list-react .projects-toolbar .dropdown-toggle{max-width:100%}.project-list-react .projects-toolbar .dropdown{min-width:0}.project-list-react .projects-toolbar .dropdown-toggle{align-items:baseline;display:inline-flex}.project-list-react .projects-sort-dropdown{flex-shrink:0;margin-left:auto}.project-list-react #projects-types-dropdown{font-family:Merriweather,serif}.project-list-react #projects-types-dropdown+.projects-dropdown-menu{max-width:92vw;min-width:226px}.project-list-react #projects-sort-dropdown+.projects-dropdown-menu{min-width:156px}.project-list-react .projects-dropdown-menu.dropdown-menu{white-space:nowrap}.project-list-react .projects-types-menu-item .menu-item-button-icon{left:10px}.project-list-react .projects-types-menu-item.projects-types-menu-tag-item{display:flex}.project-list-react .projects-types-menu-item.projects-types-menu-tag-item .edit-btn{padding:12px 14px}.project-list-react .projects-sort-menu-item .menu-item-button-icon{left:14px}.project-list-react .projects-action-menu-item .menu-item-button-icon{left:11px}.current-plan{line-height:1.5625;vertical-align:middle}.current-plan a.current-plan-label{color:#495365;text-decoration:none}.project-list-upload-project-modal-uppy-dashboard .uppy-Root .uppy-Dashboard-AddFiles-title{color:#677283;display:flex;flex-direction:column;white-space:pre-line}.project-list-upload-project-modal-uppy-dashboard .uppy-Root .uppy-Dashboard-AddFiles-title button.uppy-Dashboard-browse{align-items:center;background-color:#098842;border-radius:23px;color:#fff;display:flex;font-family:Lato,sans-serif;font-size:20px;font-weight:700;height:46px;justify-content:center;margin-bottom:20px;padding:4px 16px 5px}.btn-transparent{border-radius:0!important;font-weight:400}.btn-transparent,.btn-transparent:hover{background:none!important;box-shadow:none!important;color:inherit!important}#new-project-button-projects-table+.dropdown-menu [role=menuitem],.menu-item-button{padding:12px 20px}.menu-item-button{background:inherit;border:none;box-shadow:none;color:#2f3a4c;overflow:hidden;position:relative;text-align:left;width:100%}.menu-item-button .menu-item-button-text{overflow:hidden;padding-left:14px}.menu-item-button .menu-item-button-text .tag-name-and-size{display:flex;gap:1ex;overflow:hidden}.menu-item-button .menu-item-button-text .tag-name{overflow:hidden;text-overflow:ellipsis}.menu-item-button .menu-item-button-icon{position:absolute;top:50%;transform:translateY(-50%)}.menu-item-button .menu-item-button-icon.fa-spinner{top:30%}.project-list-load-more-button{margin-bottom:10px}.tag-dropdown-button{background-color:transparent;border:none;border-bottom:1px solid transparent;border-radius:unset;color:#495365;display:block;font-size:16px;font-weight:400;padding:3px 20px;text-align:left;width:100%}.tag-dropdown-button:active,.tag-dropdown-button:focus{background-color:transparent;color:#495365;outline:none;text-decoration:none}.tag-dropdown-button:hover{background-color:#098842;color:#fff}.tag-dropdown-button .tag-checkbox{width:16px}.tag-dropdown-button .tag-dot{border:1px solid #fff;border-radius:7px;display:inline-block;height:14px;position:relative;text-align:center;top:1px;width:14px}.project-list-sidebar-survey-wrapper{bottom:0;position:sticky}.project-list-sidebar-survey-wrapper .alert-info-alt{font-size:14px;margin-bottom:0}.project-list-sidebar-survey-wrapper .alert-info-alt a{text-decoration:none}@media (max-width:767px){.project-list-sidebar-survey-wrapper{margin-top:10px;position:static}.project-list-sidebar-survey-wrapper .alert-info-alt{font-size:unset}.project-list-sidebar-survey-wrapper .alert-info-alt:before{display:none}.project-list-sidebar-survey-wrapper .alert-info-alt .project-list-sidebar-survey-link{align-items:center;display:block;min-height:48px;min-width:48px;padding-top:20px}}.color-picker-item{border-radius:4px;cursor:pointer;display:inline-block;height:28px;margin:0 14px 0 0;outline:none;position:relative;vertical-align:middle;width:28px}.color-picker-item:focus-visible{box-shadow:0 0 0 2px #fff,0 0 0 3px #3265b2,0 0 0 5px #97b6e5}.color-picker-item.more-button{border:1px solid #495365}.color-picker-item.more-button .color-picker-more{color:#495365;font-weight:700;margin:3px}@media (max-width:767px){.color-picker-item.more-button .color-picker-more{margin:5px}}.color-picker-item.more-button .color-picker-more-open{color:#495365;font-weight:700;margin:3px}@media (max-width:767px){.color-picker-item.more-button .color-picker-more-open{margin:5px}}.color-picker-item .color-picker-item-icon{color:#fff;font-weight:700;margin:4px}@media (max-width:767px){.color-picker-item{height:32px;margin:24px 24px;width:32px}.color-picker-item .color-picker-item-icon{color:#fff;margin:6px}}.color-picker-more-wrapper{display:inline-block;position:relative}.color-picker-more-wrapper .custom-picker{position:absolute;-webkit-user-select:none;-moz-user-select:none;user-select:none}@media (max-width:767px){.color-picker-more-wrapper .custom-picker{left:24px;top:56px}}.color-picker-more-wrapper .popover-backdrop{bottom:0;left:0;position:fixed;right:0;top:0}.clone-project-tag{display:flex}.clone-project-tag:hover .label.tag-label-name{background-color:#e7e9ee}.editor-sidebar{background-color:#495365;display:flex;flex-direction:column}.file-tree{display:flex!important;flex-direction:column;height:100%}.file-tree .toolbar.toolbar-filetree{background-color:#2f3a4c;flex-shrink:0;height:32px;padding:0 5px}.file-tree .file-tree-inner,.file-tree>file-tree-root{display:flex;flex-direction:column;flex-grow:1;height:inherit;overflow-y:auto;position:relative;width:inherit}.file-tree .file-tree-inner.no-toolbar,.file-tree>file-tree-root.no-toolbar{top:0}.file-tree h3{border-bottom:1px solid #677283;font-size:1rem;margin:12.5px;padding-bottom:6.25px}.file-tree-history .entity-name{padding-left:6px}.file-tree-history .entity-name.deleted{text-decoration:line-through}.file-tree-history .loading{color:#fff;padding-left:6px}.file-tree-history .loading i.fa{color:#fff}.file-tree ul.file-tree-list{flex-grow:1;height:100%;margin:0;overflow-x:hidden;overflow-y:auto;position:relative}.file-tree ul.file-tree-list .entity>ul,.file-tree ul.file-tree-list ul[role=tree]{margin-left:22px}.file-tree ul.file-tree-list:after{content:"";display:block;min-height:25px}.file-tree ul.file-tree-list li{line-height:2.05;position:relative}.file-tree ul.file-tree-list li:focus{outline:none}.file-tree ul.file-tree-list li .entity{-webkit-user-select:none;-moz-user-select:none;user-select:none}.file-tree ul.file-tree-list li .entity:focus{outline:none}.file-tree ul.file-tree-list li .entity>.entity-name>button{background-color:transparent;border:0;padding:0}.file-tree ul.file-tree-list li .entity>.entity-name>button:focus{outline:none}.file-tree ul.file-tree-list li .entity>.entity-name>button.item-name-button{overflow:hidden;padding-right:32px;text-align:left;text-overflow:ellipsis;white-space:pre;width:100%}.file-tree ul.file-tree-list li .entity-name{background-color:transparent;color:#fff;cursor:pointer;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.file-tree ul.file-tree-list li .entity-name.entity-name-react{text-overflow:clip}.file-tree ul.file-tree-list li .entity-name:focus{outline:none}.file-tree ul.file-tree-list li .entity-name:before{background-color:transparent;content:"\00a0";left:-9999px;position:absolute;width:9999px}.file-tree ul.file-tree-list li .entity-name:hover{background-color:#2f3a4c}.file-tree ul.file-tree-list li .entity-name:hover:before{background-color:#2f3a4c;content:"\00a0";left:-9999px;position:absolute;width:9999px}.file-tree ul.file-tree-list li .entity-name input{line-height:1.6}.file-tree ul.file-tree-list li .entity-name .entity-menu-toggle>i{color:#fff;font-size:18px}.file-tree ul.file-tree-list li i.fa{color:#afb5c0;font-size:14px}.file-tree ul.file-tree-list li i.fa.file-tree-icon{margin-left:8px;margin-right:4px}.file-tree ul.file-tree-list li i.fa.file-tree-icon.linked-file-icon{left:-2px;position:relative}.file-tree ul.file-tree-list li i.fa.file-tree-icon.linked-file-icon+.linked-file-highlight{color:inherit;font-size:12px;left:-5px;position:relative;top:4px;width:0}.file-tree ul.file-tree-list li i.fa.file-tree-folder-icon{margin-right:4px}.file-tree ul.file-tree-list li i.fa.file-tree-expand-icon{margin-left:8px}.file-tree ul.file-tree-list li i.fa-folder,.file-tree ul.file-tree-list li i.fa-folder-open{color:#afb5c0;font-size:14px}.file-tree ul.file-tree-list li i.toggle{color:#afb5c0;font-size:16px;padding:6px;width:24px}.file-tree ul.file-tree-list li .file-tree-dropdown-toggle{align-items:center;color:#fff;display:flex;font-size:20px;line-height:1.6;padding:0 4px 0 18px}.file-tree ul.file-tree-list li .file-tree-dropdown-toggle:focus,.file-tree ul.file-tree-list li .file-tree-dropdown-toggle:hover{text-decoration:none}.file-tree ul.file-tree-list li .file-tree-dropdown-toggle:before{content:"\00B7\00B7\00B7";letter-spacing:.5px;transform:rotate(90deg)}.file-tree ul.file-tree-list li.multi-selected>.entity>.entity-name{background-color:#3265b2;color:#fff;font-weight:700}.file-tree ul.file-tree-list li.multi-selected>.entity>.entity-name .entity-menu-toggle i.fa,.file-tree ul.file-tree-list li.multi-selected>.entity>.entity-name>button>i.fa,.file-tree ul.file-tree-list li.multi-selected>.entity>.entity-name>div>i.fa,.file-tree ul.file-tree-list li.multi-selected>.entity>.entity-name>i.fa{color:#fff}.file-tree ul.file-tree-list li.multi-selected>.entity>.entity-name>i.linked-file-highlight{color:#3265b2}.file-tree ul.file-tree-list li.multi-selected>.entity>.entity-name:before{background-color:#3265b2;content:"\00a0";left:-9999px;position:absolute;width:9999px}.file-tree ul.file-tree-list li.multi-selected>.entity>.entity-name:hover{background-color:#28518f}.file-tree ul.file-tree-list li.multi-selected>.entity>.entity-name:hover:before{background-color:#28518f;content:"\00a0";left:-9999px;position:absolute;width:9999px}.file-tree ul.file-tree-list li .menu-button{position:absolute;right:0;top:3px}.file-tree ul.file-tree-list li .rename-input{color:#1b222c;display:block;left:32px;position:absolute;right:32px;top:1px}.file-tree ul.file-tree-list li .rename-input input{width:100%}.file-tree ul.file-tree-list li>.entity>.entity-name .entity-menu-toggle{display:none}.file-tree ul.file-tree-list li .entity-limit-hit{color:#fff;line-height:2.05;margin-left:12.5px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.file-tree ul.file-tree-list li .entity-limit-hit-message{font-style:italic}.file-tree ul.file-tree-list li i.fa.entity-limit-hit-tooltip-trigger{cursor:pointer;margin-left:6.25px}.file-tree:not(.multi-selected) ul.file-tree-list li.selected>.entity>.entity-name{background-color:#098842;color:#fff;font-weight:700;padding-right:32px}.file-tree:not(.multi-selected) ul.file-tree-list li.selected>.entity>.entity-name .entity-menu-toggle i.fa,.file-tree:not(.multi-selected) ul.file-tree-list li.selected>.entity>.entity-name>button>i.fa,.file-tree:not(.multi-selected) ul.file-tree-list li.selected>.entity>.entity-name>div>i.fa,.file-tree:not(.multi-selected) ul.file-tree-list li.selected>.entity>.entity-name>i.fa{color:#fff}.file-tree:not(.multi-selected) ul.file-tree-list li.selected>.entity>.entity-name>i.linked-file-highlight{color:#3265b2}.file-tree:not(.multi-selected) ul.file-tree-list li.selected>.entity>.entity-name:before{background-color:#098842;content:"\00a0";left:-9999px;position:absolute;width:9999px}.file-tree:not(.multi-selected) ul.file-tree-list li.selected>.entity>.entity-name .entity-menu-toggle{background-color:transparent;border:0;box-shadow:none;display:inline-block}.file-tree ul.file-tree-list.file-tree-dragging li.selected .entity .entity-name{background-color:transparent;color:#fff;font-weight:400}.file-tree ul.file-tree-list.file-tree-dragging li.selected .entity .entity-name:before{background-color:transparent;content:"\00a0";left:-9999px;position:absolute;width:9999px}.file-tree ul.file-tree-list.file-tree-dragging li.selected .entity .entity-name i.fa{color:#afb5c0!important}.file-tree ul.file-tree-list.file-tree-dragging li .entity.file-tree-entity-dragging .entity-name{background-color:rgba(47,58,76,.9);color:#fff}.file-tree ul.file-tree-list.file-tree-dragging li .entity.file-tree-entity-dragging .entity-name:before{background-color:rgba(47,58,76,.9);content:"\00a0";left:-9999px;position:absolute;width:9999px}.file-tree ul.file-tree-list.file-tree-dragging li .entity.file-tree-entity-dragging .entity-name i.fa{color:#afb5c0!important}.file-tree ul.file-tree-list.file-tree-dragging li.dnd-droppable-hover .entity .entity-name{background-color:#098842;color:#fff}.file-tree ul.file-tree-list.file-tree-dragging li.dnd-droppable-hover .entity .entity-name:before{background-color:#098842;content:"\00a0";left:-9999px;position:absolute;width:9999px}.file-tree ul.file-tree-list.file-tree-dragging li.dnd-droppable-hover .entity .entity-name i.fa{color:#fff!important}.file-tree .dnd-draggable-preview-layer{height:100%;overflow:hidden;pointer-events:none;position:absolute;width:100%;z-index:100}.file-tree .dnd-draggable-preview-layer.dnd-droppable-hover{border:3px solid #098842}.file-tree .dnd-draggable-preview-item{background-color:rgba(9,136,66,.6);color:#fff;line-height:2.05;overflow:hidden;padding-left:25px;text-overflow:ellipsis;white-space:nowrap;width:75%}.file-tree .disconnected-overlay{background:#495365;cursor:wait;height:100%;left:0;opacity:.5;position:absolute;top:0;width:100%;z-index:10}.modal-new-file{padding:0}.modal-new-file table{table-layout:fixed;width:100%}.modal-new-file table td{vertical-align:top}.modal-new-file .toggle-output-files-button{font-size:80%}.modal-new-file .toggle-file-type-button{font-size:80%;margin-top:-12px}.modal-new-file .toggle-file-type-button .btn{display:inline-block;font-size:inherit;padding:0;vertical-align:baseline}.modal-new-file .toggle-file-type-button .btn:focus-within{outline:none;text-decoration:none}.modal-new-file-list{background-color:#f4f5f6;width:220px}.modal-new-file-list ul li a{color:#495365;display:block;padding:6.25px;text-decoration:none}.modal-new-file-list ul li .btn{color:#495365;padding:6.25px}.modal-new-file-list ul li .btn:hover{text-decoration:none}.modal-new-file-list ul li .btn:focus{background-color:#fff;outline:none;text-decoration:none}.modal-new-file-list ul li.active{background-color:#fff}.modal-new-file-list ul li.active a{color:#3265b2}.modal-new-file-list ul li.active .btn{color:#3265b2;text-decoration:none}.modal-new-file-list ul li:hover{background-color:#fff}.file-tree-error{color:#e7e9ee;padding:20px;text-align:center}.file-tree-modal-alert{margin-top:12.5px}.btn.modal-new-file-mode{text-align:left;width:100%}.modal-new-file-body{padding:20px;padding-top:6.25px}.modal-new-file-body-upload{padding-top:20px}.modal-new-file-body-conflict{background-color:#f9f1f1;border:1px dashed #b83a33;border-radius:3px;color:#1b222c;display:flex;flex-direction:column;justify-content:center;min-height:400px;padding:10px}.modal-footer .approaching-file-limit{font-weight:700}.modal-footer .at-file-limit{text-align:left}.modal-new-file-body-upload .uppy-Root{font-family:inherit}.modal-new-file-body-upload .uppy-Dashboard .uppy-Dashboard-inner{border:none}.modal-new-file-body-upload .uppy-Dashboard .uppy-Dashboard-dropFilesHereHint{bottom:0;left:0;right:0;top:0}.modal-new-file-body-upload .uppy-Dashboard .uppy-Dashboard-AddFiles{border:1px dashed #677283;height:100%;margin:0}.modal-new-file-body-upload .uppy-Dashboard .uppy-Dashboard-AddFiles .uppy-Dashboard-AddFiles-title{font-size:inherit}.modal-new-file-body-upload .uppy-Dashboard .uppy-Dashboard-AddFiles-title{max-width:100%;width:26em}#history .upgrade-prompt{background-color:hsla(0,0%,50%,.4);bottom:0;left:0;position:absolute;right:0;top:0;z-index:100}#history .upgrade-prompt .message{background-color:#fff;border-radius:8px;margin:auto;margin-top:100px;padding:12.5px 25px;width:400px}#history .upgrade-prompt .message-wider{margin-top:60px;padding:0;width:650px}#history .upgrade-prompt .message-header{border-bottom:1px solid #e5e5e5;min-height:16.5625px;padding:15px}#history .upgrade-prompt .message-header h1,#history .upgrade-prompt .message-header h2,#history .upgrade-prompt .message-header h3,#history .upgrade-prompt .message-header h4,#history .upgrade-prompt .message-header h5{font-family:Lato,sans-serif;font-weight:700;margin:0}#history .upgrade-prompt .message-body{padding:20px;position:relative}#history .diff-panel,#history .point-in-time-panel{bottom:0;left:0;margin-right:250px;position:absolute;right:0;top:0}#history .diff{bottom:0;left:0;position:absolute;right:0;top:0}#history .diff .toolbar{height:40px;padding:3px}#history .diff .toolbar .name{color:#fff;display:inline-block;float:left;padding:3px 6.25px}#history .diff .diff-editor,#history .diff .diff-editor-v2{bottom:0;left:0;position:absolute;right:0;top:0}#history .diff .diff-editor{top:40px}#history .diff .diff-deleted{padding:25px}#history .diff .deleted-warning{background-color:#b83a33;color:#fff;margin-right:6.25px;padding:12.5px}#history .diff-binary .alert{margin:12.5px}#history aside.change-list{border-left:1px solid #2f3a4c;height:100%;position:absolute;right:0;width:250px}#history aside.change-list .loading{font-family:Merriweather,serif;margin-top:12.5px;text-align:center}#history aside.change-list ul li.change{position:relative;user-select:none;-ms-user-select:none;-moz-user-select:none;-webkit-user-select:none}#history aside.change-list ul li.change .day{background-color:#fafafa;border-bottom:1px solid #2f3a4c;font-size:14px;font-weight:700;height:24px;line-height:1;padding:4px;text-align:center}#history aside.change-list ul li.change .selectors{bottom:0;left:12.5px;position:absolute;top:0;width:24px}#history aside.change-list ul li.change .selectors input{margin:0}#history aside.change-list ul li.change .selectors .selector-from{bottom:10px;left:0;opacity:.8;position:absolute}#history aside.change-list ul li.change .selectors .selector-to{left:0;opacity:.8;position:absolute;top:10px}#history aside.change-list ul li.change .selectors .range{bottom:0;left:5px;position:absolute;top:0;width:4px}#history aside.change-list ul li.change .description{border-bottom:1px solid #2f3a4c;cursor:pointer;min-height:38px;padding:6.25px;padding-left:38px}#history aside.change-list ul li.change .description:hover{background-color:#f4f5f6}#history aside.change-list ul li.change .users .user{color:#677283;font-size:.8rem;padding-left:16px;position:relative;text-transform:capitalize}#history aside.change-list ul li.change .users .user .color-square{border-radius:3px;bottom:3px;height:12px;left:0;position:absolute;width:12px}#history aside.change-list ul li.change .users .user .name{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:94%}#history aside.change-list ul li.change .time{color:#677283;display:inline-block;float:right;font-size:.8rem;line-height:25px;padding-right:12.5px}#history aside.change-list ul li.change .doc{font-size:.9rem;font-weight:700}#history aside.change-list ul li.change .action{color:#677283;font-size:.7em;margin-bottom:-2px;margin-top:2px;text-transform:uppercase}#history aside.change-list ul li.change .action-edited{margin-top:0}#history aside.change-list ul li.empty-message,#history aside.change-list ul li.loading-changes{cursor:default;padding:6px}#history aside.change-list ul li.empty-message:hover,#history aside.change-list ul li.loading-changes:hover{background-color:inherit}#history aside.change-list ul li.selected{border-left:4px solid #3265b2}#history aside.change-list ul li.selected .day{padding-left:0}#history aside.change-list ul li.selected .description{padding-left:34px}#history aside.change-list ul li.selected .selectors{left:8.5px}#history aside.change-list ul li.selected .selectors .range{background-color:#3265b2}#history aside.change-list ul li.selected-to .selectors .range{top:14px}#history aside.change-list ul li.selected-to .selectors .selector-to{opacity:1}#history aside.change-list ul li.selected-from .selectors .range{bottom:14px}#history aside.change-list ul li.selected-from .selectors .selector-from{opacity:1}#history aside.change-list ul li.first-in-day .selectors .selector-to{top:34px}#history aside.change-list ul li.first-in-day.selected-to .selectors .range{top:38px}#history aside.change-list ul.hover-state li .selectors .range{background-color:transparent;bottom:0;top:0}#history aside.change-list ul.hover-state li.hover-selected .selectors .range{background-color:#afb5c0;top:0}#history aside.change-list ul.hover-state li.hover-selected-to .selectors .range{top:14px}#history aside.change-list ul.hover-state li.hover-selected-to .selectors .selector-to{opacity:1}#history aside.change-list ul.hover-state li.hover-selected-from .selectors .range{bottom:14px}#history aside.change-list ul.hover-state li.hover-selected-from .selectors .selector-from{opacity:1}#history aside.change-list ul.hover-state li.first-in-day.hover-selected-to .selectors .range{top:38px}.diff-deleted{padding-top:15px}.hide-ace-cursor .ace_active-line,.hide-ace-cursor .ace_bracket,.hide-ace-cursor .ace_cursor-layer{display:none}.hide-ace-cursor .ace_gutter-active-line{background-color:transparent}.editor-dark #history aside.change-list{border-color:#222}.editor-dark #history aside.change-list ul li.change .day{background-color:#1a1a1a;border-bottom:1px solid #222}.editor-dark #history aside.change-list ul li.change .description{border-bottom:1px solid #222}.editor-dark #history aside.change-list ul li.change .description:hover{background-color:#000}history-root{display:block;height:100%}.history-popover{top:90px!important}.history-popover .arrow{top:20px!important}.history-react{background-color:#fff;display:flex;height:100%}.history-react .history-header{background-color:#2f3a4c;box-sizing:border-box;color:#fff;display:flex;flex-direction:column;font-size:14px;height:40px;justify-content:center}.history-react .doc-panel{display:flex;flex:1;flex-direction:column}.history-react .doc-panel .toolbar-container{border-bottom:1px solid #2f3a4c;padding:0 8px}.history-react .doc-panel .doc-container{display:flex;flex:1;overflow-y:auto}.history-react .doc-container .loading{margin:10rem auto auto}.history-react .change-list{border-left:1px solid #2f3a4c;box-sizing:content-box;display:flex;flex-direction:column;font-size:14px;width:320px}.history-react .toggle-switch-label{flex:1}.history-react .toggle-switch-label span{display:block}.history-react .history-version-list-container{flex:1;overflow-y:auto}.history-react .history-all-versions-scroller{height:100%;overflow-y:auto}.history-react .history-all-versions-container{position:relative}.history-react .history-versions-bottom{bottom:0;height:8em;position:absolute}.history-react .history-toggle-switch-container,.history-react .history-version-day,.history-react .history-version-details{padding:0 16px}.history-react .history-version-day{background-color:#fff;display:block;line-height:20px;padding-bottom:4px;padding-top:12px;position:sticky;top:0;z-index:1}.history-react .history-version-details{display:flow-root;padding-bottom:8px;padding-top:8px;position:relative}.history-react .history-version-details.history-version-selectable{cursor:pointer}.history-react .history-version-details.history-version-selectable:hover{background-color:#f4f5f6}.history-react .history-version-details.history-version-selected{background-color:#eaf6ef;border-left:3px solid #098842;padding-left:13px}.history-react .history-version-details.history-version-selected.history-version-selectable:hover{background-color:rgba(25,89,54,.16);border-left:3px solid #098842}.history-react .history-version-details.history-version-within-selected{background-color:#f4f5f6;border-left:3px solid #098842}.history-react .history-version-details.history-version-within-selected:hover{background-color:rgba(27,34,44,.08)}.history-react .version-element-within-selected{background-color:#f4f5f6;border-left:3px solid #098842}.history-react .version-element-selected{background-color:#eaf6ef;border-left:3px solid #098842}.history-react .history-version-metadata-time{color:#1b222c;display:block;margin-bottom:4px}.history-react .history-version-metadata-time:last-child{margin-bottom:0}.history-react .history-version-changes,.history-react .history-version-metadata-users{list-style:none;margin:0;padding:0}.history-react .history-version-restore-file{margin-bottom:8px}.history-react .history-version-metadata-users{display:inline}.history-react .history-version-metadata-users>li{align-items:center;display:inline-flex;margin-right:8px}.history-react .history-version-changes>li{margin-bottom:4px}.history-react .history-version-user-badge-color{border-radius:2px;display:inline-block;height:8px;margin-right:4px;width:8px}.history-react .history-version-user-badge-text{flex:1;overflow-wrap:anywhere}.history-react .history-version-change-action,.history-react .history-version-day,.history-react .history-version-metadata-users,.history-react .history-version-origin,.history-react .history-version-saved-by{color:#495365}.history-react .history-version-change-action{overflow-wrap:anywhere}.history-react .history-version-change-doc{color:#1b222c;overflow-wrap:anywhere;white-space:pre-wrap}.history-react .history-version-divider-container{padding:6px 8px}.history-react .history-version-divider{border-color:#e7e9ee;margin:0}.history-react .history-version-badge{height:unset;margin-bottom:4px;margin-right:10px;overflow-wrap:anywhere;white-space:normal}.history-react .history-version-label{margin-bottom:4px}.history-react .history-version-label:last-child{margin-bottom:0}.history-react .loading{font-family:Merriweather,serif}.history-react .history-all-versions-loading{background-color:#f4f5f6;bottom:0;padding:12.5px 0;position:sticky;text-align:center}.history-react .history-version-saved-by-label{margin-right:8px}.history-react .dropdown.open .history-version-dropdown-menu-btn{background-color:rgba(27,34,44,.08);box-shadow:none}.history-react .history-compare-btn,.history-react .history-version-dropdown-menu-btn{-webkit-appearance:none;background:transparent;background-color:transparent;border:0;border-radius:9999px;color:#1b222c;cursor:pointer;font-size:14px;height:30px;line-height:1;padding:0;width:30px}.history-react .history-compare-btn:active,.history-react .history-compare-btn:hover,.history-react .history-version-dropdown-menu-btn:active,.history-react .history-version-dropdown-menu-btn:hover{background-color:rgba(27,34,44,.08);box-shadow:none;z-index:auto}.history-react .history-loading-panel{font-family:Merriweather,serif;padding-top:10rem;text-align:center}.history-react .history-file-entity-operation-badge{background:hsla(0,0%,100%,.25);border-radius:8px;color:#fff;flex:0 0 auto;font-size:.7em;line-height:1;margin-left:.5em;margin-top:2px;padding:2px 4px 3px;text-transform:lowercase}.history-react .history-react-toolbar{align-items:center;display:flex;gap:8px}.history-react .history-react-toolbar .history-react-toolbar-file-info{flex:1;text-align:right}.history-react .history-react-toolbar .history-react-toolbar-time{font-weight:700}.history-react .history-paywall-prompt{padding:16px}.history-react .history-paywall-prompt .history-feature-list{list-style:none;padding-left:8px}.history-react .history-paywall-prompt .history-feature-list li{margin-bottom:16px}.history-react .history-paywall-prompt button{width:100%}.history-react .history-version-faded .history-version-details{mask-image:linear-gradient(#000 35%,transparent);-webkit-mask-image:linear-gradient(#000 35%,transparent);max-height:6em;overflow:hidden}.history-react .history-paywall-heading{-webkit-text-fill-color:transparent;background-clip:text;-webkit-background-clip:text;background-color:#214475;background-image:linear-gradient(246deg,#214475,#254c84 29%,#6597e0 97%);color:#fff;font-family:inherit;font-size:20px;font-weight:700}.history-react .history-content{padding:12.5px}.history-version-label-tooltip{padding:6px;text-align:initial}.history-version-label-tooltip-row{margin-bottom:6.25px}.history-version-label-tooltip-row-comment{overflow-wrap:anywhere}.history-version-label-tooltip-row:last-child{margin-bottom:0}.history-version-dropdown-menu [role=menuitem]{color:#1b222c;padding:10px 12px}.history-version-dropdown-menu [role=menuitem]:focus,.history-version-dropdown-menu [role=menuitem]:hover{background-color:#f4f5f6;color:#1b222c}.history-version-dropdown-menu [role=menuitem] span.material-symbols{font-size:inherit;vertical-align:middle}.document-diff-container{display:flex;flex-direction:column;height:100%;position:relative}.document-diff-container .cm-editor,.document-diff-container .cm-viewer-container{height:100%}.document-diff-container .next-highlight-button,.document-diff-container .previous-highlight-button{box-shadow:0 4px 12px rgba(30,37,48,.12),0 2px 4px rgba(30,37,48,.08);position:absolute;right:16px}.document-diff-container .previous-highlight-button{top:16px}.document-diff-container .next-highlight-button{bottom:16px}.history-dropdown-icon{color:#1b222c}.history-dropdown-icon-inverted{color:#f4f5f6;vertical-align:top}.history-restore-promo-icon{vertical-align:middle}.history-file-tree{display:flex!important;flex-direction:column;flex-grow:1;max-height:100%}.history-file-tree ul.history-file-tree-list{flex-grow:1;height:100%;margin:0;overflow-x:hidden;overflow-y:auto;position:relative}.history-file-tree ul.history-file-tree-list .history-file-tree-item>ul,.history-file-tree ul.history-file-tree-list ul[role=tree]{margin-left:22px}.history-file-tree ul.history-file-tree-list:after{content:"";display:block;min-height:25px}.history-file-tree ul.history-file-tree-list li{line-height:2.05;margin-left:8px;position:relative}.history-file-tree ul.history-file-tree-list li:focus{outline:none}.history-file-tree ul.history-file-tree-list li .history-file-tree-item{align-items:center;color:#fff;cursor:pointer;display:flex;-webkit-user-select:none;-moz-user-select:none;user-select:none;white-space:nowrap}.history-file-tree ul.history-file-tree-list li .history-file-tree-item:focus{outline:none}.history-file-tree ul.history-file-tree-list li .history-file-tree-item:before{background-color:transparent;content:"\00a0";left:-9999px;position:absolute;width:9999px}.history-file-tree ul.history-file-tree-list li .history-file-tree-item:hover{background-color:#2f3a4c}.history-file-tree ul.history-file-tree-list li .history-file-tree-item:hover:before{background-color:#2f3a4c;content:"\00a0";left:-9999px;position:absolute;width:9999px}.history-file-tree ul.history-file-tree-list li .history-file-tree-item .history-file-tree-folder-button,.history-file-tree ul.history-file-tree-list li .history-file-tree-item .history-file-tree-item-button{-webkit-appearance:none;background:transparent;border:0;cursor:pointer;padding:0}.history-file-tree ul.history-file-tree-list li .history-file-tree-item .history-file-tree-folder-button:focus,.history-file-tree ul.history-file-tree-list li .history-file-tree-item .history-file-tree-item-button:focus{outline:none}.history-file-tree ul.history-file-tree-list li .history-file-tree-item .history-file-tree-item-name-wrapper{align-items:center;display:flex;overflow:hidden;width:100%}.history-file-tree ul.history-file-tree-list li .history-file-tree-item .history-file-tree-item-name-wrapper .history-file-tree-item-name{flex-grow:1;font-weight:400;margin-right:5px;overflow:hidden;text-align:left;text-overflow:ellipsis;white-space:pre}.history-file-tree ul.history-file-tree-list li .history-file-tree-item .history-file-tree-item-name-wrapper .history-file-tree-item-name.strikethrough{text-decoration:line-through}.history-file-tree ul.history-file-tree-list li .history-file-tree-item .history-file-tree-item-name-wrapper .history-file-tree-item-badge{flex-shrink:0;font-weight:400;margin-right:10px;text-transform:capitalize}.history-file-tree ul.history-file-tree-list li .history-file-tree-item .history-file-tree-item-name-wrapper .history-file-tree-item-badge:hover{background-color:#e7e9ee}.history-file-tree ul.history-file-tree-list li i.fa{color:#afb5c0;display:inline-flex;flex-shrink:0;font-size:14px}.history-file-tree ul.history-file-tree-list li i.fa.file-tree-icon{margin-left:8px;margin-right:4px}.history-file-tree ul.history-file-tree-list li i.fa.file-tree-folder-icon{margin-right:4px}.history-file-tree ul.history-file-tree-list li i.fa.file-tree-expand-icon{margin-left:8px}.history-file-tree ul.history-file-tree-list li i.fa-folder,.history-file-tree ul.history-file-tree-list li i.fa-folder-open{color:#afb5c0;font-size:14px}.history-file-tree ul.history-file-tree-list li.selected>.history-file-tree-item{background-color:#098842;color:#fff;font-weight:700}.history-file-tree ul.history-file-tree-list li.selected>.history-file-tree-item>button>i.fa,.history-file-tree ul.history-file-tree-list li.selected>.history-file-tree-item>div>i.fa,.history-file-tree ul.history-file-tree-list li.selected>.history-file-tree-item>i.fa{color:#fff}.history-file-tree ul.history-file-tree-list li.selected>.history-file-tree-item:before{background-color:#098842;content:"\00a0";left:-9999px;position:absolute;width:9999px}.history-error{padding:16px}.toolbar{align-items:center;border-bottom:1px solid #2f3a4c;display:flex;height:40px}.toolbar .toolbar-right>a,.toolbar button,.toolbar>a{position:relative}.toolbar .toolbar-right>a .label,.toolbar button .label,.toolbar>a .label{font-size:60%;padding:.15em .6em .2em;pointer-events:none;position:absolute;right:0;top:0}.toolbar .toolbar-left button,.toolbar .toolbar-right button{background:transparent;box-shadow:none}.toolbar .toolbar-right .back-to-editor-btn{align-items:center;background-color:#fff;border-color:#677283;border-width:1px;color:#1b222c;display:flex;margin-right:27px}.toolbar .toolbar-right .back-to-editor-btn:hover{background-color:#e7e9ee}.toolbar .toolbar-right .back-to-editor-btn:focus{color:#1b222c;outline:none}.toolbar .toolbar-right .back-to-editor-btn:active,.toolbar .toolbar-right .back-to-editor-btn:focus-visible{box-shadow:0 0 0 2px #97b6e5;outline:none}.toolbar .toolbar-right .back-to-editor-btn:active,.toolbar .toolbar-right .back-to-editor-btn:focus-visible,.toolbar .toolbar-right .back-to-editor-btn:hover{color:#1b222c}.toolbar .toolbar-right .back-to-editor-btn.disabled,.toolbar .toolbar-right .back-to-editor-btn.disabled.active,.toolbar .toolbar-right .back-to-editor-btn.disabled:active,.toolbar .toolbar-right .back-to-editor-btn.disabled:focus-visible,.toolbar .toolbar-right .back-to-editor-btn.disabled:hover,.toolbar .toolbar-right .back-to-editor-btn[disabled],.toolbar .toolbar-right .back-to-editor-btn[disabled].active,.toolbar .toolbar-right .back-to-editor-btn[disabled]:active,.toolbar .toolbar-right .back-to-editor-btn[disabled]:focus-visible,.toolbar .toolbar-right .back-to-editor-btn[disabled]:hover,fieldset[disabled] .toolbar .toolbar-right .back-to-editor-btn,fieldset[disabled] .toolbar .toolbar-right .back-to-editor-btn.active,fieldset[disabled] .toolbar .toolbar-right .back-to-editor-btn:active,fieldset[disabled] .toolbar .toolbar-right .back-to-editor-btn:focus-visible,fieldset[disabled] .toolbar .toolbar-right .back-to-editor-btn:hover{background-color:#e7e9ee;border-color:#e7e9ee;color:#afb5c0}.toolbar .toolbar-right .back-to-editor-btn[data-ol-loading=true],.toolbar .toolbar-right .back-to-editor-btn[data-ol-loading=true]:hover{background-color:#fff!important;border-color:#677283!important;color:#1b222c!important}.toolbar .toolbar-right .back-to-editor-btn .toolbar-label{margin-bottom:0}.toolbar button:focus,.toolbar>a:focus{outline:none}.toolbar .toolbar-left>a:not(.btn),.toolbar .toolbar-left>button,.toolbar .toolbar-right>a:not(.btn),.toolbar .toolbar-right>button:not(.back-to-editor-btn),.toolbar>a:not(.btn),.toolbar>button{background-color:transparent;border-radius:2px;color:#fff;display:inline-block;height:24px;line-height:1;padding:4px 2px}.toolbar .toolbar-left>a:not(.btn).toolbar-header-back-projects,.toolbar .toolbar-left>button.toolbar-header-back-projects,.toolbar .toolbar-right>a:not(.btn).toolbar-header-back-projects,.toolbar .toolbar-right>button:not(.back-to-editor-btn).toolbar-header-back-projects,.toolbar>a:not(.btn).toolbar-header-back-projects,.toolbar>button.toolbar-header-back-projects{margin-bottom:1px;padding:5px 10px 4px}.toolbar .toolbar-left>a:not(.btn):hover,.toolbar .toolbar-left>button:hover,.toolbar .toolbar-right>a:not(.btn):hover,.toolbar .toolbar-right>button:not(.back-to-editor-btn):hover,.toolbar>a:not(.btn):hover,.toolbar>button:hover{background-color:transparent;color:#fff;text-decoration:none;text-shadow:none}.toolbar .toolbar-left>a:not(.btn).active,.toolbar .toolbar-left>a:not(.btn):active,.toolbar .toolbar-left>button.active,.toolbar .toolbar-left>button:active,.toolbar .toolbar-right>a:not(.btn).active,.toolbar .toolbar-right>a:not(.btn):active,.toolbar .toolbar-right>button:not(.back-to-editor-btn).active,.toolbar .toolbar-right>button:not(.back-to-editor-btn):active,.toolbar>a:not(.btn).active,.toolbar>a:not(.btn):active,.toolbar>button.active,.toolbar>button:active{background-color:#3265b2;box-shadow:none;color:#fff}.toolbar .toolbar-left>a:not(.btn).active .label,.toolbar .toolbar-left>a:not(.btn):active .label,.toolbar .toolbar-left>button.active .label,.toolbar .toolbar-left>button:active .label,.toolbar .toolbar-right>a:not(.btn).active .label,.toolbar .toolbar-right>a:not(.btn):active .label,.toolbar .toolbar-right>button:not(.back-to-editor-btn).active .label,.toolbar .toolbar-right>button:not(.back-to-editor-btn):active .label,.toolbar>a:not(.btn).active .label,.toolbar>a:not(.btn):active .label,.toolbar>button.active .label,.toolbar>button:active .label{display:none}.toolbar .toolbar-left>a:not(.btn).active:hover,.toolbar .toolbar-left>a:not(.btn):active:hover,.toolbar .toolbar-left>button.active:hover,.toolbar .toolbar-left>button:active:hover,.toolbar .toolbar-right>a:not(.btn).active:hover,.toolbar .toolbar-right>a:not(.btn):active:hover,.toolbar .toolbar-right>button:not(.back-to-editor-btn).active:hover,.toolbar .toolbar-right>button:not(.back-to-editor-btn):active:hover,.toolbar>a:not(.btn).active:hover,.toolbar>a:not(.btn):active:hover,.toolbar>button.active:hover,.toolbar>button:active:hover{color:#fff}.toolbar.toolbar-pdf>a:not(.btn){margin-right:3px}.toolbar .btn-full-height{border:none;border-radius:0;border-right:1px solid #2f3a4c;color:#fff;font-size:20px;max-height:39px;padding:3px 10px 5px}.toolbar .btn-full-height:hover{background-color:#2f3a4c;color:#fff;text-shadow:none}.toolbar .btn-full-height.active,.toolbar .btn-full-height:active{background-color:#098842;box-shadow:none;color:#fff}.toolbar .btn-full-height.active .editor-menu-icon,.toolbar .btn-full-height:active .editor-menu-icon{background:url(/images/overleaf-o-white-98904fbb7829929adf9f.svg) 50%/contain no-repeat}.toolbar .btn-full-height .label{right:4px;top:4px}.toolbar .btn-full-height.header-cobranding-logo-container{height:39px;padding:8px 10px}.toolbar .toolbar-left{align-items:center;display:flex;float:left;text-align:center}.toolbar .toolbar-right{align-items:center;display:flex;flex-grow:1;justify-content:flex-end}.toolbar .toolbar-right .btn-full-height{border-left:1px solid #2f3a4c;border-right:0}.toolbar .toolbar-center{display:flex;justify-content:center;overflow:hidden;text-align:center;text-overflow:ellipsis;width:100%}.toolbar.toolbar-header{background-color:#1b222c;box-shadow:none;left:0;position:absolute;right:0;top:0;z-index:1}.toolbar.toolbar-alt{background-color:#2f3a4c}.header-cobranding-logo{display:block;max-height:100%;width:auto}.toolbar-label{display:none;font-size:13px;font-weight:600;margin:0 4px;margin-bottom:2px;text-align:left;vertical-align:middle}@media (min-width:992px){.toolbar-label{display:inline-block}}.toolbar-label.toolbar-label-multiline{line-height:1.1}.toolbar-header-upgrade-prompt{margin-left:10px}@media (max-width:992px){.toolbar-header-upgrade-prompt{display:none}}.editor-dark .toolbar-alt{background-color:#333}.editor-dark .toolbar,.editor-dark .toolbar .btn-full-height{border-color:#222}.editor-dark .toolbar .btn-full-height:hover{background-color:#000;color:#4b7ecc}.editor-dark .toolbar.toolbar-header{box-shadow:none}.editor-dark .toolbar>a:not(.btn){color:#677283}.editor-dark .toolbar>a:not(.btn):hover{color:#afb5c0}.toggle-wrapper{white-space:nowrap}.toggle-switch{align-items:center;background-color:#e7e9ee;border-radius:9999px;display:inline-flex;height:26px;margin-right:5px;padding:2px}.toggle-switch-label{border-radius:9999px;color:#495365;cursor:pointer;display:inline-block;float:left;font-weight:400;height:100%;margin:0;overflow:hidden;text-align:center;transition:color .12s ease-out,background-color .12s ease-out,box-shadow .12s ease-out;-webkit-user-select:none;-moz-user-select:none;user-select:none}.toggle-switch-label span{align-items:center;background-position:0 0;background-size:200% 100%;display:flex;font-size:14px;font-weight:700;height:100%;padding:0 8px;transition:background-position .12s ease-out;width:100%}.toggle-switch-input{opacity:0;pointer-events:none;position:absolute}.toggle-switch-input:disabled+.toggle-switch-label{cursor:not-allowed}.toggle-switch-input:checked+.toggle-switch-label{background-color:#098842;border-radius:9999px;box-shadow:0 2px 4px rgba(30,37,48,.16);color:#fff}.toggle-switch-input:checked+.toggle-switch-label span{background-position:-100% 0}.toggle-switch-input:checked:nth-child(2)+.toggle-switch-label span{background-position:100% 0}.editor-toggle-switch{align-items:center;display:flex;white-space:nowrap}.editor-toggle-switch .toggle-switch{margin-left:5px}.editor-toggle-switch .toggle-switch-label span{background:none;transition:background .12s ease-out}.editor-toggle-switch .toggle-switch-label:first-of-type span{padding-left:8px}.editor-toggle-switch .toggle-switch-label:last-of-type span{border-right:none;padding-right:8px}.editor-toggle-switch .badge{margin-right:5px}.editor-switch-tooltip .tooltip-inner{max-width:325px;padding:10px;text-align:left}.editor-switch-tooltip .tooltip-inner .tooltip-title{font-weight:700;line-height:22px}.formatting-buttons{overflow:hidden;width:100%}.formatting-btn{align-items:center;background-color:#2f3a4c;border:none;border-left:1px solid #495365;border-radius:0;box-shadow:none;color:#fff;display:flex;height:100%;justify-content:center;padding:0}.formatting-btn:hover{color:#fff}.formatting-btn.active{background-color:#098842;box-shadow:none;color:#fff}.formatting-btn.active:focus{color:#fff}.formatting-btn.active:focus:not(:focus-visible){outline:none}.formatting-btn:focus{color:#fff}.formatting-btn-icon{min-width:32px;width:32px}.formatting-btn-icon:last-of-type{border-right:1px solid #495365}.formatting-btn--more{padding-left:9px;padding-right:9px}.formatting-btn--more .caret{margin-top:1px}.formatting-icon{font-style:normal;line-height:1.5}.formatting-icon--small{font-size:small;line-height:1.9}.formatting-icon--serif{font-family:Merriweather,serif}.formatting-more{margin-left:auto}.formatting-menu{background-color:#2f3a4c;max-width:130px;min-width:auto}.formatting-menu-item{float:left}.formatting-menu-item>.formatting-btn{border-right:none}.formatting-menu-item:nth-of-type(4n+1)>.formatting-btn{border-left:none}.toolbar.toolbar-pdf>a[disabled]{box-shadow:none;cursor:not-allowed;filter:alpha(opacity=65);opacity:.65}.toolbar-btn-secondary{height:26px;margin-bottom:.5px;padding-bottom:0}.switch-to-editor-btn{margin-right:7px}.switch-to-editor-btn,.switch-to-pdf-btn{align-items:center;display:flex;text-align:left}.switch-to-editor-btn .toolbar-btn-secondary-icon,.switch-to-pdf-btn .toolbar-btn-secondary-icon{margin-right:5px}#left-menu{background-color:#f4f4f4;bottom:0;font-size:14px;left:-320px;overflow-x:hidden;overflow-y:auto;padding:12.5px;position:absolute;top:0;transition:left .35s ease-in-out;width:320px;z-index:100}#left-menu.shown{left:0}#left-menu h4{border-bottom:1px solid #d0d5dd;color:#495365;font-family:Lato,sans-serif;font-size:1rem;font-weight:400;margin:12.5px 0;padding-bottom:6.25px}#left-menu>h4:first-child{margin-top:0}#left-menu ul.nav .left-menu-button{align-items:center;background-color:inherit;border:none;color:#3265b2;cursor:pointer;display:flex;font-weight:700;padding:6.25px;width:100%}#left-menu ul.nav .left-menu-button i{color:#677283;margin-right:10px}#left-menu ul.nav .left-menu-button:active,#left-menu ul.nav .left-menu-button:hover{background-color:#3265b2;color:#fff}#left-menu ul.nav .left-menu-button:active i,#left-menu ul.nav .left-menu-button:hover i{color:#fff}#left-menu ul.nav a{cursor:pointer;font-weight:700;padding:6.25px}#left-menu ul.nav a:active,#left-menu ul.nav a:focus,#left-menu ul.nav a:hover{background-color:#3265b2;color:#fff}#left-menu ul.nav a:active i,#left-menu ul.nav a:focus i,#left-menu ul.nav a:hover i{color:#fff}#left-menu ul.nav a i{color:#677283}#left-menu ul.nav .link-disabled{color:#afb5c0}#left-menu>ul.nav:last-child{margin-bottom:12.5px}#left-menu ul.nav-downloads li{display:inline-block;text-align:center;width:100px}#left-menu ul.nav-downloads li a{color:#495365}#left-menu ul.nav-downloads li i{margin:6.25px 0}#left-menu form.settings label{color:#495365;flex:1 0 50%;font-weight:400;margin-bottom:0;margin-top:9px;padding-right:5px;white-space:nowrap}#left-menu form.settings button,#left-menu form.settings select{margin:9px 0;width:50%}#left-menu form.settings .form-controls{align-items:baseline;border-bottom:1px solid rgba(0,0,0,.07);clear:both;display:flex;flex-wrap:wrap;justify-content:flex-end;padding:0 9px}#left-menu form.settings .form-controls:first-child{margin-top:-9px}#left-menu form.settings .form-controls:last-child{border-bottom:0}#left-menu form.settings .form-controls:hover{background-color:#3265b2}#left-menu form.settings .form-controls:hover i.fa,#left-menu form.settings .form-controls:hover label{color:#fff}#left-menu form.settings .form-controls:after{clear:both;content:"";display:table}#left-menu .left-menu-setting{align-items:baseline;border-bottom:1px solid rgba(0,0,0,.07);display:flex;flex-wrap:wrap;justify-content:flex-end;margin-bottom:0;padding:0 9px}#left-menu .left-menu-setting:first-child{margin-top:-9px}#left-menu .left-menu-setting:last-child{border-bottom:0}#left-menu .left-menu-setting:hover{background-color:#3265b2}#left-menu .left-menu-setting:hover label{color:#fff}#left-menu .left-menu-setting select.form-control{font-size:inherit;height:23px;padding:1px 5px}#left-menu .left-menu-setting select.form-control:hover{background-color:#e7e9ee}#left-menu-mask{background-color:#999;bottom:0;left:0;opacity:.4;position:absolute;right:0;top:0;transition:opacity .5s;z-index:99}#left-menu-modal{opacity:1;overflow-y:hidden;padding-left:0!important}#left-menu-modal .modal-dialog{height:100%;margin:0;width:320px}#left-menu-modal .modal-content{position:static}#left-menu-modal.modal.fade .modal-dialog{left:-320px;transform:translate(0);transition:left .35s ease-in-out;-webkit-transition:left .35s ease-in-out}#left-menu-modal.modal.in .modal-dialog{left:0;transform:translate(0)}.left-menu-modal-backdrop{background-color:transparent}.pdf .toolbar.toolbar-pdf{background-color:#2f3a4c;height:32px;margin-left:0;padding-right:5px}.pdf .toolbar.toolbar-pdf .auto-compile-status{color:#fff;margin-right:12.5px}.pdf .toolbar.toolbar-pdf .auto-compile-status i{color:#b83a33}.toolbar-pdf-controls,.toolbar-pdf-left,.toolbar-pdf-orphan,.toolbar-pdf-right{align-items:center;align-self:stretch;display:flex}.toolbar-pdf-controls,.toolbar-pdf-orphan{flex:1 1 100%}.toolbar-pdf-controls{justify-content:flex-end;margin-right:4px}.toolbar-pdf-right{flex:1;justify-content:flex-end}.toolbar-pdf-orphan{color:#fff;justify-content:center}.toolbar-pdf-orphan .btn{margin-left:5px}.btn-toggle-logs:active:focus,.btn-toggle-logs:focus{outline:none}.pdf-toolbar-btn{background-color:transparent;border-radius:3px;color:#fff;display:inline-block;height:24px;line-height:1;padding:4px 2px}.pdf-toolbar-btn:active,.pdf-toolbar-btn:focus,.pdf-toolbar-btn:hover{color:#fff}.pdf-toolbar-btn:hover:not(:disabled){background-color:hsla(0,0%,49%,.2)}.pdf-toolbar-btn .label{font-size:60%;padding:.15em .6em .2em;pointer-events:none;position:absolute;right:0;top:0}.pdf-toolbar-btn.log-btn{border:none;margin-right:3px}.pdf-toolbar-btn.log-btn.active{background-color:#3265b2;box-shadow:none;color:#fff;opacity:.65}.pdf-toolbar-btn.log-btn.active:hover:not(:disabled){background-color:transparent;color:#fff}.pdf-toolbar-btn.log-btn:focus{outline:none}.pdf{background-color:#f4f5f6}.pdf-errors,.pdf-logs,.pdf-uncompiled,.pdf-viewer{bottom:0;left:0;position:absolute;right:0;top:0;top:32px}.pdf-errors,.pdf-logs,.pdf-uncompiled,.pdf-validation-problems{padding:12.5px}.pdf-uncompiled .fa{color:#3265b2}.toolbar-text{padding-left:5px}.pdf-viewer iframe{border:none;height:100%;width:100%}.pdf-viewer .pdfjs-viewer{background-color:transparent;bottom:0;left:0;overflow:scroll;position:absolute;right:0;top:0}.pdf-viewer .pdfjs-viewer .canvasWrapper>canvas,.pdf-viewer .pdfjs-viewer div.pdf-canvas{background:#fff;box-shadow:0 0 10px rgba(0,0,0,.5)}.pdf-viewer .pdfjs-viewer div.pdf-canvas.pdfng-empty,.pdf-viewer .pdfjs-viewer div.pdf-canvas.pdfng-loading{background-color:#fff}.pdf-viewer .pdfjs-viewer .page-container{box-sizing:content-box;margin:10px auto;padding:0 10px;-webkit-user-select:none;-moz-user-select:none;user-select:none}.pdf-viewer .pdfjs-viewer .page{border:none;box-shadow:0 0 8px #bbb;box-sizing:content-box;margin-bottom:10px;margin-left:auto;margin-right:auto;margin-top:10px}.pdf-viewer .pdfjs-viewer .pdfjs-viewer-inner{-webkit-font-smoothing:initial;-moz-osx-font-smoothing:initial;height:100%;overflow-y:scroll;position:absolute;width:100%}.pdf-viewer .pdfjs-viewer .pdfjs-viewer-inner .pdfViewer{min-height:100%}.pdf-viewer .pdfjs-viewer:focus-within{outline:none}.pdf-viewer .pdfjs-viewer .textLayer br::-moz-selection{background:transparent}.pdf-viewer .pdfjs-viewer .textLayer br::selection{background:transparent}.pdf-viewer .progress-thin{height:3px;left:0;position:absolute;right:0;top:-2px}.pdf-viewer .progress-thin .progress-bar{background-color:#3265b2;height:100%}.pdfjs-viewer-controls{align-items:center;display:flex;justify-content:flex-end;width:100%}.pdfjs-zoom-controls{border-left:1px solid hsla(0,0%,49%,.3)}.pdfjs-toolbar-buttons{display:flex;gap:8px;margin-left:8px;margin-right:8px}.pdfjs-toolbar-button{align-items:center;display:flex;padding:2px!important}.pdfjs-toolbar-button:hover{color:#fff}.pdfjs-zoom-dropdown-button{font-size:14px;font-weight:400;text-align:right;width:60px}.pdfjs-zoom-dropdown-button .caret{margin-left:4px}.pdfjs-zoom-dropdown-mac-shortcut-char{display:inline-block;text-align:center;width:1em}.pdfjs-custom-zoom-menu-item a:hover{background-color:initial!important;color:initial!important;cursor:auto!important}.pdfjs-custom-zoom-menu-item.disabled a{color:initial!important}.pdfjs-page-number-input{align-items:center;color:#fff;display:flex;font-size:14px;gap:4px;padding:8px 8px 8px 0}.pdfjs-page-number-input input{border:1px solid #677283;border-radius:3px;color:initial;height:24px;text-align:center;width:32px}.pdfjs-viewer-controls-small{align-items:center;display:flex;gap:8px}.pdfjs-toolbar-popover-button{align-items:center;display:flex;padding:2px!important}.pdfjs-toolbar-popover{background-color:#2f3a4c;border-radius:4px}.pdfjs-toolbar-popover .arrow{display:none}.pdfjs-toolbar-popover button{background-color:transparent;color:#fff}.pdfjs-toolbar-popover .popover-content{align-items:center;display:flex;padding:0}.pdf-viewer .pdfjs-viewer.pdfjs-viewer-outer{overflow:hidden}:-webkit-full-screen .pdfjs-viewer-inner{overflow-y:hidden!important}:fullscreen .pdfjs-viewer-inner{overflow-y:hidden!important}.pdf-logs{overflow:auto}.pdf-logs .alert{cursor:pointer;font-size:.9rem;margin-bottom:12.5px}.pdf-logs .alert .line-no{color:#fff;float:right;font-weight:700}.pdf-logs .alert .line-no .fa{opacity:0}.pdf-logs .alert .entry-message{font-weight:700}.pdf-logs .alert .entry-content{font-size:.8rem;white-space:pre-wrap}.pdf-logs .alert:hover .line-no{color:inherit}.pdf-logs .alert:hover .line-no .fa{opacity:1}.pdf-logs .alert.alert-danger{background-color:#c35852}.pdf-logs .alert.alert-danger:hover{background-color:#b83a33}.pdf-logs .alert.alert-warning{background-color:#e39337}.pdf-logs .alert.alert-warning:hover{background-color:#de8014}.pdf-logs .alert.alert-info{background-color:#517cbe}.pdf-logs .alert.alert-info:hover{background-color:#3265b2}.pdf-logs pre{font-size:12px;white-space:pre-wrap}.pdf-logs .dropdown{position:relative}.pdf-logs .force-recompile{margin-top:10px;text-align:right}.synctex-controls{margin-right:-8px;padding:0;position:absolute;top:68px;z-index:6}.synctex-control:not(.detach-synctex-control){align-items:center;background-color:rgba(73,83,101,.8);border-color:transparent;border-radius:12px;color:#fff;display:flex;font-size:1em;height:24px;justify-content:center;margin-bottom:12px;padding:0 0 2px;transition:background .15s ease;width:24px}.synctex-control:not(.detach-synctex-control):focus:not(:focus-visible){outline:none}.synctex-control:not(.detach-synctex-control)[disabled]{background-color:rgba(73,83,101,.6);opacity:1}.synctex-control>.synctex-control-icon{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto}.synctex-control>.synctex-spin-icon{margin-top:2px}.editor-dark .pdf-logs,.editor-dark .pdfjs-viewer{background-color:#4d4d4d}.editor-dark .pdf .toolbar .toolbar-right a i{border-color:#677283}.editor-dark .pdf .toolbar .toolbar-right a:hover i{border-color:#afb5c0}.keyboard-tooltip .tooltip-inner{max-width:none}.keyboard-shortcut{white-space:nowrap}@keyframes expand-feedback-area{0%{max-height:0}to{max-height:500px}}.card-hint{cursor:default;margin-top:10px;padding-bottom:7px}.card-hint-icon-container{background:currentColor;border-radius:50%;float:left;font-size:1.5rem;height:2.5rem;margin-right:10px;text-align:center;width:2.5rem}.card-hint-icon-container .fa{color:#fff}.alert-danger .card-hint-icon-container{color:#b83a33}.alert-warning .card-hint-icon-container{color:#de8014}.alert-info .card-hint-icon-container{color:#495365}.card-hint-feedback-label,.card-hint-text{color:#495365;font-size:.9rem;margin-bottom:20px}.card-hint-text{min-height:35px}.card-hint-feedback-label{font-size:inherit;font-weight:400;margin-bottom:0;margin-right:.5em}.card-hint-ext-link,.card-hint-feedback{display:inline-block;font-size:.8rem}.alert-danger .card-hint-footer a,.alert-danger .card-hint-text a{color:#b83a33}.alert-warning .card-hint-footer a,.alert-warning .card-hint-text a{color:#de8014}.alert-info .card-hint-footer a,.alert-info .card-hint-text a{color:#495365}.card-hint-feedback{color:#495365;float:right}.card-hint-extra-feedback{animation:expand-feedback-area .5s ease-out;color:#495365;font-size:.8rem;margin-top:10px;overflow:hidden;padding-bottom:5px}.card-hint-extra-feedback-label{border-top:1px solid #d0d5dd;margin:5px 0 10px;padding-top:5px}.card-hint-extra-feedback .radio{margin:5px}.card-hint-extra-feedback textarea{font-size:.8rem;margin-bottom:10px;padding:5px}.card-hint-extra-feedback input[type=radio]{margin-top:2px}.card-hint+p{margin-top:20px}.files-dropdown-container{float:right;float:right!important;position:relative}.files-dropdown{display:inline-block}#download-dropdown-list,#dropdown-files-logs-pane-list{overflow-y:auto}#download-dropdown-list .dropdown-header,#dropdown-files-logs-pane-list .dropdown-header{white-space:nowrap}#download-dropdown-list{max-height:calc(100vh - 92px)}#dropdown-files-logs-pane-list{max-height:calc(100vh - 123px)}.btn-secondary-compile-timeout-override{background-color:#fff;border-color:#677283;border-width:1px;color:#1b222c}.error-boundary-alert{background-color:#f4f5f6;height:100%;padding:12.5px;position:absolute;width:100%}.error-boundary-container{align-items:center;display:flex;flex-direction:column;gap:16px;left:50%;position:absolute;top:40%;transform:translate(-50%,-50%)}.error-boundary-container .error-message{align-items:center;color:#1b222c;display:flex;flex-direction:column;gap:4px}.modal-body-share h3{border-bottom:1px solid #d0d5dd;font-size:1rem;margin:0;padding-bottom:6.25px}.modal-body-share .project-member.form-group{margin-bottom:0}.modal-body-share .project-member .form-control-static.text-center{padding-top:0}.modal-body-share .project-member .remove-button{font-size:inherit}.modal-body-share .project-member{font-size:16px;padding:12.5px 0}.modal-body-share .project-member span{padding-right:12.5px}.modal-body-share .project-invite,.modal-body-share .public-access-level{border-bottom:1px solid #d0d5dd;font-size:14px;padding:12.5px 0}.modal-body-share .public-access-level{font-size:13px;margin-top:6.25px;padding-bottom:20px}.modal-body-share .public-access-level .access-token-display-area{margin-top:6.25px}.modal-body-share .public-access-level .access-token-display-area .access-token-wrapper{padding-top:6.25px}.modal-body-share .public-access-level .access-token-display-area .access-token-wrapper .access-token{align-items:center;background-color:#f4f5f6;border:1px solid #d0d5dd;display:flex;justify-content:space-between;margin-top:6.25px;padding:6px 12px 6px 12px}.modal-body-share .public-access-level .fa-chevron-down,.modal-body-share .public-access-level .fa-chevron-up{color:#495365;vertical-align:top}.modal-body-share .public-access-level .btn-chevron{padding:0 12.5px}.modal-body-share .public-access-level.public-access-level-notice{background-color:#f4f5f6;border-bottom:none;margin-top:20px;padding-top:20px}.modal-body-share .project-invite:hover,.modal-body-share .project-member:hover{background-color:#f4f5f6}.modal-body-share .project-member .select-trigger{border:none;color:#495365;padding:0 10px 5px 10px}.modal-body-share .project-member .select-items{max-height:300px;width:300px}.modal-body-share .project-member .select-items li:last-child{color:#b83a33}.modal-body-share .project-member .project-member-email-icon{align-items:center;display:grid;grid-template-columns:2em auto;padding-bottom:5px}.modal-body-share .project-member .project-member-email-icon .fa-warning{color:#de8014}.modal-body-share .project-member .project-member-email-icon .subtitle{font-size:14px}.modal-body-share .project-invite .text-left,.modal-body-share .project-member .text-left{padding-left:25px}.modal-body-share .invite-controls{background-color:#f4f5f6;margin-top:12.5px;padding:12.5px}.modal-body-share .invite-controls .small{margin-bottom:0;padding:2px}.modal-body-share .invite-controls form .form-group{margin-bottom:12.5px}.modal-body-share .invite-controls form .form-group:last-child{margin-bottom:0}.modal-body-share .invite-controls form .privileges{display:inline-block;width:auto}.modal-body-share .invite-controls form .tags-new .privileges{background:transparent;border:none;border-right:5px solid transparent;font-size:14px;height:30px;width:auto}.modal-body-share .invite-controls .add-collaborators-upgrade{align-items:center;display:flex;flex-direction:column;margin-bottom:var(--spacing-08)}.modal-body-share .invite-controls .add-collaborators-upgrade .upgrade-actions{display:flex;gap:20px}.modal-body-share .rbt-menu>.dropdown-item{color:#212529;display:block;overflow:hidden;padding:.25rem 1rem;text-overflow:ellipsis;white-space:nowrap}.modal-body-share .rbt-menu>.dropdown-item:hover{background-color:#f4f5f6;text-decoration:none}.copy-button:focus-within{outline:none}.modal-link-share-new .invite-controls{background-color:transparent;margin-top:0;padding:0}.modal-link-share-new .public-access-level{border:none}.modal-link-share-new .invite-warning{margin-bottom:12.5px}.modal-link-share-new .project-member-select{padding:0}.modal-link-share-new .project-member-select .fa-warning{color:#de8014}.modal-link-share-new .project-member.form-group,.modal-link-share-new .project-member.row{margin:0 -30px}.modal-link-share-new .project-member .select-wrapper{display:inline-block;position:absolute;right:0}.modal-link-share-new .project-member .select-wrapper .select-trigger{gap:4px}.modal-link-share-new .project-member.row{padding-right:1.28571429em}.chat .loading{font-family:Merriweather,serif;padding:12.5px;text-align:center}.chat .first-message,.chat .no-messages{color:#e7e9ee;padding:12.5px}.chat .first-message{bottom:0;position:absolute;width:100%}.chat .chat-error{bottom:0;padding:12.5px;text-align:center}.chat .chat-error,.chat .messages{background-color:#2f3a4c;position:absolute;top:0}.chat .messages{bottom:80px;left:0;overflow-x:hidden;right:0}.chat .messages li.message{margin:12.5px}.chat .messages li.message .date{color:#afb5c0;font-size:12px;margin-bottom:12.5px;text-align:right}.chat .messages li.message .message-wrapper .name{color:#fff;font-size:12px;margin-bottom:4px;min-height:16px}.chat .messages li.message .message-wrapper .message{border-left:3px solid transparent;border-radius:5px;box-shadow:none;font-size:14px;position:relative}.chat .messages li.message .message-wrapper .message .message-content{color:#fff;font-weight:700;overflow-x:auto;padding:5px 10px}.chat .messages li.message .message-wrapper .message .arrow{border:solid;border-bottom-color:transparent!important;border-top-color:transparent!important;border-width:10px;content:" ";height:0;pointer-events:none;position:absolute;right:90%;top:-15px;transform:rotate(90deg);width:0}.chat .messages li.message .message-wrapper p{margin-bottom:6.25px}.chat .messages li.message .message-wrapper p:last-child{margin-bottom:0}.chat .messages li.message:not(.self) .message .arrow{border-left-color:transparent!important}.chat .messages li.message.self{margin-top:25px}.chat .messages li.message.self .message-wrapper .message{border-left:none;border-right:3px solid transparent}.chat .messages li.message.self .message-wrapper .message .arrow{border-right-color:transparent!important;left:100%;right:auto}.chat .new-message{background-color:#495365;border-top:1px solid #2f3a4c;bottom:0;height:80px;left:0;padding:6.25px;position:absolute;right:0;top:0;top:auto}.chat .new-message textarea{background-color:#e7e9ee;border:1px solid #2f3a4c;border-radius:3px;color:#1b222c;font-size:14px;height:100%;overflow:auto;padding:6.25px;resize:none;width:100%}.binary-file,.file-view{background-color:#f4f5f6;overflow:auto;padding:12.5px;text-align:center}.binary-file .file-view-buttons,.file-view .file-view-buttons{display:flex;flex-wrap:wrap;gap:6px;justify-content:center}.binary-file .file-view-error,.file-view .file-view-error{margin:24px -15px auto}.binary-file .file-view-error>.alert,.file-view .file-view-error>.alert{margin:0 auto;max-width:400px}.binary-file .tpr-refresh-error .btn,.file-view .tpr-refresh-error .btn{background-color:#fff;color:#1b222c}.binary-file .tpr-refresh-error .btn:hover,.file-view .tpr-refresh-error .btn:hover{background-color:#e7e9ee}.binary-file .file-view-pdf,.binary-file img,.file-view .file-view-pdf,.file-view img{background-color:#fff;border:1px solid #677283;box-shadow:0 2px 3px #677283;display:block;margin:auto;margin-top:12.5px;max-height:90%;max-width:100%}.binary-file .file-view-pdf,.file-view .file-view-pdf{align-items:center;display:flex;flex-direction:column;overflow:auto;width:-moz-max-content;width:max-content}.binary-file .file-view-pdf .pdf-page:not(:last-of-type),.file-view .file-view-pdf .pdf-page:not(:last-of-type){border-bottom:1px solid #677283}.binary-file .text-loading,.binary-file p.no-preview,.file-view .text-loading,.file-view p.no-preview{color:#677283;font-size:24px;margin-top:12.5px}.binary-file .text-preview,.file-view .text-preview{margin-top:12.5px}.binary-file .text-preview .scroll-container,.file-view .text-preview .scroll-container{background-color:#fff;border:1px solid #d0d5dd;font-family:monospace;font-size:.8em;line-height:1.1em;overflow:auto;padding:8px 12px;text-align:left;white-space:pre}.binary-file .linked-file-icon,.file-view .linked-file-icon{color:#3265b2}.ace_search{background-color:#f4f5f6;border:1px solid #2f3a4c;border-top:0 none;font-family:Lato,sans-serif;overflow:hidden;padding:6.25px;position:absolute;top:0;white-space:normal;width:350px;z-index:99}.ace_search a i,.ace_search button i{pointer-events:none}.ace_search .ace_searchbtn_close{color:#677283;position:absolute;right:12px;top:6px}.ace_search .ace_searchbtn_close:hover{color:#495365}.ace_search .ace_replace_form,.ace_search .ace_search_form{margin-bottom:6.25px}.ace_search .ace_replace_form input,.ace_search .ace_search_form input{display:inline-block;vertical-align:middle;width:210px}.ace_search .ace_replace_form .btn-group,.ace_search .ace_search_form .btn-group{display:inline-block}.ace_search .ace_nomatch input{border-color:#b83a33}.ace_search .ace_search_options{display:flex;justify-content:space-between}.ace_search .ace_search_counter{color:#495365;margin:auto 0}.ace_search.left{border-left:0 none;border-radius:0 0 3px 0;left:0}.ace_search.right{border-radius:0 0 0 3px;border-right:0 none;right:0}.publishedDetails{color:#677283}.online-users{display:flex}.online-users .online-user{border-radius:3px;color:#fff;cursor:pointer;display:inline-block;height:24px;margin-right:8px;text-align:center;text-transform:uppercase;width:24px}.online-users .online-user-multi{align-items:center;-webkit-appearance:none;background:transparent;border:0;color:#fff;cursor:pointer;display:flex;min-width:24px;padding:0;padding-left:8px;padding-right:5px;width:auto}.online-users .dropdown-menu{margin-right:8px}.online-users .dropdown-menu a{color:#495365;display:block;margin:1px 2px;padding:4px 10px 5px}.online-users .dropdown-menu a:active,.online-users .dropdown-menu a:hover{background-color:#f4f5f6;box-shadow:none;color:#495365!important;text-shadow:none}.ol-cm-math-tooltip{border-radius:4px;display:flex;gap:8px;max-height:400px;max-width:800px;overflow:auto;padding:8px}.hotkeys-modal{font-size:14px}.hotkeys-modal h3:first-child{margin-top:0}.hotkeys-modal .hotkey{margin-bottom:12.5px}.hotkeys-modal .description{display:inline-block}.hotkeys-modal .combination{background-color:#495365;border-radius:3px;color:#fff;font-family:Lato,sans-serif;font-weight:600;margin-right:6.25px;padding:4px 8px}.hotkeys-modal .hotkeys-modal-bottom-text{background-color:#f4f5f6;border-radius:5px;padding:10px}.rp-size-expanded .loading-panel{right:230px}.review-panel-toolbar{background-color:#fafafa;border-bottom:1px solid #d9d9d9;display:none;flex-basis:32px;flex-shrink:0;position:relative;text-align:center;z-index:3}.rp-size-expanded .review-panel-toolbar{align-items:center;display:flex;justify-content:space-between;padding:0 5px}.review-panel-toolbar-label{cursor:pointer;flex-grow:1;text-align:right}.review-panel-toolbar-icon-on{color:#098842;margin-right:5px}.review-panel-toolbar-label-disabled{cursor:auto;margin-right:5px}.review-panel-toolbar-spinner{margin-left:5px}.rp-tc-state{background-color:#fafafa;border-bottom:1px solid #d9d9d9;left:0;list-style:none;margin:0;overflow:hidden;padding:0 5px;position:absolute;right:0;text-align:left;top:100%}.rp-tc-state-collapse{display:inline-flex;margin-left:5px;transform:rotate(0deg);transition:transform .15s ease}.rp-tc-state-collapse-on{transform:rotate(-90deg)}.rp-tc-state-item{align-items:center;display:flex;padding:3px 0}.rp-tc-state-item:last-of-type{padding-bottom:5px}.rp-tc-state-item-everyone,.rp-tc-state-separator{border-bottom:1px solid #d9d9d9}.rp-tc-state-item-name{flex-grow:1;font-weight:600;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.rp-tc-state-item-name-disabled{opacity:.35}.rp-entry-list{display:none;width:100%}.rp-size-expanded .rp-entry-list,.rp-size-mini .rp-entry-list{display:block}.rp-state-overview .rp-entry-list{flex-grow:2;overflow-y:auto}.rp-entry-list-inner{position:relative}.rp-entry-indicator{background-color:#8a96b5;border-radius:3px;color:#fff;cursor:pointer;display:none;left:2px;position:absolute;right:2px;text-align:center;transition:top .3s,left .1s,right .1s;z-index:2}.rp-size-mini .rp-entry-indicator{display:block}.rp-floating-entry .rp-entry-indicator{display:block;position:static;width:18px}.rp-size-mini .rp-entry-indicator-add-comment{display:none}.no-animate .rp-entry-indicator{transition:left .1s,right .1s}.rp-entry-indicator-focused{left:0;right:4px;z-index:1}.rp-entry-wrapper:hover .rp-entry-aggregate,.rp-entry-wrapper:hover .rp-entry-comment,.rp-entry-wrapper:hover .rp-entry-delete,.rp-entry-wrapper:hover .rp-entry-insert{display:block}.rp-entry-wrapper.rp-entry-hidden{display:none}.rp-entry{background-color:#fff;border-left:4px solid transparent;border-radius:3px;transition:top .3s,left .1s,right .1s}.rp-state-current-file .rp-entry{position:absolute;width:230px}.rp-floating-entry .rp-entry,.rp-state-current-file-mini .rp-entry{box-shadow:0 0 10px 5px rgba(0,0,0,.2);left:28px;z-index:1}.rp-floating-entry .rp-entry:before,.rp-state-current-file-mini .rp-entry:before{bottom:-28px;content:"";left:-14px;position:absolute;right:-28px;top:-28px;z-index:-1}.rp-floating-entry .rp-entry:after,.rp-state-current-file-mini .rp-entry:after{border-color:transparent;border-bottom-color:transparent;border-right-color:inherit;border-style:solid;border-top-color:transparent;border-width:4.5px 6px 4.5px 0;content:"";height:0;left:-10px;position:absolute;top:5px;width:0}.rp-state-current-file-mini .rp-entry{display:none}.rp-floating-entry .rp-entry{left:28px;position:absolute;top:0;width:230px}.rp-floating-entry-layout-left .rp-entry,.rp-state-current-file-mini.rp-layout-left .rp-entry{border-left-width:0;border-right-style:solid;border-right-width:4px}.rp-floating-entry-layout-left .rp-entry:before,.rp-state-current-file-mini.rp-layout-left .rp-entry:before{left:-28px}.rp-floating-entry-layout-left .rp-entry:after,.rp-state-current-file-mini.rp-layout-left .rp-entry:after{border-color:transparent;border-bottom-color:transparent;border-left-color:inherit;border-style:solid;border-top-color:transparent;border-width:4.5px 0 4.5px 6px;height:0;left:auto;position:absolute;right:-10px;width:0}.rp-state-current-file-mini.rp-layout-left .rp-entry{left:auto;right:28px}.rp-state-current-file-mini.rp-layout-left .rp-entry:before{right:-14px}.rp-floating-entry-layout-left .rp-entry{left:-238px}.rp-floating-entry-layout-left .rp-entry:before{right:-12px}.rp-state-current-file-expanded .rp-entry{left:5px;right:5px;visibility:hidden;width:auto}.rp-state-current-file-expanded .rp-entry-focused{left:-2px;right:12px;z-index:1}.rp-state-current-file-expanded .rp-entry-add-comment{right:auto}.rp-state-current-file-expanded .rp-entry-add-comment.rp-entry-adding-comment{right:5px}.rp-state-current-file-expanded .rp-entry-bulk-actions{right:auto}.rp-state-overview .rp-entry{border-bottom:1px solid #d9d9d9;border-radius:0;cursor:pointer}.resolved-comments-dropdown .rp-entry{margin-bottom:5px;position:static}.no-animate .rp-entry{transition:left .1s,right .1s}.rp-entry-aggregate,.rp-entry-insert{border-color:#2c8e30}.rp-entry-delete{border-color:#c5060b}.rp-entry-comment{border-color:#f3b111}.rp-entry-comment-resolving{left:6px;opacity:0;top:4px;transform:scale(.1);transform-origin:0 0;transition:top .35s ease-out,left .35s ease-out,transform .35s ease-out,opacity .35s ease-out .2s;z-index:3}.rp-entry-comment-resolved{background-color:#efefef;border-color:#aaa}.rp-entry-add-comment{background-color:transparent;border-left-width:0;right:auto}.rp-entry-add-comment.rp-entry-adding-comment{background-color:#fff;border-left-color:#f3b111;border-left-width:3px;right:5px}.rp-entry-bulk-actions{background-color:transparent;border-left-width:0;right:auto}.rp-entry-body{align-items:center;display:flex;padding:4px 5px}.rp-entry-action-icon{font-size:18px;line-height:0;padding:0 3px}.rp-state-overview .rp-entry-action-icon{display:none}.rp-entry-details{flex:1 0 1px;line-height:1.4;margin-left:5px;overflow-x:auto}.rp-state-overview .rp-entry-details{margin-left:0}.rp-entry-metadata{font-size:10px}.rp-entry-metadata-element{display:inline-block}.rp-entry-user{font-style:normal;font-weight:600}.rp-comment-actions a{color:#6b7797}.rp-content-highlight{color:#3f3f3f;font-weight:600;text-decoration:none}del.rp-content-highlight{text-decoration:line-through}.rp-entry-actions{display:flex}.rp-state-overview .rp-entry-list .rp-entry-actions{display:none}.rp-entry-button{background-color:#8a96b5;border:0;border-right:1px solid #fff;color:#fff;display:block;flex:1 1 50%;line-height:1.3;padding:2px 0;text-align:center;-webkit-user-select:none;-moz-user-select:none;user-select:none}.rp-entry-button:focus,.rp-entry-button:hover{background-color:#7a88ab;color:#fff;outline:0;text-decoration:none}.rp-entry-button[disabled],.rp-entry-button[disabled]:focus,.rp-entry-button[disabled]:hover{background-color:#c5cbda}.rp-entry-button:last-child{border-bottom-right-radius:3px;border-right-width:0}.rp-floating-entry-layout-left .rp-entry-button:first-child,.rp-state-current-file-mini.rp-layout-left .rp-entry-button:first-child{border-bottom-left-radius:3px}.rp-floating-entry-layout-left .rp-entry-button:last-child,.rp-state-current-file-mini.rp-layout-left .rp-entry-button:last-child{border-bottom-right-radius:0}.rp-comment{border-bottom:1px solid #d9d9d9;line-height:1.4;margin:2px 5px;padding-bottom:3px}.rp-comment:last-child{border-bottom-width:0;margin-bottom:2px}.rp-state-overview .rp-entry-list .rp-comment{margin:4px 5px}.rp-state-overview .rp-entry-list .rp-comment:first-child{margin-top:0;padding-top:4px}.rp-comment-content{color:#3f3f3f;margin:0;overflow-x:auto;white-space:pre-wrap}.rp-comment-resolver{color:#6b7797}.rp-comment-resolver-content{font-style:italic;margin:0}.rp-comment-reply{padding:0 5px}.rp-add-comment-btn,.rp-bulk-actions-btn{background-color:#8a96b5;border:0;border-radius:3px;color:#fff;display:block;display:inline-block;line-height:1.3;padding:5px 10px;text-align:center;-webkit-user-select:none;-moz-user-select:none;user-select:none}.rp-add-comment-btn:focus,.rp-add-comment-btn:hover,.rp-bulk-actions-btn:focus,.rp-bulk-actions-btn:hover{background-color:#7a88ab;color:#fff;outline:0;text-decoration:none}.rp-add-comment-btn[disabled],.rp-add-comment-btn[disabled]:focus,.rp-add-comment-btn[disabled]:hover,.rp-bulk-actions-btn[disabled],.rp-bulk-actions-btn[disabled]:focus,.rp-bulk-actions-btn[disabled]:hover{background-color:#c5cbda}.rp-in-editor-widgets .rp-add-comment-btn,.rp-in-editor-widgets .rp-bulk-actions-btn{border-radius:0;display:block;white-space:nowrap}.rp-in-editor-widgets .rp-add-comment-btn:last-child,.rp-in-editor-widgets .rp-bulk-actions-btn:last-child{border-bottom-left-radius:3px}.rp-bulk-actions-btn{border-radius:0}.rp-bulk-actions-btn:first-child{border-bottom-left-radius:3px;border-top-left-radius:3px}.rp-bulk-actions-btn:last-child{border-bottom-right-radius:3px;border-top-right-radius:3px;margin-left:1px}.rp-new-comment{padding:5px}.rp-comment-input{background-color:#fff;border:1px solid #d9d9d9;border-radius:3px;color:#3f3f3f;font-size:12px;margin-top:3px;max-height:400px;min-height:3em;overflow-x:hidden;padding:2px 5px;resize:vertical;width:100%}.rp-icon-delete{display:inline-block;font-size:.8em;font-style:normal;font-weight:600;line-height:1;text-decoration:line-through}.rp-icon-delete:before{content:"Ab"}.rp-resolved-comment{background-color:#fff;border-left:4px solid #f3b111;border-radius:3px;margin-bottom:5px}.rp-resolved-comment-context{background-color:#fce9bb;padding:4px 5px}.rp-resolved-comment-context-file{font-weight:600}.rp-resolved-comment-context-quote{color:#000;font-family:Menlo,Monaco,Consolas,Courier New,monospace;margin:0}.rp-entry-callout{transition:top .3s,height .3s}.rp-state-current-file .rp-entry-callout{border-right:1px dashed grey;border-top:1px solid grey;position:absolute}.rp-state-current-file .rp-entry-callout:after{border-bottom:1px solid grey;bottom:0;content:"";left:3px;position:absolute;top:-1px}.rp-state-current-file-expanded .rp-entry-callout,.rp-state-current-file-expanded .rp-entry-callout:after{width:3px}.rp-state-current-file-mini .rp-entry-callout,.rp-state-current-file-mini .rp-entry-callout:after{width:1px}.rp-state-overview .rp-entry-callout{display:none}.rp-state-current-file .rp-entry-callout-inverted{border-bottom:1px solid grey;border-top:none}.rp-state-current-file .rp-entry-callout-inverted:after{border-bottom:none;border-top:1px solid grey;bottom:-1px;top:0}.rp-state-current-file .rp-entry-callout-insert,.rp-state-current-file .rp-entry-callout-insert:after{border-color:#2c8e30}.rp-state-current-file .rp-entry-callout-delete,.rp-state-current-file .rp-entry-callout-delete:after{border-color:#c5060b}.rp-state-current-file .rp-entry-callout-comment,.rp-state-current-file .rp-entry-callout-comment:after{border-color:#f3b111}.rp-size-mini .rp-entry-callout-add-comment{display:none}.rp-overview-file-header{background-color:#fafafa;border-bottom:1px solid #d9d9d9;border-top:1px solid #d9d9d9;cursor:pointer;font-weight:600;margin-top:10px;padding:2px 5px;text-align:center}.rp-overview-file-num-entries{font-size:.9em;font-weight:400}.rp-overview-file-header-collapse{display:inline-flex;float:left;transform:rotate(0deg);transition:transform .15s ease}.rp-overview-file-header-collapse-on{transform:rotate(-90deg)}.rp-overview-file-entries{overflow:hidden}.rp-comment-wrapper{transition:opacity .35s ease-out .2s}.rp-comment-wrapper-resolving{opacity:0}.rp-loading{padding:5px;text-align:center}.rp-nav{background-color:#fafafa;border-top:1px solid #d9d9d9;display:none;flex-shrink:0;font-size:18px;text-align:center;width:100%;z-index:2}.rp-size-expanded .rp-nav{display:flex}.rp-state-current-file .rp-nav{bottom:0;position:absolute}.rp-nav-item{background:none;border-bottom:0;border-left:0;border-right:0;border-top:3px solid transparent;color:#b6bccc;display:block;flex:0 0 50%;padding-bottom:2px}.rp-nav-item:focus,.rp-nav-item:hover{color:#6b7797;text-decoration:none}.rp-nav-item-active{border-top:3px solid #8a96b5;color:#6b7797}.rp-nav-label{display:block;font-size:12px}.rp-size-mini #editor{right:22px}.rp-size-expanded #editor{left:0;right:230px;width:auto}.review-icon{background:url(/images/review-icon-dark-theme-27d5e621aa11e8b728a1.svg) top/30px no-repeat;display:inline-block;width:30px}.review-icon:before{content:"\00a0"}.resolved-comments-toggle{background-color:#f4f5f6;border:1px solid #d9d9d9;border-radius:3px;color:#b6bccc;display:block;font-size:14px;height:22px;line-height:1.4;padding:0 4px;width:22px}.resolved-comments-toggle:focus,.resolved-comments-toggle:hover{color:#6b7797;text-decoration:none}.resolved-comments-backdrop{bottom:0;display:none;left:0;position:fixed;right:0;top:0}.resolved-comments-backdrop-visible{display:block}.resolved-comments-dropdown{align-items:stretch;background-color:#dadfed;border-radius:3px;box-shadow:0 0 20px 10px rgba(0,0,0,.3);display:none;justify-content:center;left:-150px;margin-left:1em;margin-top:9px;max-height:calc(100vh - 100px);position:absolute;text-align:left;width:300px;z-index:1}.resolved-comments-dropdown:before{border-color:transparent;border-bottom-color:#dadfed;border-left-color:transparent;border-right-color:transparent;border-style:solid;border-width:0 9px 9px 9px;content:"";height:0;left:50%;margin-left:-4.5px;position:absolute;top:-8px;width:0}.resolved-comments-dropdown-open{display:flex}.resolved-comments-scroller{flex:0 0 auto;max-height:calc(100vh - 100px);overflow-y:auto;padding:5px;width:100%}.rp-collapse-toggle{color:#6b7797;font-weight:600}.rp-collapse-toggle:focus,.rp-collapse-toggle:hover{color:#606b89;text-decoration:none}.rp-track-changes-indicator{background-color:hsla(0,0%,94%,.9);border-bottom-left-radius:3px;color:#6b7797;display:block;padding:5px 10px;text-align:center;white-space:nowrap}.rp-track-changes-indicator.rp-track-changes-indicator-on-dark{background-color:rgba(88,88,88,.8);color:#fff}.rp-track-changes-indicator.rp-track-changes-indicator-on-dark:focus,.rp-track-changes-indicator.rp-track-changes-indicator-on-dark:hover{background-color:#585858;color:#fff}.rp-track-changes-indicator:focus,.rp-track-changes-indicator:hover{background-color:#f0f0f0;color:#6b7797;outline:0;text-decoration:none}.review-panel-toggler{background-color:transparent;border:0;bottom:0;color:#8a96b5;display:none;flex-direction:column;opacity:.5;padding:0;position:absolute;top:0;transition:background .1s;width:10px;z-index:1}.rp-size-expanded .review-panel-toggler,.rp-size-mini .review-panel-toggler{display:flex}.rp-size-expanded .review-panel-toggler:after{content:"\f105"}.review-panel-toggler:focus,.review-panel-toggler:hover{background-color:#fff;color:#8a96b5}.review-panel-toggler:after{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;bottom:50%;content:"\f104";display:block;font-family:FontAwesome;font-size:16px;line-height:1;margin-top:-.5em;position:sticky;text-align:center;top:50%;width:100%}.review-panel{background-color:#dadfed;border-left:0 solid #d9d9d9;box-sizing:content-box;color:#6b7797;flex-shrink:0;font-family:Lato,sans-serif;font-size:12px;line-height:1.5625;position:relative;z-index:6}.rp-size-expanded .review-panel{border-left-width:1px;display:flex;flex-direction:column;overflow:visible;width:230px}.rp-size-mini .review-panel{border-left-width:1px;width:22px;z-index:6}.review-panel .review-panel-toolbar-collapse-button{background:none;border:none;padding:0}.review-panel.rp-current-file-container{display:none}.rp-size-expanded .review-panel.rp-current-file-container,.rp-size-mini .review-panel.rp-current-file-container{display:block}.review-panel.rp-current-file-container .review-panel-toolbar{position:sticky;top:0}.review-panel.rp-current-file-container .rp-nav{bottom:0;position:sticky}.review-panel .rp-entry-list-react{overflow:hidden;position:relative}.rp-size-mini .review-panel .rp-entry-list-react{overflow:visible}.rp-state-current-file .review-panel .review-panel-tools{bottom:0;display:flex;flex-direction:column;justify-content:space-between;left:0;position:absolute;right:0;top:0}.rp-state-overview .review-panel{display:flex;flex-direction:column;height:100%;position:sticky;top:0}.rp-floating-entry{color:#6b7797;font-size:12px;position:absolute}.review-panel .rp-entry-metadata button,.rp-floating-entry .rp-entry-metadata button{background-color:transparent;border:0;color:#3265b2;padding:0}.review-panel .rp-entry-metadata button:focus,.review-panel .rp-entry-metadata button:hover,.rp-floating-entry .rp-entry-metadata button:focus,.rp-floating-entry .rp-entry-metadata button:hover{text-decoration:underline}.rp-in-editor-widgets{font-family:Lato,sans-serif;font-size:11px;position:sticky;right:0;top:0;z-index:2}.rp-in-editor-widgets .rp-in-editor-widgets-inner{display:flex;flex-direction:column;position:absolute;right:0;top:0}.rp-in-editor-widgets .rp-track-changes-indicator{border:0}.review-panel-indicator{display:none}.review-panel-mini{overflow:visible!important;width:22px!important}.review-panel-mini .rp-entry{height:12px}.review-panel-mini .rp-entry-indicator{display:flex;height:20px;left:-6px;position:absolute;right:0;width:20px}.review-panel-mini .rp-entry-content{background:#fff;border:1px solid #d9d9d9;display:none;width:200px}.review-panel-mini .rp-entry:hover .rp-entry-content{display:initial;left:-206px;position:absolute;top:0}.review-panel-new.review-panel-container{flex-shrink:0;height:100%;position:relative}.review-panel-new .review-panel-inner{background-color:#f4f5f6;border-left:0 solid #e7e9ee;box-sizing:content-box;color:#1b222c;flex-shrink:0;font-family:Lato,sans-serif;font-size:.75rem;line-height:1.5625;min-height:var(--review-panel-height);width:var(--review-panel-width);z-index:6}.review-panel-new .review-panel-entry{background-color:#fff;border:1px solid #e7e9ee;border-radius:4px;margin-left:4px;padding:8px;width:calc(100% - 8px);z-index:1}.review-panel-new .review-panel-entry.review-panel-entry-disabled{opacity:.5;pointer-events:none}.review-panel-new .review-panel-entry-indicator{display:none}.review-panel-new .review-panel-entry-content{display:flex;flex-direction:column;font-size:.75rem;gap:8px}.review-panel-new .review-panel-entry-focused,.review-panel-new .review-panel-entry-highlighted{border:1px solid #3265b2;margin-left:2px}.review-panel-new .review-panel-entry-header{display:flex;justify-content:space-between}.review-panel-new .review-panel-entry-header .review-panel-entry-user{color:#3265b2;font-size:110%}.review-panel-new .review-panel-entry-header .review-panel-entry-time{color:#495365}.review-panel-new .review-panel-entry-header .review-panel-entry-actions{align-items:center;display:flex;gap:6px}.review-panel-new .review-panel-entry-header .review-panel-entry-actions .btn{background-color:transparent;height:24px;padding:0;width:24px}.review-panel-new .review-panel-entry-header .review-panel-entry-actions .btn:focus,.review-panel-new .review-panel-entry-header .review-panel-entry-actions .btn:hover{background-color:#e7e9ee;color:#1b222c}.review-panel-new .review-panel-entry-header .review-panel-entry-actions .review-panel-entry-actions-icon{font-size:20px;padding:2px}.review-panel-new .review-panel-change-body{align-items:flex-start;color:#495365;display:flex;gap:4px;overflow-wrap:anywhere}.review-panel-new .review-panel-content-highlight{color:#1b222c;text-decoration:none}.review-panel-new del.review-panel-content-highlight{text-decoration:line-through}.review-panel-new .review-panel-entry-icon{border-radius:4px;font-size:16px;padding:4px}.review-panel-new .review-panel-entry-change-icon{margin-top:-2px}.review-panel-new .review-panel-entry-icon-accept{background-color:#eaf6ef;color:#098842}.review-panel-new .review-panel-entry-icon-reject{background-color:#f9f1f1;color:#b83a33}.review-panel-new .review-panel-entry-icon-changed{background-color:#e7e9ee;color:#495365}.review-panel-new .review-panel-header{background-color:#fff;border-bottom:1px solid #d9d9d9;display:flex;flex-direction:column;height:69px;justify-content:center;position:fixed;text-align:center;top:var(--review-panel-top);width:var(--review-panel-width);z-index:2;z-index:4}.review-panel-new .rp-tc-state{background-color:#fff;max-height:calc(100vh - var(--review-panel-top) - 69px);overflow-y:auto}.review-panel-new .review-panel-tools{align-items:center;display:flex;flex-basis:32px;flex-shrink:0;justify-content:space-between;padding-left:4px;padding-right:12px}.review-panel-new .resolved-comments-toggle{align-items:center;display:flex;justify-content:center}.review-panel-new .track-changes-indicator-circle{background-color:#098842;border-radius:100%;height:8px;width:8px}.review-panel-new .track-changes-menu-button{align-items:center;background:none;border:none;display:flex;font-size:14px;gap:4px;padding:0}.review-panel-new .track-changes-menu-button i{width:8px}.review-panel-new .review-panel-heading{align-items:center;display:flex;justify-content:space-between;padding:6px 4px}.review-panel-new .review-panel-heading .review-panel-label{font-family:Lato,sans-serif;font-size:14px;font-weight:700;margin:0}.review-panel-new .review-panel-heading .review-panel-split-test-badge{margin-left:4px}.review-panel-new .review-panel-heading .review-panel-close-button{align-items:center;background-color:transparent;border:none;color:#1b222c;display:flex;padding:2px}.review-panel-new .review-panel-heading .review-panel-close-button:focus,.review-panel-new .review-panel-heading .review-panel-close-button:hover{background-color:#e7e9ee}.review-panel-new.review-panel-resolved-comments{width:280px}.review-panel-new.review-panel-resolved-comments .popover-content{background-color:#f4f5f6;display:flex;flex-direction:column;gap:4px;max-height:calc(100vh - 180px);overflow-y:auto;padding:8px 6px}.review-panel-new .review-panel-resolved-disabled{opacity:.5;pointer-events:none}.review-panel-new .review-panel-resolved-comments-empty,.review-panel-new .review-panel-resolved-comments-loading{text-align:center}.review-panel-new .review-panel-resolved-comments-header{align-items:center;display:flex;justify-content:space-between;padding:4px 0}.review-panel-new .review-panel-resolved-comments-label{font-size:14px;font-weight:700}.review-panel-new .review-panel-resolved-comments-count{background-color:#e7e9ee;border-radius:4px;padding:2px}.review-panel-new .review-panel-resolved-comment{background-color:#fff;border-radius:4px;display:flex;flex-direction:column;gap:8px;padding:8px}.review-panel-new .review-panel-resolved-comment-header{align-items:center;color:#495365;display:flex;font-size:12px;justify-content:space-between}.review-panel-new .review-panel-resolved-comment-filename{color:#1b222c}.review-panel-new .review-panel-resolved-comment-buttons{align-items:center;display:flex;gap:6px}.review-panel-new .review-panel-resolved-comment-buttons .btn{background-color:transparent;color:#1b222c;height:24px;padding:2px;width:24px}.review-panel-new .review-panel-resolved-comment-buttons .btn:focus,.review-panel-new .review-panel-resolved-comment-buttons .btn:hover{background-color:#e7e9ee}.review-panel-new .review-panel-resolved-comment-buttons .material-symbols{font-size:20px}.review-panel-new .review-panel-resolved-comment-quoted-text{background-color:#e7e9ee;border-radius:4px;padding:4px 8px}.review-panel-new .review-panel-resolved-comment-quoted-text-label{color:#495365;font-size:12px}.review-panel-new .review-panel-resolved-comment-quoted-text-quote{font-size:14px;overflow-wrap:anywhere}.review-panel-new .review-panel-comment-wrapper{display:flex;gap:8px}.review-panel-new .review-panel-comment{flex-grow:1}.review-panel-new .review-panel-comment-reply-divider{border-left:2px solid #fcc483}.review-panel-new .review-panel-comment-body{color:#1b222c;font-size:.875rem;overflow-wrap:anywhere}.review-panel-new .review-panel-content-expandable{-webkit-box-orient:vertical;-webkit-line-clamp:3;line-clamp:3;display:-webkit-box;overflow:hidden;text-overflow:ellipsis}.review-panel-new .review-panel-content-expanded{display:block}.review-panel-new .review-panel-comment-input{background-color:#fff;border:1px solid #677283;border-radius:4px;color:#3f3f3f;font-size:12px;height:25px;max-height:400px;min-height:25px;overflow-x:hidden;padding:2px 6px;resize:vertical;width:100%}.review-panel-new .review-panel-empty-state{bottom:0;pointer-events:none;position:fixed;top:0;width:var(--review-panel-width)}.review-panel-new .review-panel-empty-state-inner{align-items:center;display:flex;flex-direction:column;justify-content:center;padding-left:16px;padding-right:16px;position:sticky;top:50%;transform:translateY(-50%);width:100%}.review-panel-new .review-panel-empty-state-inner p{margin-bottom:0;text-align:center}.review-panel-new .review-panel-empty-state-comment-icon{align-items:center;background-color:#fff;border-radius:100%;display:flex;height:80px;justify-content:center;margin-bottom:16px;width:80px}.review-panel-new .review-panel-empty-state-comment-icon .material-symbols{font-size:32px}.review-panel-new .review-panel-overview{bottom:59px;overflow:auto;overscroll-behavior-block:none;padding:4px;position:absolute;top:69px;width:100%}.review-panel-new .review-panel-overview .review-panel-entry{margin-left:0;width:100%}.review-panel-new .review-panel-overview-file-header{all:unset;align-items:center;box-sizing:border-box;cursor:pointer;display:flex;font-size:14px;gap:8px;padding:6px 8px;width:100%}.review-panel-new .review-panel-overfile-divider{border-bottom:1px solid #e7e9ee;margin:2px 0}.review-panel-new .review-panel-overview-file-entries{overflow:hidden;padding-bottom:6px;padding-top:4px}.review-panel-new .review-panel-overview-file-entry-count{background-color:#e7e9ee;border-radius:3px;margin-left:auto;padding:2px 4px}.review-panel-new .review-panel-footer{background-color:#fff;border-top:1px solid #d9d9d9;bottom:0;display:flex;height:60px;position:fixed;width:var(--review-panel-width);z-index:2}.review-panel-new .review-panel-footer .review-panel-tab{align-items:center;background:none;border:0;border-top:3px solid transparent;color:#495365;display:flex;flex:0 0 50%;flex-direction:column;font-size:.875rem;gap:4px;padding:6px 0}.review-panel-new .review-panel-footer .review-panel-tab:focus,.review-panel-new .review-panel-footer .review-panel-tab:hover{color:#1b222c;text-decoration:none}.review-panel-new .review-panel-footer .review-panel-tab-active{border-top:3px solid #098842;color:#1b222c}.review-panel-new .review-panel-add-comment-textarea{min-height:44px;padding:2px 6px;resize:vertical}.review-panel-new .review-panel-add-comment{position:absolute;z-index:2}.review-panel-new .review-panel-add-comment-buttons{display:flex;gap:8px;justify-content:flex-end}.review-panel-new .review-panel-add-comment-cancel-button{background-color:transparent}.review-panel-new .review-panel-add-comment-cancel-button:focus,.review-panel-new .review-panel-add-comment-cancel-button:hover{background-color:#e7e9ee;color:#1b222c}.review-panel-new .review-panel-more-comments-button-container{display:flex;justify-content:center;position:fixed;width:var(--review-panel-width);z-index:3}.review-panel-new .review-panel-more-comments-button-container.downwards{top:calc(100% - 102px)}.review-panel-new .review-panel-more-comments-button-container.upwards{top:calc(var(--review-panel-top) + 85px)}.review-panel-new .review-panel-more-comments-button{align-items:center;display:flex;height:24px;justify-content:center;padding:2px 8px}.review-panel-new.review-panel-subview-overview.review-panel-container{overflow-y:hidden;position:sticky;top:0}.review-panel-new.review-panel-subview-overview .review-panel-inner{height:100%;min-height:auto;overflow:hidden}.review-panel-new.review-panel-mini{overflow:visible!important}.review-panel-new.review-panel-mini .review-panel-inner{width:24px}.review-panel-new.review-panel-mini .review-panel-entry{background-color:transparent;border:none;margin-left:0;width:100%}.review-panel-new.review-panel-mini .review-panel-entry-indicator{color:#495365;cursor:pointer;display:flex;left:0;position:absolute;top:0}.review-panel-new.review-panel-mini .review-panel-entry-content{background:#fff;border:1px solid #d9d9d9;border-radius:4px;display:none;padding:4px;width:200px}.review-panel-new.review-panel-mini .review-panel-entry-hover .review-panel-entry-content{display:initial;left:-200px;position:absolute;top:0}.review-panel-new.review-panel-mini .review-panel-footer,.review-panel-new.review-panel-mini .review-panel-more-comments-button-container{display:none}.review-tooltip-menu{border:none;border-radius:4px;box-shadow:0 2px 4px 0 #1e253029;padding:4px}.review-tooltip-menu-button{align-items:center;background-color:inherit;border:none;display:flex;gap:2px;padding:2px}.review-tooltip-add-comment-button{padding:2px 8px}.review-panel-tooltip{pointer-events:none}.modal-body-publish input[type=checkbox]{margin-top:6px}.modal-body-publish .gallery-export-license{align-items:center;display:flex}.modal-body-publish .table-content-name{font-weight:300;margin-bottom:10px;width:100%}.modal-body-publish .table-content-category{float:right;font-style:italic;font-weight:300;text-align:right;text-transform:capitalize;width:30%}.modal-body-publish .table-content-category~.table-content-name{display:inline-block;width:70%}.modal-body-publish .wl-icon:before{font-size:14px}.modal-body-publish .btn-wrapping{max-width:25em;min-width:8em;white-space:normal}.modal-body-publish .button-as-link{background:none;border:none;border-radius:0;color:green;font-size:14px;padding:0;text-decoration:none;text-transform:none;@extend a;text-align:left}.modal-body-publish .button-as-link:active,.modal-body-publish .button-as-link:focus,.modal-body-publish .button-as-link:hover{background:none;color:green}.modal-body-publish .affix-content-title{color:#afb5c0;font-size:1.2em;padding-left:10px}.modal-body-publish .affix-subcontent{margin:5px 0 50px}.modal-body-publish .overbox{background-color:#fff;border:1px solid #d0d5dd;border-radius:9px;margin-top:12.5px;padding:12.5px}.modal-body-publish .content-as-table .table-content-main{display:flex}.modal-body-publish .content-as-table .table-content-icon{align-items:flex-start;display:flex;height:100px;overflow:hidden;width:106px}.modal-body-publish .content-as-table .table-content-icon *{border:1px solid #f4f5f6;width:100%}.modal-body-publish .content-as-table .table-content-text{padding-left:15px;vertical-align:top;width:calc(100% - 106px)}.modal-body-publish .content-as-table .table-content-slogan{height:100px;overflow:hidden}.modal-body-publish .content-as-table .table-content-link{padding-top:10px}.outline-container{background-color:#495365;height:100%;width:100%}.outline-pane{color:#fff;display:flex;flex-flow:column;font-size:14px;height:100%}.outline-pane-disabled{opacity:.5}.documentation-btn-container{align-items:center;background-color:#2f3a4c;box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1);display:flex;height:32px}.documentation-btn-container *,.documentation-btn-container :hover{color:#fff;text-decoration:none}.documentation-btn-container:hover{background-color:#1b222c}.documentation-close{padding:0}.outline-header{background-color:#2f3a4c;border-bottom:1px solid #2f3a4c;border-top:1px solid #2f3a4c;display:flex;flex-shrink:0;height:32px}.outline-header-expand-collapse-btn{align-items:center;background-color:transparent;border:0;box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1);color:#fff;display:flex;flex:1 0 100%;font-size:inherit;padding:0 6px 0 0;text-align:left;vertical-align:inherit;white-space:nowrap}.outline-header-expand-collapse-btn:focus,.outline-header-expand-collapse-btn:hover{outline:0}.outline-header-expand-collapse-btn:hover{background-color:#1b222c}.outline-header-expand-collapse-btn:hover[disabled]{background-color:transparent}.outline-header-name{color:#fff;display:inline-block;flex-grow:1;flex-shrink:1;font-family:Lato,sans-serif;font-size:14px;font-weight:700;margin:0;overflow:hidden;text-overflow:ellipsis}.outline-body{background-color:#495365;overflow-y:auto;padding-right:6px}.outline-body-no-elements{color:#fff;margin-right:-6px;padding:24px 24px 48px;text-align:center}.outline-body-link{display:block}.outline-body-link,.outline-body-link:focus,.outline-body-link:hover{color:#fff;text-decoration:underline}.outline-item-list{list-style:none;padding-left:24px;position:relative}.outline-item-list:before{background-color:#677283;bottom:6px;content:"";left:36px;position:absolute;top:6px;width:1px}.outline-item-list.outline-item-list-root{padding-left:0}.outline-item-list.outline-item-list-root:before{left:12px}.outline-item-no-children{padding-left:18px}.outline-item-row{display:flex;overflow:hidden;white-space:nowrap}.outline-item-expand-collapse-btn{background-color:#495365;border:0;border-radius:3px;color:#afb5c0;display:inline;font-size:inherit;margin-right:-6px;padding:0;position:relative;vertical-align:inherit;z-index:1}.outline-item-expand-collapse-btn:focus,.outline-item-expand-collapse-btn:hover{outline:0}.outline-item-expand-collapse-btn:hover{background-color:#2f3a4c}.outline-item-link{background-color:transparent;border:0;border-radius:3px;color:#fff;display:inline;line-height:24px;overflow:hidden;padding:0 6px;position:relative;text-align:left;text-overflow:ellipsis;z-index:1}.outline-item-link:focus,.outline-item-link:hover{background-color:#2f3a4c;outline:0}.outline-item-link-highlight{background-color:#646d7c}.outline-caret-icon{font-size:17px;text-align:center;width:24px}.logs-pane{background-color:#2f3a4c;bottom:0;left:0;overflow-y:auto;position:absolute;right:0;top:0;top:32px;z-index:11}.logs-pane-content{display:flex;flex-direction:column;min-height:100%;padding:10px}.logs-pane-actions{align-items:flex-end;display:flex;flex-grow:1;justify-content:flex-end;padding:10px 0}.logs-pane-actions-clear-cache{margin-right:10px}.logs-pane-actions-clear-cache:focus,.logs-pane-actions-clear-cache:focus:active{outline:0}.log-entry{border-radius:3px;margin-bottom:10px;overflow:hidden}.log-entry-first-error-popup{border-radius:0;overflow:auto}.log-entry-header{align-items:flex-start;border-radius:3px 3px 0 0;color:#fff;display:flex;padding:3px 10px}.log-entry-header-error{background-color:#b83a33}.log-entry-header-link-error{background-color:#9c312b;border-color:transparent;border-radius:9999px;color:#fff}.alert .log-entry-header-link-error{background-color:#5d1d1a}.alert .log-entry-header-link-error.active,.alert .log-entry-header-link-error.checked,.alert .log-entry-header-link-error:active,.alert .log-entry-header-link-error:focus,.alert .log-entry-header-link-error:hover,.open .dropdown-toggle.alert .log-entry-header-link-error{background-color:#3d1311}.log-entry-header-link-error.active,.log-entry-header-link-error.checked,.log-entry-header-link-error:active,.log-entry-header-link-error:focus,.log-entry-header-link-error:hover,.open .dropdown-toggle.log-entry-header-link-error{background-color:#7c2722;border-color:transparent;color:#fff}.log-entry-header-link-error.active,.log-entry-header-link-error:active,.open .dropdown-toggle.log-entry-header-link-error{background-image:none}.log-entry-header-link-error.disabled,.log-entry-header-link-error.disabled.active,.log-entry-header-link-error.disabled:active,.log-entry-header-link-error.disabled:focus,.log-entry-header-link-error.disabled:hover,.log-entry-header-link-error[disabled],.log-entry-header-link-error[disabled].active,.log-entry-header-link-error[disabled]:active,.log-entry-header-link-error[disabled]:focus,.log-entry-header-link-error[disabled]:hover,fieldset[disabled] .log-entry-header-link-error,fieldset[disabled] .log-entry-header-link-error.active,fieldset[disabled] .log-entry-header-link-error:active,fieldset[disabled] .log-entry-header-link-error:focus,fieldset[disabled] .log-entry-header-link-error:hover{background-color:#9c312b;border-color:transparent}.log-entry-header-link-error .badge{background-color:#fff;color:#9c312b}.log-entry-header-warning{background-color:#de8014}.log-entry-header-link-warning{background-color:#bd6d11;border-color:transparent;border-radius:9999px;color:#fff}.alert .log-entry-header-link-warning{background-color:#72420a}.alert .log-entry-header-link-warning.active,.alert .log-entry-header-link-warning.checked,.alert .log-entry-header-link-warning:active,.alert .log-entry-header-link-warning:focus,.alert .log-entry-header-link-warning:hover,.open .dropdown-toggle.alert .log-entry-header-link-warning{background-color:#4c2c07}.log-entry-header-link-warning.active,.log-entry-header-link-warning.checked,.log-entry-header-link-warning:active,.log-entry-header-link-warning:focus,.log-entry-header-link-warning:hover,.open .dropdown-toggle.log-entry-header-link-warning{background-color:#97570e;border-color:transparent;color:#fff}.log-entry-header-link-warning.active,.log-entry-header-link-warning:active,.open .dropdown-toggle.log-entry-header-link-warning{background-image:none}.log-entry-header-link-warning.disabled,.log-entry-header-link-warning.disabled.active,.log-entry-header-link-warning.disabled:active,.log-entry-header-link-warning.disabled:focus,.log-entry-header-link-warning.disabled:hover,.log-entry-header-link-warning[disabled],.log-entry-header-link-warning[disabled].active,.log-entry-header-link-warning[disabled]:active,.log-entry-header-link-warning[disabled]:focus,.log-entry-header-link-warning[disabled]:hover,fieldset[disabled] .log-entry-header-link-warning,fieldset[disabled] .log-entry-header-link-warning.active,fieldset[disabled] .log-entry-header-link-warning:active,fieldset[disabled] .log-entry-header-link-warning:focus,fieldset[disabled] .log-entry-header-link-warning:hover{background-color:#bd6d11;border-color:transparent}.log-entry-header-link-warning .badge{background-color:#fff;color:#bd6d11}.log-entry-header-typesetting{background-color:#3265b2}.log-entry-header-link-typesetting{background-color:#2b5697;border-color:transparent;border-radius:9999px;color:#fff}.alert .log-entry-header-link-typesetting{background-color:#193258}.alert .log-entry-header-link-typesetting.active,.alert .log-entry-header-link-typesetting.checked,.alert .log-entry-header-link-typesetting:active,.alert .log-entry-header-link-typesetting:focus,.alert .log-entry-header-link-typesetting:hover,.open .dropdown-toggle.alert .log-entry-header-link-typesetting{background-color:#102038}.log-entry-header-link-typesetting.active,.log-entry-header-link-typesetting.checked,.log-entry-header-link-typesetting:active,.log-entry-header-link-typesetting:focus,.log-entry-header-link-typesetting:hover,.open .dropdown-toggle.log-entry-header-link-typesetting{background-color:#247;border-color:transparent;color:#fff}.log-entry-header-link-typesetting.active,.log-entry-header-link-typesetting:active,.open .dropdown-toggle.log-entry-header-link-typesetting{background-image:none}.log-entry-header-link-typesetting.disabled,.log-entry-header-link-typesetting.disabled.active,.log-entry-header-link-typesetting.disabled:active,.log-entry-header-link-typesetting.disabled:focus,.log-entry-header-link-typesetting.disabled:hover,.log-entry-header-link-typesetting[disabled],.log-entry-header-link-typesetting[disabled].active,.log-entry-header-link-typesetting[disabled]:active,.log-entry-header-link-typesetting[disabled]:focus,.log-entry-header-link-typesetting[disabled]:hover,fieldset[disabled] .log-entry-header-link-typesetting,fieldset[disabled] .log-entry-header-link-typesetting.active,fieldset[disabled] .log-entry-header-link-typesetting:active,fieldset[disabled] .log-entry-header-link-typesetting:focus,fieldset[disabled] .log-entry-header-link-typesetting:hover{background-color:#2b5697;border-color:transparent}.log-entry-header-link-typesetting .badge{background-color:#fff;color:#2b5697}.log-entry-header-info,.log-entry-header-raw{background-color:#495365}.log-entry-header-link-info,.log-entry-header-link-raw{background-color:#3e4756;border-color:transparent;border-radius:9999px;color:#fff}.alert .log-entry-header-link-info,.alert .log-entry-header-link-raw{background-color:#1c2026}.alert .log-entry-header-link-info.active,.alert .log-entry-header-link-info.checked,.alert .log-entry-header-link-info:active,.alert .log-entry-header-link-info:focus,.alert .log-entry-header-link-info:hover,.alert .log-entry-header-link-raw.active,.alert .log-entry-header-link-raw.checked,.alert .log-entry-header-link-raw:active,.alert .log-entry-header-link-raw:focus,.alert .log-entry-header-link-raw:hover,.open .dropdown-toggle.alert .log-entry-header-link-info,.open .dropdown-toggle.alert .log-entry-header-link-raw{background-color:#0b0c0f}.log-entry-header-link-info.active,.log-entry-header-link-info.checked,.log-entry-header-link-info:active,.log-entry-header-link-info:focus,.log-entry-header-link-info:hover,.log-entry-header-link-raw.active,.log-entry-header-link-raw.checked,.log-entry-header-link-raw:active,.log-entry-header-link-raw:focus,.log-entry-header-link-raw:hover,.open .dropdown-toggle.log-entry-header-link-info,.open .dropdown-toggle.log-entry-header-link-raw{background-color:#2d333e;border-color:transparent;color:#fff}.log-entry-header-link-info.active,.log-entry-header-link-info:active,.log-entry-header-link-raw.active,.log-entry-header-link-raw:active,.open .dropdown-toggle.log-entry-header-link-info,.open .dropdown-toggle.log-entry-header-link-raw{background-image:none}.log-entry-header-link-info.disabled,.log-entry-header-link-info.disabled.active,.log-entry-header-link-info.disabled:active,.log-entry-header-link-info.disabled:focus,.log-entry-header-link-info.disabled:hover,.log-entry-header-link-info[disabled],.log-entry-header-link-info[disabled].active,.log-entry-header-link-info[disabled]:active,.log-entry-header-link-info[disabled]:focus,.log-entry-header-link-info[disabled]:hover,.log-entry-header-link-raw.disabled,.log-entry-header-link-raw.disabled.active,.log-entry-header-link-raw.disabled:active,.log-entry-header-link-raw.disabled:focus,.log-entry-header-link-raw.disabled:hover,.log-entry-header-link-raw[disabled],.log-entry-header-link-raw[disabled].active,.log-entry-header-link-raw[disabled]:active,.log-entry-header-link-raw[disabled]:focus,.log-entry-header-link-raw[disabled]:hover,fieldset[disabled] .log-entry-header-link-info,fieldset[disabled] .log-entry-header-link-info.active,fieldset[disabled] .log-entry-header-link-info:active,fieldset[disabled] .log-entry-header-link-info:focus,fieldset[disabled] .log-entry-header-link-info:hover,fieldset[disabled] .log-entry-header-link-raw,fieldset[disabled] .log-entry-header-link-raw.active,fieldset[disabled] .log-entry-header-link-raw:active,fieldset[disabled] .log-entry-header-link-raw:focus,fieldset[disabled] .log-entry-header-link-raw:hover{background-color:#3e4756;border-color:transparent}.log-entry-header-link-info .badge,.log-entry-header-link-raw .badge{background-color:#fff;color:#3e4756}.log-entry-header-success{background-color:#098842}.log-entry-header-link-success{background-color:#087438;border-color:transparent;border-radius:9999px;color:#fff}.alert .log-entry-header-link-success{background-color:#032713}.alert .log-entry-header-link-success.active,.alert .log-entry-header-link-success.checked,.alert .log-entry-header-link-success:active,.alert .log-entry-header-link-success:focus,.alert .log-entry-header-link-success:hover,.open .dropdown-toggle.alert .log-entry-header-link-success{background-color:#000100}.log-entry-header-link-success.active,.log-entry-header-link-success.checked,.log-entry-header-link-success:active,.log-entry-header-link-success:focus,.log-entry-header-link-success:hover,.open .dropdown-toggle.log-entry-header-link-success{background-color:#054d26;border-color:transparent;color:#fff}.log-entry-header-link-success.active,.log-entry-header-link-success:active,.open .dropdown-toggle.log-entry-header-link-success{background-image:none}.log-entry-header-link-success.disabled,.log-entry-header-link-success.disabled.active,.log-entry-header-link-success.disabled:active,.log-entry-header-link-success.disabled:focus,.log-entry-header-link-success.disabled:hover,.log-entry-header-link-success[disabled],.log-entry-header-link-success[disabled].active,.log-entry-header-link-success[disabled]:active,.log-entry-header-link-success[disabled]:focus,.log-entry-header-link-success[disabled]:hover,fieldset[disabled] .log-entry-header-link-success,fieldset[disabled] .log-entry-header-link-success.active,fieldset[disabled] .log-entry-header-link-success:active,fieldset[disabled] .log-entry-header-link-success:focus,fieldset[disabled] .log-entry-header-link-success:hover{background-color:#087438;border-color:transparent}.log-entry-header-link-success .badge{background-color:#fff;color:#087438}.log-entry-header-link,.log-entry-header-title{color:#fff;flex-grow:1;font-family:Lato,sans-serif;font-size:16px;font-weight:700;line-height:1.5625;margin:0}.log-entry-header-icon-container{margin-right:10px}.log-entry-header-link{align-items:center;border-radius:9999px;border-width:0;display:flex;flex-grow:0;margin-left:10px;max-width:33%;padding:0 5px;text-align:right}.log-entry-header-link:focus,.log-entry-header-link:hover{color:#fff;outline:0;text-decoration:none}.log-entry-header-link:focus{text-decoration:none}.log-entry-header-link-location{direction:rtl;overflow:hidden;padding:0 5px;text-overflow:ellipsis;white-space:nowrap}.log-entry-content{background-color:#fff;padding:10px}.log-entry-content-raw-container{background-color:#e7e9ee;border-radius:3px;margin-top:10px;overflow:hidden}.log-entry-content-raw{color:#495365;font-size:12px;margin:0;padding:10px;white-space:pre-wrap}.log-entry-content-button-container{background-image:linear-gradient(0,#e7e9ee,transparent);border-radius:0 0 3px 3px;height:40px;margin-top:0;padding-bottom:10px;position:relative;text-align:center;transition:margin .15s ease-in-out,opacity .15s ease-in-out}.log-entry-content-button-container-collapsed{margin-top:-40px}.log-entry-btn-expand-collapse{position:relative;z-index:1}.log-entry-btn-expand-collapse:focus,.log-entry-btn-expand-collapse:focus:active{outline:0}.log-entry-content-link,.log-entry-formatted-content{font-size:14px;margin-top:5px}.log-entry-content-link:first-of-type,.log-entry-formatted-content:first-of-type{margin-top:0}.log-entry-formatted-content-list{margin:5px 0;padding-left:20px}.first-error-popup{animation:fade-in .15s linear 0s 1 none;background-color:#fff;box-shadow:0 4px 4px rgba(0,0,0,.25);max-width:450px;position:absolute;right:5px;top:34px;width:90%;z-index:1}.first-error-popup:before{border-color:transparent;border-bottom-color:#b83a33;border-left-color:transparent;border-right-color:transparent;border-style:solid;border-width:0 5px 5px 5px;content:"";height:0;position:absolute;right:40px;top:-5px;width:0}.first-error-popup-actions{border-radius:0 0 3px 3px;display:flex;justify-content:space-between;padding:0 10px 10px 10px}.first-error-btn:focus,.first-error-btn:focus:active{outline:0}.log-location-tooltip{word-break:break-all}.log-location-tooltip.tooltip.in{opacity:1}.log-location-tooltip>.tooltip-inner{max-width:450px;text-align:left}#dictionary-modal .modal-body{padding:0}.dictionary-entries-list{margin:0;max-height:calc(100vh - 225px);overflow-y:scroll;padding:10px}.dictionary-entry{align-items:center;border-bottom:1px solid #e5e5e5;display:flex;padding:10px;word-break:break-all}.dictionary-entry:last-child{border-bottom:none}.dictionary-entry-name{flex-grow:1;padding-right:5px}.dictionary-empty-body{padding:20px}@keyframes pdf-toolbar-stripes{0%{background-position:0 0}to{background-position:20px 0}}.detach-compile-button-container{border-radius:9999px 0 0 9999px;margin-left:6px}.toolbar-pdf-right .detach-compile-button-container{margin-right:-3px}.btn-striped-animated{animation:pdf-toolbar-stripes 2s linear infinite;background-image:linear-gradient(-45deg,hsla(0,0%,100%,.2) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.2) 0,hsla(0,0%,100%,.2) 75%,transparent 0,transparent);background-origin:content-box;background-size:20px 20px}.detach-compile-button{height:28px;padding-bottom:0;padding-top:0}.detach-compile-button.detach-compile-button-disabled,.detach-compile-button.detach-compile-button-disabled:hover{background-color:#098842;color:#fff}.detach-compile-button{border:none}.detach-compile-button-label{margin-left:6.25px}@keyframes compile-button-flash{0%,to{background:transparent}25%,75%{background:rgba(0,0,0,.2)}}@keyframes compile-button-bounce{0%,50%,to{transform:translateY(0)}25%,75%{transform:translateY(2px)}}.detach-compile-button-animate{animation-duration:1.2s;animation-fill-mode:both;animation-name:compile-button-flash;animation-timing-function:ease-in-out}.detach-compile-button-animate .caret{animation-delay:.4s;animation-duration:.6s;animation-fill-mode:both;animation-name:compile-button-bounce;animation-timing-function:cubic-bezier(.76,0,.24,1)}.figure-modal-help-link,.figure-modal-help-link:active,.figure-modal-help-link:focus,.figure-modal-help-link:hover{color:#1b222c;text-decoration:none}.figure-modal-help-link{padding-left:0}.figure-modal-checkbox-input label{display:inline-block;font-weight:400;line-height:100%}.figure-modal-checkbox-input label .figure-modal-label-content{display:block;overflow:hidden}.figure-modal-checkbox-input input[type=checkbox]{accent-color:#098842;margin-right:12px;margin-top:2px;vertical-align:top}.figure-modal-switcher-input{align-items:center;display:flex;justify-content:space-between;position:relative;z-index:0}.file-container{background-color:#fafafa;border:1px dashed #eaeaea;border-radius:8px;height:120px;justify-content:space-between;padding:22px 24px;width:100%}.file-container-file{align-items:center;background-color:#fff;border:1px solid #e7e9ee;border-radius:8px;display:flex;height:100%;padding:16px 18px}.file-info{display:flex;flex-direction:column;flex-grow:1;justify-content:space-around;margin-left:18px}.file-name{font-weight:700}.file-icon{font-size:20px}.file-action{cursor:pointer}.figure-modal-source-button-grid{display:grid;gap:8px;grid-template-columns:1fr 1fr;justify-content:space-between;margin:0 auto}.figure-modal-source-button-grid:not(:first-of-type){margin-top:8px}.figure-modal-source-button{align-items:center;background-color:#fff;border:none;border-radius:4px;box-shadow:0 2px 4px 0 #1e253029;display:flex;flex:1 1 0;line-height:44px;padding:0 8px}.figure-modal-source-button-title{flex:1 1 auto;text-align:left}.figure-modal-source-button-icon{margin-right:6px}.figure-modal-upload .uppy-Dashboard-AddFiles-list{display:none}.select-from-files-btn{vertical-align:baseline}.table-generator-width-modal .table-generator-width-label{width:100%}.table-generator-width-modal .table-generator-usepackage-copy{background:#f4f5f6;border:1px solid #d0d5dd;display:flex;justify-content:space-between;padding:6px 12px}#ide-root{height:100vh;height:100dvh}#ide-root .global-alerts{align-items:center;display:flex;flex-direction:column;left:0;position:absolute;right:0;top:0}#ide-root .chat{height:100%;position:relative}#ide-root .review-panel-wrapper.rp-state-overview{height:100%;position:sticky;top:0}.ide-react-main{display:flex;flex-direction:column;height:100%}.ide-react-main .toolbar.toolbar-header{color:var(--neutral-20);flex-grow:0;position:static}.ide-react-body{background-color:#f4f5f6;flex-grow:1;overflow-y:hidden;z-index:0}.horizontal-resize-handle{background-color:#2f3a4c;height:100%;position:relative;width:7px!important}.horizontal-resize-handle .custom-toggler{border-width:0;cursor:pointer!important;padding:0}.horizontal-resize-handle.horizontal-resize-handle-enabled:after,.horizontal-resize-handle.horizontal-resize-handle-enabled:before{content:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='18'%3E%3Cpath d='M2 0h3v3H2zm0 5h3v3H2zm0 5h3v3H2zm0 5h3v3H2z' style='fill:%239da7b7'/%3E%3C/svg%3E");display:block;height:18px;left:0;position:absolute;text-align:center;width:7px}.horizontal-resize-handle.horizontal-resize-handle-enabled:before{top:25%}.horizontal-resize-handle.horizontal-resize-handle-enabled:after{top:75%}.horizontal-resize-handle:not(.horizontal-resize-handle-enabled){cursor:default}.horizontal-resize-handle .synctex-controls{left:-8px;margin:0;z-index:12}.horizontal-resize-handle .synctex-controls .synctex-control .synctex-control-icon{cursor:pointer!important}.vertical-resize-handle{background-color:#2f3a4c;height:6px}.vertical-resize-handle.vertical-resize-handle-enabled:hover{background-color:#1b222c}.vertical-resize-handle:not(.vertical-resize-handle-enabled){cursor:default;opacity:.5}.vertical-resize-handle:after{content:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='6'%3E%3Cpath d='M0 1.5h3v3H0zm5 0h3v3H5zm5 0h3v3h-3zm5 0h3v3h-3z' style='fill:%239da7b7'/%3E%3C/svg%3E");display:block;line-height:0;text-align:center}.ide-react-editor-sidebar,.ide-react-symbol-palette{background-color:#495365;color:var(--neutral-20);height:100%}.ide-react-file-tree-panel{display:flex;flex-direction:column}.ide-react-file-tree-panel .file-tree{width:100%}.ide-react-editor-panel{display:flex;flex-direction:column}.ide-react-panel{container-type:size;position:relative}.ide-react-placeholder-chat{background-color:var(--editor-toolbar-bg);color:var(--neutral-20);height:100%}.ide-panel-group-resizing{background-color:#fff}.ide-panel-group-resizing .ide-react-editor-content,.ide-panel-group-resizing .pdf{display:none!important}@keyframes blink{0%{opacity:.2}20%{opacity:1}to{opacity:.2}}.editor-menu-icon.fa{background:url(/images/overleaf-o-white-98904fbb7829929adf9f.svg) 50%/contain no-repeat;width:1em}.editor-menu-icon.fa:before{content:"\00a0"}.full-size{bottom:0;left:0;position:absolute;right:0;top:0}.global-alerts{height:0;margin-top:2px;text-align:center}.global-alerts .alert{display:inline-block;font-size:14px;margin-bottom:6.25px;min-width:400px;padding:7px;position:relative;text-align:left;z-index:20}#synctex-more-info-button,#try-reconnect-now-button{margin-left:20px}#ide-body{background-color:#f4f5f6;top:0;top:40px}#editor,#ide-body{bottom:0;left:0;position:absolute;right:0}#editor{top:0}.multi-selection-ongoing:before,.no-file-selection:before,.no-history-available:before,.pdf-empty:before{background:url(/images/overleaf-o-grey-f7605837650fa8d6aab8.svg) 50%/200px no-repeat;bottom:0;content:"";left:0;left:20px;opacity:.2;pointer-events:none;position:absolute;right:0;top:0}.multi-selection-message,.no-file-selection-message,.no-history-available{margin:0 auto;padding:25px 0;text-align:center;width:50%}.faster-compiles-feedback{bottom:0;margin:1rem;padding:10px;position:absolute;right:.5rem}.faster-compiles-feedback .btn{margin:0 0 0 10px}.faster-compiles-feedback .faster-compiles-feedback-options{display:inline;white-space:nowrap}.faster-compiles-feedback .faster-compiles-feedback-option{background:#1d4c82}.faster-compiles-feedback .faster-compiles-feedback-dismiss{border:0;color:#1d4c82;float:right;margin:0 0 0 5px;right:0;top:0}.toolbar-editor{background-color:#2f3a4c;height:32px;overflow:hidden;padding:0 5px;position:relative;z-index:10}.loading-screen{align-items:center;background-color:#fff;display:flex;flex-direction:column;height:100%;justify-content:center;width:100%}.loading-screen-brand-container{min-width:200px;text-align:center;width:15%}.loading-screen-brand{background:url(/images/overleaf-o-grey-f7605837650fa8d6aab8.svg) no-repeat bottom/100%;height:0;padding-top:115.44%;position:relative;width:100%}.loading-screen-brand:after{background:url(/images/overleaf-o-7052183c04d0611b79e2.svg) no-repeat bottom/100%;bottom:0;content:"";height:inherit;left:0;position:absolute;right:0;transition:height .5s}.loading-screen-label{color:#495365;font-size:2em;margin:0;padding-top:1em}.loading-screen-ellip{animation:blink 1.4s infinite both}.loading-screen-ellip:nth-child(2){animation-delay:.2s}.loading-screen-ellip:nth-child(3){animation-delay:.4s}.loading-screen-error{color:#b83a33;margin:0;padding-top:1em}.loading-panel{background-color:#fafafa;bottom:0;font-family:Merriweather,serif;left:0;padding-top:10rem;position:absolute;right:0;text-align:center;top:0}.loading-panel-file-view{background-color:#f4f5f6}.error-panel{background-color:#fafafa;bottom:0;left:0;padding:25px;position:absolute;right:0;top:0}.error-panel .alert{margin:auto;max-width:400px}.project-name .name{color:#afb5c0;display:inline-block;font-weight:700;overflow:hidden;padding:6px;text-overflow:ellipsis;vertical-align:top;white-space:nowrap}.project-name input{font-weight:700;height:30px;margin-top:4px;max-width:500px;padding:6px;text-align:center}.project-name a.rename{border-radius:2px;color:#afb5c0;cursor:pointer;display:inline-block;padding:5px;visibility:hidden}.project-name a.rename:hover{color:#e7e9ee;text-decoration:none;text-shadow:0 1px 0 rgba(0,0,0,.25)}.project-name:hover a.rename{visibility:visible}.cm-editor-wrapper{height:100%;position:relative}.CodeMirror,.cm-editor-body{height:100%}.ui-layout-resizer{background-color:#2f3a4c;width:7px!important;z-index:0!important}.ui-layout-resizer.ui-layout-resizer-closed:after,.ui-layout-resizer.ui-layout-resizer-closed:before{content:none}.ui-layout-resizer:after,.ui-layout-resizer:before{-webkit-font-smoothing:antialiased;color:#afb5c0;content:"\2847";display:block;font-size:24px;left:-2px;position:absolute;text-align:center;top:25%;width:100%}.ui-layout-resizer:after{top:75%}.ui-layout-toggler{display:none!important}.custom-toggler{align-items:center;background-color:#848d9e;display:flex;height:50px;justify-content:center;margin-top:-25px;position:absolute;top:50%;width:7px!important}.custom-toggler:focus,.custom-toggler:hover{outline:none;text-decoration:none}.custom-toggler:before{bottom:0;content:"";display:block;left:-3px;position:absolute;right:-3px;top:0}.custom-toggler:after{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#fff;font-family:FontAwesome;font-size:65%;font-weight:700;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.custom-toggler:hover{background-color:#098842}.custom-toggler-east:after{content:"\f105"}.custom-toggler-closed.custom-toggler-east:after,.custom-toggler-west:after{content:"\f104"}.custom-toggler-closed.custom-toggler-west:after{content:"\f105"}.ui-layout-resizer-dragging{background-color:#2f3a4c;z-index:1000!important}.context-menu{position:fixed;z-index:100}.editor-dark{background-color:#333;color:#d0d5dd}.editor-dark .ui-layout-resizer{background-color:#1a1a1a;border:none}.editor-dark .btn-default{background-color:#677283;border-color:#343b47;color:#fff}.editor-dark .btn-default:hover{background-color:#5c6675;border-color:#1e222a}.modal-alert{margin-bottom:0;margin-top:10px}.modal.lock-editor-modal{background-color:rgba(0,0,0,.3);display:flex!important;overflow-y:hidden;pointer-events:none}.modal.lock-editor-modal .modal-dialog{top:25px}.out-of-sync-modal .text-preview{margin-top:12.5px}.out-of-sync-modal .text-preview .scroll-container{background-color:#fff;border:1px solid #d0d5dd;font-family:monospace;font-size:.8em;line-height:1.1em;max-height:360px;overflow:auto;padding-bottom:8px;padding-left:12px;padding-right:12px;padding-top:8px;text-align:left;white-space:pre;width:100%}.sl_references_search_hint{background:#cad6fa;border:1px solid #d3d3d3;box-shadow:3px 3px 5px rgba(0,0,0,.2);left:-1px;padding:2px;position:relative;text-align:center;top:100%}.sl_references_search_hint span{color:#000}.bibtex-hint-banner{align-items:flex-start;display:flex;justify-content:space-between;left:8px;padding:5px 10px;position:absolute;right:8px;top:8px;z-index:1000}.bibtex-hint-banner .bibtex-hint-close{border-radius:0;color:inherit;font-size:24px;line-height:1;margin-left:10px;padding:0}.bibtex-hint-banner .bibtex-hint-close,.bibtex-hint-banner .bibtex-hint-close:active,.bibtex-hint-banner .bibtex-hint-close:focus,.bibtex-hint-banner .bibtex-hint-close:hover,.references-search-modal-backdrop{background-color:transparent}.references-search-modal .references-search-upgrade-prompt{padding:24px;padding-bottom:48px}.references-search-modal .references-search-upgrade-prompt .upgrade-prompt{background:#fff;border-radius:8px;margin:auto;opacity:.95;padding-bottom:14px;padding-left:38px;padding-right:38px;padding-top:14px;text-align:center;width:400px}.references-search-modal .references-search-upgrade-prompt .upgrade-prompt .message{margin-top:15px}.references-search-modal .references-search-upgrade-prompt .upgrade-prompt .message.call-to-action{font-weight:700}.references-search-modal .references-search-upgrade-prompt .upgrade-prompt .message ul.list-unstyled{text-align:left}.references-search-modal .references-search-upgrade-prompt .upgrade-prompt a.btn{opacity:1}.references-search-modal .search-form i.fa-spinner{margin-top:-30px}.references-search-modal .alert-danger{margin-bottom:0;margin-top:12px}.references-search-modal .search-results{font-size:12px}.references-search-modal .search-results .no-results-message,.references-search-modal .search-results .too-many-results-message{font-size:16px}.references-search-modal .search-results .search-results-scroll-container{max-height:calc(100vh - 225px);overflow-y:auto}.references-search-modal .search-results .search-result-hit{border-bottom:1px solid #ddd;border-left:4px solid transparent;padding:8px}.references-search-modal .search-results .search-result-hit:hover{cursor:pointer}.references-search-modal .search-results .search-result-hit:last-child{border-bottom:1px solid transparent}.references-search-modal .search-results .search-result-hit.selected-search-result-hit{color:#098842}.references-search-modal .search-results .search-result-hit .hit-title{font-size:1.3em;font-style:italic}.referencesImportModal .referencesImportPreviewScroller{background-color:#f4f5f6;border:1px solid #d0d5dd;font-family:monospace;font-size:.8em;margin-bottom:15px;max-height:360px;overflow:scroll;padding:8px 12px;white-space:pre}.dropbox-teaser-title,.teaser-title{margin-top:0;text-align:center}.teaser-refresh-label{text-align:center}.dropbox-teaser-img,.teaser-img{display:block;height:auto;margin-bottom:5px;max-width:100%}.dropbox-teaser-video-container,.teaser-video-container{margin-bottom:5px;margin-left:-20px;margin-right:-20px;margin-top:-20px;overflow:hidden}.dropbox-teaser-video,.teaser-video{border-bottom:1px solid #e5e5e5;height:auto;width:100%}.spell-check-menu>.dropdown-menu>li>a{padding:2px 15px}.spell-check-menu-from-bottom>.dropdown-menu{bottom:100%;top:auto}.editor-container{container-type:inline-size;overflow:visible!important}.pdf-preview-messages{left:10px;position:absolute;right:10px;top:40px;z-index:1060}.compile-time-warning{background-color:#098842;box-shadow:5px 5px 6px rgba(0,0,0,.3);max-width:420px;padding:10px}.compile-time-warning .warning-content{align-items:center;display:flex;flex-wrap:wrap;gap:15px;justify-content:space-between}.compile-time-warning .warning-text{display:inline-block;font-size:14px}.compile-time-warning .upgrade-prompt{display:inline-flex;margin-left:auto}.compile-time-warning button.btn{background-color:#195936}.compile-time-warning button.btn.close{background-color:#098842}.cm6-switch-away-survey{background-color:#3265b2;bottom:40px;box-shadow:5px 5px 6px rgba(0,0,0,.3);padding:10px;position:absolute;right:10px;width:530px;z-index:1060}.cm6-switch-away-survey .btn.close{background-color:transparent;color:#fff;opacity:1}.cm6-switch-away-survey .warning-content{align-items:center;display:flex;justify-content:space-between;margin-right:32px}.cm6-switch-away-survey .warning-text{display:inline-block;font-size:14px;padding-right:15px}.legacy-editor-warning{width:500px}.legacy-editor-warning.alert.alert-info{padding:10px}.legacy-editor-warning .btn.close{background-color:transparent;color:#fff;opacity:1}.legacy-editor-warning .warning-content{font-size:14px;margin-right:32px;padding-right:15px}.legacy-editor-warning .warning-content .warning-link{font-weight:700;text-decoration:none}.legacy-editor-warning .warning-content .warning-link:hover{text-decoration:underline}grammarly-extension[data-grammarly-shadow-root=true]{z-index:1}.editor-notification{margin:48px 64px;max-width:560px;width:80%}.universities{text-align:center}.universities .uni-logo{display:inline-block;padding:0 20px;width:20%}@media only screen and (max-width:991px){.universities .uni-logo{padding:20px;width:50%}}.website-redesign .home-animation-text-container{align-items:center;display:flex;flex-direction:column;padding-top:68px}.website-redesign .home-animation-text-container .home-begin-text{align-self:flex-start;color:#5f5ff0;display:flex;font-family:DM Mono,monospace;font-size:4rem;font-weight:400;line-height:1.25;margin-top:0;width:100%}@media (max-width:991px){.website-redesign .home-animation-text-container .home-begin-text{align-items:center;flex-direction:column;font-size:2.25rem;text-align:center}}.website-redesign .home-animation-text-container .home-parenthesis-text{color:#bbdbb8;display:inherit;font-size:4rem;line-height:1.25}.website-redesign .home-animation-text-container .home-parenthesis-text span{font-family:DM Mono,monospace}.website-redesign .home-animation-text-container .home-parenthesis-text #home-animation-text{color:#495365}@media (max-width:991px){.website-redesign .home-animation-text-container .home-parenthesis-text{font-size:2.25rem}}.website-redesign .home-top-text{font-size:1.25rem;font-weight:400;line-height:1.4;margin-bottom:0;text-align:center}@media (max-width:991px){.website-redesign .home-top-text{font-size:1.125rem;line-height:1.33;padding:0 100px}}@media (max-width:767px){.website-redesign .home-top-text{padding:0 20px}}.website-redesign .home-top-text>span:first-of-type{display:block}@media (max-width:991px){.website-redesign .home-top-text>span:first-of-type{display:inline}.website-redesign .home-top-text .dash-text:after{content:" "}}.website-redesign .home-registration{align-items:center;display:flex;flex-direction:column;margin-top:20px}.website-redesign .home-registration .home-registration-sso{display:flex;gap:16px}@media (max-width:991px){.website-redesign .home-registration .home-registration-sso{flex-direction:column;width:100%}}.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn{background-color:#fff;border:0 solid transparent;border-color:#677283;border-radius:9999px;border-width:1px;color:#1b222c;cursor:pointer;display:inline-block;font-size:16px;font-weight:700;line-height:1.5625;margin-bottom:0;min-width:220px;padding:4px 16px;padding-left:20px;padding-right:0;position:relative;text-align:center;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle;white-space:nowrap;width:100%}.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn.active:focus,.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn:active:focus,.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn:focus{outline:none}.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn:focus,.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn:hover{color:#fff;text-decoration:none}.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn.disabled,.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn.disabled.active,.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn.disabled:active,.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn.disabled:focus,.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn.disabled:hover,.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn[disabled],.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn[disabled].active,.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn[disabled]:active,.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn[disabled]:focus,.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn[disabled]:hover,fieldset[disabled] .website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn,fieldset[disabled] .website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn.active,fieldset[disabled] .website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn:active,fieldset[disabled] .website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn:focus,fieldset[disabled] .website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn:hover{box-shadow:none;cursor:not-allowed;opacity:1}.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn fieldset[disabled].btn-info,.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn.disabled.btn-default,.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn.disabled.btn-info,.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn[disabled].btn-default,.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn[disabled].btn-info,fieldset[disabled].btn-default .website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn{filter:alpha(opacity=65);opacity:.65}.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn:hover{background-color:#e7e9ee}.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn:focus{color:#1b222c;outline:none}.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn:active,.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn:focus-visible{box-shadow:0 0 0 2px #97b6e5;outline:none}.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn:active,.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn:focus-visible,.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn:hover{color:#1b222c}.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn.disabled,.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn.disabled.active,.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn.disabled:active,.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn.disabled:focus-visible,.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn.disabled:hover,.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn[disabled],.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn[disabled].active,.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn[disabled]:active,.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn[disabled]:focus-visible,.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn[disabled]:hover,fieldset[disabled] .website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn,fieldset[disabled] .website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn.active,fieldset[disabled] .website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn:active,fieldset[disabled] .website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn:focus-visible,fieldset[disabled] .website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn:hover{background-color:#e7e9ee;border-color:#e7e9ee;color:#afb5c0}.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn[data-ol-loading=true],.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn[data-ol-loading=true]:hover{background-color:#fff!important;border-color:#677283!important;color:#1b222c!important}.website-redesign .home-registration .home-registration-sso .form-group .hp-login-btn .login-btn-icon{height:20px;left:6px;position:absolute;top:7px;width:20px}.website-redesign .home-registration .home-registration-separator{color:#1b222c;margin:8px 0}.website-redesign .home-registration .home-registration-separator>span{vertical-align:middle}.website-redesign .home-registration .home-registration-separator>span:after,.website-redesign .home-registration .home-registration-separator>span:before{background-color:#e7e9ee;content:"";display:inline-block;height:1px;vertical-align:middle;width:196px}@media (max-width:991px){.website-redesign .home-registration .home-registration-separator>span:after,.website-redesign .home-registration .home-registration-separator>span:before{flex-direction:column;width:100%;width:156px}}.website-redesign .home-registration .home-registration-separator>span:before{margin-right:20px}@media (max-width:991px){.website-redesign .home-registration .home-registration-separator>span:before{margin-right:5px}}.website-redesign .home-registration .home-registration-separator>span:after{margin-left:20px}@media (max-width:991px){.website-redesign .home-registration .home-registration-separator>span:after{margin-left:5px}}.website-redesign .home-registration .home-registration-password{display:flex;flex-direction:column}.website-redesign .home-registration .home-registration-password .home-registration-password-input{display:flex;flex-direction:row;gap:16px;margin-bottom:0}.website-redesign .home-registration .home-registration-password input{flex:1}.website-redesign .home-registration .home-registration-sign-up{display:block;margin-bottom:0;margin-top:16px;width:100%}.website-redesign .home-registration .home-registration-sign-up>button{width:100%}.website-redesign .home-registration .tos-agreement-notice{font-size:.75rem}.website-redesign .home-millions-user-text{font-size:1.25rem;margin-bottom:5px;text-align:center}@media (max-width:991px){.website-redesign .home-millions-user-text{font-size:1rem}}.website-redesign .home-university-logos{display:flex;flex-wrap:wrap;justify-content:space-between}.website-redesign .home-university-logos>img{max-width:145px}@media (max-width:991px){.website-redesign .home-university-logos{gap:50px;justify-content:center}.website-redesign .home-templates-button-desktop{display:none}}.website-redesign .home-templates-button-mobile{display:none}@media (max-width:991px){.website-redesign .home-templates-button-mobile{display:block}}.website-redesign .home-plans-footer{font-size:1.125rem;line-height:1.333;text-align:center}.website-redesign #home-features-arrow-green{left:154px;position:absolute;top:-98px}@media (max-width:991px){.website-redesign #home-features-arrow-green{height:100px;left:120px;top:-60px}}.website-redesign #home-rocket-yellow{position:absolute;right:30px}@media (max-width:1199px){.website-redesign #home-rocket-yellow{bottom:-84px;height:100px;right:30px}}@media (max-width:991px){.website-redesign #home-rocket-yellow{bottom:unset;height:70px;margin-right:10px;right:0;top:-79px}}.plans p{color:#495365;margin-bottom:25px}.plans blockquote footer{color:#6d6d6d}@media (min-width:992px){.plans blockquote{margin-bottom:0}}.plans .plans-header h1,.plans .plans-header h2{color:#495365}.plans .circle{background-color:#195936;border-radius:50%;color:#fff;font-size:1.5rem;font-weight:700;height:120px;line-height:1;margin:0 auto 25px;padding:46px 18px;text-shadow:0 -1px 1px #274e8a;white-space:nowrap;width:120px}.plans .circle .small{color:hsla(0,0%,100%,.85);font-size:12.8px}.plans .circle-lg{height:180px;padding:70px 8px;width:180px}.plans .circle-subtext{font-size:1rem}.plans .circle-img{float:right}@media (max-width:991px){.plans .circle-img{float:left;margin:0 15px}}@media (max-width:767px){.plans [data-ol-current-view=group] [data-ol-plans-v2-m-a-switch-container]{display:none}}.plans-v2-top-switch ul.plans-v2-nav{display:flex;justify-content:center}.plans-v2-top-switch ul.plans-v2-nav li{border-bottom:1px solid #677283;border-top:1px solid #677283;height:34px}.plans-v2-top-switch ul.plans-v2-nav li.plans-v2-top-switch-individual{border-bottom-left-radius:17px;border-left:1px solid #677283;border-right:1px solid #677283;border-top-left-radius:17px}.plans-v2-top-switch ul.plans-v2-nav li.plans-v2-top-switch-student{border-bottom-right-radius:17px;border-left:1px solid #677283;border-right:1px solid #677283;border-top-right-radius:17px}.plans-v2-top-switch ul.plans-v2-nav li button{height:100%;padding:4px 16px}.plans-v2-top-switch ul.plans-v2-nav li button.btn:active{box-shadow:none}.plans-v2-top-switch ul.plans-v2-nav li button:active,.plans-v2-top-switch ul.plans-v2-nav li button:focus{outline:none}.plans-v2-top-switch ul.plans-v2-nav li.active{background-color:#495365}.plans-v2-top-switch ul.plans-v2-nav li.active button.btn-default-outline{color:#fff}.plans-v2-top-switch ul.plans-v2-nav li:not(.active){background-color:#fff}@media (max-width:767px){.plans-v2-top-switch ul.plans-v2-nav{margin:0 13px}.plans-v2-top-switch ul.plans-v2-nav li{height:unset}.plans-v2-top-switch ul.plans-v2-nav li.plans-v2-top-switch-individual,.plans-v2-top-switch ul.plans-v2-nav li.plans-v2-top-switch-student{width:27%}.plans-v2-top-switch ul.plans-v2-nav li.plans-v2-top-switch-group{width:46%}.plans-v2-top-switch ul.plans-v2-nav li.plans-v2-top-switch-group span:first-child:after{content:"";display:block}.plans-v2-top-switch ul.plans-v2-nav li.plans-v2-top-switch-group span:last-child{font-weight:400}.plans-v2-top-switch ul.plans-v2-nav li.plans-v2-top-switch-individual button,.plans-v2-top-switch ul.plans-v2-nav li.plans-v2-top-switch-student button{align-items:center;display:flex;justify-content:center;text-align:center}.plans-v2-top-switch ul.plans-v2-nav li button{font-size:14px;padding:4px 8px;white-space:unset;width:100%}}a.btn.plans-v2-btn-header,button.plans-v2-btn-header{background-color:#3265b2;color:#fff;font-family:Lato,sans-serif;margin-top:10px;text-shadow:0 0 0}a.btn.plans-v2-btn-header:hover,button.plans-v2-btn-header:hover{color:#fff}.plans-v2-m-a-switch-container{align-items:center;display:flex;justify-content:center;margin-top:40px;position:relative}.plans-v2-m-a-switch-container .underline{text-decoration:underline}.plans-v2-m-a-switch-container.disabled span{color:#afb5c0}.plans-v2-m-a-switch-container.disabled .plans-v2-m-a-switch input+span{background-color:#afb5c0;cursor:not-allowed}@media (max-width:767px){.plans-v2-m-a-switch-container{margin-top:25px}.plans-v2-m-a-switch-container[data-ol-current-view=group]{display:none}}.plans-v2-m-a-switch{display:inline-block;height:34px;margin:0 30px;position:relative;width:60px}.plans-v2-m-a-switch input{height:0;opacity:0;width:0}.plans-v2-m-a-switch input+span{background-color:#098842}.plans-v2-m-a-switch input:checked+span{background-color:#495365}.plans-v2-m-a-switch input:checked+span:before{transform:translateX(26px)}.plans-v2-m-a-switch span{background-color:#e7e9ee;border-radius:34px;bottom:0;cursor:pointer;left:0;position:absolute;right:0;top:0;transition:.4s}.plans-v2-m-a-switch span:before{background-color:#fff;border-radius:50%;bottom:1px;content:"";height:32px;left:1px;position:absolute;transition:.4s;width:32px}.plans-v2-m-a-switch-annual-text-container{position:relative}.plans-v2-m-a-tooltip{border-radius:4px;color:#fff;padding:5px 10px;position:absolute;right:110%;top:0;width:auto;z-index:0}.plans-v2-m-a-tooltip.tooltip.in.left .tooltip-inner{background-color:#098842}.plans-v2-m-a-tooltip.tooltip.in.left .tooltip-arrow{border-left-color:#098842}.plans-v2-m-a-tooltip span{white-space:nowrap}@media (max-width:767px){.plans-v2-m-a-tooltip{right:-31%;top:unset}.plans-v2-m-a-tooltip.tooltip.in.bottom .tooltip-inner{background-color:#098842}.plans-v2-m-a-tooltip.tooltip.in.bottom .tooltip-arrow{border-bottom-color:#098842;border-left-color:unset}.plans-v2-m-a-tooltip.plans-v2-m-a-tooltip-monthly-selected{right:-119%}.plans-v2-m-a-tooltip span{font-size:12px;position:relative}.page-header.top-page-header{border-bottom:none;margin-bottom:0;padding-bottom:0}.page-header.top-page-header h1{margin-top:0}}.plans-v2-table-comments-icon{height:65px}.plans-v2-table-comments-icon i{font-size:50px}@media (max-width:767px){.plans-v2-table-comments-icon{height:58px}}.plans-v2-table-container{position:relative}.plans-v2-license-picker-form{align-items:center;display:flex;justify-content:center;margin-top:25px;width:100%}@media (max-width:767px){.plans-v2-license-picker-form{flex-direction:column;font-size:14px;margin-top:15px}}.plans-v2-license-picker-select{background-color:#fff;border:1px solid #ccc;height:30px;margin:0 10px;padding-left:10px;width:64px}@media (max-width:767px){.plans-v2-license-picker-select{margin:0 15px}}.plans-v2-license-picker-educational-discount{align-items:center;display:flex}@media (max-width:767px){.plans-v2-license-picker-educational-discount{margin-top:15px}}.plans-v2-license-picker-educational-discount-label{align-items:center;display:flex;font-weight:400;margin-bottom:0}.plans-v2-license-picker-educational-discount-label.disabled span{color:#afb5c0}input[type=checkbox].plans-v2-license-picker-educational-discount-checkbox{margin-right:10px;margin-top:0}@media (max-width:767px){input[type=checkbox].plans-v2-license-picker-educational-discount-checkbox{margin-right:25px;transform:scale(2.307)}}i.plans-v2-license-picker-educational-discount-question-icon{margin-left:5px}@media (max-width:767px){i.plans-v2-license-picker-educational-discount-question-icon{display:none}}span.plans-v2-license-picker-educational-discount-learn-more-container{display:none}@media (max-width:767px){span.plans-v2-license-picker-educational-discount-learn-more-container{display:inline;margin-left:5px;white-space:nowrap}span.plans-v2-license-picker-educational-discount-learn-more-container span.plans-v2-license-picker-educational-discount-learn-more-text{color:#0a95ff}span.plans-v2-license-picker-educational-discount-learn-more-container .tooltip{white-space:normal}}.plans-v2-table-individual,.plans-v2-table-student{margin-top:70px}@media (max-width:767px){.plans-v2-table-individual,.plans-v2-table-student{margin-top:90px}.plans-v2-table-individual th .plans-v2-table-th-content,.plans-v2-table-student th .plans-v2-table-th-content{min-height:280px}}.plans-v2-table-student tr th:last-of-type>.plans-v2-table-th,.plans-v2-table-student tr:last-child td:first-child{background-color:#f4f5f6}.plans-v2-table-student tr:last-child td:first-child .plans-v2-table-feature-name{border-bottom-left-radius:20px}@media (max-width:767px){.plans-v2-table-student tr:last-child td:first-child .plans-v2-table-feature-name{border-bottom-left-radius:0}}.plans-v2-table-student tr:last-child td:last-child{background-color:#f4f5f6}.plans-v2-table-student tr:last-child td:last-child .plans-v2-table-cell{border-bottom-right-radius:20px}@media (max-width:767px){.plans-v2-table-student tr:last-child td:last-child .plans-v2-table-cell{border-bottom-right-radius:0}}.plans-v2-table-student th:not(.plans-v2-table-green-highlighted):nth-last-child(2) .plans-v2-table-th{border-top-right-radius:20px}@media (max-width:767px){.plans-v2-table-student th:not(.plans-v2-table-green-highlighted):nth-last-child(2) .plans-v2-table-th{border-top-right-radius:0}}.plans-v2-table-student th:not(.plans-v2-table-green-highlighted):nth-child(2) .plans-v2-table-th{border-top-left-radius:20px}@media (max-width:767px){.plans-v2-table-student th:not(.plans-v2-table-green-highlighted):nth-child(2) .plans-v2-table-th{border-top-right-radius:0}}@media (max-width:1199px){.plans-v2-table-student tr:first-of-type th:last-of-type{display:none}}.plans-v2-table-individual tr:last-child td:first-child{background-color:#f4f5f6}.plans-v2-table-individual tr:last-child td:first-child .plans-v2-table-feature-name{border-bottom-left-radius:20px}@media (max-width:767px){.plans-v2-table-individual tr:last-child td:first-child .plans-v2-table-feature-name{border-bottom-left-radius:0}}.plans-v2-table-individual tr:last-child td:last-child{background-color:#f4f5f6}.plans-v2-table-individual tr:last-child td:last-child .plans-v2-table-cell{border-bottom-right-radius:20px}@media (max-width:767px){.plans-v2-table-individual tr:last-child td:last-child .plans-v2-table-cell{border-bottom-right-radius:0}}.plans-v2-table-individual tr:not(.plans-v2-table-divider) td{background-color:#fff}.plans-v2-table-individual th:last-child .plans-v2-table-th{border-top-right-radius:20px}@media (max-width:767px){.plans-v2-table-individual th:last-child .plans-v2-table-th{border-top-right-radius:0}}.plans-v2-table-individual th:nth-child(2) .plans-v2-table-th{border-top-left-radius:20px}@media (max-width:767px){.plans-v2-table-individual th:nth-child(2) .plans-v2-table-th{border-top-left-radius:0}}.plans-v2-table-group{margin-top:56px}.plans-v2-table-group p.plans-v2-table-th-content-title{font-size:19px}@media (max-width:1199px){.plans-v2-table-group p.plans-v2-table-th-content-title{font-size:16px}}@media (max-width:767px){.plans-v2-table-group p.plans-v2-table-th-content-title{font-size:14px}}.plans-v2-table-group tr:first-of-type th:last-child>.plans-v2-table-th{border-top-right-radius:20px}@media (max-width:767px){.plans-v2-table-group tr:first-of-type th:last-child>.plans-v2-table-th{border-top-right-radius:0}}.plans-v2-table-group tr:last-of-type td:last-child>.plans-v2-table-cell{border-bottom-right-radius:20px}@media (max-width:767px){.plans-v2-table-group tr:last-of-type td:last-child>.plans-v2-table-cell{border-bottom-right-radius:0}}.plans-v2-table{background-color:#f4f5f6;height:100%;margin-bottom:15px;table-layout:fixed;width:100%}.plans-v2-table .plans-v2-table-row-header{font-weight:500}.plans-v2-table tr{height:100%}.plans-v2-table .plans-v2-table-column-header,.plans-v2-table td{background-clip:padding-box;text-align:center}.plans-v2-table .plans-v2-table-column-header:not(.plans-v2-table-cell-before-green-highlighted-column):not(.plans-v2-table-green-highlighted):not(.plans-v2-table-divider-highlighted),.plans-v2-table td:not(.plans-v2-table-cell-before-green-highlighted-column):not(.plans-v2-table-green-highlighted):not(.plans-v2-table-divider-highlighted){border-right:1px solid #f4f5f6}@media (max-width:767px){.plans-v2-table .plans-v2-table-column-header:not(.plans-v2-table-cell-before-green-highlighted-column):not(.plans-v2-table-green-highlighted):not(.plans-v2-table-divider-highlighted),.plans-v2-table td:not(.plans-v2-table-cell-before-green-highlighted-column):not(.plans-v2-table-green-highlighted):not(.plans-v2-table-divider-highlighted){border-right:none}}.plans-v2-table .plans-v2-table-column-header{background-color:#f4f5f6;border-top:0;font-family:Merriweather,serif;font-size:25px;font-weight:500;line-height:1.35;padding:0;position:relative;vertical-align:top}.plans-v2-table .plans-v2-table-column-header:first-child{border-left:0}.plans-v2-table .plans-v2-table-column-header:last-child{border-right:0}.plans-v2-table td{height:100%;vertical-align:middle}.plans-v2-table td:last-child:not(.plans-v2-table-green-highlighted):not(.plans-v2-table-divider-highlighted){border-right:0}.plans-v2-table tr:first-child th{position:relative}.plans-v2-table tr:nth-child(2) .plans-v2-table-row-header:first-child{background-color:#f4f5f6}.plans-v2-table tr:nth-child(2) .plans-v2-table-row-header:first-child .plans-v2-table-feature-name{border-top-left-radius:20px}@media (max-width:767px){.plans-v2-table tr:nth-child(2) .plans-v2-table-row-header:first-child .plans-v2-table-feature-name{border-top-left-radius:0}}.plans-v2-table tr:not(.plans-v2-table-row-last-row-per-section):not(.plans-v2-table-divider):not(:last-of-type) td>.plans-v2-table-cell>.plans-v2-table-cell-content,.plans-v2-table tr:not(.plans-v2-table-row-last-row-per-section):not(.plans-v2-table-divider):not(:last-of-type) td>.plans-v2-table-feature-name,.plans-v2-table tr:not(.plans-v2-table-row-last-row-per-section):not(.plans-v2-table-divider):not(:last-of-type) th>.plans-v2-table-th>.plans-v2-table-th-content{border-bottom:1px solid #f4f5f6}@media (max-width:767px){.plans-v2-table tr:not(.plans-v2-table-row-last-row-per-section):not(.plans-v2-table-divider):not(:last-of-type) td>.plans-v2-table-cell>.plans-v2-table-cell-content,.plans-v2-table tr:not(.plans-v2-table-row-last-row-per-section):not(.plans-v2-table-divider):not(:last-of-type) td>.plans-v2-table-feature-name,.plans-v2-table tr:not(.plans-v2-table-row-last-row-per-section):not(.plans-v2-table-divider):not(:last-of-type) th>.plans-v2-table-th>.plans-v2-table-th-content{border-bottom:unset}}.plans-v2-table tr:last-child td.plans-v2-table-green-highlighted>.plans-v2-table-cell{border-bottom:2px solid #098842}@media (max-width:767px){.plans-v2-table tr:last-child td.plans-v2-table-green-highlighted>.plans-v2-table-cell{border-bottom:unset}}.plans-v2-table .fa-check{color:#098842}@media (min-width:768px){.plans-v2-table tr:not(.plans-v2-table-divider):not(:first-child):hover,.plans-v2-table tr:not(.plans-v2-table-divider):not(:first-child):hover .plans-v2-table-cell,.plans-v2-table tr:not(.plans-v2-table-divider):not(:first-child):hover .plans-v2-table-feature-name{background-color:#f4f5f6}}@media (max-width:991px){.plans-v2-table{font-size:14px}}@media (max-width:767px){.plans-v2-table tr{display:flex;flex-flow:row wrap;justify-content:space-around}.plans-v2-table tr.plans-v2-table-cols-4:not(.plans-v2-table-divider) td,.plans-v2-table tr.plans-v2-table-cols-4:not(.plans-v2-table-divider) th:not(:first-of-type){width:25%}.plans-v2-table tr.plans-v2-table-cols-3:not(.plans-v2-table-divider) td,.plans-v2-table tr.plans-v2-table-cols-3:not(.plans-v2-table-divider) th:not(:first-of-type){width:33.33333%}.plans-v2-table tr.plans-v2-table-cols-2:not(.plans-v2-table-divider) td,.plans-v2-table tr.plans-v2-table-cols-2:not(.plans-v2-table-divider) th:not(:first-of-type){width:50%}.plans-v2-table .plans-v2-table-column-header{font-size:12px}.plans-v2-table tr:first-child th:first-child{display:none}.plans-v2-table .plans-v2-table-row-header{background:#f4f5f6;width:100vw}.plans-v2-table .plans-v2-table-row-header span.plans-v2-table-feature-name{width:100%}.plans-v2-table .plans-v2-table-row-header span.plans-v2-table-feature-name span{text-align:left}}.plans-v2-table-cell{background-color:#fff;height:100%}.plans-v2-table-cell .plans-v2-table-cell-content{align-items:center;display:flex;height:100%;justify-content:center}@media (max-width:767px){.plans-v2-table-cell .plans-v2-table-cell-content{min-height:34px;padding:6px}}.plans-v2-table-th{background-color:#fff;height:100%}.plans-v2-table-th .plans-v2-table-th-content{display:flex;flex-direction:column;height:100%;min-height:321px;padding:10px 13px}@media (max-width:1199px){.plans-v2-table-th .plans-v2-table-th-content{min-height:330px}}@media (max-width:991px){.plans-v2-table-th .plans-v2-table-th-content{padding-left:5px;padding-right:5px}}.plans-v2-table-btn-buy-container-desktop{display:flex;flex-direction:column;margin-top:auto;min-height:60px}@media (max-width:767px){.plans-v2-table-btn-buy-container-desktop{display:none}}.plans-v2-table-btn-buy-container-mobile{display:none}@media (max-width:767px){.plans-v2-table-btn-buy-container-mobile{display:flex;flex-direction:column;margin-top:10px;min-height:50px}}.plans-v2-table-btn-buy{font-family:Lato,sans-serif;padding:4px 15px 5px}@media (min-width:768px){.plans-v2-table-btn-buy .hidden-desktop{display:none}}@media (max-width:991px){.plans-v2-table-btn-buy{font-size:14px}}@media (max-width:767px){.plans-v2-table-btn-buy{padding-left:9px;padding-right:9px}.plans-v2-table-btn-buy .hidden-mobile{display:none}}p.plans-v2-table-th-content-title{border-bottom:1px solid #d0d5dd;font-size:20px;margin-bottom:30px;padding-bottom:10px}@media (max-width:1199px){p.plans-v2-table-th-content-title{font-size:16px}}@media (max-width:767px){p.plans-v2-table-th-content-title{font-size:14px;margin-bottom:20px;min-height:40px;padding-bottom:0}}p.plans-v2-table-th-content-benefit,ul.plans-v2-table-th-content-benefit{font-family:Lato,sans-serif;font-size:14px;-webkit-hyphens:auto;hyphens:auto;line-height:23px;padding-top:15px}ul.plans-v2-table-th-content-benefit{margin-bottom:0;padding-left:15px;text-align:left}ul.plans-v2-table-th-content-benefit li a{color:#677283;text-decoration:underline}.plans-v2-group-total-price{font-weight:700}.plans-v2-table-price-container{position:relative}p.plans-v2-table-price-period-label{color:#677283;font-family:Lato,sans-serif;font-size:14px;line-height:23px;margin:0}p.plans-v2-table-price{margin:0}p.plans-v2-table-price span{font-size:32px;font-weight:700;line-height:42px}@media (max-width:767px){p.plans-v2-table-price span{font-size:20px;line-height:35px}}s.plans-v2-table-price-before-discount{color:#afb5c0;display:flex;font-size:14px;font-weight:700;justify-content:center;line-height:42px;position:absolute;top:-27px;width:100%}@media (max-width:767px){s.plans-v2-table-price-before-discount{font-size:12px}}small.plans-v2-table-th-content-additional-link{font-family:Lato,sans-serif;font-size:12px;height:16px;margin-top:5px;text-transform:lowercase}small.plans-v2-table-th-content-additional-link a{color:#2f3a4c;text-decoration:underline}.plans-v2-table-feature-name{align-items:center;background-color:#fff;display:flex;justify-content:space-between;padding:6px 6px 6px 18px}.plans-v2-table-feature-name i.plans-v2-table-feature-name-question-icon{margin-left:10px}.plans-v2-table-feature-name span.plans-v2-table-feature-name-learn-more-container{display:none}@media (max-width:767px){.plans-v2-table-feature-name{background-color:#f4f5f6;display:inline-block;min-height:34px;padding:6px;text-align:left;width:100%}.plans-v2-table-feature-name i.plans-v2-table-feature-name-question-icon{display:none}.plans-v2-table-feature-name span.plans-v2-table-feature-name-learn-more-container{display:inline;margin-left:5px;white-space:nowrap}.plans-v2-table-feature-name span.plans-v2-table-feature-name-learn-more-container span.plans-v2-table-feature-name-learn-more-text{color:#0a95ff}.plans-v2-table-feature-name span.plans-v2-table-feature-name-learn-more-container .tooltip{white-space:normal}}tr.plans-v2-table-divider{background-color:#e7e9ee}tr.plans-v2-table-divider td>div{padding:6px;text-align:center}tr.plans-v2-table-divider td>div .plans-v2-table-divider-label{margin-bottom:0;margin-right:5px}tr.plans-v2-table-divider td>div .plans-v2-table-divider-learn-more-container{display:none}tr.plans-v2-table-divider .plans-v2-table-divider-highlighted>div{border-right:2px solid #098842}@media (max-width:767px){tr.plans-v2-table-divider td[colspan]{padding-left:0;padding-right:0;padding-top:0}tr.plans-v2-table-divider td[colspan]>div{background-color:#e7e9ee;padding:15px 5px}tr.plans-v2-table-divider td[colspan]>div i.plans-v2-table-divider-question-icon{display:none}tr.plans-v2-table-divider td[colspan]>div .plans-v2-table-divider-learn-more-container{display:inline;white-space:nowrap}tr.plans-v2-table-divider td[colspan]>div .plans-v2-table-divider-learn-more-container span.plans-v2-table-divider-learn-more-text{color:#0a95ff}tr.plans-v2-table-divider td[colspan]>div .plans-v2-table-divider-learn-more-container .tooltip{white-space:normal}tr.plans-v2-table-divider .plans-v2-table-divider-highlighted>div{border-right:none}}.plans-v2-table-green-highlighted>.plans-v2-table-cell,.plans-v2-table-green-highlighted>.plans-v2-table-th{border-left:2px solid #098842;border-right:2px solid #098842}@media (max-width:767px){.plans-v2-table-green-highlighted>.plans-v2-table-cell,.plans-v2-table-green-highlighted>.plans-v2-table-th{border-left:unset;border-right:unset}}p.plans-v2-table-green-highlighted-text{align-items:center;background-color:#098842;border:2px solid #098842;border-radius:20px 20px 0 0;color:#fff;display:flex;font-family:Lato,sans-serif;font-size:14px;font-weight:700;height:30px;justify-content:center;left:0;line-height:19px;margin:0;position:absolute;top:-30px;width:100%}@media (max-width:991px){p.plans-v2-table-green-highlighted-text{height:41px;top:-41px}}@media (max-width:767px){p.plans-v2-table-green-highlighted-text{font-size:12px;line-height:15px;padding-left:5px;padding-right:5px}.plans-v2-table-sticky-header-container{height:60%;position:absolute;width:100%}}.plans-v2-table-sticky-header-without-switch{margin-bottom:-107px;margin-top:67px}.plans-v2-table-sticky-header-with-switch{margin-bottom:-140px;margin-top:100px}.plans-v2-table-sticky-header{display:none}@media (max-width:767px){.plans-v2-table-sticky-header{display:flex;height:40px;left:0;top:0;width:100vw;z-index:100}.plans-v2-table-sticky-header.sticky{position:sticky}}.plans-v2-table-sticky-header-item{background-color:#fff;flex:1 1 0px}.plans-v2-table-sticky-header-item span{align-items:center;border-bottom:1px solid #ccc;display:flex;font-family:Merriweather,serif;height:100%;justify-content:center;margin:0 5px}@media (max-width:767px){.plans-v2-table-sticky-header-item span{font-size:14px;line-height:19px;text-align:center}}.plans-v2-table-sticky-header-item-green-highlighted span{color:#098842}.plans-v2-faq p{margin:0}.plans-v2-faq p>a{color:#3265b2}.plans-v2-faq p>a:hover{color:#28518f}.plans-v2-university-info{background-color:#e7e9ee;border-radius:20px;padding:30px 50px}.plans-v2-university-info h3.plans-v2-university-info-header{margin:0 40px 20px 40px}.plans-v2-university-info p.plans-v2-university-info-text{margin:0 40px}.plans-v2-university-info a.plans-v2-btn-university-info{margin-top:20px}@media (max-width:991px){.plans-v2-university-info h3.plans-v2-university-info-header{margin:0 0 20px 0}.plans-v2-university-info p.plans-v2-university-info-text{margin:0}}@media (max-width:767px){.plans-v2-university-info{padding:30px}}.plans-page-quote-row{margin:var(--spacing-13) 0}.plans-page-quote-row-hidden{display:none}.plans-page{padding-top:calc(var(--spacing-16) + var(--header-height))}.plans-page p{color:#495365;margin-bottom:25px}.plans-page .plans-header h1,.plans-page .plans-header h2{color:#495365}.plans-page .group-customize-subscription-modal .modal-footer .btn-lg{margin-bottom:var(--spacing-05)}.plans-page .group-customize-subscription-modal .btn-inline-link{color:var(--green-50);font-weight:400;text-decoration:underline;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}.plans-page .group-customize-subscription-modal .btn-inline-link:hover{color:var(--green-60)}.plans-page .group-customize-subscription-modal .btn-inline-link:focus{outline:2px solid var(--green-50);outline-offset:1px}.plans-page .group-customize-subscription-modal .circle{background-color:var(--green-50);border-radius:50%;color:#fff;font-size:var(--font-size-05);height:120px;line-height:var(--line-height-04);margin:0 auto 25px;padding:46px 18px;white-space:nowrap;width:120px}.plans-page .group-customize-subscription-modal .circle .group-price{font-weight:600}.plans-page .group-customize-subscription-modal .circle .group-price-per-user{font-size:var(--font-size-02);font-weight:400;line-height:var(--line-height-02)}.plans-page .group-customize-subscription-modal .circle-lg{height:180px;padding:70px 8px;width:180px}.plans-page .group-customize-subscription-modal .group-plan-option{display:block;margin-bottom:var(--spacing-04)}.plans-page .group-customize-subscription-modal label span{font-size:var(--font-size-03);font-weight:400;line-height:var(--line-height-03);padding-left:var(--spacing-04)}.plans-page .group-customize-subscription-modal input[type=checkbox],.plans-page .group-customize-subscription-modal input[type=radio]{accent-color:var(--green-50)}.plans-page .group-customize-subscription-modal input[type=checkbox]{height:16px;width:16px}.plans-page .group-customize-subscription-modal .form-group{margin-bottom:var(--spacing-06)}.plans-page .group-customize-subscription-modal .group-plan-educational-discount{font-weight:400}.plans-page .group-customize-subscription-modal .educational-discount-section{margin-top:var(--spacing-06)}.plans-page .group-customize-subscription-modal .group-modal-features{font-size:var(--font-size-02);line-height:var(--line-height-02)}.plans-page .group-customize-subscription-modal .group-modal-features ul{margin-bottom:0}.plans-page .group-customize-subscription-modal .group-modal-features .list-item-pro-features-header,.plans-page .group-customize-subscription-modal .group-modal-features ul{margin-top:var(--spacing-06)}.plans-page .plans-top-switch ul{background-color:var(--neutral-10);border-radius:var(--border-radius-full-new);display:inline-flex;justify-content:center;margin:var(--spacing-09) auto 0 auto;padding:var(--spacing-01)}.plans-page .plans-top-switch ul li{display:flex;margin-right:var(--spacing-02)}.plans-page .plans-top-switch ul li:last-child{margin-right:0}.plans-page .plans-top-switch ul li button{background-color:var(--neutral-10);border-radius:var(--border-radius-full-new);color:var(--neutral-70);font-size:var(--font-size-03);font-weight:600;line-height:var(--line-height-03);padding:0 var(--spacing-04)}.plans-page .plans-top-switch ul li button.btn:active{box-shadow:none}.plans-page .plans-top-switch ul li button:hover{background-color:var(--neutral-20);color:var(--neutral-70)}.plans-page .plans-top-switch ul li button:focus{outline:0}.plans-page .plans-top-switch ul li button:focus-visible{box-shadow:0 0 0 2px #97b6e5;outline:0}.plans-page .plans-top-switch ul li.active button{background-color:var(--neutral-70);border-color:var(--neutral-70);color:var(--white);cursor:pointer}@media (max-width:767px){.plans-page .plans-top-switch ul,.plans-page .plans-top-switch ul li button{border-radius:var(--border-radius-base-new)}.plans-page .plans-top-switch ul li button{text-wrap:auto;font-size:var(--font-size-01);line-height:var(--line-height-01);padding:var(--spacing-02) var(--spacing-04)}.plans-page .plans-top-switch ul li.plans-switch-group span:first-child:after{content:"";display:block}.plans-page .plans-top-switch ul li.plans-switch-group span:last-child{font-weight:400}}.plans-page a.btn.plans-v2-btn-header-light,.plans-page button.plans-v2-btn-header-light{font-family:Lato,sans-serif}.plans-page .monthly-annual-switch{align-items:center;display:flex;justify-content:center;margin-top:var(--spacing-10);position:relative}.plans-page .monthly-annual-switch .underline{text-decoration:underline}.plans-page .monthly-annual-switch.disabled{display:none}@media (max-width:767px){.plans-page .monthly-annual-switch{margin-top:var(--spacing-08)}}.plans-page .monthly-annual-switch label{display:inline-block;height:34px;margin:0 var(--spacing-05);position:relative;width:60px}.plans-page .monthly-annual-switch label input{height:0;opacity:0;width:0}.plans-page .monthly-annual-switch label input+span{background-color:var(--green-50)}.plans-page .monthly-annual-switch label input:checked+span{background-color:var(--neutral-70)}.plans-page .monthly-annual-switch label input:checked+span:before{transform:translateX(26px)}.plans-page .monthly-annual-switch label span{border-radius:34px;bottom:0;cursor:pointer;left:0;position:absolute;right:0;top:0;transition:.4s}.plans-page .monthly-annual-switch label span:before{background-color:#fff;border-radius:50%;bottom:2px;content:"";height:30px;left:2px;position:absolute;transition:.4s;width:30px}.plans-page .monthly-annual-switch-text{position:relative}.plans-page .monthly-annual-switch-text .tooltip{border-radius:var(--border-radius-base-new);color:#fff;font-weight:600;margin-right:var(--spacing-05);opacity:1;position:absolute;right:100%;top:0;width:auto;z-index:0}.plans-page .monthly-annual-switch-text .tooltip.tooltip.in.left .tooltip-inner{background-color:var(--green-50)}.plans-page .monthly-annual-switch-text .tooltip.tooltip.in.left .tooltip-arrow{border-left-color:var(--green-50)}.plans-page .monthly-annual-switch-text .tooltip span{white-space:nowrap}@media (max-width:767px){.plans-page .monthly-annual-switch-text .tooltip{right:-31%;top:unset}.plans-page .monthly-annual-switch-text .tooltip.tooltip.in.bottom .tooltip-inner{background-color:var(--green-50)}.plans-page .monthly-annual-switch-text .tooltip.tooltip.in.bottom .tooltip-arrow{border-bottom-color:var(--green-50);border-left-color:unset}.plans-page .monthly-annual-switch-text .tooltip.plans-v2-m-a-tooltip-monthly-selected{right:-119%}.plans-page .monthly-annual-switch-text .tooltip span{font-size:12px;position:relative}.plans-page .page-header.top-page-header{border-bottom:none;margin-bottom:0;padding-bottom:0}.plans-page .page-header.top-page-header h1{margin-top:0}}.plans-page .plans-table-comments-icon i{font-size:64px}.plans-page .plans-table-container{position:relative}.plans-page .plans-license-picker-form{align-items:center;display:flex;font-size:var(--font-size-03);justify-content:center;line-height:var(--line-height-03);margin-top:var(--spacing-08);width:100%}.plans-page .plans-license-picker-form .plans-license-picker-select-container span{font-weight:700}.plans-page .plans-license-picker-form select{background-color:#fff;border:1px solid var(--neutral-60);border-radius:var(--border-radius-base-new);font-size:var(--font-size-02);height:31px;line-height:var(--line-height-02);margin-left:var(--spacing-04);padding:5.5px var(--spacing-04);width:53px}@media (max-width:767px){.plans-page .plans-license-picker-form select{margin:0 15px}}.plans-page .plans-license-picker-form i{margin-left:var(--spacing-04)}@media (max-width:767px){.plans-page .plans-license-picker-form i{display:none}}.plans-page .plans-license-picker-form .plans-v2-license-picker-educational-discount{align-items:center;display:flex;margin-left:var(--spacing-06)}.plans-page .plans-license-picker-form .plans-v2-license-picker-educational-discount.total-licenses-not-eligible-for-discount{display:none}@media (max-width:767px){.plans-page .plans-license-picker-form .plans-v2-license-picker-educational-discount{margin-top:15px}}.plans-page .plans-license-picker-form label{align-items:center;display:flex;font-weight:400;margin-bottom:0}.plans-page .plans-license-picker-form label.disabled span{color:var(--neutral-40)}.plans-page .plans-license-picker-form input[type=checkbox].plans-v2-license-picker-educational-discount-checkbox{margin-right:var(--spacing-04);margin-top:0}@media (max-width:767px){.plans-page .plans-license-picker-form input[type=checkbox].plans-v2-license-picker-educational-discount-checkbox{margin-right:25px;transform:scale(2.307)}}.plans-page .plans-license-picker-form span.plans-v2-license-picker-educational-discount-learn-more-container{display:none}@media (max-width:767px){.plans-page .plans-license-picker-form span.plans-v2-license-picker-educational-discount-learn-more-container{display:inline;margin-left:5px;white-space:nowrap}.plans-page .plans-license-picker-form span.plans-v2-license-picker-educational-discount-learn-more-container span.plans-v2-license-picker-educational-discount-learn-more-text{color:#0a95ff}.plans-page .plans-license-picker-form span.plans-v2-license-picker-educational-discount-learn-more-container .tooltip{white-space:normal}.plans-page .plans-license-picker-form{flex-direction:column;font-size:var(--font-size-02);margin-top:var(--spacing-06)}}.plans-page .plans-table-individual,.plans-page .plans-table-student{margin-top:72px}@media (max-width:767px){.plans-page .plans-table-individual,.plans-page .plans-table-student{margin-top:92px}}@media (max-width:1199px){.plans-page .plans-table-student tr:first-of-type th:last-of-type{display:none}}.plans-page .plans-table-group{margin-top:72px}@media (max-width:767px){.plans-page .plans-table-group{margin-top:81px}}.plans-page .plans-table{background-color:#fff;height:100%;margin-bottom:15px;table-layout:fixed;width:100%}.plans-page .plans-table .plans-table-comments-icon,.plans-page .plans-table .plans-table-price,.plans-page .plans-table .plans-table-th-content{color:var(--neutral-90)}.plans-page .plans-table .plans-table-short-feature-list ul{color:var(--neutral-70);font-size:var(--font-size-02);-webkit-hyphens:auto;hyphens:auto;line-height:var(--line-height-02);margin-bottom:0;padding-left:15px;text-align:left}.plans-page .plans-table td>div,.plans-page .plans-table th>div{border-bottom:0;border-left:2px solid var(--neutral-10);border-right:2px solid var(--neutral-10);border-top:2px solid var(--neutral-10)}.plans-page .plans-table td>div.plans-table-cell-cta-desktop,.plans-page .plans-table td>div.plans-table-cell-cta-mobile,.plans-page .plans-table td>div.plans-table-cell-divider,.plans-page .plans-table td>div.plans-table-cell-price,.plans-page .plans-table td>div.plans-table-cell-short-feature-list,.plans-page .plans-table th>div.plans-table-cell-cta-desktop,.plans-page .plans-table th>div.plans-table-cell-cta-mobile,.plans-page .plans-table th>div.plans-table-cell-divider,.plans-page .plans-table th>div.plans-table-cell-price,.plans-page .plans-table th>div.plans-table-cell-short-feature-list{border-top:0}.plans-page .plans-table td>div.plans-table-cell-divider,.plans-page .plans-table th>div.plans-table-cell-divider{border-bottom:0}@media (max-width:767px){.plans-page .plans-table td>div,.plans-page .plans-table th>div{border:0}.plans-page .plans-table td>div.plans-table-th,.plans-page .plans-table th>div.plans-table-th{border-top:2px solid var(--neutral-10)}}.plans-page .plans-table td>div>div,.plans-page .plans-table th>div>div{padding:var(--spacing-05) var(--spacing-08)}@media (max-width:991px){.plans-page .plans-table td>div>div,.plans-page .plans-table th>div>div{padding:var(--spacing-05)}}@media (max-width:767px){.plans-page .plans-table td>div>div,.plans-page .plans-table th>div>div{padding:var(--spacing-03)}}.plans-page .plans-table td>div.plans-table-th>div,.plans-page .plans-table th>div.plans-table-th>div{padding-bottom:var(--spacing-04);padding-top:var(--spacing-06)}.plans-page .plans-table td>div.plans-table-cell-price>div,.plans-page .plans-table th>div.plans-table-cell-price>div{padding-bottom:var(--spacing-06);padding-top:0}@media (max-width:767px){.plans-page .plans-table td>div.plans-table-cell-price>div,.plans-page .plans-table th>div.plans-table-cell-price>div{padding-top:var(--spacing-05)}}.plans-page .plans-table td>div.plans-table-cell-short-feature-list>div,.plans-page .plans-table th>div.plans-table-cell-short-feature-list>div{padding-bottom:0;padding-top:0}@media (max-width:767px){.plans-page .plans-table td>div.plans-table-cell-short-feature-list>div,.plans-page .plans-table th>div.plans-table-cell-short-feature-list>div{padding-bottom:var(--spacing-06)}}.plans-page .plans-table td>div.plans-table-cell-cta-desktop>div,.plans-page .plans-table th>div.plans-table-cell-cta-desktop>div{padding-top:var(--spacing-08)}.plans-page .plans-table td>div.plans-table-cell-cta-mobile>div,.plans-page .plans-table th>div.plans-table-cell-cta-mobile>div{padding-bottom:var(--spacing-06);padding-top:0}.plans-page .plans-table td>div.plans-table-feature-name>div,.plans-page .plans-table th>div.plans-table-feature-name>div{padding-left:var(--spacing-05)}.plans-page .plans-table td>div.plans-table-cell-divider>div,.plans-page .plans-table th>div.plans-table-cell-divider>div{padding:var(--spacing-05) var(--spacing-08)}.plans-page .plans-table .plans-table-green-highlighted~td>div,.plans-page .plans-table .plans-table-green-highlighted~th>div{border-left:0}.plans-page .plans-table td:has(~.plans-table-green-highlighted)>div,.plans-page .plans-table th:has(~.plans-table-green-highlighted)>div{border-right:0}.plans-page .plans-table td.plans-table-green-highlighted>div,.plans-page .plans-table th.plans-table-green-highlighted>div{border-left:var(--border-width-base) solid var(--green-50);border-right:var(--border-width-base) solid var(--green-50);border-top:0}.plans-page .plans-table td.plans-table-green-highlighted>div.plans-table-th,.plans-page .plans-table th.plans-table-green-highlighted>div.plans-table-th{border-top:2px solid var(--green-50)}.plans-page .plans-table td.plans-table-green-highlighted>div .plans-table-cell-content,.plans-page .plans-table th.plans-table-green-highlighted>div .plans-table-cell-content{border-top:2px solid var(--neutral-10)}@media (max-width:767px){.plans-page .plans-table td.plans-table-green-highlighted>div,.plans-page .plans-table td.plans-table-green-highlighted>div .plans-table-cell-content,.plans-page .plans-table th.plans-table-green-highlighted>div,.plans-page .plans-table th.plans-table-green-highlighted>div .plans-table-cell-content{border:0}}.plans-page .plans-table tr.plans-table-divider .plans-table-last-col-highlighted>div{border-right:var(--border-width-base) solid var(--green-50)}.plans-page .plans-table tr:last-child td>div,.plans-page .plans-table tr:last-child th>div{border-bottom:2px solid var(--neutral-10)}.plans-page .plans-table tr:last-child td.plans-table-green-highlighted>div{border-bottom:var(--border-width-base) solid var(--green-50)}@media (max-width:767px){.plans-page .plans-table tr:last-child td.plans-table-green-highlighted>div{border-bottom:2px solid var(--neutral-10)}}.plans-page .plans-table tr.plans-table-divider+tr .plans-table-green-highlighted .plans-table-cell-content,.plans-page .plans-table tr.plans-table-divider+tr td>div,.plans-page .plans-table tr.plans-table-divider+tr th>div{border-top:0}.plans-page .plans-table tr.plans-table-cols-2 th:last-child div{border:0}.plans-page .plans-table tr th:nth-child(2):not(.plans-table-green-highlighted) .plans-table-th{border-top-left-radius:var(--border-radius-medium-new)}@media (max-width:767px){.plans-page .plans-table tr th:nth-child(2):not(.plans-table-green-highlighted) .plans-table-th{border-top-left-radius:0}}.plans-page .plans-table tr:first-of-type th:last-child>.plans-table-th{border-top-right-radius:var(--border-radius-medium-new)}@media (max-width:767px){.plans-page .plans-table tr:first-of-type th:last-child>.plans-table-th{border-top-right-radius:0}}.plans-page .plans-table tr:last-child td:last-child .plans-table-cell{border-bottom-right-radius:var(--border-radius-medium-new)}@media (max-width:767px){.plans-page .plans-table tr:last-child td:last-child .plans-table-cell{border-bottom-right-radius:0}}@media (min-width:768px){.plans-page .plans-table tr:last-child th .plans-table-feature-name{border-bottom-left-radius:var(--border-radius-medium-new)}}.plans-page .plans-table tr .plans-table-first-feature-header>.plans-table-feature-name{border-top-left-radius:var(--border-radius-medium-new)}@media (max-width:767px){.plans-page .plans-table tr .plans-table-first-feature-header>.plans-table-feature-name{border-top-left-radius:0}}.plans-page .plans-table th[scope=row]{font-weight:500}.plans-page .plans-table tr{height:100%}.plans-page .plans-table td,.plans-page .plans-table th[scope=col]{text-align:center}.plans-page .plans-table th[scope=col]{font-family:Noto Sans,sans-serif;font-size:var(--font-size-05);font-weight:600;line-height:var(--line-height-04);position:relative;vertical-align:top}.plans-page .plans-table td{vertical-align:middle}@media (min-width:768px){.plans-page .plans-table td{height:100%}}.plans-page .plans-table tr:first-child th{position:relative}.plans-page .plans-table tr.plans-table-divider{background-color:var(--neutral-10)}.plans-page .plans-table tr.plans-table-divider .plans-table-cell-divider-content{align-items:center;display:flex;justify-content:center}.plans-page .plans-table tr.plans-table-divider td>div{text-align:center}.plans-page .plans-table tr.plans-table-divider td>div .plans-table-divider-label{margin-bottom:0;margin-right:5px}.plans-page .plans-table tr.plans-table-divider td>div .plans-table-divider-learn-more-container{display:none}@media (max-width:767px){.plans-page .plans-table tr.plans-table-divider{background-color:var(--neutral-20);border:0;padding-left:0;padding-right:0;padding-top:0}.plans-page .plans-table tr.plans-table-divider .plans-table-cell-divider-content{display:block}.plans-page .plans-table tr.plans-table-divider td>div,.plans-page .plans-table tr.plans-table-divider th>div{background-color:var(--neutral-20);border:0}.plans-page .plans-table tr.plans-table-divider td>div i,.plans-page .plans-table tr.plans-table-divider th>div i{display:none}.plans-page .plans-table tr.plans-table-divider td>div .plans-table-divider-learn-more-container,.plans-page .plans-table tr.plans-table-divider th>div .plans-table-divider-learn-more-container{display:inline;white-space:nowrap}.plans-page .plans-table tr.plans-table-divider td>div .plans-table-divider-learn-more-container span.plans-table-divider-learn-more-text,.plans-page .plans-table tr.plans-table-divider th>div .plans-table-divider-learn-more-container span.plans-table-divider-learn-more-text{color:#0a95ff}.plans-page .plans-table tr.plans-table-divider td>div .plans-table-divider-learn-more-container .tooltip,.plans-page .plans-table tr.plans-table-divider th>div .plans-table-divider-learn-more-container .tooltip{white-space:normal}.plans-page .plans-table tr.plans-table-divider .plans-table-last-col-highlighted>div{border-right:none}}.plans-page .plans-table .fa-check{color:#098842}@media (min-width:768px){.plans-page .plans-table .plans-table-feature-row:hover .plans-table-cell,.plans-page .plans-table .plans-table-feature-row:hover .plans-table-feature-name{background-color:#f4f5f6}}@media (max-width:991px){.plans-page .plans-table{font-size:14px}}@media (max-width:767px){.plans-page .plans-table tr{display:flex;flex-flow:row wrap;justify-content:space-around}.plans-page .plans-table td,.plans-page .plans-table th{align-self:stretch}.plans-page .plans-table tr.plans-table-cols-4:not(.plans-table-divider) td,.plans-page .plans-table tr.plans-table-cols-4:not(.plans-table-divider) th:not(:first-of-type){width:25%}.plans-page .plans-table tr.plans-table-cols-3:not(.plans-table-divider) td,.plans-page .plans-table tr.plans-table-cols-3:not(.plans-table-divider) th:not(:first-of-type){width:33.33333%}.plans-page .plans-table tr.plans-table-cols-2:not(.plans-table-divider) td,.plans-page .plans-table tr.plans-table-cols-2:not(.plans-table-divider) th:not(:first-of-type){width:50%}.plans-page .plans-table th[scope=col]{font-size:12px}.plans-page .plans-table .plans-table-cta-mobile td:first-child,.plans-page .plans-table .plans-table-cta-mobile th:first-child,.plans-page .plans-table .plans-table-price-row td:first-child,.plans-page .plans-table .plans-table-price-row th:first-child,.plans-page .plans-table .plans-table-short-feature-list td:first-child,.plans-page .plans-table .plans-table-short-feature-list th:first-child,.plans-page .plans-table tr:first-child td:first-child,.plans-page .plans-table tr:first-child th:first-child{display:none}.plans-page .plans-table th[scope=row]{width:100vw}.plans-page .plans-table th[scope=row] span.plans-table-feature-name{width:100%}.plans-page .plans-table th[scope=row] span.plans-table-feature-name span{text-align:left}}.plans-page .plans-table-cell{height:100%}.plans-page .plans-table-cell .plans-table-cell-content{align-items:center;display:flex;height:100%;justify-content:center}@media (max-width:767px){.plans-page .plans-table-cell .plans-table-cell-content{min-height:34px}}.plans-page .plans-table-th,.plans-page .plans-table-th .plans-table-th-content{height:100%}.plans-page .plans-table-btn-buy-container-desktop,.plans-page .plans-table-btn-buy-container-mobile{gap:var(--spacing-04)}.plans-page .plans-table-btn-buy-container-desktop{display:flex;flex-direction:column}@media (max-width:767px){.plans-page .plans-table-btn-buy-container-desktop{display:none}}.plans-page .plans-table-btn-buy-container-mobile{display:none}@media (max-width:767px){.plans-page .plans-table-btn-buy-container-mobile{display:flex;flex-direction:column}.plans-page .plans-table-btn-buy-container-mobile .btn{border-radius:9999px;font-size:14px;line-height:1.5;padding:0 8px}}.plans-page .visible-desktop,.plans-page .visible-mobile-and-tablet{display:none}@media (min-width:1200px){.plans-page .visible-desktop{display:inline-block}}@media (max-width:1199px){.plans-page .visible-mobile-and-tablet{display:inline-block}}.plans-page .plans-group-total-price{font-weight:700}.plans-page .plans-table-price-row .match-non-discounted-price-alignment,.plans-page .plans-table-price-row s{color:var(--neutral-60);display:block;font-size:var(--font-size-02);font-weight:600;line-height:var(--line-height-02)}.plans-page .plans-table-price-row .plans-table-price-container p.plans-table-price-period-label{color:#677283;font-size:var(--font-size-02);font-weight:400;line-height:var(--line-height-02);margin:0}.plans-page .plans-table-price-row .plans-table-price-container p.plans-table-price{margin:0}.plans-page .plans-table-price-row .plans-table-price-container p.plans-table-price span{font-size:var(--font-size-07);font-weight:600;line-height:var(--line-height-06)}.plans-page .plans-table-feature-name-content{align-items:center;display:flex;justify-content:space-between}.plans-page .plans-table-feature-name-content i.plans-table-feature-question-icon{margin-left:10px}.plans-page .plans-table-feature-name-content span.plans-table-feature-learn-more-container{display:none}@media (max-width:767px){.plans-page .plans-table-feature-name-content{background-color:#f4f5f6;display:inline-block;min-height:34px;text-align:left;width:100%}.plans-page .plans-table-feature-name-content i.plans-table-feature-question-icon{display:none}.plans-page .plans-table-feature-name-content span.plans-table-feature-learn-more-container{display:inline;margin-left:5px;white-space:nowrap}.plans-page .plans-table-feature-name-content span.plans-table-feature-learn-more-container span.plans-table-feature-learn-more-text{color:#0a95ff}.plans-page .plans-table-feature-name-content span.plans-table-feature-learn-more-container .tooltip{white-space:normal}}.plans-page p.plans-table-green-highlighted-text{align-items:center;background-color:var(--green-50);border:2px solid var(--green-50);border-radius:var(--border-radius-large-new) var(--border-radius-large-new) 0 0;color:#fff;display:flex;font-size:var(--font-size-03);font-weight:600;height:32px;justify-content:center;left:0;line-height:var(--line-height-02);margin:0;position:absolute;top:-32px;width:100%}@media (max-width:991px){.plans-page p.plans-table-green-highlighted-text{font-size:var(--font-size-01);height:41px;line-height:var(--line-height-01);top:-41px}}@media (max-width:767px){.plans-page .plans-table-th-content{height:60px!important;overflow:hidden}.plans-page .plans-table-sticky-header-container{height:60%;position:absolute;width:100%}}.plans-page .plans-table-sticky-header-container .plans-table-sticky-header-without-switch{margin-bottom:-107px;margin-top:83px}.plans-page .plans-table-sticky-header-container .plans-table-sticky-header-with-switch{margin-bottom:-140px;margin-top:94px}.plans-page .plans-table-sticky-header-container .plans-table-sticky-header{display:none}@media (max-width:767px){.plans-page .plans-table-sticky-header-container .plans-table-sticky-header{border-bottom:2px solid var(--neutral-10);display:flex;height:60px;left:0;top:0;width:100%;z-index:100}.plans-page .plans-table-sticky-header-container .plans-table-sticky-header.sticky{position:sticky}}.plans-page .plans-table-sticky-header-container .plans-table-sticky-header-item{background-color:#fff;flex:1 1 0px}.plans-page .plans-table-sticky-header-container .plans-table-sticky-header-item span{align-items:center;color:var(--neutral-90);display:flex;font-size:var(--font-size-03);font-weight:600;height:100%;justify-content:center;line-height:var(--line-height-02);padding:0 var(--spacing-01);text-align:center}.plans-page .plans-table-sticky-header-container .plans-table-sticky-header-item-green-highlighted span{color:var(--green-50)}.plans-page .plans-v2-faq p{margin:0}.plans-page .plans-v2-faq p>a{color:#3265b2}.plans-page .plans-v2-faq p>a:hover{color:#28518f}.plans-page .plans-v2-university-info-light{align-items:center;background-color:var(--white);border-radius:20px;display:flex;gap:var(--spacing-07);margin:auto;max-width:991px;padding:30px 50px}@media (max-width:991px){.plans-page .plans-v2-university-info-light{align-items:start;flex-direction:column}}.plans-page .plans-v2-university-info-light h3.plans-v2-university-info-header-light{margin:0}.plans-page .plans-v2-university-info-light p.plans-v2-university-info-text-light{margin:0;margin-top:10px}.plans-page .plans-v2-university-info-light a.plans-v2-btn-university-info{margin-top:20px}@media (max-width:991px){.plans-page .plans-v2-university-info-light h3.plans-v2-university-info-header-light{margin:0 0 20px 0}.plans-page .plans-v2-university-info-light p.plans-v2-university-info-text-light{margin:0}}@media (max-width:767px){.plans-page .plans-v2-university-info-light{padding:30px}}.plans-page h1{margin-bottom:var(--spacing-08);margin-top:0}.plans-page .plans-v2-top-switch{margin-top:var(--spacing-09)}.plans-page .plans-page-quote-row{margin:var(--spacing-13) 0}.plans-page .plans-payment-methods{margin-bottom:var(--spacing-09);margin-top:var(--spacing-08)}.plans-page .plans-payment-methods p{margin-bottom:0}.plans-page .plans-payment-methods .plans-payment-methods-icons{display:flex;gap:var(--spacing-04);justify-content:center;margin-top:var(--spacing-05)}.plans-page-interstitial{padding-bottom:var(--spacing-09)}.plans-page-interstitial h1{margin-bottom:var(--spacing-13)}.plans-page-interstitial .monthly-annual-switch{margin-top:0}@media (max-width:767px){.plans-page-interstitial .plans-table-btn-buy-container-mobile .btn{text-wrap:auto;font-size:11px}.plans-page-interstitial.plans-page .plans-table-price-row .plans-table-price-container .plans-table-price span{font-size:var(--font-size-05);line-height:var(--line-height-05)}}.plans-new-design{padding-top:var(--header-height)}.plans-new-design .container{padding:0 var(--spacing-06)}.plans-new-design .container .geo-banner-container{margin-top:var(--spacing-08)}.plans-new-design .container .plans-new-design-content-spacing{margin-top:var(--spacing-16)}.plans-new-design .container .interstitial-new-design-content-spacing{margin-top:var(--spacing-13)}.plans-new-design .main-heading-section{margin-left:auto;margin-right:auto;max-width:885px;text-align:center}@media (max-width:767px){.plans-new-design .main-heading-section{padding:0 16px;text-align:left}}.plans-new-design .main-heading-section .plans-page-heading{font-size:3rem;font-weight:600;line-height:64px;margin-bottom:unset;margin-top:8px}@media (max-width:767px){.plans-new-design .main-heading-section .plans-page-heading{font-size:2.25rem;line-height:48px;padding-right:5rem}}.plans-new-design .main-heading-section .plans-page-sub-heading{font-size:1.125rem;line-height:24px;margin-bottom:unset;margin-top:16px}.plans-new-design .plans-new-content{align-items:center;display:flex;flex-direction:column}@media (min-width:768px){.plans-new-design .plans-new-content{border-bottom:1px solid var(--neutral-20);border-left:1px solid var(--neutral-20);border-radius:8px;border-right:1px solid var(--neutral-20)}}.plans-new-design .plans-new-content:before{background:transparent;border-top:1px solid var(--neutral-20);content:"";display:block;height:20px;position:absolute;top:-1px;width:100%;z-index:0}@media (min-width:768px){.plans-new-design .plans-new-content:before{border-top-left-radius:8px;border-top-right-radius:8px}}.plans-new-design .plans-new-tabs-container{margin-top:var(--spacing-16);padding:0 16px;z-index:1}.plans-new-design .plans-new-tabs{border-bottom:1px solid var(--neutral-20);display:flex;gap:8px;justify-content:center}.plans-new-design .plans-new-tabs .plans-new-tab{border-top-left-radius:8px;border-top-right-radius:8px;cursor:pointer;font-size:16px;font-weight:600}.plans-new-design .plans-new-tabs .plans-new-tab .plans-new-tab-link{align-items:center;border:unset;border:1px solid var(--neutral-20);border-top-left-radius:8px;border-top-right-radius:8px;color:var(--neutral-70);display:flex;gap:var(--spacing-04);margin:0;padding:var(--spacing-05) var(--spacing-08)}.plans-new-design .plans-new-tabs .plans-new-tab .plans-new-tab-link:focus{background-color:unset;outline:0}.plans-new-design .plans-new-tabs .plans-new-tab .plans-new-tab-link:hover{background-color:var(--neutral-20)}.plans-new-design .plans-new-tabs .plans-new-tab .plans-new-tab-link:focus-visible{box-shadow:0 0 0 2px #97b6e5;outline:0}@media (max-width:767px){.plans-new-design .plans-new-tabs .plans-new-tab .plans-new-tab-link{font-size:var(--font-size-02);gap:var(--spacing-02);line-height:var(--line-height-02);padding:var(--spacing-05)}}.plans-new-design .plans-new-tabs .plans-new-tab.active .plans-new-tab-link{border:1px solid #fff;color:var(--green-50);position:relative}.plans-new-design .plans-new-tabs .plans-new-tab.active .plans-new-tab-link:focus-visible:before{content:unset}.plans-new-design .plans-new-tabs .plans-new-tab.active .plans-new-tab-link:before{background:border-box linear-gradient(180deg,#098842 0,#e7e9ee 85%,#e7e9ee);border:1px solid transparent;border-bottom:1px solid #fff;border-top-left-radius:8px;border-top-right-radius:8px;bottom:-2px;content:"";left:-1px;-webkit-mask:linear-gradient(#fff 0 0) padding-box,linear-gradient(#fff 0 0);mask:linear-gradient(#fff 0 0) padding-box,linear-gradient(#fff 0 0);-webkit-mask-composite:xor;mask-composite:exclude;position:absolute;right:-1px;top:0}.plans-new-design .plans-new-tabs .plans-new-tab.active .plans-new-tab-link:hover{background-color:unset}.plans-new-design .plans-new-tabs .plans-new-tab.active .plans-new-discount-badge{background-color:var(--green-10);color:var(--green-60)}.plans-new-design .plans-new-period-switcher-container{background-color:var(--neutral-10);border-radius:var(--border-radius-full-new);display:inline-flex;gap:var(--spacing-04);justify-content:center;margin-bottom:72px;margin-top:var(--spacing-09);padding:var(--spacing-03)}@media (max-width:767px){.plans-new-design .plans-new-period-switcher-container{margin-bottom:var(--spacing-09)}}.plans-new-design .plans-new-period-switcher-container .plans-new-period-switcher{align-items:center;background-color:unset;border:unset;border-radius:var(--border-radius-full-new);display:flex;font-size:var(--font-size-05);font-weight:600;line-height:var(--line-height-04);padding:var(--spacing-01) var(--spacing-04);text-align:center}.plans-new-design .plans-new-period-switcher-container .plans-new-period-switcher:hover{background-color:var(--neutral-20)}.plans-new-design .plans-new-period-switcher-container .plans-new-period-switcher.active{background-color:var(--green-50);box-shadow:0 2px 4px 0 rgba(30,37,48,.16);color:#fff}.plans-new-design .plans-new-period-switcher-container .plans-new-period-switcher.active .plans-new-discount-badge{background-color:var(--green-10);color:var(--green-60)}.plans-new-design .plans-new-period-switcher-container .plans-new-period-switcher:focus,.plans-new-design .plans-new-period-switcher-container .plans-new-period-switcher:focus-visible{outline:0}.plans-new-design .plans-new-period-switcher-container .plans-new-period-switcher:focus-visible{box-shadow:0 0 0 2px #97b6e5}.plans-new-design .plans-new-period-switcher-container .plans-new-period-switcher .plans-new-discount-badge{margin-left:6px}.plans-new-design .plans-new-discount-badge{align-items:center;background-color:var(--neutral-70);border-radius:10px;color:#fff;display:flex;font-family:DM Mono,monospace;font-size:var(--font-size-01);font-weight:500;height:20px;line-height:var(--line-height-01);padding:2px 8px}.plans-new-design .plans-new-tab-content{border:none;padding-top:0;width:100%}@media (max-width:480px){.plans-new-design .plans-new-tab-content{padding:0}}.plans-new-design .plans-new-mobile{display:none}@media (max-width:767px){.plans-new-design .plans-new-mobile{display:block}}.plans-new-design .plans-new-desktop{display:block}@media (max-width:767px){.plans-new-design .plans-new-desktop{display:none}}.plans-new-design .plans-new-table{width:100%}.plans-new-design .plans-new-table td,.plans-new-design .plans-new-table th{width:25%}.plans-new-design .plans-new-table-student{margin-left:12.5%}.plans-new-design .plans-new-table-group{margin-top:80px}.plans-new-design thead th{color:var(--neutral-90);font-size:var(--font-size-05);font-weight:600;line-height:var(--line-height-04);padding:var(--spacing-06) var(--spacing-08) var(--spacing-04) var(--spacing-08);position:relative;text-align:center}@media (max-width:1199px){.plans-new-design thead th{padding:var(--spacing-05) var(--spacing-05) 0 var(--spacing-05)}}.plans-new-design .plans-new-table-subheader{padding:0 var(--spacing-08);vertical-align:top}@media (max-width:1199px){.plans-new-design .plans-new-table-subheader{padding:0 var(--spacing-05)}}.plans-new-design .plans-new-table-subheader.plans-new-table-icon-cta-cell{vertical-align:bottom}.plans-new-design .plans-new-table-cta-row td{padding-bottom:var(--spacing-06)}@media (max-width:1199px){.plans-new-design .plans-new-table-cta-row td{padding-bottom:var(--spacing-05)}}.plans-new-design .plans-new-table-cta-row .btn-block+.btn-block{margin-top:var(--spacing-04)}.plans-new-design .plans-new-table-header-grid-container{align-items:center;display:flex;flex-direction:column}.plans-new-design .plans-new-table-header-grid-container .match-original-price-height,.plans-new-design .plans-new-table-header-grid-container s{color:var(--neutral-60);font-size:var(--font-size-02);font-weight:600;line-height:var(--line-height-02)}.plans-new-design .plans-new-table-header-grid-container .plans-new-table-header-price{color:var(--neutral-90);font-size:var(--font-size-08);font-weight:600;line-height:var(--line-height-07)}.plans-new-design .plans-new-table-header-grid-container .plans-new-table-header-price-unit{font-size:var(--font-size-02);line-height:var(--line-height-02)}.plans-new-design .plans-new-table-header-grid-container .plans-new-table-cta{margin-top:auto}.plans-new-design .plans-new-table-header-grid-container .plans-new-table-cta a:nth-child(2){margin-top:var(--spacing-04)}.plans-new-design .plans-new-table-header-grid-container .plans-new-table-header-icon{color:var(--neutral-90);font-size:56px}.plans-new-design .plans-new-table-header-price-unit-total{font-size:var(--font-size-01);line-height:var(--line-height-01)}.plans-new-design .plans-new-table-header-desc{font-size:var(--font-size-02);line-height:var(--line-height-02);margin-bottom:var(--spacing-08);margin-top:var(--spacing-05)}.plans-new-design .plans-new-group-member-picker .plans-new-group-member-picker-text{font-size:var(--font-size-02);font-weight:600;line-height:var(--line-height-02);margin-bottom:var(--spacing-02)}.plans-new-design .plans-new-group-member-picker .plans-new-group-member-picker-form{position:relative}.plans-new-design .plans-new-group-member-picker .plans-new-group-member-picker-form .plans-new-group-member-picker-button{align-items:center;background-color:#fff;border:1px solid var(--neutral-60);border-radius:var(--border-radius-base-new);display:flex;font-size:var(--font-size-02);height:24px;justify-content:space-between;line-height:var(--line-height-02);margin-bottom:var(--spacing-04);padding:var(--spacing-01) var(--spacing-03);width:100%}.plans-new-design .plans-new-group-member-picker .plans-new-group-member-picker-form .plans-new-group-member-picker-button[aria-expanded=true] i{transform:rotate(180deg);transition:transform .35s ease}.plans-new-design .plans-new-group-member-picker .plans-new-group-member-picker-form .plans-new-group-member-picker-button[aria-expanded=false] i{transition:transform .35s ease}.plans-new-design .plans-new-group-member-picker .plans-new-group-member-picker-form ul.plans-new-group-member-picker-list{background-color:#fff;box-shadow:0 2px 4px 0 rgba(30,37,48,.16);list-style-type:none;margin-bottom:0;margin-top:var(--spacing-01);overflow:auto;padding:var(--spacing-02);position:absolute;top:24px;width:100%;z-index:1}.plans-new-design .plans-new-group-member-picker .plans-new-group-member-picker-form li.plans-new-group-member-picker-footer{font-size:var(--font-size-02);line-height:var(--line-height-02);padding:var(--spacing-05) var(--spacing-04)}.plans-new-design .plans-new-group-member-picker .plans-new-group-member-picker-form li.plans-new-group-member-picker-footer span{display:block}.plans-new-design .plans-new-group-member-picker .plans-new-group-member-picker-form li.plans-new-group-member-picker-footer button{font-size:var(--font-size-02);font-weight:400;line-height:var(--line-height-02);padding:0}.plans-new-design .plans-new-group-member-picker .plans-new-group-member-picker-form li{position:relative}.plans-new-design .plans-new-group-member-picker .plans-new-group-member-picker-form li:not(:last-child){margin-bottom:var(--spacing-02)}.plans-new-design .plans-new-group-member-picker .plans-new-group-member-picker-form li:not(.plans-new-group-member-picker-footer):hover input[type=radio]:not(:checked)+p{background-color:var(--neutral-10)}.plans-new-design .plans-new-group-member-picker .plans-new-group-member-picker-form li input[type=radio]{cursor:pointer;opacity:0;position:absolute}.plans-new-design .plans-new-group-member-picker .plans-new-group-member-picker-form li input[type=radio]+p{border-radius:var(--border-radius-base-new);margin-bottom:0;padding:var(--spacing-05) var(--spacing-08) var(--spacing-05) var(--spacing-04)}.plans-new-design .plans-new-group-member-picker .plans-new-group-member-picker-form li input[type=radio]:checked+p{word-wrap:break-word;background-color:var(--green-10);color:var(--green-70);position:relative}.plans-new-design .plans-new-group-member-picker .plans-new-group-member-picker-form li input[type=radio]:checked+p:after{content:url(/images/check-green-20-1b30fdd0eea6a8f747fa.svg);position:absolute;right:12px;top:50%;transform:translateY(-50%)}@media (max-width:991px){.plans-new-design .plans-new-group-member-picker .plans-new-group-member-picker-form li input[type=radio]:checked+p:after{right:var(--spacing-04)}}.plans-new-design .plans-new-group-member-picker .plans-new-group-member-picker-form li label{border-radius:var(--border-radius-base-new);cursor:pointer;font-size:var(--font-size-02);font-weight:400;line-height:var(--line-height-02);margin-bottom:var(--spacing-00);width:100%}.plans-new-design .plans-new-group-member-picker .plans-new-group-member-picker-form li label .list-item-footer{font-size:var(--font-size-01);line-height:var(--line-height-01)}.plans-new-design .plans-new-group-member-picker .plans-new-group-member-picker-form .plans-new-edu-discount{align-items:flex-start;display:flex;font-weight:400;gap:var(--spacing-04);margin-bottom:var(--spacing-06)}@media (max-width:767px){.plans-new-design .plans-new-group-member-picker .plans-new-group-member-picker-form .plans-new-edu-discount.invisible-desktop{display:none}}@media (min-width:768px){.plans-new-design .plans-new-group-member-picker .plans-new-group-member-picker-form .plans-new-edu-discount.invisible-desktop{visibility:hidden}}.plans-new-design .plans-new-group-member-picker .plans-new-group-member-picker-form .plans-new-edu-discount input[type=checkbox]{accent-color:var(--green-50);margin:var(--spacing-02)}.plans-new-design .plans-new-group-member-picker .plans-new-group-member-picker-form .plans-new-edu-discount input[type=checkbox]:focus-visible{box-shadow:0 0 0 2px #97b6e5}.plans-new-design .plans-new-group-member-picker .plans-new-group-member-picker-form .plans-new-edu-discount .plans-new-edu-discount-content{display:flex;flex-direction:column}.plans-new-design .plans-new-group-member-picker .plans-new-group-member-picker-form .plans-new-edu-discount .plans-new-edu-discount-content span{color:var(--neutral-90);line-height:var(--line-height-03)}.plans-new-design .plans-new-group-member-picker .plans-new-group-member-picker-form .plans-new-edu-discount .plans-new-edu-discount-content small{color:var(--neutral-70);font-size:var(--font-size-01);line-height:var(--line-height-01)}.plans-new-design .plans-new-table-body:last-of-type .plans-new-table-feature-row:last-of-type .plans-new-table-feature-td.plans-new-table-highlighted-cell{border-bottom:var(--border-width-base) solid var(--green-50)}.plans-new-design .plans-new-table-heading-row{height:64px}.plans-new-design .plans-new-table-heading-text{font-size:var(--font-size-04);font-weight:600;line-height:var(--line-height-03);padding:var(--spacing-05) var(--spacing-08) var(--spacing-05) var(--spacing-05);vertical-align:bottom}.plans-new-design .plans-new-table-feature-row:nth-child(2n),.plans-new-design .plans-new-table-section-without-header-row:nth-child(odd):not(.plans-new-table-heading-row){background-color:var(--neutral-10)}.plans-new-design .plans-new-table-section-without-header-row:nth-child(2n):not(.plans-new-table-heading-row){background-color:var(--white)}.plans-new-design .plans-new-table-feature-th{font-weight:400;padding:var(--spacing-05) var(--spacing-08) var(--spacing-05) var(--spacing-05)}.plans-new-design .plans-new-table-feature-th .plans-new-table-feature-th-content{align-items:center;display:flex;justify-content:space-between;line-height:var(--line-height-03)}.plans-new-design .plans-new-table-feature-th .plans-new-table-feature-th-content .plans-new-table-feature-tooltip-icon{cursor:help;margin-left:var(--spacing-05)}.plans-new-design .plans-new-table-feature-th .plans-new-table-feature-th-content .tooltip.in{opacity:1}.plans-new-design .plans-new-table-feature-th .plans-new-table-feature-th-content .tooltip-inner{background-color:var(--neutral-90);border-radius:var(--border-radius-base-new);font-family:Lato,sans-serif;font-size:var(--font-size-02);max-width:258px;padding:var(--spacing-04) var(--spacing-06);text-align:left;width:258px}.plans-new-design .plans-new-table-feature-td{line-height:var(--line-height-03);padding:var(--spacing-05) var(--spacing-08);text-align:center}.plans-new-design .plans-new-table-feature-td .green-round-background{margin-right:0}.plans-new-design .plans-new-table-highlighted-heading{background-color:var(--green-50);border-top-left-radius:var(--border-radius-large-new);border-top-right-radius:var(--border-radius-large-new);color:var(--white);font-size:var(--font-size-03);font-weight:600;height:32px;left:calc(var(--border-width-base)*-1);line-height:24px;padding:4px var(--spacing-04);position:absolute;text-align:center;top:-32px;width:calc(100% + var(--border-width-base)*2)}.plans-new-design .plans-new-table-highlighted-cell{border-left:var(--border-width-base) solid var(--green-50);border-right:var(--border-width-base) solid var(--green-50)}.plans-new-design .plans-new-organizations{padding:var(--spacing-13) var(--spacing-08)}.plans-new-design .plans-new-organizations .plans-new-organizations-text{font-size:var(--font-size-05);line-height:var(--line-height-04);margin-bottom:var(--spacing-00);text-align:center}.plans-new-design .plans-new-organizations .plans-new-organizations-logo{align-items:center;display:flex;justify-content:space-around;margin-top:var(--spacing-09)}@media (max-width:1199px){.plans-new-design .plans-new-organizations .plans-new-organizations-logo{flex-wrap:wrap;gap:30px}}.plans-new-design .plans-card-container-mobile{display:flex;flex-direction:column;gap:var(--spacing-06);width:100%}.plans-new-design .plans-card-container-mobile .mt-spacing-06{margin-top:var(--spacing-06)}.plans-new-design .plans-card-container-mobile .highlighted-plans-card{border:2px solid var(--green-50)!important}.plans-new-design .plans-card-container-mobile .plans-card-mobile{border:2px solid var(--neutral-20);border-radius:8px;display:flex;flex-direction:column;padding:var(--spacing-09);width:100%}.plans-new-design .plans-card-container-mobile .plans-card-mobile .plans-card-title-mobile{color:var(--neutral-90);font-size:var(--font-size-05);font-weight:600;line-height:var(--line-height-04)}.plans-new-design .plans-card-container-mobile .plans-card-mobile .plans-card-icon-container-mobile{margin-top:var(--spacing-04)}.plans-new-design .plans-card-container-mobile .plans-card-mobile .plans-card-icon-container-mobile .plans-card-icon{color:var(--neutral-90);font-size:var(--font-size-09)}.plans-new-design .plans-card-container-mobile .plans-card-mobile s{color:var(--neutral-60);font-size:var(--font-size-04);font-weight:600;line-height:var(--line-height-05);margin-bottom:var(--spacing-04);padding:var(--spacing-04) 0 0 0}.plans-new-design .plans-card-container-mobile .plans-card-mobile .plans-card-price-container-mobile{align-items:baseline;display:flex}.plans-new-design .plans-card-container-mobile .plans-card-mobile .group-plans-card-price-container-mobile{align-items:center;display:flex}.plans-new-design .plans-card-container-mobile .plans-card-mobile .plans-card-price-mobile{color:var(--neutral-90);font-size:var(--font-size-08);font-weight:600;line-height:var(--line-height-07);margin-right:var(--spacing-03)}.plans-new-design .plans-card-container-mobile .plans-card-mobile .light-gray-text{color:var(--neutral-70);font-size:var(--font-size-02);line-height:var(--line-height-02)}.plans-new-design .plans-card-container-mobile .plans-card-mobile .plans-card-description-mobile .green-round-background{height:20px;width:20px}.plans-new-design .plans-card-container-mobile .plans-card-mobile .plans-card-description-mobile .plans-card-description-list-mobile{list-style-type:none;margin-bottom:unset;padding-left:0}.plans-new-design .plans-card-container-mobile .plans-card-mobile .plans-card-description-mobile .plans-card-description-list-mobile li{display:flex;margin-top:var(--spacing-05)}.plans-new-design .plans-card-container-mobile .plans-card-mobile .plans-card-description-mobile .plans-card-cta-container{margin-top:var(--spacing-08);width:100%}.plans-new-design .plans-card-container-mobile .plans-card-mobile .plans-card-description-mobile .plans-card-cta-container .btn-block+.btn-block{margin-top:var(--spacing-04)}.plans-new-design .plans-new-group-tab-card-container{margin-top:var(--spacing-09)}.plans-new-design .plans-features-table-section-container-mobile{margin-top:var(--spacing-13)}.plans-new-design .plans-features-table-section-container-mobile .plans-features-section-heading-mobile{color:var(--neutral-90);font-size:var(--font-size-06);font-weight:600;line-height:var(--line-height-05);margin-bottom:var(--spacing-08);text-align:center}.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile{width:100%}.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile .plans-features-table-sticky-header{position:sticky;top:0}.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile .plans-features-table-header{margin-bottom:var(--space-08)}.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile .plans-features-table-header-container-mobile{border-bottom:unset;margin:var(--spacing-08) auto;max-width:544px;width:100%}.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile .plans-features-table-header-container-mobile .plans-features-table-header-item-mobile{min-width:114px;padding:unset;width:33%}.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile .plans-features-table-header-container-mobile .plans-features-table-header-item-mobile .plans-features-table-header-item-content-mobile{background-color:var(--neutral-10);padding:var(--spacing-04);text-align:center}.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile .plans-features-table-header-container-mobile .plans-features-table-header-item-mobile .plans-group-features-table-header-item-content-mobile{align-items:center;background-color:var(--neutral-10);display:flex;height:64px;justify-content:center;padding:var(--spacing-04);text-align:center}.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile .plans-features-table-header-container-mobile .plans-features-table-header-item-mobile .plans-features-table-header-item-title-mobile{color:var(--neutral-90);font-size:var(--font-size-03);font-weight:600;line-height:var(--line-height-03)}.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile .plans-features-table-header-container-mobile .plans-features-table-header-item-mobile .plans-features-table-header-item-price-mobile{color:var(--neutral-70);font-size:var(--spacing-05);font-weight:400;line-height:var(--line-height-01)}.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile .plans-features-table-header-container-mobile .highlighted-styles{background-color:var(--neutral-80)}.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile .plans-features-table-header-container-mobile .highlighted-styles .plans-features-table-header-item-price-mobile,.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile .plans-features-table-header-container-mobile .highlighted-styles .plans-features-table-header-item-title-mobile{color:var(--white)}.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile .plans-features-table-header-container-mobile .plans-features-table-header-item-content-mobile.highlighted,.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile .plans-features-table-header-container-mobile .plans-group-features-table-header-item-content-mobile.highlighted{background-color:var(--neutral-80)}.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile .plans-features-table-header-container-mobile .plans-features-table-header-item-content-mobile.highlighted .plans-features-table-header-item-price-mobile,.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile .plans-features-table-header-container-mobile .plans-features-table-header-item-content-mobile.highlighted .plans-features-table-header-item-title-mobile,.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile .plans-features-table-header-container-mobile .plans-group-features-table-header-item-content-mobile.highlighted .plans-features-table-header-item-price-mobile,.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile .plans-features-table-header-container-mobile .plans-group-features-table-header-item-content-mobile.highlighted .plans-features-table-header-item-title-mobile{color:var(--white)}.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile tr.plans-features-table-row-for-margin{height:var(--spacing-08)}.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile .plans-features-table-body-container-mobile .plans-features-table-row-heading-mobile{font-weight:600;line-height:var(--line-height-03);text-align:center}.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile .plans-features-table-body-container-mobile .plans-features-table-row-heading-mobile .plans-features-table-row-section-heading-content-mobile{color:var(--neutral-90);font-size:var(--font-size-04);padding-bottom:var(--spacing-05);padding-top:var(--spacing-08)}.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile .plans-features-table-body-container-mobile .plans-features-table-row-title-mobile.plans-features-table-row-title-mobile-without-heading:nth-child(4n - 3){background-color:var(--neutral-10)}.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile .plans-features-table-body-container-mobile .plans-features-table-row-title-mobile.plans-features-table-row-title-mobile-without-heading:nth-child(4n - 1){background-color:var(--white)}.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile .plans-features-table-body-container-mobile .plans-features-table-row-title-mobile:nth-child(4n - 2){background-color:var(--neutral-10)}.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile .plans-features-table-body-container-mobile .plans-features-table-row-title-mobile:nth-child(4n){background-color:var(--white)}.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile .plans-features-table-body-container-mobile .plans-features-table-row-title-mobile .plans-features-table-row-title-content-mobile{align-items:center;display:flex;font-weight:600;justify-content:center;line-height:var(--line-height-03);padding-top:var(--spacing-06)}.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile .plans-features-table-body-container-mobile .plans-features-table-row-title-mobile .plans-features-table-row-title-content-mobile .plans-features-table-row-title-accordion{align-items:center;display:flex;flex-direction:column;justify-content:center;padding:0 var(--spacing-04);text-align:center}.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile .plans-features-table-body-container-mobile .plans-features-table-row-title-mobile .plans-features-table-row-title-content-mobile .plans-features-table-row-title-accordion .plans-features-table-row-title-accordion-header{background-color:unset;border:unset;display:flex;font-size:var(--font-size-03);font-weight:600;justify-content:center;line-height:var(--line-height-03)}.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile .plans-features-table-body-container-mobile .plans-features-table-row-title-mobile .plans-features-table-row-title-content-mobile .plans-features-table-row-title-accordion .plans-features-table-row-title-accordion-header .plans-features-table-row-title-accordion-icon{align-items:center;display:flex;margin-left:var(--spacing-02);transition:transform .35s ease}.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile .plans-features-table-body-container-mobile .plans-features-table-row-title-mobile .plans-features-table-row-title-content-mobile .plans-features-table-row-title-accordion .plans-features-table-row-title-accordion-header:not(.collapsed) .plans-features-table-row-title-accordion-icon{transform:rotate(180deg);transition:transform .35s ease}.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile .plans-features-table-body-container-mobile .plans-features-table-row-title-mobile .plans-features-table-row-title-content-mobile .plans-features-table-row-title-accordion .plans-features-table-row-title-accordion-body{font-size:var(--font-size-01);font-weight:400;line-height:var(--line-height-01)}.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile .plans-features-table-body-container-mobile .plans-features-table-row-mobile.plans-features-table-row-mobile-without-heading:nth-child(4n - 2){background-color:var(--neutral-10)}.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile .plans-features-table-body-container-mobile .plans-features-table-row-mobile.plans-features-table-row-mobile-without-heading:nth-child(4n),.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile .plans-features-table-body-container-mobile .plans-features-table-row-mobile:nth-child(4n - 3){background-color:var(--white)}.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile .plans-features-table-body-container-mobile .plans-features-table-row-mobile:nth-child(4n - 1){background-color:var(--neutral-10)}.plans-new-design .plans-features-table-section-container-mobile .plans-features-table-mobile .plans-features-table-body-container-mobile .plans-features-table-row-mobile .plans-features-table-cell-content-mobile{padding-bottom:var(--spacing-06);padding-top:var(--spacing-05);text-align:center}.plans-new-design .plans-price-disclaimer{font-size:var(--font-size-01);line-height:var(--line-height-01);margin-top:var(--spacing-08);text-align:center}.plans-new-design .plans-price-disclaimer:last-child{margin-bottom:var(--spacing-11)}.plans-new-design .plans-price-disclaimer:not(:last-child){margin-bottom:var(--spacing-08)}.plans-new-design .plans-price-disclaimer .plans-price-disclaimer-icons{display:flex;gap:var(--spacing-04);justify-content:center}.plans-new-design .only-show-for-specific-plan-type{display:none}.plans-new-design[data-ol-current-plan-type=group] .show-for-plan-type-group,.plans-new-design[data-ol-current-plan-type=individual] .show-for-plan-type-individual,.plans-new-design[data-ol-current-plan-type=student] .show-for-plan-type-student{display:block}.plans-new-design .only-show-for-specific-plan-period{display:none}.plans-new-design[data-ol-current-plan-period=annual] .show-for-plan-period-annual,.plans-new-design[data-ol-current-plan-period=monthly] .show-for-plan-period-monthly{display:block}.plans-overleaf-common-request{align-items:center;color:var(--neutral-90);display:flex;gap:var(--spacing-06);justify-content:center;margin:var(--spacing-04) var(--spacing-08);text-align:center}@media (max-width:767px){.plans-overleaf-common-request{flex-direction:column;margin:0}}.plans-overleaf-common-request a{font-size:var(--font-size-02);line-height:var(--line-height-02)}.plans-faq .faq-heading-container{margin-bottom:var(--spacing-10);text-align:center}@media (max-width:767px){.plans-faq .faq-heading-container{text-align:unset}}.plans-faq .plans-faq-support{align-items:center;display:flex;flex-direction:column;gap:var(--spacing-04);margin-top:var(--spacing-06)}.plans-faq .plans-faq-support button,.plans-faq .plans-faq-support span{font-size:var(--font-size-04);line-height:var(--line-height-03)}.plans-faq .plans-faq-support button{align-items:center;background-color:var(--white);border:unset;color:var(--green-50);display:flex;font-family:DM Mono,monospace;font-weight:500;text-decoration:none}.plans-new-design.plans-interstitial-new-design{padding-bottom:var(--spacing-09);padding-top:var(--header-height)}.plans-new-design.plans-interstitial-new-design .plans-interstitial-new-content{align-items:center;display:flex;flex-direction:column}.plans-new-design.plans-interstitial-new-design .plans-new-table td,.plans-new-design.plans-interstitial-new-design .plans-new-table th{width:20%}.recurly-element-card{border:1px solid #677283;border-radius:4px;height:50px;padding:4px 4px}.recurly-element-card-invalid{border-color:#b83a33}.bonus{margin-top:15px}.bonus .page-header h1,.bonus h2{text-align:center}.bonus h2{font-size:20px;line-height:28px;margin-bottom:25px;margin-top:0}.bonus h2.direct-link{margin-top:25px}.bonus .bonus-banner .bonus-top,.bonus .bonus-banner .title a{border-bottom:1px solid #c2d4ee}.bonus .bonus-banner .title a{align-items:center;background-color:#fff;color:#3265b2;display:flex;font-size:18px;padding:20px}.bonus .bonus-banner .title a>i{margin-right:10px}.bonus .bonus-banner .title a:focus,.bonus .bonus-banner .title a:hover{background-color:#d6e2f3;text-decoration:none}.bonus .bonus-banner a.twitter>i{color:#1da1f2}.bonus .bonus-banner a.facebook>i{color:#3b5998}.bonus .bonus-banner a.email>i{color:#808b9a}.bonus .bonus-banner a.link>i{color:#406eb3}.bonus p.thanks{font-size:18px;line-height:28px;margin-top:10px;text-align:center}.bonus .number{background-color:#ddd;border-radius:3px;margin-left:-13px;padding:3px 0;position:absolute;text-align:center;width:26px}.bonus .number.active{background-color:#3265b2;color:#fff}.bonus .progress{height:30px;margin-left:-15px;margin-right:-15px;margin-top:12.5px}.bonus .perk{background-color:#ddd;border-radius:5px;font-size:14px;margin-left:-50px;min-width:-moz-min-content;min-width:min-content;padding:5px 5px;position:absolute;text-align:center;width:110px}.bonus .perk:before{border-bottom:8px solid #ddd;border-left:8px solid transparent;border-right:8px solid transparent;content:"";left:42px;position:absolute;top:-8px}.bonus .perk.active{background-color:#3265b2;color:#fff}.bonus .perk.active:before{border-bottom:8px solid #3265b2}.link-modal{text-align:center}.link-modal textarea{margin-bottom:0;width:95%}.registration_message{padding-bottom:20px;text-align:center}.registration_logo{padding:8px 0;width:130px}.website-redesign .login-register-header-focus{padding-top:unset}.login-register-header-heading-focus{color:#1b222c;margin-bottom:0}.website-redesign .login-register-form-focus{border-bottom:unset;border-bottom:1px solid #e7e9ee;padding:25px 0 0 0}.website-redesign .login-register-form-focus:last-child{border-bottom-width:0}.author_details{color:#677283;font-size:.8em}.post img{border-radius:3px;box-shadow:0 2px 4px rgba(0,0,0,.1);height:auto;max-width:100%}.blog iframe{width:100%}.blog>.page-header{border:none;margin:0;padding:0}.blog>.page-header h1{margin:0}.blog .post .page-header h2{margin-top:0}.blog .page-header h1 a{color:#495365}.blog .page-header h1 .small{color:#495365;display:inline-block;float:right;font-size:16px;margin-top:22px}.blog .blurb ul li{margin-bottom:6.25px}.long-form-features h2{margin-bottom:25px;margin-top:0}.long-form-features img{border-radius:3px;box-shadow:0 2px 4px rgba(0,0,0,.1);height:auto;max-width:100%}.long-form-features h3{margin:0}.long-form-features i{color:#5f8dd2}.template-page-header{padding-top:1.5625rem}.template-page-header h1,.template-page-header h2{line-height:1;margin-right:7.8125;margin-top:6px}.template-thumbnail .thumbnail{box-shadow:0 2px 4px rgba(0,0,0,.1);-webkit-box-shadow:0 2px 4px rgba(0,0,0,.1)}.template-thumbnail .thumbnail img{width:100%}.template-thumbnail a{padding:0}.template-thumbnail a h3{color:#3265b2;margin:10px 0 10px 20px}.template-thumbnail .caption{background:#fcfdfd;border-top:1px solid #ddd}.template-section-header{margin-top:0}.download-buttons,.social_buttons{padding-top:20px}.sample-template{box-shadow:0 2px 4px rgba(0,0,0,.3)}.template-details-section{padding-bottom:20px}.template-details-section .btn{margin-left:6px}.searchResult h1{color:#3265b2}.searchResult img{height:auto;max-width:100%}.template-large-pdf-preview img{max-width:100%}.wiki .contents ul{padding:0}.wiki .contents ul li{font-size:14px;list-style:none;margin-bottom:6px}.wiki .contents h2{font-size:18px}.wiki .page-header a{font-size:.8em;line-height:1}.wiki .editsection,.wiki .toctogglespan{display:none}.wiki .toc ul{list-style:none}.wiki .toc ul .tocnumber:after{content:"."}.wiki table{margin-bottom:12.5px}.wiki table td,.wiki table th{border-bottom:1px solid #d0d5dd;padding:6.25px 12.5px}.wiki table th{font-family:Merriweather,serif;font-weight:700;text-align:left}.wiki .table-no-borders td,.wiki .table-no-borders th{border:0}.wiki .example{max-width:100%}.wiki .example .code pre{background-color:#f4f5f6;border-radius:6px;margin:0;padding:12.5px;white-space:pre-wrap}.wiki .example .output{padding-top:10px;text-align:center}.wiki .example .output img{border-radius:6px;box-shadow:0 1px 3px #afb5c0;height:auto;max-width:100%;width:auto}@media (min-width:1360px){.wiki .example{margin-right:-200px}}@media (max-width:768px){.wiki .contents{margin-top:30px}}.wiki .source-latex{line-height:normal}.wiki .source-latex li,.wiki .source-latex pre{border:0 none #fff;line-height:normal}.wiki .latex.source-latex .imp{color:red;font-weight:700}.wiki .latex.source-latex .li1,.wiki .latex.source-latex li{font-weight:400;vertical-align:top}.wiki .latex.source-latex .ln{margin:0;padding:0 2px;text-align:right;vertical-align:top;width:1px}.wiki .latex.source-latex .li2{font-weight:700;vertical-align:top}.wiki .latex.source-latex .kw1{color:maroon}.wiki .latex.source-latex .co1{color:#2c922c;font-style:italic}.wiki .latex.source-latex .es0{color:#000;font-weight:700}.wiki .latex.source-latex .sy0{color:#e02020}.wiki .latex.source-latex .st0{color:#000}.wiki .latex.source-latex .re1{color:#8020e0;font-weight:400}.wiki .latex.source-latex .re2{color:#c08020;font-weight:400}.wiki .latex.source-latex .re3{color:#8020e0;font-weight:400}.wiki .latex.source-latex .re4{color:maroon;font-weight:400}.wiki .latex.source-latex .re5{color:#00008b;font-weight:700}.wiki .latex.source-latex .re6{color:maroon;font-weight:400}.wiki .latex.source-latex .re7{color:#0000d0;font-weight:400}.wiki .latex.source-latex .re8{color:#c00000;font-weight:400}.wiki .latex.source-latex .re9{color:#2020c0;font-weight:400}.wiki .latex.source-latex .re10{color:maroon;font-weight:400}.wiki .latex.source-latex .re11{color:#e00000;font-weight:400}.wiki .latex.source-latex .re12{color:maroon;font-weight:400}.wiki .latex.source-latex .ln-xtra,.wiki .latex.source-latex div.ln-xtra,.wiki .latex.source-latex li.ln-xtra{background-color:#ffc}.wiki .latex.source-latex span.xtra{display:block}.wiki a.search-result{display:block;margin-top:12.5px}.wiki a.search-result .search-result-content{color:#495365;font-size:.8em;margin-top:6.25px;white-space:pre-wrap}.wiki a.search-result .search-result-content em{font-weight:700}.wiki a.search-result:active,.wiki a.search-result:focus,.wiki a.search-result:hover{box-shadow:0 2px 4px rgba(0,0,0,.35);text-decoration:none}.wiki a.search-result:active .search-result-content,.wiki a.search-result:focus .search-result-content,.wiki a.search-result:hover .search-result-content{color:#1b222c}.wiki img{height:auto;max-width:100%}.wiki img.add-vertical-space{padding-bottom:20px;padding-top:20px}.wiki th.no-wrap{text-align:left;white-space:nowrap}.wiki span.TEX{letter-spacing:-.125em;padding-right:.5ex}.wiki span.TEX span.E{padding-right:.1ex;position:relative;top:.5ex}.wiki a span.TEX span.E{text-decoration:none}.wiki span.LATEX span.A{font-size:75%;left:-.4em;position:relative;top:-.5ex}.wiki span.LATEX span.TEX{left:-.4em;margin-right:-.5ex;position:relative}.translations-message{background-color:#3265b2;border-bottom:1px solid #4b7ecc;color:#fff;padding:6.25px 12.5px;text-align:center}.translations-message a{text-decoration:underline}.translations-message img{margin-bottom:-1px;vertical-align:text-bottom}.translations-message .close{color:#fff;opacity:1;text-shadow:none}.translations-message a,.translations-message a:focus,.translations-message a:hover{color:#fff}.contact-modal{z-index:1065}.contact-backdrop{z-index:1060}.contact-us-modal textarea{height:120px}.contact-suggestions{background-color:#f4f5f6;border-bottom:1px solid #d0d5dd;border-top:1px solid #d0d5dd;color:#495365;font-size:.9rem;margin:0 -20px 10px;padding:10px 0}.contact-suggestion-label{margin-bottom:10px;padding:0 20px}.contact-suggestion-list{background-color:#fff;border-bottom:1px solid #d0d5dd;border-top:1px solid #d0d5dd;list-style:none;margin:0;padding-left:0}.contact-suggestion-list li:last-child .contact-suggestion-list-item{border-bottom:none}.contact-suggestion-list-item{border-bottom:1px solid #eeeff2;color:#495365;cursor:pointer;display:table;padding:10px 20px;width:100%}.contact-suggestion-list-item:focus,.contact-suggestion-list-item:hover{background-color:#098842;color:#fff!important;text-decoration:none}.contact-suggestion-list-item:focus .fa,.contact-suggestion-list-item:hover .fa{color:inherit}.contact-suggestion-list-item .fa{color:#d0d5dd;display:table-cell;text-align:right}.form-helper{background-color:#677283;border-radius:50%;color:#fff;display:inline-block;font-weight:bolder;height:1.3em;line-height:1.3;vertical-align:initial;width:1.3em}.form-helper:focus,.form-helper:hover{color:#fff;text-decoration:none}.price-breakdown{margin-bottom:-10px;text-align:center}.input-feedback-message{display:none;font-size:.8em}.has-error .input-feedback-message{display:inline-block}.payment-submit{padding-top:12.5px}.payment-method-toggle{margin-bottom:12.5px}.payment-method-toggle-switch{border:1px solid #d0d5dd;border-radius:5px 0 0 5px;color:#495365;display:inline-block;padding:12.5px;text-align:center;width:50%}.payment-method-toggle-switch:focus,.payment-method-toggle-switch:hover{color:#495365;text-decoration:none}.payment-method-toggle-switch:hover{color:#38404d}.payment-method-toggle-switch+.payment-method-toggle-switch{border-left-width:0;border-radius:0 5px 5px 0}.payment-method-toggle-switch-selected{box-shadow:inset 0 -2px 0 0;color:#195936}.payment-method-toggle-switch-selected:focus,.payment-method-toggle-switch-selected:hover{color:#195936}.team-invite .message{margin:3em 0}.team-invite-name{word-break:break-word}.capitalised{text-transform:capitalize}.three-d-secure-container--react>.three-d-secure-recurly-container,.three-d-secure-container>.three-d-secure-recurly-container{height:400px}.three-d-secure-container--react>.three-d-secure-recurly-container>div[data-recurly=three-d-secure-container],.three-d-secure-container>.three-d-secure-recurly-container>div[data-recurly=three-d-secure-container]{height:100%}.price-switch-header{margin-bottom:25px}.price-switch-header h2{margin:0}.price-switch-header .student-disclaimer{color:#677283;font-size:14px;margin:12.5px 0 0 0}.price-feature-description h3{margin-top:0}.price-feature-description h4{margin-bottom:15px;margin-top:5px}.price-feature-description ul{padding-left:10px}.price-feature-description li{list-style-position:inside}.price-feature-description .number-of-collaborators{margin-bottom:5px}.price-summary{padding-bottom:7.5px}.price-summary .price-summary-line{display:flex;justify-content:space-between}.price-summary .price-summary-line .price-summary-line-width{width:70%}.price-summary .price-summary-total-line{font-size:16px;margin-top:5px}.price-summary .price-summary-total-line .price-summary-due{color:#098842}.price-summary hr{margin-bottom:20px;margin-top:20px}.price-nowrap{white-space:nowrap}.price-details-spacing{height:12.5px}.price-cancel-anytime{font-size:12px}.trial-coupon-summary{font-size:12px;padding-bottom:7.5px;padding-top:7.5px}.trial-coupon-summary .trial-coupon-summary-list-container{padding-left:0}.trial-coupon-summary .trial-coupon-summary-list-container li{align-items:center;display:flex;font-size:14px;gap:12px;justify-content:flex-start;margin-bottom:8px}.toggle-address-second-line{margin-bottom:12.5px}.payment-method-toggle{border-bottom:1px solid #e7e9ee}.change-currency{margin-top:5px}.change-currency-toggle{color:#495365;font-size:12px;padding-left:0;text-decoration:underline}.change-currency-toggle:focus,.change-currency-toggle:hover{color:#495365}.change-currency-dropdown-selected-icon{left:10px;position:absolute}.back-btn{border:none;border-radius:50%;color:#495365;padding:0 10px 2px 12px}.back-btn:hover{background-color:#e7e9ee;color:#495365}.back-btn:active{background-color:#d0d5dd}a.row-link{color:#495365;display:flex;flex-direction:row;line-height:24px;padding:6px 0;text-decoration:none}a.row-link:active,a.row-link:focus,a.row-link:hover{background-color:#f4f5f6;outline:none;text-decoration:none}a.row-link .icon{display:flex;flex:1 1 5%;margin-top:16px;padding:0 16px}a.row-link .icon>span{font-size:16px}a.row-link .icon.arrow{margin-top:12px}a.row-link .icon.arrow>span{font-size:24px}a.row-link .text{display:flex;flex:1 1 90%;flex-direction:column}a.row-link .text .heading{font-weight:700}a.row-link .text .subtext{font-weight:400}.check-icon{background-color:#ebf6ea;border-radius:50%;color:#5bb553;height:20px;width:20px}@media only screen and (min-width:992px){#change-plan table td:last-child,#change-plan table th:last-child{text-align:center;width:1%}}@media only screen and (max-width:991px){#change-plan table{display:block}#change-plan table thead{display:none}#change-plan table tbody,#change-plan table td,#change-plan table tr{display:inline-block;padding-bottom:0;padding-top:0;text-align:center;width:100%}#change-plan table td:first-child{padding-top:20px}#change-plan table td:last-child{padding-bottom:20px;padding-top:10px}#change-plan table tr:first-child td:first-child{padding-top:10px}#change-plan table tr{border-bottom:1px solid #e7e9ee}#change-plan table tr td,#change-plan table tr th{border:0!important}#change-plan table tr:last-child{border-bottom:0}}#change-to-group .modal-header h4{line-height:1.33rem}#change-to-group .modal-header h4 .h5{font-family:Lato,sans-serif}.group-subscription-modal .modal-header{text-align:center}.group-subscription-modal .group-plan-option{display:block}.group-subscription-modal .group-plan-option span{font-weight:400;padding-left:5px}.group-subscription-modal .educational-discount-badge{height:50px;padding-top:25px}.group-subscription-modal .educational-discount-badge p{display:inline-block;font-size:14px;font-weight:700;padding-left:5px;padding-right:5px}.group-subscription-modal .educational-discount-badge .applied{background-color:rgba(25,89,54,.1);color:#195936}.group-subscription-modal .educational-discount-badge .ineligible{background-color:#f4f5f6;color:#495365}.project-invite-accept{margin-bottom:30px}.project-invite-accept form{padding-top:15px}.project-name-tooltip .tooltip-inner{max-width:80vw;overflow:hidden;text-overflow:ellipsis}.project-invite-invalid{margin-bottom:30px}.project-invite-invalid .actions{padding-top:15px}.link-sharing-invite{font-family:Noto Sans,sans-serif}.link-sharing-invite-header{font-size:var(--font-size-07);line-height:var(--line-height-06)}.sharing-updates,.sharing-updates h1{font-family:Noto Sans,sans-serif}.sharing-updates h1{font-size:var(--font-size-05);line-height:var(--line-height-04)}.sharing-updates small{font-size:var(--font-size-02);line-height:var(--line-height-02)}.full-height{height:100%;padding:0}.error-container{align-items:center;display:flex}.error-container.full-height{margin-top:-46.5px}.error-details{flex:1 1 50%;max-width:90%;padding:25px}@media (min-width:768px){.error-details{padding:50px}}.error-status{color:#495365;font-size:32px}.error-description,.error-status{font-family:Merriweather,serif;margin-bottom:25px}.error-description{color:#677283;font-size:20px}.error-box{background-color:#e7e9ee;font-family:Menlo,Monaco,Consolas,Courier New,monospace;margin-bottom:25px;padding:10px}.error-actions{margin-top:50px}.error-btn{background-color:#098842;border:0 solid transparent;border-color:#098842;border-radius:9999px;border-width:1px;color:#fff;cursor:pointer;display:inline-block;display:block;font-size:16px;font-weight:700;line-height:1.5625;margin-bottom:0;padding:4px 16px;text-align:center;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle;white-space:nowrap}.error-btn.active:focus,.error-btn:active:focus,.error-btn:focus{outline:none}.error-btn:focus,.error-btn:hover{color:#fff;text-decoration:none}.error-btn.disabled,.error-btn.disabled.active,.error-btn.disabled:active,.error-btn.disabled:focus,.error-btn.disabled:hover,.error-btn[disabled],.error-btn[disabled].active,.error-btn[disabled]:active,.error-btn[disabled]:focus,.error-btn[disabled]:hover,fieldset[disabled] .error-btn,fieldset[disabled] .error-btn.active,fieldset[disabled] .error-btn:active,fieldset[disabled] .error-btn:focus,fieldset[disabled] .error-btn:hover{box-shadow:none;cursor:not-allowed;opacity:1}.error-btn fieldset[disabled].btn-info,.error-btn.disabled.btn-default,.error-btn.disabled.btn-info,.error-btn[disabled].btn-default,.error-btn[disabled].btn-info,fieldset[disabled].btn-default .error-btn{filter:alpha(opacity=65);opacity:.65}.error-btn:hover{background-color:#1e6b41;border-color:#1e6b41}.error-btn:focus{color:#fff;outline:none}.error-btn:active,.error-btn:focus-visible{background-color:#098842;border-color:#098842;box-shadow:0 0 0 2px #97b6e5;outline:none}.error-btn:active,.error-btn:focus-visible,.error-btn:hover{color:#fff}.error-btn.disabled,.error-btn.disabled.active,.error-btn.disabled:active,.error-btn.disabled:focus-visible,.error-btn.disabled:hover,.error-btn[disabled],.error-btn[disabled].active,.error-btn[disabled]:active,.error-btn[disabled]:focus-visible,.error-btn[disabled]:hover,fieldset[disabled] .error-btn,fieldset[disabled] .error-btn.active,fieldset[disabled] .error-btn:active,fieldset[disabled] .error-btn:focus-visible,fieldset[disabled] .error-btn:hover{background-color:#e7e9ee;border-color:#e7e9ee;color:#afb5c0}.error-btn[data-ol-loading=true],.error-btn[data-ol-loading=true]:hover{background-color:#098842!important;border-color:#098842;color:#fff!important}@media (min-width:768px){.error-btn{display:inline-block}}.history-toolbar{align-items:center;padding-left:12.5px;position:absolute;top:40px;width:100%}.history-compare-mode-toolbar,.history-toolbar{background-color:#2f3a4c;color:#fff;display:flex;font-size:14px;height:32px;line-height:1}.history-compare-mode-toolbar{align-items:stretch;flex-direction:column;justify-content:center;padding:0 10px}.history-toolbar-selected-version{margin-right:12.5px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.history-toolbar-selected-label,.history-toolbar-time{font-weight:700}.history-toolbar-actions{flex-grow:1;flex-shrink:0}.history-toolbar-btn,.history-toolbar-btn-danger{border:0 solid transparent;border-radius:9999px;cursor:pointer;display:inline-block;font-size:16px;font-size:14px;font-weight:700;line-height:1.5625;line-height:1.5;margin-bottom:0;margin-right:12.5px;padding:4px 16px;padding:0 8px;padding-left:10px;padding-right:10px;text-align:center;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle;white-space:nowrap}.history-toolbar-btn-danger.active:focus,.history-toolbar-btn-danger:active:focus,.history-toolbar-btn-danger:focus,.history-toolbar-btn.active:focus,.history-toolbar-btn:active:focus,.history-toolbar-btn:focus{outline:none}.history-toolbar-btn-danger:focus,.history-toolbar-btn-danger:hover,.history-toolbar-btn:focus,.history-toolbar-btn:hover{color:#fff;text-decoration:none}.history-toolbar-btn-danger.disabled,.history-toolbar-btn-danger.disabled.active,.history-toolbar-btn-danger.disabled:active,.history-toolbar-btn-danger.disabled:focus,.history-toolbar-btn-danger.disabled:hover,.history-toolbar-btn-danger[disabled],.history-toolbar-btn-danger[disabled].active,.history-toolbar-btn-danger[disabled]:active,.history-toolbar-btn-danger[disabled]:focus,.history-toolbar-btn-danger[disabled]:hover,.history-toolbar-btn.disabled,.history-toolbar-btn.disabled.active,.history-toolbar-btn.disabled:active,.history-toolbar-btn.disabled:focus,.history-toolbar-btn.disabled:hover,.history-toolbar-btn[disabled],.history-toolbar-btn[disabled].active,.history-toolbar-btn[disabled]:active,.history-toolbar-btn[disabled]:focus,.history-toolbar-btn[disabled]:hover,fieldset[disabled] .history-toolbar-btn,fieldset[disabled] .history-toolbar-btn-danger,fieldset[disabled] .history-toolbar-btn-danger.active,fieldset[disabled] .history-toolbar-btn-danger:active,fieldset[disabled] .history-toolbar-btn-danger:focus,fieldset[disabled] .history-toolbar-btn-danger:hover,fieldset[disabled] .history-toolbar-btn.active,fieldset[disabled] .history-toolbar-btn:active,fieldset[disabled] .history-toolbar-btn:focus,fieldset[disabled] .history-toolbar-btn:hover{box-shadow:none;cursor:not-allowed;opacity:1}.history-toolbar-btn fieldset[disabled].btn-info,.history-toolbar-btn-danger fieldset[disabled].btn-info,.history-toolbar-btn-danger.disabled.btn-default,.history-toolbar-btn-danger.disabled.btn-info,.history-toolbar-btn-danger[disabled].btn-default,.history-toolbar-btn-danger[disabled].btn-info,.history-toolbar-btn.disabled.btn-default,.history-toolbar-btn.disabled.btn-info,.history-toolbar-btn[disabled].btn-default,.history-toolbar-btn[disabled].btn-info,fieldset[disabled].btn-default .history-toolbar-btn,fieldset[disabled].btn-default .history-toolbar-btn-danger{filter:alpha(opacity=65);opacity:.65}.history-toolbar-btn{background-color:#3265b2;border-color:transparent;color:#fff}.alert .history-toolbar-btn{background-color:#204172}.alert .history-toolbar-btn.active,.alert .history-toolbar-btn.checked,.alert .history-toolbar-btn:active,.alert .history-toolbar-btn:focus,.alert .history-toolbar-btn:hover,.open .dropdown-toggle.alert .history-toolbar-btn{background-color:#172f52}.history-toolbar-btn.active,.history-toolbar-btn.checked,.history-toolbar-btn:active,.history-toolbar-btn:focus,.history-toolbar-btn:hover,.open .dropdown-toggle.history-toolbar-btn{background-color:#295392;border-color:transparent;color:#fff}.history-toolbar-btn.active,.history-toolbar-btn:active,.open .dropdown-toggle.history-toolbar-btn{background-image:none}.history-toolbar-btn.disabled,.history-toolbar-btn.disabled.active,.history-toolbar-btn.disabled:active,.history-toolbar-btn.disabled:focus,.history-toolbar-btn.disabled:hover,.history-toolbar-btn[disabled],.history-toolbar-btn[disabled].active,.history-toolbar-btn[disabled]:active,.history-toolbar-btn[disabled]:focus,.history-toolbar-btn[disabled]:hover,fieldset[disabled] .history-toolbar-btn,fieldset[disabled] .history-toolbar-btn.active,fieldset[disabled] .history-toolbar-btn:active,fieldset[disabled] .history-toolbar-btn:focus,fieldset[disabled] .history-toolbar-btn:hover{background-color:#3265b2;border-color:transparent}.history-toolbar-btn .badge{background-color:#fff;color:#3265b2}.history-toolbar-btn-danger{background-color:#b83a33;border-color:#b83a33;border-width:1px;color:#fff}.history-toolbar-btn-danger:hover{background-color:#942f2a;border-color:#942f2a}.history-toolbar-btn-danger:focus{color:#fff;outline:none}.history-toolbar-btn-danger:active,.history-toolbar-btn-danger:focus-visible{background-color:#b83a33;border-color:#b83a33;box-shadow:0 0 0 2px #97b6e5;outline:none}.history-toolbar-btn-danger:active,.history-toolbar-btn-danger:focus-visible,.history-toolbar-btn-danger:hover{color:#fff}.history-toolbar-btn-danger.disabled,.history-toolbar-btn-danger.disabled.active,.history-toolbar-btn-danger.disabled:active,.history-toolbar-btn-danger.disabled:focus-visible,.history-toolbar-btn-danger.disabled:hover,.history-toolbar-btn-danger[disabled],.history-toolbar-btn-danger[disabled].active,.history-toolbar-btn-danger[disabled]:active,.history-toolbar-btn-danger[disabled]:focus-visible,.history-toolbar-btn-danger[disabled]:hover,fieldset[disabled] .history-toolbar-btn-danger,fieldset[disabled] .history-toolbar-btn-danger.active,fieldset[disabled] .history-toolbar-btn-danger:active,fieldset[disabled] .history-toolbar-btn-danger:focus-visible,fieldset[disabled] .history-toolbar-btn-danger:hover{background-color:#e7e9ee;border-color:#e7e9ee;color:#afb5c0}.history-toolbar-btn-danger[data-ol-loading=true],.history-toolbar-btn-danger[data-ol-loading=true]:hover{background-color:#b83a33!important;border-color:#b83a33;color:#fff!important}.history-toolbar-entries-list{border-left:1px solid #2f3a4c;display:flex;flex:0 0 250px;justify-content:center;padding:0 10px}.history-entries{background-color:#e7e9ee;color:#677283;font-size:14px;height:100%;position:relative}.history-entries.history-entries-dragging{cursor:row-resize}.history-entry-day{background-color:#e7e9ee;color:#677283;display:block;line-height:1;padding:5px 10px;position:sticky;top:0}.history-entry-fromV-handle,.history-entry-toV-handle{background-color:#06582b;cursor:row-resize;height:8px;left:0;position:absolute;right:0;top:0;z-index:2}.history-entry-fromV-handle.ui-draggable-dragging,.history-entry-toV-handle.ui-draggable-dragging{opacity:0}.history-entry-fromV-handle:after,.history-entry-toV-handle:after{-webkit-font-smoothing:antialiased;color:#fff;content:"\00b7\00b7\00b7\00b7";font-size:20px;height:8px;line-height:4px;position:absolute;text-align:center;width:100%}.history-entry-fromV-handle{bottom:0;top:auto}.history-entry-details,.history-version-with-label{background-color:#fff;border-bottom:2px solid #e7e9ee;cursor:pointer;padding:5px 10px;position:relative}.history-version-with-label{padding:7px 10px}.history-entry-selected .history-entry-details,.history-version-with-label-selected{background-color:#098842;color:#fff}.history-entry-hover-selected .history-entry-details,.history-entry-hover-selected.history-entry-selected .history-entry-details,.history-version-with-label-hover-selected,.history-version-with-label-hover-selected.history-entry-selected{background-color:#3aa068;color:#fff}.history-entry-hover-selected-to .history-entry-details,.history-entry-selected-to .history-entry-details,.history-version-with-label-hover-selected-to,.history-version-with-label-selected-to{padding-top:13px}.history-entry-hover-selected-from .history-entry-details,.history-entry-selected-from .history-entry-details,.history-version-with-label-hover-selected-from,.history-version-with-label-selected-from{padding-bottom:13px}.history-label{color:#fff;display:inline-block;font-size:14px;margin-bottom:3px;margin-right:10px;white-space:nowrap}.history-entry-hover-selected .history-label,.history-entry-selected .history-label,.history-version-with-label-hover-selected .history-label,.history-version-with-label-selected .history-label{color:#3265b2}.history-entry-hover-selected .history-label.history-label-pseudo-current-state,.history-entry-selected .history-label.history-label-pseudo-current-state,.history-version-with-label-hover-selected .history-label.history-label-pseudo-current-state,.history-version-with-label-selected .history-label.history-label-pseudo-current-state{color:#098842}.history-label-comment,.history-label-delete-btn{background-color:#3265b2;border:0;padding:0 8px 1px 8px}.history-label-pseudo-current-state .history-label-comment,.history-label-pseudo-current-state .history-label-delete-btn{background-color:#098842}.history-entry-hover-selected .history-label-comment,.history-entry-hover-selected .history-label-delete-btn,.history-entry-selected .history-label-comment,.history-entry-selected .history-label-delete-btn,.history-version-with-label-hover-selected .history-label-comment,.history-version-with-label-hover-selected .history-label-delete-btn,.history-version-with-label-selected .history-label-comment,.history-version-with-label-selected .history-label-delete-btn{background-color:#fff}.history-label-comment{border-radius:9999px;display:block;float:left;max-width:190px;overflow:hidden;text-overflow:ellipsis}.history-label-own .history-label-comment{border-radius:9999px 0 0 9999px;padding-right:4px}.history-label-delete-btn{border-radius:0 9999px 9999px 0;padding-left:4px;padding-right:8px}.history-label-delete-btn:hover{background-color:#295392}.history-entry-hover-selected .history-label-delete-btn:hover,.history-entry-selected .history-label-delete-btn:hover,.history-version-with-label-hover-selected .history-label-delete-btn:hover,.history-version-with-label-selected .history-label-delete-btn:hover{background-color:#ebebeb}.history-label-tooltip{padding:6.25px;text-align:left;white-space:normal}.history-label-tooltip-datetime,.history-label-tooltip-owner,.history-label-tooltip-title{margin:0 0 6.25px 0}.history-label-tooltip-title{font-weight:700}.history-label-tooltip-datetime{margin-bottom:0}.history-entry-changes{list-style:none;margin-bottom:3px;padding-left:0}.history-entry-change{word-break:break-all}.history-entry-change-action{margin-right:.5em}.history-entry-change-doc{color:#495365;font-weight:700}.history-entry-hover-selected .history-entry-change-doc,.history-entry-selected .history-entry-change-doc,.history-version-with-label-selected .history-entry-change-doc{color:#fff}.history-entry-metadata-time{white-space:nowrap}.history-entry-metadata-users{display:inline;margin-right:.5em;padding:0}.history-entry-metadata-user{display:inline}.history-entry-metadata-user:after{content:", "}.history-entry-metadata-user:last-of-type:after{content:none}.history-entries-list-upgrade-prompt{background-color:#fff;margin-bottom:2px;padding:5px 10px}.change-list-compare .history-entries-list-upgrade-prompt{font-size:14px}.history-labels-list,.history-labels-list-compare{background-color:#e7e9ee;color:#677283;font-size:14px;height:100%;overflow-y:auto;position:relative}.history-labels-list-compare.history-entries-dragging,.history-labels-list.history-entries-dragging{cursor:row-resize}.history-labels-list-compare{background-color:transparent}.history-file-tree-inner{background-color:#495365;bottom:0;left:0;overflow-y:auto;position:absolute;right:0;top:0}.history-file-tree-inner .loading{color:#fff;font-family:Merriweather,serif;font-size:14px;text-align:center}.tooltip-history-file-tree{font-size:12px}.tooltip-history-file-tree .tooltip-inner{max-width:400px;text-align:left}.history-file-entity-wrapper{color:#fff;margin-left:12.5px}.history-file-entity-link{color:#fff;display:block;line-height:2.05;position:relative}.history-file-entity-link:hover{background-color:#2f3a4c;color:#fff;text-decoration:none}.history-file-entity-link:hover:before{background-color:#2f3a4c;content:"\00a0";left:-9999px;position:absolute;width:9999px}.history-file-entity-link:focus{color:#fff;outline:none;text-decoration:none}.history-file-entity-link-selected{background-color:#098842;color:#fff;font-weight:700}.history-file-entity-link-selected:before{background-color:#098842;content:"\00a0";left:-9999px;position:absolute;width:9999px}.history-file-entity-link-selected:focus,.history-file-entity-link-selected:hover{background-color:#098842;color:#fff;pointer-events:none}.history-file-entity-link-selected:focus:before,.history-file-entity-link-selected:hover:before{background-color:#098842;content:"\00a0";left:-9999px;position:absolute;width:9999px}.history-file-entity-name-container{align-items:center;display:flex}.history-file-entity-name{flex:0 1 auto;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.history-file-entity-operation-badge{background:hsla(0,0%,100%,.25);border-radius:8px;color:#fff;flex:0 0 auto;font-size:.7em;line-height:1;margin-left:.5em;margin-top:2px;padding:2px 4px 3px;text-transform:lowercase}.history-file-entity-icon,.history-file-operation-icon{color:#afb5c0;flex:0 0 auto;font-size:14px;margin-right:.5em}.history-file-entity-link-selected .history-file-entity-icon,.history-file-entity-link-selected .history-file-operation-icon{color:#fff}.history-file-operation-icon{margin-left:.5em;margin-right:0}.history-file-entity-name-removed{text-decoration:line-through}#metrics{max-width:none;padding:0 30px;width:auto}#metrics svg.nvd3-svg{width:100%}#metrics .overbox{background:#fff;border:1px solid #dfdfdf;margin:0;padding:40px 20px}#metrics .overbox .box{border-bottom:1px solid #d8d8d8;margin-bottom:40px;overflow:hidden;padding-bottom:30px}#metrics .overbox .box .header{margin-bottom:20px}#metrics .overbox .box .header h4{font-size:19px;margin:0}#metrics .print-button{font-size:20px;margin-right:10px}#metrics .title-button{font-size:20px;margin-right:5px}#metrics .metric-col{padding:15px}#metrics .metric-header-container h4{margin-bottom:0}#metrics svg{display:block;height:250px}#metrics svg text{font-family:Open Sans,sans-serif}#metrics svg:not(:root){overflow:visible}#metrics svg.hidden-legend-margin-fix{height:235px;margin-top:15px}#metrics svg.no-fill-opacity .nvd3 .nv-area{fill-opacity:1}#metrics .nvtooltip{z-index:10}#metrics .metric-header-container>h4{margin-bottom:0;margin-top:0}#metrics .metric-header-container .metric-tooltip{font-size:.5em;top:-1em}#metrics .metric-footer-container{text-align:center}#metrics .metric-overlay-backdrop,#metrics .metric-overlay-error,#metrics .metric-overlay-loading{height:100%;left:0;padding:16px;padding-top:56px;position:absolute;top:0;width:100%}#metrics .metric-overlay-loading{padding:175px 20%}#metrics .metric-overlay-error{display:none;padding-top:175px;text-align:center}#metrics .metric-overlay-backdrop{opacity:.5}#metrics .metric-overlay-backdrop-inner{background-color:#fff;height:100%;width:100%}@media (min-width:1200px){#metrics-header{margin-bottom:30px}}#metrics-header h3{display:inline-block}#metrics-header .section_header{margin-bottom:0}#metrics-header #filters-container{text-align:right}#metrics-header #filters-container .by{color:#989898;font-style:italic}#metrics-header #lags-container .dropdown-menu{min-width:0}#metrics-header #dates-container{display:inline-block}#metrics-header #dates-container .daterangepicker{margin-right:15px}#metrics-header #dates-container #metrics-dates{padding:0}#metrics-footer{margin-top:30px;text-align:center}body.print-loading #metrics .metric-col{opacity:.5}dl.codebox dt{line-height:1}.primary-email-check-container{max-width:400px!important}.primary-email-check-card{display:flex;flex-direction:column;gap:12px;padding:24px}.primary-email-check-card .primary-email-confirm-button{margin-top:12px}.primary-email-check-card .primary-email-change-button{margin-bottom:12px}.primary-email-check-card p{margin-bottom:0}.primary-email-check-header{margin-bottom:0;margin-top:12px}.primary-email-check-form{display:flex;flex-direction:column;gap:12px;padding:0!important}.primary-email-check-logo{margin:0 auto;width:130px}.project-url-lookup-results{margin-top:25px}.project-url-lookup-link-box{align-items:center;background-color:#f4f5f6;border:1px solid #d0d5dd;display:flex;justify-content:space-between;padding:6px 12px 6px 12px}.project-url-lookup-hint{padding:6.25px}grammarly-extension{mix-blend-mode:normal!important}.project-list-sidebar-wrapper{display:flex;flex-direction:column;height:100%}.project-list-sidebar{flex-grow:1;height:100%;padding-left:15px;padding-right:15px}.project-list-sidebar-survey{background-color:#495365;color:#e7e9ee;font-size:14px;padding:6.25px 20px 6.25px 15px;position:relative}.project-list-sidebar-survey:before{background-image:linear-gradient(0deg,rgba(0,0,0,.1),transparent);bottom:100%;content:"";display:block;height:15px;left:0;position:absolute;width:100%}.project-list-sidebar-survey-link{color:#fff;font-weight:700}.project-list-sidebar-survey-link:active,.project-list-sidebar-survey-link:focus,.project-list-sidebar-survey-link:hover{color:#fff;text-decoration:none}.project-list-sidebar-survey-dismiss{border-radius:0;color:#3265b2;color:#fff;cursor:pointer;font-size:inherit;font-size:16px;font-weight:400;line-height:1;padding:0;position:absolute;right:6.25px;top:6.25px;vertical-align:inherit}.project-list-sidebar-survey-dismiss,.project-list-sidebar-survey-dismiss:active,.project-list-sidebar-survey-dismiss[disabled],fieldset[disabled] .project-list-sidebar-survey-dismiss{background-color:transparent;box-shadow:none}.project-list-sidebar-survey-dismiss,.project-list-sidebar-survey-dismiss:active,.project-list-sidebar-survey-dismiss:focus,.project-list-sidebar-survey-dismiss:hover{border-color:transparent}.project-list-sidebar-survey-dismiss:focus,.project-list-sidebar-survey-dismiss:hover{background-color:transparent;color:#28518f;text-decoration:underline}.project-list-sidebar-survey-dismiss[disabled]:focus,.project-list-sidebar-survey-dismiss[disabled]:hover,fieldset[disabled] .project-list-sidebar-survey-dismiss:focus,fieldset[disabled] .project-list-sidebar-survey-dismiss:hover{color:#afb5c0;text-decoration:none}.project-list-sidebar-survey-dismiss.btn-danger{color:#b83a33}.project-list-sidebar-survey-dismiss.btn-danger:focus,.project-list-sidebar-survey-dismiss.btn-danger:hover{color:#942f2a}.project-list-sidebar-survey-dismiss:active,.project-list-sidebar-survey-dismiss:focus,.project-list-sidebar-survey-dismiss:hover{color:#fff;text-decoration:none}.notification-close-button-style button:focus,.notification-close-button-style button:hover{background-color:transparent!important}.project-list-sidebar-v2-pane{background-color:#495365;color:#fff;flex-grow:0;flex-shrink:0;font-size:13px;padding:12.5px;text-align:center}.project-list-sidebar-v2-pane a{color:#fff;text-decoration:underline}.project-list-sidebar-v2-pane a:hover{text-decoration:none}.project-list-sidebar-v2-pane-toggle{color:#fff;line-height:1;padding:0}.project-list-sidebar-v2-pane-toggle:active,.project-list-sidebar-v2-pane-toggle:focus,.project-list-sidebar-v2-pane-toggle:hover{color:#fff}#front-chat-holder>div[role=button]{margin-bottom:50px}.chat .message-wrapper .message .message-content a{color:inherit;text-decoration:underline}.gallery-item-title{margin-bottom:40px;margin-top:25px}.gallery-item-title *{vertical-align:middle}.gallery-item-title h1{display:inline;margin:0}.gallery-official{cursor:default;font-size:14px;margin-left:10px;padding:3px 8px}.field-title{font-weight:700}.filters{float:right;margin-bottom:30px}@media (max-width:992px){.filters{float:none}}.cta-links .cta-link.btn{margin:0 10px 10px 0}.popular-tags .gallery-thumbnail{margin:0 0 1em 0!important}.tag-link{margin:0 5px 10px 0;max-width:100%;white-space:inherit}.gallery-abstract{-webkit-hyphens:auto;hyphens:auto;word-break:break-word}.gallery-abstract a{-webkit-hyphens:none;hyphens:none}.gallery-thumbnail{display:inline-block;margin:0 0 2em;width:100%}.gallery-thumbnail .thumbnail{align-items:center;box-shadow:0 2px 4px rgba(0,0,0,.1);display:flex;justify-content:center;margin:0 0 10px 0;overflow:hidden;padding:0;width:100%}.gallery-thumbnail .thumbnail h3{color:#1e6b41;margin:10px 0 10px 20px}.gallery-thumbnail .thumbnail.thumbnail-tag{height:100px}.gallery-thumbnail .caption{background:none;border:none;text-align:center}.gallery-thumbnail .caption__description{font-style:italic;overflow:hidden;padding:0 0 5px 0;text-overflow:ellipsis;white-space:nowrap}.gallery-thumbnail .gallery-list-item-title{align-items:center;display:flex;justify-content:center}.gallery-thumbnail .gallery-list-item-title *{cursor:inherit;flex-basis:content}.gallery-thumbnail .caption__title{overflow:hidden;text-align:center;text-overflow:ellipsis;white-space:nowrap}.gallery-thumbnail a:hover{text-decoration:none}.gallery-thumbnail a:hover .caption__title{text-decoration:underline}.gallery-large-pdf-preview{border:1px solid #f4f5f6;margin-top:30px}.gallery-large-pdf-preview img{max-width:100%}.top-picks-banner{margin-left:auto;margin-right:auto;padding:0;width:100%}@media (min-width:1250px){.top-picks-banner{width:1220px}}@media (max-width:1249px){.top-picks-banner{border-radius:0}}.gallery-top-pick-badge{cursor:default;font-size:14px;margin-left:10px;padding:3px 8px}@media (max-width:767px){.gallery-container{-moz-column-count:2;column-count:2;-moz-column-gap:2em;column-gap:2em}}@media (min-width:768px){.gallery-container.use-column{-moz-column-count:3;column-count:3;-moz-column-gap:3em;column-gap:3em}.gallery-container.use-percent{margin:0 -1.5em}.gallery-container.use-percent .gallery-thumbnail{padding:0 1.5em;width:33.3333333%}}@media (min-width:992px){.gallery-large-pdf-preview{margin-top:0}}.section-tags{margin-bottom:40px;margin-top:20px}.login-register-alternatives .form-group:last-child{margin-bottom:0}.login-register-container{margin:0 auto;max-width:400px;padding-bottom:125px}.login-register-header{border-bottom:1px solid #e7e9ee;padding-bottom:20px;padding-top:25px}.login-register-header-heading{color:#495365;margin:0}.login-register-card{padding-bottom:0;padding-top:0;text-align:center}.login-register-form{border-bottom:1px solid #e7e9ee;padding:25px}.login-register-form:last-child{border-bottom-width:0}.login-register-hr-text-container,.login-register-text{margin:0}.login-register-text{font-size:90%;padding-bottom:25px}.login-register-text:last-child{padding-bottom:0}.login-register-hr-text-container{line-height:1;padding:25px 0;position:relative}.login-register-hr-text-container:before{background-color:#e7e9ee;content:"";height:1px;left:0;position:absolute;right:0;top:50%}.login-register-hr-text{background-color:#fff;padding:0 12.5px;position:relative}.login-btn-icon{background:#fff url(/images/lion-f625265ccd8f245cd4b1.svg) 50%/20px no-repeat;border-radius:99999px;height:26px;left:4px;position:absolute;top:4px;width:26px}.login-btn-icon:before{content:"\00a0"}.login-btn-icon-twitter{background-image:url(/images/logo_twitter-500638623cf48c8147ff.svg)}.registration-message-heading{color:#495365}.registration-message-details{font-size:90%}.registration-block-separator{margin-bottom:0}.website-redesign .login-register-container{max-width:320px}.website-redesign .login-register-text{font-size:.875rem;line-height:1.4;text-align:left}.website-redesign .login-register-text.login-register-text-center{text-align:center}.website-redesign .login-register-hr-text-container{padding:25px 0 12.5px 0}.website-redesign .login-register-hr-text-container:before{top:31.25px}.website-redesign .login-register-error-container{padding-bottom:12.5px}.website-redesign .login-register-other-links{padding:25px 0}.website-redesign .login-register-other-links a{color:var(--green-50);text-decoration:underline;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}.website-redesign .login-register-other-links a:hover{color:var(--green-60)}.website-redesign .login-register-other-links a:focus{outline:2px solid var(--green-50);outline-offset:1px}.website-redesign .flex-center,.website-redesign .login-btn{display:flex;justify-content:center}.website-redesign .login-btn{align-items:center;padding:4px 0}.website-redesign .login-btn-icon{background:unset;border-radius:unset;height:20px;left:unset;margin-right:5px;position:relative;top:unset;width:20px}.website-redesign .login-btn-icon:before{content:unset}.website-redesign .form-group{position:relative;text-align:left}.website-redesign .form-group label{font-size:14px}.website-redesign .form-group-password{display:flex;flex-direction:column;position:relative}.website-redesign .form-group-password .form-group-password-input input.form-control{padding-right:35px}.website-redesign .form-group-password .visibility-toggle{align-items:center;background-color:unset;border:unset;display:flex;height:35px;justify-content:center;position:absolute;right:0;top:0;width:35px}.website-redesign .form-group-password .visibility-toggle #visibility-icon-off{margin-top:2px}.website-redesign .top-padding-computed-2{padding-top:50px}.website-redesign .form-group-password-input{display:flex;flex-direction:column;width:100%}.website-redesign .register-container .register-content-container{background-color:#f2f4f7;display:flex;min-height:100vh}.website-redesign .register-container .register-form{background-color:#fff;display:flex;height:100%;justify-content:center;padding-top:50px;width:100%}@media (max-width:991px){.website-redesign .register-container .register-form{height:100%}}.website-redesign .register-container .register-form .login-register-card{max-width:320px;padding-bottom:125px}.website-redesign .register-container .register-illustration-container{align-items:center;display:flex;height:100%}.website-redesign .register-container .register-illustration-container .register-illustration{left:80px;position:absolute;top:100px}@media (min-width:1700px){.website-redesign .register-container .register-illustration-container .register-illustration{align-items:center;display:flex;justify-content:center;left:unset;position:relative;top:unset;width:100%}}.website-redesign .register-container .register-illustration-container .register-illustration .register-main-image{max-width:850px}@media (max-width:1350px){.website-redesign .register-container .register-illustration-container .register-illustration .register-main-image{max-width:750px}}@media (max-width:1150px){.website-redesign .register-container .register-illustration-container .register-illustration .register-main-image{max-width:670px}}.website-redesign .register-container .register-illustration-container .register-illustration .sticky-tags{bottom:-135px;height:210px;position:absolute;right:130px}@media (min-width:1700px){.website-redesign .register-container .register-illustration-container .register-illustration .sticky-tags{right:calc(50% - 300px)}}.website-redesign .tos-agreement-notice{font-size:12px;text-align:left}.website-redesign .tos-agreement-notice a{color:var(--green-50);text-decoration:underline;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}.website-redesign .tos-agreement-notice a:hover{color:var(--green-60)}.website-redesign .tos-agreement-notice a:focus{outline:2px solid var(--green-50);outline-offset:1px}.website-redesign .register-header-logo:focus{outline:2px solid var(--green-50)}.rfp-main{background-color:#f4f5f6;font-size:18px;min-width:240px}.rfp-h1{color:inherit;font-size:1.953em;margin-bottom:1.6em}@media (min-width:480px){.rfp-h1{font-size:2.442em}}.rfp-h1-masthead{color:#fff;margin-bottom:1em}.rfp-h2{font-size:1.953em}.rfp-h2,.rfp-h3{color:inherit;margin-bottom:1.6em}.rfp-h3{font-size:1.563em}.rfp-h3-cta{margin-bottom:40px;margin-top:0}.rfp-lead{margin-bottom:1.6em;margin-left:auto;margin-right:auto;max-width:30em}@media (min-width:480px){.rfp-lead{font-size:1.25em}}.rfp-lead-cta{margin-bottom:40px;margin-top:0}.rfp-lead-strong{font-weight:700}.rfp-section-masthead .rfp-lead-strong{margin-bottom:0}.rfp-p{margin-bottom:1.6em;margin-left:auto;margin-right:auto;max-width:30em}.rfp-section-feature .rfp-p{margin-left:0}.rfp-section-feature-alt .rfp-p{margin-left:auto;margin-right:0}.rfp-highlight{font-weight:700}.rfp-header{background-color:rgba(27,30,38,.9);height:80px;min-width:320px;padding:15px 20px;position:fixed;top:0;transition:height .2s;width:100%;z-index:2}@media (min-width:480px){.rfp-header{padding-left:30px;padding-right:30px}}@media (min-width:768px){.rfp-header{padding-left:60px;padding-right:60px}}.rfp-main-header-collapsed .rfp-header{height:50px;padding-bottom:10px;padding-top:10px}.rfp-header-wrapper{align-items:center;display:flex;height:100%;justify-content:space-between;margin:auto;max-width:1170px}.rfp-header-logo,.rfp-header-logo-container{height:100%}.rfp-section{overflow:hidden;padding:30px;text-align:center}@media (min-width:480px){.rfp-section{padding:30px}}@media (min-width:768px){.rfp-section{padding:60px}}.rfp-section-masthead{background-color:#252a35;background-position:50%;background-size:cover;color:#fff;padding-top:80px}.rfp-section-masthead .rfp-lead{opacity:0;transition:opacity .8s ease}.rfp-section-masthead.rfp-section-masthead-in .rfp-lead{opacity:1}.rfp-section-blockquote{background-color:#195936;box-shadow:0 0 30px 5px rgba(0,0,0,.3);padding-bottom:30px;padding-top:30px;position:relative}.rfp-section-feature{display:block;text-align:left}@media (min-width:768px){.rfp-section-feature .rfp-section-wrapper{align-items:center;display:flex}}.rfp-feature-description-container,.rfp-feature-video-container{flex:0 0 50%}@media (min-width:768px){.rfp-feature-description-container{padding-right:1em}.rfp-section-feature-alt .rfp-feature-description-container{padding-left:1em;padding-right:0}.rfp-feature-video-container{padding-left:1em}.rfp-section-feature-alt .rfp-feature-video-container{order:-1;padding-left:0;padding-right:1em}}.rfp-section-feature-alt{background-color:#2f3a4c;color:#fff}@media (min-width:768px){.rfp-section-feature-alt{text-align:right}}.rfp-section-feature-white{background:#fff}.rfp-section-testimonials{background-color:#1b1e26}.rfp-section-final{background-color:#252a35}.rfp-section-wrapper{margin:0 auto;max-width:1170px}.rfp-h1-masthead-portion{display:inline-block;opacity:0;transform:translate(150px);transition:transform .8s ease 0s,opacity .8s ease 0s}.rfp-h1-masthead-portion:nth-child(2),.rfp-h1-masthead-portion:nth-child(3){transition-delay:.5s,.5s}.rfp-h1-masthead-portion:nth-child(4),.rfp-h1-masthead-portion:nth-child(5){transition-delay:1s,1s}.rfp-section-masthead-in .rfp-h1-masthead-portion{opacity:1;transform:translate(0)}.rfp-video{border-radius:5px;box-shadow:0 0 30px 5px rgba(0,0,0,.3);max-width:100%}.rfp-video-masthead{box-shadow:none;height:163px;margin-bottom:2em;max-width:none;opacity:0;transform:translateY(100px);transition:transform .8s ease 1s,opacity .8s ease 1s;width:270px}@media (min-width:480px){.rfp-video-masthead{height:241px;width:400px}}@media (min-width:600px){.rfp-video-masthead{height:316px;width:525px}}@media (min-width:768px){.rfp-video-masthead{height:381px;height:420px;width:633px;width:697px}}.rfp-section-masthead-in .rfp-video-masthead{box-shadow:0 0 30px 5px rgba(0,0,0,.3);opacity:1;transform:translate(0)}.rfp-video-anim{opacity:0;transform:translate(100%);transition:transform .8s ease,opacity .8s ease}.rfp-video-anim-alt{transform:translate(-100%)}.rfp-video-anim-in{opacity:1;transform:translate(0)}@media (min-width:992px){.rfp-quote-section{display:flex}}.rfp-quote{background-color:#fff;border-left:0;border-radius:5px;box-shadow:0 0 30px 5px rgba(0,0,0,.3);color:#363c4c;display:block;font-size:1.25em;font-size:1em;margin:0 auto 20px;max-width:30em;padding:20px 40px;quotes:"\201C" "\201D";width:100%}@media (min-width:480px){.rfp-quote{font-size:1.25em}}@media (min-width:992px){.rfp-quote{display:flex;flex:0 1 50%;flex-direction:column;justify-content:space-between;margin-right:20px}}.rfp-quote p{display:block}@media (min-width:992px){.rfp-quote:last-of-type{margin-right:0}}.rfp-quote:before{content:none}.rfp-quote-main{border-left:0;color:#fff;display:block;font-size:1.25em;margin:0 auto;max-width:none;padding:0;quotes:"\201C" "\201D"}@media (min-width:992px){.rfp-quote-main{display:flex}}.rfp-quote-main p{display:block}.rfp-quote-main:before{content:none}.rfp-quoted-text{display:inline-block;font-family:Merriweather,serif;font-style:italic;margin:0 0 40px 0;position:relative;text-align:left}.rfp-quoted-text:before{color:inherit;content:open-quote;display:block;font-family:Merriweather,serif;font-size:1.25em;left:-.75em;line-height:inherit;position:absolute}@media (min-width:992px){.rfp-quote-main .rfp-quoted-text{flex:1 1 70%;margin:auto 40px auto auto}}.rfp-quoted-person{display:inline-block;font-size:.8em}.rfp-quote-main .rfp-quoted-person{align-items:center;display:flex;flex:0 0 30%;justify-content:center}.rfp-quoted-person-name{margin:0}.rfp-quoted-person-affil{font-size:.8em;margin:0}.rfp-quoted-person-affil:focus,.rfp-quoted-person-affil:hover{cursor:pointer;text-decoration:none}.rfp-quote-main .rfp-quoted-person-affil,.rfp-quote-main .rfp-quoted-person-affil:focus,.rfp-quote-main .rfp-quoted-person-affil:hover{color:#fff}.rfp-quoted-person-photo{border-radius:3em;margin-bottom:20px;width:6em}.rfp-quote-main .rfp-quoted-person-photo{margin-bottom:0;margin-right:20px}.rfp-users{display:flex;flex-wrap:wrap;margin:0 1em 2em}@media (min-width:992px){.rfp-users{align-items:center;flex-wrap:nowrap}}.rfp-user-container{flex:0 0 100%;padding:10px}@media (min-width:480px){.rfp-user-container{flex-basis:50%}}@media (min-width:992px){.rfp-user-container{flex-basis:25%;padding:20px}}.rfp-user-logo{max-width:100%}.rfp-cta-container{background-color:#fff;border-radius:5px;box-shadow:0 0 30px 5px rgba(0,0,0,.3);color:#363c4c;margin:0 auto;max-width:40em;padding:40px}.rfp-cta-header{font-size:1em;padding:.2em 1em}.rfp-cta-main{display:block;transform:translate(0);transition:transform .25s}.rfp-cta-extra{display:block;font-size:.5em;left:50%;opacity:0;position:absolute;text-transform:uppercase;transform:translate(-50%,100%);transition:opacity .25s,transform .25s}#institution-hub .section_header .dropdown{margin-right:10px}#institution-hub #usage .recent-activity .overbox{font-size:16px}#institution-hub #usage .recent-activity .hub-big-number,#institution-hub #usage .recent-activity .hub-number-label,#institution-hub #usage .recent-activity .worked-on{display:block;width:50%}#institution-hub #usage .recent-activity .hub-big-number{padding-right:10px;text-align:right}#institution-hub #usage .recent-activity .hub-number-label,#institution-hub #usage .recent-activity .worked-on{float:right}#institution-hub #usage .recent-activity .hub-number-label:nth-child(odd){margin-top:16px}#institution-hub #usage .recent-activity .worked-on{color:#495365;font-style:italic}#publisher-hub .recent-activity .hub-big-number{padding-right:15px;text-align:right}#publisher-hub #templates-container{width:100%}#publisher-hub #templates-container tr{border:1px solid #f4f5f6}#publisher-hub #templates-container td{padding:15px}#publisher-hub #templates-container td:last-child{text-align:right}#publisher-hub #templates-container .title-cell{max-width:300px}#publisher-hub #templates-container .title-text{font-weight:700}#publisher-hub #templates-container .hub-big-number{padding-right:10px;padding-top:10px;text-align:right;width:60%}#publisher-hub #templates-container .hub-number-label,#publisher-hub #templates-container .since{float:right;width:35%}@media screen and (max-width:940px){#publisher-hub #templates-container .hub-number-label,#publisher-hub #templates-container .since{float:none}}#publisher-hub #templates-container .hub-long-big-number{padding-right:40px}#publisher-hub #templates-container .created-on{color:#afb5c0;font-size:14px;font-style:italic}.hub-header h2{display:inline-block}.hub-header a{color:#195936}.hub-header i{font-size:30px}.hub-header .dropdown{margin-right:10px}.admin-item{margin-bottom:60px;position:relative}.admin-item .section-title{text-transform:capitalize}.admin-item .alert-danger{color:#b83a33}.hidden-chart-section{display:none}.hub-circle{background-color:#195936;border-radius:50%;color:#fff;display:inline-block;height:160px;padding-top:50px;text-align:center;width:160px}.hub-circle img{height:110px}.hub-circle-number{display:block;font-size:36px;font-weight:900;line-height:1}.hub-big-number{color:#195936;float:left;font-size:32px;font-weight:900;line-height:40px}.hub-big-number,.hub-number-label{display:block}.hub-metric-link{position:absolute;right:0;top:9px}.hub-metric-link a{color:#195936}.hub-metric-link i{margin-right:5px}.custom-donut-container svg{margin:auto;max-width:700px}.custom-donut-container .chart-center-text{fill:#195936;text-anchor:middle;font-family:Lato,sans-serif;font-size:40px;font-weight:700}.custom-donut-container .nv-legend-text{font-family:Lato,sans-serif;font-size:14px}.chart-no-center-text .chart-center-text{display:none}.superscript{font-size:20px}.admin-page summary{display:list-item}.material-switch input[type=checkbox]{display:none}.material-switch input[type=checkbox]:checked+label:before{background:inherit;opacity:.5}.material-switch input[type=checkbox]:checked+label:after{background:inherit;left:20px}.material-switch input[type=checkbox]:disabled+label{cursor:not-allowed;opacity:.5}.material-switch label{cursor:pointer;height:0;position:relative;width:40px}.material-switch label:before{background:#000;border-radius:8px;box-shadow:inset 0 0 10px rgba(0,0,0,.5);height:16px;opacity:.3;width:40px}.material-switch label:after,.material-switch label:before{content:"";margin-top:-2px;position:absolute;transition:all .2s ease-in-out}.material-switch label:after{background:#fff;border-radius:16px;box-shadow:0 0 5px rgba(0,0,0,.3);height:24px;left:-4px;top:-4px;width:24px}.v2-import__img{display:block;height:auto;margin-left:auto;margin-right:auto;max-width:100%;width:80%}.website-redesign-overflow-unset{overflow:unset!important}.website-redesign{overflow-x:hidden}.website-redesign a,.website-redesign div,.website-redesign h1,.website-redesign h2,.website-redesign h3,.website-redesign h4,.website-redesign p,.website-redesign strong{font-family:Noto Sans,sans-serif}.website-redesign h1{font-size:var(--font-size-09);font-weight:600;line-height:var(--line-height-08)}@media (max-width:991px){.website-redesign h1{font-size:var(--font-size-08);line-height:var(--line-height-07)}}.website-redesign h2{font-size:var(--font-size-08);font-weight:600;line-height:var(--line-height-07);margin-top:0}@media (max-width:991px){.website-redesign h2{font-size:var(--font-size-07);line-height:var(--line-height-06)}}.website-redesign h3{font-weight:600}.website-redesign h1>span.mono-text,.website-redesign h2>span.mono-text,.website-redesign h3>span.mono-text{display:block;margin-bottom:5px}.website-redesign .btn{font-weight:600}.website-redesign .img-rounded{border-radius:16px}@media (min-width:992px){.website-redesign .plans-cards{display:flex;flex-wrap:wrap}}.website-redesign .plans-cards .plans-card-container{min-height:348px}@media (max-width:991px){.website-redesign .plans-cards .plans-card-container{margin-bottom:16px;min-height:unset}}.website-redesign .plans-cards .plans-card{border-radius:8px;height:100%;padding:0}.website-redesign .plans-cards .plans-card .plans-card-inner{display:flex;flex-direction:column;font-size:16px;height:100%;padding:36px}.website-redesign .plans-cards .plans-card .plans-card-inner .plans-card-inner-title{font-size:20px;font-weight:600;margin-top:0}.website-redesign .plans-cards .plans-card .plans-card-inner ul{list-style-type:none;margin:0;padding:0}.website-redesign .plans-cards .plans-card .plans-card-inner ul li{margin-bottom:8px}.website-redesign .plans-cards .plans-card .plans-card-inner .plans-card-inner-footer{display:flex;flex-direction:column;gap:12px;margin-top:auto}@media (max-width:991px){.website-redesign .plans-cards .plans-card .plans-card-inner .plans-card-inner-footer{margin-top:16px}}.website-redesign .plans-cards .plans-card.grey-border{border:2px solid var(--neutral-20)}.website-redesign .plans-cards .plans-card.blue-border{border:solid 2px var(--sapphire-blue);border-radius:8px}.website-redesign .plans-cards .plans-card.blue-border .plans-card-inner-title{color:var(--sapphire-blue)}.website-redesign .plans-bottom-text{font-size:1.125rem}@media (min-width:992px){.website-redesign .info-cards{display:flex;flex-wrap:wrap}}.website-redesign .info-cards .info-card-container{margin-bottom:16px}.website-redesign .info-cards .info-card-container .info-card{border-radius:8px;border-top:8px solid var(--sapphire-blue);box-shadow:0 2px 4px 0 #1e253014,0 4px 12px 0 #1e25301f;height:100%;padding:32px 40px 32px 40px}.website-redesign .info-cards .info-card-container .info-card.info-card-big-text h3{font-size:1.5rem;line-height:1.333}.website-redesign .info-cards .info-card-container .info-card.info-card-big-text p{font-size:1.125rem;line-height:1.333}.website-redesign .info-cards .info-card-container .info-card i.material-symbols{color:var(--sapphire-blue)}@media (max-width:991px){.website-redesign .security-heading-section p{text-align:left}.website-redesign .security-heading-section h2{text-align:left;width:100%}}.website-redesign .security-heading-section .heading-and-stickers-container{display:flex;justify-content:center}.website-redesign .security-heading-section .heading-and-stickers-container .lock-sticker{position:absolute;right:-50px;top:-95px;width:70px}@media (max-width:1200px){.website-redesign .security-heading-section .heading-and-stickers-container .lock-sticker{right:-105px}}@media (max-width:991px){.website-redesign .security-heading-section .heading-and-stickers-container .lock-sticker{display:none}}.website-redesign .security-heading-section .heading-and-stickers-container .arrow-sticker{position:absolute;right:-15px;top:-50px;width:140px}@media (max-width:1200px){.website-redesign .security-heading-section .heading-and-stickers-container .arrow-sticker{right:-70px}}@media (max-width:991px){.website-redesign .security-heading-section .heading-and-stickers-container .arrow-sticker{display:none}}.website-redesign .customer-story-card-title{font-size:1.5rem;font-weight:600;margin-bottom:12.5px;margin-top:25px}.website-redesign .customer-story-card-title a{color:var(--neutral-90);display:flex;justify-content:space-between}.website-redesign .customer-story-card-title a i{font-size:1.5rem}.website-redesign .customer-story-content .table-of-contents-section{padding-right:64px}@media (max-width:991px){.website-redesign .customer-story-content .table-of-contents-section{display:none}}.website-redesign .customer-story-content .table-of-contents-section .table-of-contents{border-bottom:1px solid var(--neutral-30);border-top:1px solid var(--neutral-30);padding:32px 0}.website-redesign .customer-story-content .table-of-contents-section .table-of-contents .heading{color:var(--green-60);font-size:1.125rem;font-weight:600;line-height:1.333}.website-redesign .customer-story-content .table-of-contents-section .table-of-contents li{font-weight:500;list-style:none;padding-top:16px}.website-redesign .customer-story-content .table-of-contents-section .table-of-contents li a{color:var(--neutral-70);text-decoration:none}.website-redesign .customer-story-content .story-details-section h3{font-size:1.875rem;line-height:1.333;margin-top:0}.website-redesign .customer-story-content .story-details-section .at-glance-section{padding-top:24px}.website-redesign .customer-story-content .story-details-section .at-glance-section p{margin-top:16px}.website-redesign .customer-story-content .story-details-section p{font-size:1.125rem}.website-redesign .customer-story-content .story-details-section .border-r-16{border-radius:16px}.website-redesign .customer-story-content .story-details-section .introduction-image-caption{padding-top:16px}.website-redesign .customer-story-content .story-details-section .stats-card{background:var(--dark-jungle-green);border-radius:16px;color:var(--white);display:flex;flex-direction:row;padding:32px}@media (max-width:991px){.website-redesign .customer-story-content .story-details-section .stats-card{flex-direction:column}}.website-redesign .customer-story-content .story-details-section .stats-card .stats h3{font-size:2rem;font-weight:600}.website-redesign .customer-story-content .story-details-section .stats-card .stats p{font-weight:600;height:50px}.website-redesign .customer-story-content .customer-quote{border-left:2px solid var(--green-60);padding-left:16px}.website-redesign .customer-story-content .customer-quote blockquote{color:var(--neutral-90);font-size:1.6rem;line-height:1.333}.website-redesign .customer-story-content .customer-quote p{font-size:1.125rem;margin-top:1rem}.website-redesign .features-card{align-items:center;display:flex;flex-wrap:wrap}.website-redesign .features-card .features-card-media,.website-redesign .features-card .features-card-media-right{padding-top:24px}.website-redesign .features-card .features-card-media img.img-responsive,.website-redesign .features-card .features-card-media-right img.img-responsive{width:100%}.website-redesign .features-card .features-card-media video,.website-redesign .features-card .features-card-media-right video{box-shadow:0 4px 6px 0 rgba(30,37,48,.12),0 8px 16px 0 rgba(30,37,48,.12);max-height:100%;width:auto;width:100%}@media (max-width:991px){.website-redesign .features-card .features-card-media,.website-redesign .features-card .features-card-media-right{margin-bottom:50px}}@media (min-width:992px){.website-redesign .features-card .features-card-media-right{padding-left:64px}.website-redesign .features-card .features-card-media{padding-right:64px}}.website-redesign .features-card .features-card-description,.website-redesign .features-card .features-card-description-list{padding-top:16px}.website-redesign .features-card .features-card-description p,.website-redesign .features-card .features-card-description-list p{font-size:1.125rem;line-height:1.333;margin-bottom:16px}@media (max-width:991px){.website-redesign .features-card .features-card-description p,.website-redesign .features-card .features-card-description-list p{font-size:1rem;line-height:1.375}}.website-redesign .features-card .features-card-description a.green-link,.website-redesign .features-card .features-card-description-list a.green-link{display:block;margin-top:4px}.website-redesign .features-card .features-card-description h3{font-size:1.5rem;line-height:1.4;margin-bottom:8px}.website-redesign .features-card .features-card-description-list h3{font-size:1.875rem;line-height:1.5}.website-redesign .features-card .features-card-description-list ul.list-heading-text,.website-redesign .features-card .features-card-description-list ul.list-simple-text{list-style-type:none;margin:0;padding:0}.website-redesign .features-card .features-card-description-list ul.list-heading-text li,.website-redesign .features-card .features-card-description-list ul.list-simple-text li{display:flex;font-size:1.125rem;line-height:1.333;margin-bottom:12px}.website-redesign .features-card .features-card-description-list ul.list-heading-text li .label-premium,.website-redesign .features-card .features-card-description-list ul.list-simple-text li .label-premium{font-family:Noto Sans,sans-serif;margin-left:0}@media (max-width:991px){.website-redesign .features-card .features-card-description-list ul.list-heading-text li,.website-redesign .features-card .features-card-description-list ul.list-simple-text li{font-size:1rem;line-height:1.375}}.website-redesign .features-card .features-card-description-list ul.list-heading-text li h4{font-size:20px;font-weight:600;margin-bottom:8px;margin-top:0}.website-redesign .features-card-hero{align-items:center;display:flex;flex-wrap:wrap;height:655px;padding-top:50px;position:relative}@media (max-width:991px){.website-redesign .features-card-hero{height:unset;padding-top:0}}.website-redesign .features-card-hero .features-card-description{display:flex;flex-direction:column;justify-content:center}@media (min-width:1200px){.website-redesign .features-card-hero .features-card-description h1.features-card-hero-smaller-title{font-size:2.8rem}}.website-redesign .features-card-hero .features-card-description p{font-size:1.25rem;width:90%}@media (max-width:991px){.website-redesign .features-card-hero .features-card-description p{font-size:1.125rem;line-height:1.33;width:unset}}.website-redesign .features-card-hero .features-card-image{height:auto;padding:0 15px;position:absolute;top:100px;transform:translateX(600px);width:720px}@media (max-width:1500px){.website-redesign .features-card-hero .features-card-image{transform:translateX(calc(50vw - 121px))}}@media (max-width:1400px){.website-redesign .features-card-hero .features-card-image{transform:translateX(calc(50vw - 52px));width:650px}}@media (min-width:1200px) and (max-width:1200px){.website-redesign .features-card-hero .features-card-image{transform:translateX(50vw);width:600px}}@media (max-width:1199px){.website-redesign .features-card-hero .features-card-image{transform:translateX(calc(50vw - 106px));width:600px}}@media (max-width:1100px){.website-redesign .features-card-hero .features-card-image{transform:translateX(calc(50vw - 55px));width:550px}}@media (max-width:991px){.website-redesign .features-card-hero .features-card-image{margin-bottom:50px;position:relative;top:0;transform:none;width:100%}}.website-redesign .features-card-hero .features-card-image img.img-responsive{width:100%}.website-redesign .features-card-hero .sticky-tags{bottom:-105px;height:160px;position:absolute;right:55px;z-index:2}@media (max-width:1400px){.website-redesign .features-card-hero .sticky-tags{bottom:-103px;height:150px;right:47px}}@media (max-width:1200px){.website-redesign .features-card-hero .sticky-tags{bottom:-87px;height:130px}}@media (max-width:1100px){.website-redesign .features-card-hero .sticky-tags{bottom:-81px;height:120px}}@media (max-width:991px){.website-redesign .features-card-hero .sticky-tags{bottom:-75px;height:130px;right:70px}}@media (max-width:767px){.website-redesign .features-card-hero .sticky-tags{bottom:-10vw;height:24%;right:9.5vw}}.website-redesign .organization-logos-container{align-items:center;display:flex;justify-content:space-around}@media (max-width:1199px){.website-redesign .organization-logos-container{flex-wrap:wrap;gap:30px}}.website-redesign .organization-logos-container .organization-logo{max-height:62px;-o-object-fit:contain;object-fit:contain}.website-redesign .organization-logos-container .organization-logo.samsung-logo{height:110px;max-height:110px}@media (max-width:1199px){.website-redesign .organization-logos-container .organization-logo{flex-basis:34%;max-height:40px}}.website-redesign .template-cards .template-card>img.img-responsive{border-radius:8px;width:100%}.website-redesign .template-cards .template-card .template-card-title{font-size:24px;margin-bottom:8px;margin-top:16px}.website-redesign .template-cards .template-card .template-card-title a{color:var(--neutral-90);display:inline-flex;font-weight:600;justify-content:space-between;text-decoration:none;width:100%}.website-redesign .template-cards .template-card .template-card-title a:hover{text-decoration:underline}.website-redesign .template-cards .template-card .template-card-title i.material-symbols{text-decoration:none;vertical-align:middle}.website-redesign .template-cards .template-card .template-card-text{font-size:16px}@media (max-width:991px){.website-redesign .template-cards .template-card:not(:last-of-type){margin-bottom:40px}}.website-redesign .lime-color-text{color:var(--malachite)}.website-redesign .cta-card-individual-customer{background-image:linear-gradient(to right,rgba(0,0,0,.4) 0,var(--dark-jungle-green) 20%,var(--dark-jungle-green) 100%),url(/images/overleaf-pattern-purple-caf28131e23c91db3926.png);background-size:cover;border-radius:8px;color:var(--white);display:flex;justify-content:space-between;padding:64px}@media (max-width:991px){.website-redesign .cta-card-individual-customer{padding:48px 24px}}.website-redesign .cta-card-individual-customer h2{color:var(--white);font-size:1.875rem}.website-redesign .cta-card-individual-customer p{font-size:1.125rem}.website-redesign .cta-card-individual-customer .btn-container{align-items:flex-start;display:flex;justify-content:center;padding-top:10px}.website-redesign .paragraph-line-height{line-height:1.333}.website-redesign .cta-card{align-items:center;background-image:linear-gradient(to right,rgba(0,0,0,.4) 0,var(--dark-jungle-green) 25%,var(--dark-jungle-green) 75%,rgba(0,0,0,.4) 100%),url(/images/overleaf-pattern-purple-caf28131e23c91db3926.png);background-size:cover;border-radius:8px;color:var(--white);display:flex;flex-direction:column;padding:64px}@media (max-width:991px){.website-redesign .cta-card{padding:48px 24px}}.website-redesign .cta-card .cta-card-title{font-size:3.25rem;line-height:1.3;margin-bottom:8px}.website-redesign .cta-card .cta-card-title.title-mono>span{font-feature-settings:"ss05";font-family:DM Mono,monospace}.website-redesign .cta-card .cta-card-title span.purple-color{color:#939aff;font-weight:400}.website-redesign .cta-card .cta-card-title span.lime-color{color:var(--malachite);font-weight:500}@media (max-width:991px){.website-redesign .cta-card .cta-card-title{font-size:2.25rem}}.website-redesign .cta-card .cta-card-text{font-size:1.125rem;line-height:1.333;margin:8px 0;text-align:center}.website-redesign .cta-card .cta-card-quote{font-size:1.875rem;font-weight:600;letter-spacing:0;line-height:2.5rem;text-align:center}.website-redesign .quote-card{align-items:center;background:var(--dark-jungle-green);border-radius:16px;color:#fff;display:flex;flex-direction:column;padding:32px;text-align:center}.website-redesign .quote-card blockquote{font-size:1.875rem;font-weight:600;line-height:1.26}@media (max-width:991px){.website-redesign .quote-card blockquote{font-size:1.5rem;line-height:1.333}}.website-redesign .quote-card .quote-card-img{margin-bottom:16px;margin-top:32px}.website-redesign .quote-card .quote-card-link{color:var(--green-30)}@media (max-width:991px){.website-redesign .quote-card{padding:56px 24px 56px 24px}}.website-redesign .integrations-card{align-items:center;display:flex;flex-wrap:wrap}.website-redesign .integrations-card .integrations-icons img{height:6rem;width:6rem}.website-redesign .integrations-card .integrations-icons .first-row,.website-redesign .integrations-card .integrations-icons .second-row{display:flex}.website-redesign .integrations-card .integrations-icons .first-row{justify-content:space-between}.website-redesign .integrations-card .integrations-icons .second-row{justify-content:space-evenly;margin-top:40px}.website-redesign .text-with-bg{font-feature-settings:"ss05";border-radius:10px;display:inline-block;font-family:DM Mono,monospace;margin-top:5px;padding:0 10px}.website-redesign .text-with-bg.tangerine-bg{background-color:var(--vivid-tangerine)}.website-redesign .text-with-bg.purple-bg{background-color:var(--ceil)}.website-redesign .text-with-bg.yellow-bg{background-color:var(--caramel)}.website-redesign .text-with-bg.green-bg{background-color:var(--green-30)}.website-redesign .security-info .security-info-first-row{margin-bottom:32px}@media (max-width:991px){.website-redesign .security-info .security-info-first-row{margin-bottom:0}.website-redesign .security-info .security-info-item{margin-bottom:16px}}@media (min-width:992px){.website-redesign .resources{display:flex;flex-wrap:wrap}}.website-redesign .resources .resources-card{align-content:flex-start;display:flex;flex-direction:column;flex-wrap:wrap;margin-bottom:48px}@media (max-width:991px){.website-redesign .resources .resources-card{margin-bottom:16px}}.website-redesign .resources .resources-card img{width:56px}.website-redesign .resources .resources-card h3{width:100%}.website-redesign .resources .resources-card a{margin-top:auto}@media (min-width:992px){.website-redesign .centered-block{text-align:center}}@media (max-width:992px){.website-redesign .heading-section-md-align-left{align-items:baseline;display:flex;flex-direction:column}.website-redesign .heading-section-md-align-left h2,.website-redesign .heading-section-md-align-left p{text-align:left}}.website-redesign .dm-mono,.website-redesign .mono-text{font-feature-settings:"ss05";font-family:DM Mono,monospace}.website-redesign .mono-text{color:var(--green-60);font-size:1.125rem;font-weight:500;line-height:1.5rem;margin:0}@media (max-width:991px){.website-redesign .customer-stories-hero-heading{font-size:2.25rem;line-height:1.333}}.website-redesign .customer-stories-hero-text{font-size:1.25rem}.website-redesign .customer-stories-logos-text{font-size:1.125rem}.website-redesign .link-with-arrow{font-feature-settings:"ss05";color:var(--green-50);font-family:DM Mono,monospace;font-size:var(--font-size-04);font-weight:500;line-height:var(--line-height-03)}.website-redesign .link-with-arrow i.material-symbols{font-size:24px;line-height:inherit;margin-left:var(--spacing-02);padding-bottom:3px;vertical-align:middle}.website-redesign .link-with-arrow:hover{color:var(--green-60)}.website-redesign .link-monospace{font-feature-settings:"ss05";color:var(--green-50);font-family:DM Mono,monospace;font-weight:500}.website-redesign .link-monospace:hover{color:var(--green-60)}.website-redesign .green-link{font-feature-settings:"ss05";color:var(--green-50);font-family:DM Mono,monospace;font-size:var(--font-size-04);font-weight:500;line-height:var(--line-height-03)}.website-redesign .green-link i.material-symbols{font-size:24px;line-height:inherit;margin-left:var(--spacing-02);padding-bottom:3px;vertical-align:middle}.website-redesign .green-link:hover{color:var(--green-60)}.website-redesign .inline-green-link{color:var(--green-50);padding:0;text-decoration:underline;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}.website-redesign .inline-green-link:hover{color:var(--green-60)}.website-redesign .btn-blue{background:var(--sapphire-blue);color:var(--white)}.website-redesign .btn-blue:hover{background:var(--sapphire-blue-dark)}.website-redesign .btn-primary:not([disabled]){background:var(--green-50);color:var(--white)}.website-redesign .btn-primary:not([disabled]):hover{background:var(--green-60)}.website-redesign a:focus,.website-redesign a:focus-visible{outline:0}.website-redesign a:focus-visible{box-shadow:0 0 0 2px #97b6e5}.website-redesign a i{margin-left:var(--spacing-02);padding-bottom:3px;vertical-align:middle}.website-redesign a.link-lg{font-size:var(--font-size-04);line-height:var(--line-height-03)}.website-redesign a.link-lg i{font-size:24px;line-height:inherit}.website-redesign .green-round-background,.website-redesign .round-background{border-radius:50%;font-size:1.5rem;height:24px;margin-right:8px;top:4px;vertical-align:middle;width:24px}.website-redesign .green-round-background{background:var(--green-30)}.website-redesign .blue-round-background{background:var(--blue-10);border-radius:50%;color:var(--blue-40);font-size:1.5rem;height:24px;margin-right:8px;top:4px;vertical-align:middle;width:24px}.website-redesign blockquote{border-left:none;font-family:Noto Sans,sans-serif;font-size:1.875rem;font-weight:600;line-height:1.333;margin:unset;padding:unset;quotes:"\201C" "\201D"}.website-redesign blockquote:after{display:inline;margin-left:1px;visibility:visible}.website-redesign blockquote:before{color:inherit;margin-right:0;vertical-align:0}.website-redesign blockquote:after,.website-redesign blockquote:before{font-size:1.875rem;line-height:1.333}@media (max-width:991px){.website-redesign blockquote{font-size:1.5rem;line-height:1.333}.website-redesign blockquote:after,.website-redesign blockquote:before{font-size:1.5rem;line-height:1.333;visibility:visible}}.website-redesign .circle-img{height:64px;max-width:64px}.website-redesign .responsive-button-container{display:flex;gap:16px;margin-top:24px}.website-redesign .responsive-button-container.centered-buttons{justify-content:center}@media (max-width:991px){.website-redesign .responsive-button-container.align-left-button-sm{justify-content:start}}@media (max-width:767px){.website-redesign .responsive-button-container{flex-direction:column;width:100%}}.website-redesign .label-premium{height:20px}@media (max-width:1199px){.website-redesign .label-premium-block-md{display:block;margin:10px 0 0 0;width:-moz-fit-content;width:fit-content}}.website-redesign .header-description p{font-size:1.25rem;line-height:1.4;margin-bottom:0}@media (max-width:991px){.website-redesign .header-description p{font-size:1.125rem;line-height:1.33}}.website-redesign .editor-pdf-video{align-items:center;display:flex;height:585px;justify-content:center;padding:0 15px}@media (max-width:991px){.website-redesign .editor-pdf-video{height:auto}}.website-redesign .editor-pdf-video video{box-shadow:0 60px 25px -15px rgba(16,24,40,.2);max-height:100%;width:auto}@media (max-width:991px){.website-redesign .editor-pdf-video video{width:100%}}.website-redesign .overleaf-sticker{float:right}@media (max-width:991px){.website-redesign .overleaf-sticker{width:74px}}.add-secondary-email{display:flex;flex-direction:column;gap:12px}.add-secondary-email .add-secondary-email-error{display:flex;gap:6px;padding:4px}.add-secondary-email .add-secondary-email-learn-more{margin-bottom:0;margin-top:12px}.confirm-email form .text-danger{display:flex;gap:6px;padding:4px}.confirm-email form .text-danger .icon{padding-top:2px}.confirm-email form .form-actions{display:flex;flex-direction:column;gap:12px;padding-top:20px}.confirm-email .confirm-email-alert{margin-bottom:12px}.team{list-style:none;padding:0}.team .team-member{display:block;float:left;margin-bottom:30px;width:100%}.team .team-member h3{margin:0}.team .team-member .team-pic{float:left;margin-right:10px}.team .team-member .team-info{overflow:hidden}.team .team-member .team-connect{list-style:none;margin-top:10px;padding:0}.team .team-member .team-connect li{display:inline-block;margin:0 20px 0 0}.blog img{max-width:100%}.blog .blog-list{list-style:none;margin:0;padding:0}.blog .blog-list .blog-post{margin:0 0 30px 0}.blog .blog-list .card-header{margin-bottom:10px;padding:0}.blog .blog-list p{margin-top:12.5px}.blog .tags{margin-top:20px}.blog .tags .tags-list{list-style:none;padding:0}.blog .tags li{display:inline-block;margin:0;padding:0 10px 10px 0}.blog .tags a{font-size:small}.blog pre{border:1px solid #afb5c0;border-radius:3px;padding:10px}.blog .figure{background-color:#fff;border:1px solid #afb5c0;display:inline-block;margin:0 auto 10px 0;max-width:100%;padding:10px}.blog .figure .figure-caption{font-size:small;padding-top:10px}.cms-page{padding-bottom:0}.cms-page.website-redesign h1{font-size:2rem;line-height:1.333}.cms-page.website-redesign h2{font-size:1.5rem}.cms-page.website-redesign .sales-contact-form-left-column .sales-contact-form-heading-title{font-family:Noto Sans;font-size:2.25rem;font-style:normal;font-weight:600;line-height:1.333;padding-right:50px;padding-top:8px}@media (min-width:480px){.cms-page.website-redesign .sales-contact-form-left-column .names-container{display:flex;gap:21px}}.cms-page.website-redesign .sales-contact-form-left-column .checkbox-label{font-size:16px;font-weight:400}.cms-page.website-redesign .btn-danger{background-color:#b83a33;border-color:#b83a33;border-width:1px;color:#fff}.cms-page.website-redesign .btn-danger:hover{background-color:#942f2a;border-color:#942f2a}.cms-page.website-redesign .btn-danger:focus{color:#fff;outline:none}.cms-page.website-redesign .btn-danger:active,.cms-page.website-redesign .btn-danger:focus-visible{background-color:#b83a33;border-color:#b83a33;box-shadow:0 0 0 2px #97b6e5;outline:none}.cms-page.website-redesign .btn-danger:active,.cms-page.website-redesign .btn-danger:focus-visible,.cms-page.website-redesign .btn-danger:hover{color:#fff}.cms-page.website-redesign .btn-danger.disabled,.cms-page.website-redesign .btn-danger.disabled.active,.cms-page.website-redesign .btn-danger.disabled:active,.cms-page.website-redesign .btn-danger.disabled:focus-visible,.cms-page.website-redesign .btn-danger.disabled:hover,.cms-page.website-redesign .btn-danger[disabled],.cms-page.website-redesign .btn-danger[disabled].active,.cms-page.website-redesign .btn-danger[disabled]:active,.cms-page.website-redesign .btn-danger[disabled]:focus-visible,.cms-page.website-redesign .btn-danger[disabled]:hover,fieldset[disabled] .cms-page.website-redesign .btn-danger,fieldset[disabled] .cms-page.website-redesign .btn-danger.active,fieldset[disabled] .cms-page.website-redesign .btn-danger:active,fieldset[disabled] .cms-page.website-redesign .btn-danger:focus-visible,fieldset[disabled] .cms-page.website-redesign .btn-danger:hover{background-color:#e7e9ee;border-color:#e7e9ee;color:#afb5c0}.cms-page.website-redesign .btn-danger[data-ol-loading=true],.cms-page.website-redesign .btn-danger[data-ol-loading=true]:hover{background-color:#b83a33!important;border-color:#b83a33;color:#fff!important}.cms-page.website-redesign .btn-default{background-color:#495365;border-color:transparent;color:#fff}.alert .cms-page.website-redesign .btn-default{background-color:#272c36}.alert .cms-page.website-redesign .btn-default.active,.alert .cms-page.website-redesign .btn-default.checked,.alert .cms-page.website-redesign .btn-default:active,.alert .cms-page.website-redesign .btn-default:focus,.alert .cms-page.website-redesign .btn-default:hover,.open .dropdown-toggle.alert .cms-page.website-redesign .btn-default{background-color:#16191e}.cms-page.website-redesign .btn-default.active,.cms-page.website-redesign .btn-default.checked,.cms-page.website-redesign .btn-default:active,.cms-page.website-redesign .btn-default:focus,.cms-page.website-redesign .btn-default:hover,.open .dropdown-toggle.cms-page.website-redesign .btn-default{background-color:#38404d;border-color:transparent;color:#fff}.cms-page.website-redesign .btn-default.active,.cms-page.website-redesign .btn-default:active,.open .dropdown-toggle.cms-page.website-redesign .btn-default{background-image:none}.cms-page.website-redesign .btn-default.disabled,.cms-page.website-redesign .btn-default.disabled.active,.cms-page.website-redesign .btn-default.disabled:active,.cms-page.website-redesign .btn-default.disabled:focus,.cms-page.website-redesign .btn-default.disabled:hover,.cms-page.website-redesign .btn-default[disabled],.cms-page.website-redesign .btn-default[disabled].active,.cms-page.website-redesign .btn-default[disabled]:active,.cms-page.website-redesign .btn-default[disabled]:focus,.cms-page.website-redesign .btn-default[disabled]:hover,fieldset[disabled] .cms-page.website-redesign .btn-default,fieldset[disabled] .cms-page.website-redesign .btn-default.active,fieldset[disabled] .cms-page.website-redesign .btn-default:active,fieldset[disabled] .cms-page.website-redesign .btn-default:focus,fieldset[disabled] .cms-page.website-redesign .btn-default:hover{background-color:#495365;border-color:transparent}.cms-page.website-redesign .btn-default .badge{background-color:#fff;color:#495365}.cms-page.website-redesign .btn-default-outline{background-color:transparent;border-color:#495365;color:#495365}.alert .cms-page.website-redesign .btn-default-outline{background-color:transparent}.cms-page.website-redesign .btn-default-outline.active,.cms-page.website-redesign .btn-default-outline.checked,.cms-page.website-redesign .btn-default-outline:active,.cms-page.website-redesign .btn-default-outline:focus,.cms-page.website-redesign .btn-default-outline:hover,.open .dropdown-toggle.cms-page.website-redesign .btn-default-outline{background-color:transparent;border-color:#2f3641;color:#495365}.alert .cms-page.website-redesign .btn-default-outline.active,.alert .cms-page.website-redesign .btn-default-outline.checked,.alert .cms-page.website-redesign .btn-default-outline:active,.alert .cms-page.website-redesign .btn-default-outline:focus,.alert .cms-page.website-redesign .btn-default-outline:hover,.alert .open .dropdown-toggle.cms-page.website-redesign .btn-default-outline{background-color:transparent}.cms-page.website-redesign .btn-default-outline.active,.cms-page.website-redesign .btn-default-outline:active,.open .dropdown-toggle.cms-page.website-redesign .btn-default-outline{background-image:none}.cms-page.website-redesign .btn-default-outline.disabled,.cms-page.website-redesign .btn-default-outline.disabled.active,.cms-page.website-redesign .btn-default-outline.disabled:active,.cms-page.website-redesign .btn-default-outline.disabled:focus,.cms-page.website-redesign .btn-default-outline.disabled:hover,.cms-page.website-redesign .btn-default-outline[disabled],.cms-page.website-redesign .btn-default-outline[disabled].active,.cms-page.website-redesign .btn-default-outline[disabled]:active,.cms-page.website-redesign .btn-default-outline[disabled]:focus,.cms-page.website-redesign .btn-default-outline[disabled]:hover,fieldset[disabled] .cms-page.website-redesign .btn-default-outline,fieldset[disabled] .cms-page.website-redesign .btn-default-outline.active,fieldset[disabled] .cms-page.website-redesign .btn-default-outline:active,fieldset[disabled] .cms-page.website-redesign .btn-default-outline:focus,fieldset[disabled] .cms-page.website-redesign .btn-default-outline:hover{background-color:transparent;border-color:#495365}.cms-page.website-redesign .btn-default-outline .badge{background-color:#495365;color:transparent}.cms-page.website-redesign .btn-info{background-color:#3265b2;border-color:transparent;color:#fff}.alert .cms-page.website-redesign .btn-info{background-color:#204172}.alert .cms-page.website-redesign .btn-info.active,.alert .cms-page.website-redesign .btn-info.checked,.alert .cms-page.website-redesign .btn-info:active,.alert .cms-page.website-redesign .btn-info:focus,.alert .cms-page.website-redesign .btn-info:hover,.open .dropdown-toggle.alert .cms-page.website-redesign .btn-info{background-color:#172f52}.cms-page.website-redesign .btn-info.active,.cms-page.website-redesign .btn-info.checked,.cms-page.website-redesign .btn-info:active,.cms-page.website-redesign .btn-info:focus,.cms-page.website-redesign .btn-info:hover,.open .dropdown-toggle.cms-page.website-redesign .btn-info{background-color:#295392;border-color:transparent;color:#fff}.cms-page.website-redesign .btn-info.active,.cms-page.website-redesign .btn-info:active,.open .dropdown-toggle.cms-page.website-redesign .btn-info{background-image:none}.cms-page.website-redesign .btn-info.disabled,.cms-page.website-redesign .btn-info.disabled.active,.cms-page.website-redesign .btn-info.disabled:active,.cms-page.website-redesign .btn-info.disabled:focus,.cms-page.website-redesign .btn-info.disabled:hover,.cms-page.website-redesign .btn-info[disabled],.cms-page.website-redesign .btn-info[disabled].active,.cms-page.website-redesign .btn-info[disabled]:active,.cms-page.website-redesign .btn-info[disabled]:focus,.cms-page.website-redesign .btn-info[disabled]:hover,fieldset[disabled] .cms-page.website-redesign .btn-info,fieldset[disabled] .cms-page.website-redesign .btn-info.active,fieldset[disabled] .cms-page.website-redesign .btn-info:active,fieldset[disabled] .cms-page.website-redesign .btn-info:focus,fieldset[disabled] .cms-page.website-redesign .btn-info:hover{background-color:#3265b2;border-color:transparent}.cms-page.website-redesign .btn-info .badge{background-color:#fff;color:#3265b2}.cms-page.website-redesign .btn-primary{background-color:#098842;border-color:#098842;border-width:1px;color:#fff}.cms-page.website-redesign .btn-primary:hover{background-color:#1e6b41;border-color:#1e6b41}.cms-page.website-redesign .btn-primary:focus{color:#fff;outline:none}.cms-page.website-redesign .btn-primary:active,.cms-page.website-redesign .btn-primary:focus-visible{background-color:#098842;border-color:#098842;box-shadow:0 0 0 2px #97b6e5;outline:none}.cms-page.website-redesign .btn-primary:active,.cms-page.website-redesign .btn-primary:focus-visible,.cms-page.website-redesign .btn-primary:hover{color:#fff}.cms-page.website-redesign .btn-primary.disabled,.cms-page.website-redesign .btn-primary.disabled.active,.cms-page.website-redesign .btn-primary.disabled:active,.cms-page.website-redesign .btn-primary.disabled:focus-visible,.cms-page.website-redesign .btn-primary.disabled:hover,.cms-page.website-redesign .btn-primary[disabled],.cms-page.website-redesign .btn-primary[disabled].active,.cms-page.website-redesign .btn-primary[disabled]:active,.cms-page.website-redesign .btn-primary[disabled]:focus-visible,.cms-page.website-redesign .btn-primary[disabled]:hover,fieldset[disabled] .cms-page.website-redesign .btn-primary,fieldset[disabled] .cms-page.website-redesign .btn-primary.active,fieldset[disabled] .cms-page.website-redesign .btn-primary:active,fieldset[disabled] .cms-page.website-redesign .btn-primary:focus-visible,fieldset[disabled] .cms-page.website-redesign .btn-primary:hover{background-color:#e7e9ee;border-color:#e7e9ee;color:#afb5c0}.cms-page.website-redesign .btn-primary[data-ol-loading=true],.cms-page.website-redesign .btn-primary[data-ol-loading=true]:hover{background-color:#098842!important;border-color:#098842;color:#fff!important}.cms-page.website-redesign .btn-success{background-color:#098842;border-color:#098842;border-width:1px;color:#fff}.cms-page.website-redesign .btn-success:hover{background-color:#1e6b41;border-color:#1e6b41}.cms-page.website-redesign .btn-success:focus{color:#fff;outline:none}.cms-page.website-redesign .btn-success:active,.cms-page.website-redesign .btn-success:focus-visible{background-color:#098842;border-color:#098842;box-shadow:0 0 0 2px #97b6e5;outline:none}.cms-page.website-redesign .btn-success:active,.cms-page.website-redesign .btn-success:focus-visible,.cms-page.website-redesign .btn-success:hover{color:#fff}.cms-page.website-redesign .btn-success.disabled,.cms-page.website-redesign .btn-success.disabled.active,.cms-page.website-redesign .btn-success.disabled:active,.cms-page.website-redesign .btn-success.disabled:focus-visible,.cms-page.website-redesign .btn-success.disabled:hover,.cms-page.website-redesign .btn-success[disabled],.cms-page.website-redesign .btn-success[disabled].active,.cms-page.website-redesign .btn-success[disabled]:active,.cms-page.website-redesign .btn-success[disabled]:focus-visible,.cms-page.website-redesign .btn-success[disabled]:hover,fieldset[disabled] .cms-page.website-redesign .btn-success,fieldset[disabled] .cms-page.website-redesign .btn-success.active,fieldset[disabled] .cms-page.website-redesign .btn-success:active,fieldset[disabled] .cms-page.website-redesign .btn-success:focus-visible,fieldset[disabled] .cms-page.website-redesign .btn-success:hover{background-color:#e7e9ee;border-color:#e7e9ee;color:#afb5c0}.cms-page.website-redesign .btn-success[data-ol-loading=true],.cms-page.website-redesign .btn-success[data-ol-loading=true]:hover{background-color:#098842!important;border-color:#098842;color:#fff!important}.cms-page.website-redesign .btn-warning{background-color:#de8014;border-color:transparent;color:#fff}.alert .cms-page.website-redesign .btn-warning{background-color:#93550d}.alert .cms-page.website-redesign .btn-warning.active,.alert .cms-page.website-redesign .btn-warning.checked,.alert .cms-page.website-redesign .btn-warning:active,.alert .cms-page.website-redesign .btn-warning:focus,.alert .cms-page.website-redesign .btn-warning:hover,.open .dropdown-toggle.alert .cms-page.website-redesign .btn-warning{background-color:#6e3f0a}.cms-page.website-redesign .btn-warning.active,.cms-page.website-redesign .btn-warning.checked,.cms-page.website-redesign .btn-warning:active,.cms-page.website-redesign .btn-warning:focus,.cms-page.website-redesign .btn-warning:hover,.open .dropdown-toggle.cms-page.website-redesign .btn-warning{background-color:#b96a11;border-color:transparent;color:#fff}.cms-page.website-redesign .btn-warning.active,.cms-page.website-redesign .btn-warning:active,.open .dropdown-toggle.cms-page.website-redesign .btn-warning{background-image:none}.cms-page.website-redesign .btn-warning.disabled,.cms-page.website-redesign .btn-warning.disabled.active,.cms-page.website-redesign .btn-warning.disabled:active,.cms-page.website-redesign .btn-warning.disabled:focus,.cms-page.website-redesign .btn-warning.disabled:hover,.cms-page.website-redesign .btn-warning[disabled],.cms-page.website-redesign .btn-warning[disabled].active,.cms-page.website-redesign .btn-warning[disabled]:active,.cms-page.website-redesign .btn-warning[disabled]:focus,.cms-page.website-redesign .btn-warning[disabled]:hover,fieldset[disabled] .cms-page.website-redesign .btn-warning,fieldset[disabled] .cms-page.website-redesign .btn-warning.active,fieldset[disabled] .cms-page.website-redesign .btn-warning:active,fieldset[disabled] .cms-page.website-redesign .btn-warning:focus,fieldset[disabled] .cms-page.website-redesign .btn-warning:hover{background-color:#de8014;border-color:transparent}.cms-page.website-redesign .btn-warning .badge{background-color:#fff;color:#de8014}.cms-page.website-redesign .btn-secondary{background-color:#fff;border-color:#677283;border-width:1px;color:#1b222c}.cms-page.website-redesign .btn-secondary:hover{background-color:#e7e9ee}.cms-page.website-redesign .btn-secondary:focus{color:#1b222c;outline:none}.cms-page.website-redesign .btn-secondary:active,.cms-page.website-redesign .btn-secondary:focus-visible{box-shadow:0 0 0 2px #97b6e5;outline:none}.cms-page.website-redesign .btn-secondary:active,.cms-page.website-redesign .btn-secondary:focus-visible,.cms-page.website-redesign .btn-secondary:hover{color:#1b222c}.cms-page.website-redesign .btn-secondary.disabled,.cms-page.website-redesign .btn-secondary.disabled.active,.cms-page.website-redesign .btn-secondary.disabled:active,.cms-page.website-redesign .btn-secondary.disabled:focus-visible,.cms-page.website-redesign .btn-secondary.disabled:hover,.cms-page.website-redesign .btn-secondary[disabled],.cms-page.website-redesign .btn-secondary[disabled].active,.cms-page.website-redesign .btn-secondary[disabled]:active,.cms-page.website-redesign .btn-secondary[disabled]:focus-visible,.cms-page.website-redesign .btn-secondary[disabled]:hover,fieldset[disabled] .cms-page.website-redesign .btn-secondary,fieldset[disabled] .cms-page.website-redesign .btn-secondary.active,fieldset[disabled] .cms-page.website-redesign .btn-secondary:active,fieldset[disabled] .cms-page.website-redesign .btn-secondary:focus-visible,fieldset[disabled] .cms-page.website-redesign .btn-secondary:hover{background-color:#e7e9ee;border-color:#e7e9ee;color:#afb5c0}.cms-page.website-redesign .btn-secondary[data-ol-loading=true],.cms-page.website-redesign .btn-secondary[data-ol-loading=true]:hover{background-color:#fff!important;border-color:#677283!important;color:#1b222c!important}.cms-page.website-redesign .btn-premium{background-image:linear-gradient(246deg,#214475,#254c84 29%,#6597e0 97%);color:#fff}.cms-page.website-redesign .btn-premium:hover{background:#214475}.cms-page.website-redesign .alert{border-left:3px solid transparent;border-radius:3px;margin-bottom:25px;padding:15px}.cms-page.website-redesign .alert h4{color:inherit;margin-top:0}.cms-page.website-redesign .alert .alert-link{font-weight:700}.cms-page.website-redesign .alert>p,.cms-page.website-redesign .alert>ul{margin-bottom:0}.cms-page.website-redesign .alert>p+p{margin-top:5px}.cms-page.website-redesign .alert p:last-child{margin-bottom:0}.cms-page.website-redesign .alert .btn-inline-link,.cms-page.website-redesign .alert a{background:none;color:#fff;text-decoration:underline}.cms-page.website-redesign .alert .btn-inline-link:active,.cms-page.website-redesign .alert .btn-inline-link:focus,.cms-page.website-redesign .alert .btn-inline-link:hover,.cms-page.website-redesign .alert a:active,.cms-page.website-redesign .alert a:focus,.cms-page.website-redesign .alert a:hover{background:none}.cms-page.website-redesign .alert .btn:not(.btn-inline-link){text-decoration:none}.cms-page.website-redesign .alert-info .btn-info{background-color:#3265b2;background-color:#204172;border-color:transparent;color:#fff}.alert .cms-page.website-redesign .alert-info .btn-info{background-color:#204172}.alert .cms-page.website-redesign .alert-info .btn-info.active,.alert .cms-page.website-redesign .alert-info .btn-info.checked,.alert .cms-page.website-redesign .alert-info .btn-info:active,.alert .cms-page.website-redesign .alert-info .btn-info:focus,.alert .cms-page.website-redesign .alert-info .btn-info:hover,.open .dropdown-toggle.alert .cms-page.website-redesign .alert-info .btn-info{background-color:#172f52}.cms-page.website-redesign .alert-info .btn-info.active,.cms-page.website-redesign .alert-info .btn-info.checked,.cms-page.website-redesign .alert-info .btn-info:active,.cms-page.website-redesign .alert-info .btn-info:focus,.cms-page.website-redesign .alert-info .btn-info:hover,.open .dropdown-toggle.cms-page.website-redesign .alert-info .btn-info{background-color:#295392;border-color:transparent;color:#fff}.cms-page.website-redesign .alert-info .btn-info.active,.cms-page.website-redesign .alert-info .btn-info:active,.open .dropdown-toggle.cms-page.website-redesign .alert-info .btn-info{background-image:none}.cms-page.website-redesign .alert-info .btn-info.disabled,.cms-page.website-redesign .alert-info .btn-info.disabled.active,.cms-page.website-redesign .alert-info .btn-info.disabled:active,.cms-page.website-redesign .alert-info .btn-info.disabled:focus,.cms-page.website-redesign .alert-info .btn-info.disabled:hover,.cms-page.website-redesign .alert-info .btn-info[disabled],.cms-page.website-redesign .alert-info .btn-info[disabled].active,.cms-page.website-redesign .alert-info .btn-info[disabled]:active,.cms-page.website-redesign .alert-info .btn-info[disabled]:focus,.cms-page.website-redesign .alert-info .btn-info[disabled]:hover,fieldset[disabled] .cms-page.website-redesign .alert-info .btn-info,fieldset[disabled] .cms-page.website-redesign .alert-info .btn-info.active,fieldset[disabled] .cms-page.website-redesign .alert-info .btn-info:active,fieldset[disabled] .cms-page.website-redesign .alert-info .btn-info:focus,fieldset[disabled] .cms-page.website-redesign .alert-info .btn-info:hover{background-color:#3265b2;border-color:transparent}.cms-page.website-redesign .alert-info .btn-info .badge{background-color:#fff;color:#3265b2}.cms-page.website-redesign .alert-info .btn-info.active,.cms-page.website-redesign .alert-info .btn-info.checked,.cms-page.website-redesign .alert-info .btn-info:active,.cms-page.website-redesign .alert-info .btn-info:focus,.cms-page.website-redesign .alert-info .btn-info:hover,.open .dropdown-toggle.cms-page.website-redesign .alert-info .btn-info{background-color:#172f52}.cms-page.website-redesign .p-no-text-nodes:has(.btn){margin-top:var(--spacing-09)}@media (max-width:767px){.cms-page.website-redesign .p-no-text-nodes:has(.btn) .btn{margin-left:0;margin-top:var(--spacing-05);width:100%}.cms-page.website-redesign .p-no-text-nodes:has(.btn) .btn:first-child{margin-top:0}}.cms-page.website-redesign .btn+.btn{margin-left:var(--spacing-06)}.cms-page.website-redesign blockquote.quote-picture-bottom{padding:12.5px 25px}.cms-page.website-redesign blockquote.quote-picture-bottom .quote-picture-and-person{font-size:18px}.cms-page.website-redesign blockquote.quote-picture-bottom .quote-by-position{font-weight:400}.cms-page.website-redesign .optional-text{font-size:14px}.cms-page .section-row{margin:0 auto;max-width:738px!important}@media (min-width:992px){.cms-page .section-row{max-width:962px!important}}@media (min-width:1200px){.cms-page .section-row{max-width:1170px!important}}.cms-page img{height:auto;max-width:100%}.cms-page .btn-description{margin-right:10px}.cms-page .tab-content{padding-left:0;padding-right:0;width:100%}.cms-page .cms-preview{background-color:#3265b2;color:#fff;font-weight:700;height:17.5px;left:0;line-height:17.5px;opacity:.8;position:fixed;text-align:center;top:0;width:100%;z-index:1}.cms-page .cms-preview:after{content:"Preview";left:0;top:0;width:100%}.cms-page .tab-pane .row:first-child{margin-top:0}.cms-page blockquote:not(.quote-large-text-centered):not(.quote-left-green-border){margin:0;position:relative}.cms-page blockquote:not(.quote-large-text-centered):not(.quote-left-green-border):before{display:none}.cms-page blockquote:not(.quote-large-text-centered):not(.quote-left-green-border) p{display:block}.cms-page blockquote:not(.quote-large-text-centered):not(.quote-left-green-border) p:first-child:before{color:#d0d5dd;content:open-quote;font-size:54px;line-height:.1em;margin-right:.25em;vertical-align:-.4em}.cms-page .quote-full-width img{margin-bottom:10px;margin-right:10px}.cms-page .quote-picture-bottom{border:none;color:#1b222c}.cms-page .quote-picture-bottom .h1{margin:0 0 48px 0}.cms-page .quote-picture-bottom p:first-child:before{color:inherit;font-size:inherit;left:3px;line-height:inherit;margin-right:0;position:absolute;top:12.5px;vertical-align:0}.cms-page .quote-picture-bottom p:first-child:after{content:close-quote}.cms-page .quote-picture-bottom img{height:64px;margin-right:16px;width:64px}.cms-page .quote-picture-bottom .quote-by-position{color:#495365}.cms-page .quote-picture-bottom .quote-picture-and-person{display:flex}.cms-page .table-styled{overflow:hidden;overflow-x:auto}.cms-page .table-styled table{background:#fff;max-width:none}.cms-page .table-styled table td,.cms-page .table-styled table th{border:1px solid #d0d5dd;padding:10px;text-align:center;word-break:normal}.cms-page .features-table .fa-check,.cms-page .features-table .fa-check-square,.cms-page .table-styled .fa-check,.cms-page .table-styled .fa-check-square{color:#098842}.cms-page .features-table{max-width:none}.cms-page .features-table td,.cms-page .features-table th{border:1px solid #d0d5dd;-webkit-hyphens:auto;hyphens:auto;padding:10px;text-align:center;width:20%}.cms-page .features-table .btn{word-wrap:break-word;max-width:100%;white-space:pre-wrap}.cms-page .features-table.left-align-first-col td,.cms-page .features-table.left-align-first-col th{text-align:left}.cms-page .features-table.left-align-first-col td+td,.cms-page .features-table.left-align-first-col th+th{text-align:center}.cms-page .features-table .hidden-row-above-xs{display:none}@media screen and (max-width:767px){.cms-page .features-table tbody,.cms-page .features-table thead{display:block}.cms-page .features-table tr{display:flex;flex-flow:row wrap;justify-content:space-around}.cms-page .features-table td,.cms-page .features-table th{display:block;width:25%}.cms-page .features-table tr:first-child th{width:50%}.cms-page .features-table tr:first-child th:first-child{width:100%}.cms-page .features-table td:first-child{text-align:center;width:100%}.cms-page .features-table .hidden-row-xs{display:none}.cms-page .features-table .hidden-row-above-xs{display:flex}.cms-page .features-table .table-header{text-align:center}}.cms-page #universities-container{padding:20px;width:100%}.cms-page #universities-container .row{border-bottom:1px solid #f4f5f6}.cms-page #universities-container .row div{padding:20px;vertical-align:middle}.cms-page #universities-container .row:first-child div{padding-top:0}.cms-page #universities-container .row:last-child{border:0}.cms-page #universities-container .row:last-child div{border:0;padding-bottom:0}.cms-page #universities-container p{margin:0 auto;width:100%}.cms-page #universities-container .uni-logo{margin:0 auto;max-height:55px;min-width:55px}.cms-page #universities-container .university-claim-btn{text-align:center}@media only screen and (min-width:480px){.cms-page #universities-container{display:table;table-layout:fixed}.cms-page #universities-container .row{display:table-row}.cms-page #universities-container .row div{border-bottom:1px solid #f4f5f6;display:table-cell;float:none}}.cms-page video{height:auto;max-width:100%}.icon-with-content{display:flex}.icon-with-content h2,.icon-with-content h3,.icon-with-content h4{margin-top:15px}.icon-with-content .icon-container{background-color:#eaf6ef;border-radius:50%;height:56px;margin-right:24px;padding:7.5px;width:56px}.icon-with-content .icon-container .icon-inner-container{align-items:center;border:3.5px solid #86caa5;border-radius:50%;display:flex;height:42px;justify-content:center;width:42px}.icon-with-content .icon-container i{color:#098842;font-size:21px}.svg-arrow-icon{bottom:1px;left:4px;position:relative}@media (min-width:768px){.row-equal-column-heights{display:flex;flex-flow:row wrap}.row-equal-column-heights div[class*=col-]{display:flex;flex-direction:column}.row-equal-column-heights div[class*=col-] .card,.row-equal-column-heights div[class*=col-] .no-card{height:100%}}.vertically-center-col .card:first-child .cms-element-container>:first-child,.vertically-center-col .card:first-child>:first-child:not(.cms-element-container),.vertically-center-col .no-card:first-child .cms-element-container>:first-child,.vertically-center-col .no-card:first-child>:first-child:not(.cms-element-container){margin-top:0}.vertically-center-col .card:last-child .cms-element-container>:last-child,.vertically-center-col .card:last-child>:last-child:not(.cms-element-container),.vertically-center-col .no-card:last-child .cms-element-container>:last-child,.vertically-center-col .no-card:last-child>:last-child:not(.cms-element-container){margin-bottom:0}@media (min-width:768px){.vertically-center-col{display:flex}.vertically-center-col div[class*=col-]{align-self:center}}@media (max-width:768px){.reverse-col-order-mobile{display:flex;flex-flow:column;flex-direction:column-reverse}}.row-within-card .no-card>:first-child{margin-top:0}.row-within-card .no-card>:last-child{margin-bottom:0}.contact-form-error-container{padding-bottom:12.5px}.row-top-padding-sm{padding-top:10px}.row-top-padding-md{padding-top:20px}.row-top-padding-lg{padding-top:30px}.row-top-padding-xl{padding-top:40px}.row-top-padding-xxl{padding-top:50px}.row-bottom-padding-sm{padding-bottom:10px}.row-bottom-padding-md{padding-bottom:20px}.row-bottom-padding-lg{padding-bottom:30px}.row-bottom-padding-xl{padding-bottom:40px}.row-bottom-padding-xxl{padding-bottom:50px}@media (min-width:768px){.desktop-left-margin-sm{margin-left:10px}.desktop-left-margin-md{margin-left:20px}.desktop-left-margin-lg{margin-left:30px}.desktop-left-margin-xl{margin-left:40px}.desktop-left-margin-xxl{margin-left:50px}.desktop-right-margin-sm{margin-right:10px}.desktop-right-margin-md{margin-right:20px}.desktop-right-margin-lg{margin-right:30px}.desktop-right-margin-xl{margin-right:40px}.desktop-right-margin-xxl{margin-right:50px}}.top-margin-sm{margin-top:10px}.top-margin-md{margin-top:20px}.top-margin-lg{margin-top:30px}.top-margin-xl{margin-top:40px}.top-margin-xxl{margin-top:50px}@media (max-width:767px){.mobile-bottom-margin-sm{margin-bottom:10px}.mobile-bottom-margin-md{margin-bottom:20px}.mobile-bottom-margin-lg{margin-bottom:30px}.mobile-bottom-margin-xl{margin-bottom:40px}.mobile-bottom-margin-xxl{margin-bottom:50px}}@media (max-width:768px){.col-xs-padding-sm .col-xs-12:not(:first-child){padding-top:10px}.col-xs-padding-md .col-xs-12:not(:first-child){padding-top:20px}.col-xs-padding-lg .col-xs-12:not(:first-child){padding-top:30px}.col-xs-padding-xl .col-xs-12:not(:first-child){padding-top:40px}.col-xs-padding-xxl .col-xs-12:not(:first-child){padding-top:50px}}@media (max-width:991px){.website-redesign .col-xs-padding-sm .col-xs-12:not(:first-child){padding-top:10px}.website-redesign .col-xs-padding-md .col-xs-12:not(:first-child){padding-top:20px}.website-redesign .col-xs-padding-lg .col-xs-12:not(:first-child){padding-top:30px}.website-redesign .col-xs-padding-xl .col-xs-12:not(:first-child){padding-top:40px}.website-redesign .col-xs-padding-xxl .col-xs-12:not(:first-child){padding-top:50px}}.bottom-align-last-entry{display:flex;flex-direction:column}.bottom-align-last-entry :last-child{align-content:end;flex:1}.content-page{word-break:break-word}.content-page a{color:#1e6b41}.content-page a:hover{color:#195936}.content-page .btn-danger{background-color:#b83a33;border-color:#b83a33;border-width:1px;color:#fff}.content-page .btn-danger:hover{background-color:#942f2a;border-color:#942f2a}.content-page .btn-danger:focus{color:#fff;outline:none}.content-page .btn-danger:active,.content-page .btn-danger:focus-visible{background-color:#b83a33;border-color:#b83a33;box-shadow:0 0 0 2px #97b6e5;outline:none}.content-page .btn-danger:active,.content-page .btn-danger:focus-visible,.content-page .btn-danger:hover{color:#fff}.content-page .btn-danger.disabled,.content-page .btn-danger.disabled.active,.content-page .btn-danger.disabled:active,.content-page .btn-danger.disabled:focus-visible,.content-page .btn-danger.disabled:hover,.content-page .btn-danger[disabled],.content-page .btn-danger[disabled].active,.content-page .btn-danger[disabled]:active,.content-page .btn-danger[disabled]:focus-visible,.content-page .btn-danger[disabled]:hover,fieldset[disabled] .content-page .btn-danger,fieldset[disabled] .content-page .btn-danger.active,fieldset[disabled] .content-page .btn-danger:active,fieldset[disabled] .content-page .btn-danger:focus-visible,fieldset[disabled] .content-page .btn-danger:hover{background-color:#e7e9ee;border-color:#e7e9ee;color:#afb5c0}.content-page .btn-danger[data-ol-loading=true],.content-page .btn-danger[data-ol-loading=true]:hover{background-color:#b83a33!important;border-color:#b83a33;color:#fff!important}.content-page .btn-default{background-color:#495365;border-color:transparent;color:#fff}.alert .content-page .btn-default{background-color:#272c36}.alert .content-page .btn-default.active,.alert .content-page .btn-default.checked,.alert .content-page .btn-default:active,.alert .content-page .btn-default:focus,.alert .content-page .btn-default:hover,.open .dropdown-toggle.alert .content-page .btn-default{background-color:#16191e}.content-page .btn-default.active,.content-page .btn-default.checked,.content-page .btn-default:active,.content-page .btn-default:focus,.content-page .btn-default:hover,.open .dropdown-toggle.content-page .btn-default{background-color:#38404d;border-color:transparent;color:#fff}.content-page .btn-default.active,.content-page .btn-default:active,.open .dropdown-toggle.content-page .btn-default{background-image:none}.content-page .btn-default.disabled,.content-page .btn-default.disabled.active,.content-page .btn-default.disabled:active,.content-page .btn-default.disabled:focus,.content-page .btn-default.disabled:hover,.content-page .btn-default[disabled],.content-page .btn-default[disabled].active,.content-page .btn-default[disabled]:active,.content-page .btn-default[disabled]:focus,.content-page .btn-default[disabled]:hover,fieldset[disabled] .content-page .btn-default,fieldset[disabled] .content-page .btn-default.active,fieldset[disabled] .content-page .btn-default:active,fieldset[disabled] .content-page .btn-default:focus,fieldset[disabled] .content-page .btn-default:hover{background-color:#495365;border-color:transparent}.content-page .btn-default .badge{background-color:#fff;color:#495365}.content-page .btn-default-outline{background-color:transparent;border-color:#495365;color:#495365}.alert .content-page .btn-default-outline{background-color:transparent}.content-page .btn-default-outline.active,.content-page .btn-default-outline.checked,.content-page .btn-default-outline:active,.content-page .btn-default-outline:focus,.content-page .btn-default-outline:hover,.open .dropdown-toggle.content-page .btn-default-outline{background-color:transparent;border-color:#2f3641;color:#495365}.alert .content-page .btn-default-outline.active,.alert .content-page .btn-default-outline.checked,.alert .content-page .btn-default-outline:active,.alert .content-page .btn-default-outline:focus,.alert .content-page .btn-default-outline:hover,.alert .open .dropdown-toggle.content-page .btn-default-outline{background-color:transparent}.content-page .btn-default-outline.active,.content-page .btn-default-outline:active,.open .dropdown-toggle.content-page .btn-default-outline{background-image:none}.content-page .btn-default-outline.disabled,.content-page .btn-default-outline.disabled.active,.content-page .btn-default-outline.disabled:active,.content-page .btn-default-outline.disabled:focus,.content-page .btn-default-outline.disabled:hover,.content-page .btn-default-outline[disabled],.content-page .btn-default-outline[disabled].active,.content-page .btn-default-outline[disabled]:active,.content-page .btn-default-outline[disabled]:focus,.content-page .btn-default-outline[disabled]:hover,fieldset[disabled] .content-page .btn-default-outline,fieldset[disabled] .content-page .btn-default-outline.active,fieldset[disabled] .content-page .btn-default-outline:active,fieldset[disabled] .content-page .btn-default-outline:focus,fieldset[disabled] .content-page .btn-default-outline:hover{background-color:transparent;border-color:#495365}.content-page .btn-default-outline .badge{background-color:#495365;color:transparent}.content-page .btn-info{background-color:#3265b2;border-color:transparent;color:#fff}.alert .content-page .btn-info{background-color:#204172}.alert .content-page .btn-info.active,.alert .content-page .btn-info.checked,.alert .content-page .btn-info:active,.alert .content-page .btn-info:focus,.alert .content-page .btn-info:hover,.open .dropdown-toggle.alert .content-page .btn-info{background-color:#172f52}.content-page .btn-info.active,.content-page .btn-info.checked,.content-page .btn-info:active,.content-page .btn-info:focus,.content-page .btn-info:hover,.open .dropdown-toggle.content-page .btn-info{background-color:#295392;border-color:transparent;color:#fff}.content-page .btn-info.active,.content-page .btn-info:active,.open .dropdown-toggle.content-page .btn-info{background-image:none}.content-page .btn-info.disabled,.content-page .btn-info.disabled.active,.content-page .btn-info.disabled:active,.content-page .btn-info.disabled:focus,.content-page .btn-info.disabled:hover,.content-page .btn-info[disabled],.content-page .btn-info[disabled].active,.content-page .btn-info[disabled]:active,.content-page .btn-info[disabled]:focus,.content-page .btn-info[disabled]:hover,fieldset[disabled] .content-page .btn-info,fieldset[disabled] .content-page .btn-info.active,fieldset[disabled] .content-page .btn-info:active,fieldset[disabled] .content-page .btn-info:focus,fieldset[disabled] .content-page .btn-info:hover{background-color:#3265b2;border-color:transparent}.content-page .btn-info .badge{background-color:#fff;color:#3265b2}.content-page .btn-primary{background-color:#098842;border-color:#098842;border-width:1px;color:#fff}.content-page .btn-primary:hover{background-color:#1e6b41;border-color:#1e6b41}.content-page .btn-primary:focus{color:#fff;outline:none}.content-page .btn-primary:active,.content-page .btn-primary:focus-visible{background-color:#098842;border-color:#098842;box-shadow:0 0 0 2px #97b6e5;outline:none}.content-page .btn-primary:active,.content-page .btn-primary:focus-visible,.content-page .btn-primary:hover{color:#fff}.content-page .btn-primary.disabled,.content-page .btn-primary.disabled.active,.content-page .btn-primary.disabled:active,.content-page .btn-primary.disabled:focus-visible,.content-page .btn-primary.disabled:hover,.content-page .btn-primary[disabled],.content-page .btn-primary[disabled].active,.content-page .btn-primary[disabled]:active,.content-page .btn-primary[disabled]:focus-visible,.content-page .btn-primary[disabled]:hover,fieldset[disabled] .content-page .btn-primary,fieldset[disabled] .content-page .btn-primary.active,fieldset[disabled] .content-page .btn-primary:active,fieldset[disabled] .content-page .btn-primary:focus-visible,fieldset[disabled] .content-page .btn-primary:hover{background-color:#e7e9ee;border-color:#e7e9ee;color:#afb5c0}.content-page .btn-primary[data-ol-loading=true],.content-page .btn-primary[data-ol-loading=true]:hover{background-color:#098842!important;border-color:#098842;color:#fff!important}.content-page .btn-success{background-color:#098842;border-color:#098842;border-width:1px;color:#fff}.content-page .btn-success:hover{background-color:#1e6b41;border-color:#1e6b41}.content-page .btn-success:focus{color:#fff;outline:none}.content-page .btn-success:active,.content-page .btn-success:focus-visible{background-color:#098842;border-color:#098842;box-shadow:0 0 0 2px #97b6e5;outline:none}.content-page .btn-success:active,.content-page .btn-success:focus-visible,.content-page .btn-success:hover{color:#fff}.content-page .btn-success.disabled,.content-page .btn-success.disabled.active,.content-page .btn-success.disabled:active,.content-page .btn-success.disabled:focus-visible,.content-page .btn-success.disabled:hover,.content-page .btn-success[disabled],.content-page .btn-success[disabled].active,.content-page .btn-success[disabled]:active,.content-page .btn-success[disabled]:focus-visible,.content-page .btn-success[disabled]:hover,fieldset[disabled] .content-page .btn-success,fieldset[disabled] .content-page .btn-success.active,fieldset[disabled] .content-page .btn-success:active,fieldset[disabled] .content-page .btn-success:focus-visible,fieldset[disabled] .content-page .btn-success:hover{background-color:#e7e9ee;border-color:#e7e9ee;color:#afb5c0}.content-page .btn-success[data-ol-loading=true],.content-page .btn-success[data-ol-loading=true]:hover{background-color:#098842!important;border-color:#098842;color:#fff!important}.content-page .btn-warning{background-color:#de8014;border-color:transparent;color:#fff}.alert .content-page .btn-warning{background-color:#93550d}.alert .content-page .btn-warning.active,.alert .content-page .btn-warning.checked,.alert .content-page .btn-warning:active,.alert .content-page .btn-warning:focus,.alert .content-page .btn-warning:hover,.open .dropdown-toggle.alert .content-page .btn-warning{background-color:#6e3f0a}.content-page .btn-warning.active,.content-page .btn-warning.checked,.content-page .btn-warning:active,.content-page .btn-warning:focus,.content-page .btn-warning:hover,.open .dropdown-toggle.content-page .btn-warning{background-color:#b96a11;border-color:transparent;color:#fff}.content-page .btn-warning.active,.content-page .btn-warning:active,.open .dropdown-toggle.content-page .btn-warning{background-image:none}.content-page .btn-warning.disabled,.content-page .btn-warning.disabled.active,.content-page .btn-warning.disabled:active,.content-page .btn-warning.disabled:focus,.content-page .btn-warning.disabled:hover,.content-page .btn-warning[disabled],.content-page .btn-warning[disabled].active,.content-page .btn-warning[disabled]:active,.content-page .btn-warning[disabled]:focus,.content-page .btn-warning[disabled]:hover,fieldset[disabled] .content-page .btn-warning,fieldset[disabled] .content-page .btn-warning.active,fieldset[disabled] .content-page .btn-warning:active,fieldset[disabled] .content-page .btn-warning:focus,fieldset[disabled] .content-page .btn-warning:hover{background-color:#de8014;border-color:transparent}.content-page .btn-warning .badge{background-color:#fff;color:#de8014}.content-page .btn-secondary{background-color:#fff;border-color:#677283;border-width:1px;color:#1b222c}.content-page .btn-secondary:hover{background-color:#e7e9ee}.content-page .btn-secondary:focus{color:#1b222c;outline:none}.content-page .btn-secondary:active,.content-page .btn-secondary:focus-visible{box-shadow:0 0 0 2px #97b6e5;outline:none}.content-page .btn-secondary:active,.content-page .btn-secondary:focus-visible,.content-page .btn-secondary:hover{color:#1b222c}.content-page .btn-secondary.disabled,.content-page .btn-secondary.disabled.active,.content-page .btn-secondary.disabled:active,.content-page .btn-secondary.disabled:focus-visible,.content-page .btn-secondary.disabled:hover,.content-page .btn-secondary[disabled],.content-page .btn-secondary[disabled].active,.content-page .btn-secondary[disabled]:active,.content-page .btn-secondary[disabled]:focus-visible,.content-page .btn-secondary[disabled]:hover,fieldset[disabled] .content-page .btn-secondary,fieldset[disabled] .content-page .btn-secondary.active,fieldset[disabled] .content-page .btn-secondary:active,fieldset[disabled] .content-page .btn-secondary:focus-visible,fieldset[disabled] .content-page .btn-secondary:hover{background-color:#e7e9ee;border-color:#e7e9ee;color:#afb5c0}.content-page .btn-secondary[data-ol-loading=true],.content-page .btn-secondary[data-ol-loading=true]:hover{background-color:#fff!important;border-color:#677283!important;color:#1b222c!important}.content-page .btn-premium{background-image:linear-gradient(246deg,#214475,#254c84 29%,#6597e0 97%);color:#fff}.content-page .btn-premium:hover{background:#214475}.content-page .alert{border-left:3px solid transparent;border-radius:3px;margin-bottom:25px;padding:15px}.content-page .alert h4{color:inherit;margin-top:0}.content-page .alert .alert-link{font-weight:700}.content-page .alert>p,.content-page .alert>ul{margin-bottom:0}.content-page .alert>p+p{margin-top:5px}.content-page .alert p:last-child{margin-bottom:0}.content-page .alert .btn-inline-link,.content-page .alert a{background:none;color:#fff;text-decoration:underline}.content-page .alert .btn-inline-link:active,.content-page .alert .btn-inline-link:focus,.content-page .alert .btn-inline-link:hover,.content-page .alert a:active,.content-page .alert a:focus,.content-page .alert a:hover{background:none}.content-page .alert .btn:not(.btn-inline-link){text-decoration:none}.content-page .alert-info .btn-info{background-color:#3265b2;background-color:#204172;border-color:transparent;color:#fff}.alert .content-page .alert-info .btn-info{background-color:#204172}.alert .content-page .alert-info .btn-info.active,.alert .content-page .alert-info .btn-info.checked,.alert .content-page .alert-info .btn-info:active,.alert .content-page .alert-info .btn-info:focus,.alert .content-page .alert-info .btn-info:hover,.open .dropdown-toggle.alert .content-page .alert-info .btn-info{background-color:#172f52}.content-page .alert-info .btn-info.active,.content-page .alert-info .btn-info.checked,.content-page .alert-info .btn-info:active,.content-page .alert-info .btn-info:focus,.content-page .alert-info .btn-info:hover,.open .dropdown-toggle.content-page .alert-info .btn-info{background-color:#295392;border-color:transparent;color:#fff}.content-page .alert-info .btn-info.active,.content-page .alert-info .btn-info:active,.open .dropdown-toggle.content-page .alert-info .btn-info{background-image:none}.content-page .alert-info .btn-info.disabled,.content-page .alert-info .btn-info.disabled.active,.content-page .alert-info .btn-info.disabled:active,.content-page .alert-info .btn-info.disabled:focus,.content-page .alert-info .btn-info.disabled:hover,.content-page .alert-info .btn-info[disabled],.content-page .alert-info .btn-info[disabled].active,.content-page .alert-info .btn-info[disabled]:active,.content-page .alert-info .btn-info[disabled]:focus,.content-page .alert-info .btn-info[disabled]:hover,fieldset[disabled] .content-page .alert-info .btn-info,fieldset[disabled] .content-page .alert-info .btn-info.active,fieldset[disabled] .content-page .alert-info .btn-info:active,fieldset[disabled] .content-page .alert-info .btn-info:focus,fieldset[disabled] .content-page .alert-info .btn-info:hover{background-color:#3265b2;border-color:transparent}.content-page .alert-info .btn-info .badge{background-color:#fff;color:#3265b2}.content-page .alert-info .btn-info.active,.content-page .alert-info .btn-info.checked,.content-page .alert-info .btn-info:active,.content-page .alert-info .btn-info:focus,.content-page .alert-info .btn-info:hover,.open .dropdown-toggle.content-page .alert-info .btn-info{background-color:#172f52}.content-page hr{border-color:#d0d5dd}.content-page .quote-by{min-width:80px;overflow:hidden}.content-page .page-header{margin-top:0}.content-page section{padding:25px 15px}.content-page section.color-block.green-dark{background-color:#195936}.content-page section.color-block.green{background-color:#098842}.content-page section.color-block.green .no-card * .btn-primary,.content-page section.color-block.green .no-card * .btn-success{background-color:#195936;border-color:#195936;color:#fff}.alert .content-page section.color-block.green .no-card * .btn-primary,.alert .content-page section.color-block.green .no-card * .btn-success{background-color:#07190f}.alert .content-page section.color-block.green .no-card * .btn-primary.active,.alert .content-page section.color-block.green .no-card * .btn-primary.checked,.alert .content-page section.color-block.green .no-card * .btn-primary:active,.alert .content-page section.color-block.green .no-card * .btn-primary:focus,.alert .content-page section.color-block.green .no-card * .btn-primary:hover,.alert .content-page section.color-block.green .no-card * .btn-success.active,.alert .content-page section.color-block.green .no-card * .btn-success.checked,.alert .content-page section.color-block.green .no-card * .btn-success:active,.alert .content-page section.color-block.green .no-card * .btn-success:focus,.alert .content-page section.color-block.green .no-card * .btn-success:hover,.open .dropdown-toggle.alert .content-page section.color-block.green .no-card * .btn-primary,.open .dropdown-toggle.alert .content-page section.color-block.green .no-card * .btn-success{background-color:#000}.content-page section.color-block.green .no-card * .btn-primary.active,.content-page section.color-block.green .no-card * .btn-primary.checked,.content-page section.color-block.green .no-card * .btn-primary:active,.content-page section.color-block.green .no-card * .btn-primary:focus,.content-page section.color-block.green .no-card * .btn-primary:hover,.content-page section.color-block.green .no-card * .btn-success.active,.content-page section.color-block.green .no-card * .btn-success.checked,.content-page section.color-block.green .no-card * .btn-success:active,.content-page section.color-block.green .no-card * .btn-success:focus,.content-page section.color-block.green .no-card * .btn-success:hover,.open .dropdown-toggle.content-page section.color-block.green .no-card * .btn-primary,.open .dropdown-toggle.content-page section.color-block.green .no-card * .btn-success{background-color:#103923;border-color:#0c2919;color:#fff}.content-page section.color-block.green .no-card * .btn-primary.active,.content-page section.color-block.green .no-card * .btn-primary:active,.content-page section.color-block.green .no-card * .btn-success.active,.content-page section.color-block.green .no-card * .btn-success:active,.open .dropdown-toggle.content-page section.color-block.green .no-card * .btn-primary,.open .dropdown-toggle.content-page section.color-block.green .no-card * .btn-success{background-image:none}.content-page section.color-block.green .no-card * .btn-primary.disabled,.content-page section.color-block.green .no-card * .btn-primary.disabled.active,.content-page section.color-block.green .no-card * .btn-primary.disabled:active,.content-page section.color-block.green .no-card * .btn-primary.disabled:focus,.content-page section.color-block.green .no-card * .btn-primary.disabled:hover,.content-page section.color-block.green .no-card * .btn-primary[disabled],.content-page section.color-block.green .no-card * .btn-primary[disabled].active,.content-page section.color-block.green .no-card * .btn-primary[disabled]:active,.content-page section.color-block.green .no-card * .btn-primary[disabled]:focus,.content-page section.color-block.green .no-card * .btn-primary[disabled]:hover,.content-page section.color-block.green .no-card * .btn-success.disabled,.content-page section.color-block.green .no-card * .btn-success.disabled.active,.content-page section.color-block.green .no-card * .btn-success.disabled:active,.content-page section.color-block.green .no-card * .btn-success.disabled:focus,.content-page section.color-block.green .no-card * .btn-success.disabled:hover,.content-page section.color-block.green .no-card * .btn-success[disabled],.content-page section.color-block.green .no-card * .btn-success[disabled].active,.content-page section.color-block.green .no-card * .btn-success[disabled]:active,.content-page section.color-block.green .no-card * .btn-success[disabled]:focus,.content-page section.color-block.green .no-card * .btn-success[disabled]:hover,fieldset[disabled] .content-page section.color-block.green .no-card * .btn-primary,fieldset[disabled] .content-page section.color-block.green .no-card * .btn-primary.active,fieldset[disabled] .content-page section.color-block.green .no-card * .btn-primary:active,fieldset[disabled] .content-page section.color-block.green .no-card * .btn-primary:focus,fieldset[disabled] .content-page section.color-block.green .no-card * .btn-primary:hover,fieldset[disabled] .content-page section.color-block.green .no-card * .btn-success,fieldset[disabled] .content-page section.color-block.green .no-card * .btn-success.active,fieldset[disabled] .content-page section.color-block.green .no-card * .btn-success:active,fieldset[disabled] .content-page section.color-block.green .no-card * .btn-success:focus,fieldset[disabled] .content-page section.color-block.green .no-card * .btn-success:hover{background-color:#195936;border-color:#195936}.content-page section.color-block.green .no-card * .btn-primary .badge,.content-page section.color-block.green .no-card * .btn-success .badge{background-color:#fff;color:#195936}.content-page section.color-block.blue-gray-dark{background-color:#2f3a4c}.content-page section.color-block.blue-gray-light{background-color:#e7e9ee}.content-page section.color-block.blue-gray-dark .no-card :not(.btn),.content-page section.color-block.green .no-card :not(.btn),.content-page section.color-block.green-dark .no-card :not(.btn){color:#fff}.content-page section.color-block.blue-gray-dark .no-card * a,.content-page section.color-block.green .no-card * a,.content-page section.color-block.green-dark .no-card * a{text-decoration:underline}.content-page section.color-block.blue-gray-dark .no-card * .btn,.content-page section.color-block.green .no-card * .btn,.content-page section.color-block.green-dark .no-card * .btn{text-decoration:none}.content-page section.color-block.blue-gray-dark .no-card * .form-control,.content-page section.color-block.green .no-card * .form-control,.content-page section.color-block.green-dark .no-card * .form-control{color:#1b222c}.content-page section .section-row{margin:0 auto;max-width:610px}@media (min-width:992px){.content-page section .section-row{max-width:796.66666667px}}@media (min-width:1200px){.content-page section .section-row{max-width:970px}}.content-page .content-container>section:first-child{padding-bottom:0;padding-top:0}.content-page .content-container>section:nth-child(2),.content-page section.no-top-padding{padding-top:0}.content-page .container-small section .section-row{max-width:482px}@media (min-width:992px){.content-page .container-small section .section-row{max-width:631.33333333px}}@media (min-width:1200px){.content-page .container-small section .section-row{max-width:770px}}.content-page .list-without-style{list-style:none;margin:0;padding:0}.content-portal{padding-top:60px!important}.content-portal .join-rider{margin-top:-12.5px}.content-portal .banner-image{background-position:50% 50%;background-repeat:no-repeat;background-size:cover;height:375px}.content-portal .image-fill{display:inline-block;height:100%;vertical-align:middle}.content-portal .institution-logo{left:50%;margin-left:-100px;padding:0;position:absolute}.content-portal .institution-logo div{background-color:#fff;box-shadow:1px 11px 22px -9px rgba(0,0,0,.8);display:inline-block;height:125px;overflow:hidden;position:absolute;text-align:center;top:-110px;white-space:nowrap;width:200px}.content-portal .institution-logo img{max-height:75px;max-width:150px;vertical-align:middle}.content-portal .portal-name{background-color:#f4f5f6;padding-bottom:25px;padding-top:20px;text-align:center;width:100%}.content-portal .button-pull,.content-portal .content-pull{float:left}.content-portal .button-pull{text-align:right}.content-portal .button-pull>a.btn{text-align:center;white-space:normal;width:200px}.content-portal .content-pull{padding-right:10px;width:calc(100% - 200px)}.content-portal .card{margin-bottom:20px}.content-portal .portal-actions i{margin-bottom:10px}.content-portal .print .basic-metrics{margin-bottom:50px}.content-portal .print .container{width:auto}.content-portal .print .custom-donut-container svg{max-width:570px}.content-portal .print .hidden-print{display:none}.content-portal .print .portal-col{margin:0;width:100%}.content-portal .print .portal-name{padding:0}.content-portal .print .visible-print{display:block!important}.content-portal .nav-tabs{background-color:#f4f5f6}@media (max-width:767px){.content-portal .content-pull{padding:0;width:auto}.content-portal .button-pull>a.btn{width:auto}}.symbol-palette-container{height:100%;position:relative;width:100%}.symbol-palette-container .symbol-palette{background:#495365;color:#fff;display:flex;flex-direction:column;height:100%;min-height:220px;width:100%}.symbol-palette-container .symbol-palette-header-outer{align-items:flex-start;background:#2f3a4c;box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1);display:flex;flex-shrink:0;flex-wrap:nowrap;font-family:Lato,sans-serif;font-size:16px;justify-content:space-between}.symbol-palette-container .symbol-palette-header{align-items:center;display:flex;flex:1;flex-wrap:wrap;justify-content:space-between}.symbol-palette-container .symbol-palette-tab-list[role=tablist]{background:none;border-bottom:none;flex-wrap:wrap}.symbol-palette-container .symbol-palette-tab[role=tab]{-webkit-appearance:none;-moz-appearance:none;background:none;border:none;border-bottom:1px solid transparent;color:inherit;cursor:pointer;display:inline-block;font:inherit;margin:0;padding:.25em .5em}.symbol-palette-container .symbol-palette-tab[role=tab][aria-selected=true]{background:#495365;color:#fff}.symbol-palette-container .symbol-palette-tab[role=tab]:disabled{cursor:default;opacity:.25}.symbol-palette-container .symbol-palette-body{flex:1;overflow-y:auto}.symbol-palette-container .symbol-palette-items{display:flex;flex-wrap:wrap;padding:5px}.symbol-palette-container .symbol-palette-item{align-items:center;background:#2f3a4c;border:1px solid transparent;border-radius:3px;color:#fff;display:inline-flex;font-family:Stix Two Math,serif;font-size:24px;height:42px;justify-content:center;line-height:42px;margin:5px;width:42px}.symbol-palette-container .symbol-palette-item-command{font-family:monospace;font-weight:700}.symbol-palette-container .symbol-palette-item-notes{margin-top:5px}.symbol-palette-container .symbol-palette-empty{align-items:center;display:flex;justify-content:center;padding:10px}.symbol-palette-container .symbol-palette-search{height:auto;line-height:1;margin:5px;padding:2px 10px;width:auto}.symbol-palette-container .symbol-palette-header-group{align-items:center;display:flex;margin-left:5px;white-space:nowrap}.symbol-palette-container .symbol-palette-info-link,.symbol-palette-container .symbol-palette-info-link:focus,.symbol-palette-container .symbol-palette-info-link:hover{color:inherit}.symbol-palette-container .symbol-palette-close-button{background:transparent;color:#fff;font-size:24px;font-weight:700;line-height:1;margin-left:5px;padding-left:10px;padding-right:10px}.symbol-palette-container .symbol-palette-overlay{align-items:center;background:rgba(73,83,101,.75);bottom:0;color:#fff;display:flex;flex-direction:column;left:0;min-height:200px;overflow:auto;padding:0 30px 10px;position:absolute;right:0;text-shadow:0 0 8px #1b222c;top:0}.symbol-palette-container .symbol-palette-overlay h4{color:#fff;font-weight:700;text-align:center}.symbol-palette-container .symbol-palette-overlay .symbol-palette-close-button{position:absolute;right:0;top:0}.symbol-palette-container .symbol-palette-overlay .upgrade-benefits{-moz-column-count:2;column-count:2}.admin-panel-pagination{display:flex;justify-content:center}.phase-badge{display:inline-block;font-size:14px;padding:3px 7px;text-align:center;white-space:nowrap}.scrollable{max-height:60vh;overflow-y:auto}.hr-sect{align-items:center;color:rgba(0,0,0,.35);display:flex;flex-basis:100%;margin:8px 0}.hr-sect:after,.hr-sect:before{background:rgba(0,0,0,.35);content:"";flex-grow:1;font-size:0;height:1px;line-height:0;margin:0 8px}.git-bridge-copy{align-items:center;background:#f4f5f6;border-radius:5px;color:#1b222c;display:flex;gap:10px;justify-content:center;margin:30px 0;padding:10px}.git-bridge-copy code{word-break:break-word}.git-bridge-optional-tokens{border:1px solid #f4f5f6;border-radius:5px;margin:30px 0;padding:20px}.git-bridge-optional-tokens-header{font-family:Lato,sans-serif;font-size:120%;font-weight:700;margin-bottom:10px}.git-bridge-optional-tokens-actions{margin-top:10px}.git-bridge-modal-notification{margin-bottom:10px}h2.group-settings-title{font-size:20px;margin-bottom:5px}h3.group-settings-title{font-size:16px;margin-bottom:0}h2.group-settings-title,h3.group-settings-title{font-family:Lato,sans-serif;font-weight:700;line-height:28px;margin-top:0;overflow:hidden;text-overflow:ellipsis}.enrollment-invite{color:#1b222c}.enrollment-invite .inner-card{background-color:#f4f5f6;margin:16px 0;padding:16px}.enrollment-invite .inner-card.warning{background-color:#fcf1e3}.enrollment-invite .inner-card .list-row{display:flex;flex-direction:row}.enrollment-invite .inner-card .list-row .icon{display:flex;flex:0 0 32px;font-size:24px;padding-right:12px}.enrollment-invite .inner-card .list-row .icon>span{font-size:16px}.enrollment-invite .inner-card .list-row .icon.error{color:#8f5514;margin-top:2px}.enrollment-invite .inner-card a{text-decoration:underline}.enrollment-invite .title{font-size:20px;line-height:28px}.enrollment-invite .subtitle,.enrollment-invite .title{font-family:Lato,sans-serif;font-weight:700;overflow:hidden;text-overflow:ellipsis}.enrollment-invite .subtitle{font-size:16px;line-height:24px}.enrollment-invite .label{text-wrap:wrap;color:#495365;font-size:14px;padding-left:0}.enrollment-invite .btn{margin:8px 0;width:100%}.enrollment-invite .btn-link-logout{margin:0;width:auto}.managed-users-enabled{color:#098842;font-family:Lato,sans-serif}.managed-users-enabled .icon{vertical-align:text-bottom}.group-settings-sso .group-settings-sso-row{align-items:center;display:flex;justify-content:space-between;margin-top:20px}.group-settings-sso .group-settings-sso-row .group-settings-sso-action-col{margin-left:16px}.below-managed-users{border-top:1px solid #d0d5dd;margin-top:25px;padding-top:25px}.sso-config-info{padding:12px 0}.sso-config-info .sso-config-info-header{border-bottom:1px solid #e7e9ee;display:flex;flex-wrap:wrap;gap:5px;justify-content:space-between;margin-bottom:15px;padding:0 16px 15px 16px}.sso-config-info .sso-config-info-header .status-label{border-radius:4px;flex-shrink:0;font-size:14px;margin-top:4px;padding:2px 4px}.sso-config-info .sso-config-info-header .status-label.status-label-valid{background-color:#098842;color:#f4f5f6}.sso-config-info .sso-config-info-header .status-label.status-label-draft{background-color:#e7e9ee;color:#1b222c}.sso-config-info .sso-config-options-buttons button:not(:last-child){margin-right:8px}.sso-config-info .sso-config-info-section{margin-bottom:20px;padding:0 16px}.sso-config-info .sso-config-info-section:last-child{margin-bottom:0}.sso-config-info .sso-config-info-label{font-size:14px;font-weight:700}.sso-config-info .sso-config-info-label .certificate-status{font-weight:400}.sso-config-info .sso-config-info-label .certificate-status .material-symbols{vertical-align:top}.sso-config-info .sso-config-info-label .certificate-status.certificate-valid{color:#098842}.sso-config-info .sso-config-info-label .certificate-status.certificate-expiring-soon{color:#8f5514}.sso-config-info .sso-config-info-label .certificate-status.certificate-expired{color:#b83a33}.sso-config-info .sso-config-info-label-optional{font-weight:400}.sso-config-info .sso-config-info-content{color:#1b222c;word-break:break-word}.sso-config-info .sso-config-info-content-empty{color:var(--neutral-60)}.sso-config-info p{margin-bottom:5px}.sso-config-modal-content .sso-config-interstitial-title,.sso-config-modal-content .sso-config-test-result-title{font-family:Lato,sans-serif;font-size:20px;font-weight:700;text-align:center}.sso-config-modal-content .sso-config-modal-icon-wrapper{margin-top:8px;text-align:center}.sso-config-modal-content .sso-config-modal-icon-wrapper .sso-config-interstitial-icon,.sso-config-modal-content .sso-config-modal-icon-wrapper .sso-config-test-error-icon,.sso-config-modal-content .sso-config-modal-icon-wrapper .sso-config-test-result-icon{border-radius:999px;font-size:32px;gap:8px;height:80px;padding:24px;width:80px}.sso-config-modal-content .sso-config-modal-icon-wrapper .sso-config-interstitial-icon{background-color:#f4f5f6}.sso-config-modal-content .sso-config-modal-icon-wrapper .sso-config-test-result-icon{background-color:#eaf6ef;color:#098842}.sso-config-modal-content .sso-config-modal-icon-wrapper .sso-config-test-error-icon{background-color:#f9f1f1;color:#b83a33}.sso-config-modal-content .sso-config-test-result-title{font-family:Lato,sans-serif;font-size:20px;font-weight:700;text-align:center}.sso-config-modal-content .has-feedback .form-control{padding-right:0}.sso-config-modal-content .payload-content{border:1px solid #e7e9ee;border-radius:4px;color:#000;margin-top:16px;padding:16px}.sso-config-modal-content .payload-content .saml-response-xml-wrapper{background-color:#f4f5f6;border-radius:4px;margin-top:16px;overflow:hidden}.sso-config-modal-content .payload-content .saml-response-xml-wrapper .saml-response-header{border-bottom:1px solid #e7e9ee;font-family:Lato,sans-serif;font-size:16px;font-weight:700;line-height:56px;padding:0 16px}.sso-config-modal-content .payload-content .saml-response-xml-wrapper .saml-response-header .copy-response{margin-top:10px;vertical-align:bottom}.sso-config-modal-content .payload-content .saml-response-xml-wrapper .saml-response-header .copy-response .material-symbols{vertical-align:text-top}.sso-config-modal-content .payload-content .saml-response-xml-wrapper .saml-response-footer{background:linear-gradient(1turn,#f4f5f6,rgba(244,245,246,0) 835.48%);bottom:0;line-height:56px;position:sticky;text-align:center}.sso-config-modal-content .payload-content .saml-response-xml-wrapper .saml-response-xml{font-family:DM Mono,monospace;font-size:13px;height:100px;min-height:100px;padding:16px 16px 0 16px;white-space:pre-wrap;word-break:break-word}.sso-config-modal-content .payload-content .saml-response-xml-wrapper .saml-response-xml.view-more{height:auto}.sso-config-modal-content .payload-content .saml-response-xml-wrapper .expand-viewer .material-symbols{font-size:24px;vertical-align:bottom}.sso-config-modal-content .payload-content .payload-content-user-info-item{display:inline-block;margin-bottom:5px;overflow-wrap:break-word;width:100%}.certificate-wrapper .certificate-delete{margin-left:16px;text-decoration:none}.certificate-wrapper .certificate-delete span{vertical-align:middle}.certificate-wrapper .certificate-delete,.certificate-wrapper .view-more{padding:0}.certificate-truncated{align-items:center;display:flex}.certificate-truncated .view-more{flex-grow:0;flex-shrink:0;margin-left:16px}.certificate-truncated .certificate-delete{display:inline-flex}.certificate{font-family:Courier,monospace}.certificate-truncated .certificate{display:inline-block;flex-grow:4;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.certificate-full .certificate{display:block;word-break:break-all}.certificate-form-row{display:flex}.certificate-form-row .certificate-input{flex-grow:11}.certificate-form-row .certificate-delete{flex-grow:1;flex-shrink:0}.btn-import-metadata{margin-left:8px}.onboarding-data-collection-wrapper{display:flex;flex-direction:column;gap:10px;margin:0 auto;max-width:720px}.onboarding-data-collection-wrapper .onboarding-data-collection-form{background:#fff;display:flex;flex-direction:column;gap:24px;padding:24px}.onboarding-data-collection-wrapper .select-wrapper label,.onboarding-data-collection-wrapper .ui-select-container label{font-size:14px}.onboarding-data-collection-wrapper .select-wrapper .select-items,.onboarding-data-collection-wrapper .ui-select-container .select-items{max-height:150px}.onboarding-data-collection-wrapper .select-wrapper .select-trigger,.onboarding-data-collection-wrapper .ui-select-container .select-trigger{border:1px solid #677283;color:#677283}.onboarding-data-collection-wrapper .onboarding-question-title{border-bottom:none;font-size:20px}.onboarding-data-collection-wrapper p{font-size:16px;margin-bottom:16px}.onboarding-data-collection-wrapper .logo{margin:0 auto;width:130px}.onboarding-data-collection-wrapper form{display:flex;flex-direction:column;gap:24px}.onboarding-data-collection-wrapper form .group-horizontal{display:flex;gap:24px;justify-content:stretch}@media (max-width:767px){.onboarding-data-collection-wrapper form .group-horizontal{flex-direction:column;gap:0}}.onboarding-data-collection-wrapper form .group-horizontal .form-group{flex-grow:1}.onboarding-data-collection-wrapper form .form-actions{display:flex;justify-content:space-between}.onboarding-data-collection-wrapper form .form-actions>div{align-items:center;display:flex;gap:8px}.onboarding-data-collection-wrapper form .form-actions>div button.btn-info-ghost{color:#1b222c}.onboarding-data-collection-wrapper .onboarding-step-2 .checkbox{margin:0}.onboarding-data-collection-wrapper .onboarding-step-2 .checkbox p{margin-bottom:0}.onboarding-data-collection-wrapper .onboarding-step-2 .checkbox label{align-items:center;display:flex;gap:8px}.onboarding-data-collection-wrapper .onboarding-step-2 .checkbox label input{margin-right:4px}.onboarding-data-collection-wrapper .onboarding-collapse-button{align-items:center;color:#3265b2;cursor:pointer;display:flex;-webkit-user-select:none;-moz-user-select:none;user-select:none}@media (max-width:767px){.onboarding-data-collection-wrapper .onboarding-collapse-button,.onboarding-data-collection-wrapper .onboarding-privacy-extended{padding:0 24px}.onboarding-data-collection-form-margin{margin-bottom:100px}}.compromised-password-content{display:flex;flex-direction:column;gap:12px}.writefull-logo-bg{background-color:#fff}.writefull-loading-bar{font-size:14px;height:40px;justify-content:center}.writefull-error-notification{margin:48px 64px;max-width:520px;text-align:left;width:100%}.writefull-disclosure-summary{align-items:center;color:#3265b2;cursor:pointer;display:flex;-webkit-user-select:none;-moz-user-select:none;user-select:none}.editor-notification a.wf-promotion-link{text-decoration:none}.editor-notification a.wf-promotion-link:hover{text-decoration:underline}@keyframes slide-in{0%{bottom:12px;opacity:0;transform:translateY(25%)}to{bottom:16px;opacity:1;transform:translateY(0)}}.fade-slide-in{animation:slide-in .3s ease-in-out forwards;animation-delay:.3s;opacity:0;transition:opacity .3s ease}.tpr-editor-prompt-container{bottom:16px;max-width:512px;position:absolute;right:16px;width:90%;z-index:1}.labs-opt-in-wrapper,.labs-opt-in-wrapper h1,.labs-opt-in-wrapper h2,.labs-opt-in-wrapper h3,.labs-opt-in-wrapper h4{color:#677283}.labs-opt-in-wrapper #experiments-container .title-row{display:flex}.labs-opt-in-wrapper #experiments-container .labs-experiment-widget-container{border:1px solid #d0d5dd}.labs-opt-in-wrapper .labs-icon{background-color:#098842;border-radius:20%;color:#fff;vertical-align:text-bottom}.labs-opt-in-wrapper p,.labs-opt-in-wrapper strong{font-size:14px}.labs-opt-in-wrapper .labs-experiment-widget-container{align-items:center;display:grid;gap:20px;grid-template-columns:40px 1fr auto;padding:10px}.labs-opt-in-wrapper .labs-experiment-widget-container>div{display:flex;flex-direction:column;padding-right:20px}.labs-opt-in-wrapper .labs-experiment-widget-container>div:last-child{padding-right:0}.labs-opt-in-wrapper .labs-experiment-widget-container img{height:36px;width:36px}.labs-opt-in-wrapper .labs-experiment-widget-container .title-row{margin:0;margin-bottom:10px}.labs-opt-in-wrapper .labs-experiment-widget-container .title-row>h3{margin:0;margin-right:10px}.labs-opt-in-wrapper .labs-experiment-widget-container p{margin-bottom:10px}.labs-opt-in-wrapper .labs-experiment-widget-container p:last-child{margin-bottom:0}@media (max-width:767px){.labs-opt-in-wrapper .labs-experiment-widget-container{grid-template-columns:1fr}}.labs-experiment-widget-container.disabled-experiment{grid-template-columns:40px 3fr 1fr auto}.labs-experiment-widget-container.disabled-experiment .disabled-explanation{color:#495365}.labs-experiment-widget-container.disabled-experiment h3,.labs-experiment-widget-container.disabled-experiment p{color:#afb5c0}.disabled-experiment .ai-error-assistant-avatar{filter:grayscale(.6)} + + /* Modal Background */ + .modal { + display: none; /* Hidden by default */ + position: fixed; + z-index: 1000; + left: 0; + top: 0; + width: 100%; + height: 100%; + overflow: auto; + background-color: rgba(0, 0, 0, 0.8); /* Black with opacity */ +} + +.modal-content { + background-color: #fefefe; + margin: 5% auto; + padding: 20px; + border-radius: 10px; + border: 1px solid #888; + width: 80%; + color: #333; + font-family: Arial, sans-serif; +} + +.modal-content h2 { + margin-top: 0; + color: #333; +} + +.modal-content h3 { + color: #444; + margin-bottom: 10px; +} + +.modal-content ul { + margin-left: 20px; +} + +.modal-content .important { + color: red; + font-weight: bold; +} + +.close { + color: #aaa; + float: right; + font-size: 28px; + font-weight: bold; + cursor: pointer; +} + +.close:hover, +.close:focus { + color: black; + text-decoration: none; + cursor: pointer; +} + diff --git a/frontend/privacy.html b/frontend/privacy.html new file mode 100644 index 0000000..9ad33ed --- /dev/null +++ b/frontend/privacy.html @@ -0,0 +1,118 @@ + + + + Privacy Policy - AppuntiPolito Overleaf + + + + + +
+
+
+
+
+ + + +
+

Privacy Policy

+

1. Data Controller

+

Name: lynxcloud OdV

+

Address: Corso Racconigi 25/9 - 10139 Torino (TO) - Italy

+

Email: ito@lynxcloud.it

+ +

2. Legal Basis for Processing

+

We process your data based on GDPR's legal bases, including performance of a contract, legal obligations, and legitimate interests.

+ +

3. Data We Collect

+
    +
  • Email address
  • +
  • IP address
  • +
  • Project data
  • +
+ +

4. Data Storage and Retention

+

Your data is stored in compliance with GDPR and deleted when no longer required.

+ +

5. Your Rights

+
    +
  • Access your data
  • +
  • Request data deletion
  • +
  • Restrict data processing
  • +
+ +

6. Cookies and Security

+

We use minimal cookies and follow strict security practices to safeguard your data.

+ +

7. Service Availability and Liability

+

This service is offered on a best-effort basis with no guarantees of uptime or data recovery. You must maintain your own backups.

+ +

8. Data Transfers Outside the EU

+

Any transfers outside the EU will comply with GDPR using appropriate safeguards.

+ +

Contact

+

Email: ito@lynxcloud.it

+
+ +
+ + +
+

Politica sulla Privacy

+

1. Titolare del Trattamento

+

Nome: lynxcloud OdV

+

Indirizzo: Corso Racconigi 25/9 - 10139 Torino (TO) - Italy

+

Email: ito@lynxcloud.it

+ +

2. Base Giuridica per il Trattamento

+

Trattiamo i tuoi dati secondo le basi giuridiche del GDPR, inclusi l'esecuzione di un contratto, obblighi legali e interessi legittimi.

+ +

3. Dati che Raccogliamo

+
    +
  • Indirizzo email
  • +
  • Indirizzo IP
  • +
  • Dati dei progetti
  • +
+ +

4. Conservazione e Durata dei Dati

+

I tuoi dati sono conservati in conformità con il GDPR e cancellati quando non più necessari.

+ +

5. I tuoi Diritti

+
    +
  • Accedere ai tuoi dati
  • +
  • Richiedere la cancellazione dei dati
  • +
  • Limitare il trattamento dei dati
  • +
+ +

6. Cookie e Sicurezza

+

Utilizziamo cookie minimi e seguiamo pratiche di sicurezza rigorose per proteggere i tuoi dati.

+ +

7. Disponibilità del Servizio e Responsabilità

+

Questo servizio è offerto su base "best-effort" senza garanzie di uptime o recupero dei dati. Devi mantenere copie di backup dei tuoi lavori.

+ +

8. Trasferimenti di Dati al di Fuori dell'UE

+

Eventuali trasferimenti al di fuori dell'UE saranno conformi al GDPR utilizzando adeguate garanzie.

+ +

Contatti

+

Email: ito@lynxcloud.it

+
+
+
+
+
+
+ + diff --git a/frontend/script.js b/frontend/script.js new file mode 100644 index 0000000..a8efbb2 --- /dev/null +++ b/frontend/script.js @@ -0,0 +1,100 @@ +document.addEventListener('DOMContentLoaded', () => { + console.log('Turnstile script loaded.'); + + const form = document.getElementById('registration-form'); + const tosModal = document.getElementById('tos-modal'); + const openTosModal = document.getElementById('open-tos-modal'); + const closeTosModal = document.getElementById('close-tos-modal'); + const tosCheckbox = document.querySelector('input[name="agree-tos"]'); + const allowedDomains = ['example.edu', 'university.edu']; // CONFIGURE: Replace with your allowed email domains + + // Automatically show the Terms of Service modal on page load + if (tosModal) { + tosModal.style.display = 'block'; + } + + // Handle Terms of Service modal + if (openTosModal && tosModal) { + openTosModal.addEventListener('click', (event) => { + event.preventDefault(); + tosModal.style.display = 'block'; + }); + } + + if (closeTosModal && tosModal) { + closeTosModal.addEventListener('click', () => { + tosModal.style.display = 'none'; + //if (tosCheckbox) tosCheckbox.checked = true; // Auto-check ToS checkbox + }); + } + + window.addEventListener('click', (event) => { + if (event.target === tosModal) { + tosModal.style.display = 'none'; + //if (tosCheckbox) tosCheckbox.checked = true; // Auto-check ToS checkbox + } + }); + + // Ensure the form exists + if (!form) { + console.error('Form not found!'); + return; + } + + form.addEventListener('submit', async (event) => { + event.preventDefault(); + + const emailInput = document.querySelector('input[name="email"]'); + const email = emailInput ? emailInput.value.trim() : ''; + + if (!email) { + alert('Email is required.'); + return; + } + // Validate email + const emailDomain = email.split('@')[1]; + if (!allowedDomains.includes(emailDomain)) { + alert(`You must use a valid email from the following domains: ${allowedDomains.join(', ')}.`); + return; + } + + // Ensure the Terms of Service checkbox is checked + if (!tosCheckbox || !tosCheckbox.checked) { + alert('You must agree to the Terms of Service and the Privacy Policy to continue.'); + return; + } + + // Retrieve Turnstile token + const turnstileResponseElement = document.querySelector('input[name="cf-turnstile-response"]'); + const captchaToken = turnstileResponseElement ? turnstileResponseElement.value : ''; + + if (!captchaToken) { + console.error('CAPTCHA token is missing.'); + alert('Please complete the CAPTCHA.'); + return; + } + + console.log('Submitting with Turnstile token:', captchaToken); + + try { + const response = await fetch('https://YOUR_BACKEND_API_URL/signup', { // CONFIGURE: Replace with your backend API endpoint + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify({ email, captcha: captchaToken }), + }); + + if (response.ok) { + const result = await response.json(); + alert(result.message || 'Registration successful! Check your email to set your password.'); + emailInput.value = ''; // Clear the form + } else { + const error = await response.text(); + console.error('Backend error:', error); + alert(`Registration failed: ${error}`); + } + } catch (error) { + console.error('Error during registration:', error); + alert('An error occurred. Please try again.'); + } + }); +}); diff --git a/frontend/scripts.js b/frontend/scripts.js new file mode 100644 index 0000000..158c637 --- /dev/null +++ b/frontend/scripts.js @@ -0,0 +1,5 @@ +/*! For license information please see libraries-4b4117abb7ef428488ce.js.LICENSE.txt */ +(window.webpackJsonp=window.webpackJsonp||[]).push([[0],[,,,,function(e,t,n){"use strict";n.d(t,"b",(function(){return i})),n.d(t,"a",(function(){return o})),n.d(t,"d",(function(){return a})),n.d(t,"f",(function(){return s})),n.d(t,"c",(function(){return u})),n.d(t,"e",(function(){return c}));var r=function(e,t){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)};function i(e,t){function n(){this.constructor=e}r(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}var o=function(){return(o=Object.assign||function(e){for(var t,n=1,r=arguments.length;n=e.length&&(e=void 0),{value:e&&e[n++],done:!e}}}}function u(e,t){var n="function"==typeof Symbol&&e[Symbol.iterator];if(!n)return e;var r,i,o=n.call(e),a=[];try{for(;(void 0===t||t-- >0)&&!(r=o.next()).done;)a.push(r.value)}catch(e){i={error:e}}finally{try{r&&!r.done&&(n=o.return)&&n.call(o)}finally{if(i)throw i.error}}return a}function c(){for(var e=[],t=0;t=n.length?{value:void 0,done:!0}:(e=r(n,i),t.index+=e.length,{value:e,done:!1})}))},function(e,t,n){var r=n(221),i=n(64),o=n(469);r||i(Object.prototype,"toString",o,{unsafe:!0})},function(e,t,n){var r=n(28),i=n(316);r({target:"Array",stat:!0,forced:!n(222)((function(e){Array.from(e)}))},{from:i})},function(e,t,n){(function(e,r){var i;(function(){var o="Expected a function",a="__lodash_placeholder__",s=[["ary",128],["bind",1],["bindKey",2],["curry",8],["curryRight",16],["flip",512],["partial",32],["partialRight",64],["rearg",256]],u="[object Arguments]",c="[object Array]",l="[object Boolean]",f="[object Date]",d="[object Error]",p="[object Function]",h="[object GeneratorFunction]",g="[object Map]",m="[object Number]",v="[object Object]",y="[object RegExp]",b="[object Set]",_="[object String]",w="[object Symbol]",$="[object WeakMap]",x="[object ArrayBuffer]",q="[object DataView]",S="[object Float32Array]",E="[object Float64Array]",k="[object Int8Array]",C="[object Int16Array]",O="[object Int32Array]",T="[object Uint8Array]",D="[object Uint16Array]",A="[object Uint32Array]",I=/\b__p \+= '';/g,P=/\b(__p \+=) '' \+/g,M=/(__e\(.*?\)|\b__t\)) \+\n'';/g,j=/&(?:amp|lt|gt|quot|#39);/g,R=/[&<>"']/g,F=RegExp(j.source),N=RegExp(R.source),L=/<%-([\s\S]+?)%>/g,U=/<%([\s\S]+?)%>/g,B=/<%=([\s\S]+?)%>/g,H=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,V=/^\w*$/,z=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,W=/[\\^$.*+?()[\]{}|]/g,Y=RegExp(W.source),G=/^\s+|\s+$/g,X=/^\s+/,K=/\s+$/,J=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,Z=/\{\n\/\* \[wrapped with (.+)\] \*/,Q=/,? & /,ee=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,te=/\\(\\)?/g,ne=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,re=/\w*$/,ie=/^[-+]0x[0-9a-f]+$/i,oe=/^0b[01]+$/i,ae=/^\[object .+?Constructor\]$/,se=/^0o[0-7]+$/i,ue=/^(?:0|[1-9]\d*)$/,ce=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,le=/($^)/,fe=/['\n\r\u2028\u2029\\]/g,de="\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff",pe="\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",he="[\\ud800-\\udfff]",ge="["+pe+"]",me="["+de+"]",ve="\\d+",ye="[\\u2700-\\u27bf]",be="[a-z\\xdf-\\xf6\\xf8-\\xff]",_e="[^\\ud800-\\udfff"+pe+ve+"\\u2700-\\u27bfa-z\\xdf-\\xf6\\xf8-\\xffA-Z\\xc0-\\xd6\\xd8-\\xde]",we="\\ud83c[\\udffb-\\udfff]",$e="[^\\ud800-\\udfff]",xe="(?:\\ud83c[\\udde6-\\uddff]){2}",qe="[\\ud800-\\udbff][\\udc00-\\udfff]",Se="[A-Z\\xc0-\\xd6\\xd8-\\xde]",Ee="(?:"+be+"|"+_e+")",ke="(?:"+Se+"|"+_e+")",Ce="(?:"+me+"|"+we+")"+"?",Oe="[\\ufe0e\\ufe0f]?"+Ce+("(?:\\u200d(?:"+[$e,xe,qe].join("|")+")[\\ufe0e\\ufe0f]?"+Ce+")*"),Te="(?:"+[ye,xe,qe].join("|")+")"+Oe,De="(?:"+[$e+me+"?",me,xe,qe,he].join("|")+")",Ae=RegExp("['’]","g"),Ie=RegExp(me,"g"),Pe=RegExp(we+"(?="+we+")|"+De+Oe,"g"),Me=RegExp([Se+"?"+be+"+(?:['’](?:d|ll|m|re|s|t|ve))?(?="+[ge,Se,"$"].join("|")+")",ke+"+(?:['’](?:D|LL|M|RE|S|T|VE))?(?="+[ge,Se+Ee,"$"].join("|")+")",Se+"?"+Ee+"+(?:['’](?:d|ll|m|re|s|t|ve))?",Se+"+(?:['’](?:D|LL|M|RE|S|T|VE))?","\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])","\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",ve,Te].join("|"),"g"),je=RegExp("[\\u200d\\ud800-\\udfff"+de+"\\ufe0e\\ufe0f]"),Re=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,Fe=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],Ne=-1,Le={};Le[S]=Le[E]=Le[k]=Le[C]=Le[O]=Le[T]=Le["[object Uint8ClampedArray]"]=Le[D]=Le[A]=!0,Le[u]=Le[c]=Le[x]=Le[l]=Le[q]=Le[f]=Le[d]=Le[p]=Le[g]=Le[m]=Le[v]=Le[y]=Le[b]=Le[_]=Le[$]=!1;var Ue={};Ue[u]=Ue[c]=Ue[x]=Ue[q]=Ue[l]=Ue[f]=Ue[S]=Ue[E]=Ue[k]=Ue[C]=Ue[O]=Ue[g]=Ue[m]=Ue[v]=Ue[y]=Ue[b]=Ue[_]=Ue[w]=Ue[T]=Ue["[object Uint8ClampedArray]"]=Ue[D]=Ue[A]=!0,Ue[d]=Ue[p]=Ue[$]=!1;var Be={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},He=parseFloat,Ve=parseInt,ze="object"==typeof e&&e&&e.Object===Object&&e,We="object"==typeof self&&self&&self.Object===Object&&self,Ye=ze||We||Function("return this")(),Ge=t&&!t.nodeType&&t,Xe=Ge&&"object"==typeof r&&r&&!r.nodeType&&r,Ke=Xe&&Xe.exports===Ge,Je=Ke&&ze.process,Ze=function(){try{var e=Xe&&Xe.require&&Xe.require("util").types;return e||Je&&Je.binding&&Je.binding("util")}catch(e){}}(),Qe=Ze&&Ze.isArrayBuffer,et=Ze&&Ze.isDate,tt=Ze&&Ze.isMap,nt=Ze&&Ze.isRegExp,rt=Ze&&Ze.isSet,it=Ze&&Ze.isTypedArray;function ot(e,t,n){switch(n.length){case 0:return e.call(t);case 1:return e.call(t,n[0]);case 2:return e.call(t,n[0],n[1]);case 3:return e.call(t,n[0],n[1],n[2])}return e.apply(t,n)}function at(e,t,n,r){for(var i=-1,o=null==e?0:e.length;++i-1}function dt(e,t,n){for(var r=-1,i=null==e?0:e.length;++r-1;);return n}function Pt(e,t){for(var n=e.length;n--&&wt(t,e[n],0)>-1;);return n}function Mt(e,t){for(var n=e.length,r=0;n--;)e[n]===t&&++r;return r}var jt=Et({"À":"A","Á":"A","Â":"A","Ã":"A","Ä":"A","Å":"A","à":"a","á":"a","â":"a","ã":"a","ä":"a","å":"a","Ç":"C","ç":"c","Ð":"D","ð":"d","È":"E","É":"E","Ê":"E","Ë":"E","è":"e","é":"e","ê":"e","ë":"e","Ì":"I","Í":"I","Î":"I","Ï":"I","ì":"i","í":"i","î":"i","ï":"i","Ñ":"N","ñ":"n","Ò":"O","Ó":"O","Ô":"O","Õ":"O","Ö":"O","Ø":"O","ò":"o","ó":"o","ô":"o","õ":"o","ö":"o","ø":"o","Ù":"U","Ú":"U","Û":"U","Ü":"U","ù":"u","ú":"u","û":"u","ü":"u","Ý":"Y","ý":"y","ÿ":"y","Æ":"Ae","æ":"ae","Þ":"Th","þ":"th","ß":"ss","Ā":"A","Ă":"A","Ą":"A","ā":"a","ă":"a","ą":"a","Ć":"C","Ĉ":"C","Ċ":"C","Č":"C","ć":"c","ĉ":"c","ċ":"c","č":"c","Ď":"D","Đ":"D","ď":"d","đ":"d","Ē":"E","Ĕ":"E","Ė":"E","Ę":"E","Ě":"E","ē":"e","ĕ":"e","ė":"e","ę":"e","ě":"e","Ĝ":"G","Ğ":"G","Ġ":"G","Ģ":"G","ĝ":"g","ğ":"g","ġ":"g","ģ":"g","Ĥ":"H","Ħ":"H","ĥ":"h","ħ":"h","Ĩ":"I","Ī":"I","Ĭ":"I","Į":"I","İ":"I","ĩ":"i","ī":"i","ĭ":"i","į":"i","ı":"i","Ĵ":"J","ĵ":"j","Ķ":"K","ķ":"k","ĸ":"k","Ĺ":"L","Ļ":"L","Ľ":"L","Ŀ":"L","Ł":"L","ĺ":"l","ļ":"l","ľ":"l","ŀ":"l","ł":"l","Ń":"N","Ņ":"N","Ň":"N","Ŋ":"N","ń":"n","ņ":"n","ň":"n","ŋ":"n","Ō":"O","Ŏ":"O","Ő":"O","ō":"o","ŏ":"o","ő":"o","Ŕ":"R","Ŗ":"R","Ř":"R","ŕ":"r","ŗ":"r","ř":"r","Ś":"S","Ŝ":"S","Ş":"S","Š":"S","ś":"s","ŝ":"s","ş":"s","š":"s","Ţ":"T","Ť":"T","Ŧ":"T","ţ":"t","ť":"t","ŧ":"t","Ũ":"U","Ū":"U","Ŭ":"U","Ů":"U","Ű":"U","Ų":"U","ũ":"u","ū":"u","ŭ":"u","ů":"u","ű":"u","ų":"u","Ŵ":"W","ŵ":"w","Ŷ":"Y","ŷ":"y","Ÿ":"Y","Ź":"Z","Ż":"Z","Ž":"Z","ź":"z","ż":"z","ž":"z","IJ":"IJ","ij":"ij","Œ":"Oe","œ":"oe","ʼn":"'n","ſ":"s"}),Rt=Et({"&":"&","<":"<",">":">",'"':""","'":"'"});function Ft(e){return"\\"+Be[e]}function Nt(e){return je.test(e)}function Lt(e){var t=-1,n=Array(e.size);return e.forEach((function(e,r){n[++t]=[r,e]})),n}function Ut(e,t){return function(n){return e(t(n))}}function Bt(e,t){for(var n=-1,r=e.length,i=0,o=[];++n",""":'"',"'":"'"});var Gt=function e(t){var n,r=(t=null==t?Ye:Gt.defaults(Ye.Object(),t,Gt.pick(Ye,Fe))).Array,i=t.Date,de=t.Error,pe=t.Function,he=t.Math,ge=t.Object,me=t.RegExp,ve=t.String,ye=t.TypeError,be=r.prototype,_e=pe.prototype,we=ge.prototype,$e=t["__core-js_shared__"],xe=_e.toString,qe=we.hasOwnProperty,Se=0,Ee=(n=/[^.]+$/.exec($e&&$e.keys&&$e.keys.IE_PROTO||""))?"Symbol(src)_1."+n:"",ke=we.toString,Ce=xe.call(ge),Oe=Ye._,Te=me("^"+xe.call(qe).replace(W,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),De=Ke?t.Buffer:void 0,Pe=t.Symbol,je=t.Uint8Array,Be=De?De.allocUnsafe:void 0,ze=Ut(ge.getPrototypeOf,ge),We=ge.create,Ge=we.propertyIsEnumerable,Xe=be.splice,Je=Pe?Pe.isConcatSpreadable:void 0,Ze=Pe?Pe.iterator:void 0,yt=Pe?Pe.toStringTag:void 0,Et=function(){try{var e=Qi(ge,"defineProperty");return e({},"",{}),e}catch(e){}}(),Xt=t.clearTimeout!==Ye.clearTimeout&&t.clearTimeout,Kt=i&&i.now!==Ye.Date.now&&i.now,Jt=t.setTimeout!==Ye.setTimeout&&t.setTimeout,Zt=he.ceil,Qt=he.floor,en=ge.getOwnPropertySymbols,tn=De?De.isBuffer:void 0,nn=t.isFinite,rn=be.join,on=Ut(ge.keys,ge),an=he.max,sn=he.min,un=i.now,cn=t.parseInt,ln=he.random,fn=be.reverse,dn=Qi(t,"DataView"),pn=Qi(t,"Map"),hn=Qi(t,"Promise"),gn=Qi(t,"Set"),mn=Qi(t,"WeakMap"),vn=Qi(ge,"create"),yn=mn&&new mn,bn={},_n=ko(dn),wn=ko(pn),$n=ko(hn),xn=ko(gn),qn=ko(mn),Sn=Pe?Pe.prototype:void 0,En=Sn?Sn.valueOf:void 0,kn=Sn?Sn.toString:void 0;function Cn(e){if(Ha(e)&&!Ia(e)&&!(e instanceof An)){if(e instanceof Dn)return e;if(qe.call(e,"__wrapped__"))return Co(e)}return new Dn(e)}var On=function(){function e(){}return function(t){if(!Ba(t))return{};if(We)return We(t);e.prototype=t;var n=new e;return e.prototype=void 0,n}}();function Tn(){}function Dn(e,t){this.__wrapped__=e,this.__actions__=[],this.__chain__=!!t,this.__index__=0,this.__values__=void 0}function An(e){this.__wrapped__=e,this.__actions__=[],this.__dir__=1,this.__filtered__=!1,this.__iteratees__=[],this.__takeCount__=4294967295,this.__views__=[]}function In(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t=t?e:t)),e}function Kn(e,t,n,r,i,o){var a,s=1&t,c=2&t,d=4&t;if(n&&(a=i?n(e,r,i,o):n(e)),void 0!==a)return a;if(!Ba(e))return e;var $=Ia(e);if($){if(a=function(e){var t=e.length,n=new e.constructor(t);t&&"string"==typeof e[0]&&qe.call(e,"index")&&(n.index=e.index,n.input=e.input);return n}(e),!s)return vi(e,a)}else{var I=no(e),P=I==p||I==h;if(Ra(e))return fi(e,s);if(I==v||I==u||P&&!i){if(a=c||P?{}:io(e),!s)return c?function(e,t){return yi(e,to(e),t)}(e,function(e,t){return e&&yi(t,_s(t),e)}(a,e)):function(e,t){return yi(e,eo(e),t)}(e,Wn(a,e))}else{if(!Ue[I])return i?e:{};a=function(e,t,n){var r=e.constructor;switch(t){case x:return di(e);case l:case f:return new r(+e);case q:return function(e,t){var n=t?di(e.buffer):e.buffer;return new e.constructor(n,e.byteOffset,e.byteLength)}(e,n);case S:case E:case k:case C:case O:case T:case"[object Uint8ClampedArray]":case D:case A:return pi(e,n);case g:return new r;case m:case _:return new r(e);case y:return function(e){var t=new e.constructor(e.source,re.exec(e));return t.lastIndex=e.lastIndex,t}(e);case b:return new r;case w:return i=e,En?ge(En.call(i)):{}}var i}(e,I,s)}}o||(o=new Rn);var M=o.get(e);if(M)return M;o.set(e,a),Ga(e)?e.forEach((function(r){a.add(Kn(r,t,n,r,e,o))})):Va(e)&&e.forEach((function(r,i){a.set(i,Kn(r,t,n,i,e,o))}));var j=$?void 0:(d?c?Wi:zi:c?_s:bs)(e);return st(j||e,(function(r,i){j&&(r=e[i=r]),Hn(a,i,Kn(r,t,n,i,e,o))})),a}function Jn(e,t,n){var r=n.length;if(null==e)return!r;for(e=ge(e);r--;){var i=n[r],o=t[i],a=e[i];if(void 0===a&&!(i in e)||!o(a))return!1}return!0}function Zn(e,t,n){if("function"!=typeof e)throw new ye(o);return _o((function(){e.apply(void 0,n)}),t)}function Qn(e,t,n,r){var i=-1,o=ft,a=!0,s=e.length,u=[],c=t.length;if(!s)return u;n&&(t=pt(t,Tt(n))),r?(o=dt,a=!1):t.length>=200&&(o=At,a=!1,t=new jn(t));e:for(;++i-1},Pn.prototype.set=function(e,t){var n=this.__data__,r=Vn(n,e);return r<0?(++this.size,n.push([e,t])):n[r][1]=t,this},Mn.prototype.clear=function(){this.size=0,this.__data__={hash:new In,map:new(pn||Pn),string:new In}},Mn.prototype.delete=function(e){var t=Ji(this,e).delete(e);return this.size-=t?1:0,t},Mn.prototype.get=function(e){return Ji(this,e).get(e)},Mn.prototype.has=function(e){return Ji(this,e).has(e)},Mn.prototype.set=function(e,t){var n=Ji(this,e),r=n.size;return n.set(e,t),this.size+=n.size==r?0:1,this},jn.prototype.add=jn.prototype.push=function(e){return this.__data__.set(e,"__lodash_hash_undefined__"),this},jn.prototype.has=function(e){return this.__data__.has(e)},Rn.prototype.clear=function(){this.__data__=new Pn,this.size=0},Rn.prototype.delete=function(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n},Rn.prototype.get=function(e){return this.__data__.get(e)},Rn.prototype.has=function(e){return this.__data__.has(e)},Rn.prototype.set=function(e,t){var n=this.__data__;if(n instanceof Pn){var r=n.__data__;if(!pn||r.length<199)return r.push([e,t]),this.size=++n.size,this;n=this.__data__=new Mn(r)}return n.set(e,t),this.size=n.size,this};var er=wi(ur),tr=wi(cr,!0);function nr(e,t){var n=!0;return er(e,(function(e,r,i){return n=!!t(e,r,i)})),n}function rr(e,t,n){for(var r=-1,i=e.length;++r0&&n(s)?t>1?or(s,t-1,n,r,i):ht(i,s):r||(i[i.length]=s)}return i}var ar=$i(),sr=$i(!0);function ur(e,t){return e&&ar(e,t,bs)}function cr(e,t){return e&&sr(e,t,bs)}function lr(e,t){return lt(t,(function(t){return Na(e[t])}))}function fr(e,t){for(var n=0,r=(t=si(t,e)).length;null!=e&&nt}function gr(e,t){return null!=e&&qe.call(e,t)}function mr(e,t){return null!=e&&t in ge(e)}function vr(e,t,n){for(var i=n?dt:ft,o=e[0].length,a=e.length,s=a,u=r(a),c=1/0,l=[];s--;){var f=e[s];s&&t&&(f=pt(f,Tt(t))),c=sn(f.length,c),u[s]=!n&&(t||o>=120&&f.length>=120)?new jn(s&&f):void 0}f=e[0];var d=-1,p=u[0];e:for(;++d=s)return u;var c=n[r];return u*("desc"==c?-1:1)}}return e.index-t.index}(e,t,n)}))}function Ir(e,t,n){for(var r=-1,i=t.length,o={};++r-1;)s!==e&&Xe.call(s,u,1),Xe.call(e,u,1);return e}function Mr(e,t){for(var n=e?t.length:0,r=n-1;n--;){var i=t[n];if(n==r||i!==o){var o=i;ao(i)?Xe.call(e,i,1):Qr(e,i)}}return e}function jr(e,t){return e+Qt(ln()*(t-e+1))}function Rr(e,t){var n="";if(!e||t<1||t>9007199254740991)return n;do{t%2&&(n+=e),(t=Qt(t/2))&&(e+=e)}while(t);return n}function Fr(e,t){return wo(go(e,t,zs),e+"")}function Nr(e){return Nn(Cs(e))}function Lr(e,t){var n=Cs(e);return qo(n,Xn(t,0,n.length))}function Ur(e,t,n,r){if(!Ba(e))return e;for(var i=-1,o=(t=si(t,e)).length,a=o-1,s=e;null!=s&&++io?0:o+t),(n=n>o?o:n)<0&&(n+=o),o=t>n?0:n-t>>>0,t>>>=0;for(var a=r(o);++i>>1,a=e[o];null!==a&&!Ka(a)&&(n?a<=t:a=200){var c=t?null:Ri(e);if(c)return Ht(c);a=!1,i=At,u=new jn}else u=t?[]:s;e:for(;++r=r?e:zr(e,t,n)}var li=Xt||function(e){return Ye.clearTimeout(e)};function fi(e,t){if(t)return e.slice();var n=e.length,r=Be?Be(n):new e.constructor(n);return e.copy(r),r}function di(e){var t=new e.constructor(e.byteLength);return new je(t).set(new je(e)),t}function pi(e,t){var n=t?di(e.buffer):e.buffer;return new e.constructor(n,e.byteOffset,e.length)}function hi(e,t){if(e!==t){var n=void 0!==e,r=null===e,i=e==e,o=Ka(e),a=void 0!==t,s=null===t,u=t==t,c=Ka(t);if(!s&&!c&&!o&&e>t||o&&a&&u&&!s&&!c||r&&a&&u||!n&&u||!i)return 1;if(!r&&!o&&!c&&e1?n[i-1]:void 0,a=i>2?n[2]:void 0;for(o=e.length>3&&"function"==typeof o?(i--,o):void 0,a&&so(n[0],n[1],a)&&(o=i<3?void 0:o,i=1),t=ge(t);++r-1?i[o?t[a]:a]:void 0}}function ki(e){return Vi((function(t){var n=t.length,r=n,i=Dn.prototype.thru;for(e&&t.reverse();r--;){var a=t[r];if("function"!=typeof a)throw new ye(o);if(i&&!s&&"wrapper"==Gi(a))var s=new Dn([],!0)}for(r=s?r:n;++r1&&b.reverse(),f&&cs))return!1;var c=o.get(e),l=o.get(t);if(c&&l)return c==t&&l==e;var f=-1,d=!0,p=2&n?new jn:void 0;for(o.set(e,t),o.set(t,e);++f-1&&e%1==0&&e1?"& ":"")+t[r],t=t.join(n>2?", ":" "),e.replace(J,"{\n/* [wrapped with "+t+"] */\n")}(r,function(e,t){return st(s,(function(n){var r="_."+n[0];t&n[1]&&!ft(e,r)&&e.push(r)})),e.sort()}(function(e){var t=e.match(Z);return t?t[1].split(Q):[]}(r),n)))}function xo(e){var t=0,n=0;return function(){var r=un(),i=16-(r-n);if(n=r,i>0){if(++t>=800)return arguments[0]}else t=0;return e.apply(void 0,arguments)}}function qo(e,t){var n=-1,r=e.length,i=r-1;for(t=void 0===t?r:t;++n1?e[t-1]:void 0;return n="function"==typeof n?(e.pop(),n):void 0,Go(e,n)}));function ta(e){var t=Cn(e);return t.__chain__=!0,t}function na(e,t){return t(e)}var ra=Vi((function(e){var t=e.length,n=t?e[0]:0,r=this.__wrapped__,i=function(t){return Gn(t,e)};return!(t>1||this.__actions__.length)&&r instanceof An&&ao(n)?((r=r.slice(n,+n+(t?1:0))).__actions__.push({func:na,args:[i],thisArg:void 0}),new Dn(r,this.__chain__).thru((function(e){return t&&!e.length&&e.push(void 0),e}))):this.thru(i)}));var ia=bi((function(e,t,n){qe.call(e,n)?++e[n]:Yn(e,n,1)}));var oa=Ei(Ao),aa=Ei(Io);function sa(e,t){return(Ia(e)?st:er)(e,Ki(t,3))}function ua(e,t){return(Ia(e)?ut:tr)(e,Ki(t,3))}var ca=bi((function(e,t,n){qe.call(e,n)?e[n].push(t):Yn(e,n,[t])}));var la=Fr((function(e,t,n){var i=-1,o="function"==typeof t,a=Ma(e)?r(e.length):[];return er(e,(function(e){a[++i]=o?ot(t,e,n):yr(e,t,n)})),a})),fa=bi((function(e,t,n){Yn(e,n,t)}));function da(e,t){return(Ia(e)?pt:kr)(e,Ki(t,3))}var pa=bi((function(e,t,n){e[n?0:1].push(t)}),(function(){return[[],[]]}));var ha=Fr((function(e,t){if(null==e)return[];var n=t.length;return n>1&&so(e,t[0],t[1])?t=[]:n>2&&so(t[0],t[1],t[2])&&(t=[t[0]]),Ar(e,or(t,1),[])})),ga=Kt||function(){return Ye.Date.now()};function ma(e,t,n){return t=n?void 0:t,Ni(e,128,void 0,void 0,void 0,void 0,t=e&&null==t?e.length:t)}function va(e,t){var n;if("function"!=typeof t)throw new ye(o);return e=ns(e),function(){return--e>0&&(n=t.apply(this,arguments)),e<=1&&(t=void 0),n}}var ya=Fr((function(e,t,n){var r=1;if(n.length){var i=Bt(n,Xi(ya));r|=32}return Ni(e,r,t,n,i)})),ba=Fr((function(e,t,n){var r=3;if(n.length){var i=Bt(n,Xi(ba));r|=32}return Ni(t,r,e,n,i)}));function _a(e,t,n){var r,i,a,s,u,c,l=0,f=!1,d=!1,p=!0;if("function"!=typeof e)throw new ye(o);function h(t){var n=r,o=i;return r=i=void 0,l=t,s=e.apply(o,n)}function g(e){return l=e,u=_o(v,t),f?h(e):s}function m(e){var n=e-c;return void 0===c||n>=t||n<0||d&&e-l>=a}function v(){var e=ga();if(m(e))return y(e);u=_o(v,function(e){var n=t-(e-c);return d?sn(n,a-(e-l)):n}(e))}function y(e){return u=void 0,p&&r?h(e):(r=i=void 0,s)}function b(){var e=ga(),n=m(e);if(r=arguments,i=this,c=e,n){if(void 0===u)return g(c);if(d)return li(u),u=_o(v,t),h(c)}return void 0===u&&(u=_o(v,t)),s}return t=is(t)||0,Ba(n)&&(f=!!n.leading,a=(d="maxWait"in n)?an(is(n.maxWait)||0,t):a,p="trailing"in n?!!n.trailing:p),b.cancel=function(){void 0!==u&&li(u),l=0,r=c=i=u=void 0},b.flush=function(){return void 0===u?s:y(ga())},b}var wa=Fr((function(e,t){return Zn(e,1,t)})),$a=Fr((function(e,t,n){return Zn(e,is(t)||0,n)}));function xa(e,t){if("function"!=typeof e||null!=t&&"function"!=typeof t)throw new ye(o);var n=function(){var r=arguments,i=t?t.apply(this,r):r[0],o=n.cache;if(o.has(i))return o.get(i);var a=e.apply(this,r);return n.cache=o.set(i,a)||o,a};return n.cache=new(xa.Cache||Mn),n}function qa(e){if("function"!=typeof e)throw new ye(o);return function(){var t=arguments;switch(t.length){case 0:return!e.call(this);case 1:return!e.call(this,t[0]);case 2:return!e.call(this,t[0],t[1]);case 3:return!e.call(this,t[0],t[1],t[2])}return!e.apply(this,t)}}xa.Cache=Mn;var Sa=ui((function(e,t){var n=(t=1==t.length&&Ia(t[0])?pt(t[0],Tt(Ki())):pt(or(t,1),Tt(Ki()))).length;return Fr((function(r){for(var i=-1,o=sn(r.length,n);++i=t})),Aa=br(function(){return arguments}())?br:function(e){return Ha(e)&&qe.call(e,"callee")&&!Ge.call(e,"callee")},Ia=r.isArray,Pa=Qe?Tt(Qe):function(e){return Ha(e)&&pr(e)==x};function Ma(e){return null!=e&&Ua(e.length)&&!Na(e)}function ja(e){return Ha(e)&&Ma(e)}var Ra=tn||iu,Fa=et?Tt(et):function(e){return Ha(e)&&pr(e)==f};function isError(e){if(!Ha(e))return!1;var t=pr(e);return t==d||"[object DOMException]"==t||"string"==typeof e.message&&"string"==typeof e.name&&!Wa(e)}function Na(e){if(!Ba(e))return!1;var t=pr(e);return t==p||t==h||"[object AsyncFunction]"==t||"[object Proxy]"==t}function La(e){return"number"==typeof e&&e==ns(e)}function Ua(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=9007199254740991}function Ba(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}function Ha(e){return null!=e&&"object"==typeof e}var Va=tt?Tt(tt):function(e){return Ha(e)&&no(e)==g};function za(e){return"number"==typeof e||Ha(e)&&pr(e)==m}function Wa(e){if(!Ha(e)||pr(e)!=v)return!1;var t=ze(e);if(null===t)return!0;var n=qe.call(t,"constructor")&&t.constructor;return"function"==typeof n&&n instanceof n&&xe.call(n)==Ce}var Ya=nt?Tt(nt):function(e){return Ha(e)&&pr(e)==y};var Ga=rt?Tt(rt):function(e){return Ha(e)&&no(e)==b};function Xa(e){return"string"==typeof e||!Ia(e)&&Ha(e)&&pr(e)==_}function Ka(e){return"symbol"==typeof e||Ha(e)&&pr(e)==w}var Ja=it?Tt(it):function(e){return Ha(e)&&Ua(e.length)&&!!Le[pr(e)]};var Za=Pi(Er),Qa=Pi((function(e,t){return e<=t}));function es(e){if(!e)return[];if(Ma(e))return Xa(e)?Wt(e):vi(e);if(Ze&&e[Ze])return function(e){for(var t,n=[];!(t=e.next()).done;)n.push(t.value);return n}(e[Ze]());var t=no(e);return(t==g?Lt:t==b?Ht:Cs)(e)}function ts(e){return e?(e=is(e))===1/0||e===-1/0?17976931348623157e292*(e<0?-1:1):e==e?e:0:0===e?e:0}function ns(e){var t=ts(e),n=t%1;return t==t?n?t-n:t:0}function rs(e){return e?Xn(ns(e),0,4294967295):0}function is(e){if("number"==typeof e)return e;if(Ka(e))return NaN;if(Ba(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=Ba(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(G,"");var n=oe.test(e);return n||se.test(e)?Ve(e.slice(2),n?2:8):ie.test(e)?NaN:+e}function os(e){return yi(e,_s(e))}function as(e){return null==e?"":Jr(e)}var ss=_i((function(e,t){if(fo(t)||Ma(t))yi(t,bs(t),e);else for(var n in t)qe.call(t,n)&&Hn(e,n,t[n])})),us=_i((function(e,t){yi(t,_s(t),e)})),cs=_i((function(e,t,n,r){yi(t,_s(t),e,r)})),ls=_i((function(e,t,n,r){yi(t,bs(t),e,r)})),fs=Vi(Gn);var ds=Fr((function(e,t){e=ge(e);var n=-1,r=t.length,i=r>2?t[2]:void 0;for(i&&so(t[0],t[1],i)&&(r=1);++n1),t})),yi(e,Wi(e),n),r&&(n=Kn(n,7,Bi));for(var i=t.length;i--;)Qr(n,t[i]);return n}));var qs=Vi((function(e,t){return null==e?{}:function(e,t){return Ir(e,t,(function(t,n){return gs(e,n)}))}(e,t)}));function Ss(e,t){if(null==e)return{};var n=pt(Wi(e),(function(e){return[e]}));return t=Ki(t),Ir(e,n,(function(e,n){return t(e,n[0])}))}var Es=Fi(bs),ks=Fi(_s);function Cs(e){return null==e?[]:Dt(e,bs(e))}var Os=qi((function(e,t,n){return t=t.toLowerCase(),e+(n?Ts(t):t)}));function Ts(e){return Fs(as(e).toLowerCase())}function Ds(e){return(e=as(e))&&e.replace(ce,jt).replace(Ie,"")}var As=qi((function(e,t,n){return e+(n?"-":"")+t.toLowerCase()})),Is=qi((function(e,t,n){return e+(n?" ":"")+t.toLowerCase()})),Ps=xi("toLowerCase");var Ms=qi((function(e,t,n){return e+(n?"_":"")+t.toLowerCase()}));var js=qi((function(e,t,n){return e+(n?" ":"")+Fs(t)}));var Rs=qi((function(e,t,n){return e+(n?" ":"")+t.toUpperCase()})),Fs=xi("toUpperCase");function Ns(e,t,n){return e=as(e),void 0===(t=n?void 0:t)?function(e){return Re.test(e)}(e)?function(e){return e.match(Me)||[]}(e):function(e){return e.match(ee)||[]}(e):e.match(t)||[]}var Ls=Fr((function(e,t){try{return ot(e,void 0,t)}catch(e){return isError(e)?e:new de(e)}})),Us=Vi((function(e,t){return st(t,(function(t){t=Eo(t),Yn(e,t,ya(e[t],e))})),e}));function Bs(e){return function(){return e}}var Hs=ki(),Vs=ki(!0);function zs(e){return e}function Ws(e){return xr("function"==typeof e?e:Kn(e,1))}var Ys=Fr((function(e,t){return function(n){return yr(n,e,t)}})),Gs=Fr((function(e,t){return function(n){return yr(e,n,t)}}));function Xs(e,t,n){var r=bs(t),i=lr(t,r);null!=n||Ba(t)&&(i.length||!r.length)||(n=t,t=e,e=this,i=lr(t,bs(t)));var o=!(Ba(n)&&"chain"in n&&!n.chain),a=Na(e);return st(i,(function(n){var r=t[n];e[n]=r,a&&(e.prototype[n]=function(){var t=this.__chain__;if(o||t){var n=e(this.__wrapped__),i=n.__actions__=vi(this.__actions__);return i.push({func:r,args:arguments,thisArg:e}),n.__chain__=t,n}return r.apply(e,ht([this.value()],arguments))})})),e}function Ks(){}var Js=Di(pt),Zs=Di(ct),Qs=Di(vt);function eu(e){return uo(e)?St(Eo(e)):function(e){return function(t){return fr(t,e)}}(e)}var tu=Ii(),nu=Ii(!0);function ru(){return[]}function iu(){return!1}var ou=Ti((function(e,t){return e+t}),0),au=ji("ceil"),su=Ti((function(e,t){return e/t}),1),uu=ji("floor");var cu,lu=Ti((function(e,t){return e*t}),1),fu=ji("round"),du=Ti((function(e,t){return e-t}),0);return Cn.after=function(e,t){if("function"!=typeof t)throw new ye(o);return e=ns(e),function(){if(--e<1)return t.apply(this,arguments)}},Cn.ary=ma,Cn.assign=ss,Cn.assignIn=us,Cn.assignInWith=cs,Cn.assignWith=ls,Cn.at=fs,Cn.before=va,Cn.bind=ya,Cn.bindAll=Us,Cn.bindKey=ba,Cn.castArray=function(){if(!arguments.length)return[];var e=arguments[0];return Ia(e)?e:[e]},Cn.chain=ta,Cn.chunk=function(e,t,n){t=(n?so(e,t,n):void 0===t)?1:an(ns(t),0);var i=null==e?0:e.length;if(!i||t<1)return[];for(var o=0,a=0,s=r(Zt(i/t));oi?0:i+n),(r=void 0===r||r>i?i:ns(r))<0&&(r+=i),r=n>r?0:rs(r);n>>0)?(e=as(e))&&("string"==typeof t||null!=t&&!Ya(t))&&!(t=Jr(t))&&Nt(e)?ci(Wt(e),0,n):e.split(t,n):[]},Cn.spread=function(e,t){if("function"!=typeof e)throw new ye(o);return t=null==t?0:an(ns(t),0),Fr((function(n){var r=n[t],i=ci(n,0,t);return r&&ht(i,r),ot(e,this,i)}))},Cn.tail=function(e){var t=null==e?0:e.length;return t?zr(e,1,t):[]},Cn.take=function(e,t,n){return e&&e.length?zr(e,0,(t=n||void 0===t?1:ns(t))<0?0:t):[]},Cn.takeRight=function(e,t,n){var r=null==e?0:e.length;return r?zr(e,(t=r-(t=n||void 0===t?1:ns(t)))<0?0:t,r):[]},Cn.takeRightWhile=function(e,t){return e&&e.length?ti(e,Ki(t,3),!1,!0):[]},Cn.takeWhile=function(e,t){return e&&e.length?ti(e,Ki(t,3)):[]},Cn.tap=function(e,t){return t(e),e},Cn.throttle=function(e,t,n){var r=!0,i=!0;if("function"!=typeof e)throw new ye(o);return Ba(n)&&(r="leading"in n?!!n.leading:r,i="trailing"in n?!!n.trailing:i),_a(e,t,{leading:r,maxWait:t,trailing:i})},Cn.thru=na,Cn.toArray=es,Cn.toPairs=Es,Cn.toPairsIn=ks,Cn.toPath=function(e){return Ia(e)?pt(e,Eo):Ka(e)?[e]:vi(So(as(e)))},Cn.toPlainObject=os,Cn.transform=function(e,t,n){var r=Ia(e),i=r||Ra(e)||Ja(e);if(t=Ki(t,4),null==n){var o=e&&e.constructor;n=i?r?new o:[]:Ba(e)&&Na(o)?On(ze(e)):{}}return(i?st:ur)(e,(function(e,r,i){return t(n,e,r,i)})),n},Cn.unary=function(e){return ma(e,1)},Cn.union=Vo,Cn.unionBy=zo,Cn.unionWith=Wo,Cn.uniq=function(e){return e&&e.length?Zr(e):[]},Cn.uniqBy=function(e,t){return e&&e.length?Zr(e,Ki(t,2)):[]},Cn.uniqWith=function(e,t){return t="function"==typeof t?t:void 0,e&&e.length?Zr(e,void 0,t):[]},Cn.unset=function(e,t){return null==e||Qr(e,t)},Cn.unzip=Yo,Cn.unzipWith=Go,Cn.update=function(e,t,n){return null==e?e:ei(e,t,ai(n))},Cn.updateWith=function(e,t,n,r){return r="function"==typeof r?r:void 0,null==e?e:ei(e,t,ai(n),r)},Cn.values=Cs,Cn.valuesIn=function(e){return null==e?[]:Dt(e,_s(e))},Cn.without=Xo,Cn.words=Ns,Cn.wrap=function(e,t){return Ea(ai(t),e)},Cn.xor=Ko,Cn.xorBy=Jo,Cn.xorWith=Zo,Cn.zip=Qo,Cn.zipObject=function(e,t){return ii(e||[],t||[],Hn)},Cn.zipObjectDeep=function(e,t){return ii(e||[],t||[],Ur)},Cn.zipWith=ea,Cn.entries=Es,Cn.entriesIn=ks,Cn.extend=us,Cn.extendWith=cs,Xs(Cn,Cn),Cn.add=ou,Cn.attempt=Ls,Cn.camelCase=Os,Cn.capitalize=Ts,Cn.ceil=au,Cn.clamp=function(e,t,n){return void 0===n&&(n=t,t=void 0),void 0!==n&&(n=(n=is(n))==n?n:0),void 0!==t&&(t=(t=is(t))==t?t:0),Xn(is(e),t,n)},Cn.clone=function(e){return Kn(e,4)},Cn.cloneDeep=function(e){return Kn(e,5)},Cn.cloneDeepWith=function(e,t){return Kn(e,5,t="function"==typeof t?t:void 0)},Cn.cloneWith=function(e,t){return Kn(e,4,t="function"==typeof t?t:void 0)},Cn.conformsTo=function(e,t){return null==t||Jn(e,t,bs(t))},Cn.deburr=Ds,Cn.defaultTo=function(e,t){return null==e||e!=e?t:e},Cn.divide=su,Cn.endsWith=function(e,t,n){e=as(e),t=Jr(t);var r=e.length,i=n=void 0===n?r:Xn(ns(n),0,r);return(n-=t.length)>=0&&e.slice(n,i)==t},Cn.eq=Oa,Cn.escape=function(e){return(e=as(e))&&N.test(e)?e.replace(R,Rt):e},Cn.escapeRegExp=function(e){return(e=as(e))&&Y.test(e)?e.replace(W,"\\$&"):e},Cn.every=function(e,t,n){var r=Ia(e)?ct:nr;return n&&so(e,t,n)&&(t=void 0),r(e,Ki(t,3))},Cn.find=oa,Cn.findIndex=Ao,Cn.findKey=function(e,t){return bt(e,Ki(t,3),ur)},Cn.findLast=aa,Cn.findLastIndex=Io,Cn.findLastKey=function(e,t){return bt(e,Ki(t,3),cr)},Cn.floor=uu,Cn.forEach=sa,Cn.forEachRight=ua,Cn.forIn=function(e,t){return null==e?e:ar(e,Ki(t,3),_s)},Cn.forInRight=function(e,t){return null==e?e:sr(e,Ki(t,3),_s)},Cn.forOwn=function(e,t){return e&&ur(e,Ki(t,3))},Cn.forOwnRight=function(e,t){return e&&cr(e,Ki(t,3))},Cn.get=hs,Cn.gt=Ta,Cn.gte=Da,Cn.has=function(e,t){return null!=e&&ro(e,t,gr)},Cn.hasIn=gs,Cn.head=Mo,Cn.identity=zs,Cn.includes=function(e,t,n,r){e=Ma(e)?e:Cs(e),n=n&&!r?ns(n):0;var i=e.length;return n<0&&(n=an(i+n,0)),Xa(e)?n<=i&&e.indexOf(t,n)>-1:!!i&&wt(e,t,n)>-1},Cn.indexOf=function(e,t,n){var r=null==e?0:e.length;if(!r)return-1;var i=null==n?0:ns(n);return i<0&&(i=an(r+i,0)),wt(e,t,i)},Cn.inRange=function(e,t,n){return t=ts(t),void 0===n?(n=t,t=0):n=ts(n),function(e,t,n){return e>=sn(t,n)&&e=-9007199254740991&&e<=9007199254740991},Cn.isSet=Ga,Cn.isString=Xa,Cn.isSymbol=Ka,Cn.isTypedArray=Ja,Cn.isUndefined=function(e){return void 0===e},Cn.isWeakMap=function(e){return Ha(e)&&no(e)==$},Cn.isWeakSet=function(e){return Ha(e)&&"[object WeakSet]"==pr(e)},Cn.join=function(e,t){return null==e?"":rn.call(e,t)},Cn.kebabCase=As,Cn.last=No,Cn.lastIndexOf=function(e,t,n){var r=null==e?0:e.length;if(!r)return-1;var i=r;return void 0!==n&&(i=(i=ns(n))<0?an(r+i,0):sn(i,r-1)),t==t?function(e,t,n){for(var r=n+1;r--;)if(e[r]===t)return r;return r}(e,t,i):_t(e,xt,i,!0)},Cn.lowerCase=Is,Cn.lowerFirst=Ps,Cn.lt=Za,Cn.lte=Qa,Cn.max=function(e){return e&&e.length?rr(e,zs,hr):void 0},Cn.maxBy=function(e,t){return e&&e.length?rr(e,Ki(t,2),hr):void 0},Cn.mean=function(e){return qt(e,zs)},Cn.meanBy=function(e,t){return qt(e,Ki(t,2))},Cn.min=function(e){return e&&e.length?rr(e,zs,Er):void 0},Cn.minBy=function(e,t){return e&&e.length?rr(e,Ki(t,2),Er):void 0},Cn.stubArray=ru,Cn.stubFalse=iu,Cn.stubObject=function(){return{}},Cn.stubString=function(){return""},Cn.stubTrue=function(){return!0},Cn.multiply=lu,Cn.nth=function(e,t){return e&&e.length?Dr(e,ns(t)):void 0},Cn.noConflict=function(){return Ye._===this&&(Ye._=Oe),this},Cn.noop=Ks,Cn.now=ga,Cn.pad=function(e,t,n){e=as(e);var r=(t=ns(t))?zt(e):0;if(!t||r>=t)return e;var i=(t-r)/2;return Ai(Qt(i),n)+e+Ai(Zt(i),n)},Cn.padEnd=function(e,t,n){e=as(e);var r=(t=ns(t))?zt(e):0;return t&&rt){var r=e;e=t,t=r}if(n||e%1||t%1){var i=ln();return sn(e+i*(t-e+He("1e-"+((i+"").length-1))),t)}return jr(e,t)},Cn.reduce=function(e,t,n){var r=Ia(e)?gt:kt,i=arguments.length<3;return r(e,Ki(t,4),n,i,er)},Cn.reduceRight=function(e,t,n){var r=Ia(e)?mt:kt,i=arguments.length<3;return r(e,Ki(t,4),n,i,tr)},Cn.repeat=function(e,t,n){return t=(n?so(e,t,n):void 0===t)?1:ns(t),Rr(as(e),t)},Cn.replace=function(){var e=arguments,t=as(e[0]);return e.length<3?t:t.replace(e[1],e[2])},Cn.result=function(e,t,n){var r=-1,i=(t=si(t,e)).length;for(i||(i=1,e=void 0);++r9007199254740991)return[];var n=4294967295,r=sn(e,4294967295);e-=4294967295;for(var i=Ot(r,t=Ki(t));++n=o)return e;var s=n-zt(r);if(s<1)return r;var u=a?ci(a,0,s).join(""):e.slice(0,s);if(void 0===i)return u+r;if(a&&(s+=u.length-s),Ya(i)){if(e.slice(s).search(i)){var c,l=u;for(i.global||(i=me(i.source,as(re.exec(i))+"g")),i.lastIndex=0;c=i.exec(l);)var f=c.index;u=u.slice(0,void 0===f?s:f)}}else if(e.indexOf(Jr(i),s)!=s){var d=u.lastIndexOf(i);d>-1&&(u=u.slice(0,d))}return u+r},Cn.unescape=function(e){return(e=as(e))&&F.test(e)?e.replace(j,Yt):e},Cn.uniqueId=function(e){var t=++Se;return as(e)+t},Cn.upperCase=Rs,Cn.upperFirst=Fs,Cn.each=sa,Cn.eachRight=ua,Cn.first=Mo,Xs(Cn,(cu={},ur(Cn,(function(e,t){qe.call(Cn.prototype,t)||(cu[t]=e)})),cu),{chain:!1}),Cn.VERSION="4.17.19",st(["bind","bindKey","curry","curryRight","partial","partialRight"],(function(e){Cn[e].placeholder=Cn})),st(["drop","take"],(function(e,t){An.prototype[e]=function(n){n=void 0===n?1:an(ns(n),0);var r=this.__filtered__&&!t?new An(this):this.clone();return r.__filtered__?r.__takeCount__=sn(n,r.__takeCount__):r.__views__.push({size:sn(n,4294967295),type:e+(r.__dir__<0?"Right":"")}),r},An.prototype[e+"Right"]=function(t){return this.reverse()[e](t).reverse()}})),st(["filter","map","takeWhile"],(function(e,t){var n=t+1,r=1==n||3==n;An.prototype[e]=function(e){var t=this.clone();return t.__iteratees__.push({iteratee:Ki(e,3),type:n}),t.__filtered__=t.__filtered__||r,t}})),st(["head","last"],(function(e,t){var n="take"+(t?"Right":"");An.prototype[e]=function(){return this[n](1).value()[0]}})),st(["initial","tail"],(function(e,t){var n="drop"+(t?"":"Right");An.prototype[e]=function(){return this.__filtered__?new An(this):this[n](1)}})),An.prototype.compact=function(){return this.filter(zs)},An.prototype.find=function(e){return this.filter(e).head()},An.prototype.findLast=function(e){return this.reverse().find(e)},An.prototype.invokeMap=Fr((function(e,t){return"function"==typeof e?new An(this):this.map((function(n){return yr(n,e,t)}))})),An.prototype.reject=function(e){return this.filter(qa(Ki(e)))},An.prototype.slice=function(e,t){e=ns(e);var n=this;return n.__filtered__&&(e>0||t<0)?new An(n):(e<0?n=n.takeRight(-e):e&&(n=n.drop(e)),void 0!==t&&(n=(t=ns(t))<0?n.dropRight(-t):n.take(t-e)),n)},An.prototype.takeRightWhile=function(e){return this.reverse().takeWhile(e).reverse()},An.prototype.toArray=function(){return this.take(4294967295)},ur(An.prototype,(function(e,t){var n=/^(?:filter|find|map|reject)|While$/.test(t),r=/^(?:head|last)$/.test(t),i=Cn[r?"take"+("last"==t?"Right":""):t],o=r||/^find/.test(t);i&&(Cn.prototype[t]=function(){var t=this.__wrapped__,a=r?[1]:arguments,s=t instanceof An,u=a[0],c=s||Ia(t),l=function(e){var t=i.apply(Cn,ht([e],a));return r&&f?t[0]:t};c&&n&&"function"==typeof u&&1!=u.length&&(s=c=!1);var f=this.__chain__,d=!!this.__actions__.length,p=o&&!f,h=s&&!d;if(!o&&c){t=h?t:new An(this);var g=e.apply(t,a);return g.__actions__.push({func:na,args:[l],thisArg:void 0}),new Dn(g,f)}return p&&h?e.apply(this,a):(g=this.thru(l),p?r?g.value()[0]:g.value():g)})})),st(["pop","push","shift","sort","splice","unshift"],(function(e){var t=be[e],n=/^(?:push|sort|unshift)$/.test(e)?"tap":"thru",r=/^(?:pop|shift)$/.test(e);Cn.prototype[e]=function(){var e=arguments;if(r&&!this.__chain__){var i=this.value();return t.apply(Ia(i)?i:[],e)}return this[n]((function(n){return t.apply(Ia(n)?n:[],e)}))}})),ur(An.prototype,(function(e,t){var n=Cn[t];if(n){var r=n.name+"";qe.call(bn,r)||(bn[r]=[]),bn[r].push({name:t,func:n})}})),bn[Ci(void 0,2).name]=[{name:"wrapper",func:void 0}],An.prototype.clone=function(){var e=new An(this.__wrapped__);return e.__actions__=vi(this.__actions__),e.__dir__=this.__dir__,e.__filtered__=this.__filtered__,e.__iteratees__=vi(this.__iteratees__),e.__takeCount__=this.__takeCount__,e.__views__=vi(this.__views__),e},An.prototype.reverse=function(){if(this.__filtered__){var e=new An(this);e.__dir__=-1,e.__filtered__=!0}else(e=this.clone()).__dir__*=-1;return e},An.prototype.value=function(){var e=this.__wrapped__.value(),t=this.__dir__,n=Ia(e),r=t<0,i=n?e.length:0,o=function(e,t,n){var r=-1,i=n.length;for(;++r=this.__values__.length;return{done:e,value:e?void 0:this.__values__[this.__index__++]}},Cn.prototype.plant=function(e){for(var t,n=this;n instanceof Tn;){var r=Co(n);r.__index__=0,r.__values__=void 0,t?i.__wrapped__=r:t=r;var i=r;n=n.__wrapped__}return i.__wrapped__=e,t},Cn.prototype.reverse=function(){var e=this.__wrapped__;if(e instanceof An){var t=e;return this.__actions__.length&&(t=new An(this)),(t=t.reverse()).__actions__.push({func:na,args:[Ho],thisArg:void 0}),new Dn(t,this.__chain__)}return this.thru(Ho)},Cn.prototype.toJSON=Cn.prototype.valueOf=Cn.prototype.value=function(){return ni(this.__wrapped__,this.__actions__)},Cn.prototype.first=Cn.prototype.head,Ze&&(Cn.prototype[Ze]=function(){return this}),Cn}();Ye._=Gt,void 0===(i=function(){return Gt}.call(t,n,t,r))||(r.exports=i)}).call(this)}).call(this,n(44),n(77)(e))},function(e,t,n){"use strict";var r=n(74),i=n(162),o=n(136),a=n(82),s=n(217),u=a.set,c=a.getterFor("Array Iterator");e.exports=s(Array,"Array",(function(e,t){u(this,{type:"Array Iterator",target:r(e),index:0,kind:t})}),(function(){var e=c(this),t=e.target,n=e.kind,r=e.index++;return!t||r>=t.length?(e.target=void 0,{value:void 0,done:!0}):"keys"==n?{value:r,done:!1}:"values"==n?{value:t[r],done:!1}:{value:[r,t[r]],done:!1}}),"values"),o.Arguments=o.Array,i("keys"),i("values"),i("entries")},function(e,t,n){var r=n(43),i=n(314),o=n(10),a=n(76),s=n(37),u=s("iterator"),c=s("toStringTag"),l=o.values;for(var f in i){var d=r[f],p=d&&d.prototype;if(p){if(p[u]!==l)try{a(p,u,l)}catch(e){p[u]=l}if(p[c]||a(p,c,f),i[f])for(var h in o)if(p[h]!==o[h])try{a(p,h,o[h])}catch(e){p[h]=o[h]}}}},function(e,t,n){"use strict";var r=n(28),i=n(43),o=n(83),a=n(88),s=n(55),u=n(214),c=n(301),l=n(31),f=n(56),d=n(139),p=n(50),h=n(51),g=n(65),m=n(74),v=n(152),y=n(112),b=n(113),_=n(135),w=n(157),$=n(337),x=n(212),q=n(96),S=n(61),E=n(153),k=n(76),C=n(64),O=n(210),T=n(155),D=n(133),A=n(156),I=n(37),P=n(338),M=n(339),j=n(97),R=n(82),F=n(138).forEach,N=T("hidden"),L=I("toPrimitive"),U=R.set,B=R.getterFor("Symbol"),H=Object.prototype,V=i.Symbol,z=o("JSON","stringify"),W=q.f,Y=S.f,G=$.f,X=E.f,K=O("symbols"),J=O("op-symbols"),Z=O("string-to-symbol-registry"),Q=O("symbol-to-string-registry"),ee=O("wks"),te=i.QObject,ne=!te||!te.prototype||!te.prototype.findChild,re=s&&l((function(){return 7!=b(Y({},"a",{get:function(){return Y(this,"a",{value:7}).a}})).a}))?function(e,t,n){var r=W(H,t);r&&delete H[t],Y(e,t,n),r&&e!==H&&Y(H,t,r)}:Y,ie=function(e,t){var n=K[e]=b(V.prototype);return U(n,{type:"Symbol",tag:e,description:t}),s||(n.description=t),n},oe=c?function(e){return"symbol"==typeof e}:function(e){return Object(e)instanceof V},ae=function(e,t,n){e===H&&ae(J,t,n),h(e);var r=v(t,!0);return h(n),f(K,r)?(n.enumerable?(f(e,N)&&e[N][r]&&(e[N][r]=!1),n=b(n,{enumerable:y(0,!1)})):(f(e,N)||Y(e,N,y(1,{})),e[N][r]=!0),re(e,r,n)):Y(e,r,n)},se=function(e,t){h(e);var n=m(t),r=_(n).concat(fe(n));return F(r,(function(t){s&&!ue.call(n,t)||ae(e,t,n[t])})),e},ue=function(e){var t=v(e,!0),n=X.call(this,t);return!(this===H&&f(K,t)&&!f(J,t))&&(!(n||!f(this,t)||!f(K,t)||f(this,N)&&this[N][t])||n)},ce=function(e,t){var n=m(e),r=v(t,!0);if(n!==H||!f(K,r)||f(J,r)){var i=W(n,r);return!i||!f(K,r)||f(n,N)&&n[N][r]||(i.enumerable=!0),i}},le=function(e){var t=G(m(e)),n=[];return F(t,(function(e){f(K,e)||f(D,e)||n.push(e)})),n},fe=function(e){var t=e===H,n=G(t?J:m(e)),r=[];return F(n,(function(e){!f(K,e)||t&&!f(H,e)||r.push(K[e])})),r};(u||(C((V=function(){if(this instanceof V)throw TypeError("Symbol is not a constructor");var e=arguments.length&&void 0!==arguments[0]?String(arguments[0]):void 0,t=A(e),n=function(e){this===H&&n.call(J,e),f(this,N)&&f(this[N],t)&&(this[N][t]=!1),re(this,t,y(1,e))};return s&&ne&&re(H,t,{configurable:!0,set:n}),ie(t,e)}).prototype,"toString",(function(){return B(this).tag})),C(V,"withoutSetter",(function(e){return ie(A(e),e)})),E.f=ue,S.f=ae,q.f=ce,w.f=$.f=le,x.f=fe,P.f=function(e){return ie(I(e),e)},s&&(Y(V.prototype,"description",{configurable:!0,get:function(){return B(this).description}}),a||C(H,"propertyIsEnumerable",ue,{unsafe:!0}))),r({global:!0,wrap:!0,forced:!u,sham:!u},{Symbol:V}),F(_(ee),(function(e){M(e)})),r({target:"Symbol",stat:!0,forced:!u},{for:function(e){var t=String(e);if(f(Z,t))return Z[t];var n=V(t);return Z[t]=n,Q[n]=t,n},keyFor:function(e){if(!oe(e))throw TypeError(e+" is not a symbol");if(f(Q,e))return Q[e]},useSetter:function(){ne=!0},useSimple:function(){ne=!1}}),r({target:"Object",stat:!0,forced:!u,sham:!s},{create:function(e,t){return void 0===t?b(e):se(b(e),t)},defineProperty:ae,defineProperties:se,getOwnPropertyDescriptor:ce}),r({target:"Object",stat:!0,forced:!u},{getOwnPropertyNames:le,getOwnPropertySymbols:fe}),r({target:"Object",stat:!0,forced:l((function(){x.f(1)}))},{getOwnPropertySymbols:function(e){return x.f(g(e))}}),z)&&r({target:"JSON",stat:!0,forced:!u||l((function(){var e=V();return"[null]"!=z([e])||"{}"!=z({a:e})||"{}"!=z(Object(e))}))},{stringify:function(e,t,n){for(var r,i=[e],o=1;arguments.length>o;)i.push(arguments[o++]);if(r=t,(p(t)||void 0!==e)&&!oe(e))return d(t)||(t=function(e,t){if("function"==typeof r&&(t=r.call(this,e,t)),!oe(t))return t}),i[1]=t,z.apply(null,i)}});V.prototype[L]||k(V.prototype,L,V.prototype.valueOf),j(V,"Symbol"),D[N]=!0},function(e,t,n){"use strict";var r=n(28),i=n(50),o=n(139),a=n(134),s=n(62),u=n(74),c=n(141),l=n(37),f=n(140),d=n(100),p=f("slice"),h=d("slice",{ACCESSORS:!0,0:0,1:2}),g=l("species"),m=[].slice,v=Math.max;r({target:"Array",proto:!0,forced:!p||!h},{slice:function(e,t){var n,r,l,f=u(this),d=s(f.length),p=a(e,d),h=a(void 0===t?d:t,d);if(o(f)&&("function"!=typeof(n=f.constructor)||n!==Array&&!o(n.prototype)?i(n)&&null===(n=n[g])&&(n=void 0):n=void 0,n===Array||void 0===n))return m.call(f,p,h);for(r=new(void 0===n?Array:n)(v(h-p,0)),l=0;p=51||!i((function(){var e=[];return e[h]=!1,e.concat()[0]!==e})),m=f("concat"),v=function(e){if(!a(e))return!1;var t=e[h];return void 0!==t?!!t:o(e)};r({target:"Array",proto:!0,forced:!g||!m},{concat:function(e){var t,n,r,i,o,a=s(this),f=l(a,0),d=0;for(t=-1,r=arguments.length;t9007199254740991)throw TypeError("Maximum allowed index exceeded");for(n=0;n=9007199254740991)throw TypeError("Maximum allowed index exceeded");c(f,d++,o)}return f.length=d,f}})},function(e,t,n){"use strict";var r=n(28),i=n(159);r({target:"RegExp",proto:!0,forced:/./.exec!==i},{exec:i})},,,function(e,t,n){"use strict";var r=n(28),i=n(138).filter,o=n(140),a=n(100),s=o("filter"),u=a("filter");r({target:"Array",proto:!0,forced:!s||!u},{filter:function(e){return i(this,e,arguments.length>1?arguments[1]:void 0)}})},function(e,t,n){"use strict";var r=n(28),i=n(138).map,o=n(140),a=n(100),s=o("map"),u=a("map");r({target:"Array",proto:!0,forced:!s||!u},{map:function(e){return i(this,e,arguments.length>1?arguments[1]:void 0)}})},,,,function(e,t,n){var r=n(43),i=n(314),o=n(470),a=n(76);for(var s in i){var u=r[s],c=u&&u.prototype;if(c&&c.forEach!==o)try{a(c,"forEach",o)}catch(e){c.forEach=o}}},function(e,t,n){var r=n(28),i=n(65),o=n(135);r({target:"Object",stat:!0,forced:n(31)((function(){o(1)}))},{keys:function(e){return o(i(e))}})},function(e,t,n){var r=n(43),i=n(96).f,o=n(76),a=n(64),s=n(208),u=n(295),c=n(158);e.exports=function(e,t){var n,l,f,d,p,h=e.target,g=e.global,m=e.stat;if(n=g?r:m?r[h]||s(h,{}):(r[h]||{}).prototype)for(l in t){if(d=t[l],f=e.noTargetGet?(p=i(n,l))&&p.value:n[l],!c(g?l:h+(m?".":"#")+l,e.forced)&&void 0!==f){if(typeof d==typeof f)continue;u(d,f)}(e.sham||f&&f.sham)&&o(d,"sham",!0),a(n,l,d,e)}}},function(e,t,n){"use strict";var r,i,o,a,s=n(28),u=n(88),c=n(43),l=n(83),f=n(329),d=n(64),p=n(223),h=n(97),g=n(224),m=n(50),v=n(99),y=n(137),b=n(81),_=n(209),w=n(219),$=n(222),x=n(227),q=n(330).set,S=n(476),E=n(332),k=n(477),C=n(333),O=n(478),T=n(82),D=n(158),A=n(37),I=n(226),P=A("species"),M="Promise",j=T.get,R=T.set,F=T.getterFor(M),N=f,L=c.TypeError,U=c.document,B=c.process,H=l("fetch"),V=C.f,z=V,W="process"==b(B),Y=!!(U&&U.createEvent&&c.dispatchEvent),G=D(M,(function(){if(!(_(N)!==String(N))){if(66===I)return!0;if(!W&&"function"!=typeof PromiseRejectionEvent)return!0}if(u&&!N.prototype.finally)return!0;if(I>=51&&/native code/.test(N))return!1;var e=N.resolve(1),t=function(e){e((function(){}),(function(){}))};return(e.constructor={})[P]=t,!(e.then((function(){}))instanceof t)})),X=G||!$((function(e){N.all(e).catch((function(){}))})),K=function(e){var t;return!(!m(e)||"function"!=typeof(t=e.then))&&t},J=function(e,t,n){if(!t.notified){t.notified=!0;var r=t.reactions;S((function(){for(var i=t.value,o=1==t.state,a=0;r.length>a;){var s,u,c,l=r[a++],f=o?l.ok:l.fail,d=l.resolve,p=l.reject,h=l.domain;try{f?(o||(2===t.rejection&&te(e,t),t.rejection=1),!0===f?s=i:(h&&h.enter(),s=f(i),h&&(h.exit(),c=!0)),s===l.promise?p(L("Promise-chain cycle")):(u=K(s))?u.call(s,d,p):d(s)):p(i)}catch(e){h&&!c&&h.exit(),p(e)}}t.reactions=[],t.notified=!1,n&&!t.rejection&&Q(e,t)}))}},Z=function(e,t,n){var r,i;Y?((r=U.createEvent("Event")).promise=t,r.reason=n,r.initEvent(e,!1,!0),c.dispatchEvent(r)):r={promise:t,reason:n},(i=c["on"+e])?i(r):"unhandledrejection"===e&&k("Unhandled promise rejection",n)},Q=function(e,t){q.call(c,(function(){var n,r=t.value;if(ee(t)&&(n=O((function(){W?B.emit("unhandledRejection",r,e):Z("unhandledrejection",e,r)})),t.rejection=W||ee(t)?2:1,n.error))throw n.value}))},ee=function(e){return 1!==e.rejection&&!e.parent},te=function(e,t){q.call(c,(function(){W?B.emit("rejectionHandled",e):Z("rejectionhandled",e,t.value)}))},ne=function(e,t,n,r){return function(i){e(t,n,i,r)}},re=function(e,t,n,r){t.done||(t.done=!0,r&&(t=r),t.value=n,t.state=2,J(e,t,!0))},ie=function(e,t,n,r){if(!t.done){t.done=!0,r&&(t=r);try{if(e===n)throw L("Promise can't be resolved itself");var i=K(n);i?S((function(){var r={done:!1};try{i.call(n,ne(ie,e,r,t),ne(re,e,r,t))}catch(n){re(e,r,n,t)}})):(t.value=n,t.state=1,J(e,t,!1))}catch(n){re(e,{done:!1},n,t)}}};G&&(N=function(e){y(this,N,M),v(e),r.call(this);var t=j(this);try{e(ne(ie,this,t),ne(re,this,t))}catch(e){re(this,t,e)}},(r=function(e){R(this,{type:M,done:!1,notified:!1,parent:!1,reactions:[],rejection:!1,state:0,value:void 0})}).prototype=p(N.prototype,{then:function(e,t){var n=F(this),r=V(x(this,N));return r.ok="function"!=typeof e||e,r.fail="function"==typeof t&&t,r.domain=W?B.domain:void 0,n.parent=!0,n.reactions.push(r),0!=n.state&&J(this,n,!1),r.promise},catch:function(e){return this.then(void 0,e)}}),i=function(){var e=new r,t=j(e);this.promise=e,this.resolve=ne(ie,e,t),this.reject=ne(re,e,t)},C.f=V=function(e){return e===N||e===o?new i(e):z(e)},u||"function"!=typeof f||(a=f.prototype.then,d(f.prototype,"then",(function(e,t){var n=this;return new N((function(e,t){a.call(n,e,t)})).then(e,t)}),{unsafe:!0}),"function"==typeof H&&s({global:!0,enumerable:!0,forced:!0},{fetch:function(e){return E(N,H.apply(c,arguments))}}))),s({global:!0,wrap:!0,forced:G},{Promise:N}),h(N,M,!1,!0),g(M),o=l(M),s({target:M,stat:!0,forced:G},{reject:function(e){var t=V(this);return t.reject.call(void 0,e),t.promise}}),s({target:M,stat:!0,forced:u||G},{resolve:function(e){return E(u&&this===o?N:this,e)}}),s({target:M,stat:!0,forced:X},{all:function(e){var t=this,n=V(t),r=n.resolve,i=n.reject,o=O((function(){var n=v(t.resolve),o=[],a=0,s=1;w(e,(function(e){var u=a++,c=!1;o.push(void 0),s++,n.call(t,e).then((function(e){c||(c=!0,o[u]=e,--s||r(o))}),i)})),--s||r(o)}));return o.error&&i(o.value),n.promise},race:function(e){var t=this,n=V(t),r=n.reject,i=O((function(){var i=v(t.resolve);w(e,(function(e){i.call(t,e).then(n.resolve,r)}))}));return i.error&&r(i.value),n.promise}})},function(e,t,n){"use strict";var r=n(28),i=n(138).find,o=n(162),a=n(100),s=!0,u=a("find");"find"in[]&&Array(1).find((function(){s=!1})),r({target:"Array",proto:!0,forced:s||!u},{find:function(e){return i(this,e,arguments.length>1?arguments[1]:void 0)}}),o("find")},function(e,t){e.exports=function(e){try{return!!e()}catch(e){return!0}}},function(e,t,n){"use strict";var r=n(160),i=n(228),o=n(51),a=n(68),s=n(227),u=n(215),c=n(62),l=n(161),f=n(159),d=n(31),p=[].push,h=Math.min,g=!d((function(){return!RegExp(4294967295,"y")}));r("split",2,(function(e,t,n){var r;return r="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1).length||2!="ab".split(/(?:ab)*/).length||4!=".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length?function(e,n){var r=String(a(this)),o=void 0===n?4294967295:n>>>0;if(0===o)return[];if(void 0===e)return[r];if(!i(e))return t.call(r,e,o);for(var s,u,c,l=[],d=(e.ignoreCase?"i":"")+(e.multiline?"m":"")+(e.unicode?"u":"")+(e.sticky?"y":""),h=0,g=new RegExp(e.source,d+"g");(s=f.call(g,r))&&!((u=g.lastIndex)>h&&(l.push(r.slice(h,s.index)),s.length>1&&s.index=o));)g.lastIndex===s.index&&g.lastIndex++;return h===r.length?!c&&g.test("")||l.push(""):l.push(r.slice(h)),l.length>o?l.slice(0,o):l}:"0".split(void 0,0).length?function(e,n){return void 0===e&&0===n?[]:t.call(this,e,n)}:t,[function(t,n){var i=a(this),o=null==t?void 0:t[e];return void 0!==o?o.call(t,i,n):r.call(String(i),t,n)},function(e,i){var a=n(r,e,this,i,r!==t);if(a.done)return a.value;var f=o(e),d=String(this),p=s(f,RegExp),m=f.unicode,v=(f.ignoreCase?"i":"")+(f.multiline?"m":"")+(f.unicode?"u":"")+(g?"y":"g"),y=new p(g?f:"^(?:"+f.source+")",v),b=void 0===i?4294967295:i>>>0;if(0===b)return[];if(0===d.length)return null===l(y,d)?[d]:[];for(var _=0,w=0,$=[];w>>0,r=0;r0)for(n=0;n=0?n?"+":"":"-")+Math.pow(10,Math.max(0,i)).toString().substr(1)+r}var N=/(\[[^\[]*\])|(\\)?([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,L=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,U={},B={};function H(e,t,n,r){var i=r;"string"==typeof r&&(i=function(){return this[r]()}),e&&(B[e]=i),t&&(B[t[0]]=function(){return F(i.apply(this,arguments),t[1],t[2])}),n&&(B[n]=function(){return this.localeData().ordinal(i.apply(this,arguments),e)})}function V(e,t){return e.isValid()?(t=z(t,e.localeData()),U[t]=U[t]||function(e){var t,n,r,i=e.match(N);for(t=0,n=i.length;t=0&&L.test(e);)e=e.replace(L,r),L.lastIndex=0,n-=1;return e}var W=/\d/,Y=/\d\d/,G=/\d{3}/,X=/\d{4}/,K=/[+-]?\d{6}/,J=/\d\d?/,Z=/\d\d\d\d?/,Q=/\d\d\d\d\d\d?/,ee=/\d{1,3}/,te=/\d{1,4}/,ne=/[+-]?\d{1,6}/,re=/\d+/,ie=/[+-]?\d+/,oe=/Z|[+-]\d\d:?\d\d/gi,ae=/Z|[+-]\d\d(?::?\d\d)?/gi,se=/[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,ue={};function ce(e,t,n){ue[e]=O(t)?t:function(e,r){return e&&n?n:t}}function le(e,t){return l(ue,e)?ue[e](t._strict,t._locale):new RegExp(fe(e.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,(function(e,t,n,r,i){return t||n||r||i}))))}function fe(e){return e.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}var de={};function pe(e,t){var n,r=t;for("string"==typeof e&&(e=[e]),s(t)&&(r=function(e,n){n[t]=$(e)}),n=0;n68?1900:2e3)};var ye,be=_e("FullYear",!0);function _e(e,t){return function(n){return null!=n?($e(this,e,n),r.updateOffset(this,t),this):we(this,e)}}function we(e,t){return e.isValid()?e._d["get"+(e._isUTC?"UTC":"")+t]():NaN}function $e(e,t,n){e.isValid()&&!isNaN(n)&&("FullYear"===t&&ve(e.year())&&1===e.month()&&29===e.date()?e._d["set"+(e._isUTC?"UTC":"")+t](n,e.month(),xe(n,e.month())):e._d["set"+(e._isUTC?"UTC":"")+t](n))}function xe(e,t){if(isNaN(e)||isNaN(t))return NaN;var n,r=(t%(n=12)+n)%n;return e+=(t-r)/12,1===r?ve(e)?29:28:31-r%7%2}ye=Array.prototype.indexOf?Array.prototype.indexOf:function(e){var t;for(t=0;t=0?(s=new Date(e+400,t,n,r,i,o,a),isFinite(s.getFullYear())&&s.setFullYear(e)):s=new Date(e,t,n,r,i,o,a),s}function Pe(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 Me(e,t,n){var r=7+t-n;return-(7+Pe(e,0,r).getUTCDay()-t)%7+r-1}function je(e,t,n,r,i){var o,a,s=1+7*(t-1)+(7+n-r)%7+Me(e,r,i);return s<=0?a=me(o=e-1)+s:s>me(e)?(o=e+1,a=s-me(e)):(o=e,a=s),{year:o,dayOfYear:a}}function Re(e,t,n){var r,i,o=Me(e.year(),t,n),a=Math.floor((e.dayOfYear()-o-1)/7)+1;return a<1?r=a+Fe(i=e.year()-1,t,n):a>Fe(e.year(),t,n)?(r=a-Fe(e.year(),t,n),i=e.year()+1):(i=e.year(),r=a),{week:r,year:i}}function Fe(e,t,n){var r=Me(e,t,n),i=Me(e+1,t,n);return(me(e)-r+i)/7}function Ne(e,t){return e.slice(t,7).concat(e.slice(0,t))}H("w",["ww",2],"wo","week"),H("W",["WW",2],"Wo","isoWeek"),I("week","w"),I("isoWeek","W"),R("week",5),R("isoWeek",5),ce("w",J),ce("ww",J,Y),ce("W",J),ce("WW",J,Y),he(["w","ww","W","WW"],(function(e,t,n,r){t[r.substr(0,1)]=$(e)})),H("d",0,"do","day"),H("dd",0,0,(function(e){return this.localeData().weekdaysMin(this,e)})),H("ddd",0,0,(function(e){return this.localeData().weekdaysShort(this,e)})),H("dddd",0,0,(function(e){return this.localeData().weekdays(this,e)})),H("e",0,0,"weekday"),H("E",0,0,"isoWeekday"),I("day","d"),I("weekday","e"),I("isoWeekday","E"),R("day",11),R("weekday",11),R("isoWeekday",11),ce("d",J),ce("e",J),ce("E",J),ce("dd",(function(e,t){return t.weekdaysMinRegex(e)})),ce("ddd",(function(e,t){return t.weekdaysShortRegex(e)})),ce("dddd",(function(e,t){return t.weekdaysRegex(e)})),he(["dd","ddd","dddd"],(function(e,t,n,r){var i=n._locale.weekdaysParse(e,r,n._strict);null!=i?t.d=i:p(n).invalidWeekday=e})),he(["d","e","E"],(function(e,t,n,r){t[r]=$(e)}));var Le="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),Ue="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),Be="Su_Mo_Tu_We_Th_Fr_Sa".split("_");function He(e,t,n){var r,i,o,a=e.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],r=0;r<7;++r)o=d([2e3,1]).day(r),this._minWeekdaysParse[r]=this.weekdaysMin(o,"").toLocaleLowerCase(),this._shortWeekdaysParse[r]=this.weekdaysShort(o,"").toLocaleLowerCase(),this._weekdaysParse[r]=this.weekdays(o,"").toLocaleLowerCase();return n?"dddd"===t?-1!==(i=ye.call(this._weekdaysParse,a))?i:null:"ddd"===t?-1!==(i=ye.call(this._shortWeekdaysParse,a))?i:null:-1!==(i=ye.call(this._minWeekdaysParse,a))?i:null:"dddd"===t?-1!==(i=ye.call(this._weekdaysParse,a))||-1!==(i=ye.call(this._shortWeekdaysParse,a))||-1!==(i=ye.call(this._minWeekdaysParse,a))?i:null:"ddd"===t?-1!==(i=ye.call(this._shortWeekdaysParse,a))||-1!==(i=ye.call(this._weekdaysParse,a))||-1!==(i=ye.call(this._minWeekdaysParse,a))?i:null:-1!==(i=ye.call(this._minWeekdaysParse,a))||-1!==(i=ye.call(this._weekdaysParse,a))||-1!==(i=ye.call(this._shortWeekdaysParse,a))?i:null}var Ve=se,ze=se,We=se;function Ye(){function e(e,t){return t.length-e.length}var t,n,r,i,o,a=[],s=[],u=[],c=[];for(t=0;t<7;t++)n=d([2e3,1]).day(t),r=this.weekdaysMin(n,""),i=this.weekdaysShort(n,""),o=this.weekdays(n,""),a.push(r),s.push(i),u.push(o),c.push(r),c.push(i),c.push(o);for(a.sort(e),s.sort(e),u.sort(e),c.sort(e),t=0;t<7;t++)s[t]=fe(s[t]),u[t]=fe(u[t]),c[t]=fe(c[t]);this._weekdaysRegex=new RegExp("^("+c.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+u.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+s.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+a.join("|")+")","i")}function Ge(){return this.hours()%12||12}function Xe(e,t){H(e,0,0,(function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)}))}function Ke(e,t){return t._meridiemParse}H("H",["HH",2],0,"hour"),H("h",["hh",2],0,Ge),H("k",["kk",2],0,(function(){return this.hours()||24})),H("hmm",0,0,(function(){return""+Ge.apply(this)+F(this.minutes(),2)})),H("hmmss",0,0,(function(){return""+Ge.apply(this)+F(this.minutes(),2)+F(this.seconds(),2)})),H("Hmm",0,0,(function(){return""+this.hours()+F(this.minutes(),2)})),H("Hmmss",0,0,(function(){return""+this.hours()+F(this.minutes(),2)+F(this.seconds(),2)})),Xe("a",!0),Xe("A",!1),I("hour","h"),R("hour",13),ce("a",Ke),ce("A",Ke),ce("H",J),ce("h",J),ce("k",J),ce("HH",J,Y),ce("hh",J,Y),ce("kk",J,Y),ce("hmm",Z),ce("hmmss",Q),ce("Hmm",Z),ce("Hmmss",Q),pe(["H","HH"],3),pe(["k","kk"],(function(e,t,n){var r=$(e);t[3]=24===r?0:r})),pe(["a","A"],(function(e,t,n){n._isPm=n._locale.isPM(e),n._meridiem=e})),pe(["h","hh"],(function(e,t,n){t[3]=$(e),p(n).bigHour=!0})),pe("hmm",(function(e,t,n){var r=e.length-2;t[3]=$(e.substr(0,r)),t[4]=$(e.substr(r)),p(n).bigHour=!0})),pe("hmmss",(function(e,t,n){var r=e.length-4,i=e.length-2;t[3]=$(e.substr(0,r)),t[4]=$(e.substr(r,2)),t[5]=$(e.substr(i)),p(n).bigHour=!0})),pe("Hmm",(function(e,t,n){var r=e.length-2;t[3]=$(e.substr(0,r)),t[4]=$(e.substr(r))})),pe("Hmmss",(function(e,t,n){var r=e.length-4,i=e.length-2;t[3]=$(e.substr(0,r)),t[4]=$(e.substr(r,2)),t[5]=$(e.substr(i))}));var Je,Ze=_e("Hours",!0),Qe={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:Se,monthsShort:Ee,week:{dow:0,doy:6},weekdays:Le,weekdaysMin:Be,weekdaysShort:Ue,meridiemParse:/[ap]\.?m?\.?/i},et={},tt={};function nt(e){return e?e.toLowerCase().replace("_","-"):e}function rt(t){var n=null;if(!et[t]&&void 0!==e&&e&&e.exports)try{n=Je._abbr,!function(){var e=new Error("Cannot find module 'undefined'");throw e.code="MODULE_NOT_FOUND",e}(),it(n)}catch(e){}return et[t]}function it(e,t){var n;return e&&((n=a(t)?at(e):ot(e,t))?Je=n:"undefined"!=typeof console&&console.warn&&console.warn("Locale "+e+" not found. Did you forget to load it?")),Je._abbr}function ot(e,t){if(null!==t){var n,r=Qe;if(t.abbr=e,null!=et[e])C("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."),r=et[e]._config;else if(null!=t.parentLocale)if(null!=et[t.parentLocale])r=et[t.parentLocale]._config;else{if(null==(n=rt(t.parentLocale)))return tt[t.parentLocale]||(tt[t.parentLocale]=[]),tt[t.parentLocale].push({name:e,config:t}),null;r=n._config}return et[e]=new D(T(r,t)),tt[e]&&tt[e].forEach((function(e){ot(e.name,e.config)})),it(e),et[e]}return delete et[e],null}function at(e){var t;if(e&&e._locale&&e._locale._abbr&&(e=e._locale._abbr),!e)return Je;if(!i(e)){if(t=rt(e))return t;e=[e]}return function(e){for(var t,n,r,i,o=0;o0;){if(r=rt(i.slice(0,t).join("-")))return r;if(n&&n.length>=t&&x(i,n,!0)>=t-1)break;t--}o++}return Je}(e)}function st(e){var t,n=e._a;return n&&-2===p(e).overflow&&(t=n[1]<0||n[1]>11?1:n[2]<1||n[2]>xe(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,p(e)._overflowDayOfYear&&(t<0||t>2)&&(t=2),p(e)._overflowWeeks&&-1===t&&(t=7),p(e)._overflowWeekday&&-1===t&&(t=8),p(e).overflow=t),e}function ut(e,t,n){return null!=e?e:null!=t?t:n}function ct(e){var t,n,i,o,a,s=[];if(!e._d){for(i=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,r,i,o,a,s,u;if(null!=(t=e._w).GG||null!=t.W||null!=t.E)o=1,a=4,n=ut(t.GG,e._a[0],Re(qt(),1,4).year),r=ut(t.W,1),((i=ut(t.E,1))<1||i>7)&&(u=!0);else{o=e._locale._week.dow,a=e._locale._week.doy;var c=Re(qt(),o,a);n=ut(t.gg,e._a[0],c.year),r=ut(t.w,c.week),null!=t.d?((i=t.d)<0||i>6)&&(u=!0):null!=t.e?(i=t.e+o,(t.e<0||t.e>6)&&(u=!0)):i=o}r<1||r>Fe(n,o,a)?p(e)._overflowWeeks=!0:null!=u?p(e)._overflowWeekday=!0:(s=je(n,r,i,o,a),e._a[0]=s.year,e._dayOfYear=s.dayOfYear)}(e),null!=e._dayOfYear&&(a=ut(e._a[0],i[0]),(e._dayOfYear>me(a)||0===e._dayOfYear)&&(p(e)._overflowDayOfYear=!0),n=Pe(a,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]=i[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?Pe:Ie).apply(null,s),o=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!==o&&(p(e).weekdayMismatch=!0)}}var lt=/^\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=/^\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)?)?$/,dt=/Z|[+-]\d\d(?::?\d\d)?/,pt=[["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}/]],ht=[["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/]],gt=/^\/?Date\((\-?\d+)/i;function mt(e){var t,n,r,i,o,a,s=e._i,u=lt.exec(s)||ft.exec(s);if(u){for(p(e).iso=!0,t=0,n=pt.length;t0&&p(e).unusedInput.push(a),s=s.slice(s.indexOf(n)+n.length),c+=n.length),B[o]?(n?p(e).empty=!1:p(e).unusedTokens.push(o),ge(o,n,e)):e._strict&&!n&&p(e).unusedTokens.push(o);p(e).charsLeftOver=u-c,s.length>0&&p(e).unusedInput.push(s),e._a[3]<=12&&!0===p(e).bigHour&&e._a[3]>0&&(p(e).bigHour=void 0),p(e).parsedDateParts=e._a.slice(0),p(e).meridiem=e._meridiem,e._a[3]=function(e,t,n){var r;return null==n?t:null!=e.meridiemHour?e.meridiemHour(t,n):null!=e.isPM?((r=e.isPM(n))&&t<12&&(t+=12),r||12!==t||(t=0),t):t}(e._locale,e._a[3],e._meridiem),ct(e),st(e)}else _t(e);else mt(e)}function $t(e){var t=e._i,n=e._f;return e._locale=e._locale||at(e._l),null===t||void 0===n&&""===t?g({nullInput:!0}):("string"==typeof t&&(e._i=t=e._locale.preparse(t)),_(t)?new b(st(t)):(u(t)?e._d=t:i(n)?function(e){var t,n,r,i,o;if(0===e._f.length)return p(e).invalidFormat=!0,void(e._d=new Date(NaN));for(i=0;ithis?this:e:g()}));function kt(e,t){var n,r;if(1===t.length&&i(t[0])&&(t=t[0]),!t.length)return qt();for(n=t[0],r=1;r=0?new Date(e+400,t,n)-126227808e5:new Date(e,t,n).valueOf()}function Qt(e,t,n){return e<100&&e>=0?Date.UTC(e+400,t,n)-126227808e5:Date.UTC(e,t,n)}function en(e,t){H(0,[e,e.length],0,t)}function tn(e,t,n,r,i){var o;return null==e?Re(this,r,i).year:(t>(o=Fe(e,r,i))&&(t=o),nn.call(this,e,t,n,r,i))}function nn(e,t,n,r,i){var o=je(e,t,n,r,i),a=Pe(o.year,0,o.dayOfYear);return this.year(a.getUTCFullYear()),this.month(a.getUTCMonth()),this.date(a.getUTCDate()),this}H(0,["gg",2],0,(function(){return this.weekYear()%100})),H(0,["GG",2],0,(function(){return this.isoWeekYear()%100})),en("gggg","weekYear"),en("ggggg","weekYear"),en("GGGG","isoWeekYear"),en("GGGGG","isoWeekYear"),I("weekYear","gg"),I("isoWeekYear","GG"),R("weekYear",1),R("isoWeekYear",1),ce("G",ie),ce("g",ie),ce("GG",J,Y),ce("gg",J,Y),ce("GGGG",te,X),ce("gggg",te,X),ce("GGGGG",ne,K),ce("ggggg",ne,K),he(["gggg","ggggg","GGGG","GGGGG"],(function(e,t,n,r){t[r.substr(0,2)]=$(e)})),he(["gg","GG"],(function(e,t,n,i){t[i]=r.parseTwoDigitYear(e)})),H("Q",0,"Qo","quarter"),I("quarter","Q"),R("quarter",7),ce("Q",W),pe("Q",(function(e,t){t[1]=3*($(e)-1)})),H("D",["DD",2],"Do","date"),I("date","D"),R("date",9),ce("D",J),ce("DD",J,Y),ce("Do",(function(e,t){return e?t._dayOfMonthOrdinalParse||t._ordinalParse:t._dayOfMonthOrdinalParseLenient})),pe(["D","DD"],2),pe("Do",(function(e,t){t[2]=$(e.match(J)[0])}));var rn=_e("Date",!0);H("DDD",["DDDD",3],"DDDo","dayOfYear"),I("dayOfYear","DDD"),R("dayOfYear",4),ce("DDD",ee),ce("DDDD",G),pe(["DDD","DDDD"],(function(e,t,n){n._dayOfYear=$(e)})),H("m",["mm",2],0,"minute"),I("minute","m"),R("minute",14),ce("m",J),ce("mm",J,Y),pe(["m","mm"],4);var on=_e("Minutes",!1);H("s",["ss",2],0,"second"),I("second","s"),R("second",15),ce("s",J),ce("ss",J,Y),pe(["s","ss"],5);var an,sn=_e("Seconds",!1);for(H("S",0,0,(function(){return~~(this.millisecond()/100)})),H(0,["SS",2],0,(function(){return~~(this.millisecond()/10)})),H(0,["SSS",3],0,"millisecond"),H(0,["SSSS",4],0,(function(){return 10*this.millisecond()})),H(0,["SSSSS",5],0,(function(){return 100*this.millisecond()})),H(0,["SSSSSS",6],0,(function(){return 1e3*this.millisecond()})),H(0,["SSSSSSS",7],0,(function(){return 1e4*this.millisecond()})),H(0,["SSSSSSSS",8],0,(function(){return 1e5*this.millisecond()})),H(0,["SSSSSSSSS",9],0,(function(){return 1e6*this.millisecond()})),I("millisecond","ms"),R("millisecond",16),ce("S",ee,W),ce("SS",ee,Y),ce("SSS",ee,G),an="SSSS";an.length<=9;an+="S")ce(an,re);function un(e,t){t[6]=$(1e3*("0."+e))}for(an="S";an.length<=9;an+="S")pe(an,un);var cn=_e("Milliseconds",!1);H("z",0,0,"zoneAbbr"),H("zz",0,0,"zoneName");var ln=b.prototype;function fn(e){return e}ln.add=zt,ln.calendar=function(e,t){var n=e||qt(),i=Mt(n,this).startOf("day"),o=r.calendarFormat(this,i)||"sameElse",a=t&&(O(t[o])?t[o].call(this,n):t[o]);return this.format(a||this.localeData().calendar(o,this,qt(n)))},ln.clone=function(){return new b(this)},ln.diff=function(e,t,n){var r,i,o;if(!this.isValid())return NaN;if(!(r=Mt(e,this)).isValid())return NaN;switch(i=6e4*(r.utcOffset()-this.utcOffset()),t=P(t)){case"year":o=Yt(this,r)/12;break;case"month":o=Yt(this,r);break;case"quarter":o=Yt(this,r)/3;break;case"second":o=(this-r)/1e3;break;case"minute":o=(this-r)/6e4;break;case"hour":o=(this-r)/36e5;break;case"day":o=(this-r-i)/864e5;break;case"week":o=(this-r-i)/6048e5;break;default:o=this-r}return n?o:w(o)},ln.endOf=function(e){var t;if(void 0===(e=P(e))||"millisecond"===e||!this.isValid())return this;var n=this._isUTC?Qt:Zt;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-Jt(t+(this._isUTC?0:6e4*this.utcOffset()),36e5)-1;break;case"minute":t=this._d.valueOf(),t+=6e4-Jt(t,6e4)-1;break;case"second":t=this._d.valueOf(),t+=1e3-Jt(t,1e3)-1}return this._d.setTime(t),r.updateOffset(this,!0),this},ln.format=function(e){e||(e=this.isUtc()?r.defaultFormatUtc:r.defaultFormat);var t=V(this,e);return this.localeData().postformat(t)},ln.from=function(e,t){return this.isValid()&&(_(e)&&e.isValid()||qt(e).isValid())?Lt({to:this,from:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},ln.fromNow=function(e){return this.from(qt(),e)},ln.to=function(e,t){return this.isValid()&&(_(e)&&e.isValid()||qt(e).isValid())?Lt({from:this,to:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},ln.toNow=function(e){return this.to(qt(),e)},ln.get=function(e){return O(this[e=P(e)])?this[e]():this},ln.invalidAt=function(){return p(this).overflow},ln.isAfter=function(e,t){var n=_(e)?e:qt(e);return!(!this.isValid()||!n.isValid())&&("millisecond"===(t=P(t)||"millisecond")?this.valueOf()>n.valueOf():n.valueOf()9999?V(n,t?"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ"):O(Date.prototype.toISOString)?t?this.toDate().toISOString():new Date(this.valueOf()+60*this.utcOffset()*1e3).toISOString().replace("Z",V(n,"Z")):V(n,t?"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYY-MM-DD[T]HH:mm:ss.SSSZ")},ln.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+'("]',r=0<=this.year()&&this.year()<=9999?"YYYY":"YYYYYY",i=t+'[")]';return this.format(n+r+"-MM-DD[T]HH:mm:ss.SSS"+i)},ln.toJSON=function(){return this.isValid()?this.toISOString():null},ln.toString=function(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")},ln.unix=function(){return Math.floor(this.valueOf()/1e3)},ln.valueOf=function(){return this._d.valueOf()-6e4*(this._offset||0)},ln.creationData=function(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}},ln.year=be,ln.isLeapYear=function(){return ve(this.year())},ln.weekYear=function(e){return tn.call(this,e,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)},ln.isoWeekYear=function(e){return tn.call(this,e,this.isoWeek(),this.isoWeekday(),1,4)},ln.quarter=ln.quarters=function(e){return null==e?Math.ceil((this.month()+1)/3):this.month(3*(e-1)+this.month()%3)},ln.month=Oe,ln.daysInMonth=function(){return xe(this.year(),this.month())},ln.week=ln.weeks=function(e){var t=this.localeData().week(this);return null==e?t:this.add(7*(e-t),"d")},ln.isoWeek=ln.isoWeeks=function(e){var t=Re(this,1,4).week;return null==e?t:this.add(7*(e-t),"d")},ln.weeksInYear=function(){var e=this.localeData()._week;return Fe(this.year(),e.dow,e.doy)},ln.isoWeeksInYear=function(){return Fe(this.year(),1,4)},ln.date=rn,ln.day=ln.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},ln.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")},ln.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},ln.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")},ln.hour=ln.hours=Ze,ln.minute=ln.minutes=on,ln.second=ln.seconds=sn,ln.millisecond=ln.milliseconds=cn,ln.utcOffset=function(e,t,n){var i,o=this._offset||0;if(!this.isValid())return null!=e?this:NaN;if(null!=e){if("string"==typeof e){if(null===(e=Pt(ae,e)))return this}else Math.abs(e)<16&&!n&&(e*=60);return!this._isUTC&&t&&(i=jt(this)),this._offset=e,this._isUTC=!0,null!=i&&this.add(i,"m"),o!==e&&(!t||this._changeInProgress?Vt(this,Lt(e-o,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,r.updateOffset(this,!0),this._changeInProgress=null)),this}return this._isUTC?o:jt(this)},ln.utc=function(e){return this.utcOffset(0,e)},ln.local=function(e){return this._isUTC&&(this.utcOffset(0,e),this._isUTC=!1,e&&this.subtract(jt(this),"m")),this},ln.parseZone=function(){if(null!=this._tzm)this.utcOffset(this._tzm,!1,!0);else if("string"==typeof this._i){var e=Pt(oe,this._i);null!=e?this.utcOffset(e):this.utcOffset(0,!0)}return this},ln.hasAlignedHourOffset=function(e){return!!this.isValid()&&(e=e?qt(e).utcOffset():0,(this.utcOffset()-e)%60==0)},ln.isDST=function(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},ln.isLocal=function(){return!!this.isValid()&&!this._isUTC},ln.isUtcOffset=function(){return!!this.isValid()&&this._isUTC},ln.isUtc=Rt,ln.isUTC=Rt,ln.zoneAbbr=function(){return this._isUTC?"UTC":""},ln.zoneName=function(){return this._isUTC?"Coordinated Universal Time":""},ln.dates=S("dates accessor is deprecated. Use date instead.",rn),ln.months=S("months accessor is deprecated. Use month instead",Oe),ln.years=S("years accessor is deprecated. Use year instead",be),ln.zone=S("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()})),ln.isDSTShifted=S("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",(function(){if(!a(this._isDSTShifted))return this._isDSTShifted;var e={};if(v(e,this),(e=$t(e))._a){var t=e._isUTC?d(e._a):qt(e._a);this._isDSTShifted=this.isValid()&&x(e._a,t.toArray())>0}else this._isDSTShifted=!1;return this._isDSTShifted}));var dn=D.prototype;function pn(e,t,n,r){var i=at(),o=d().set(r,t);return i[n](o,e)}function hn(e,t,n){if(s(e)&&(t=e,e=void 0),e=e||"",null!=t)return pn(e,t,n,"month");var r,i=[];for(r=0;r<12;r++)i[r]=pn(e,r,n,"month");return i}function gn(e,t,n,r){"boolean"==typeof e?(s(t)&&(n=t,t=void 0),t=t||""):(n=t=e,e=!1,s(t)&&(n=t,t=void 0),t=t||"");var i,o=at(),a=e?o._week.dow:0;if(null!=n)return pn(t,(n+a)%7,r,"day");var u=[];for(i=0;i<7;i++)u[i]=pn(t,(i+a)%7,r,"day");return u}dn.calendar=function(e,t,n){var r=this._calendar[e]||this._calendar.sameElse;return O(r)?r.call(t,n):r},dn.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])},dn.invalidDate=function(){return this._invalidDate},dn.ordinal=function(e){return this._ordinal.replace("%d",e)},dn.preparse=fn,dn.postformat=fn,dn.relativeTime=function(e,t,n,r){var i=this._relativeTime[n];return O(i)?i(e,t,n,r):i.replace(/%d/i,e)},dn.pastFuture=function(e,t){var n=this._relativeTime[e>0?"future":"past"];return O(n)?n(t):n.replace(/%s/i,t)},dn.set=function(e){var t,n;for(n in e)O(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)},dn.months=function(e,t){return e?i(this._months)?this._months[e.month()]:this._months[(this._months.isFormat||qe).test(t)?"format":"standalone"][e.month()]:i(this._months)?this._months:this._months.standalone},dn.monthsShort=function(e,t){return e?i(this._monthsShort)?this._monthsShort[e.month()]:this._monthsShort[qe.test(t)?"format":"standalone"][e.month()]:i(this._monthsShort)?this._monthsShort:this._monthsShort.standalone},dn.monthsParse=function(e,t,n){var r,i,o;if(this._monthsParseExact)return ke.call(this,e,t,n);for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),r=0;r<12;r++){if(i=d([2e3,r]),n&&!this._longMonthsParse[r]&&(this._longMonthsParse[r]=new RegExp("^"+this.months(i,"").replace(".","")+"$","i"),this._shortMonthsParse[r]=new RegExp("^"+this.monthsShort(i,"").replace(".","")+"$","i")),n||this._monthsParse[r]||(o="^"+this.months(i,"")+"|^"+this.monthsShort(i,""),this._monthsParse[r]=new RegExp(o.replace(".",""),"i")),n&&"MMMM"===t&&this._longMonthsParse[r].test(e))return r;if(n&&"MMM"===t&&this._shortMonthsParse[r].test(e))return r;if(!n&&this._monthsParse[r].test(e))return r}},dn.monthsRegex=function(e){return this._monthsParseExact?(l(this,"_monthsRegex")||Ae.call(this),e?this._monthsStrictRegex:this._monthsRegex):(l(this,"_monthsRegex")||(this._monthsRegex=De),this._monthsStrictRegex&&e?this._monthsStrictRegex:this._monthsRegex)},dn.monthsShortRegex=function(e){return this._monthsParseExact?(l(this,"_monthsRegex")||Ae.call(this),e?this._monthsShortStrictRegex:this._monthsShortRegex):(l(this,"_monthsShortRegex")||(this._monthsShortRegex=Te),this._monthsShortStrictRegex&&e?this._monthsShortStrictRegex:this._monthsShortRegex)},dn.week=function(e){return Re(e,this._week.dow,this._week.doy).week},dn.firstDayOfYear=function(){return this._week.doy},dn.firstDayOfWeek=function(){return this._week.dow},dn.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?Ne(n,this._week.dow):e?n[e.day()]:n},dn.weekdaysMin=function(e){return!0===e?Ne(this._weekdaysMin,this._week.dow):e?this._weekdaysMin[e.day()]:this._weekdaysMin},dn.weekdaysShort=function(e){return!0===e?Ne(this._weekdaysShort,this._week.dow):e?this._weekdaysShort[e.day()]:this._weekdaysShort},dn.weekdaysParse=function(e,t,n){var r,i,o;if(this._weekdaysParseExact)return He.call(this,e,t,n);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),r=0;r<7;r++){if(i=d([2e3,1]).day(r),n&&!this._fullWeekdaysParse[r]&&(this._fullWeekdaysParse[r]=new RegExp("^"+this.weekdays(i,"").replace(".","\\.?")+"$","i"),this._shortWeekdaysParse[r]=new RegExp("^"+this.weekdaysShort(i,"").replace(".","\\.?")+"$","i"),this._minWeekdaysParse[r]=new RegExp("^"+this.weekdaysMin(i,"").replace(".","\\.?")+"$","i")),this._weekdaysParse[r]||(o="^"+this.weekdays(i,"")+"|^"+this.weekdaysShort(i,"")+"|^"+this.weekdaysMin(i,""),this._weekdaysParse[r]=new RegExp(o.replace(".",""),"i")),n&&"dddd"===t&&this._fullWeekdaysParse[r].test(e))return r;if(n&&"ddd"===t&&this._shortWeekdaysParse[r].test(e))return r;if(n&&"dd"===t&&this._minWeekdaysParse[r].test(e))return r;if(!n&&this._weekdaysParse[r].test(e))return r}},dn.weekdaysRegex=function(e){return this._weekdaysParseExact?(l(this,"_weekdaysRegex")||Ye.call(this),e?this._weekdaysStrictRegex:this._weekdaysRegex):(l(this,"_weekdaysRegex")||(this._weekdaysRegex=Ve),this._weekdaysStrictRegex&&e?this._weekdaysStrictRegex:this._weekdaysRegex)},dn.weekdaysShortRegex=function(e){return this._weekdaysParseExact?(l(this,"_weekdaysRegex")||Ye.call(this),e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(l(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=ze),this._weekdaysShortStrictRegex&&e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)},dn.weekdaysMinRegex=function(e){return this._weekdaysParseExact?(l(this,"_weekdaysRegex")||Ye.call(this),e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(l(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=We),this._weekdaysMinStrictRegex&&e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)},dn.isPM=function(e){return"p"===(e+"").toLowerCase().charAt(0)},dn.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===$(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")}}),r.lang=S("moment.lang is deprecated. Use moment.locale instead.",it),r.langData=S("moment.langData is deprecated. Use moment.localeData instead.",at);var mn=Math.abs;function vn(e,t,n,r){var i=Lt(t,n);return e._milliseconds+=r*i._milliseconds,e._days+=r*i._days,e._months+=r*i._months,e._bubble()}function yn(e){return e<0?Math.floor(e):Math.ceil(e)}function bn(e){return 4800*e/146097}function _n(e){return 146097*e/4800}function wn(e){return function(){return this.as(e)}}var $n=wn("ms"),xn=wn("s"),qn=wn("m"),Sn=wn("h"),En=wn("d"),kn=wn("w"),Cn=wn("M"),On=wn("Q"),Tn=wn("y");function Dn(e){return function(){return this.isValid()?this._data[e]:NaN}}var An=Dn("milliseconds"),In=Dn("seconds"),Pn=Dn("minutes"),Mn=Dn("hours"),jn=Dn("days"),Rn=Dn("months"),Fn=Dn("years"),Nn=Math.round,Ln={ss:44,s:45,m:45,h:22,d:26,M:11};function Un(e,t,n,r,i){return i.relativeTime(t||1,!!n,e,r)}var Bn=Math.abs;function Hn(e){return(e>0)-(e<0)||+e}function Vn(){if(!this.isValid())return this.localeData().invalidDate();var e,t,n=Bn(this._milliseconds)/1e3,r=Bn(this._days),i=Bn(this._months);e=w(n/60),t=w(e/60),n%=60,e%=60;var o=w(i/12),a=i%=12,s=r,u=t,c=e,l=n?n.toFixed(3).replace(/\.?0+$/,""):"",f=this.asSeconds();if(!f)return"P0D";var d=f<0?"-":"",p=Hn(this._months)!==Hn(f)?"-":"",h=Hn(this._days)!==Hn(f)?"-":"",g=Hn(this._milliseconds)!==Hn(f)?"-":"";return d+"P"+(o?p+o+"Y":"")+(a?p+a+"M":"")+(s?h+s+"D":"")+(u||c||l?"T":"")+(u?g+u+"H":"")+(c?g+c+"M":"")+(l?g+l+"S":"")}var zn=Ot.prototype;return zn.isValid=function(){return this._isValid},zn.abs=function(){var e=this._data;return this._milliseconds=mn(this._milliseconds),this._days=mn(this._days),this._months=mn(this._months),e.milliseconds=mn(e.milliseconds),e.seconds=mn(e.seconds),e.minutes=mn(e.minutes),e.hours=mn(e.hours),e.months=mn(e.months),e.years=mn(e.years),this},zn.add=function(e,t){return vn(this,e,t,1)},zn.subtract=function(e,t){return vn(this,e,t,-1)},zn.as=function(e){if(!this.isValid())return NaN;var t,n,r=this._milliseconds;if("month"===(e=P(e))||"quarter"===e||"year"===e)switch(t=this._days+r/864e5,n=this._months+bn(t),e){case"month":return n;case"quarter":return n/3;case"year":return n/12}else switch(t=this._days+Math.round(_n(this._months)),e){case"week":return t/7+r/6048e5;case"day":return t+r/864e5;case"hour":return 24*t+r/36e5;case"minute":return 1440*t+r/6e4;case"second":return 86400*t+r/1e3;case"millisecond":return Math.floor(864e5*t)+r;default:throw new Error("Unknown unit "+e)}},zn.asMilliseconds=$n,zn.asSeconds=xn,zn.asMinutes=qn,zn.asHours=Sn,zn.asDays=En,zn.asWeeks=kn,zn.asMonths=Cn,zn.asQuarters=On,zn.asYears=Tn,zn.valueOf=function(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*$(this._months/12):NaN},zn._bubble=function(){var e,t,n,r,i,o=this._milliseconds,a=this._days,s=this._months,u=this._data;return o>=0&&a>=0&&s>=0||o<=0&&a<=0&&s<=0||(o+=864e5*yn(_n(s)+a),a=0,s=0),u.milliseconds=o%1e3,e=w(o/1e3),u.seconds=e%60,t=w(e/60),u.minutes=t%60,n=w(t/60),u.hours=n%24,a+=w(n/24),i=w(bn(a)),s+=i,a-=yn(_n(i)),r=w(s/12),s%=12,u.days=a,u.months=s,u.years=r,this},zn.clone=function(){return Lt(this)},zn.get=function(e){return e=P(e),this.isValid()?this[e+"s"]():NaN},zn.milliseconds=An,zn.seconds=In,zn.minutes=Pn,zn.hours=Mn,zn.days=jn,zn.weeks=function(){return w(this.days()/7)},zn.months=Rn,zn.years=Fn,zn.humanize=function(e){if(!this.isValid())return this.localeData().invalidDate();var t=this.localeData(),n=function(e,t,n){var r=Lt(e).abs(),i=Nn(r.as("s")),o=Nn(r.as("m")),a=Nn(r.as("h")),s=Nn(r.as("d")),u=Nn(r.as("M")),c=Nn(r.as("y")),l=i<=Ln.ss&&["s",i]||i0,l[4]=n,Un.apply(null,l)}(this,!e,t);return e&&(n=t.pastFuture(+this,n)),t.postformat(n)},zn.toISOString=Vn,zn.toString=Vn,zn.toJSON=Vn,zn.locale=Gt,zn.localeData=Kt,zn.toIsoString=S("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",Vn),zn.lang=Xt,H("X",0,0,"unix"),H("x",0,0,"valueOf"),ce("x",ie),ce("X",/[+-]?\d+(\.\d{1,3})?/),pe("X",(function(e,t,n){n._d=new Date(1e3*parseFloat(e,10))})),pe("x",(function(e,t,n){n._d=new Date($(e))})),r.version="2.24.0",t=qt,r.fn=ln,r.min=function(){var e=[].slice.call(arguments,0);return kt("isBefore",e)},r.max=function(){var e=[].slice.call(arguments,0);return kt("isAfter",e)},r.now=function(){return Date.now?Date.now():+new Date},r.utc=d,r.unix=function(e){return qt(1e3*e)},r.months=function(e,t){return hn(e,t,"months")},r.isDate=u,r.locale=it,r.invalid=g,r.duration=Lt,r.isMoment=_,r.weekdays=function(e,t,n){return gn(e,t,n,"weekdays")},r.parseZone=function(){return qt.apply(null,arguments).parseZone()},r.localeData=at,r.isDuration=Tt,r.monthsShort=function(e,t){return hn(e,t,"monthsShort")},r.weekdaysMin=function(e,t,n){return gn(e,t,n,"weekdaysMin")},r.defineLocale=ot,r.updateLocale=function(e,t){if(null!=t){var n,r,i=Qe;null!=(r=rt(e))&&(i=r._config),t=T(i,t),(n=new D(t)).parentLocale=et[e],et[e]=n,it(e)}else null!=et[e]&&(null!=et[e].parentLocale?et[e]=et[e].parentLocale:null!=et[e]&&delete et[e]);return et[e]},r.locales=function(){return E(et)},r.weekdaysShort=function(e,t,n){return gn(e,t,n,"weekdaysShort")},r.normalizeUnits=P,r.relativeTimeRounding=function(e){return void 0===e?Nn:"function"==typeof e&&(Nn=e,!0)},r.relativeTimeThreshold=function(e,t){return void 0!==Ln[e]&&(void 0===t?Ln[e]:(Ln[e]=t,"s"===e&&(Ln.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=ln,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(77)(e))},,function(e,t,n){"use strict";var r=n(28),i=n(299).includes,o=n(162);r({target:"Array",proto:!0,forced:!n(100)("indexOf",{ACCESSORS:!0,1:0})},{includes:function(e){return i(this,e,arguments.length>1?arguments[1]:void 0)}}),o("includes")},function(e,t,n){var r=n(43),i=n(210),o=n(56),a=n(156),s=n(214),u=n(301),c=i("wks"),l=r.Symbol,f=u?l:l&&l.withoutSetter||a;e.exports=function(e){return o(c,e)||(s&&o(l,e)?c[e]=l[e]:c[e]=f("Symbol."+e)),c[e]}},function(e,t,n){"use strict";var r=n(160),i=n(51),o=n(62),a=n(68),s=n(215),u=n(161);r("match",1,(function(e,t,n){return[function(t){var n=a(this),r=null==t?void 0:t[e];return void 0!==r?r.call(t,n):new RegExp(t)[e](String(n))},function(e){var r=n(t,e,this);if(r.done)return r.value;var a=i(e),c=String(this);if(!a.global)return u(a,c);var l=a.unicode;a.lastIndex=0;for(var f,d=[],p=0;null!==(f=u(a,c));){var h=String(f[0]);d[p]=h,""===h&&(a.lastIndex=s(c,o(a.lastIndex),l)),p++}return 0===p?null:d}]}))},,,,,function(e,t,n){(function(t){var n=function(e){return e&&e.Math==Math&&e};e.exports=n("object"==typeof globalThis&&globalThis)||n("object"==typeof window&&window)||n("object"==typeof self&&self)||n("object"==typeof t&&t)||Function("return this")()}).call(this,n(44))},function(e,t){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(e){"object"==typeof window&&(n=window)}e.exports=n},function(e,t,n){"use strict";var r=n(28),i=n(154),o=n(74),a=n(225),s=[].join,u=i!=Object,c=a("join",",");r({target:"Array",proto:!0,forced:u||!c},{join:function(e){return s.call(o(this),void 0===e?",":e)}})},function(e,t,n){var r=n(28),i=n(31),o=n(74),a=n(96).f,s=n(55),u=i((function(){a(1)}));r({target:"Object",stat:!0,forced:!s||u,sham:!s},{getOwnPropertyDescriptor:function(e,t){return a(o(e),t)}})},function(e,t,n){var r=n(28),i=n(55),o=n(296),a=n(74),s=n(96),u=n(141);r({target:"Object",stat:!0,sham:!i},{getOwnPropertyDescriptors:function(e){for(var t,n,r=a(e),i=s.f,c=o(r),l={},f=0;c.length>f;)void 0!==(n=i(r,t=c[f++]))&&u(l,t,n);return l}})},function(e,t,n){"use strict";function isError(e){switch(Object.prototype.toString.call(e)){case"[object Error]":case"[object Exception]":case"[object DOMException]":return!0;default:return p(e,Error)}}function r(e){return"[object ErrorEvent]"===Object.prototype.toString.call(e)}function isDOMError(e){return"[object DOMError]"===Object.prototype.toString.call(e)}function i(e){return"[object DOMException]"===Object.prototype.toString.call(e)}function o(e){return"[object String]"===Object.prototype.toString.call(e)}function a(e){return null===e||"object"!=typeof e&&"function"!=typeof e}function s(e){return"[object Object]"===Object.prototype.toString.call(e)}function u(e){return"undefined"!=typeof Event&&p(e,Event)}function c(e){return"undefined"!=typeof Element&&p(e,Element)}function l(e){return"[object RegExp]"===Object.prototype.toString.call(e)}function f(e){return Boolean(e&&e.then&&"function"==typeof e.then)}function d(e){return s(e)&&"nativeEvent"in e&&"preventDefault"in e&&"stopPropagation"in e}function p(e,t){try{return e instanceof t}catch(e){return!1}}n.d(t,"d",(function(){return isError})),n.d(t,"e",(function(){return r})),n.d(t,"a",(function(){return isDOMError})),n.d(t,"b",(function(){return i})),n.d(t,"k",(function(){return o})),n.d(t,"i",(function(){return a})),n.d(t,"h",(function(){return s})),n.d(t,"f",(function(){return u})),n.d(t,"c",(function(){return c})),n.d(t,"j",(function(){return l})),n.d(t,"m",(function(){return f})),n.d(t,"l",(function(){return d})),n.d(t,"g",(function(){return p}))},,function(e,t){e.exports=function(e){return"object"==typeof e?null!==e:"function"==typeof e}},function(e,t,n){var r=n(50);e.exports=function(e){if(!r(e))throw TypeError(String(e)+" is not an object");return e}},function(e,t,n){"use strict";var r=n(28),i=n(88),o=n(329),a=n(31),s=n(83),u=n(227),c=n(332),l=n(64);r({target:"Promise",proto:!0,real:!0,forced:!!o&&a((function(){o.prototype.finally.call({then:function(){}},(function(){}))}))},{finally:function(e){var t=u(this,s("Promise")),n="function"==typeof e;return this.then(n?function(n){return c(t,e()).then((function(){return n}))}:e,n?function(n){return c(t,e()).then((function(){throw n}))}:e)}}),i||"function"!=typeof o||o.prototype.finally||l(o.prototype,"finally",s("Promise").prototype.finally)},function(e,t,n){"use strict";var r=n(160),i=n(51),o=n(65),a=n(62),s=n(89),u=n(68),c=n(215),l=n(161),f=Math.max,d=Math.min,p=Math.floor,h=/\$([$&'`]|\d\d?|<[^>]*>)/g,g=/\$([$&'`]|\d\d?)/g;r("replace",2,(function(e,t,n,r){var m=r.REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE,v=r.REPLACE_KEEPS_$0,y=m?"$":"$0";return[function(n,r){var i=u(this),o=null==n?void 0:n[e];return void 0!==o?o.call(n,i,r):t.call(String(i),n,r)},function(e,r){if(!m&&v||"string"==typeof r&&-1===r.indexOf(y)){var o=n(t,e,this,r);if(o.done)return o.value}var u=i(e),p=String(this),h="function"==typeof r;h||(r=String(r));var g=u.global;if(g){var _=u.unicode;u.lastIndex=0}for(var w=[];;){var $=l(u,p);if(null===$)break;if(w.push($),!g)break;""===String($[0])&&(u.lastIndex=c(p,a(u.lastIndex),_))}for(var x,q="",S=0,E=0;E=S&&(q+=p.slice(S,C)+I,S=C+k.length)}return q+p.slice(S)}];function b(e,n,r,i,a,s){var u=r+e.length,c=i.length,l=g;return void 0!==a&&(a=o(a),l=h),t.call(s,l,(function(t,o){var s;switch(o.charAt(0)){case"$":return"$";case"&":return e;case"`":return n.slice(0,r);case"'":return n.slice(u);case"<":s=a[o.slice(1,-1)];break;default:var l=+o;if(0===l)return t;if(l>c){var f=p(l/10);return 0===f?t:f<=c?void 0===i[f-1]?o.charAt(1):i[f-1]+o.charAt(1):t}s=i[l-1]}return void 0===s?"":s}))}}))},function(e,t,n){"use strict";var r=n(64),i=n(51),o=n(31),a=n(213),s=RegExp.prototype,u=s.toString,c=o((function(){return"/a/b"!=u.call({source:"a",flags:"b"})})),l="toString"!=u.name;(c||l)&&r(RegExp.prototype,"toString",(function(){var e=i(this),t=String(e.source),n=e.flags;return"/"+t+"/"+String(void 0===n&&e instanceof RegExp&&!("flags"in s)?a.call(e):n)}),{unsafe:!0})},function(e,t,n){var r=n(31);e.exports=!r((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},function(e,t){var n={}.hasOwnProperty;e.exports=function(e,t){return n.call(e,t)}},function(e,t,n){"use strict";var r=n(28),i=n(99),o=n(65),a=n(31),s=n(225),u=[],c=u.sort,l=a((function(){u.sort(void 0)})),f=a((function(){u.sort(null)})),d=s("sort");r({target:"Array",proto:!0,forced:l||!f||!d},{sort:function(e){return void 0===e?c.call(o(this)):c.call(o(this),i(e))}})},,function(e,t,n){"use strict";var r=n(28),i=n(335),o=n(68);r({target:"String",proto:!0,forced:!n(336)("includes")},{includes:function(e){return!!~String(o(this)).indexOf(i(e),arguments.length>1?arguments[1]:void 0)}})},function(e,t,n){"use strict";(function(e){n.d(t,"e",(function(){return o})),n.d(t,"i",(function(){return a})),n.d(t,"h",(function(){return s})),n.d(t,"d",(function(){return u})),n.d(t,"c",(function(){return c})),n.d(t,"b",(function(){return l})),n.d(t,"a",(function(){return f})),n.d(t,"f",(function(){return d})),n.d(t,"g",(function(){return p}));var r=n(150),i=(n(111),{});function o(){return Object(r.b)()?e:"undefined"!=typeof window?window:"undefined"!=typeof self?self:i}function a(){var e=o(),t=e.crypto||e.msCrypto;if(void 0!==t&&t.getRandomValues){var n=new Uint16Array(8);t.getRandomValues(n),n[3]=4095&n[3]|16384,n[4]=16383&n[4]|32768;var r=function(e){for(var t=e.toString(16);t.length<4;)t="0"+t;return t};return r(n[0])+r(n[1])+r(n[2])+r(n[3])+r(n[4])+r(n[5])+r(n[6])+r(n[7])}return"xxxxxxxxxxxx4xxxyxxxxxxxxxxxxxxx".replace(/[xy]/g,(function(e){var t=16*Math.random()|0;return("x"===e?t:3&t|8).toString(16)}))}function s(e){if(!e)return{};var t=e.match(/^(([^:/?#]+):)?(\/\/([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?$/);if(!t)return{};var n=t[6]||"",r=t[8]||"";return{host:t[4],path:t[5],protocol:t[2],relative:t[5]+n+r}}function u(e){if(e.message)return e.message;if(e.exception&&e.exception.values&&e.exception.values[0]){var t=e.exception.values[0];return t.type&&t.value?t.type+": "+t.value:t.type||t.value||e.event_id||""}return e.event_id||""}function c(e){var t=o();if(!("console"in t))return e();var n=t.console,r={};["debug","info","warn","error","log","assert"].forEach((function(e){e in t.console&&n[e].__sentry_original__&&(r[e]=n[e],n[e]=n[e].__sentry_original__)}));var i=e();return Object.keys(r).forEach((function(e){n[e]=r[e]})),i}function l(e,t,n){e.exception=e.exception||{},e.exception.values=e.exception.values||[],e.exception.values[0]=e.exception.values[0]||{},e.exception.values[0].value=e.exception.values[0].value||t||"",e.exception.values[0].type=e.exception.values[0].type||n||"Error"}function f(e,t){void 0===t&&(t={});try{e.exception.values[0].mechanism=e.exception.values[0].mechanism||{},Object.keys(t).forEach((function(n){e.exception.values[0].mechanism[n]=t[n]}))}catch(e){}}function d(){try{return document.location.href}catch(e){return""}}function p(e,t){if(!t)return 6e4;var n=parseInt(""+t,10);if(!isNaN(n))return 1e3*n;var r=Date.parse(""+t);return isNaN(r)?6e4:r-e}}).call(this,n(44))},function(e,t,n){var r=n(55),i=n(293),o=n(51),a=n(152),s=Object.defineProperty;t.f=r?s:function(e,t,n){if(o(e),t=a(t,!0),o(n),i)try{return s(e,t,n)}catch(e){}if("get"in n||"set"in n)throw TypeError("Accessors not supported");return"value"in n&&(e[t]=n.value),e}},function(e,t,n){var r=n(89),i=Math.min;e.exports=function(e){return e>0?i(r(e),9007199254740991):0}},,function(e,t,n){var r=n(43),i=n(76),o=n(56),a=n(208),s=n(209),u=n(82),c=u.get,l=u.enforce,f=String(String).split("String");(e.exports=function(e,t,n,s){var u=!!s&&!!s.unsafe,c=!!s&&!!s.enumerable,d=!!s&&!!s.noTargetGet;"function"==typeof n&&("string"!=typeof t||o(n,"name")||i(n,"name",t),l(n).source=f.join("string"==typeof t?t:"")),e!==r?(u?!d&&e[t]&&(c=!0):delete e[t],c?e[t]=n:i(e,t,n)):c?e[t]=n:a(t,n)})(Function.prototype,"toString",(function(){return"function"==typeof this&&c(this).source||s(this)}))},function(e,t,n){var r=n(68);e.exports=function(e){return Object(r(e))}},,,function(e,t){e.exports=function(e){if(null==e)throw TypeError("Can't call method on "+e);return e}},function(e,t,n){"use strict";var r=n(160),i=n(51),o=n(68),a=n(466),s=n(161);r("search",1,(function(e,t,n){return[function(t){var n=o(this),r=null==t?void 0:t[e];return void 0!==r?r.call(t,n):new RegExp(t)[e](String(n))},function(e){var r=n(t,e,this);if(r.done)return r.value;var o=i(e),u=String(this),c=o.lastIndex;a(c,0)||(o.lastIndex=0);var l=s(o,u);return a(o.lastIndex,c)||(o.lastIndex=c),null===l?-1:l.index}]}))},function(e,t,n){(function(t){var n=function(e){return e&&e.Math==Math&&e};e.exports=n("object"==typeof globalThis&&globalThis)||n("object"==typeof window&&window)||n("object"==typeof self&&self)||n("object"==typeof t&&t)||function(){return this}()||Function("return this")()}).call(this,n(44))},function(e,t){e.exports=function(e){try{return!!e()}catch(e){return!0}}},,,function(e,t,n){var r=n(154),i=n(68);e.exports=function(e){return r(i(e))}},,function(e,t,n){var r=n(55),i=n(61),o=n(112);e.exports=r?function(e,t,n){return i.f(e,t,o(1,n))}:function(e,t,n){return e[t]=n,e}},function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,"loaded",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,"id",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},,function(e,t,n){"use strict";(function(e){n.d(t,"c",(function(){return c})),n.d(t,"f",(function(){return l})),n.d(t,"e",(function(){return p})),n.d(t,"d",(function(){return m})),n.d(t,"b",(function(){return v})),n.d(t,"a",(function(){return y}));var r=n(4),i=n(286),o=n(48),a=n(446),s=n(199),u=n(111);function c(e,t,n){if(t in e){var r=e[t],i=n(r);if("function"==typeof i)try{i.prototype=i.prototype||{},Object.defineProperties(i,{__sentry_original__:{enumerable:!1,value:r}})}catch(e){}e[t]=i}}function l(e){return Object.keys(e).map((function(t){return encodeURIComponent(t)+"="+encodeURIComponent(e[t])})).join("&")}function f(e){if(Object(o.d)(e)){var t=e,n={message:t.message,name:t.name,stack:t.stack};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(n[r]=t[r]);return n}if(Object(o.f)(e)){var a=e,s={};s.type=a.type;try{s.target=Object(o.c)(a.target)?Object(i.a)(a.target):Object.prototype.toString.call(a.target)}catch(e){s.target=""}try{s.currentTarget=Object(o.c)(a.currentTarget)?Object(i.a)(a.currentTarget):Object.prototype.toString.call(a.currentTarget)}catch(e){s.currentTarget=""}for(var r in"undefined"!=typeof CustomEvent&&Object(o.g)(e,CustomEvent)&&(s.detail=a.detail),a)Object.prototype.hasOwnProperty.call(a,r)&&(s[r]=a);return s}return e}function d(e){return function(e){return~-encodeURI(e).split(/%..|./).length}(JSON.stringify(e))}function p(e,t,n){void 0===t&&(t=3),void 0===n&&(n=102400);var r=m(e,t);return d(r)>n?p(e,t-1,n):r}function h(t,n){return"domain"===n&&t&&"object"==typeof t&&t._events?"[Domain]":"domainEmitter"===n?"[DomainEmitter]":void 0!==e&&t===e?"[Global]":"undefined"!=typeof window&&t===window?"[Window]":"undefined"!=typeof document&&t===document?"[Document]":Object(o.l)(t)?"[SyntheticEvent]":"number"==typeof t&&t!=t?"[NaN]":void 0===t?"[undefined]":"function"==typeof t?"[Function: "+Object(s.a)(t)+"]":"symbol"==typeof t?"["+String(t)+"]":"bigint"==typeof t?"[BigInt: "+String(t)+"]":t}function g(e,t,n,r){if(void 0===n&&(n=1/0),void 0===r&&(r=new a.a),0===n)return function(e){var t=Object.prototype.toString.call(e);if("string"==typeof e)return e;if("[object Object]"===t)return"[Object]";if("[object Array]"===t)return"[Array]";var n=h(e);return Object(o.i)(n)?n:t}(t);if(null!=t&&"function"==typeof t.toJSON)return t.toJSON();var i=h(t,e);if(Object(o.i)(i))return i;var s=f(t),u=Array.isArray(t)?[]:{};if(r.memoize(t))return"[Circular ~]";for(var c in s)Object.prototype.hasOwnProperty.call(s,c)&&(u[c]=g(c,s[c],n-1,r));return r.unmemoize(t),u}function m(e,t){try{return JSON.parse(JSON.stringify(e,(function(e,n){return g(e,n,t)})))}catch(e){return"**non-serializable**"}}function v(e,t){void 0===t&&(t=40);var n=Object.keys(f(e));if(n.sort(),!n.length)return"[object has no keys]";if(n[0].length>=t)return Object(u.d)(n[0],t);for(var r=n.length;r>0;r--){var i=n.slice(0,r).join(", ");if(!(i.length>t))return r===n.length?i:Object(u.d)(i,t)}return""}function y(e){var t,n;if(Object(o.h)(e)){var i=e,a={};try{for(var s=Object(r.f)(Object.keys(i)),u=s.next();!u.done;u=s.next()){var c=u.value;void 0!==i[c]&&(a[c]=y(i[c]))}}catch(e){t={error:e}}finally{try{u&&!u.done&&(n=s.return)&&n.call(s)}finally{if(t)throw t.error}}return a}return Array.isArray(e)?e.map(y):e}}).call(this,n(44))},,function(e,t){var n={}.toString;e.exports=function(e){return n.call(e).slice(8,-1)}},function(e,t,n){var r,i,o,a=n(465),s=n(43),u=n(50),c=n(76),l=n(56),f=n(155),d=n(133),p=s.WeakMap;if(a){var h=new p,g=h.get,m=h.has,v=h.set;r=function(e,t){return v.call(h,e,t),t},i=function(e){return g.call(h,e)||{}},o=function(e){return m.call(h,e)}}else{var y=f("state");d[y]=!0,r=function(e,t){return c(e,y,t),t},i=function(e){return l(e,y)?e[y]:{}},o=function(e){return l(e,y)}}e.exports={set:r,get:i,has:o,enforce:function(e){return o(e)?i(e):r(e,{})},getterFor:function(e){return function(t){var n;if(!u(t)||(n=i(t)).type!==e)throw TypeError("Incompatible receiver, "+e+" required");return n}}}},function(e,t,n){var r=n(297),i=n(43),o=function(e){return"function"==typeof e?e:void 0};e.exports=function(e,t){return arguments.length<2?o(r[e])||o(i[e]):r[e]&&r[e][t]||i[e]&&i[e][t]}},function(e,t,n){"use strict";var r=n(28),i=n(516).trim;r({target:"String",proto:!0,forced:n(517)("trim")},{trim:function(){return i(this)}})},,,,function(e,t){e.exports=!1},function(e,t){var n=Math.ceil,r=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(e>0?r:n)(e)}},function(e,t,n){var r=n(55),i=n(43),o=n(158),a=n(312),s=n(61).f,u=n(157).f,c=n(228),l=n(213),f=n(300),d=n(64),p=n(31),h=n(82).set,g=n(224),m=n(37)("match"),v=i.RegExp,y=v.prototype,b=/a/g,_=/a/g,w=new v(b)!==b,$=f.UNSUPPORTED_Y;if(r&&o("RegExp",!w||$||p((function(){return _[m]=!1,v(b)!=b||v(_)==_||"/a/i"!=v(b,"i")})))){for(var x=function(e,t){var n,r=this instanceof x,i=c(e),o=void 0===t;if(!r&&i&&e.constructor===x&&o)return e;w?i&&!o&&(e=e.source):e instanceof x&&(o&&(t=l.call(e)),e=e.source),$&&(n=!!t&&t.indexOf("y")>-1)&&(t=t.replace(/y/g,""));var s=a(w?new v(e,t):v(e,t),r?this:y,x);return $&&n&&h(s,{sticky:n}),s},q=function(e){e in x||s(x,e,{configurable:!0,get:function(){return v[e]},set:function(t){v[e]=t}})},S=u(v),E=0;S.length>E;)q(S[E++]);y.constructor=x,x.prototype=y,d(i,"RegExp",x)}g("RegExp")},function(e,t,n){"use strict";var r=n(28),i=n(134),o=n(89),a=n(62),s=n(65),u=n(165),c=n(141),l=n(140),f=n(100),d=l("splice"),p=f("splice",{ACCESSORS:!0,0:0,1:2}),h=Math.max,g=Math.min;r({target:"Array",proto:!0,forced:!d||!p},{splice:function(e,t){var n,r,l,f,d,p,m=s(this),v=a(m.length),y=i(e,v),b=arguments.length;if(0===b?n=r=0:1===b?(n=0,r=v-y):(n=b-2,r=g(h(o(t),0),v-y)),v+n-r>9007199254740991)throw TypeError("Maximum allowed length exceeded");for(l=u(m,r),f=0;fv-r+n;f--)delete m[f-1]}else if(n>r)for(f=v-r;f>y;f--)p=f+n-1,(d=f+r-1)in m?m[p]=m[d]:delete m[p];for(f=0;f1)for(var n=1;n>>24)|4278255360&(i<<24|i>>>8)}var o=this._hash.words,a=e[t+0],u=e[t+1],p=e[t+2],h=e[t+3],g=e[t+4],m=e[t+5],v=e[t+6],y=e[t+7],b=e[t+8],_=e[t+9],w=e[t+10],$=e[t+11],x=e[t+12],q=e[t+13],S=e[t+14],E=e[t+15],k=o[0],C=o[1],O=o[2],T=o[3];k=c(k,C,O,T,a,7,s[0]),T=c(T,k,C,O,u,12,s[1]),O=c(O,T,k,C,p,17,s[2]),C=c(C,O,T,k,h,22,s[3]),k=c(k,C,O,T,g,7,s[4]),T=c(T,k,C,O,m,12,s[5]),O=c(O,T,k,C,v,17,s[6]),C=c(C,O,T,k,y,22,s[7]),k=c(k,C,O,T,b,7,s[8]),T=c(T,k,C,O,_,12,s[9]),O=c(O,T,k,C,w,17,s[10]),C=c(C,O,T,k,$,22,s[11]),k=c(k,C,O,T,x,7,s[12]),T=c(T,k,C,O,q,12,s[13]),O=c(O,T,k,C,S,17,s[14]),k=l(k,C=c(C,O,T,k,E,22,s[15]),O,T,u,5,s[16]),T=l(T,k,C,O,v,9,s[17]),O=l(O,T,k,C,$,14,s[18]),C=l(C,O,T,k,a,20,s[19]),k=l(k,C,O,T,m,5,s[20]),T=l(T,k,C,O,w,9,s[21]),O=l(O,T,k,C,E,14,s[22]),C=l(C,O,T,k,g,20,s[23]),k=l(k,C,O,T,_,5,s[24]),T=l(T,k,C,O,S,9,s[25]),O=l(O,T,k,C,h,14,s[26]),C=l(C,O,T,k,b,20,s[27]),k=l(k,C,O,T,q,5,s[28]),T=l(T,k,C,O,p,9,s[29]),O=l(O,T,k,C,y,14,s[30]),k=f(k,C=l(C,O,T,k,x,20,s[31]),O,T,m,4,s[32]),T=f(T,k,C,O,b,11,s[33]),O=f(O,T,k,C,$,16,s[34]),C=f(C,O,T,k,S,23,s[35]),k=f(k,C,O,T,u,4,s[36]),T=f(T,k,C,O,g,11,s[37]),O=f(O,T,k,C,y,16,s[38]),C=f(C,O,T,k,w,23,s[39]),k=f(k,C,O,T,q,4,s[40]),T=f(T,k,C,O,a,11,s[41]),O=f(O,T,k,C,h,16,s[42]),C=f(C,O,T,k,v,23,s[43]),k=f(k,C,O,T,_,4,s[44]),T=f(T,k,C,O,x,11,s[45]),O=f(O,T,k,C,E,16,s[46]),k=d(k,C=f(C,O,T,k,p,23,s[47]),O,T,a,6,s[48]),T=d(T,k,C,O,y,10,s[49]),O=d(O,T,k,C,S,15,s[50]),C=d(C,O,T,k,m,21,s[51]),k=d(k,C,O,T,x,6,s[52]),T=d(T,k,C,O,h,10,s[53]),O=d(O,T,k,C,w,15,s[54]),C=d(C,O,T,k,u,21,s[55]),k=d(k,C,O,T,b,6,s[56]),T=d(T,k,C,O,E,10,s[57]),O=d(O,T,k,C,v,15,s[58]),C=d(C,O,T,k,q,21,s[59]),k=d(k,C,O,T,g,6,s[60]),T=d(T,k,C,O,$,10,s[61]),O=d(O,T,k,C,p,15,s[62]),C=d(C,O,T,k,_,21,s[63]),o[0]=o[0]+k|0,o[1]=o[1]+C|0,o[2]=o[2]+O|0,o[3]=o[3]+T|0},_doFinalize:function(){var t=this._data,n=t.words,r=8*this._nDataBytes,i=8*t.sigBytes;n[i>>>5]|=128<<24-i%32;var o=e.floor(r/4294967296),a=r;n[15+(i+64>>>9<<4)]=16711935&(o<<8|o>>>24)|4278255360&(o<<24|o>>>8),n[14+(i+64>>>9<<4)]=16711935&(a<<8|a>>>24)|4278255360&(a<<24|a>>>8),t.sigBytes=4*(n.length+1),this._process();for(var s=this._hash,u=s.words,c=0;c<4;c++){var l=u[c];u[c]=16711935&(l<<8|l>>>24)|4278255360&(l<<24|l>>>8)}return s},clone:function(){var e=o.clone.call(this);return e._hash=this._hash.clone(),e}});function c(e,t,n,r,i,o,a){var s=e+(t&n|~t&r)+i+a;return(s<>>32-o)+t}function l(e,t,n,r,i,o,a){var s=e+(t&r|n&~r)+i+a;return(s<>>32-o)+t}function f(e,t,n,r,i,o,a){var s=e+(t^n^r)+i+a;return(s<>>32-o)+t}function d(e,t,n,r,i,o,a){var s=e+(n^(t|~r))+i+a;return(s<>>32-o)+t}t.MD5=o._createHelper(u),t.HmacMD5=o._createHmacHelper(u)}(Math),r.MD5)},function(e,t,n){"use strict";function r(e,t){var n;if("undefined"==typeof Symbol||null==e[Symbol.iterator]){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return i(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return i(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,s=!0,u=!1;return{s:function(){n=e[Symbol.iterator]()},n:function(){var e=n.next();return s=e.done,e},e:function(e){u=!0,a=e},f:function(){try{s||null==n.return||n.return()}finally{if(u)throw a}}}}function i(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n=OError.maxTags&&(i._oErrorTags[1]===y?i._oErrorTags.splice(2,1):i._oErrorTags[1]=y),i._oErrorTags.push(r),e}},{key:"getFullInfo",value:function(e){var t={};if(!e)return t;var n=e;if(n.cause&&Object.assign(t,OError.getFullInfo(n.cause)),"object"===o(n.info)&&Object.assign(t,n.info),n._oErrorTags){var i,a=r(n._oErrorTags);try{for(a.s();!(i=a.n()).done;){var s=i.value;Object.assign(t,s.info)}}catch(e){a.e(e)}finally{a.f()}}return t}},{key:"getFullStack",value:function(e){if(!e)return"";var t=e,n=t.stack||"(no stack)";Array.isArray(t._oErrorTags)&&t._oErrorTags.length&&(n+="\n".concat(t._oErrorTags.map((function(e){return e.stack})).join("\n")));var r=t.cause&&OError.getFullStack(t.cause);return r&&(n+="\ncaused by:\n"+r.replace(/^/gm," ")),n}}],(n=[{key:"withInfo",value:function(e){return this.info=e,this}},{key:"withCause",value:function(e){return this.cause=e,this}}])&&s(t.prototype,n),i&&s(t,i),OError}(f(Error));m.maxTags=100;var v=function(e){u(TaggedError,e);var t=c(TaggedError);function TaggedError(){return a(this,TaggedError),t.apply(this,arguments)}return TaggedError}(m),y={name:"TaggedError",message:"... dropped tags",stack:"TaggedError: ... dropped tags"};e.exports=m},,function(e,t,n){"use strict";n.d(t,"d",(function(){return i})),n.d(t,"c",(function(){return o})),n.d(t,"b",(function(){return a})),n.d(t,"a",(function(){return s}));var r=n(48);function i(e,t){return void 0===t&&(t=0),"string"!=typeof e||0===t||e.length<=t?e:e.substr(0,t)+"..."}function o(e,t){var n=e,r=n.length;if(r<=150)return n;t>r&&(t=r);var i=Math.max(t-60,0);i<5&&(i=0);var o=Math.min(i+140,r);return o>r-5&&(o=r),o===r&&(i=Math.max(o-140,0)),n=n.slice(i,o),i>0&&(n="'{snip} "+n),o"+e+"<\/script>"},h=function(){try{r=document.domain&&new ActiveXObject("htmlfile")}catch(e){}var e,t;h=r?function(e){e.write(p("")),e.close();var t=e.parentWindow.Object;return e=null,t}(r):((t=c("iframe")).style.display="none",u.appendChild(t),t.src=String("javascript:"),(e=t.contentWindow.document).open(),e.write(p("document.F=Object")),e.close(),e.F);for(var n=a.length;n--;)delete h.prototype[a[n]];return h()};s[f]=!0,e.exports=Object.create||function(e,t){var n;return null!==e?(d.prototype=i(e),n=new d,d.prototype=null,n[f]=e):n=h(),void 0===t?n:o(n,t)}},function(e,t,n){var r=n(28),i=n(31),o=n(65),a=n(218),s=n(306);r({target:"Object",stat:!0,forced:i((function(){a(1)})),sham:!s},{getPrototypeOf:function(e){return a(o(e))}})},function(e,t,n){var r=n(70),i=n(341).f,o=n(144),a=n(344),s=n(234),u=n(485),c=n(490);e.exports=function(e,t){var n,l,f,d,p,h=e.target,g=e.global,m=e.stat;if(n=g?r:m?r[h]||s(h,{}):(r[h]||{}).prototype)for(l in t){if(d=t[l],f=e.noTargetGet?(p=i(n,l))&&p.value:n[l],!c(g?l:h+(m?".":"#")+l,e.forced)&&void 0!==f){if(typeof d==typeof f)continue;u(d,f)}(e.sham||f&&f.sham)&&o(d,"sham",!0),a(n,l,d,e)}}},function(e,t,n){var r=n(71);e.exports=!r((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},function(e,t,n){var r=n(171);e.exports=function(e){return Object(r(e))}},,,,,,,,,,,,,,,,function(e,t){e.exports={}},function(e,t,n){var r=n(89),i=Math.max,o=Math.min;e.exports=function(e,t){var n=r(e);return n<0?i(n+t,0):o(n,t)}},function(e,t,n){var r=n(298),i=n(211);e.exports=Object.keys||function(e){return r(e,i)}},function(e,t){e.exports={}},function(e,t){e.exports=function(e,t,n){if(!(e instanceof t))throw TypeError("Incorrect "+(n?n+" ":"")+"invocation");return e}},function(e,t,n){var r=n(98),i=n(154),o=n(65),a=n(62),s=n(165),u=[].push,c=function(e){var t=1==e,n=2==e,c=3==e,l=4==e,f=6==e,d=5==e||f;return function(p,h,g,m){for(var v,y,b=o(p),_=i(b),w=r(h,g,3),$=a(_.length),x=0,q=m||s,S=t?q(p,$):n?q(p,0):void 0;$>x;x++)if((d||x in _)&&(y=w(v=_[x],x,b),e))if(t)S[x]=y;else if(y)switch(e){case 3:return!0;case 5:return v;case 6:return x;case 2:u.call(S,v)}else if(l)return!1;return f?-1:c||l?l:S}};e.exports={forEach:c(0),map:c(1),filter:c(2),some:c(3),every:c(4),find:c(5),findIndex:c(6)}},function(e,t,n){var r=n(81);e.exports=Array.isArray||function(e){return"Array"==r(e)}},function(e,t,n){var r=n(31),i=n(37),o=n(226),a=i("species");e.exports=function(e){return o>=51||!r((function(){var t=[];return(t.constructor={})[a]=function(){return{foo:1}},1!==t[e](Boolean).foo}))}},function(e,t,n){"use strict";var r=n(152),i=n(61),o=n(112);e.exports=function(e,t,n){var a=r(t);a in e?i.f(e,a,o(0,n)):e[a]=n}},,function(e,t){e.exports=function(e){return"object"==typeof e?null!==e:"function"==typeof e}},function(e,t,n){var r=n(116),i=n(172),o=n(232);e.exports=r?function(e,t,n){return i.f(e,t,o(1,n))}:function(e,t,n){return e[t]=n,e}},function(e,t){var n=Math.ceil,r=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(e>0?r:n)(e)}},,,,,function(e,t,n){"use strict";(function(e){function r(){return"[object process]"===Object.prototype.toString.call(void 0!==e?e:0)}function i(e,t){return e.require(t)}n.d(t,"b",(function(){return r})),n.d(t,"a",(function(){return i}))}).call(this,n(101))},,function(e,t,n){var r=n(50);e.exports=function(e,t){if(!r(e))return e;var n,i;if(t&&"function"==typeof(n=e.toString)&&!r(i=n.call(e)))return i;if("function"==typeof(n=e.valueOf)&&!r(i=n.call(e)))return i;if(!t&&"function"==typeof(n=e.toString)&&!r(i=n.call(e)))return i;throw TypeError("Can't convert object to primitive value")}},function(e,t,n){"use strict";var r={}.propertyIsEnumerable,i=Object.getOwnPropertyDescriptor,o=i&&!r.call({1:2},1);t.f=o?function(e){var t=i(this,e);return!!t&&t.enumerable}:r},function(e,t,n){var r=n(31),i=n(81),o="".split;e.exports=r((function(){return!Object("z").propertyIsEnumerable(0)}))?function(e){return"String"==i(e)?o.call(e,""):Object(e)}:Object},function(e,t,n){var r=n(210),i=n(156),o=r("keys");e.exports=function(e){return o[e]||(o[e]=i(e))}},function(e,t){var n=0,r=Math.random();e.exports=function(e){return"Symbol("+String(void 0===e?"":e)+")_"+(++n+r).toString(36)}},function(e,t,n){var r=n(298),i=n(211).concat("length","prototype");t.f=Object.getOwnPropertyNames||function(e){return r(e,i)}},function(e,t,n){var r=n(31),i=/#|\.prototype\./,o=function(e,t){var n=s[a(e)];return n==c||n!=u&&("function"==typeof t?r(t):!!t)},a=o.normalize=function(e){return String(e).replace(i,".").toLowerCase()},s=o.data={},u=o.NATIVE="N",c=o.POLYFILL="P";e.exports=o},function(e,t,n){"use strict";var r,i,o=n(213),a=n(300),s=RegExp.prototype.exec,u=String.prototype.replace,c=s,l=(r=/a/,i=/b*/g,s.call(r,"a"),s.call(i,"a"),0!==r.lastIndex||0!==i.lastIndex),f=a.UNSUPPORTED_Y||a.BROKEN_CARET,d=void 0!==/()??/.exec("")[1];(l||d||f)&&(c=function(e){var t,n,r,i,a=this,c=f&&a.sticky,p=o.call(a),h=a.source,g=0,m=e;return c&&(-1===(p=p.replace("y","")).indexOf("g")&&(p+="g"),m=String(e).slice(a.lastIndex),a.lastIndex>0&&(!a.multiline||a.multiline&&"\n"!==e[a.lastIndex-1])&&(h="(?: "+h+")",m=" "+m,g++),n=new RegExp("^(?:"+h+")",p)),d&&(n=new RegExp("^"+h+"$(?!\\s)",p)),l&&(t=a.lastIndex),r=s.call(c?n:a,m),c?r?(r.input=r.input.slice(g),r[0]=r[0].slice(g),r.index=a.lastIndex,a.lastIndex+=r[0].length):a.lastIndex=0:l&&r&&(a.lastIndex=a.global?r.index+r[0].length:t),d&&r&&r.length>1&&u.call(r[0],n,(function(){for(i=1;i")})),l="$0"==="a".replace(/./,"$0"),f=o("replace"),d=!!/./[f]&&""===/./[f]("a","$0"),p=!i((function(){var e=/(?:)/,t=e.exec;e.exec=function(){return t.apply(this,arguments)};var n="ab".split(e);return 2!==n.length||"a"!==n[0]||"b"!==n[1]}));e.exports=function(e,t,n,f){var h=o(e),g=!i((function(){var t={};return t[h]=function(){return 7},7!=""[e](t)})),m=g&&!i((function(){var t=!1,n=/a/;return"split"===e&&((n={}).constructor={},n.constructor[u]=function(){return n},n.flags="",n[h]=/./[h]),n.exec=function(){return t=!0,null},n[h](""),!t}));if(!g||!m||"replace"===e&&(!c||!l||d)||"split"===e&&!p){var v=/./[h],y=n(h,""[e],(function(e,t,n,r,i){return t.exec===a?g&&!i?{done:!0,value:v.call(t,n,r)}:{done:!0,value:e.call(n,t,r)}:{done:!1}}),{REPLACE_KEEPS_$0:l,REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE:d}),b=y[0],_=y[1];r(String.prototype,e,b),r(RegExp.prototype,h,2==t?function(e,t){return _.call(e,this,t)}:function(e){return _.call(e,this)})}f&&s(RegExp.prototype[h],"sham",!0)}},function(e,t,n){var r=n(81),i=n(159);e.exports=function(e,t){var n=e.exec;if("function"==typeof n){var o=n.call(e,t);if("object"!=typeof o)throw TypeError("RegExp exec method returned something other than an Object or null");return o}if("RegExp"!==r(e))throw TypeError("RegExp#exec called on incompatible receiver");return i.call(e,t)}},function(e,t,n){var r=n(37),i=n(113),o=n(61),a=r("unscopables"),s=Array.prototype;null==s[a]&&o.f(s,a,{configurable:!0,value:i(null)}),e.exports=function(e){s[a][e]=!0}},function(e,t,n){"use strict";var r=n(308),i=n(313);e.exports=r("Map",(function(e){return function(){return e(this,arguments.length?arguments[0]:void 0)}}),i)},function(e,t,n){var r=n(220),i=n(136),o=n(37)("iterator");e.exports=function(e){if(null!=e)return e[o]||e["@@iterator"]||i[r(e)]}},function(e,t,n){var r=n(50),i=n(139),o=n(37)("species");e.exports=function(e,t){var n;return i(e)&&("function"!=typeof(n=e.constructor)||n!==Array&&!i(n.prototype)?r(n)&&null===(n=n[o])&&(n=void 0):n=void 0),new(void 0===n?Array:n)(0===t?0:t)}},function(e,t){!function(e,t,n){"use strict";var r=n.PassField=n.PassField||{};r.Config=r.Config||{},r.Config.locales={en:{lower:!0,msg:{pass:"password",and:"and",showPass:"Show password",hidePass:"Hide password",genPass:"Random password",passTooShort:"password is too short (min. length: {})",noCharType:"password must contain {}",digits:"digits",letters:"letters",letters_up:"letters in UPPER case",symbols:"symbols",inBlackList:"password is in list of top used passwords",passRequired:"password is required",equalTo:"password is equal to login",repeat:"password consists of repeating characters",badChars:"password contains bad characters: “{}”",weakWarn:"weak",invalidPassWarn:"*",weakTitle:"This password is weak",generateMsg:"To generate a strong password, click {} button."}},de:{lower:!1,msg:{pass:"Passwort",and:"und",showPass:"Passwort anzeigen",hidePass:"Passwort verbergen",genPass:"Zufallspasswort",passTooShort:"Passwort ist zu kurz (Mindestlänge: {})",noCharType:"Passwort muss {} enthalten",digits:"Ziffern",letters:"Buchstaben",letters_up:"Buchstaben in GROSSSCHRIFT",symbols:"Symbole",inBlackList:"Passwort steht auf der Liste der beliebtesten Passwörter",passRequired:"Passwort wird benötigt",equalTo:"Passwort ist wie Anmeldung",repeat:"Passwort besteht aus sich wiederholenden Zeichen",badChars:"Passwort enthält ungültige Zeichen: “{}”",weakWarn:"Schwach",invalidPassWarn:"*",weakTitle:"Dieses Passwort ist schwach",generateMsg:"Klicken Sie auf den {}-Button, um ein starkes Passwort zu generieren."}},fr:{lower:!0,msg:{pass:"mot de passe",and:"et",showPass:"Montrer le mot de passe",hidePass:"Cacher le mot de passe",genPass:"Mot de passe aléatoire",passTooShort:"le mot de passe est trop court (min. longueur: {})",noCharType:"le mot de passe doit contenir des {}",digits:"chiffres",letters:"lettres",letters_up:"lettres en MAJUSCULES",symbols:"symboles",inBlackList:"le mot de passe est dans la liste des plus utilisés",passRequired:"le mot de passe est requis",equalTo:"le mot de passe est le même que l'identifiant",repeat:"le mot de passe est une répétition de caractères",badChars:"le mot de passe contient des caractères incorrects: “{}”",weakWarn:"faible",invalidPassWarn:"*",weakTitle:"Ce mot de passe est faible",generateMsg:"Pour créer un mot de passe fort cliquez sur le bouton {}."}},it:{lower:!1,msg:{pass:"password",and:"e",showPass:"Mostra password",hidePass:"Nascondi password",genPass:"Password casuale",passTooShort:"la password è troppo breve (lunghezza min.: {})",noCharType:"la password deve contenere {}",digits:"numeri",letters:"lettere",letters_up:"lettere in MAIUSCOLO",symbols:"simboli",inBlackList:"la password è nella lista delle password più usate",passRequired:"è necessaria una password",equalTo:"la password è uguale al login",repeat:"la password è composta da caratteri che si ripetono",badChars:"la password contiene caratteri non accettati: “{}”",weakWarn:"debole",invalidPassWarn:"*",weakTitle:"Questa password è debole",generateMsg:"Per generare una password forte, clicca sul tasto {}."}},ru:{lower:!0,msg:{pass:"пароль",and:"и",showPass:"Показать пароль",hidePass:"Скрыть пароль",genPass:"Случайный пароль",passTooShort:"пароль слишком короткий (мин. длина: {})",noCharType:"в пароле должны быть {}",digits:"цифры",letters:"буквы",letters_up:"буквы в ВЕРХНЕМ регистре",symbols:"символы",inBlackList:"этот пароль часто используется в Интернете",passRequired:"пароль обязателен",equalTo:"пароль совпадает с логином",repeat:"пароль состоит из повторяющихся символов",badChars:"в пароле есть недопустимые символы: «{}»",weakWarn:"слабый",invalidPassWarn:"*",weakTitle:"Пароль слабый, его легко взломать",generateMsg:"Чтобы сгенерировать пароль, нажмите кнопку {}."}},ua:{lower:!0,msg:{pass:"пароль",and:"i",showPass:"Показати пароль",hidePass:"Сховати пароль",genPass:"Випадковий пароль",passTooShort:"пароль є занадто коротким (мiн. довжина: {})",noCharType:"пароль повинен містити {}",digits:"цифри",letters:"букви",letters_up:"букви у ВЕРХНЬОМУ регістрі",symbols:"cимволи",inBlackList:"пароль входить до списку паролей, що використовуються найчастіше",passRequired:"пароль є обов'язковим",equalTo:"пароль та логін однакові",repeat:"пароль містить повторювані символи",badChars:"пароль містить неприпустимі символи: «{}»",weakWarn:"слабкий",invalidPassWarn:"*",weakTitle:"Цей пароль є слабким",generateMsg:"Щоб ​​створити надійний пароль, натисніть кнопку {}."}},es:{lower:!0,msg:{pass:"contraseña",and:"y",showPass:"Mostrar contraseña",hidePass:"Ocultar contraseña",genPass:"Contraseña aleatoria",passTooShort:"contraseña demasiado corta (longitud mín.: {})",noCharType:"la contraseña debe contener {}",digits:"dígitos",letters:"letras",letters_up:"letras en MAYÚSCULAS",symbols:"símbolos",inBlackList:"la contraseña está en la lista de las contraseñas más usadas",passRequired:"se requiere contraseña",equalTo:"la contraseña es igual al inicio de sesión",repeat:"la contraseña tiene caracteres repetidos",badChars:"la contraseña contiene caracteres no permitidos: “{}”",weakWarn:"débil",invalidPassWarn:"*",weakTitle:"Esta contraseña es débil",generateMsg:"Para generar una contraseña segura, haga clic en el botón de {}."}},el:{lower:!0,msg:{pass:"πρόσβασης",and:"και",showPass:"Προβολή κωδικού πρόσβασης",hidePass:"Απόκρυψη κωδικού πρόσβασης",genPass:"Τυχαίος κωδικός πρόσβασης",passTooShort:"ο κωδικός πρόσβασης είναι πολύ μικρός (ελάχιστο μήκος: {})",noCharType:"ο κωδικός πρόσβασης πρέπει να περιέχει {}",digits:"ψηφία",letters:"λατινικά γράμματα",letters_up:"λατινικά γράμματα με ΚΕΦΑΛΑΙΑ",symbols:"σύμβολα",inBlackList:"ο κωδικός πρόσβασης βρίσκεται σε κατάλογο δημοφιλέστερων κωδικών",passRequired:"απαιτείται κωδικός πρόσβασης",equalTo:"ο κωδικός είναι όμοιος με το όνομα χρήστη",repeat:"ο κωδικός αποτελείται από επαναλαμβανόμενους χαρακτήρες",badChars:"ο κωδικός περιέχει μη επιτρεπτούς χαρακτήρες: “{}”",weakWarn:"αδύναμος",invalidPassWarn:"*",weakTitle:"Αυτός ο κωδικός πρόσβασης είναι αδύναμος",generateMsg:"Για να δημιουργήσετε δυνατό κωδικό πρόσβασης, κάντε κλικ στο κουμπί {}."}},pt:{lower:!0,msg:{pass:"senha",and:"e",showPass:"Mostrar senha",hidePass:"Ocultar senha",genPass:"Senha aleatória",passTooShort:"senha muito curta (tamanho mínimo: {})",noCharType:"Senha deve conter {}",digits:"dígito",letters:"letras",letters_up:"letras maiúsculas",symbols:"símbolos",inBlackList:"senha está na lista das senhas mais usadas",passRequired:"senha é obrigatória",equalTo:"senha igual ao login",repeat:"senha consiste em uma repetição de caracteres",badChars:"senha tem caracteres inválidos: “{}”",weakWarn:"fraca",invalidPassWarn:"*",weakTitle:"Esta senha é fraca",generateMsg:"Para gerar uma senha forte, clique no botão {}."}}}}(window.jQuery,document,window),function(e,t,n,r){"use strict";var i=n.PassField=n.PassField||{};i.CharTypes={DIGIT:"digits",LETTER:"letters",LETTER_UP:"letters_up",SYMBOL:"symbols",UNKNOWN:"unknown"},i.CheckModes={MODERATE:0,STRICT:1},i.Config={defaults:{pattern:"abcdef12",acceptRate:.8,allowEmpty:!0,isMasked:!0,showToggle:!0,showGenerate:!0,showWarn:!0,showTip:!0,tipPopoverStyle:{},strengthCheckTimeout:500,validationCallback:null,blackList:[],locale:"",localeMsg:{},warnMsgClassName:"help-inline",errorWrapClassName:"error",allowAnyChars:!0,checkMode:i.CheckModes.MODERATE,chars:{digits:"1234567890",letters:"abcdefghijklmnopqrstuvwxyzßабвгедёжзийклмнопрстуфхцчшщъыьэюяґєåäâáàãéèêëíìîїóòôõöüúùûýñçøåæþðαβγδεζηθικλμνξοπρσςτυφχψω",letters_up:"ABCDEFGHIJKLMNOPQRSTUVWXYZАБВГЕДЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯҐЄÅÄÂÁÀÃÉÈÊËÍÌÎЇÓÒÔÕÖÜÚÙÛÝÑÇØÅÆÞÐΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩ",symbols:"@#$%^&*()-_=+[]{};:<>/?!"},events:{generated:null,switched:null},nonMatchField:null,length:{min:null,max:null},maskBtn:{textMasked:"abc",textUnmasked:"•••",className:!1,classMasked:!1,classUnmasked:!1}},locales:i.Config?i.Config.locales:{},blackList:["password","123456","12345678","abc123","qwerty","monkey","letmein","dragon","111111","baseball","iloveyou","trustno1","1234567","sunshine","master","123123","welcome","shadow","ashley","football","jesus","michael","ninja","mustang","password1","p@ssw0rd","miss","root","secret"],generationChars:{digits:"1234567890",letters:"abcdefghijklmnopqrstuvwxyz",letters_up:"ABCDEFGHIJKLMNOPQRSTUVWXYZ"},dataAttr:"PassField.Field"},i.Field=function(a,s){function u(t){if(Q.showTip)if(Q.tipPopoverStyle&&e&&"function"==typeof e.fn.popover)e(Z.mainInput).popover(o.extend({title:null,placement:Q.tipPopoverStyle.placement||function(t,r){var i=e(r).position().top-e(n).scrollTop(),o=e(n).height()-i;return o>300||o>i?"bottom":"top"},animation:!1},Q.tipPopoverStyle,{trigger:"manual",html:!0,content:function(){return ue}}));else{Z.tip=O("div",{id:"tip",className:"tip"},{position:"absolute",margin:"0",padding:"0",width:t.width+"px"}),F(Z.mainInput,Z.tip);var r=O("div",{id:"tip-arr-wrap",className:"tip-arr-wrap"});Z.tip.appendChild(r),r.appendChild(O("div",{id:"tip-arr",className:"tip-arr"})),r.appendChild(O("div",{id:"tip-arr-in",className:"tip-arr-in"})),Z.tipBody=O("div",{id:"tip-body",className:"tip-body"}),Z.tip.appendChild(Z.tipBody)}}function c(){Z.genBtn&&(Z.genBtn.style.display=re||ie&&!oe?"block":"none"),Z.maskBtn&&(Z.maskBtn.style.display=re||ie&&!ae?"block":"none"),f();var e=P(d()),t=l();Z.maskBtn&&"none"!=Z.maskBtn.style.display&&(t+=R(Z.maskBtn,"width"),M(Z.maskBtn,{top:e.top,left:e.left+e.width-t,height:e.height})),Z.genBtn&&"none"!=Z.genBtn.style.display&&(t+=R(Z.genBtn,"width"),M(Z.genBtn,{top:e.top,left:e.left+e.width-t,height:e.height}),Z.genBtnInner.style.marginTop=Math.max(0,Math.round((e.height-19)/2))+"px"),Z.placeholder&&"none"!=Z.placeholder.style.display&&M(Z.placeholder,{top:e.top,left:e.left+7,height:e.height}),Z.tip&&"none"!=Z.tip.style.display&&M(Z.tip,{left:e.left,top:e.top+e.height,width:e.width})}function l(){var e=R(d(),"paddingRight");return Math.max(fe,e)}function f(){if(Q.showTip)if(Z.tip)Z.tip.style.display=te&&ie?"block":"none";else if(te&&ie){if(!se||ue!=se){var t=e(Z.mainInput).data("popover")||e(Z.mainInput).data("bs.popover"),n=t.options,r=n.animation;se&&(n.animation=!1);var i=d().offsetWidth-2,o=t.$tip;o?o.width(i):t.options.template&&(t.options.template=t.options.template.replace('class="popover"','class="popover" style="width: '+i+'px"')),Z.clearInput&&(t.$element=e(d())),e(Z.mainInput).popover("show"),se=ue,n.animation=r}}else se&&(se=null,e(Z.mainInput).popover("hide"))}function d(){return ee?Z.mainInput:Z.clearInput||Z.mainInput}function p(){d().focus()}function h(e){var t="mouseover"===e.type,n=e.relatedTarget?e.relatedTarget:t?e.fromElement:e.toElement;(!n||!n.id||0!=n.id.indexOf(ce+"btn")&&n!==Z.mainInput&&n!==Z.clearInput)&&(re=t,c())}function g(e){var t,n=e?e.which||e.keyCode:null,r=n===pe||n===de;t=Z.clearInput?ee?Z.clearInput.value=Z.mainInput.value:Z.mainInput.value=Z.clearInput.value:Z.mainInput.value,Q.strengthCheckTimeout>0&&!te&&!r?(Y&&clearTimeout(Y),Y=setTimeout(q,Q.strengthCheckTimeout)):q(),Z.placeholder&&!t&&(Z.placeholder.style.display="block"),m()}function m(){if(Z.passLengthChecker){var e=d().value;ee&&(e=e.replace(/./g,K.passSymbol)),N(Z.passLengthChecker,e);var t=Z.passLengthChecker.offsetWidth;t+=R(Z.mainInput,"paddingLeft");var n=0,r=I(d()).width,i=!1,o=l();if(Z.maskBtn){var a=t>r-(n=R(Z.maskBtn,"width"))-o;ae!=a&&(i=!0,ae=a)}if(Z.genBtn){var s=t>r-n-R(Z.genBtn,"width")-o;oe!=s&&(i=!0,oe=s)}i&&c()}}function v(){Z.placeholder&&(Z.placeholder.style.display="none")}function y(){G&&(clearTimeout(G),G=null),X&&(clearTimeout(X),X=null),ie=!0,c()}function b(){G=setTimeout((function(){G=null,ie=!1,c(),Q.isMasked&&!X&&(X=setTimeout((function(){X=null,w(!0,!1)}),1500))}),100)}function _(){te&&q()}function w(e,t){t===r&&(t=!0);var n=e!=ee;if(e=e===r?!ee:!!e,K.changeType){var i=d(),a=$(i);i.setAttribute("type",e?"password":"text"),t&&(x(i,a),i.focus())}else{var s=j(d(),"display")||"block",u=e?Z.clearInput:Z.mainInput,l=e?Z.mainInput:Z.clearInput;ee!=e&&o.each(["paddingRight","width","backgroundImage","backgroundPosition","backgroundRepeat","backgroundAttachment","border"],(function(e){var t=u.style[e];t&&(l.style[e]=t)}));var f=$(u);l.style.display=s,u.style.display="none",l.value=u.value,t&&(x(l,f),l.focus()),Z.mainInput.nextSibling!=Z.clearInput&&F(Z.mainInput,Z.clearInput)}Z.maskBtn&&(N(Z.maskBtn,e?Q.maskBtn.textMasked:Q.maskBtn.textUnmasked),e?(Q.maskBtn.classUnmasked&&B(Z.maskBtn,Q.maskBtn.classUnmasked,!0),Q.maskBtn.classMasked&&U(Z.maskBtn,Q.maskBtn.classMasked,!0)):(Q.maskBtn.classMasked&&B(Z.maskBtn,Q.maskBtn.classMasked,!0),Q.maskBtn.classUnmasked&&U(Z.maskBtn,Q.maskBtn.classUnmasked,!0)),Z.maskBtn.title=e?z.msg.showPass:z.msg.hidePass),ee=e,m(),c(),n&&V("switched",ee)}function $(e){return"number"==typeof e.selectionStart&&"number"==typeof e.selectionEnd?{start:e.selectionStart,end:e.selectionEnd}:null}function x(e,t){t&&"number"==typeof e.selectionStart&&"number"==typeof e.selectionEnd&&(e.selectionStart=t.start,e.selectionEnd=t.end)}function q(){Y&&(clearTimeout(Y),Y=null);var e=d().value,t=function(e){var t=k(Q.pattern,i.CharTypes.SYMBOL),n=k(e,Q.allowAnyChars?i.CharTypes.SYMBOL:i.CharTypes.UNKNOWN),r=[],a=0;o.each(t,(function(e){if(a++,!n[e]){var t=z.msg[e];if(e==i.CharTypes.SYMBOL){var o=Q.chars[e];o.length>4&&(o=o.substring(0,4)),t=t+" ("+o+")"}r.push(t)}}));var s=1-r.length/a;if(r.length&&(r=[S(r)]),Q.checkMode==i.CheckModes.MODERATE){var u=0;o.each(n,(function(e){t[e]||u++})),s+=u/a}var c=Q.pattern.length,l=e.length/c-1;if(Q.length&&Q.length.min&&e.lengthc&&(c=Q.length.min)),0>l?(s+=l,r.push(z.msg.passTooShort.replace("{}",c.toString()))):Q.checkMode==i.CheckModes.MODERATE&&(s+=l/a),e.length>2){for(var f=e.charAt(0),d=!0,p=0;ps&&(s=0),s>1&&(s=1),{strength:s,messages:r,charTypes:n}}(e);if(0==e.length)t={strength:Q.allowEmpty?0:null,messages:[z.msg.passRequired]};else{!Q.allowAnyChars&&t.charTypes[i.CharTypes.UNKNOWN]&&(t={strength:null,messages:[z.msg.badChars.replace("{}",t.charTypes[i.CharTypes.UNKNOWN])]}),delete t.charTypes;var n=!1;o.each(Q.blackList,(function(t){return t!=e||(n=!0,!1)})),n&&(t={strength:0,messages:[z.msg.inBlackList]}),e&&e===function(){if(!Q.nonMatchField)return null;var e=L(Q.nonMatchField);return e?e.value:null}()&&(t={strength:0,messages:[z.msg.equalTo]})}if("function"==typeof Q.validationCallback){var r,a,s=Q.validationCallback(Z.mainInput,t);s&&s.messages&&o.isArray(s.messages)&&(r=s.messages),s&&Object.prototype.hasOwnProperty.call(s,"strength")&&("number"==typeof s.strength||null===s.strength)&&(a=s.strength),r&&r.length?(t.messages=r,t.strength=a):a&&a>t.strength&&(t.strength=a)}return 0==e.length&&Q.allowEmpty?(E(),ne={strength:0},!0):null===t.strength||t.strength",o=o.toUpperCase()),(r+=o+t[i].substring(1))&&"."!=r.charAt(r.length-1)&&(r+=".")}if(r&&"."!=r.charAt(r.length-1)&&(r+="."),ne={strength:e,message:r},Z.warnMsg&&(N(Z.warnMsg,n),Z.warnMsg.title=r,Q.errorWrapClassName&&U(Z.wrapper,Q.errorWrapClassName,!0)),Q.showTip){var a=r;Z.genBtn&&(a+="
"+z.msg.generateMsg.replace("{}",'
')),ue=a,Z.tipBody&&N(Z.tipBody,a)}te=!0,c()}(t.strength,t.messages),!1):(E(),ne={strength:t.strength},!0)}function S(e){for(var t=e[0],n=1;n=0)||(a=e,!1)})),n[a]=(n[a]||"")+i}return n}function C(e){return ce+e}function O(e,t,n){return t.id&&(t.id=function(e){return ce+e+"-"+W}(t.id)),t.className&&(t.className=C(t.className)),o.newEl(e,t,n)}function T(e){try{return e.getBoundingClientRect()}catch(e){return{top:0,left:0}}}function D(e){var t=e.ownerDocument;if(!t)return{top:0,left:0};var r=T(e);return{top:r.top+(n.pageYOffset||0)-(t.documentElement.clientTop||0),left:r.left+(n.pageXOffset||0)-(t.documentElement.clientLeft||0)}}function A(e){var n;try{n=e.offsetParent}catch(e){}for(n||(n=t.documentElement);n&&"html"!=n.nodeName.toLowerCase()&&"static"===j(n,"position");)n=n.offsetParent;return n||t.documentElement}function I(e){return{width:e.offsetWidth,height:e.offsetHeight}}function P(e){return o.extend(D(e),I(e))}function M(e,t){if(t.height&&!isNaN(t.height)&&(e.style.height=t.height+"px",e.style.lineHeight=t.height+"px"),t.width&&!isNaN(t.width)&&(e.style.width=t.width+"px"),t.top||t.left){if("none"==j(e,"display"))return e.style.top=t.top+"px",void(e.style.left=t.left+"px");var n,r,i;if(i=D(e),((r=j(e,"top")||0)+(n=j(e,"left")||0)+"").indexOf("auto")>-1){var o=function(e){var t,n={top:0,left:0};if("fixed"===j(e,"position"))t=T(e);else{var r=A(e);t=D(e),"html"!=r.nodeName.toLowerCase()&&(n=D(r)),n.top+=R(r,"borderTopWidth"),n.left+=R(r,"borderLeftWidth")}return{top:t.top-n.top-R(e,"marginTop"),left:t.left-n.left-R(e,"marginLeft")}}(e);r=o.top,n=o.left}else r=parseFloat(r)||0,n=parseFloat(n)||0;t.top&&(e.style.top=t.top-i.top+r+"px"),t.left&&(e.style.left=t.left-i.left+n+"px")}}function j(e,t){var r="function"==typeof n.getComputedStyle?n.getComputedStyle(e,null):e.currentStyle;return r?r[t]:null}function R(e,t){var n=j(e,t);if(!n)return 0;var r=parseFloat(n);return isNaN(r)?0:r}function F(e,t){e.parentNode&&e.parentNode.insertBefore(t,e.nextSibling)}function N(e,n){try{e.innerHTML=n}catch(i){var r=t.createElement("c");for(r.innerHTML=n;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(r)}}function L(e){return"string"==typeof e?t.getElementById(e):e.jquery?e[0]:e}function U(e,t,n){H(e,t,n)||(e.className=e.className+(e.className?" ":"")+(!0===n?t:C(t)))}function B(e,t,n){H(e,t,n)&&(e.className=(" "+e.className+" ").replace((!0===n?t:C(t))+" ","").replace(/^\s+|\s+$/g,""))}function H(e,t,n){return t=" "+(!0===n?t:C(t))+" ",(" "+e.className+" ").replace(/[\n\t]/g," ").indexOf(t)>-1}function V(t,n){if(e)try{e(Z.mainInput).trigger(le+t,n)}catch(e){}if(Q.events&&"function"==typeof Q.events[t])try{Q.events[t].call(Z.mainInput,n)}catch(e){}}var z,W,Y,G,X,K,J=i.Config,Z={},Q=o.extend({},J.defaults,s),ee=!0,te=!1,ne=null,re=!1,ie=!1,oe=!1,ae=!1,se=!1,ue=null,ce="a_pf-",le="pass:",fe=5,de=46,pe=8;this.toggleMasking=function(e){w(e)},this.setPass=function(e){Z.mainInput.value=e,Z.clearInput&&(Z.clearInput.value=e),g()},this.validatePass=q,this.getPassValidationMessage=function(){return ne?ne.message:null},this.getPassStrength=function(){return ne?ne.strength:-1},function(){Q.blackList=(Q.blackList||[]).concat(i.Config.blackList),"string"==typeof a&&(a=t.getElementById(a)),Z.mainInput=a,Z.mainInput&&(function(){var e=Q.locale;!e&&navigator.language&&(e=navigator.language.replace(/\-.*/g,"")),e&&(z=J.locales[e]),z&&(z=o.extend({},J.locales.en,z)),z||(z=o.extend({},J.locales.en)),Q.localeMsg&&o.extend(z.msg,Q.localeMsg)}(),(W=Z.mainInput.id)||(W="i"+Math.round(1e5*Math.random()),Z.mainInput.id=W),function(){var e=!0,n=!0,r=t.createElement("input");"placeholder"in r||(e=!1),r.setAttribute("style","position:absolute;left:-10000px;top:-10000px;"),t.body.appendChild(r);try{r.setAttribute("type","password")}catch(e){n=!1}t.body.removeChild(r);var i=t.createElement("div");i.setAttribute("style","display:inline-block"),i.style.paddingLeft=i.style.width="1px",t.body.appendChild(i);var o=2==i.offsetWidth,a="inline-block"===j(i,"display");t.body.removeChild(i);var s=navigator.userAgent.indexOf("AppleWebKit")>=0||navigator.userAgent.indexOf("Opera")>=0||navigator.userAgent.indexOf("Firefox")>=0&&navigator.platform.indexOf("Mac")>=0?"•":"●";K={placeholders:e,changeType:n,boxModel:o,hasInlineBlock:a,passSymbol:s}}(),function(){var e=P(Z.mainInput);e.top+=R(Z.mainInput,"marginTop"),Z.wrapper=Z.mainInput.parentNode,U(Z.wrapper,"wrap"),K.hasInlineBlock||U(Z.wrapper,"wrap-no-ib"),"static"==j(Z.wrapper,"position")&&(Z.wrapper.style.position="relative"),Q.length&&Q.length.max&&Z.mainInput.setAttribute("maxLength",Q.length.max.toString()),function(){if(!K.changeType){Z.clearInput=O("input",{type:"text",id:"txt-clear",className:"txt-clear",value:Z.mainInput.value},{display:"none"});var e=Z.mainInput.className;e&&U(Z.clearInput,e,!0);var t=Z.mainInput.style.cssText;t&&(Z.clearInput.style.cssText=t),o.each(["maxLength","size","placeholder"],(function(e){var t=Z.mainInput.getAttribute(e);t&&Z.clearInput.setAttribute(e,t)})),F(Z.mainInput,Z.clearInput)}U(Z.mainInput,"txt-pass")}(),Q.showWarn&&(Z.warnMsg=O("div",{id:"warn",className:"warn"},{margin:"0 0 0 3px"}),Q.warnMsgClassName&&U(Z.warnMsg,Q.warnMsgClassName,!0),F(Z.clearInput||Z.mainInput,Z.warnMsg)),Q.showToggle&&(Z.maskBtn=O("div",{id:"btn-mask",className:"btn-mask",title:z.msg.showPass},{position:"absolute",margin:"0",padding:"0"}),U(Z.maskBtn,"btn"),Q.maskBtn.className&&U(Z.maskBtn,Q.maskBtn.className,!0),Q.maskBtn.classMasked&&U(Z.maskBtn,Q.maskBtn.classMasked,!0),N(Z.maskBtn,Q.maskBtn.textMasked),F(Z.mainInput,Z.maskBtn)),Q.showGenerate&&(Z.genBtn=O("div",{id:"btn-gen",className:"btn-gen",title:z.msg.genPass},{position:"absolute",margin:"0",padding:"0"}),U(Z.genBtn,"btn"),F(Z.mainInput,Z.genBtn),Z.genBtnInner=O("div",{id:"btn-gen-i",className:"btn-gen-i",title:z.msg.genPass}),Z.genBtn.appendChild(Z.genBtnInner)),u(e),function(e){if(K.placeholders)!Z.mainInput.getAttribute("placeholder")&&Z.mainInput.getAttribute("data-placeholder")&&Z.mainInput.setAttribute("placeholder",Z.mainInput.getAttribute("data-placeholder"));else{var t=Z.mainInput.getAttribute("placeholder")||Z.mainInput.getAttribute("data-placeholder");t&&(Z.placeholder=O("div",{id:"placeholder",className:"placeholder"},{position:"absolute",margin:"0",padding:"0",height:e.height+"px",lineHeight:e.height+"px"}),N(Z.placeholder,t),F(Z.mainInput,Z.placeholder))}}(e),K.passSymbol&&(Z.passLengthChecker=O("div",{id:"len"},{position:"absolute",height:j(Z.mainInput,"height"),top:"-10000px",left:"-10000px",display:"block",color:"transparent",border:"none"}),F(Z.mainInput,Z.passLengthChecker),setTimeout((function(){o.each(["marginLeft","fontFamily","fontSize","fontWeight","fontStyle","fontVariant"],(function(e){var t=j(Z.mainInput,e);t&&(Z.passLengthChecker.style[e]=t)}))}),50)),setTimeout(c,0)}(),function(){if(o.each(Z.clearInput?[Z.mainInput,Z.clearInput]:[Z.mainInput],(function(e){o.attachEvent(e,"onkeyup",g),o.attachEvent(e,"onfocus",y),o.attachEvent(e,"onblur",b),o.attachEvent(e,"onmouseover",h),o.attachEvent(e,"onmouseout",h),Z.placeholder&&o.attachEvent(e,"onkeydown",v)})),o.attachEvent(n,"onresize",c),Z.maskBtn&&(o.attachEvent(Z.maskBtn,"onclick",(function(){w()})),o.attachEvent(Z.maskBtn,"onmouseover",h),o.attachEvent(Z.maskBtn,"onmouseout",h)),Z.genBtn&&(o.attachEvent(Z.genBtn,"onclick",(function(){!function(){var e=function(){var e="",t=k(Q.pattern,i.CharTypes.SYMBOL),n=[];return o.each(t,(function(e,t){for(var r=0;r0?i(r(e),9007199254740991):0}},,function(e,t,n){"use strict";n(6);var r,i=n(28),o=n(55),a=n(370),s=n(43),u=n(302),c=n(64),l=n(137),f=n(56),d=n(371),p=n(316),h=n(216).codeAt,g=n(539),m=n(97),v=n(540),y=n(82),b=s.URL,_=v.URLSearchParams,w=v.getState,$=y.set,x=y.getterFor("URL"),q=Math.floor,S=Math.pow,E=/[A-Za-z]/,k=/[\d+-.A-Za-z]/,C=/\d/,O=/^(0x|0X)/,T=/^[0-7]+$/,D=/^\d+$/,A=/^[\dA-Fa-f]+$/,I=/[\u0000\u0009\u000A\u000D #%/:?@[\\]]/,P=/[\u0000\u0009\u000A\u000D #/:?@[\\]]/,M=/^[\u0000-\u001F ]+|[\u0000-\u001F ]+$/g,j=/[\u0009\u000A\u000D]/g,R=function(e,t){var n,r,i;if("["==t.charAt(0)){if("]"!=t.charAt(t.length-1))return"Invalid host";if(!(n=N(t.slice(1,-1))))return"Invalid host";e.host=n}else if(Y(e)){if(t=g(t),I.test(t))return"Invalid host";if(null===(n=F(t)))return"Invalid host";e.host=n}else{if(P.test(t))return"Invalid host";for(n="",r=p(t),i=0;i4)return e;for(n=[],r=0;r1&&"0"==i.charAt(0)&&(o=O.test(i)?16:8,i=i.slice(8==o?1:2)),""===i)a=0;else{if(!(10==o?D:8==o?T:A).test(i))return e;a=parseInt(i,o)}n.push(a)}for(r=0;r=S(256,5-t))return null}else if(a>255)return null;for(s=n.pop(),r=0;r6)return;for(r=0;d();){if(i=null,r>0){if(!("."==d()&&r<4))return;f++}if(!C.test(d()))return;for(;C.test(d());){if(o=parseInt(d(),10),null===i)i=o;else{if(0==i)return;i=10*i+o}if(i>255)return;f++}u[c]=256*u[c]+i,2!=++r&&4!=r||c++}if(4!=r)return;break}if(":"==d()){if(f++,!d())return}else if(d())return;u[c++]=t}else{if(null!==l)return;f++,l=++c}}if(null!==l)for(a=c-l,c=7;0!=c&&a>0;)s=u[c],u[c--]=u[l+a-1],u[l+--a]=s;else if(8!=c)return;return u},L=function(e){var t,n,r,i;if("number"==typeof e){for(t=[],n=0;n<4;n++)t.unshift(e%256),e=q(e/256);return t.join(".")}if("object"==typeof e){for(t="",r=function(e){for(var t=null,n=1,r=null,i=0,o=0;o<8;o++)0!==e[o]?(i>n&&(t=r,n=i),r=null,i=0):(null===r&&(r=o),++i);return i>n&&(t=r,n=i),t}(e),n=0;n<8;n++)i&&0===e[n]||(i&&(i=!1),r===n?(t+=n?":":"::",i=!0):(t+=e[n].toString(16),n<7&&(t+=":")));return"["+t+"]"}return e},U={},B=d({},U,{" ":1,'"':1,"<":1,">":1,"`":1}),H=d({},B,{"#":1,"?":1,"{":1,"}":1}),V=d({},H,{"/":1,":":1,";":1,"=":1,"@":1,"[":1,"\\":1,"]":1,"^":1,"|":1}),z=function(e,t){var n=h(e,0);return n>32&&n<127&&!f(t,e)?e:encodeURIComponent(e)},W={ftp:21,file:null,http:80,https:443,ws:80,wss:443},Y=function(e){return f(W,e.scheme)},G=function(e){return""!=e.username||""!=e.password},X=function(e){return!e.host||e.cannotBeABaseURL||"file"==e.scheme},K=function(e,t){var n;return 2==e.length&&E.test(e.charAt(0))&&(":"==(n=e.charAt(1))||!t&&"|"==n)},J=function(e){var t;return e.length>1&&K(e.slice(0,2))&&(2==e.length||"/"===(t=e.charAt(2))||"\\"===t||"?"===t||"#"===t)},Z=function(e){var t=e.path,n=t.length;!n||"file"==e.scheme&&1==n&&K(t[0],!0)||t.pop()},Q=function(e){return"."===e||"%2e"===e.toLowerCase()},ee={},te={},ne={},re={},ie={},oe={},ae={},se={},ue={},ce={},le={},fe={},de={},pe={},he={},ge={},me={},ve={},ye={},be={},_e={},we=function(e,t,n,i){var o,a,s,u,c,l=n||ee,d=0,h="",g=!1,m=!1,v=!1;for(n||(e.scheme="",e.username="",e.password="",e.host=null,e.port=null,e.path=[],e.query=null,e.fragment=null,e.cannotBeABaseURL=!1,t=t.replace(M,"")),t=t.replace(j,""),o=p(t);d<=o.length;){switch(a=o[d],l){case ee:if(!a||!E.test(a)){if(n)return"Invalid scheme";l=ne;continue}h+=a.toLowerCase(),l=te;break;case te:if(a&&(k.test(a)||"+"==a||"-"==a||"."==a))h+=a.toLowerCase();else{if(":"!=a){if(n)return"Invalid scheme";h="",l=ne,d=0;continue}if(n&&(Y(e)!=f(W,h)||"file"==h&&(G(e)||null!==e.port)||"file"==e.scheme&&!e.host))return;if(e.scheme=h,n)return void(Y(e)&&W[e.scheme]==e.port&&(e.port=null));h="","file"==e.scheme?l=pe:Y(e)&&i&&i.scheme==e.scheme?l=re:Y(e)?l=se:"/"==o[d+1]?(l=ie,d++):(e.cannotBeABaseURL=!0,e.path.push(""),l=ye)}break;case ne:if(!i||i.cannotBeABaseURL&&"#"!=a)return"Invalid scheme";if(i.cannotBeABaseURL&&"#"==a){e.scheme=i.scheme,e.path=i.path.slice(),e.query=i.query,e.fragment="",e.cannotBeABaseURL=!0,l=_e;break}l="file"==i.scheme?pe:oe;continue;case re:if("/"!=a||"/"!=o[d+1]){l=oe;continue}l=ue,d++;break;case ie:if("/"==a){l=ce;break}l=ve;continue;case oe:if(e.scheme=i.scheme,a==r)e.username=i.username,e.password=i.password,e.host=i.host,e.port=i.port,e.path=i.path.slice(),e.query=i.query;else if("/"==a||"\\"==a&&Y(e))l=ae;else if("?"==a)e.username=i.username,e.password=i.password,e.host=i.host,e.port=i.port,e.path=i.path.slice(),e.query="",l=be;else{if("#"!=a){e.username=i.username,e.password=i.password,e.host=i.host,e.port=i.port,e.path=i.path.slice(),e.path.pop(),l=ve;continue}e.username=i.username,e.password=i.password,e.host=i.host,e.port=i.port,e.path=i.path.slice(),e.query=i.query,e.fragment="",l=_e}break;case ae:if(!Y(e)||"/"!=a&&"\\"!=a){if("/"!=a){e.username=i.username,e.password=i.password,e.host=i.host,e.port=i.port,l=ve;continue}l=ce}else l=ue;break;case se:if(l=ue,"/"!=a||"/"!=h.charAt(d+1))continue;d++;break;case ue:if("/"!=a&&"\\"!=a){l=ce;continue}break;case ce:if("@"==a){g&&(h="%40"+h),g=!0,s=p(h);for(var y=0;y65535)return"Invalid port";e.port=Y(e)&&w===W[e.scheme]?null:w,h=""}if(n)return;l=me;continue}return"Invalid port"}h+=a;break;case pe:if(e.scheme="file","/"==a||"\\"==a)l=he;else{if(!i||"file"!=i.scheme){l=ve;continue}if(a==r)e.host=i.host,e.path=i.path.slice(),e.query=i.query;else if("?"==a)e.host=i.host,e.path=i.path.slice(),e.query="",l=be;else{if("#"!=a){J(o.slice(d).join(""))||(e.host=i.host,e.path=i.path.slice(),Z(e)),l=ve;continue}e.host=i.host,e.path=i.path.slice(),e.query=i.query,e.fragment="",l=_e}}break;case he:if("/"==a||"\\"==a){l=ge;break}i&&"file"==i.scheme&&!J(o.slice(d).join(""))&&(K(i.path[0],!0)?e.path.push(i.path[0]):e.host=i.host),l=ve;continue;case ge:if(a==r||"/"==a||"\\"==a||"?"==a||"#"==a){if(!n&&K(h))l=ve;else if(""==h){if(e.host="",n)return;l=me}else{if(u=R(e,h))return u;if("localhost"==e.host&&(e.host=""),n)return;h="",l=me}continue}h+=a;break;case me:if(Y(e)){if(l=ve,"/"!=a&&"\\"!=a)continue}else if(n||"?"!=a)if(n||"#"!=a){if(a!=r&&(l=ve,"/"!=a))continue}else e.fragment="",l=_e;else e.query="",l=be;break;case ve:if(a==r||"/"==a||"\\"==a&&Y(e)||!n&&("?"==a||"#"==a)){if(".."===(c=(c=h).toLowerCase())||"%2e."===c||".%2e"===c||"%2e%2e"===c?(Z(e),"/"==a||"\\"==a&&Y(e)||e.path.push("")):Q(h)?"/"==a||"\\"==a&&Y(e)||e.path.push(""):("file"==e.scheme&&!e.path.length&&K(h)&&(e.host&&(e.host=""),h=h.charAt(0)+":"),e.path.push(h)),h="","file"==e.scheme&&(a==r||"?"==a||"#"==a))for(;e.path.length>1&&""===e.path[0];)e.path.shift();"?"==a?(e.query="",l=be):"#"==a&&(e.fragment="",l=_e)}else h+=z(a,H);break;case ye:"?"==a?(e.query="",l=be):"#"==a?(e.fragment="",l=_e):a!=r&&(e.path[0]+=z(a,U));break;case be:n||"#"!=a?a!=r&&("'"==a&&Y(e)?e.query+="%27":e.query+="#"==a?"%23":z(a,U)):(e.fragment="",l=_e);break;case _e:a!=r&&(e.fragment+=z(a,B))}d++}},$e=function(e){var t,n,r=l(this,$e,"URL"),i=arguments.length>1?arguments[1]:void 0,a=String(e),s=$(r,{type:"URL"});if(void 0!==i)if(i instanceof $e)t=x(i);else if(n=we(t={},String(i)))throw TypeError(n);if(n=we(s,a,null,t))throw TypeError(n);var u=s.searchParams=new _,c=w(u);c.updateSearchParams(s.query),c.updateURL=function(){s.query=String(u)||null},o||(r.href=qe.call(r),r.origin=Se.call(r),r.protocol=Ee.call(r),r.username=ke.call(r),r.password=Ce.call(r),r.host=Oe.call(r),r.hostname=Te.call(r),r.port=De.call(r),r.pathname=Ae.call(r),r.search=Ie.call(r),r.searchParams=Pe.call(r),r.hash=Me.call(r))},xe=$e.prototype,qe=function(){var e=x(this),t=e.scheme,n=e.username,r=e.password,i=e.host,o=e.port,a=e.path,s=e.query,u=e.fragment,c=t+":";return null!==i?(c+="//",G(e)&&(c+=n+(r?":"+r:"")+"@"),c+=L(i),null!==o&&(c+=":"+o)):"file"==t&&(c+="//"),c+=e.cannotBeABaseURL?a[0]:a.length?"/"+a.join("/"):"",null!==s&&(c+="?"+s),null!==u&&(c+="#"+u),c},Se=function(){var e=x(this),t=e.scheme,n=e.port;if("blob"==t)try{return new URL(t.path[0]).origin}catch(e){return"null"}return"file"!=t&&Y(e)?t+"://"+L(e.host)+(null!==n?":"+n:""):"null"},Ee=function(){return x(this).scheme+":"},ke=function(){return x(this).username},Ce=function(){return x(this).password},Oe=function(){var e=x(this),t=e.host,n=e.port;return null===t?"":null===n?L(t):L(t)+":"+n},Te=function(){var e=x(this).host;return null===e?"":L(e)},De=function(){var e=x(this).port;return null===e?"":String(e)},Ae=function(){var e=x(this),t=e.path;return e.cannotBeABaseURL?t[0]:t.length?"/"+t.join("/"):""},Ie=function(){var e=x(this).query;return e?"?"+e:""},Pe=function(){return x(this).searchParams},Me=function(){var e=x(this).fragment;return e?"#"+e:""},je=function(e,t){return{get:e,set:t,configurable:!0,enumerable:!0}};if(o&&u(xe,{href:je(qe,(function(e){var t=x(this),n=String(e),r=we(t,n);if(r)throw TypeError(r);w(t.searchParams).updateSearchParams(t.query)})),origin:je(Se),protocol:je(Ee,(function(e){var t=x(this);we(t,String(e)+":",ee)})),username:je(ke,(function(e){var t=x(this),n=p(String(e));if(!X(t)){t.username="";for(var r=0;r"}catch(e){return""}}},function(module,exports,__webpack_require__){var __WEBPACK_AMD_DEFINE_RESULT__;!function(global){var qq=function(e){"use strict";return{hide:function(){return e.style.display="none",this},attach:function(t,n){return e.addEventListener?e.addEventListener(t,n,!1):e.attachEvent&&e.attachEvent("on"+t,n),function(){qq(e).detach(t,n)}},detach:function(t,n){return e.removeEventListener?e.removeEventListener(t,n,!1):e.attachEvent&&e.detachEvent("on"+t,n),this},contains:function(t){return!!t&&(e===t||(e.contains?e.contains(t):!!(8&t.compareDocumentPosition(e))))},insertBefore:function(t){return t.parentNode.insertBefore(e,t),this},remove:function(){return e.parentNode.removeChild(e),this},css:function(t){if(null==e.style)throw new qq.Error("Can't apply style to node as it is not on the HTMLElement prototype chain!");return null!=t.opacity&&"string"!=typeof e.style.opacity&&void 0!==e.filters&&(t.filter="alpha(opacity="+Math.round(100*t.opacity)+")"),qq.extend(e.style,t),this},hasClass:function(t,n){var r=new RegExp("(^| )"+t+"( |$)");return r.test(e.className)||!(!n||!r.test(e.parentNode.className))},addClass:function(t){return qq(e).hasClass(t)||(e.className+=" "+t),this},removeClass:function(t){var n=new RegExp("(^| )"+t+"( |$)");return e.className=e.className.replace(n," ").replace(/^\s+|\s+$/g,""),this},getByClass:function(t,n){var r,i=[];return n&&e.querySelector?e.querySelector("."+t):e.querySelectorAll?e.querySelectorAll("."+t):(r=e.getElementsByTagName("*"),qq.each(r,(function(e,n){qq(n).hasClass(t)&&i.push(n)})),n?i[0]:i)},getFirstByClass:function(t){return qq(e).getByClass(t,!0)},children:function(){for(var t=[],n=e.firstChild;n;)1===n.nodeType&&t.push(n),n=n.nextSibling;return t},setText:function(t){return e.innerText=t,e.textContent=t,this},clearText:function(){return qq(e).setText("")},hasAttribute:function(t){var n;return e.hasAttribute?!!e.hasAttribute(t)&&null==/^false$/i.exec(e.getAttribute(t)):void 0!==(n=e[t])&&null==/^false$/i.exec(n)}}},ExifRestorer;!function(){"use strict";var div;qq.canvasToBlob=function(e,t,n){return qq.dataUriToBlob(e.toDataURL(t,n))},qq.dataUriToBlob=function(e){var t,n,r,i,o,a,s,u;return n=e.split(",")[0].indexOf("base64")>=0?atob(e.split(",")[1]):decodeURI(e.split(",")[1]),i=e.split(",")[0].split(":")[1].split(";")[0],t=new ArrayBuffer(n.length),r=new Uint8Array(t),qq.each(n,(function(e,t){r[e]=t.charCodeAt(0)})),o=t,a=i,s=window.BlobBuilder||window.WebKitBlobBuilder||window.MozBlobBuilder||window.MSBlobBuilder,(u=s&&new s)?(u.append(o),u.getBlob(a)):new Blob([o],{type:a})},qq.log=function(e,t){window.console&&(t&&"info"!==t?window.console[t]?window.console[t](e):window.console.log("<"+t+"> "+e):window.console.log(e))},qq.isObject=function(e){return e&&!e.nodeType&&"[object Object]"===Object.prototype.toString.call(e)},qq.isFunction=function(e){return"function"==typeof e},qq.isArray=function(e){return"[object Array]"===Object.prototype.toString.call(e)||e&&window.ArrayBuffer&&e.buffer&&e.buffer.constructor===ArrayBuffer},qq.isItemList=function(e){return"[object DataTransferItemList]"===Object.prototype.toString.call(e)},qq.isNodeList=function(e){return"[object NodeList]"===Object.prototype.toString.call(e)||e.item&&e.namedItem},qq.isString=function(e){return"[object String]"===Object.prototype.toString.call(e)},qq.trimStr=function(e){return String.prototype.trim?e.trim():e.replace(/^\s+|\s+$/g,"")},qq.format=function(e){var t=Array.prototype.slice.call(arguments,1),n=e,r=n.indexOf("{}");return qq.each(t,(function(e,t){var i=n.substring(0,r),o=n.substring(r+2);if((r=(n=i+t+o).indexOf("{}",r+t.length))<0)return!1})),n},qq.isFile=function(e){return window.File&&"[object File]"===Object.prototype.toString.call(e)},qq.isFileList=function(e){return window.FileList&&"[object FileList]"===Object.prototype.toString.call(e)},qq.isFileOrInput=function(e){return qq.isFile(e)||qq.isInput(e)},qq.isInput=function(e,t){var n=function(e){var n=e.toLowerCase();return t?"file"!==n:"file"===n};return!!(window.HTMLInputElement&&"[object HTMLInputElement]"===Object.prototype.toString.call(e)&&e.type&&n(e.type))||!!(e.tagName&&"input"===e.tagName.toLowerCase()&&e.type&&n(e.type))},qq.isBlob=function(e){if(window.Blob&&"[object Blob]"===Object.prototype.toString.call(e))return!0},qq.isXhrUploadSupported=function(){var e=document.createElement("input");return e.type="file",void 0!==e.multiple&&"undefined"!=typeof File&&"undefined"!=typeof FormData&&void 0!==qq.createXhrInstance().upload},qq.createXhrInstance=function(){if(window.XMLHttpRequest)return new XMLHttpRequest;try{return new ActiveXObject("MSXML2.XMLHTTP.3.0")}catch(e){return qq.log("Neither XHR or ActiveX are supported!","error"),null}},qq.isFolderDropSupported=function(e){return e.items&&e.items.length>0&&e.items[0].webkitGetAsEntry},qq.isFileChunkingSupported=function(){return!qq.androidStock()&&qq.isXhrUploadSupported()&&(void 0!==File.prototype.slice||void 0!==File.prototype.webkitSlice||void 0!==File.prototype.mozSlice)},qq.sliceBlob=function(e,t,n){return(e.slice||e.mozSlice||e.webkitSlice).call(e,t,n)},qq.arrayBufferToHex=function(e){var t="",n=new Uint8Array(e);return qq.each(n,(function(e,n){var r=n.toString(16);r.length<2&&(r="0"+r),t+=r})),t},qq.readBlobToHex=function(e,t,n){var r=qq.sliceBlob(e,t,t+n),i=new FileReader,o=new qq.Promise;return i.onload=function(){o.success(qq.arrayBufferToHex(i.result))},i.onerror=o.failure,i.readAsArrayBuffer(r),o},qq.extend=function(e,t,n){return qq.each(t,(function(t,r){n&&qq.isObject(r)?(void 0===e[t]&&(e[t]={}),qq.extend(e[t],r,!0)):e[t]=r})),e},qq.override=function(e,t){var n={},r=t(n);return qq.each(r,(function(t,r){void 0!==e[t]&&(n[t]=e[t]),e[t]=r})),e},qq.indexOf=function(e,t,n){if(e.indexOf)return e.indexOf(t,n);n=n||0;var r=e.length;for(n<0&&(n+=r);n=0},qq.safari=function(){return void 0!==navigator.vendor&&-1!==navigator.vendor.indexOf("Apple")},qq.chrome=function(){return void 0!==navigator.vendor&&-1!==navigator.vendor.indexOf("Google")},qq.opera=function(){return void 0!==navigator.vendor&&-1!==navigator.vendor.indexOf("Opera")},qq.firefox=function(){return!qq.edge()&&!qq.ie11()&&-1!==navigator.userAgent.indexOf("Mozilla")&&void 0!==navigator.vendor&&""===navigator.vendor},qq.windows=function(){return"Win32"===navigator.platform},qq.android=function(){return-1!==navigator.userAgent.toLowerCase().indexOf("android")},qq.androidStock=function(){return qq.android()&&navigator.userAgent.toLowerCase().indexOf("chrome")<0},qq.ios6=function(){return qq.ios()&&-1!==navigator.userAgent.indexOf(" OS 6_")},qq.ios7=function(){return qq.ios()&&-1!==navigator.userAgent.indexOf(" OS 7_")},qq.ios8=function(){return qq.ios()&&-1!==navigator.userAgent.indexOf(" OS 8_")},qq.ios800=function(){return qq.ios()&&-1!==navigator.userAgent.indexOf(" OS 8_0 ")},qq.ios=function(){return-1!==navigator.userAgent.indexOf("iPad")||-1!==navigator.userAgent.indexOf("iPod")||-1!==navigator.userAgent.indexOf("iPhone")},qq.iosChrome=function(){return qq.ios()&&-1!==navigator.userAgent.indexOf("CriOS")},qq.iosSafari=function(){return qq.ios()&&!qq.iosChrome()&&-1!==navigator.userAgent.indexOf("Safari")},qq.iosSafariWebView=function(){return qq.ios()&&!qq.iosChrome()&&!qq.iosSafari()},qq.preventDefault=function(e){e.preventDefault?e.preventDefault():e.returnValue=!1},qq.toElement=(div=document.createElement("div"),function(e){div.innerHTML=e;var t=div.firstChild;return div.removeChild(t),t}),qq.each=function(e,t){var n;if(e)if(window.Storage&&e.constructor===window.Storage)for(n=0;n0)return e.substr(t,e.length-t)},qq.getFilename=function(e){return qq.isInput(e)?e.value.replace(/.*(\/|\\)/,""):qq.isFile(e)&&null!==e.fileName&&void 0!==e.fileName?e.fileName:e.name},qq.DisposeSupport=function(){var e=[];return{dispose:function(){var t;do{(t=e.shift())&&t()}while(t)},attach:function(){var e=arguments;this.addDisposer(qq(e[0]).attach.apply(this,Array.prototype.slice.call(arguments,1)))},addDisposer:function(t){e.push(t)}}}}(),function(){"use strict";void 0===(__WEBPACK_AMD_DEFINE_RESULT__=function(){return qq}.call(exports,__webpack_require__,exports,module))||(module.exports=__WEBPACK_AMD_DEFINE_RESULT__)}(),function(){"use strict";qq.Error=function(e){this.message="[Fine Uploader "+qq.version+"] "+e},qq.Error.prototype=new Error}(),qq.version="5.15.4",qq.supportedFeatures=function(){"use strict";var e,t,n,r,i,o,a,s,u,c,l,f,d,p,h,g;function m(){return!!window.XMLHttpRequest&&void 0!==qq.createXhrInstance().withCredentials}function v(){return void 0!==window.XDomainRequest}return e=function(){var e,t=!0;try{(e=document.createElement("input")).type="file",qq(e).hide(),e.disabled&&(t=!1)}catch(e){t=!1}return t}(),t=(r=e&&qq.isXhrUploadSupported())&&!qq.androidStock(),i=(n=r&&(("draggable"in(g=document.createElement("span"))||"ondragstart"in g&&"ondrop"in g)&&!qq.android()&&!qq.ios()))&&(qq.chrome()||qq.opera())&&void 0!==navigator.userAgent.match(/Chrome\/[2][1-9]|Chrome\/[3-9][0-9]/),o=r&&qq.isFileChunkingSupported(),a=r&&o&&function(){try{return!!window.localStorage&&qq.isFunction(window.localStorage.setItem)}catch(e){return!1}}(),s=r&&(qq.chrome()||qq.opera())&&void 0!==navigator.userAgent.match(/Chrome\/[1][4-9]|Chrome\/[2-9][0-9]/),u=e&&(void 0!==window.postMessage||r),l=m(),c=v(),f=!!m()||v(),d=void 0!==document.createElement("input").webkitdirectory,p=r&&void 0!==window.FileReader,h=!!r&&!qq.androidStock()&&!qq.iosChrome(),{ajaxUploading:r,blobUploading:t,canDetermineSize:r,chunking:o,deleteFileCors:f,deleteFileCorsXdr:c,deleteFileCorsXhr:l,dialogElement:!!window.HTMLDialogElement,fileDrop:n,folderDrop:i,folderSelection:d,imagePreviews:p,imageValidation:p,itemSizeValidation:r,pause:o,progressBar:h,resume:a,scaling:p&&t,tiffPreviews:qq.safari(),unlimitedScaledImageSize:!qq.ios(),uploading:e,uploadCors:u,uploadCustomHeaders:r,uploadNonMultipart:r,uploadViaPaste:s}}(),qq.isGenericPromise=function(e){"use strict";return!!(e&&e.then&&qq.isFunction(e.then))},qq.Promise=function(){"use strict";var e,t,n=[],r=[],i=[],o=0;qq.extend(this,{then:function(i,a){return 0===o?(i&&n.push(i),a&&r.push(a)):-1===o?a&&a.apply(null,t):i&&i.apply(null,e),this},done:function(n){return 0===o?i.push(n):n.apply(null,void 0===t?e:t),this},success:function(){return o=1,e=arguments,n.length&&qq.each(n,(function(t,n){n.apply(null,e)})),i.length&&qq.each(i,(function(t,n){n.apply(null,e)})),this},failure:function(){return o=-1,t=arguments,r.length&&qq.each(r,(function(e,n){n.apply(null,t)})),i.length&&qq.each(i,(function(e,n){n.apply(null,t)})),this}})},qq.BlobProxy=function(e,t){"use strict";qq.extend(this,{referenceBlob:e,create:function(){return t(e)}})},qq.UploadButton=function(e){"use strict";var t,n,r=this,i=new qq.DisposeSupport,o={acceptFiles:null,element:null,focusClass:"qq-upload-button-focus",folders:!1,hoverClass:"qq-upload-button-hover",ios8BrowserCrashWorkaround:!1,multiple:!1,name:"qqfile",onChange:function(e){},title:null};function a(){var e=document.createElement("input");return e.setAttribute(qq.UploadButton.BUTTON_ID_ATTR_NAME,n),e.setAttribute("title",o.title),r.setMultiple(o.multiple,e),o.folders&&qq.supportedFeatures.folderSelection&&e.setAttribute("webkitdirectory",""),o.acceptFiles&&e.setAttribute("accept",o.acceptFiles),e.setAttribute("type","file"),e.setAttribute("name",o.name),qq(e).css({position:"absolute",right:0,top:0,fontFamily:"Arial",fontSize:qq.ie()&&!qq.ie8()?"3500px":"118px",margin:0,padding:0,cursor:"pointer",opacity:0}),!qq.ie7()&&qq(e).css({height:"100%"}),o.element.appendChild(e),i.attach(e,"change",(function(){o.onChange(e)})),i.attach(e,"mouseover",(function(){qq(o.element).addClass(o.hoverClass)})),i.attach(e,"mouseout",(function(){qq(o.element).removeClass(o.hoverClass)})),i.attach(e,"focus",(function(){qq(o.element).addClass(o.focusClass)})),i.attach(e,"blur",(function(){qq(o.element).removeClass(o.focusClass)})),e}qq.extend(o,e),n=qq.getUniqueId(),qq(o.element).css({position:"relative",overflow:"hidden",direction:"ltr"}),qq.extend(this,{getInput:function(){return t},getButtonId:function(){return n},setMultiple:function(e,t){var n=t||this.getInput();o.ios8BrowserCrashWorkaround&&qq.ios8()&&(qq.iosChrome()||qq.iosSafariWebView())||e?n.setAttribute("multiple",""):n.removeAttribute("multiple")},setAcceptFiles:function(e){e!==o.acceptFiles&&t.setAttribute("accept",e)},reset:function(){t.parentNode&&qq(t).remove(),qq(o.element).removeClass(o.focusClass),t=null,t=a()}}),t=a()},qq.UploadButton.BUTTON_ID_ATTR_NAME="qq-button-id",qq.UploadData=function(e){"use strict";var t=[],n={},r={},i={},o={};qq.extend(this,{addFile:function(a){var s=a.status||qq.status.SUBMITTING,u=t.push({name:a.name,originalName:a.name,uuid:a.uuid,size:null==a.size?-1:a.size,status:s})-1;return a.batchId&&(t[u].batchId=a.batchId,void 0===o[a.batchId]&&(o[a.batchId]=[]),o[a.batchId].push(u)),a.proxyGroupId&&(t[u].proxyGroupId=a.proxyGroupId,void 0===i[a.proxyGroupId]&&(i[a.proxyGroupId]=[]),i[a.proxyGroupId].push(u)),t[u].id=u,n[a.uuid]=u,void 0===r[s]&&(r[s]=[]),r[s].push(u),a.onBeforeStatusChange&&a.onBeforeStatusChange(u),e.onStatusChange(u,null,s),u},retrieve:function(e){return qq.isObject(e)&&t.length?void 0!==e.id?function(e){if(qq.isArray(e)){var n=[];return qq.each(e,(function(e,r){n.push(t[r])})),n}return t[e]}(e.id):void 0!==e.uuid?function(e){if(qq.isArray(e)){var r=[];return qq.each(e,(function(e,i){r.push(t[n[i]])})),r}return t[n[e]]}(e.uuid):e.status?(i=e.status,o=[],a=[].concat(i),qq.each(a,(function(e,n){var i=r[n];void 0!==i&&qq.each(i,(function(e,n){o.push(t[n])}))})),o):void 0:qq.extend([],t,!0);var i,o,a},reset:function(){t=[],n={},r={},o={}},setStatus:function(n,i){var o=t[n].status,a=qq.indexOf(r[o],n);r[o].splice(a,1),t[n].status=i,void 0===r[i]&&(r[i]=[]),r[i].push(n),e.onStatusChange(n,o,i)},uuidChanged:function(e,r){var i=t[e].uuid;t[e].uuid=r,n[r]=e,delete n[i]},updateName:function(e,n){t[e].name=n},updateSize:function(e,n){t[e].size=n},setParentId:function(e,n){t[e].parentId=n},getIdsInProxyGroup:function(e){var n=t[e].proxyGroupId;return n?i[n]:[]},getIdsInBatch:function(e){var n=t[e].batchId;return o[n]}})},qq.status={SUBMITTING:"submitting",SUBMITTED:"submitted",REJECTED:"rejected",QUEUED:"queued",CANCELED:"canceled",PAUSED:"paused",UPLOADING:"uploading",UPLOAD_RETRYING:"retrying upload",UPLOAD_SUCCESSFUL:"upload successful",UPLOAD_FAILED:"upload failed",DELETE_FAILED:"delete failed",DELETING:"deleting",DELETED:"deleted"},function(){"use strict";qq.basePublicApi={addBlobs:function(e,t,n){this.addFiles(e,t,n)},addInitialFiles:function(e){var t=this;qq.each(e,(function(e,n){t._addCannedFile(n)}))},addFiles:function(e,t,n){this._maybeHandleIos8SafariWorkaround();var r=0===this._storedIds.length?qq.getUniqueId():this._currentBatchId,i=qq.bind((function(e){this._handleNewFile({blob:e,name:this._options.blobs.defaultName},r,l)}),this),o=qq.bind((function(e){this._handleNewFile(e,r,l)}),this),a=qq.bind((function(e){var t=qq.canvasToBlob(e);this._handleNewFile({blob:t,name:this._options.blobs.defaultName+".png"},r,l)}),this),s=qq.bind((function(e){var t=e.quality&&e.quality/100,n=qq.canvasToBlob(e.canvas,e.type,t);this._handleNewFile({blob:n,name:e.name},r,l)}),this),u=qq.bind((function(e){if(qq.isInput(e)&&qq.supportedFeatures.ajaxUploading){var t=Array.prototype.slice.call(e.files),n=this;qq.each(t,(function(e,t){n._handleNewFile(t,r,l)}))}else this._handleNewFile(e,r,l)}),this),c=this,l=[];this._currentBatchId=r,e&&(qq.isFileList(e)&&(e=Array.prototype.slice.call(e)),e=[].concat(e),qq.each(e,(function(e,t){qq.isFileOrInput(t)?u(t):qq.isBlob(t)?i(t):qq.isObject(t)?t.blob&&t.name?o(t):t.canvas&&t.name&&s(t):t.tagName&&"canvas"===t.tagName.toLowerCase()?a(t):c.log(t+" is not a valid file container! Ignoring!","warn")})),this.log("Received "+l.length+" files."),this._prepareItemsForUpload(l,t,n))},cancel:function(e){this._handler.cancel(e)},cancelAll:function(){var e=[],t=this;qq.extend(e,this._storedIds),qq.each(e,(function(e,n){t.cancel(n)})),this._handler.cancelAll()},clearStoredFiles:function(){this._storedIds=[]},continueUpload:function(e){var t=this._uploadData.retrieve({id:e});return!(!qq.supportedFeatures.pause||!this._options.chunking.enabled)&&(t.status===qq.status.PAUSED?(this.log(qq.format("Paused file ID {} ({}) will be continued. Not paused.",e,this.getName(e))),this._uploadFile(e),!0):(this.log(qq.format("Ignoring continue for file ID {} ({}). Not paused.",e,this.getName(e)),"error"),!1))},deleteFile:function(e){return this._onSubmitDelete(e)},doesExist:function(e){return this._handler.isValid(e)},drawThumbnail:function(e,t,n,r,i){var o,a,s=new qq.Promise;return this._imageGenerator?(o=this._thumbnailUrls[e],a={customResizeFunction:i,maxSize:n>0?n:null,scale:n>0},!r&&qq.supportedFeatures.imagePreviews&&(o=this.getFile(e)),null==o?s.failure({container:t,error:"File or URL not found."}):this._imageGenerator.generate(o,t,a).then((function(e){s.success(e)}),(function(e,t){s.failure({container:e,error:t||"Problem generating thumbnail"})}))):s.failure({container:t,error:"Missing image generator module"}),s},getButton:function(e){return this._getButton(this._buttonIdsForFileIds[e])},getEndpoint:function(e){return this._endpointStore.get(e)},getFile:function(e){return this._handler.getFile(e)||null},getInProgress:function(){return this._uploadData.retrieve({status:[qq.status.UPLOADING,qq.status.UPLOAD_RETRYING,qq.status.QUEUED]}).length},getName:function(e){return this._uploadData.retrieve({id:e}).name},getParentId:function(e){var t=this.getUploads({id:e}),n=null;return t&&void 0!==t.parentId&&(n=t.parentId),n},getResumableFilesData:function(){return this._handler.getResumableFilesData()},getSize:function(e){return this._uploadData.retrieve({id:e}).size},getNetUploads:function(){return this._netUploaded},getRemainingAllowedItems:function(){var e=this._currentItemLimit;return e>0?e-this._netUploadedOrQueued:null},getUploads:function(e){return this._uploadData.retrieve(e)},getUuid:function(e){return this._uploadData.retrieve({id:e}).uuid},log:function(e,t){!this._options.debug||t&&"info"!==t?t&&"info"!==t&&qq.log("[Fine Uploader "+qq.version+"] "+e,t):qq.log("[Fine Uploader "+qq.version+"] "+e)},pauseUpload:function(e){var t=this._uploadData.retrieve({id:e});if(!qq.supportedFeatures.pause||!this._options.chunking.enabled)return!1;if(qq.indexOf([qq.status.UPLOADING,qq.status.UPLOAD_RETRYING],t.status)>=0){if(this._handler.pause(e))return this._uploadData.setStatus(e,qq.status.PAUSED),!0;this.log(qq.format("Unable to pause file ID {} ({}).",e,this.getName(e)),"error")}else this.log(qq.format("Ignoring pause for file ID {} ({}). Not in progress.",e,this.getName(e)),"error");return!1},removeFileRef:function(e){this._handler.expunge(e)},reset:function(){this.log("Resetting uploader..."),this._handler.reset(),this._storedIds=[],this._autoRetries=[],this._retryTimeouts=[],this._preventRetries=[],this._thumbnailUrls=[],qq.each(this._buttons,(function(e,t){t.reset()})),this._paramsStore.reset(),this._endpointStore.reset(),this._netUploadedOrQueued=0,this._netUploaded=0,this._uploadData.reset(),this._buttonIdsForFileIds=[],this._pasteHandler&&this._pasteHandler.reset(),this._options.session.refreshOnReset&&this._refreshSessionData(),this._succeededSinceLastAllComplete=[],this._failedSinceLastAllComplete=[],this._totalProgress&&this._totalProgress.reset()},retry:function(e){return this._manualRetry(e)},scaleImage:function(e,t){return qq.Scaler.prototype.scaleImage(e,t,{log:qq.bind(this.log,this),getFile:qq.bind(this.getFile,this),uploadData:this._uploadData})},setCustomHeaders:function(e,t){this._customHeadersStore.set(e,t)},setDeleteFileCustomHeaders:function(e,t){this._deleteFileCustomHeadersStore.set(e,t)},setDeleteFileEndpoint:function(e,t){this._deleteFileEndpointStore.set(e,t)},setDeleteFileParams:function(e,t){this._deleteFileParamsStore.set(e,t)},setEndpoint:function(e,t){this._endpointStore.set(e,t)},setForm:function(e){this._updateFormSupportAndParams(e)},setItemLimit:function(e){this._currentItemLimit=e},setName:function(e,t){this._uploadData.updateName(e,t)},setParams:function(e,t){this._paramsStore.set(e,t)},setUuid:function(e,t){return this._uploadData.uuidChanged(e,t)},setStatus:function(e,t){if(!this.getUploads({id:e}))throw new qq.Error(e+" is not a valid file ID.");switch(t){case qq.status.DELETED:this._onDeleteComplete(e,null,!1);break;case qq.status.DELETE_FAILED:this._onDeleteComplete(e,null,!0);break;default:var n="Method setStatus called on '"+name+"' not implemented yet for "+t;throw this.log(n),new qq.Error(n)}},uploadStoredFiles:function(){0===this._storedIds.length?this._itemError("noFilesError"):this._uploadStoredFiles()}},qq.basePrivateApi={_addCannedFile:function(e){var t=this;return this._uploadData.addFile({uuid:e.uuid,name:e.name,size:e.size,status:qq.status.UPLOAD_SUCCESSFUL,onBeforeStatusChange:function(n){e.deleteFileEndpoint&&t.setDeleteFileEndpoint(e.deleteFileEndpoint,n),e.deleteFileParams&&t.setDeleteFileParams(e.deleteFileParams,n),e.thumbnailUrl&&(t._thumbnailUrls[n]=e.thumbnailUrl),t._netUploaded++,t._netUploadedOrQueued++}})},_annotateWithButtonId:function(e,t){qq.isFile(e)&&(e.qqButtonId=this._getButtonId(t))},_batchError:function(e){this._options.callbacks.onError(null,null,e,void 0)},_createDeleteHandler:function(){var e=this;return new qq.DeleteFileAjaxRequester({method:this._options.deleteFile.method.toUpperCase(),maxConnections:this._options.maxConnections,uuidParamName:this._options.request.uuidName,customHeaders:this._deleteFileCustomHeadersStore,paramsStore:this._deleteFileParamsStore,endpointStore:this._deleteFileEndpointStore,cors:this._options.cors,log:qq.bind(e.log,e),onDelete:function(t){e._onDelete(t),e._options.callbacks.onDelete(t)},onDeleteComplete:function(t,n,r){e._onDeleteComplete(t,n,r),e._options.callbacks.onDeleteComplete(t,n,r)}})},_createPasteHandler:function(){var e=this;return new qq.PasteSupport({targetElement:this._options.paste.targetElement,callbacks:{log:qq.bind(e.log,e),pasteReceived:function(t){e._handleCheckedCallback({name:"onPasteReceived",callback:qq.bind(e._options.callbacks.onPasteReceived,e,t),onSuccess:qq.bind(e._handlePasteSuccess,e,t),identifier:"pasted image"})}}})},_createStore:function(e,t){var n={},r=e,i={},o=t,a=function(e){return qq.isObject(e)?qq.extend({},e):e},s=function(e,t){o&&qq.isObject(t)&&qq.extend(t,qq.isFunction(o)?o():o),i[e]&&qq.extend(t,i[e])};return{set:function(e,t){null==t?(n={},r=a(e)):n[t]=a(e)},get:function(e){var t;return t=null!=e&&n[e]?n[e]:a(r),s(e,t),a(t)},addReadOnly:function(e,t){qq.isObject(n)&&(null===e?qq.isFunction(t)?o=t:(o=o||{},qq.extend(o,t)):(i[e]=i[e]||{},qq.extend(i[e],t)))},remove:function(e){return delete n[e]},reset:function(){n={},i={},r=e}}},_createUploadDataTracker:function(){var e=this;return new qq.UploadData({getName:function(t){return e.getName(t)},getUuid:function(t){return e.getUuid(t)},getSize:function(t){return e.getSize(t)},onStatusChange:function(t,n,r){e._onUploadStatusChange(t,n,r),e._options.callbacks.onStatusChange(t,n,r),e._maybeAllComplete(t,r),e._totalProgress&&setTimeout((function(){e._totalProgress.onStatusChange(t,n,r)}),0)}})},_createUploadButton:function(e){var t,n=this,r=e.accept||this._options.validation.acceptFiles,i=e.allowedExtensions||this._options.validation.allowedExtensions;return t=new qq.UploadButton({acceptFiles:r,element:e.element,focusClass:this._options.classes.buttonFocus,folders:e.folders,hoverClass:this._options.classes.buttonHover,ios8BrowserCrashWorkaround:this._options.workarounds.ios8BrowserCrash,multiple:!!qq.supportedFeatures.ajaxUploading&&!(n._options.workarounds.iosEmptyVideos&&qq.ios()&&!qq.ios6()&&n._isAllowedExtension(i,".mov"))&&(void 0===e.multiple?n._options.multiple:e.multiple),name:this._options.request.inputName,onChange:function(e){n._onInputChange(e)},title:null==e.title?this._options.text.fileInputTitle:e.title}),this._disposeSupport.addDisposer((function(){t.dispose()})),n._buttons.push(t),t},_createUploadHandler:function(e,t){var n=this,r={},i={debug:this._options.debug,maxConnections:this._options.maxConnections,cors:this._options.cors,paramsStore:this._paramsStore,endpointStore:this._endpointStore,chunking:this._options.chunking,resume:this._options.resume,blobs:this._options.blobs,log:qq.bind(n.log,n),preventRetryParam:this._options.retry.preventRetryResponseProperty,onProgress:function(e,t,i,o){i<0||o<0||(r[e]&&r[e].loaded===i&&r[e].total===o||(n._onProgress(e,t,i,o),n._options.callbacks.onProgress(e,t,i,o)),r[e]={loaded:i,total:o})},onComplete:function(e,t,i,o){delete r[e];var a,s=n.getUploads({id:e}).status;s!==qq.status.UPLOAD_SUCCESSFUL&&s!==qq.status.UPLOAD_FAILED&&((a=n._onComplete(e,t,i,o))instanceof qq.Promise?a.done((function(){n._options.callbacks.onComplete(e,t,i,o)})):n._options.callbacks.onComplete(e,t,i,o))},onCancel:function(e,t,r){var i=new qq.Promise;return n._handleCheckedCallback({name:"onCancel",callback:qq.bind(n._options.callbacks.onCancel,n,e,t),onFailure:i.failure,onSuccess:function(){r.then((function(){n._onCancel(e,t)})),i.success()},identifier:e}),i},onUploadPrep:qq.bind(this._onUploadPrep,this),onUpload:function(e,t){n._onUpload(e,t),n._options.callbacks.onUpload(e,t)},onUploadChunk:function(e,t,r){n._onUploadChunk(e,r),n._options.callbacks.onUploadChunk(e,t,r)},onUploadChunkSuccess:function(e,t,r,i){n._options.callbacks.onUploadChunkSuccess.apply(n,arguments)},onResume:function(e,t,r){return n._options.callbacks.onResume(e,t,r)},onAutoRetry:function(e,t,r,i){return n._onAutoRetry.apply(n,arguments)},onUuidChanged:function(e,t){n.log("Server requested UUID change from '"+n.getUuid(e)+"' to '"+t+"'"),n.setUuid(e,t)},getName:qq.bind(n.getName,n),getUuid:qq.bind(n.getUuid,n),getSize:qq.bind(n.getSize,n),setSize:qq.bind(n._setSize,n),getDataByUuid:function(e){return n.getUploads({uuid:e})},isQueued:function(e){var t=n.getUploads({id:e}).status;return t===qq.status.QUEUED||t===qq.status.SUBMITTED||t===qq.status.UPLOAD_RETRYING||t===qq.status.PAUSED},getIdsInProxyGroup:n._uploadData.getIdsInProxyGroup,getIdsInBatch:n._uploadData.getIdsInBatch};return qq.each(this._options.request,(function(e,t){i[e]=t})),i.customHeaders=this._customHeadersStore,e&&qq.each(e,(function(e,t){i[e]=t})),new qq.UploadHandlerController(i,t)},_fileOrBlobRejected:function(e){this._netUploadedOrQueued--,this._uploadData.setStatus(e,qq.status.REJECTED)},_formatSize:function(e){if(0===e)return e+this._options.text.sizeSymbols[0];var t=-1;do{e/=1e3,t++}while(e>999);return Math.max(e,.1).toFixed(1)+this._options.text.sizeSymbols[t]},_generateExtraButtonSpecs:function(){var e=this;this._extraButtonSpecs={},qq.each(this._options.extraButtons,(function(t,n){var r=n.multiple,i=qq.extend({},e._options.validation,!0),o=qq.extend({},n);void 0===r&&(r=e._options.multiple),o.validation&&qq.extend(i,n.validation,!0),qq.extend(o,{multiple:r,validation:i},!0),e._initExtraButton(o)}))},_getButton:function(e){var t=this._extraButtonSpecs[e];return t?t.element:e===this._defaultButtonId?this._options.button:void 0},_getButtonId:function(e){var t,n,r=e;if(r instanceof qq.BlobProxy&&(r=r.referenceBlob),r&&!qq.isBlob(r)){if(qq.isFile(r))return r.qqButtonId;if("input"===r.tagName.toLowerCase()&&"file"===r.type.toLowerCase())return r.getAttribute(qq.UploadButton.BUTTON_ID_ATTR_NAME);if(t=r.getElementsByTagName("input"),qq.each(t,(function(e,t){if("file"===t.getAttribute("type"))return n=t,!1})),n)return n.getAttribute(qq.UploadButton.BUTTON_ID_ATTR_NAME)}},_getNotFinished:function(){return this._uploadData.retrieve({status:[qq.status.UPLOADING,qq.status.UPLOAD_RETRYING,qq.status.QUEUED,qq.status.SUBMITTING,qq.status.SUBMITTED,qq.status.PAUSED]}).length},_getValidationBase:function(e){var t=this._extraButtonSpecs[e];return t?t.validation:this._options.validation},_getValidationDescriptor:function(e){return e.file instanceof qq.BlobProxy?{name:qq.getFilename(e.file.referenceBlob),size:e.file.referenceBlob.size}:{name:this.getUploads({id:e.id}).name,size:this.getUploads({id:e.id}).size}},_getValidationDescriptors:function(e){var t=this,n=[];return qq.each(e,(function(e,r){n.push(t._getValidationDescriptor(r))})),n},_handleCameraAccess:function(){if(this._options.camera.ios&&qq.ios()){var e=this._options.camera.button,t=e?this._getButtonId(e):this._defaultButtonId,n=this._options;t&&t!==this._defaultButtonId&&(n=this._extraButtonSpecs[t]),n.multiple=!1,null===n.validation.acceptFiles?n.validation.acceptFiles="image/*;capture=camera":n.validation.acceptFiles+=",image/*;capture=camera",qq.each(this._buttons,(function(e,r){if(r.getButtonId()===t)return r.setMultiple(n.multiple),r.setAcceptFiles(n.acceptFiles),!1}))}},_handleCheckedCallback:function(e){var t=this,n=e.callback();return qq.isGenericPromise(n)?(this.log(e.name+" - waiting for "+e.name+" promise to be fulfilled for "+e.identifier),n.then((function(n){t.log(e.name+" promise success for "+e.identifier),e.onSuccess(n)}),(function(){e.onFailure?(t.log(e.name+" promise failure for "+e.identifier),e.onFailure()):t.log(e.name+" promise failure for "+e.identifier)}))):(!1!==n?e.onSuccess(n):e.onFailure?(this.log(e.name+" - return value was 'false' for "+e.identifier+". Invoking failure callback."),e.onFailure()):this.log(e.name+" - return value was 'false' for "+e.identifier+". Will not proceed."),n)},_handleNewFile:function(e,t,n){var r=this,i=qq.getUniqueId(),o=-1,a=qq.getFilename(e),s=e.blob||e,u=this._customNewFileHandler?this._customNewFileHandler:qq.bind(r._handleNewFileGeneric,r);!qq.isInput(s)&&s.size>=0&&(o=s.size),u(s,a,i,o,n,t,this._options.request.uuidName,{uploadData:r._uploadData,paramsStore:r._paramsStore,addFileToHandler:function(e,t){r._handler.add(e,t),r._netUploadedOrQueued++,r._trackButton(e)}})},_handleNewFileGeneric:function(e,t,n,r,i,o){var a=this._uploadData.addFile({uuid:n,name:t,size:r,batchId:o});this._handler.add(a,e),this._trackButton(a),this._netUploadedOrQueued++,i.push({id:a,file:e})},_handlePasteSuccess:function(e,t){var n=e.type.split("/")[1],r=t;null==r&&(r=this._options.paste.defaultName),r+="."+n,this.addFiles({name:r,blob:e})},_handleDeleteSuccess:function(e){if(this.getUploads({id:e}).status!==qq.status.DELETED){var t=this.getName(e);this._netUploadedOrQueued--,this._netUploaded--,this._handler.expunge(e),this._uploadData.setStatus(e,qq.status.DELETED),this.log("Delete request for '"+t+"' has succeeded.")}},_handleDeleteFailed:function(e,t){var n=this.getName(e);this._uploadData.setStatus(e,qq.status.DELETE_FAILED),this.log("Delete request for '"+n+"' has failed.","error"),t&&void 0!==t.withCredentials?this._options.callbacks.onError(e,n,"Delete request failed with response code "+t.status,t):this._options.callbacks.onError(e,n,"Delete request failed",t)},_initExtraButton:function(e){var t=this._createUploadButton({accept:e.validation.acceptFiles,allowedExtensions:e.validation.allowedExtensions,element:e.element,folders:e.folders,multiple:e.multiple,title:e.fileInputTitle});this._extraButtonSpecs[t.getButtonId()]=e},_initFormSupportAndParams:function(){this._formSupport=qq.FormSupport&&new qq.FormSupport(this._options.form,qq.bind(this.uploadStoredFiles,this),qq.bind(this.log,this)),this._formSupport&&this._formSupport.attachedToForm?(this._paramsStore=this._createStore(this._options.request.params,this._formSupport.getFormInputsAsObject),this._options.autoUpload=this._formSupport.newAutoUpload,this._formSupport.newEndpoint&&(this._options.request.endpoint=this._formSupport.newEndpoint)):this._paramsStore=this._createStore(this._options.request.params)},_isDeletePossible:function(){return!(!qq.DeleteFileAjaxRequester||!this._options.deleteFile.enabled)&&(!this._options.cors.expected||(!!qq.supportedFeatures.deleteFileCorsXhr||!(!qq.supportedFeatures.deleteFileCorsXdr||!this._options.cors.allowXdr)))},_isAllowedExtension:function(e,t){var n=!1;return!e.length||(qq.each(e,(function(e,r){if(qq.isString(r)){var i=new RegExp("\\."+r+"$","i");if(null!=t.match(i))return n=!0,!1}})),n)},_itemError:function(e,t,n){var r,i,o=this._options.messages[e],a=[],s=[].concat(t),u=s[0],c=this._getButtonId(n),l=this._getValidationBase(c);function f(e,t){o=o.replace(e,t)}return qq.each(l.allowedExtensions,(function(e,t){qq.isString(t)&&a.push(t)})),r=a.join(", ").toLowerCase(),f("{file}",this._options.formatFileName(u)),f("{extensions}",r),f("{sizeLimit}",this._formatSize(l.sizeLimit)),f("{minSizeLimit}",this._formatSize(l.minSizeLimit)),null!==(i=o.match(/(\{\w+\})/g))&&qq.each(i,(function(e,t){f(t,s[e])})),this._options.callbacks.onError(null,u,o,void 0),o},_manualRetry:function(e,t){if(this._onBeforeManualRetry(e))return this._netUploadedOrQueued++,this._uploadData.setStatus(e,qq.status.UPLOAD_RETRYING),t?t(e):this._handler.retry(e),!0},_maybeAllComplete:function(e,t){var n=this,r=this._getNotFinished();t===qq.status.UPLOAD_SUCCESSFUL?this._succeededSinceLastAllComplete.push(e):t===qq.status.UPLOAD_FAILED&&this._failedSinceLastAllComplete.push(e),0===r&&(this._succeededSinceLastAllComplete.length||this._failedSinceLastAllComplete.length)&&setTimeout((function(){n._onAllComplete(n._succeededSinceLastAllComplete,n._failedSinceLastAllComplete)}),0)},_maybeHandleIos8SafariWorkaround:function(){var e=this;if(this._options.workarounds.ios8SafariUploads&&qq.ios800()&&qq.iosSafari())throw setTimeout((function(){window.alert(e._options.messages.unsupportedBrowserIos8Safari)}),0),new qq.Error(this._options.messages.unsupportedBrowserIos8Safari)},_maybeParseAndSendUploadError:function(e,t,n,r){if(!n.success)if(r&&200!==r.status&&!n.error)this._options.callbacks.onError(e,t,"XHR returned response code "+r.status,r);else{var i=n.error?n.error:this._options.text.defaultResponseError;this._options.callbacks.onError(e,t,i,r)}},_maybeProcessNextItemAfterOnValidateCallback:function(e,t,n,r,i){var o=this;if(t.length>n)if(e||!this._options.validation.stopOnFirstInvalidFile)setTimeout((function(){var e=o._getValidationDescriptor(t[n]),a=o._getButtonId(t[n].file),s=o._getButton(a);o._handleCheckedCallback({name:"onValidate",callback:qq.bind(o._options.callbacks.onValidate,o,e,s),onSuccess:qq.bind(o._onValidateCallbackSuccess,o,t,n,r,i),onFailure:qq.bind(o._onValidateCallbackFailure,o,t,n,r,i),identifier:"Item '"+e.name+"', size: "+e.size})}),0);else if(!e)for(;n0&&this._netUploadedOrQueued+1>n?(this._itemError("retryFailTooManyItems"),!1):(this.log("Retrying upload for '"+t+"' (id: "+e+")..."),!0))):(this.log("'"+e+"' is not a valid file ID","error"),!1)},_onCancel:function(e,t){this._netUploadedOrQueued--,clearTimeout(this._retryTimeouts[e]);var n=qq.indexOf(this._storedIds,e);!this._options.autoUpload&&n>=0&&this._storedIds.splice(n,1),this._uploadData.setStatus(e,qq.status.CANCELED)},_onComplete:function(e,t,n,r){return n.success?(n.thumbnailUrl&&(this._thumbnailUrls[e]=n.thumbnailUrl),this._netUploaded++,this._uploadData.setStatus(e,qq.status.UPLOAD_SUCCESSFUL)):(this._netUploadedOrQueued--,this._uploadData.setStatus(e,qq.status.UPLOAD_FAILED),!0===n[this._options.retry.preventRetryResponseProperty]&&(this._preventRetries[e]=!0)),this._maybeParseAndSendUploadError(e,t,n,r),!!n.success},_onDelete:function(e){this._uploadData.setStatus(e,qq.status.DELETING)},_onDeleteComplete:function(e,t,n){this.getName(e);n?this._handleDeleteFailed(e,t):this._handleDeleteSuccess(e)},_onInputChange:function(e){var t;if(qq.supportedFeatures.ajaxUploading){for(t=0;t0&&this.addFiles(e);qq.each(this._buttons,(function(e,t){t.reset()}))},_onProgress:function(e,t,n,r){this._totalProgress&&this._totalProgress.onIndividualProgress(e,n,r)},_onSubmit:function(e,t){},_onSubmitCallbackSuccess:function(e,t){this._onSubmit.apply(this,arguments),this._uploadData.setStatus(e,qq.status.SUBMITTED),this._onSubmitted.apply(this,arguments),this._options.autoUpload?(this._options.callbacks.onSubmitted.apply(this,arguments),this._uploadFile(e)):(this._storeForLater(e),this._options.callbacks.onSubmitted.apply(this,arguments))},_onSubmitDelete:function(e,t,n){var r,i=this.getUuid(e);return t&&(r=qq.bind(t,this,e,i,n)),this._isDeletePossible()?(this._handleCheckedCallback({name:"onSubmitDelete",callback:qq.bind(this._options.callbacks.onSubmitDelete,this,e),onSuccess:r||qq.bind(this._deleteHandler.sendDelete,this,e,i,n),identifier:e}),!0):(this.log("Delete request ignored for ID "+e+", delete feature is disabled or request not possible due to CORS on a user agent that does not support pre-flighting.","warn"),!1)},_onSubmitted:function(e){},_onTotalProgress:function(e,t){this._options.callbacks.onTotalProgress(e,t)},_onUploadPrep:function(e){},_onUpload:function(e,t){this._uploadData.setStatus(e,qq.status.UPLOADING)},_onUploadChunk:function(e,t){},_onUploadStatusChange:function(e,t,n){n===qq.status.PAUSED&&clearTimeout(this._retryTimeouts[e])},_onValidateBatchCallbackFailure:function(e){var t=this;qq.each(e,(function(e,n){t._fileOrBlobRejected(n.id)}))},_onValidateBatchCallbackSuccess:function(e,t,n,r,i){var o,a=this._currentItemLimit,s=this._netUploadedOrQueued;0===a||s<=a?t.length>0?this._handleCheckedCallback({name:"onValidate",callback:qq.bind(this._options.callbacks.onValidate,this,e[0],i),onSuccess:qq.bind(this._onValidateCallbackSuccess,this,t,0,n,r),onFailure:qq.bind(this._onValidateCallbackFailure,this,t,0,n,r),identifier:"Item '"+t[0].file.name+"', size: "+t[0].file.size}):this._itemError("noFilesError"):(this._onValidateBatchCallbackFailure(t),o=this._options.messages.tooManyItemsError.replace(/\{netItems\}/g,s).replace(/\{itemLimit\}/g,a),this._batchError(o))},_onValidateCallbackFailure:function(e,t,n,r){var i=t+1;this._fileOrBlobRejected(e[t].id,e[t].file.name),this._maybeProcessNextItemAfterOnValidateCallback(!1,e,i,n,r)},_onValidateCallbackSuccess:function(e,t,n,r){var i=this,o=t+1,a=this._getValidationDescriptor(e[t]);this._validateFileOrBlobData(e[t],a).then((function(){i._upload(e[t].id,n,r),i._maybeProcessNextItemAfterOnValidateCallback(!0,e,o,n,r)}),(function(){i._maybeProcessNextItemAfterOnValidateCallback(!1,e,o,n,r)}))},_prepareItemsForUpload:function(e,t,n){if(0!==e.length){var r=this._getValidationDescriptors(e),i=this._getButtonId(e[0].file),o=this._getButton(i);this._handleCheckedCallback({name:"onValidateBatch",callback:qq.bind(this._options.callbacks.onValidateBatch,this,r,o),onSuccess:qq.bind(this._onValidateBatchCallbackSuccess,this,r,e,t,n,o),onFailure:qq.bind(this._onValidateBatchCallbackFailure,this,e),identifier:"batch validation"})}else this._itemError("noFilesError")},_preventLeaveInProgress:function(){var e=this;this._disposeSupport.attach(window,"beforeunload",(function(t){if(e.getInProgress())return(t=t||window.event).returnValue=e._options.messages.onLeave,e._options.messages.onLeave}))},_refreshSessionData:function(){var e=this,t=this._options.session;qq.Session&&null!=this._options.session.endpoint&&(this._session||(qq.extend(t,{cors:this._options.cors}),t.log=qq.bind(this.log,this),t.addFileRecord=qq.bind(this._addCannedFile,this),this._session=new qq.Session(t)),setTimeout((function(){e._session.refresh().then((function(t,n){e._sessionRequestComplete(),e._options.callbacks.onSessionRequestComplete(t,!0,n)}),(function(t,n){e._options.callbacks.onSessionRequestComplete(t,!1,n)}))}),0))},_sessionRequestComplete:function(){},_setSize:function(e,t){this._uploadData.updateSize(e,t),this._totalProgress&&this._totalProgress.onNewSize(e)},_shouldAutoRetry:function(e,t,n){var r=this._uploadData.retrieve({id:e});return!!(!this._preventRetries[e]&&this._options.retry.enableAuto&&r.status!==qq.status.PAUSED&&(void 0===this._autoRetries[e]&&(this._autoRetries[e]=0),this._autoRetries[e]0&&s.sizeLimit&&o>s.sizeLimit?(this._itemError("sizeError",i,r),u.failure()):o>0&&o=n&&t=0)||(l=!0,t(c+" request for "+e+" has failed - response code "+i.status,"error")),o.onComplete(e,i,l)}function l(e,r){var u,l=s(e,r),f=o.method,d=function(e){var t,n=i[e].additionalParams,r=o.mandatedParams;return o.paramsStore.get&&(t=o.paramsStore.get(e)),n&&qq.each(n,(function(e,n){(t=t||{})[e]=n})),r&&qq.each(r,(function(e,n){(t=t||{})[e]=n})),t}(e),p=i[e].payload;return o.onSend(e),u=function(e,t,r){var a=o.endpointStore.get(e),s=i[e].addToPath;null!=s&&(a+="/"+s);n&&t&&(a=qq.obj2url(t,a));r&&(a=qq.obj2url(r,a));return a}(e,d,i[e].additionalQueryParams),a(l)?(l.onload=function(e){return function(){c(e)}}(e),l.onerror=function(e){return function(){c(e,!0)}}(e)):l.onreadystatechange=function(e){return function(){4===s(e).readyState&&c(e)}}(e),function(e){var t=o.onProgress;t&&(s(e).upload.onprogress=function(n){n.lengthComputable&&t(e,n.loaded,n.total)})}(e),l.open(f,u,!0),o.cors.expected&&o.cors.sendCredentials&&!a(l)&&(l.withCredentials=!0),function(e){var t=s(e),n=o.customHeaders,r=i[e].additionalHeaders||{},u=o.method,c={};a(t)||(o.acceptHeader&&t.setRequestHeader("Accept",o.acceptHeader),o.allowXRequestedWithAndCacheControl&&(o.cors.expected&&qq.indexOf(["GET","POST","HEAD"],o.method)>=0&&(l=!1,qq.each(l,(function(e,t){if(qq.indexOf(["Accept","Accept-Language","Content-Language","Content-Type"],t)<0)return l=!0,!1})),!l)||(t.setRequestHeader("X-Requested-With","XMLHttpRequest"),t.setRequestHeader("Cache-Control","no-cache"))),!o.contentType||"POST"!==u&&"PUT"!==u||t.setRequestHeader("Content-Type",o.contentType),qq.extend(c,qq.isFunction(n)?n(e):n),qq.extend(c,r),qq.each(c,(function(e,n){t.setRequestHeader(e,n)})));var l}(e),t("Sending "+f+" request for "+e),p?l.send(p):n||!d?l.send():d&&o.contentType&&o.contentType.toLowerCase().indexOf("application/x-www-form-urlencoded")>=0?l.send(qq.obj2url(d,"")):d&&o.contentType&&o.contentType.toLowerCase().indexOf("application/json")>=0?l.send(JSON.stringify(d)):l.send(d),l}n="GET"===o.method||"DELETE"===o.method,qq.extend(this,{initTransport:function(e){var t,n,a,s,u,c;return{withPath:function(e){return t=e,this},withParams:function(e){return n=e,this},withQueryParams:function(e){return c=e,this},withHeaders:function(e){return a=e,this},withPayload:function(e){return s=e,this},withCacheBuster:function(){return u=!0,this},send:function(f){return u&&qq.indexOf(["GET","DELETE"],o.method)>=0&&(n.qqtimestamp=(new Date).getTime()),function(e,t,n,a,s,u,c){if(i[e]={addToPath:n,additionalParams:a,additionalQueryParams:s,additionalHeaders:u,payload:c},r.push(e)<=o.maxConnections)return l(e,t)}(e,f,t,n,c,a,s)}}},canceled:function(e){u(e)}})},qq.UploadHandler=function(e){"use strict";var t=e.proxy,n={},r=t.onCancel,i=t.getName;qq.extend(this,{add:function(e,t){n[e]=t,n[e].temp={}},cancel:function(e){var t=this,o=new qq.Promise;r(e,i(e),o).then((function(){t.isValid(e)&&(n[e].canceled=!0,t.expunge(e)),o.success()}))},expunge:function(e){delete n[e]},getThirdPartyFileId:function(e){return n[e].key},isValid:function(e){return void 0!==n[e]},reset:function(){n={}},_getFileState:function(e){return n[e]},_setThirdPartyFileId:function(e,t){n[e].key=t},_wasCanceled:function(e){return!!n[e].canceled}})},qq.UploadHandlerController=function(e,t){"use strict";var n,r,i,o,a=this,s=!1,u=!1,c={paramsStore:{},maxConnections:3,chunking:{enabled:!1,multiple:{enabled:!1}},log:function(e,t){},onProgress:function(e,t,n,r){},onComplete:function(e,t,n,r){},onCancel:function(e,t){},onUploadPrep:function(e){},onUpload:function(e,t){},onUploadChunk:function(e,t,n){},onUploadChunkSuccess:function(e,t,n,r){},onAutoRetry:function(e,t,n,r){},onResume:function(e,t,n){},onUuidChanged:function(e,t){},getName:function(e){},setSize:function(e,t){},isQueued:function(e){},getIdsInProxyGroup:function(e){},getIdsInBatch:function(e){}},l={done:function(e,t,n,r){var o=i._getChunkData(e,t);i._getFileState(e).attemptingResume=!1,delete i._getFileState(e).temp.chunkProgress[t],i._getFileState(e).loaded+=o.size,c.onUploadChunkSuccess(e,i._getChunkDataForCallback(o),n,r)},finalize:function(e){var t=c.getSize(e),n=c.getName(e);r("All chunks have been uploaded for "+e+" - finalizing...."),i.finalizeChunks(e).then((function(o,a){r("Finalize successful for "+e);var s=p.normalizeResponse(o,!0);c.onProgress(e,n,t,t),i._maybeDeletePersistedChunkData(e),p.cleanup(e,s,a)}),(function(t,i){var o=p.normalizeResponse(t,!1);r("Problem finalizing chunks for file ID "+e+" - "+o.error,"error"),o.reset&&l.reset(e),c.onAutoRetry(e,n,o,i)||p.cleanup(e,o,i)}))},handleFailure:function(e,t,n,o){var a=c.getName(t);r("Chunked upload request failed for "+t+", chunk "+e),i.clearCachedChunk(t,e);var s,d=p.normalizeResponse(n,!1);d.reset?l.reset(t):(s=qq.indexOf(i._getFileState(t).chunking.inProgress,e))>=0&&(i._getFileState(t).chunking.inProgress.splice(s,1),i._getFileState(t).chunking.remaining.unshift(e)),i._getFileState(t).temp.ignoreFailure||(u&&(i._getFileState(t).temp.ignoreFailure=!0,r(qq.format("Going to attempt to abort these chunks: {}. These are currently in-progress: {}.",JSON.stringify(Object.keys(i._getXhrs(t))),JSON.stringify(i._getFileState(t).chunking.inProgress))),qq.each(i._getXhrs(t),(function(e,n){r(qq.format("Attempting to abort file {}.{}. XHR readyState {}. ",t,e,n.readyState)),n.abort(),n._cancelled=!0})),i.moveInProgressToRemaining(t),f.free(t,!0)),c.onAutoRetry(t,a,d,o)||p.cleanup(t,d,o))},hasMoreParts:function(e){return!!i._getFileState(e).chunking.remaining.length},nextPart:function(e){var t=i._getFileState(e).chunking.remaining.shift();return t>=i._getTotalChunks(e)&&(t=null),t},reset:function(e){r("Server or callback has ordered chunking effort to be restarted on next attempt for item ID "+e,"error"),i._maybeDeletePersistedChunkData(e),i.reevaluateChunking(e),i._getFileState(e).loaded=0},sendNext:function(e){var t=c.getSize(e),n=c.getName(e),o=l.nextPart(e),a=i._getChunkData(e,o),s=i._getFileState(e).attemptingResume,d=i._getFileState(e).chunking.inProgress||[];null==i._getFileState(e).loaded&&(i._getFileState(e).loaded=0),s&&!1===c.onResume(e,n,a)&&(l.reset(e),o=l.nextPart(e),a=i._getChunkData(e,o),s=!1),null==o&&0===d.length?l.finalize(e):(r(qq.format("Sending chunked upload request for item {}.{}, bytes {}-{} of {}.",e,o,a.start+1,a.end,t)),c.onUploadChunk(e,n,i._getChunkDataForCallback(a)),d.push(o),i._getFileState(e).chunking.inProgress=d,u&&f.open(e,o),u&&f.available()&&i._getFileState(e).chunking.remaining.length&&l.sendNext(e),0===a.blob.size?(r(qq.format("Chunk {} for file {} will not be uploaded, zero sized chunk.",o,e),"error"),l.handleFailure(o,e,"File is no longer available",null)):i.uploadChunk(e,o,s).then((function(t,n){r("Chunked upload request succeeded for "+e+", chunk "+o),i.clearCachedChunk(e,o);var a=i._getFileState(e).chunking.inProgress||[],s=p.normalizeResponse(t,!0),u=qq.indexOf(a,o);r(qq.format("Chunk {} for file {} uploaded successfully.",o,e)),l.done(e,o,s,n),u>=0&&a.splice(u,1),i._maybePersistChunkedState(e),l.hasMoreParts(e)||0!==a.length?l.hasMoreParts(e)?l.sendNext(e):r(qq.format("File ID {} has no more chunks to send and these chunk indexes are still marked as in-progress: {}",e,JSON.stringify(a))):l.finalize(e)}),(function(t,n){l.handleFailure(o,e,t,n)})).done((function(){i.clearXhr(e,o)})))}},f={_open:[],_openChunks:{},_waiting:[],available:function(){var e=c.maxConnections,t=0,n=0;return qq.each(f._openChunks,(function(e,r){t++,n+=r.length})),e-(f._open.length-t+n)},free:function(e,t){var n,o=!t,a=qq.indexOf(f._waiting,e),s=qq.indexOf(f._open,e);delete f._openChunks[e],p.getProxyOrBlob(e)instanceof qq.BlobProxy&&(r("Generated blob upload has ended for "+e+", disposing generated blob."),delete i._getFileState(e).file),a>=0?f._waiting.splice(a,1):o&&s>=0&&(f._open.splice(s,1),(n=f._waiting.shift())>=0&&(f._open.push(n),p.start(n)))},getWaitingOrConnected:function(){var e=[];return qq.each(f._openChunks,(function(t,n){n&&n.length&&e.push(parseInt(t))})),qq.each(f._open,(function(t,n){f._openChunks[n]||e.push(parseInt(n))})),e=e.concat(f._waiting)},isUsingConnection:function(e){return qq.indexOf(f._open,e)>=0},open:function(e,t){return null==t&&f._waiting.push(e),!!f.available()&&(null==t?(f._waiting.pop(),f._open.push(e)):((n=f._openChunks[e]||[]).push(t),f._openChunks[e]=n),!0);var n},reset:function(){f._waiting=[],f._open=[]}},d=function(e,t){i._getFileState(e).loaded=0,r("Sending simple upload request for "+e),i.uploadFile(e).then((function(n,i){r("Simple upload request succeeded for "+e);var o=p.normalizeResponse(n,!0),a=c.getSize(e);c.onProgress(e,t,a,a),p.maybeNewUuid(e,o),p.cleanup(e,o,i)}),(function(n,i){r("Simple upload request failed for "+e);var o=p.normalizeResponse(n,!1);c.onAutoRetry(e,t,o,i)||p.cleanup(e,o,i)}))},p={cancel:function(e){r("Cancelling "+e),c.paramsStore.remove(e),f.free(e)},cleanup:function(e,t,n){var r=c.getName(e);c.onComplete(e,r,t,n),i._getFileState(e)&&i._clearXhrs&&i._clearXhrs(e),f.free(e)},getProxyOrBlob:function(e){return i.getProxy&&i.getProxy(e)||i.getFile&&i.getFile(e)},initHandler:function(){var e=t?qq[t]:qq.traditional,n=qq.supportedFeatures.ajaxUploading?"Xhr":"Form";(i=new e[n+"UploadHandler"](c,{getDataByUuid:c.getDataByUuid,getName:c.getName,getSize:c.getSize,getUuid:c.getUuid,log:r,onCancel:c.onCancel,onProgress:c.onProgress,onUuidChanged:c.onUuidChanged}))._removeExpiredChunkingRecords&&i._removeExpiredChunkingRecords()},isDeferredEligibleForUpload:function(e){return c.isQueued(e)},maybeDefer:function(e,t){return t&&!i.getFile(e)&&t instanceof qq.BlobProxy?(c.onUploadPrep(e),r("Attempting to generate a blob on-demand for "+e),t.create().then((function(t){r("Generated an on-demand blob for "+e),i.updateBlob(e,t),c.setSize(e,t.size),i.reevaluateChunking(e),p.maybeSendDeferredFiles(e)}),(function(t){var i={};t&&(i.error=t),r(qq.format("Failed to generate blob for ID {}. Error message: {}.",e,t),"error"),c.onComplete(e,c.getName(e),qq.extend(i,n),null),p.maybeSendDeferredFiles(e),f.free(e)})),!1):p.maybeSendDeferredFiles(e)},maybeSendDeferredFiles:function(e){var t=c.getIdsInProxyGroup(e),n=!1;return t&&t.length?(r("Maybe ready to upload proxy group file "+e),qq.each(t,(function(t,r){if(p.isDeferredEligibleForUpload(r)&&i.getFile(r))n=r===e,p.now(r);else if(p.isDeferredEligibleForUpload(r))return!1}))):(n=!0,p.now(e)),n},maybeNewUuid:function(e,t){void 0!==t.newUuid&&c.onUuidChanged(e,t.newUuid)},normalizeResponse:function(e,t){var n=e;return qq.isObject(e)||(n={},qq.isString(e)&&!t&&(n.error=e)),n.success=t,n},now:function(e){var t=c.getName(e);if(!a.isValid(e))throw new qq.Error(e+" is not a valid file ID to upload!");c.onUpload(e,t),s&&i._shouldChunkThisFile(e)?l.sendNext(e):d(e,t)},start:function(e){var t=p.getProxyOrBlob(e);return t?p.maybeDefer(e,t):(p.now(e),!0)}};qq.extend(this,{add:function(e,t){i.add.apply(this,arguments)},upload:function(e){return!!f.open(e)&&p.start(e)},retry:function(e){return u&&(i._getFileState(e).temp.ignoreFailure=!1),f.isUsingConnection(e)?p.start(e):a.upload(e)},cancel:function(e){var t=i.cancel(e);qq.isGenericPromise(t)?t.then((function(){p.cancel(e)})):!1!==t&&p.cancel(e)},cancelAll:function(){var e,t=f.getWaitingOrConnected();if(t.length)for(e=t.length-1;e>=0;e--)a.cancel(t[e]);f.reset()},getFile:function(e){return i.getProxy&&i.getProxy(e)?i.getProxy(e).referenceBlob:i.getFile&&i.getFile(e)},isProxied:function(e){return!(!i.getProxy||!i.getProxy(e))},getInput:function(e){if(i.getInput)return i.getInput(e)},reset:function(){r("Resetting upload handler"),a.cancelAll(),f.reset(),i.reset()},expunge:function(e){if(a.isValid(e))return i.expunge(e)},isValid:function(e){return i.isValid(e)},getResumableFilesData:function(){return i.getResumableFilesData?i.getResumableFilesData():[]},getThirdPartyFileId:function(e){if(a.isValid(e))return i.getThirdPartyFileId(e)},pause:function(e){return!!(a.isResumable(e)&&i.pause&&a.isValid(e)&&i.pause(e))&&(f.free(e),i.moveInProgressToRemaining(e),!0)},isResumable:function(e){return!!i.isResumable&&i.isResumable(e)}}),qq.extend(c,e),r=c.log,s=c.chunking.enabled&&qq.supportedFeatures.chunking,u=s&&c.chunking.concurrent.enabled,(o={})[c.preventRetryParam]=!0,n=o,p.initHandler()},qq.WindowReceiveMessage=function(e){"use strict";var t={};qq.extend({log:function(e,t){}},e),qq.extend(this,{receiveMessage:function(e,n){window.postMessage?t[e]=qq(window).attach("message",(function(e){n(e.data)})):log("iframe message passing not supported in this browser!","error")},stopReceivingMessages:function(e){if(window.postMessage){var n=t[e];n&&n()}}})},qq.FormUploadHandler=function(e){"use strict";var t=e.options,n=this,r=e.proxy,i=qq.getUniqueId(),o={},a={},s={},u=t.isCors,c=t.inputName,l=r.getUuid,f=r.log,d=new qq.WindowReceiveMessage({log:f});function p(e){return e.split("_")[0]}qq.extend(this,new qq.UploadHandler(e)),qq.override(this,(function(e){return{add:function(t,n){e.add(t,{input:n}),n.setAttribute("name",c),n.parentNode&&qq(n).remove()},expunge:function(t){!function(e){delete a[e],u&&(clearTimeout(s[e]),delete s[e],d.stopReceivingMessages(e));var t=document.getElementById(n._getIframeName(e));t&&(t.setAttribute("src","javascript:false;"),qq(t).remove())}(t),e.expunge(t)},isValid:function(t){return e.isValid(t)&&void 0!==n._getFileState(t).input}}})),qq.extend(this,{getInput:function(e){return n._getFileState(e).input},_attachLoadEvent:function(e,t){var r;u?function(e,t){var r=e.id,i=p(r),u=l(i);o[u]=t,a[i]=qq(e).attach("load",(function(){n.getInput(i)&&(f("Received iframe load event for CORS upload request (iframe name "+r+")"),s[r]=setTimeout((function(){var e="No valid message received from loaded iframe for iframe name "+r;f(e,"error"),t({error:e})}),1e3))})),d.receiveMessage(r,(function(e){f("Received the following window message: '"+e+"'");p(r);var t,i=n._parseJsonResponse(e),a=i.uuid;a&&o[a]?(f("Handling response for iframe name "+r),clearTimeout(s[r]),delete s[r],n._detachLoadEvent(r),t=o[a],delete o[a],d.stopReceivingMessages(r),t(i)):a||f("'"+e+"' does not contain a UUID - ignoring.")}))}(e,t):a[e.id]=qq(e).attach("load",(function(){if(f("Received response for "+e.id),e.parentNode){try{if(e.contentDocument&&e.contentDocument.body&&"false"==e.contentDocument.body.innerHTML)return}catch(e){f("Error when attempting to access iframe during handling of upload response ("+e.message+")","error"),r={success:!1}}t(r)}}))},_createIframe:function(e){return function(e){var t=qq.toElement("