@nuvoui/core 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +19 -0
- package/dist/dark.css +1 -0
- package/dist/index.css +1 -0
- package/dist/index.css.map +1 -0
- package/dist/index.html +15 -0
- package/dist/light.css +1 -0
- package/dist/main.css +1 -0
- package/dist/main.js +1 -0
- package/package.json +43 -0
- package/src/js/main.js +1 -0
- package/src/styles/_global.scss +3 -0
- package/src/styles/base/_base.scss +75 -0
- package/src/styles/base/_reset.scss +92 -0
- package/src/styles/components/_alert.scss +0 -0
- package/src/styles/components/_avatar.scss +0 -0
- package/src/styles/components/_badge.scss +0 -0
- package/src/styles/components/_breadcrumb.scss +0 -0
- package/src/styles/components/_button.scss +247 -0
- package/src/styles/components/_calendar.scss +0 -0
- package/src/styles/components/_card.scss +0 -0
- package/src/styles/components/_checkbox.scss +23 -0
- package/src/styles/components/_dropdown.scss +0 -0
- package/src/styles/components/_form.scss +157 -0
- package/src/styles/components/_modal.scss +0 -0
- package/src/styles/components/_navbar.scss +125 -0
- package/src/styles/components/_pagination.scss +0 -0
- package/src/styles/components/_progress.scss +0 -0
- package/src/styles/components/_radio.scss +0 -0
- package/src/styles/components/_sidebar.scss +0 -0
- package/src/styles/components/_table.scss +0 -0
- package/src/styles/components/_tabs.scss +0 -0
- package/src/styles/components/_tooltip.scss +0 -0
- package/src/styles/index.scss +34 -0
- package/src/styles/layouts/_container.scss +49 -0
- package/src/styles/layouts/_flex.scss +138 -0
- package/src/styles/layouts/_grid.scss +147 -0
- package/src/styles/themes/_dark.scss +26 -0
- package/src/styles/themes/_light.scss +23 -0
- package/src/styles/themes/_theme.scss +136 -0
- package/src/styles/utilities/_animations.scss +135 -0
- package/src/styles/utilities/_colors.scss +158 -0
- package/src/styles/utilities/_functions.scss +59 -0
- package/src/styles/utilities/_position.scss +97 -0
- package/src/styles/utilities/_shadows.scss +107 -0
- package/src/styles/utilities/_spacing.scss +109 -0
- package/src/styles/utilities/_tooltips.scss +213 -0
- package/src/styles/utilities/_typography.scss +108 -0
- package/src/styles/utilities/_variables.scss +70 -0
package/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# NuvoUI
|
|
2
|
+
|
|
3
|
+
NuvoUI isn’t your next shiny, over-engineered UI library. It’s raw, lightweight, and built for one thing: delivering responsive, clean designs fast. If you’re tired of bloated frameworks slowing you down, welcome to NuvoUI.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Why NuvoUI?
|
|
8
|
+
|
|
9
|
+
- **No Fluff**: Just what you need—nothing you don’t.
|
|
10
|
+
- **Blazing Fast**: Tiny footprint, massive impact.
|
|
11
|
+
- **Straightforward**: No steep learning curve, no hidden magic—just CSS that works.
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## How to Use It
|
|
16
|
+
|
|
17
|
+
1. **Install via npm**
|
|
18
|
+
```bash
|
|
19
|
+
npm install nuvo-ui
|
package/dist/dark.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[data-theme=dark]{--primary:#007bff;--primary-rgb:0,123,255;--primary-lighter:#0069d9;--primary-light:#006fe6;--primary-dark:#1a88ff;--primary-darker:#268fff;--primary-10:rgba(0,123,255,.1);--primary-25:rgba(0,123,255,.25);--primary-50:rgba(0,123,255,.5);--primary-75:rgba(0,123,255,.75);--primary-hover:var(--primary-light);--primary-active:var(--primary-lighter);--primary-disabled:var(--primary-50);--secondary:#6c757d;--secondary-rgb:108,117,125;--secondary-lighter:#5c636a;--secondary-light:#616971;--secondary-dark:#79838b;--secondary-darker:#818a92;--secondary-10:hsla(208,7%,46%,.1);--secondary-25:hsla(208,7%,46%,.25);--secondary-50:hsla(208,7%,46%,.5);--secondary-75:hsla(208,7%,46%,.75);--secondary-hover:var(--secondary-light);--secondary-active:var(--secondary-lighter);--secondary-disabled:var(--secondary-50);--success:#28a745;--success-rgb:40,167,69;--success-lighter:#228e3b;--success-light:#24963e;--success-dark:#2ebf4f;--success-darker:#31cc54;--success-10:rgba(40,167,69,.1);--success-25:rgba(40,167,69,.25);--success-50:rgba(40,167,69,.5);--success-75:rgba(40,167,69,.75);--success-hover:var(--success-light);--success-active:var(--success-lighter);--success-disabled:var(--success-50);--danger:#dc3545;--danger-rgb:220,53,69;--danger-lighter:#c62232;--danger-light:#d12435;--danger-dark:#e04958;--danger-darker:#e15361;--danger-10:rgba(220,53,69,.1);--danger-25:rgba(220,53,69,.25);--danger-50:rgba(220,53,69,.5);--danger-75:rgba(220,53,69,.75);--danger-hover:var(--danger-light);--danger-active:var(--danger-lighter);--danger-disabled:var(--danger-50);--warning:#ffc107;--warning-rgb:255,193,7;--warning-lighter:#dfa700;--warning-light:#ecb100;--warning-dark:#ffc720;--warning-darker:#ffca2c;--warning-10:rgba(255,193,7,.1);--warning-25:rgba(255,193,7,.25);--warning-50:rgba(255,193,7,.5);--warning-75:rgba(255,193,7,.75);--warning-hover:var(--warning-light);--warning-active:var(--warning-lighter);--warning-disabled:var(--warning-50);--info:#17a2b8;--info-rgb:23,162,184;--info-lighter:#148a9c;--info-light:#1592a6;--info-dark:#1abad3;--info-darker:#1cc6e0;--info-10:rgba(23,162,184,.1);--info-25:rgba(23,162,184,.25);--info-50:rgba(23,162,184,.5);--info-75:rgba(23,162,184,.75);--info-hover:var(--info-light);--info-active:var(--info-lighter);--info-disabled:var(--info-50);--light:#f8f9fa;--light-rgb:248,249,250;--light-lighter:#ccd4db;--light-light:#dbe0e5;--light-dark:#f9fafb;--light-darker:#f9fafb;--light-10:rgba(248,249,250,.1);--light-25:rgba(248,249,250,.25);--light-50:rgba(248,249,250,.5);--light-75:rgba(248,249,250,.75);--light-hover:var(--light-light);--light-active:var(--light-lighter);--light-disabled:var(--light-50);--dark:#1c1f22;--dark-rgb:28,31,34;--dark-lighter:#181a1d;--dark-light:#191c1f;--dark-dark:#30353b;--dark-darker:#3a4147;--dark-10:rgba(28,31,34,.1);--dark-25:rgba(28,31,34,.25);--dark-50:rgba(28,31,34,.5);--dark-75:rgba(28,31,34,.75);--dark-hover:var(--dark-light);--dark-active:var(--dark-lighter);--dark-disabled:var(--dark-50);--bg-primary:var(--dark);--bg-secondary:#262a2e;--bg-tertiary:#30353b;--border-color:rgba(248,249,250,.07);--border-color-dark:rgba(248,249,250,.15);--text-primary:var(--light);--text-secondary:rgba(248,249,250,.7);--text-tertiary:rgba(248,249,250,.5);--text-disabled:rgba(248,249,250,.3);--text-inverse:var(--dark);--link-color:var(--primary);--link-hover-color:#1a88ff;--link-active-color:#3395ff;--link-visited-color:#1a7ce6;--nav-bg:var(--bg-primary);--nav-hover:var(--bg-secondary);--nav-active:var(--bg-tertiary);--nav-text:var(--text-primary);--nav-text-hover:var(--primary);--nav-border:var(--border-color);--tooltip-bg:var(--dark);--tooltip-text:var(--light);--tooltip-shadow-color:rgba(0,0,0,.4);--microtip-transition-duration:.518s;--microtip-transition-delay:.2s;--microtip-transition-easing:cubic-bezier(.16,1,.9,1);--microtip-font-size:.875rem;--microtip-font-weight:300;--microtip-text-transform:none;--font-family-heading:var(--font-family-base);--input-bg:#16191b}
|
package/dist/index.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:root{--font-family-base: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif}*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}body,h1,h2,h3,h4,h5,h6,p,figure,blockquote,dl,dd{margin:0}body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:"Courier New",Courier,monospace}img,picture,video,canvas,svg{display:block;max-width:100%}input,button,textarea,select{font:inherit;transition:all .2s ease-in-out}input:focus,button:focus,textarea:focus,select:focus{box-shadow:inset 0 0 7px 0px #60b0cd;outline:2px solid #40c1bf}@media(prefers-reduced-motion: reduce){*,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}ul[role=list],ol[role=list]{list-style:none}html:focus-within{scroll-behavior:smooth}a{text-decoration-skip-ink:auto;text-decoration:none;color:inherit}textarea:not([rows]){min-height:10em}html{font-size:16px;font-family:var(--font-family-base)}body{font-family:var(--font-family-base);font-weight:400;line-height:1.5;color:var(--text-primary)}h1,h2,h3,h4,h5,h6{margin-bottom:.5em;font-family:var(--font-family-heading);font-weight:700;line-height:1.2}h1{font-size:2.5rem}h2{font-size:2rem}h3{font-size:1.75rem}h4{font-size:1.5rem}h5{font-size:1.25rem}p{margin-bottom:1rem}small{font-size:.875rem}a{color:var(--link-color);transition:color .2s ease-in-out}a:hover{color:var(--link-hover-color)}ul,ol{margin-bottom:1rem;padding-left:2rem}@keyframes fade-in-reveal{to{scale:1;opacity:1}}@media(prefers-reduced-motion: no-preference){.anim__fade-in-reveal{scale:.2;opacity:.7;animation:fade-in-reveal linear forwards;animation-timeline:view();animation-range-start:cover;animation-range-end:550px}}@keyframes fadeOutAndCollapse{0%{opacity:1;bottom:0px;height:auto}50%{bottom:-500px;opacity:0}100%{bottom:100%;opacity:0;height:0;overflow:hidden}}.text-primary{color:#007bff}.bg-primary{background-color:#007bff}.text-secondary{color:#6c757d}.bg-secondary{background-color:#6c757d}.text-success{color:#28a745}.bg-success{background-color:#28a745}.text-danger{color:#dc3545}.bg-danger{background-color:#dc3545}.text-warning{color:#ffc107}.bg-warning{background-color:#ffc107}.text-info{color:#17a2b8}.bg-info{background-color:#17a2b8}.text-light{color:#f8f9fa}.bg-light{background-color:#f8f9fa}.text-dark{color:#1c1f22}.bg-dark{background-color:#1c1f22}.glass-effect{-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);background-color:hsla(0,0%,100%,.1)}.frosted-glass{-webkit-backdrop-filter:blur(5px) saturate(180%);backdrop-filter:blur(5px) saturate(180%);background-color:hsla(0,0%,100%,.8)}.p-static{position:static}.p-relative{position:relative}.p-absolute{position:absolute}.p-fixed{position:fixed}.p-sticky{position:sticky}@media(min-width: 480px){.xs\:p-static{position:static}.xs\:p-relative{position:relative}.xs\:p-absolute{position:absolute}.xs\:p-fixed{position:fixed}.xs\:p-sticky{position:sticky}}@media(min-width: 640px){.sm\:p-static{position:static}.sm\:p-relative{position:relative}.sm\:p-absolute{position:absolute}.sm\:p-fixed{position:fixed}.sm\:p-sticky{position:sticky}}@media(min-width: 768px){.md\:p-static{position:static}.md\:p-relative{position:relative}.md\:p-absolute{position:absolute}.md\:p-fixed{position:fixed}.md\:p-sticky{position:sticky}}@media(min-width: 1024px){.lg\:p-static{position:static}.lg\:p-relative{position:relative}.lg\:p-absolute{position:absolute}.lg\:p-fixed{position:fixed}.lg\:p-sticky{position:sticky}}@media(min-width: 1280px){.xl\:p-static{position:static}.xl\:p-relative{position:relative}.xl\:p-absolute{position:absolute}.xl\:p-fixed{position:fixed}.xl\:p-sticky{position:sticky}}@media(min-width: 1536px){.xxl\:p-static{position:static}.xxl\:p-relative{position:relative}.xxl\:p-absolute{position:absolute}.xxl\:p-fixed{position:fixed}.xxl\:p-sticky{position:sticky}}.top-0{top:0}.right-0{right:0}.bottom-0{bottom:0}.left-0{left:0}.top-1{top:1px}.right-1{right:1px}.bottom-1{bottom:1px}.left-1{left:1px}.top-2{top:2px}.right-2{right:2px}.bottom-2{bottom:2px}.left-2{left:2px}.top-3{top:3px}.right-3{right:3px}.bottom-3{bottom:3px}.left-3{left:3px}.top-4{top:4px}.right-4{right:4px}.bottom-4{bottom:4px}.left-4{left:4px}.top-5{top:5px}.right-5{right:5px}.bottom-5{bottom:5px}.left-5{left:5px}.top-6{top:6px}.right-6{right:6px}.bottom-6{bottom:6px}.left-6{left:6px}.top-7{top:7px}.right-7{right:7px}.bottom-7{bottom:7px}.left-7{left:7px}.top-8{top:8px}.right-8{right:8px}.bottom-8{bottom:8px}.left-8{left:8px}.top-9{top:9px}.right-9{right:9px}.bottom-9{bottom:9px}.left-9{left:9px}.top-10{top:10px}.right-10{right:10px}.bottom-10{bottom:10px}.left-10{left:10px}.top-11{top:11px}.right-11{right:11px}.bottom-11{bottom:11px}.left-11{left:11px}.top-12{top:12px}.right-12{right:12px}.bottom-12{bottom:12px}.left-12{left:12px}.top-13{top:13px}.right-13{right:13px}.bottom-13{bottom:13px}.left-13{left:13px}.top-14{top:14px}.right-14{right:14px}.bottom-14{bottom:14px}.left-14{left:14px}.top-15{top:15px}.right-15{right:15px}.bottom-15{bottom:15px}.left-15{left:15px}.top-16{top:16px}.right-16{right:16px}.bottom-16{bottom:16px}.left-16{left:16px}.top-17{top:17px}.right-17{right:17px}.bottom-17{bottom:17px}.left-17{left:17px}.top-18{top:18px}.right-18{right:18px}.bottom-18{bottom:18px}.left-18{left:18px}.top-19{top:19px}.right-19{right:19px}.bottom-19{bottom:19px}.left-19{left:19px}.top-20{top:20px}.right-20{right:20px}.bottom-20{bottom:20px}.left-20{left:20px}.top-21{top:21px}.right-21{right:21px}.bottom-21{bottom:21px}.left-21{left:21px}.top-22{top:22px}.right-22{right:22px}.bottom-22{bottom:22px}.left-22{left:22px}.top-23{top:23px}.right-23{right:23px}.bottom-23{bottom:23px}.left-23{left:23px}.top-24{top:24px}.right-24{right:24px}.bottom-24{bottom:24px}.left-24{left:24px}.top-25{top:25px}.right-25{right:25px}.bottom-25{bottom:25px}.left-25{left:25px}.top-26{top:26px}.right-26{right:26px}.bottom-26{bottom:26px}.left-26{left:26px}.top-27{top:27px}.right-27{right:27px}.bottom-27{bottom:27px}.left-27{left:27px}.top-28{top:28px}.right-28{right:28px}.bottom-28{bottom:28px}.left-28{left:28px}.top-29{top:29px}.right-29{right:29px}.bottom-29{bottom:29px}.left-29{left:29px}.top-30{top:30px}.right-30{right:30px}.bottom-30{bottom:30px}.left-30{left:30px}.top-31{top:31px}.right-31{right:31px}.bottom-31{bottom:31px}.left-31{left:31px}.top-32{top:32px}.right-32{right:32px}.bottom-32{bottom:32px}.left-32{left:32px}.top-33{top:33px}.right-33{right:33px}.bottom-33{bottom:33px}.left-33{left:33px}.top-34{top:34px}.right-34{right:34px}.bottom-34{bottom:34px}.left-34{left:34px}.top-35{top:35px}.right-35{right:35px}.bottom-35{bottom:35px}.left-35{left:35px}.top-36{top:36px}.right-36{right:36px}.bottom-36{bottom:36px}.left-36{left:36px}.top-37{top:37px}.right-37{right:37px}.bottom-37{bottom:37px}.left-37{left:37px}.top-38{top:38px}.right-38{right:38px}.bottom-38{bottom:38px}.left-38{left:38px}.top-39{top:39px}.right-39{right:39px}.bottom-39{bottom:39px}.left-39{left:39px}.top-40{top:40px}.right-40{right:40px}.bottom-40{bottom:40px}.left-40{left:40px}.top-41{top:41px}.right-41{right:41px}.bottom-41{bottom:41px}.left-41{left:41px}.top-42{top:42px}.right-42{right:42px}.bottom-42{bottom:42px}.left-42{left:42px}.top-43{top:43px}.right-43{right:43px}.bottom-43{bottom:43px}.left-43{left:43px}.top-44{top:44px}.right-44{right:44px}.bottom-44{bottom:44px}.left-44{left:44px}.top-45{top:45px}.right-45{right:45px}.bottom-45{bottom:45px}.left-45{left:45px}.top-46{top:46px}.right-46{right:46px}.bottom-46{bottom:46px}.left-46{left:46px}.top-47{top:47px}.right-47{right:47px}.bottom-47{bottom:47px}.left-47{left:47px}.top-48{top:48px}.right-48{right:48px}.bottom-48{bottom:48px}.left-48{left:48px}.top-49{top:49px}.right-49{right:49px}.bottom-49{bottom:49px}.left-49{left:49px}.top-50{top:50px}.right-50{right:50px}.bottom-50{bottom:50px}.left-50{left:50px}.top-51{top:51px}.right-51{right:51px}.bottom-51{bottom:51px}.left-51{left:51px}.top-52{top:52px}.right-52{right:52px}.bottom-52{bottom:52px}.left-52{left:52px}.top-53{top:53px}.right-53{right:53px}.bottom-53{bottom:53px}.left-53{left:53px}.top-54{top:54px}.right-54{right:54px}.bottom-54{bottom:54px}.left-54{left:54px}.top-55{top:55px}.right-55{right:55px}.bottom-55{bottom:55px}.left-55{left:55px}.top-56{top:56px}.right-56{right:56px}.bottom-56{bottom:56px}.left-56{left:56px}.top-57{top:57px}.right-57{right:57px}.bottom-57{bottom:57px}.left-57{left:57px}.top-58{top:58px}.right-58{right:58px}.bottom-58{bottom:58px}.left-58{left:58px}.top-59{top:59px}.right-59{right:59px}.bottom-59{bottom:59px}.left-59{left:59px}.top-60{top:60px}.right-60{right:60px}.bottom-60{bottom:60px}.left-60{left:60px}.top-61{top:61px}.right-61{right:61px}.bottom-61{bottom:61px}.left-61{left:61px}.top-62{top:62px}.right-62{right:62px}.bottom-62{bottom:62px}.left-62{left:62px}.top-63{top:63px}.right-63{right:63px}.bottom-63{bottom:63px}.left-63{left:63px}.top-64{top:64px}.right-64{right:64px}.bottom-64{bottom:64px}.left-64{left:64px}.top-65{top:65px}.right-65{right:65px}.bottom-65{bottom:65px}.left-65{left:65px}.top-66{top:66px}.right-66{right:66px}.bottom-66{bottom:66px}.left-66{left:66px}.top-67{top:67px}.right-67{right:67px}.bottom-67{bottom:67px}.left-67{left:67px}.top-68{top:68px}.right-68{right:68px}.bottom-68{bottom:68px}.left-68{left:68px}.top-69{top:69px}.right-69{right:69px}.bottom-69{bottom:69px}.left-69{left:69px}.top-70{top:70px}.right-70{right:70px}.bottom-70{bottom:70px}.left-70{left:70px}.top-71{top:71px}.right-71{right:71px}.bottom-71{bottom:71px}.left-71{left:71px}.top-72{top:72px}.right-72{right:72px}.bottom-72{bottom:72px}.left-72{left:72px}.top-73{top:73px}.right-73{right:73px}.bottom-73{bottom:73px}.left-73{left:73px}.top-74{top:74px}.right-74{right:74px}.bottom-74{bottom:74px}.left-74{left:74px}.top-75{top:75px}.right-75{right:75px}.bottom-75{bottom:75px}.left-75{left:75px}.top-76{top:76px}.right-76{right:76px}.bottom-76{bottom:76px}.left-76{left:76px}.top-77{top:77px}.right-77{right:77px}.bottom-77{bottom:77px}.left-77{left:77px}.top-78{top:78px}.right-78{right:78px}.bottom-78{bottom:78px}.left-78{left:78px}.top-79{top:79px}.right-79{right:79px}.bottom-79{bottom:79px}.left-79{left:79px}.top-80{top:80px}.right-80{right:80px}.bottom-80{bottom:80px}.left-80{left:80px}.top-81{top:81px}.right-81{right:81px}.bottom-81{bottom:81px}.left-81{left:81px}.top-82{top:82px}.right-82{right:82px}.bottom-82{bottom:82px}.left-82{left:82px}.top-83{top:83px}.right-83{right:83px}.bottom-83{bottom:83px}.left-83{left:83px}.top-84{top:84px}.right-84{right:84px}.bottom-84{bottom:84px}.left-84{left:84px}.top-85{top:85px}.right-85{right:85px}.bottom-85{bottom:85px}.left-85{left:85px}.top-86{top:86px}.right-86{right:86px}.bottom-86{bottom:86px}.left-86{left:86px}.top-87{top:87px}.right-87{right:87px}.bottom-87{bottom:87px}.left-87{left:87px}.top-88{top:88px}.right-88{right:88px}.bottom-88{bottom:88px}.left-88{left:88px}.top-89{top:89px}.right-89{right:89px}.bottom-89{bottom:89px}.left-89{left:89px}.top-90{top:90px}.right-90{right:90px}.bottom-90{bottom:90px}.left-90{left:90px}.top-91{top:91px}.right-91{right:91px}.bottom-91{bottom:91px}.left-91{left:91px}.top-92{top:92px}.right-92{right:92px}.bottom-92{bottom:92px}.left-92{left:92px}.top-93{top:93px}.right-93{right:93px}.bottom-93{bottom:93px}.left-93{left:93px}.top-94{top:94px}.right-94{right:94px}.bottom-94{bottom:94px}.left-94{left:94px}.top-95{top:95px}.right-95{right:95px}.bottom-95{bottom:95px}.left-95{left:95px}.top-96{top:96px}.right-96{right:96px}.bottom-96{bottom:96px}.left-96{left:96px}.top-97{top:97px}.right-97{right:97px}.bottom-97{bottom:97px}.left-97{left:97px}.top-98{top:98px}.right-98{right:98px}.bottom-98{bottom:98px}.left-98{left:98px}.top-99{top:99px}.right-99{right:99px}.bottom-99{bottom:99px}.left-99{left:99px}.top-100{top:100px}.right-100{right:100px}.bottom-100{bottom:100px}.left-100{left:100px}.shadow-none{box-shadow:none}.shadow-sm{transition:box-shadow .2s ease-in-out;box-shadow:0 1px 2px 0 rgba(0,0,0,.1)}.shadow-sm-dark{transition:box-shadow .2s ease-in-out;box-shadow:0 1px 2px 0 rgba(0,0,0,.2)}.shadow-inset-sm{box-shadow:inset 0 1px 2px 0 rgba(0,0,0,.1)}.shadow-md{transition:box-shadow .2s ease-in-out;box-shadow:0 4px 6px -1px rgba(0,0,0,.1)}.shadow-md-dark{transition:box-shadow .2s ease-in-out;box-shadow:0 4px 6px -1px rgba(0,0,0,.2)}.shadow-inset-md{box-shadow:inset 0 4px 6px -1px rgba(0,0,0,.1)}.shadow-lg{transition:box-shadow .2s ease-in-out;box-shadow:0 10px 15px -3px rgba(0,0,0,.1)}.shadow-lg-dark{transition:box-shadow .2s ease-in-out;box-shadow:0 10px 15px -3px rgba(0,0,0,.2)}.shadow-inset-lg{box-shadow:inset 0 10px 15px -3px rgba(0,0,0,.1)}.shadow-xl{transition:box-shadow .2s ease-in-out;box-shadow:0 20px 25px -5px rgba(0,0,0,.1)}.shadow-xl-dark{transition:box-shadow .2s ease-in-out;box-shadow:0 20px 25px -5px rgba(0,0,0,.2)}.shadow-inset-xl{box-shadow:inset 0 20px 25px -5px rgba(0,0,0,.1)}.shadow-hero{transition:box-shadow .2s ease-in-out;box-shadow:0 20px 25px 5px rgba(0,0,0,.1)}.shadow-hero-dark{transition:box-shadow .2s ease-in-out;box-shadow:0 20px 25px 5px rgba(0,0,0,.2)}.shadow-inset-hero{box-shadow:inset 0 20px 25px 5px rgba(0,0,0,.1)}.shadow-monster{transition:box-shadow .2s ease-in-out;box-shadow:0 20px 55px 20px rgba(0,0,0,.1)}.shadow-monster-dark{transition:box-shadow .2s ease-in-out;box-shadow:0 20px 55px 20px rgba(0,0,0,.2)}.shadow-inset-monster{box-shadow:inset 0 20px 55px 20px rgba(0,0,0,.1)}.shadow-hover:hover{transition:box-shadow .2s ease-in-out;box-shadow:0 10px 15px -3px rgba(0,0,0,.1)}.p-0{padding:0 !important}.px-0{padding-left:0 !important;padding-right:0 !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.pt-0{padding-top:0 !important}.pr-0{padding-right:0 !important}.pb-0{padding-bottom:0 !important}.pl-0{padding-left:0 !important}.m-0{margin:0 !important}.mx-0{margin-left:0 !important;margin-right:0 !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.mt-0{margin-top:0 !important}.mr-0{margin-right:0 !important}.mb-0{margin-bottom:0 !important}.ml-0{margin-left:0 !important}.p-1{padding:1px !important}.px-1{padding-left:1px !important;padding-right:1px !important}.py-1{padding-top:1px !important;padding-bottom:1px !important}.pt-1{padding-top:1px !important}.pr-1{padding-right:1px !important}.pb-1{padding-bottom:1px !important}.pl-1{padding-left:1px !important}.m-1{margin:1px !important}.mx-1{margin-left:1px !important;margin-right:1px !important}.my-1{margin-top:1px !important;margin-bottom:1px !important}.mt-1{margin-top:1px !important}.mr-1{margin-right:1px !important}.mb-1{margin-bottom:1px !important}.ml-1{margin-left:1px !important}.p-2{padding:2px !important}.px-2{padding-left:2px !important;padding-right:2px !important}.py-2{padding-top:2px !important;padding-bottom:2px !important}.pt-2{padding-top:2px !important}.pr-2{padding-right:2px !important}.pb-2{padding-bottom:2px !important}.pl-2{padding-left:2px !important}.m-2{margin:2px !important}.mx-2{margin-left:2px !important;margin-right:2px !important}.my-2{margin-top:2px !important;margin-bottom:2px !important}.mt-2{margin-top:2px !important}.mr-2{margin-right:2px !important}.mb-2{margin-bottom:2px !important}.ml-2{margin-left:2px !important}.p-3{padding:3px !important}.px-3{padding-left:3px !important;padding-right:3px !important}.py-3{padding-top:3px !important;padding-bottom:3px !important}.pt-3{padding-top:3px !important}.pr-3{padding-right:3px !important}.pb-3{padding-bottom:3px !important}.pl-3{padding-left:3px !important}.m-3{margin:3px !important}.mx-3{margin-left:3px !important;margin-right:3px !important}.my-3{margin-top:3px !important;margin-bottom:3px !important}.mt-3{margin-top:3px !important}.mr-3{margin-right:3px !important}.mb-3{margin-bottom:3px !important}.ml-3{margin-left:3px !important}.p-4{padding:4px !important}.px-4{padding-left:4px !important;padding-right:4px !important}.py-4{padding-top:4px !important;padding-bottom:4px !important}.pt-4{padding-top:4px !important}.pr-4{padding-right:4px !important}.pb-4{padding-bottom:4px !important}.pl-4{padding-left:4px !important}.m-4{margin:4px !important}.mx-4{margin-left:4px !important;margin-right:4px !important}.my-4{margin-top:4px !important;margin-bottom:4px !important}.mt-4{margin-top:4px !important}.mr-4{margin-right:4px !important}.mb-4{margin-bottom:4px !important}.ml-4{margin-left:4px !important}.p-5{padding:5px !important}.px-5{padding-left:5px !important;padding-right:5px !important}.py-5{padding-top:5px !important;padding-bottom:5px !important}.pt-5{padding-top:5px !important}.pr-5{padding-right:5px !important}.pb-5{padding-bottom:5px !important}.pl-5{padding-left:5px !important}.m-5{margin:5px !important}.mx-5{margin-left:5px !important;margin-right:5px !important}.my-5{margin-top:5px !important;margin-bottom:5px !important}.mt-5{margin-top:5px !important}.mr-5{margin-right:5px !important}.mb-5{margin-bottom:5px !important}.ml-5{margin-left:5px !important}.p-6{padding:6px !important}.px-6{padding-left:6px !important;padding-right:6px !important}.py-6{padding-top:6px !important;padding-bottom:6px !important}.pt-6{padding-top:6px !important}.pr-6{padding-right:6px !important}.pb-6{padding-bottom:6px !important}.pl-6{padding-left:6px !important}.m-6{margin:6px !important}.mx-6{margin-left:6px !important;margin-right:6px !important}.my-6{margin-top:6px !important;margin-bottom:6px !important}.mt-6{margin-top:6px !important}.mr-6{margin-right:6px !important}.mb-6{margin-bottom:6px !important}.ml-6{margin-left:6px !important}.p-7{padding:7px !important}.px-7{padding-left:7px !important;padding-right:7px !important}.py-7{padding-top:7px !important;padding-bottom:7px !important}.pt-7{padding-top:7px !important}.pr-7{padding-right:7px !important}.pb-7{padding-bottom:7px !important}.pl-7{padding-left:7px !important}.m-7{margin:7px !important}.mx-7{margin-left:7px !important;margin-right:7px !important}.my-7{margin-top:7px !important;margin-bottom:7px !important}.mt-7{margin-top:7px !important}.mr-7{margin-right:7px !important}.mb-7{margin-bottom:7px !important}.ml-7{margin-left:7px !important}.p-8{padding:8px !important}.px-8{padding-left:8px !important;padding-right:8px !important}.py-8{padding-top:8px !important;padding-bottom:8px !important}.pt-8{padding-top:8px !important}.pr-8{padding-right:8px !important}.pb-8{padding-bottom:8px !important}.pl-8{padding-left:8px !important}.m-8{margin:8px !important}.mx-8{margin-left:8px !important;margin-right:8px !important}.my-8{margin-top:8px !important;margin-bottom:8px !important}.mt-8{margin-top:8px !important}.mr-8{margin-right:8px !important}.mb-8{margin-bottom:8px !important}.ml-8{margin-left:8px !important}.p-9{padding:9px !important}.px-9{padding-left:9px !important;padding-right:9px !important}.py-9{padding-top:9px !important;padding-bottom:9px !important}.pt-9{padding-top:9px !important}.pr-9{padding-right:9px !important}.pb-9{padding-bottom:9px !important}.pl-9{padding-left:9px !important}.m-9{margin:9px !important}.mx-9{margin-left:9px !important;margin-right:9px !important}.my-9{margin-top:9px !important;margin-bottom:9px !important}.mt-9{margin-top:9px !important}.mr-9{margin-right:9px !important}.mb-9{margin-bottom:9px !important}.ml-9{margin-left:9px !important}.p-10{padding:10px !important}.px-10{padding-left:10px !important;padding-right:10px !important}.py-10{padding-top:10px !important;padding-bottom:10px !important}.pt-10{padding-top:10px !important}.pr-10{padding-right:10px !important}.pb-10{padding-bottom:10px !important}.pl-10{padding-left:10px !important}.m-10{margin:10px !important}.mx-10{margin-left:10px !important;margin-right:10px !important}.my-10{margin-top:10px !important;margin-bottom:10px !important}.mt-10{margin-top:10px !important}.mr-10{margin-right:10px !important}.mb-10{margin-bottom:10px !important}.ml-10{margin-left:10px !important}.p-12{padding:12px !important}.px-12{padding-left:12px !important;padding-right:12px !important}.py-12{padding-top:12px !important;padding-bottom:12px !important}.pt-12{padding-top:12px !important}.pr-12{padding-right:12px !important}.pb-12{padding-bottom:12px !important}.pl-12{padding-left:12px !important}.m-12{margin:12px !important}.mx-12{margin-left:12px !important;margin-right:12px !important}.my-12{margin-top:12px !important;margin-bottom:12px !important}.mt-12{margin-top:12px !important}.mr-12{margin-right:12px !important}.mb-12{margin-bottom:12px !important}.ml-12{margin-left:12px !important}.p-14{padding:14px !important}.px-14{padding-left:14px !important;padding-right:14px !important}.py-14{padding-top:14px !important;padding-bottom:14px !important}.pt-14{padding-top:14px !important}.pr-14{padding-right:14px !important}.pb-14{padding-bottom:14px !important}.pl-14{padding-left:14px !important}.m-14{margin:14px !important}.mx-14{margin-left:14px !important;margin-right:14px !important}.my-14{margin-top:14px !important;margin-bottom:14px !important}.mt-14{margin-top:14px !important}.mr-14{margin-right:14px !important}.mb-14{margin-bottom:14px !important}.ml-14{margin-left:14px !important}.p-15{padding:15px !important}.px-15{padding-left:15px !important;padding-right:15px !important}.py-15{padding-top:15px !important;padding-bottom:15px !important}.pt-15{padding-top:15px !important}.pr-15{padding-right:15px !important}.pb-15{padding-bottom:15px !important}.pl-15{padding-left:15px !important}.m-15{margin:15px !important}.mx-15{margin-left:15px !important;margin-right:15px !important}.my-15{margin-top:15px !important;margin-bottom:15px !important}.mt-15{margin-top:15px !important}.mr-15{margin-right:15px !important}.mb-15{margin-bottom:15px !important}.ml-15{margin-left:15px !important}.p-16{padding:16px !important}.px-16{padding-left:16px !important;padding-right:16px !important}.py-16{padding-top:16px !important;padding-bottom:16px !important}.pt-16{padding-top:16px !important}.pr-16{padding-right:16px !important}.pb-16{padding-bottom:16px !important}.pl-16{padding-left:16px !important}.m-16{margin:16px !important}.mx-16{margin-left:16px !important;margin-right:16px !important}.my-16{margin-top:16px !important;margin-bottom:16px !important}.mt-16{margin-top:16px !important}.mr-16{margin-right:16px !important}.mb-16{margin-bottom:16px !important}.ml-16{margin-left:16px !important}.p-18{padding:18px !important}.px-18{padding-left:18px !important;padding-right:18px !important}.py-18{padding-top:18px !important;padding-bottom:18px !important}.pt-18{padding-top:18px !important}.pr-18{padding-right:18px !important}.pb-18{padding-bottom:18px !important}.pl-18{padding-left:18px !important}.m-18{margin:18px !important}.mx-18{margin-left:18px !important;margin-right:18px !important}.my-18{margin-top:18px !important;margin-bottom:18px !important}.mt-18{margin-top:18px !important}.mr-18{margin-right:18px !important}.mb-18{margin-bottom:18px !important}.ml-18{margin-left:18px !important}.p-20{padding:20px !important}.px-20{padding-left:20px !important;padding-right:20px !important}.py-20{padding-top:20px !important;padding-bottom:20px !important}.pt-20{padding-top:20px !important}.pr-20{padding-right:20px !important}.pb-20{padding-bottom:20px !important}.pl-20{padding-left:20px !important}.m-20{margin:20px !important}.mx-20{margin-left:20px !important;margin-right:20px !important}.my-20{margin-top:20px !important;margin-bottom:20px !important}.mt-20{margin-top:20px !important}.mr-20{margin-right:20px !important}.mb-20{margin-bottom:20px !important}.ml-20{margin-left:20px !important}.p-25{padding:25px !important}.px-25{padding-left:25px !important;padding-right:25px !important}.py-25{padding-top:25px !important;padding-bottom:25px !important}.pt-25{padding-top:25px !important}.pr-25{padding-right:25px !important}.pb-25{padding-bottom:25px !important}.pl-25{padding-left:25px !important}.m-25{margin:25px !important}.mx-25{margin-left:25px !important;margin-right:25px !important}.my-25{margin-top:25px !important;margin-bottom:25px !important}.mt-25{margin-top:25px !important}.mr-25{margin-right:25px !important}.mb-25{margin-bottom:25px !important}.ml-25{margin-left:25px !important}.p-30{padding:30px !important}.px-30{padding-left:30px !important;padding-right:30px !important}.py-30{padding-top:30px !important;padding-bottom:30px !important}.pt-30{padding-top:30px !important}.pr-30{padding-right:30px !important}.pb-30{padding-bottom:30px !important}.pl-30{padding-left:30px !important}.m-30{margin:30px !important}.mx-30{margin-left:30px !important;margin-right:30px !important}.my-30{margin-top:30px !important;margin-bottom:30px !important}.mt-30{margin-top:30px !important}.mr-30{margin-right:30px !important}.mb-30{margin-bottom:30px !important}.ml-30{margin-left:30px !important}.p-35{padding:35px !important}.px-35{padding-left:35px !important;padding-right:35px !important}.py-35{padding-top:35px !important;padding-bottom:35px !important}.pt-35{padding-top:35px !important}.pr-35{padding-right:35px !important}.pb-35{padding-bottom:35px !important}.pl-35{padding-left:35px !important}.m-35{margin:35px !important}.mx-35{margin-left:35px !important;margin-right:35px !important}.my-35{margin-top:35px !important;margin-bottom:35px !important}.mt-35{margin-top:35px !important}.mr-35{margin-right:35px !important}.mb-35{margin-bottom:35px !important}.ml-35{margin-left:35px !important}.p-40{padding:40px !important}.px-40{padding-left:40px !important;padding-right:40px !important}.py-40{padding-top:40px !important;padding-bottom:40px !important}.pt-40{padding-top:40px !important}.pr-40{padding-right:40px !important}.pb-40{padding-bottom:40px !important}.pl-40{padding-left:40px !important}.m-40{margin:40px !important}.mx-40{margin-left:40px !important;margin-right:40px !important}.my-40{margin-top:40px !important;margin-bottom:40px !important}.mt-40{margin-top:40px !important}.mr-40{margin-right:40px !important}.mb-40{margin-bottom:40px !important}.ml-40{margin-left:40px !important}.p-45{padding:45px !important}.px-45{padding-left:45px !important;padding-right:45px !important}.py-45{padding-top:45px !important;padding-bottom:45px !important}.pt-45{padding-top:45px !important}.pr-45{padding-right:45px !important}.pb-45{padding-bottom:45px !important}.pl-45{padding-left:45px !important}.m-45{margin:45px !important}.mx-45{margin-left:45px !important;margin-right:45px !important}.my-45{margin-top:45px !important;margin-bottom:45px !important}.mt-45{margin-top:45px !important}.mr-45{margin-right:45px !important}.mb-45{margin-bottom:45px !important}.ml-45{margin-left:45px !important}.p-50{padding:50px !important}.px-50{padding-left:50px !important;padding-right:50px !important}.py-50{padding-top:50px !important;padding-bottom:50px !important}.pt-50{padding-top:50px !important}.pr-50{padding-right:50px !important}.pb-50{padding-bottom:50px !important}.pl-50{padding-left:50px !important}.m-50{margin:50px !important}.mx-50{margin-left:50px !important;margin-right:50px !important}.my-50{margin-top:50px !important;margin-bottom:50px !important}.mt-50{margin-top:50px !important}.mr-50{margin-right:50px !important}.mb-50{margin-bottom:50px !important}.ml-50{margin-left:50px !important}.p-55{padding:55px !important}.px-55{padding-left:55px !important;padding-right:55px !important}.py-55{padding-top:55px !important;padding-bottom:55px !important}.pt-55{padding-top:55px !important}.pr-55{padding-right:55px !important}.pb-55{padding-bottom:55px !important}.pl-55{padding-left:55px !important}.m-55{margin:55px !important}.mx-55{margin-left:55px !important;margin-right:55px !important}.my-55{margin-top:55px !important;margin-bottom:55px !important}.mt-55{margin-top:55px !important}.mr-55{margin-right:55px !important}.mb-55{margin-bottom:55px !important}.ml-55{margin-left:55px !important}.p-60{padding:60px !important}.px-60{padding-left:60px !important;padding-right:60px !important}.py-60{padding-top:60px !important;padding-bottom:60px !important}.pt-60{padding-top:60px !important}.pr-60{padding-right:60px !important}.pb-60{padding-bottom:60px !important}.pl-60{padding-left:60px !important}.m-60{margin:60px !important}.mx-60{margin-left:60px !important;margin-right:60px !important}.my-60{margin-top:60px !important;margin-bottom:60px !important}.mt-60{margin-top:60px !important}.mr-60{margin-right:60px !important}.mb-60{margin-bottom:60px !important}.ml-60{margin-left:60px !important}.p-65{padding:65px !important}.px-65{padding-left:65px !important;padding-right:65px !important}.py-65{padding-top:65px !important;padding-bottom:65px !important}.pt-65{padding-top:65px !important}.pr-65{padding-right:65px !important}.pb-65{padding-bottom:65px !important}.pl-65{padding-left:65px !important}.m-65{margin:65px !important}.mx-65{margin-left:65px !important;margin-right:65px !important}.my-65{margin-top:65px !important;margin-bottom:65px !important}.mt-65{margin-top:65px !important}.mr-65{margin-right:65px !important}.mb-65{margin-bottom:65px !important}.ml-65{margin-left:65px !important}.p-70{padding:70px !important}.px-70{padding-left:70px !important;padding-right:70px !important}.py-70{padding-top:70px !important;padding-bottom:70px !important}.pt-70{padding-top:70px !important}.pr-70{padding-right:70px !important}.pb-70{padding-bottom:70px !important}.pl-70{padding-left:70px !important}.m-70{margin:70px !important}.mx-70{margin-left:70px !important;margin-right:70px !important}.my-70{margin-top:70px !important;margin-bottom:70px !important}.mt-70{margin-top:70px !important}.mr-70{margin-right:70px !important}.mb-70{margin-bottom:70px !important}.ml-70{margin-left:70px !important}.p-75{padding:75px !important}.px-75{padding-left:75px !important;padding-right:75px !important}.py-75{padding-top:75px !important;padding-bottom:75px !important}.pt-75{padding-top:75px !important}.pr-75{padding-right:75px !important}.pb-75{padding-bottom:75px !important}.pl-75{padding-left:75px !important}.m-75{margin:75px !important}.mx-75{margin-left:75px !important;margin-right:75px !important}.my-75{margin-top:75px !important;margin-bottom:75px !important}.mt-75{margin-top:75px !important}.mr-75{margin-right:75px !important}.mb-75{margin-bottom:75px !important}.ml-75{margin-left:75px !important}.p-80{padding:80px !important}.px-80{padding-left:80px !important;padding-right:80px !important}.py-80{padding-top:80px !important;padding-bottom:80px !important}.pt-80{padding-top:80px !important}.pr-80{padding-right:80px !important}.pb-80{padding-bottom:80px !important}.pl-80{padding-left:80px !important}.m-80{margin:80px !important}.mx-80{margin-left:80px !important;margin-right:80px !important}.my-80{margin-top:80px !important;margin-bottom:80px !important}.mt-80{margin-top:80px !important}.mr-80{margin-right:80px !important}.mb-80{margin-bottom:80px !important}.ml-80{margin-left:80px !important}.p-85{padding:85px !important}.px-85{padding-left:85px !important;padding-right:85px !important}.py-85{padding-top:85px !important;padding-bottom:85px !important}.pt-85{padding-top:85px !important}.pr-85{padding-right:85px !important}.pb-85{padding-bottom:85px !important}.pl-85{padding-left:85px !important}.m-85{margin:85px !important}.mx-85{margin-left:85px !important;margin-right:85px !important}.my-85{margin-top:85px !important;margin-bottom:85px !important}.mt-85{margin-top:85px !important}.mr-85{margin-right:85px !important}.mb-85{margin-bottom:85px !important}.ml-85{margin-left:85px !important}.p-90{padding:90px !important}.px-90{padding-left:90px !important;padding-right:90px !important}.py-90{padding-top:90px !important;padding-bottom:90px !important}.pt-90{padding-top:90px !important}.pr-90{padding-right:90px !important}.pb-90{padding-bottom:90px !important}.pl-90{padding-left:90px !important}.m-90{margin:90px !important}.mx-90{margin-left:90px !important;margin-right:90px !important}.my-90{margin-top:90px !important;margin-bottom:90px !important}.mt-90{margin-top:90px !important}.mr-90{margin-right:90px !important}.mb-90{margin-bottom:90px !important}.ml-90{margin-left:90px !important}.p-95{padding:95px !important}.px-95{padding-left:95px !important;padding-right:95px !important}.py-95{padding-top:95px !important;padding-bottom:95px !important}.pt-95{padding-top:95px !important}.pr-95{padding-right:95px !important}.pb-95{padding-bottom:95px !important}.pl-95{padding-left:95px !important}.m-95{margin:95px !important}.mx-95{margin-left:95px !important;margin-right:95px !important}.my-95{margin-top:95px !important;margin-bottom:95px !important}.mt-95{margin-top:95px !important}.mr-95{margin-right:95px !important}.mb-95{margin-bottom:95px !important}.ml-95{margin-left:95px !important}.p-100{padding:100px !important}.px-100{padding-left:100px !important;padding-right:100px !important}.py-100{padding-top:100px !important;padding-bottom:100px !important}.pt-100{padding-top:100px !important}.pr-100{padding-right:100px !important}.pb-100{padding-bottom:100px !important}.pl-100{padding-left:100px !important}.m-100{margin:100px !important}.mx-100{margin-left:100px !important;margin-right:100px !important}.my-100{margin-top:100px !important;margin-bottom:100px !important}.mt-100{margin-top:100px !important}.mr-100{margin-right:100px !important}.mb-100{margin-bottom:100px !important}.ml-100{margin-left:100px !important}@media(min-width: 480px){.xs\:p-0{padding:0 !important}.xs\:px-0{padding-left:0 !important;padding-right:0 !important}.xs\:py-0{padding-top:0 !important;padding-bottom:0 !important}.xs\:pt-0{padding-top:0 !important}.xs\:pr-0{padding-right:0 !important}.xs\:pb-0{padding-bottom:0 !important}.xs\:pl-0{padding-left:0 !important}.xs\:m-0{margin:0 !important}.xs\:mx-0{margin-left:0 !important;margin-right:0 !important}.xs\:my-0{margin-top:0 !important;margin-bottom:0 !important}.xs\:mt-0{margin-top:0 !important}.xs\:mr-0{margin-right:0 !important}.xs\:mb-0{margin-bottom:0 !important}.xs\:ml-0{margin-left:0 !important}.xs\:p-1{padding:1px !important}.xs\:px-1{padding-left:1px !important;padding-right:1px !important}.xs\:py-1{padding-top:1px !important;padding-bottom:1px !important}.xs\:pt-1{padding-top:1px !important}.xs\:pr-1{padding-right:1px !important}.xs\:pb-1{padding-bottom:1px !important}.xs\:pl-1{padding-left:1px !important}.xs\:m-1{margin:1px !important}.xs\:mx-1{margin-left:1px !important;margin-right:1px !important}.xs\:my-1{margin-top:1px !important;margin-bottom:1px !important}.xs\:mt-1{margin-top:1px !important}.xs\:mr-1{margin-right:1px !important}.xs\:mb-1{margin-bottom:1px !important}.xs\:ml-1{margin-left:1px !important}.xs\:p-2{padding:2px !important}.xs\:px-2{padding-left:2px !important;padding-right:2px !important}.xs\:py-2{padding-top:2px !important;padding-bottom:2px !important}.xs\:pt-2{padding-top:2px !important}.xs\:pr-2{padding-right:2px !important}.xs\:pb-2{padding-bottom:2px !important}.xs\:pl-2{padding-left:2px !important}.xs\:m-2{margin:2px !important}.xs\:mx-2{margin-left:2px !important;margin-right:2px !important}.xs\:my-2{margin-top:2px !important;margin-bottom:2px !important}.xs\:mt-2{margin-top:2px !important}.xs\:mr-2{margin-right:2px !important}.xs\:mb-2{margin-bottom:2px !important}.xs\:ml-2{margin-left:2px !important}.xs\:p-3{padding:3px !important}.xs\:px-3{padding-left:3px !important;padding-right:3px !important}.xs\:py-3{padding-top:3px !important;padding-bottom:3px !important}.xs\:pt-3{padding-top:3px !important}.xs\:pr-3{padding-right:3px !important}.xs\:pb-3{padding-bottom:3px !important}.xs\:pl-3{padding-left:3px !important}.xs\:m-3{margin:3px !important}.xs\:mx-3{margin-left:3px !important;margin-right:3px !important}.xs\:my-3{margin-top:3px !important;margin-bottom:3px !important}.xs\:mt-3{margin-top:3px !important}.xs\:mr-3{margin-right:3px !important}.xs\:mb-3{margin-bottom:3px !important}.xs\:ml-3{margin-left:3px !important}.xs\:p-4{padding:4px !important}.xs\:px-4{padding-left:4px !important;padding-right:4px !important}.xs\:py-4{padding-top:4px !important;padding-bottom:4px !important}.xs\:pt-4{padding-top:4px !important}.xs\:pr-4{padding-right:4px !important}.xs\:pb-4{padding-bottom:4px !important}.xs\:pl-4{padding-left:4px !important}.xs\:m-4{margin:4px !important}.xs\:mx-4{margin-left:4px !important;margin-right:4px !important}.xs\:my-4{margin-top:4px !important;margin-bottom:4px !important}.xs\:mt-4{margin-top:4px !important}.xs\:mr-4{margin-right:4px !important}.xs\:mb-4{margin-bottom:4px !important}.xs\:ml-4{margin-left:4px !important}.xs\:p-5{padding:5px !important}.xs\:px-5{padding-left:5px !important;padding-right:5px !important}.xs\:py-5{padding-top:5px !important;padding-bottom:5px !important}.xs\:pt-5{padding-top:5px !important}.xs\:pr-5{padding-right:5px !important}.xs\:pb-5{padding-bottom:5px !important}.xs\:pl-5{padding-left:5px !important}.xs\:m-5{margin:5px !important}.xs\:mx-5{margin-left:5px !important;margin-right:5px !important}.xs\:my-5{margin-top:5px !important;margin-bottom:5px !important}.xs\:mt-5{margin-top:5px !important}.xs\:mr-5{margin-right:5px !important}.xs\:mb-5{margin-bottom:5px !important}.xs\:ml-5{margin-left:5px !important}.xs\:p-6{padding:6px !important}.xs\:px-6{padding-left:6px !important;padding-right:6px !important}.xs\:py-6{padding-top:6px !important;padding-bottom:6px !important}.xs\:pt-6{padding-top:6px !important}.xs\:pr-6{padding-right:6px !important}.xs\:pb-6{padding-bottom:6px !important}.xs\:pl-6{padding-left:6px !important}.xs\:m-6{margin:6px !important}.xs\:mx-6{margin-left:6px !important;margin-right:6px !important}.xs\:my-6{margin-top:6px !important;margin-bottom:6px !important}.xs\:mt-6{margin-top:6px !important}.xs\:mr-6{margin-right:6px !important}.xs\:mb-6{margin-bottom:6px !important}.xs\:ml-6{margin-left:6px !important}.xs\:p-7{padding:7px !important}.xs\:px-7{padding-left:7px !important;padding-right:7px !important}.xs\:py-7{padding-top:7px !important;padding-bottom:7px !important}.xs\:pt-7{padding-top:7px !important}.xs\:pr-7{padding-right:7px !important}.xs\:pb-7{padding-bottom:7px !important}.xs\:pl-7{padding-left:7px !important}.xs\:m-7{margin:7px !important}.xs\:mx-7{margin-left:7px !important;margin-right:7px !important}.xs\:my-7{margin-top:7px !important;margin-bottom:7px !important}.xs\:mt-7{margin-top:7px !important}.xs\:mr-7{margin-right:7px !important}.xs\:mb-7{margin-bottom:7px !important}.xs\:ml-7{margin-left:7px !important}.xs\:p-8{padding:8px !important}.xs\:px-8{padding-left:8px !important;padding-right:8px !important}.xs\:py-8{padding-top:8px !important;padding-bottom:8px !important}.xs\:pt-8{padding-top:8px !important}.xs\:pr-8{padding-right:8px !important}.xs\:pb-8{padding-bottom:8px !important}.xs\:pl-8{padding-left:8px !important}.xs\:m-8{margin:8px !important}.xs\:mx-8{margin-left:8px !important;margin-right:8px !important}.xs\:my-8{margin-top:8px !important;margin-bottom:8px !important}.xs\:mt-8{margin-top:8px !important}.xs\:mr-8{margin-right:8px !important}.xs\:mb-8{margin-bottom:8px !important}.xs\:ml-8{margin-left:8px !important}.xs\:p-9{padding:9px !important}.xs\:px-9{padding-left:9px !important;padding-right:9px !important}.xs\:py-9{padding-top:9px !important;padding-bottom:9px !important}.xs\:pt-9{padding-top:9px !important}.xs\:pr-9{padding-right:9px !important}.xs\:pb-9{padding-bottom:9px !important}.xs\:pl-9{padding-left:9px !important}.xs\:m-9{margin:9px !important}.xs\:mx-9{margin-left:9px !important;margin-right:9px !important}.xs\:my-9{margin-top:9px !important;margin-bottom:9px !important}.xs\:mt-9{margin-top:9px !important}.xs\:mr-9{margin-right:9px !important}.xs\:mb-9{margin-bottom:9px !important}.xs\:ml-9{margin-left:9px !important}.xs\:p-10{padding:10px !important}.xs\:px-10{padding-left:10px !important;padding-right:10px !important}.xs\:py-10{padding-top:10px !important;padding-bottom:10px !important}.xs\:pt-10{padding-top:10px !important}.xs\:pr-10{padding-right:10px !important}.xs\:pb-10{padding-bottom:10px !important}.xs\:pl-10{padding-left:10px !important}.xs\:m-10{margin:10px !important}.xs\:mx-10{margin-left:10px !important;margin-right:10px !important}.xs\:my-10{margin-top:10px !important;margin-bottom:10px !important}.xs\:mt-10{margin-top:10px !important}.xs\:mr-10{margin-right:10px !important}.xs\:mb-10{margin-bottom:10px !important}.xs\:ml-10{margin-left:10px !important}.xs\:p-12{padding:12px !important}.xs\:px-12{padding-left:12px !important;padding-right:12px !important}.xs\:py-12{padding-top:12px !important;padding-bottom:12px !important}.xs\:pt-12{padding-top:12px !important}.xs\:pr-12{padding-right:12px !important}.xs\:pb-12{padding-bottom:12px !important}.xs\:pl-12{padding-left:12px !important}.xs\:m-12{margin:12px !important}.xs\:mx-12{margin-left:12px !important;margin-right:12px !important}.xs\:my-12{margin-top:12px !important;margin-bottom:12px !important}.xs\:mt-12{margin-top:12px !important}.xs\:mr-12{margin-right:12px !important}.xs\:mb-12{margin-bottom:12px !important}.xs\:ml-12{margin-left:12px !important}.xs\:p-14{padding:14px !important}.xs\:px-14{padding-left:14px !important;padding-right:14px !important}.xs\:py-14{padding-top:14px !important;padding-bottom:14px !important}.xs\:pt-14{padding-top:14px !important}.xs\:pr-14{padding-right:14px !important}.xs\:pb-14{padding-bottom:14px !important}.xs\:pl-14{padding-left:14px !important}.xs\:m-14{margin:14px !important}.xs\:mx-14{margin-left:14px !important;margin-right:14px !important}.xs\:my-14{margin-top:14px !important;margin-bottom:14px !important}.xs\:mt-14{margin-top:14px !important}.xs\:mr-14{margin-right:14px !important}.xs\:mb-14{margin-bottom:14px !important}.xs\:ml-14{margin-left:14px !important}.xs\:p-15{padding:15px !important}.xs\:px-15{padding-left:15px !important;padding-right:15px !important}.xs\:py-15{padding-top:15px !important;padding-bottom:15px !important}.xs\:pt-15{padding-top:15px !important}.xs\:pr-15{padding-right:15px !important}.xs\:pb-15{padding-bottom:15px !important}.xs\:pl-15{padding-left:15px !important}.xs\:m-15{margin:15px !important}.xs\:mx-15{margin-left:15px !important;margin-right:15px !important}.xs\:my-15{margin-top:15px !important;margin-bottom:15px !important}.xs\:mt-15{margin-top:15px !important}.xs\:mr-15{margin-right:15px !important}.xs\:mb-15{margin-bottom:15px !important}.xs\:ml-15{margin-left:15px !important}.xs\:p-16{padding:16px !important}.xs\:px-16{padding-left:16px !important;padding-right:16px !important}.xs\:py-16{padding-top:16px !important;padding-bottom:16px !important}.xs\:pt-16{padding-top:16px !important}.xs\:pr-16{padding-right:16px !important}.xs\:pb-16{padding-bottom:16px !important}.xs\:pl-16{padding-left:16px !important}.xs\:m-16{margin:16px !important}.xs\:mx-16{margin-left:16px !important;margin-right:16px !important}.xs\:my-16{margin-top:16px !important;margin-bottom:16px !important}.xs\:mt-16{margin-top:16px !important}.xs\:mr-16{margin-right:16px !important}.xs\:mb-16{margin-bottom:16px !important}.xs\:ml-16{margin-left:16px !important}.xs\:p-18{padding:18px !important}.xs\:px-18{padding-left:18px !important;padding-right:18px !important}.xs\:py-18{padding-top:18px !important;padding-bottom:18px !important}.xs\:pt-18{padding-top:18px !important}.xs\:pr-18{padding-right:18px !important}.xs\:pb-18{padding-bottom:18px !important}.xs\:pl-18{padding-left:18px !important}.xs\:m-18{margin:18px !important}.xs\:mx-18{margin-left:18px !important;margin-right:18px !important}.xs\:my-18{margin-top:18px !important;margin-bottom:18px !important}.xs\:mt-18{margin-top:18px !important}.xs\:mr-18{margin-right:18px !important}.xs\:mb-18{margin-bottom:18px !important}.xs\:ml-18{margin-left:18px !important}.xs\:p-20{padding:20px !important}.xs\:px-20{padding-left:20px !important;padding-right:20px !important}.xs\:py-20{padding-top:20px !important;padding-bottom:20px !important}.xs\:pt-20{padding-top:20px !important}.xs\:pr-20{padding-right:20px !important}.xs\:pb-20{padding-bottom:20px !important}.xs\:pl-20{padding-left:20px !important}.xs\:m-20{margin:20px !important}.xs\:mx-20{margin-left:20px !important;margin-right:20px !important}.xs\:my-20{margin-top:20px !important;margin-bottom:20px !important}.xs\:mt-20{margin-top:20px !important}.xs\:mr-20{margin-right:20px !important}.xs\:mb-20{margin-bottom:20px !important}.xs\:ml-20{margin-left:20px !important}.xs\:p-25{padding:25px !important}.xs\:px-25{padding-left:25px !important;padding-right:25px !important}.xs\:py-25{padding-top:25px !important;padding-bottom:25px !important}.xs\:pt-25{padding-top:25px !important}.xs\:pr-25{padding-right:25px !important}.xs\:pb-25{padding-bottom:25px !important}.xs\:pl-25{padding-left:25px !important}.xs\:m-25{margin:25px !important}.xs\:mx-25{margin-left:25px !important;margin-right:25px !important}.xs\:my-25{margin-top:25px !important;margin-bottom:25px !important}.xs\:mt-25{margin-top:25px !important}.xs\:mr-25{margin-right:25px !important}.xs\:mb-25{margin-bottom:25px !important}.xs\:ml-25{margin-left:25px !important}.xs\:p-30{padding:30px !important}.xs\:px-30{padding-left:30px !important;padding-right:30px !important}.xs\:py-30{padding-top:30px !important;padding-bottom:30px !important}.xs\:pt-30{padding-top:30px !important}.xs\:pr-30{padding-right:30px !important}.xs\:pb-30{padding-bottom:30px !important}.xs\:pl-30{padding-left:30px !important}.xs\:m-30{margin:30px !important}.xs\:mx-30{margin-left:30px !important;margin-right:30px !important}.xs\:my-30{margin-top:30px !important;margin-bottom:30px !important}.xs\:mt-30{margin-top:30px !important}.xs\:mr-30{margin-right:30px !important}.xs\:mb-30{margin-bottom:30px !important}.xs\:ml-30{margin-left:30px !important}.xs\:p-35{padding:35px !important}.xs\:px-35{padding-left:35px !important;padding-right:35px !important}.xs\:py-35{padding-top:35px !important;padding-bottom:35px !important}.xs\:pt-35{padding-top:35px !important}.xs\:pr-35{padding-right:35px !important}.xs\:pb-35{padding-bottom:35px !important}.xs\:pl-35{padding-left:35px !important}.xs\:m-35{margin:35px !important}.xs\:mx-35{margin-left:35px !important;margin-right:35px !important}.xs\:my-35{margin-top:35px !important;margin-bottom:35px !important}.xs\:mt-35{margin-top:35px !important}.xs\:mr-35{margin-right:35px !important}.xs\:mb-35{margin-bottom:35px !important}.xs\:ml-35{margin-left:35px !important}.xs\:p-40{padding:40px !important}.xs\:px-40{padding-left:40px !important;padding-right:40px !important}.xs\:py-40{padding-top:40px !important;padding-bottom:40px !important}.xs\:pt-40{padding-top:40px !important}.xs\:pr-40{padding-right:40px !important}.xs\:pb-40{padding-bottom:40px !important}.xs\:pl-40{padding-left:40px !important}.xs\:m-40{margin:40px !important}.xs\:mx-40{margin-left:40px !important;margin-right:40px !important}.xs\:my-40{margin-top:40px !important;margin-bottom:40px !important}.xs\:mt-40{margin-top:40px !important}.xs\:mr-40{margin-right:40px !important}.xs\:mb-40{margin-bottom:40px !important}.xs\:ml-40{margin-left:40px !important}.xs\:p-45{padding:45px !important}.xs\:px-45{padding-left:45px !important;padding-right:45px !important}.xs\:py-45{padding-top:45px !important;padding-bottom:45px !important}.xs\:pt-45{padding-top:45px !important}.xs\:pr-45{padding-right:45px !important}.xs\:pb-45{padding-bottom:45px !important}.xs\:pl-45{padding-left:45px !important}.xs\:m-45{margin:45px !important}.xs\:mx-45{margin-left:45px !important;margin-right:45px !important}.xs\:my-45{margin-top:45px !important;margin-bottom:45px !important}.xs\:mt-45{margin-top:45px !important}.xs\:mr-45{margin-right:45px !important}.xs\:mb-45{margin-bottom:45px !important}.xs\:ml-45{margin-left:45px !important}.xs\:p-50{padding:50px !important}.xs\:px-50{padding-left:50px !important;padding-right:50px !important}.xs\:py-50{padding-top:50px !important;padding-bottom:50px !important}.xs\:pt-50{padding-top:50px !important}.xs\:pr-50{padding-right:50px !important}.xs\:pb-50{padding-bottom:50px !important}.xs\:pl-50{padding-left:50px !important}.xs\:m-50{margin:50px !important}.xs\:mx-50{margin-left:50px !important;margin-right:50px !important}.xs\:my-50{margin-top:50px !important;margin-bottom:50px !important}.xs\:mt-50{margin-top:50px !important}.xs\:mr-50{margin-right:50px !important}.xs\:mb-50{margin-bottom:50px !important}.xs\:ml-50{margin-left:50px !important}.xs\:p-55{padding:55px !important}.xs\:px-55{padding-left:55px !important;padding-right:55px !important}.xs\:py-55{padding-top:55px !important;padding-bottom:55px !important}.xs\:pt-55{padding-top:55px !important}.xs\:pr-55{padding-right:55px !important}.xs\:pb-55{padding-bottom:55px !important}.xs\:pl-55{padding-left:55px !important}.xs\:m-55{margin:55px !important}.xs\:mx-55{margin-left:55px !important;margin-right:55px !important}.xs\:my-55{margin-top:55px !important;margin-bottom:55px !important}.xs\:mt-55{margin-top:55px !important}.xs\:mr-55{margin-right:55px !important}.xs\:mb-55{margin-bottom:55px !important}.xs\:ml-55{margin-left:55px !important}.xs\:p-60{padding:60px !important}.xs\:px-60{padding-left:60px !important;padding-right:60px !important}.xs\:py-60{padding-top:60px !important;padding-bottom:60px !important}.xs\:pt-60{padding-top:60px !important}.xs\:pr-60{padding-right:60px !important}.xs\:pb-60{padding-bottom:60px !important}.xs\:pl-60{padding-left:60px !important}.xs\:m-60{margin:60px !important}.xs\:mx-60{margin-left:60px !important;margin-right:60px !important}.xs\:my-60{margin-top:60px !important;margin-bottom:60px !important}.xs\:mt-60{margin-top:60px !important}.xs\:mr-60{margin-right:60px !important}.xs\:mb-60{margin-bottom:60px !important}.xs\:ml-60{margin-left:60px !important}.xs\:p-65{padding:65px !important}.xs\:px-65{padding-left:65px !important;padding-right:65px !important}.xs\:py-65{padding-top:65px !important;padding-bottom:65px !important}.xs\:pt-65{padding-top:65px !important}.xs\:pr-65{padding-right:65px !important}.xs\:pb-65{padding-bottom:65px !important}.xs\:pl-65{padding-left:65px !important}.xs\:m-65{margin:65px !important}.xs\:mx-65{margin-left:65px !important;margin-right:65px !important}.xs\:my-65{margin-top:65px !important;margin-bottom:65px !important}.xs\:mt-65{margin-top:65px !important}.xs\:mr-65{margin-right:65px !important}.xs\:mb-65{margin-bottom:65px !important}.xs\:ml-65{margin-left:65px !important}.xs\:p-70{padding:70px !important}.xs\:px-70{padding-left:70px !important;padding-right:70px !important}.xs\:py-70{padding-top:70px !important;padding-bottom:70px !important}.xs\:pt-70{padding-top:70px !important}.xs\:pr-70{padding-right:70px !important}.xs\:pb-70{padding-bottom:70px !important}.xs\:pl-70{padding-left:70px !important}.xs\:m-70{margin:70px !important}.xs\:mx-70{margin-left:70px !important;margin-right:70px !important}.xs\:my-70{margin-top:70px !important;margin-bottom:70px !important}.xs\:mt-70{margin-top:70px !important}.xs\:mr-70{margin-right:70px !important}.xs\:mb-70{margin-bottom:70px !important}.xs\:ml-70{margin-left:70px !important}.xs\:p-75{padding:75px !important}.xs\:px-75{padding-left:75px !important;padding-right:75px !important}.xs\:py-75{padding-top:75px !important;padding-bottom:75px !important}.xs\:pt-75{padding-top:75px !important}.xs\:pr-75{padding-right:75px !important}.xs\:pb-75{padding-bottom:75px !important}.xs\:pl-75{padding-left:75px !important}.xs\:m-75{margin:75px !important}.xs\:mx-75{margin-left:75px !important;margin-right:75px !important}.xs\:my-75{margin-top:75px !important;margin-bottom:75px !important}.xs\:mt-75{margin-top:75px !important}.xs\:mr-75{margin-right:75px !important}.xs\:mb-75{margin-bottom:75px !important}.xs\:ml-75{margin-left:75px !important}.xs\:p-80{padding:80px !important}.xs\:px-80{padding-left:80px !important;padding-right:80px !important}.xs\:py-80{padding-top:80px !important;padding-bottom:80px !important}.xs\:pt-80{padding-top:80px !important}.xs\:pr-80{padding-right:80px !important}.xs\:pb-80{padding-bottom:80px !important}.xs\:pl-80{padding-left:80px !important}.xs\:m-80{margin:80px !important}.xs\:mx-80{margin-left:80px !important;margin-right:80px !important}.xs\:my-80{margin-top:80px !important;margin-bottom:80px !important}.xs\:mt-80{margin-top:80px !important}.xs\:mr-80{margin-right:80px !important}.xs\:mb-80{margin-bottom:80px !important}.xs\:ml-80{margin-left:80px !important}.xs\:p-85{padding:85px !important}.xs\:px-85{padding-left:85px !important;padding-right:85px !important}.xs\:py-85{padding-top:85px !important;padding-bottom:85px !important}.xs\:pt-85{padding-top:85px !important}.xs\:pr-85{padding-right:85px !important}.xs\:pb-85{padding-bottom:85px !important}.xs\:pl-85{padding-left:85px !important}.xs\:m-85{margin:85px !important}.xs\:mx-85{margin-left:85px !important;margin-right:85px !important}.xs\:my-85{margin-top:85px !important;margin-bottom:85px !important}.xs\:mt-85{margin-top:85px !important}.xs\:mr-85{margin-right:85px !important}.xs\:mb-85{margin-bottom:85px !important}.xs\:ml-85{margin-left:85px !important}.xs\:p-90{padding:90px !important}.xs\:px-90{padding-left:90px !important;padding-right:90px !important}.xs\:py-90{padding-top:90px !important;padding-bottom:90px !important}.xs\:pt-90{padding-top:90px !important}.xs\:pr-90{padding-right:90px !important}.xs\:pb-90{padding-bottom:90px !important}.xs\:pl-90{padding-left:90px !important}.xs\:m-90{margin:90px !important}.xs\:mx-90{margin-left:90px !important;margin-right:90px !important}.xs\:my-90{margin-top:90px !important;margin-bottom:90px !important}.xs\:mt-90{margin-top:90px !important}.xs\:mr-90{margin-right:90px !important}.xs\:mb-90{margin-bottom:90px !important}.xs\:ml-90{margin-left:90px !important}.xs\:p-95{padding:95px !important}.xs\:px-95{padding-left:95px !important;padding-right:95px !important}.xs\:py-95{padding-top:95px !important;padding-bottom:95px !important}.xs\:pt-95{padding-top:95px !important}.xs\:pr-95{padding-right:95px !important}.xs\:pb-95{padding-bottom:95px !important}.xs\:pl-95{padding-left:95px !important}.xs\:m-95{margin:95px !important}.xs\:mx-95{margin-left:95px !important;margin-right:95px !important}.xs\:my-95{margin-top:95px !important;margin-bottom:95px !important}.xs\:mt-95{margin-top:95px !important}.xs\:mr-95{margin-right:95px !important}.xs\:mb-95{margin-bottom:95px !important}.xs\:ml-95{margin-left:95px !important}.xs\:p-100{padding:100px !important}.xs\:px-100{padding-left:100px !important;padding-right:100px !important}.xs\:py-100{padding-top:100px !important;padding-bottom:100px !important}.xs\:pt-100{padding-top:100px !important}.xs\:pr-100{padding-right:100px !important}.xs\:pb-100{padding-bottom:100px !important}.xs\:pl-100{padding-left:100px !important}.xs\:m-100{margin:100px !important}.xs\:mx-100{margin-left:100px !important;margin-right:100px !important}.xs\:my-100{margin-top:100px !important;margin-bottom:100px !important}.xs\:mt-100{margin-top:100px !important}.xs\:mr-100{margin-right:100px !important}.xs\:mb-100{margin-bottom:100px !important}.xs\:ml-100{margin-left:100px !important}}@media(min-width: 640px){.sm\:p-0{padding:0 !important}.sm\:px-0{padding-left:0 !important;padding-right:0 !important}.sm\:py-0{padding-top:0 !important;padding-bottom:0 !important}.sm\:pt-0{padding-top:0 !important}.sm\:pr-0{padding-right:0 !important}.sm\:pb-0{padding-bottom:0 !important}.sm\:pl-0{padding-left:0 !important}.sm\:m-0{margin:0 !important}.sm\:mx-0{margin-left:0 !important;margin-right:0 !important}.sm\:my-0{margin-top:0 !important;margin-bottom:0 !important}.sm\:mt-0{margin-top:0 !important}.sm\:mr-0{margin-right:0 !important}.sm\:mb-0{margin-bottom:0 !important}.sm\:ml-0{margin-left:0 !important}.sm\:p-1{padding:1px !important}.sm\:px-1{padding-left:1px !important;padding-right:1px !important}.sm\:py-1{padding-top:1px !important;padding-bottom:1px !important}.sm\:pt-1{padding-top:1px !important}.sm\:pr-1{padding-right:1px !important}.sm\:pb-1{padding-bottom:1px !important}.sm\:pl-1{padding-left:1px !important}.sm\:m-1{margin:1px !important}.sm\:mx-1{margin-left:1px !important;margin-right:1px !important}.sm\:my-1{margin-top:1px !important;margin-bottom:1px !important}.sm\:mt-1{margin-top:1px !important}.sm\:mr-1{margin-right:1px !important}.sm\:mb-1{margin-bottom:1px !important}.sm\:ml-1{margin-left:1px !important}.sm\:p-2{padding:2px !important}.sm\:px-2{padding-left:2px !important;padding-right:2px !important}.sm\:py-2{padding-top:2px !important;padding-bottom:2px !important}.sm\:pt-2{padding-top:2px !important}.sm\:pr-2{padding-right:2px !important}.sm\:pb-2{padding-bottom:2px !important}.sm\:pl-2{padding-left:2px !important}.sm\:m-2{margin:2px !important}.sm\:mx-2{margin-left:2px !important;margin-right:2px !important}.sm\:my-2{margin-top:2px !important;margin-bottom:2px !important}.sm\:mt-2{margin-top:2px !important}.sm\:mr-2{margin-right:2px !important}.sm\:mb-2{margin-bottom:2px !important}.sm\:ml-2{margin-left:2px !important}.sm\:p-3{padding:3px !important}.sm\:px-3{padding-left:3px !important;padding-right:3px !important}.sm\:py-3{padding-top:3px !important;padding-bottom:3px !important}.sm\:pt-3{padding-top:3px !important}.sm\:pr-3{padding-right:3px !important}.sm\:pb-3{padding-bottom:3px !important}.sm\:pl-3{padding-left:3px !important}.sm\:m-3{margin:3px !important}.sm\:mx-3{margin-left:3px !important;margin-right:3px !important}.sm\:my-3{margin-top:3px !important;margin-bottom:3px !important}.sm\:mt-3{margin-top:3px !important}.sm\:mr-3{margin-right:3px !important}.sm\:mb-3{margin-bottom:3px !important}.sm\:ml-3{margin-left:3px !important}.sm\:p-4{padding:4px !important}.sm\:px-4{padding-left:4px !important;padding-right:4px !important}.sm\:py-4{padding-top:4px !important;padding-bottom:4px !important}.sm\:pt-4{padding-top:4px !important}.sm\:pr-4{padding-right:4px !important}.sm\:pb-4{padding-bottom:4px !important}.sm\:pl-4{padding-left:4px !important}.sm\:m-4{margin:4px !important}.sm\:mx-4{margin-left:4px !important;margin-right:4px !important}.sm\:my-4{margin-top:4px !important;margin-bottom:4px !important}.sm\:mt-4{margin-top:4px !important}.sm\:mr-4{margin-right:4px !important}.sm\:mb-4{margin-bottom:4px !important}.sm\:ml-4{margin-left:4px !important}.sm\:p-5{padding:5px !important}.sm\:px-5{padding-left:5px !important;padding-right:5px !important}.sm\:py-5{padding-top:5px !important;padding-bottom:5px !important}.sm\:pt-5{padding-top:5px !important}.sm\:pr-5{padding-right:5px !important}.sm\:pb-5{padding-bottom:5px !important}.sm\:pl-5{padding-left:5px !important}.sm\:m-5{margin:5px !important}.sm\:mx-5{margin-left:5px !important;margin-right:5px !important}.sm\:my-5{margin-top:5px !important;margin-bottom:5px !important}.sm\:mt-5{margin-top:5px !important}.sm\:mr-5{margin-right:5px !important}.sm\:mb-5{margin-bottom:5px !important}.sm\:ml-5{margin-left:5px !important}.sm\:p-6{padding:6px !important}.sm\:px-6{padding-left:6px !important;padding-right:6px !important}.sm\:py-6{padding-top:6px !important;padding-bottom:6px !important}.sm\:pt-6{padding-top:6px !important}.sm\:pr-6{padding-right:6px !important}.sm\:pb-6{padding-bottom:6px !important}.sm\:pl-6{padding-left:6px !important}.sm\:m-6{margin:6px !important}.sm\:mx-6{margin-left:6px !important;margin-right:6px !important}.sm\:my-6{margin-top:6px !important;margin-bottom:6px !important}.sm\:mt-6{margin-top:6px !important}.sm\:mr-6{margin-right:6px !important}.sm\:mb-6{margin-bottom:6px !important}.sm\:ml-6{margin-left:6px !important}.sm\:p-7{padding:7px !important}.sm\:px-7{padding-left:7px !important;padding-right:7px !important}.sm\:py-7{padding-top:7px !important;padding-bottom:7px !important}.sm\:pt-7{padding-top:7px !important}.sm\:pr-7{padding-right:7px !important}.sm\:pb-7{padding-bottom:7px !important}.sm\:pl-7{padding-left:7px !important}.sm\:m-7{margin:7px !important}.sm\:mx-7{margin-left:7px !important;margin-right:7px !important}.sm\:my-7{margin-top:7px !important;margin-bottom:7px !important}.sm\:mt-7{margin-top:7px !important}.sm\:mr-7{margin-right:7px !important}.sm\:mb-7{margin-bottom:7px !important}.sm\:ml-7{margin-left:7px !important}.sm\:p-8{padding:8px !important}.sm\:px-8{padding-left:8px !important;padding-right:8px !important}.sm\:py-8{padding-top:8px !important;padding-bottom:8px !important}.sm\:pt-8{padding-top:8px !important}.sm\:pr-8{padding-right:8px !important}.sm\:pb-8{padding-bottom:8px !important}.sm\:pl-8{padding-left:8px !important}.sm\:m-8{margin:8px !important}.sm\:mx-8{margin-left:8px !important;margin-right:8px !important}.sm\:my-8{margin-top:8px !important;margin-bottom:8px !important}.sm\:mt-8{margin-top:8px !important}.sm\:mr-8{margin-right:8px !important}.sm\:mb-8{margin-bottom:8px !important}.sm\:ml-8{margin-left:8px !important}.sm\:p-9{padding:9px !important}.sm\:px-9{padding-left:9px !important;padding-right:9px !important}.sm\:py-9{padding-top:9px !important;padding-bottom:9px !important}.sm\:pt-9{padding-top:9px !important}.sm\:pr-9{padding-right:9px !important}.sm\:pb-9{padding-bottom:9px !important}.sm\:pl-9{padding-left:9px !important}.sm\:m-9{margin:9px !important}.sm\:mx-9{margin-left:9px !important;margin-right:9px !important}.sm\:my-9{margin-top:9px !important;margin-bottom:9px !important}.sm\:mt-9{margin-top:9px !important}.sm\:mr-9{margin-right:9px !important}.sm\:mb-9{margin-bottom:9px !important}.sm\:ml-9{margin-left:9px !important}.sm\:p-10{padding:10px !important}.sm\:px-10{padding-left:10px !important;padding-right:10px !important}.sm\:py-10{padding-top:10px !important;padding-bottom:10px !important}.sm\:pt-10{padding-top:10px !important}.sm\:pr-10{padding-right:10px !important}.sm\:pb-10{padding-bottom:10px !important}.sm\:pl-10{padding-left:10px !important}.sm\:m-10{margin:10px !important}.sm\:mx-10{margin-left:10px !important;margin-right:10px !important}.sm\:my-10{margin-top:10px !important;margin-bottom:10px !important}.sm\:mt-10{margin-top:10px !important}.sm\:mr-10{margin-right:10px !important}.sm\:mb-10{margin-bottom:10px !important}.sm\:ml-10{margin-left:10px !important}.sm\:p-12{padding:12px !important}.sm\:px-12{padding-left:12px !important;padding-right:12px !important}.sm\:py-12{padding-top:12px !important;padding-bottom:12px !important}.sm\:pt-12{padding-top:12px !important}.sm\:pr-12{padding-right:12px !important}.sm\:pb-12{padding-bottom:12px !important}.sm\:pl-12{padding-left:12px !important}.sm\:m-12{margin:12px !important}.sm\:mx-12{margin-left:12px !important;margin-right:12px !important}.sm\:my-12{margin-top:12px !important;margin-bottom:12px !important}.sm\:mt-12{margin-top:12px !important}.sm\:mr-12{margin-right:12px !important}.sm\:mb-12{margin-bottom:12px !important}.sm\:ml-12{margin-left:12px !important}.sm\:p-14{padding:14px !important}.sm\:px-14{padding-left:14px !important;padding-right:14px !important}.sm\:py-14{padding-top:14px !important;padding-bottom:14px !important}.sm\:pt-14{padding-top:14px !important}.sm\:pr-14{padding-right:14px !important}.sm\:pb-14{padding-bottom:14px !important}.sm\:pl-14{padding-left:14px !important}.sm\:m-14{margin:14px !important}.sm\:mx-14{margin-left:14px !important;margin-right:14px !important}.sm\:my-14{margin-top:14px !important;margin-bottom:14px !important}.sm\:mt-14{margin-top:14px !important}.sm\:mr-14{margin-right:14px !important}.sm\:mb-14{margin-bottom:14px !important}.sm\:ml-14{margin-left:14px !important}.sm\:p-15{padding:15px !important}.sm\:px-15{padding-left:15px !important;padding-right:15px !important}.sm\:py-15{padding-top:15px !important;padding-bottom:15px !important}.sm\:pt-15{padding-top:15px !important}.sm\:pr-15{padding-right:15px !important}.sm\:pb-15{padding-bottom:15px !important}.sm\:pl-15{padding-left:15px !important}.sm\:m-15{margin:15px !important}.sm\:mx-15{margin-left:15px !important;margin-right:15px !important}.sm\:my-15{margin-top:15px !important;margin-bottom:15px !important}.sm\:mt-15{margin-top:15px !important}.sm\:mr-15{margin-right:15px !important}.sm\:mb-15{margin-bottom:15px !important}.sm\:ml-15{margin-left:15px !important}.sm\:p-16{padding:16px !important}.sm\:px-16{padding-left:16px !important;padding-right:16px !important}.sm\:py-16{padding-top:16px !important;padding-bottom:16px !important}.sm\:pt-16{padding-top:16px !important}.sm\:pr-16{padding-right:16px !important}.sm\:pb-16{padding-bottom:16px !important}.sm\:pl-16{padding-left:16px !important}.sm\:m-16{margin:16px !important}.sm\:mx-16{margin-left:16px !important;margin-right:16px !important}.sm\:my-16{margin-top:16px !important;margin-bottom:16px !important}.sm\:mt-16{margin-top:16px !important}.sm\:mr-16{margin-right:16px !important}.sm\:mb-16{margin-bottom:16px !important}.sm\:ml-16{margin-left:16px !important}.sm\:p-18{padding:18px !important}.sm\:px-18{padding-left:18px !important;padding-right:18px !important}.sm\:py-18{padding-top:18px !important;padding-bottom:18px !important}.sm\:pt-18{padding-top:18px !important}.sm\:pr-18{padding-right:18px !important}.sm\:pb-18{padding-bottom:18px !important}.sm\:pl-18{padding-left:18px !important}.sm\:m-18{margin:18px !important}.sm\:mx-18{margin-left:18px !important;margin-right:18px !important}.sm\:my-18{margin-top:18px !important;margin-bottom:18px !important}.sm\:mt-18{margin-top:18px !important}.sm\:mr-18{margin-right:18px !important}.sm\:mb-18{margin-bottom:18px !important}.sm\:ml-18{margin-left:18px !important}.sm\:p-20{padding:20px !important}.sm\:px-20{padding-left:20px !important;padding-right:20px !important}.sm\:py-20{padding-top:20px !important;padding-bottom:20px !important}.sm\:pt-20{padding-top:20px !important}.sm\:pr-20{padding-right:20px !important}.sm\:pb-20{padding-bottom:20px !important}.sm\:pl-20{padding-left:20px !important}.sm\:m-20{margin:20px !important}.sm\:mx-20{margin-left:20px !important;margin-right:20px !important}.sm\:my-20{margin-top:20px !important;margin-bottom:20px !important}.sm\:mt-20{margin-top:20px !important}.sm\:mr-20{margin-right:20px !important}.sm\:mb-20{margin-bottom:20px !important}.sm\:ml-20{margin-left:20px !important}.sm\:p-25{padding:25px !important}.sm\:px-25{padding-left:25px !important;padding-right:25px !important}.sm\:py-25{padding-top:25px !important;padding-bottom:25px !important}.sm\:pt-25{padding-top:25px !important}.sm\:pr-25{padding-right:25px !important}.sm\:pb-25{padding-bottom:25px !important}.sm\:pl-25{padding-left:25px !important}.sm\:m-25{margin:25px !important}.sm\:mx-25{margin-left:25px !important;margin-right:25px !important}.sm\:my-25{margin-top:25px !important;margin-bottom:25px !important}.sm\:mt-25{margin-top:25px !important}.sm\:mr-25{margin-right:25px !important}.sm\:mb-25{margin-bottom:25px !important}.sm\:ml-25{margin-left:25px !important}.sm\:p-30{padding:30px !important}.sm\:px-30{padding-left:30px !important;padding-right:30px !important}.sm\:py-30{padding-top:30px !important;padding-bottom:30px !important}.sm\:pt-30{padding-top:30px !important}.sm\:pr-30{padding-right:30px !important}.sm\:pb-30{padding-bottom:30px !important}.sm\:pl-30{padding-left:30px !important}.sm\:m-30{margin:30px !important}.sm\:mx-30{margin-left:30px !important;margin-right:30px !important}.sm\:my-30{margin-top:30px !important;margin-bottom:30px !important}.sm\:mt-30{margin-top:30px !important}.sm\:mr-30{margin-right:30px !important}.sm\:mb-30{margin-bottom:30px !important}.sm\:ml-30{margin-left:30px !important}.sm\:p-35{padding:35px !important}.sm\:px-35{padding-left:35px !important;padding-right:35px !important}.sm\:py-35{padding-top:35px !important;padding-bottom:35px !important}.sm\:pt-35{padding-top:35px !important}.sm\:pr-35{padding-right:35px !important}.sm\:pb-35{padding-bottom:35px !important}.sm\:pl-35{padding-left:35px !important}.sm\:m-35{margin:35px !important}.sm\:mx-35{margin-left:35px !important;margin-right:35px !important}.sm\:my-35{margin-top:35px !important;margin-bottom:35px !important}.sm\:mt-35{margin-top:35px !important}.sm\:mr-35{margin-right:35px !important}.sm\:mb-35{margin-bottom:35px !important}.sm\:ml-35{margin-left:35px !important}.sm\:p-40{padding:40px !important}.sm\:px-40{padding-left:40px !important;padding-right:40px !important}.sm\:py-40{padding-top:40px !important;padding-bottom:40px !important}.sm\:pt-40{padding-top:40px !important}.sm\:pr-40{padding-right:40px !important}.sm\:pb-40{padding-bottom:40px !important}.sm\:pl-40{padding-left:40px !important}.sm\:m-40{margin:40px !important}.sm\:mx-40{margin-left:40px !important;margin-right:40px !important}.sm\:my-40{margin-top:40px !important;margin-bottom:40px !important}.sm\:mt-40{margin-top:40px !important}.sm\:mr-40{margin-right:40px !important}.sm\:mb-40{margin-bottom:40px !important}.sm\:ml-40{margin-left:40px !important}.sm\:p-45{padding:45px !important}.sm\:px-45{padding-left:45px !important;padding-right:45px !important}.sm\:py-45{padding-top:45px !important;padding-bottom:45px !important}.sm\:pt-45{padding-top:45px !important}.sm\:pr-45{padding-right:45px !important}.sm\:pb-45{padding-bottom:45px !important}.sm\:pl-45{padding-left:45px !important}.sm\:m-45{margin:45px !important}.sm\:mx-45{margin-left:45px !important;margin-right:45px !important}.sm\:my-45{margin-top:45px !important;margin-bottom:45px !important}.sm\:mt-45{margin-top:45px !important}.sm\:mr-45{margin-right:45px !important}.sm\:mb-45{margin-bottom:45px !important}.sm\:ml-45{margin-left:45px !important}.sm\:p-50{padding:50px !important}.sm\:px-50{padding-left:50px !important;padding-right:50px !important}.sm\:py-50{padding-top:50px !important;padding-bottom:50px !important}.sm\:pt-50{padding-top:50px !important}.sm\:pr-50{padding-right:50px !important}.sm\:pb-50{padding-bottom:50px !important}.sm\:pl-50{padding-left:50px !important}.sm\:m-50{margin:50px !important}.sm\:mx-50{margin-left:50px !important;margin-right:50px !important}.sm\:my-50{margin-top:50px !important;margin-bottom:50px !important}.sm\:mt-50{margin-top:50px !important}.sm\:mr-50{margin-right:50px !important}.sm\:mb-50{margin-bottom:50px !important}.sm\:ml-50{margin-left:50px !important}.sm\:p-55{padding:55px !important}.sm\:px-55{padding-left:55px !important;padding-right:55px !important}.sm\:py-55{padding-top:55px !important;padding-bottom:55px !important}.sm\:pt-55{padding-top:55px !important}.sm\:pr-55{padding-right:55px !important}.sm\:pb-55{padding-bottom:55px !important}.sm\:pl-55{padding-left:55px !important}.sm\:m-55{margin:55px !important}.sm\:mx-55{margin-left:55px !important;margin-right:55px !important}.sm\:my-55{margin-top:55px !important;margin-bottom:55px !important}.sm\:mt-55{margin-top:55px !important}.sm\:mr-55{margin-right:55px !important}.sm\:mb-55{margin-bottom:55px !important}.sm\:ml-55{margin-left:55px !important}.sm\:p-60{padding:60px !important}.sm\:px-60{padding-left:60px !important;padding-right:60px !important}.sm\:py-60{padding-top:60px !important;padding-bottom:60px !important}.sm\:pt-60{padding-top:60px !important}.sm\:pr-60{padding-right:60px !important}.sm\:pb-60{padding-bottom:60px !important}.sm\:pl-60{padding-left:60px !important}.sm\:m-60{margin:60px !important}.sm\:mx-60{margin-left:60px !important;margin-right:60px !important}.sm\:my-60{margin-top:60px !important;margin-bottom:60px !important}.sm\:mt-60{margin-top:60px !important}.sm\:mr-60{margin-right:60px !important}.sm\:mb-60{margin-bottom:60px !important}.sm\:ml-60{margin-left:60px !important}.sm\:p-65{padding:65px !important}.sm\:px-65{padding-left:65px !important;padding-right:65px !important}.sm\:py-65{padding-top:65px !important;padding-bottom:65px !important}.sm\:pt-65{padding-top:65px !important}.sm\:pr-65{padding-right:65px !important}.sm\:pb-65{padding-bottom:65px !important}.sm\:pl-65{padding-left:65px !important}.sm\:m-65{margin:65px !important}.sm\:mx-65{margin-left:65px !important;margin-right:65px !important}.sm\:my-65{margin-top:65px !important;margin-bottom:65px !important}.sm\:mt-65{margin-top:65px !important}.sm\:mr-65{margin-right:65px !important}.sm\:mb-65{margin-bottom:65px !important}.sm\:ml-65{margin-left:65px !important}.sm\:p-70{padding:70px !important}.sm\:px-70{padding-left:70px !important;padding-right:70px !important}.sm\:py-70{padding-top:70px !important;padding-bottom:70px !important}.sm\:pt-70{padding-top:70px !important}.sm\:pr-70{padding-right:70px !important}.sm\:pb-70{padding-bottom:70px !important}.sm\:pl-70{padding-left:70px !important}.sm\:m-70{margin:70px !important}.sm\:mx-70{margin-left:70px !important;margin-right:70px !important}.sm\:my-70{margin-top:70px !important;margin-bottom:70px !important}.sm\:mt-70{margin-top:70px !important}.sm\:mr-70{margin-right:70px !important}.sm\:mb-70{margin-bottom:70px !important}.sm\:ml-70{margin-left:70px !important}.sm\:p-75{padding:75px !important}.sm\:px-75{padding-left:75px !important;padding-right:75px !important}.sm\:py-75{padding-top:75px !important;padding-bottom:75px !important}.sm\:pt-75{padding-top:75px !important}.sm\:pr-75{padding-right:75px !important}.sm\:pb-75{padding-bottom:75px !important}.sm\:pl-75{padding-left:75px !important}.sm\:m-75{margin:75px !important}.sm\:mx-75{margin-left:75px !important;margin-right:75px !important}.sm\:my-75{margin-top:75px !important;margin-bottom:75px !important}.sm\:mt-75{margin-top:75px !important}.sm\:mr-75{margin-right:75px !important}.sm\:mb-75{margin-bottom:75px !important}.sm\:ml-75{margin-left:75px !important}.sm\:p-80{padding:80px !important}.sm\:px-80{padding-left:80px !important;padding-right:80px !important}.sm\:py-80{padding-top:80px !important;padding-bottom:80px !important}.sm\:pt-80{padding-top:80px !important}.sm\:pr-80{padding-right:80px !important}.sm\:pb-80{padding-bottom:80px !important}.sm\:pl-80{padding-left:80px !important}.sm\:m-80{margin:80px !important}.sm\:mx-80{margin-left:80px !important;margin-right:80px !important}.sm\:my-80{margin-top:80px !important;margin-bottom:80px !important}.sm\:mt-80{margin-top:80px !important}.sm\:mr-80{margin-right:80px !important}.sm\:mb-80{margin-bottom:80px !important}.sm\:ml-80{margin-left:80px !important}.sm\:p-85{padding:85px !important}.sm\:px-85{padding-left:85px !important;padding-right:85px !important}.sm\:py-85{padding-top:85px !important;padding-bottom:85px !important}.sm\:pt-85{padding-top:85px !important}.sm\:pr-85{padding-right:85px !important}.sm\:pb-85{padding-bottom:85px !important}.sm\:pl-85{padding-left:85px !important}.sm\:m-85{margin:85px !important}.sm\:mx-85{margin-left:85px !important;margin-right:85px !important}.sm\:my-85{margin-top:85px !important;margin-bottom:85px !important}.sm\:mt-85{margin-top:85px !important}.sm\:mr-85{margin-right:85px !important}.sm\:mb-85{margin-bottom:85px !important}.sm\:ml-85{margin-left:85px !important}.sm\:p-90{padding:90px !important}.sm\:px-90{padding-left:90px !important;padding-right:90px !important}.sm\:py-90{padding-top:90px !important;padding-bottom:90px !important}.sm\:pt-90{padding-top:90px !important}.sm\:pr-90{padding-right:90px !important}.sm\:pb-90{padding-bottom:90px !important}.sm\:pl-90{padding-left:90px !important}.sm\:m-90{margin:90px !important}.sm\:mx-90{margin-left:90px !important;margin-right:90px !important}.sm\:my-90{margin-top:90px !important;margin-bottom:90px !important}.sm\:mt-90{margin-top:90px !important}.sm\:mr-90{margin-right:90px !important}.sm\:mb-90{margin-bottom:90px !important}.sm\:ml-90{margin-left:90px !important}.sm\:p-95{padding:95px !important}.sm\:px-95{padding-left:95px !important;padding-right:95px !important}.sm\:py-95{padding-top:95px !important;padding-bottom:95px !important}.sm\:pt-95{padding-top:95px !important}.sm\:pr-95{padding-right:95px !important}.sm\:pb-95{padding-bottom:95px !important}.sm\:pl-95{padding-left:95px !important}.sm\:m-95{margin:95px !important}.sm\:mx-95{margin-left:95px !important;margin-right:95px !important}.sm\:my-95{margin-top:95px !important;margin-bottom:95px !important}.sm\:mt-95{margin-top:95px !important}.sm\:mr-95{margin-right:95px !important}.sm\:mb-95{margin-bottom:95px !important}.sm\:ml-95{margin-left:95px !important}.sm\:p-100{padding:100px !important}.sm\:px-100{padding-left:100px !important;padding-right:100px !important}.sm\:py-100{padding-top:100px !important;padding-bottom:100px !important}.sm\:pt-100{padding-top:100px !important}.sm\:pr-100{padding-right:100px !important}.sm\:pb-100{padding-bottom:100px !important}.sm\:pl-100{padding-left:100px !important}.sm\:m-100{margin:100px !important}.sm\:mx-100{margin-left:100px !important;margin-right:100px !important}.sm\:my-100{margin-top:100px !important;margin-bottom:100px !important}.sm\:mt-100{margin-top:100px !important}.sm\:mr-100{margin-right:100px !important}.sm\:mb-100{margin-bottom:100px !important}.sm\:ml-100{margin-left:100px !important}}@media(min-width: 768px){.md\:p-0{padding:0 !important}.md\:px-0{padding-left:0 !important;padding-right:0 !important}.md\:py-0{padding-top:0 !important;padding-bottom:0 !important}.md\:pt-0{padding-top:0 !important}.md\:pr-0{padding-right:0 !important}.md\:pb-0{padding-bottom:0 !important}.md\:pl-0{padding-left:0 !important}.md\:m-0{margin:0 !important}.md\:mx-0{margin-left:0 !important;margin-right:0 !important}.md\:my-0{margin-top:0 !important;margin-bottom:0 !important}.md\:mt-0{margin-top:0 !important}.md\:mr-0{margin-right:0 !important}.md\:mb-0{margin-bottom:0 !important}.md\:ml-0{margin-left:0 !important}.md\:p-1{padding:1px !important}.md\:px-1{padding-left:1px !important;padding-right:1px !important}.md\:py-1{padding-top:1px !important;padding-bottom:1px !important}.md\:pt-1{padding-top:1px !important}.md\:pr-1{padding-right:1px !important}.md\:pb-1{padding-bottom:1px !important}.md\:pl-1{padding-left:1px !important}.md\:m-1{margin:1px !important}.md\:mx-1{margin-left:1px !important;margin-right:1px !important}.md\:my-1{margin-top:1px !important;margin-bottom:1px !important}.md\:mt-1{margin-top:1px !important}.md\:mr-1{margin-right:1px !important}.md\:mb-1{margin-bottom:1px !important}.md\:ml-1{margin-left:1px !important}.md\:p-2{padding:2px !important}.md\:px-2{padding-left:2px !important;padding-right:2px !important}.md\:py-2{padding-top:2px !important;padding-bottom:2px !important}.md\:pt-2{padding-top:2px !important}.md\:pr-2{padding-right:2px !important}.md\:pb-2{padding-bottom:2px !important}.md\:pl-2{padding-left:2px !important}.md\:m-2{margin:2px !important}.md\:mx-2{margin-left:2px !important;margin-right:2px !important}.md\:my-2{margin-top:2px !important;margin-bottom:2px !important}.md\:mt-2{margin-top:2px !important}.md\:mr-2{margin-right:2px !important}.md\:mb-2{margin-bottom:2px !important}.md\:ml-2{margin-left:2px !important}.md\:p-3{padding:3px !important}.md\:px-3{padding-left:3px !important;padding-right:3px !important}.md\:py-3{padding-top:3px !important;padding-bottom:3px !important}.md\:pt-3{padding-top:3px !important}.md\:pr-3{padding-right:3px !important}.md\:pb-3{padding-bottom:3px !important}.md\:pl-3{padding-left:3px !important}.md\:m-3{margin:3px !important}.md\:mx-3{margin-left:3px !important;margin-right:3px !important}.md\:my-3{margin-top:3px !important;margin-bottom:3px !important}.md\:mt-3{margin-top:3px !important}.md\:mr-3{margin-right:3px !important}.md\:mb-3{margin-bottom:3px !important}.md\:ml-3{margin-left:3px !important}.md\:p-4{padding:4px !important}.md\:px-4{padding-left:4px !important;padding-right:4px !important}.md\:py-4{padding-top:4px !important;padding-bottom:4px !important}.md\:pt-4{padding-top:4px !important}.md\:pr-4{padding-right:4px !important}.md\:pb-4{padding-bottom:4px !important}.md\:pl-4{padding-left:4px !important}.md\:m-4{margin:4px !important}.md\:mx-4{margin-left:4px !important;margin-right:4px !important}.md\:my-4{margin-top:4px !important;margin-bottom:4px !important}.md\:mt-4{margin-top:4px !important}.md\:mr-4{margin-right:4px !important}.md\:mb-4{margin-bottom:4px !important}.md\:ml-4{margin-left:4px !important}.md\:p-5{padding:5px !important}.md\:px-5{padding-left:5px !important;padding-right:5px !important}.md\:py-5{padding-top:5px !important;padding-bottom:5px !important}.md\:pt-5{padding-top:5px !important}.md\:pr-5{padding-right:5px !important}.md\:pb-5{padding-bottom:5px !important}.md\:pl-5{padding-left:5px !important}.md\:m-5{margin:5px !important}.md\:mx-5{margin-left:5px !important;margin-right:5px !important}.md\:my-5{margin-top:5px !important;margin-bottom:5px !important}.md\:mt-5{margin-top:5px !important}.md\:mr-5{margin-right:5px !important}.md\:mb-5{margin-bottom:5px !important}.md\:ml-5{margin-left:5px !important}.md\:p-6{padding:6px !important}.md\:px-6{padding-left:6px !important;padding-right:6px !important}.md\:py-6{padding-top:6px !important;padding-bottom:6px !important}.md\:pt-6{padding-top:6px !important}.md\:pr-6{padding-right:6px !important}.md\:pb-6{padding-bottom:6px !important}.md\:pl-6{padding-left:6px !important}.md\:m-6{margin:6px !important}.md\:mx-6{margin-left:6px !important;margin-right:6px !important}.md\:my-6{margin-top:6px !important;margin-bottom:6px !important}.md\:mt-6{margin-top:6px !important}.md\:mr-6{margin-right:6px !important}.md\:mb-6{margin-bottom:6px !important}.md\:ml-6{margin-left:6px !important}.md\:p-7{padding:7px !important}.md\:px-7{padding-left:7px !important;padding-right:7px !important}.md\:py-7{padding-top:7px !important;padding-bottom:7px !important}.md\:pt-7{padding-top:7px !important}.md\:pr-7{padding-right:7px !important}.md\:pb-7{padding-bottom:7px !important}.md\:pl-7{padding-left:7px !important}.md\:m-7{margin:7px !important}.md\:mx-7{margin-left:7px !important;margin-right:7px !important}.md\:my-7{margin-top:7px !important;margin-bottom:7px !important}.md\:mt-7{margin-top:7px !important}.md\:mr-7{margin-right:7px !important}.md\:mb-7{margin-bottom:7px !important}.md\:ml-7{margin-left:7px !important}.md\:p-8{padding:8px !important}.md\:px-8{padding-left:8px !important;padding-right:8px !important}.md\:py-8{padding-top:8px !important;padding-bottom:8px !important}.md\:pt-8{padding-top:8px !important}.md\:pr-8{padding-right:8px !important}.md\:pb-8{padding-bottom:8px !important}.md\:pl-8{padding-left:8px !important}.md\:m-8{margin:8px !important}.md\:mx-8{margin-left:8px !important;margin-right:8px !important}.md\:my-8{margin-top:8px !important;margin-bottom:8px !important}.md\:mt-8{margin-top:8px !important}.md\:mr-8{margin-right:8px !important}.md\:mb-8{margin-bottom:8px !important}.md\:ml-8{margin-left:8px !important}.md\:p-9{padding:9px !important}.md\:px-9{padding-left:9px !important;padding-right:9px !important}.md\:py-9{padding-top:9px !important;padding-bottom:9px !important}.md\:pt-9{padding-top:9px !important}.md\:pr-9{padding-right:9px !important}.md\:pb-9{padding-bottom:9px !important}.md\:pl-9{padding-left:9px !important}.md\:m-9{margin:9px !important}.md\:mx-9{margin-left:9px !important;margin-right:9px !important}.md\:my-9{margin-top:9px !important;margin-bottom:9px !important}.md\:mt-9{margin-top:9px !important}.md\:mr-9{margin-right:9px !important}.md\:mb-9{margin-bottom:9px !important}.md\:ml-9{margin-left:9px !important}.md\:p-10{padding:10px !important}.md\:px-10{padding-left:10px !important;padding-right:10px !important}.md\:py-10{padding-top:10px !important;padding-bottom:10px !important}.md\:pt-10{padding-top:10px !important}.md\:pr-10{padding-right:10px !important}.md\:pb-10{padding-bottom:10px !important}.md\:pl-10{padding-left:10px !important}.md\:m-10{margin:10px !important}.md\:mx-10{margin-left:10px !important;margin-right:10px !important}.md\:my-10{margin-top:10px !important;margin-bottom:10px !important}.md\:mt-10{margin-top:10px !important}.md\:mr-10{margin-right:10px !important}.md\:mb-10{margin-bottom:10px !important}.md\:ml-10{margin-left:10px !important}.md\:p-12{padding:12px !important}.md\:px-12{padding-left:12px !important;padding-right:12px !important}.md\:py-12{padding-top:12px !important;padding-bottom:12px !important}.md\:pt-12{padding-top:12px !important}.md\:pr-12{padding-right:12px !important}.md\:pb-12{padding-bottom:12px !important}.md\:pl-12{padding-left:12px !important}.md\:m-12{margin:12px !important}.md\:mx-12{margin-left:12px !important;margin-right:12px !important}.md\:my-12{margin-top:12px !important;margin-bottom:12px !important}.md\:mt-12{margin-top:12px !important}.md\:mr-12{margin-right:12px !important}.md\:mb-12{margin-bottom:12px !important}.md\:ml-12{margin-left:12px !important}.md\:p-14{padding:14px !important}.md\:px-14{padding-left:14px !important;padding-right:14px !important}.md\:py-14{padding-top:14px !important;padding-bottom:14px !important}.md\:pt-14{padding-top:14px !important}.md\:pr-14{padding-right:14px !important}.md\:pb-14{padding-bottom:14px !important}.md\:pl-14{padding-left:14px !important}.md\:m-14{margin:14px !important}.md\:mx-14{margin-left:14px !important;margin-right:14px !important}.md\:my-14{margin-top:14px !important;margin-bottom:14px !important}.md\:mt-14{margin-top:14px !important}.md\:mr-14{margin-right:14px !important}.md\:mb-14{margin-bottom:14px !important}.md\:ml-14{margin-left:14px !important}.md\:p-15{padding:15px !important}.md\:px-15{padding-left:15px !important;padding-right:15px !important}.md\:py-15{padding-top:15px !important;padding-bottom:15px !important}.md\:pt-15{padding-top:15px !important}.md\:pr-15{padding-right:15px !important}.md\:pb-15{padding-bottom:15px !important}.md\:pl-15{padding-left:15px !important}.md\:m-15{margin:15px !important}.md\:mx-15{margin-left:15px !important;margin-right:15px !important}.md\:my-15{margin-top:15px !important;margin-bottom:15px !important}.md\:mt-15{margin-top:15px !important}.md\:mr-15{margin-right:15px !important}.md\:mb-15{margin-bottom:15px !important}.md\:ml-15{margin-left:15px !important}.md\:p-16{padding:16px !important}.md\:px-16{padding-left:16px !important;padding-right:16px !important}.md\:py-16{padding-top:16px !important;padding-bottom:16px !important}.md\:pt-16{padding-top:16px !important}.md\:pr-16{padding-right:16px !important}.md\:pb-16{padding-bottom:16px !important}.md\:pl-16{padding-left:16px !important}.md\:m-16{margin:16px !important}.md\:mx-16{margin-left:16px !important;margin-right:16px !important}.md\:my-16{margin-top:16px !important;margin-bottom:16px !important}.md\:mt-16{margin-top:16px !important}.md\:mr-16{margin-right:16px !important}.md\:mb-16{margin-bottom:16px !important}.md\:ml-16{margin-left:16px !important}.md\:p-18{padding:18px !important}.md\:px-18{padding-left:18px !important;padding-right:18px !important}.md\:py-18{padding-top:18px !important;padding-bottom:18px !important}.md\:pt-18{padding-top:18px !important}.md\:pr-18{padding-right:18px !important}.md\:pb-18{padding-bottom:18px !important}.md\:pl-18{padding-left:18px !important}.md\:m-18{margin:18px !important}.md\:mx-18{margin-left:18px !important;margin-right:18px !important}.md\:my-18{margin-top:18px !important;margin-bottom:18px !important}.md\:mt-18{margin-top:18px !important}.md\:mr-18{margin-right:18px !important}.md\:mb-18{margin-bottom:18px !important}.md\:ml-18{margin-left:18px !important}.md\:p-20{padding:20px !important}.md\:px-20{padding-left:20px !important;padding-right:20px !important}.md\:py-20{padding-top:20px !important;padding-bottom:20px !important}.md\:pt-20{padding-top:20px !important}.md\:pr-20{padding-right:20px !important}.md\:pb-20{padding-bottom:20px !important}.md\:pl-20{padding-left:20px !important}.md\:m-20{margin:20px !important}.md\:mx-20{margin-left:20px !important;margin-right:20px !important}.md\:my-20{margin-top:20px !important;margin-bottom:20px !important}.md\:mt-20{margin-top:20px !important}.md\:mr-20{margin-right:20px !important}.md\:mb-20{margin-bottom:20px !important}.md\:ml-20{margin-left:20px !important}.md\:p-25{padding:25px !important}.md\:px-25{padding-left:25px !important;padding-right:25px !important}.md\:py-25{padding-top:25px !important;padding-bottom:25px !important}.md\:pt-25{padding-top:25px !important}.md\:pr-25{padding-right:25px !important}.md\:pb-25{padding-bottom:25px !important}.md\:pl-25{padding-left:25px !important}.md\:m-25{margin:25px !important}.md\:mx-25{margin-left:25px !important;margin-right:25px !important}.md\:my-25{margin-top:25px !important;margin-bottom:25px !important}.md\:mt-25{margin-top:25px !important}.md\:mr-25{margin-right:25px !important}.md\:mb-25{margin-bottom:25px !important}.md\:ml-25{margin-left:25px !important}.md\:p-30{padding:30px !important}.md\:px-30{padding-left:30px !important;padding-right:30px !important}.md\:py-30{padding-top:30px !important;padding-bottom:30px !important}.md\:pt-30{padding-top:30px !important}.md\:pr-30{padding-right:30px !important}.md\:pb-30{padding-bottom:30px !important}.md\:pl-30{padding-left:30px !important}.md\:m-30{margin:30px !important}.md\:mx-30{margin-left:30px !important;margin-right:30px !important}.md\:my-30{margin-top:30px !important;margin-bottom:30px !important}.md\:mt-30{margin-top:30px !important}.md\:mr-30{margin-right:30px !important}.md\:mb-30{margin-bottom:30px !important}.md\:ml-30{margin-left:30px !important}.md\:p-35{padding:35px !important}.md\:px-35{padding-left:35px !important;padding-right:35px !important}.md\:py-35{padding-top:35px !important;padding-bottom:35px !important}.md\:pt-35{padding-top:35px !important}.md\:pr-35{padding-right:35px !important}.md\:pb-35{padding-bottom:35px !important}.md\:pl-35{padding-left:35px !important}.md\:m-35{margin:35px !important}.md\:mx-35{margin-left:35px !important;margin-right:35px !important}.md\:my-35{margin-top:35px !important;margin-bottom:35px !important}.md\:mt-35{margin-top:35px !important}.md\:mr-35{margin-right:35px !important}.md\:mb-35{margin-bottom:35px !important}.md\:ml-35{margin-left:35px !important}.md\:p-40{padding:40px !important}.md\:px-40{padding-left:40px !important;padding-right:40px !important}.md\:py-40{padding-top:40px !important;padding-bottom:40px !important}.md\:pt-40{padding-top:40px !important}.md\:pr-40{padding-right:40px !important}.md\:pb-40{padding-bottom:40px !important}.md\:pl-40{padding-left:40px !important}.md\:m-40{margin:40px !important}.md\:mx-40{margin-left:40px !important;margin-right:40px !important}.md\:my-40{margin-top:40px !important;margin-bottom:40px !important}.md\:mt-40{margin-top:40px !important}.md\:mr-40{margin-right:40px !important}.md\:mb-40{margin-bottom:40px !important}.md\:ml-40{margin-left:40px !important}.md\:p-45{padding:45px !important}.md\:px-45{padding-left:45px !important;padding-right:45px !important}.md\:py-45{padding-top:45px !important;padding-bottom:45px !important}.md\:pt-45{padding-top:45px !important}.md\:pr-45{padding-right:45px !important}.md\:pb-45{padding-bottom:45px !important}.md\:pl-45{padding-left:45px !important}.md\:m-45{margin:45px !important}.md\:mx-45{margin-left:45px !important;margin-right:45px !important}.md\:my-45{margin-top:45px !important;margin-bottom:45px !important}.md\:mt-45{margin-top:45px !important}.md\:mr-45{margin-right:45px !important}.md\:mb-45{margin-bottom:45px !important}.md\:ml-45{margin-left:45px !important}.md\:p-50{padding:50px !important}.md\:px-50{padding-left:50px !important;padding-right:50px !important}.md\:py-50{padding-top:50px !important;padding-bottom:50px !important}.md\:pt-50{padding-top:50px !important}.md\:pr-50{padding-right:50px !important}.md\:pb-50{padding-bottom:50px !important}.md\:pl-50{padding-left:50px !important}.md\:m-50{margin:50px !important}.md\:mx-50{margin-left:50px !important;margin-right:50px !important}.md\:my-50{margin-top:50px !important;margin-bottom:50px !important}.md\:mt-50{margin-top:50px !important}.md\:mr-50{margin-right:50px !important}.md\:mb-50{margin-bottom:50px !important}.md\:ml-50{margin-left:50px !important}.md\:p-55{padding:55px !important}.md\:px-55{padding-left:55px !important;padding-right:55px !important}.md\:py-55{padding-top:55px !important;padding-bottom:55px !important}.md\:pt-55{padding-top:55px !important}.md\:pr-55{padding-right:55px !important}.md\:pb-55{padding-bottom:55px !important}.md\:pl-55{padding-left:55px !important}.md\:m-55{margin:55px !important}.md\:mx-55{margin-left:55px !important;margin-right:55px !important}.md\:my-55{margin-top:55px !important;margin-bottom:55px !important}.md\:mt-55{margin-top:55px !important}.md\:mr-55{margin-right:55px !important}.md\:mb-55{margin-bottom:55px !important}.md\:ml-55{margin-left:55px !important}.md\:p-60{padding:60px !important}.md\:px-60{padding-left:60px !important;padding-right:60px !important}.md\:py-60{padding-top:60px !important;padding-bottom:60px !important}.md\:pt-60{padding-top:60px !important}.md\:pr-60{padding-right:60px !important}.md\:pb-60{padding-bottom:60px !important}.md\:pl-60{padding-left:60px !important}.md\:m-60{margin:60px !important}.md\:mx-60{margin-left:60px !important;margin-right:60px !important}.md\:my-60{margin-top:60px !important;margin-bottom:60px !important}.md\:mt-60{margin-top:60px !important}.md\:mr-60{margin-right:60px !important}.md\:mb-60{margin-bottom:60px !important}.md\:ml-60{margin-left:60px !important}.md\:p-65{padding:65px !important}.md\:px-65{padding-left:65px !important;padding-right:65px !important}.md\:py-65{padding-top:65px !important;padding-bottom:65px !important}.md\:pt-65{padding-top:65px !important}.md\:pr-65{padding-right:65px !important}.md\:pb-65{padding-bottom:65px !important}.md\:pl-65{padding-left:65px !important}.md\:m-65{margin:65px !important}.md\:mx-65{margin-left:65px !important;margin-right:65px !important}.md\:my-65{margin-top:65px !important;margin-bottom:65px !important}.md\:mt-65{margin-top:65px !important}.md\:mr-65{margin-right:65px !important}.md\:mb-65{margin-bottom:65px !important}.md\:ml-65{margin-left:65px !important}.md\:p-70{padding:70px !important}.md\:px-70{padding-left:70px !important;padding-right:70px !important}.md\:py-70{padding-top:70px !important;padding-bottom:70px !important}.md\:pt-70{padding-top:70px !important}.md\:pr-70{padding-right:70px !important}.md\:pb-70{padding-bottom:70px !important}.md\:pl-70{padding-left:70px !important}.md\:m-70{margin:70px !important}.md\:mx-70{margin-left:70px !important;margin-right:70px !important}.md\:my-70{margin-top:70px !important;margin-bottom:70px !important}.md\:mt-70{margin-top:70px !important}.md\:mr-70{margin-right:70px !important}.md\:mb-70{margin-bottom:70px !important}.md\:ml-70{margin-left:70px !important}.md\:p-75{padding:75px !important}.md\:px-75{padding-left:75px !important;padding-right:75px !important}.md\:py-75{padding-top:75px !important;padding-bottom:75px !important}.md\:pt-75{padding-top:75px !important}.md\:pr-75{padding-right:75px !important}.md\:pb-75{padding-bottom:75px !important}.md\:pl-75{padding-left:75px !important}.md\:m-75{margin:75px !important}.md\:mx-75{margin-left:75px !important;margin-right:75px !important}.md\:my-75{margin-top:75px !important;margin-bottom:75px !important}.md\:mt-75{margin-top:75px !important}.md\:mr-75{margin-right:75px !important}.md\:mb-75{margin-bottom:75px !important}.md\:ml-75{margin-left:75px !important}.md\:p-80{padding:80px !important}.md\:px-80{padding-left:80px !important;padding-right:80px !important}.md\:py-80{padding-top:80px !important;padding-bottom:80px !important}.md\:pt-80{padding-top:80px !important}.md\:pr-80{padding-right:80px !important}.md\:pb-80{padding-bottom:80px !important}.md\:pl-80{padding-left:80px !important}.md\:m-80{margin:80px !important}.md\:mx-80{margin-left:80px !important;margin-right:80px !important}.md\:my-80{margin-top:80px !important;margin-bottom:80px !important}.md\:mt-80{margin-top:80px !important}.md\:mr-80{margin-right:80px !important}.md\:mb-80{margin-bottom:80px !important}.md\:ml-80{margin-left:80px !important}.md\:p-85{padding:85px !important}.md\:px-85{padding-left:85px !important;padding-right:85px !important}.md\:py-85{padding-top:85px !important;padding-bottom:85px !important}.md\:pt-85{padding-top:85px !important}.md\:pr-85{padding-right:85px !important}.md\:pb-85{padding-bottom:85px !important}.md\:pl-85{padding-left:85px !important}.md\:m-85{margin:85px !important}.md\:mx-85{margin-left:85px !important;margin-right:85px !important}.md\:my-85{margin-top:85px !important;margin-bottom:85px !important}.md\:mt-85{margin-top:85px !important}.md\:mr-85{margin-right:85px !important}.md\:mb-85{margin-bottom:85px !important}.md\:ml-85{margin-left:85px !important}.md\:p-90{padding:90px !important}.md\:px-90{padding-left:90px !important;padding-right:90px !important}.md\:py-90{padding-top:90px !important;padding-bottom:90px !important}.md\:pt-90{padding-top:90px !important}.md\:pr-90{padding-right:90px !important}.md\:pb-90{padding-bottom:90px !important}.md\:pl-90{padding-left:90px !important}.md\:m-90{margin:90px !important}.md\:mx-90{margin-left:90px !important;margin-right:90px !important}.md\:my-90{margin-top:90px !important;margin-bottom:90px !important}.md\:mt-90{margin-top:90px !important}.md\:mr-90{margin-right:90px !important}.md\:mb-90{margin-bottom:90px !important}.md\:ml-90{margin-left:90px !important}.md\:p-95{padding:95px !important}.md\:px-95{padding-left:95px !important;padding-right:95px !important}.md\:py-95{padding-top:95px !important;padding-bottom:95px !important}.md\:pt-95{padding-top:95px !important}.md\:pr-95{padding-right:95px !important}.md\:pb-95{padding-bottom:95px !important}.md\:pl-95{padding-left:95px !important}.md\:m-95{margin:95px !important}.md\:mx-95{margin-left:95px !important;margin-right:95px !important}.md\:my-95{margin-top:95px !important;margin-bottom:95px !important}.md\:mt-95{margin-top:95px !important}.md\:mr-95{margin-right:95px !important}.md\:mb-95{margin-bottom:95px !important}.md\:ml-95{margin-left:95px !important}.md\:p-100{padding:100px !important}.md\:px-100{padding-left:100px !important;padding-right:100px !important}.md\:py-100{padding-top:100px !important;padding-bottom:100px !important}.md\:pt-100{padding-top:100px !important}.md\:pr-100{padding-right:100px !important}.md\:pb-100{padding-bottom:100px !important}.md\:pl-100{padding-left:100px !important}.md\:m-100{margin:100px !important}.md\:mx-100{margin-left:100px !important;margin-right:100px !important}.md\:my-100{margin-top:100px !important;margin-bottom:100px !important}.md\:mt-100{margin-top:100px !important}.md\:mr-100{margin-right:100px !important}.md\:mb-100{margin-bottom:100px !important}.md\:ml-100{margin-left:100px !important}}@media(min-width: 1024px){.lg\:p-0{padding:0 !important}.lg\:px-0{padding-left:0 !important;padding-right:0 !important}.lg\:py-0{padding-top:0 !important;padding-bottom:0 !important}.lg\:pt-0{padding-top:0 !important}.lg\:pr-0{padding-right:0 !important}.lg\:pb-0{padding-bottom:0 !important}.lg\:pl-0{padding-left:0 !important}.lg\:m-0{margin:0 !important}.lg\:mx-0{margin-left:0 !important;margin-right:0 !important}.lg\:my-0{margin-top:0 !important;margin-bottom:0 !important}.lg\:mt-0{margin-top:0 !important}.lg\:mr-0{margin-right:0 !important}.lg\:mb-0{margin-bottom:0 !important}.lg\:ml-0{margin-left:0 !important}.lg\:p-1{padding:1px !important}.lg\:px-1{padding-left:1px !important;padding-right:1px !important}.lg\:py-1{padding-top:1px !important;padding-bottom:1px !important}.lg\:pt-1{padding-top:1px !important}.lg\:pr-1{padding-right:1px !important}.lg\:pb-1{padding-bottom:1px !important}.lg\:pl-1{padding-left:1px !important}.lg\:m-1{margin:1px !important}.lg\:mx-1{margin-left:1px !important;margin-right:1px !important}.lg\:my-1{margin-top:1px !important;margin-bottom:1px !important}.lg\:mt-1{margin-top:1px !important}.lg\:mr-1{margin-right:1px !important}.lg\:mb-1{margin-bottom:1px !important}.lg\:ml-1{margin-left:1px !important}.lg\:p-2{padding:2px !important}.lg\:px-2{padding-left:2px !important;padding-right:2px !important}.lg\:py-2{padding-top:2px !important;padding-bottom:2px !important}.lg\:pt-2{padding-top:2px !important}.lg\:pr-2{padding-right:2px !important}.lg\:pb-2{padding-bottom:2px !important}.lg\:pl-2{padding-left:2px !important}.lg\:m-2{margin:2px !important}.lg\:mx-2{margin-left:2px !important;margin-right:2px !important}.lg\:my-2{margin-top:2px !important;margin-bottom:2px !important}.lg\:mt-2{margin-top:2px !important}.lg\:mr-2{margin-right:2px !important}.lg\:mb-2{margin-bottom:2px !important}.lg\:ml-2{margin-left:2px !important}.lg\:p-3{padding:3px !important}.lg\:px-3{padding-left:3px !important;padding-right:3px !important}.lg\:py-3{padding-top:3px !important;padding-bottom:3px !important}.lg\:pt-3{padding-top:3px !important}.lg\:pr-3{padding-right:3px !important}.lg\:pb-3{padding-bottom:3px !important}.lg\:pl-3{padding-left:3px !important}.lg\:m-3{margin:3px !important}.lg\:mx-3{margin-left:3px !important;margin-right:3px !important}.lg\:my-3{margin-top:3px !important;margin-bottom:3px !important}.lg\:mt-3{margin-top:3px !important}.lg\:mr-3{margin-right:3px !important}.lg\:mb-3{margin-bottom:3px !important}.lg\:ml-3{margin-left:3px !important}.lg\:p-4{padding:4px !important}.lg\:px-4{padding-left:4px !important;padding-right:4px !important}.lg\:py-4{padding-top:4px !important;padding-bottom:4px !important}.lg\:pt-4{padding-top:4px !important}.lg\:pr-4{padding-right:4px !important}.lg\:pb-4{padding-bottom:4px !important}.lg\:pl-4{padding-left:4px !important}.lg\:m-4{margin:4px !important}.lg\:mx-4{margin-left:4px !important;margin-right:4px !important}.lg\:my-4{margin-top:4px !important;margin-bottom:4px !important}.lg\:mt-4{margin-top:4px !important}.lg\:mr-4{margin-right:4px !important}.lg\:mb-4{margin-bottom:4px !important}.lg\:ml-4{margin-left:4px !important}.lg\:p-5{padding:5px !important}.lg\:px-5{padding-left:5px !important;padding-right:5px !important}.lg\:py-5{padding-top:5px !important;padding-bottom:5px !important}.lg\:pt-5{padding-top:5px !important}.lg\:pr-5{padding-right:5px !important}.lg\:pb-5{padding-bottom:5px !important}.lg\:pl-5{padding-left:5px !important}.lg\:m-5{margin:5px !important}.lg\:mx-5{margin-left:5px !important;margin-right:5px !important}.lg\:my-5{margin-top:5px !important;margin-bottom:5px !important}.lg\:mt-5{margin-top:5px !important}.lg\:mr-5{margin-right:5px !important}.lg\:mb-5{margin-bottom:5px !important}.lg\:ml-5{margin-left:5px !important}.lg\:p-6{padding:6px !important}.lg\:px-6{padding-left:6px !important;padding-right:6px !important}.lg\:py-6{padding-top:6px !important;padding-bottom:6px !important}.lg\:pt-6{padding-top:6px !important}.lg\:pr-6{padding-right:6px !important}.lg\:pb-6{padding-bottom:6px !important}.lg\:pl-6{padding-left:6px !important}.lg\:m-6{margin:6px !important}.lg\:mx-6{margin-left:6px !important;margin-right:6px !important}.lg\:my-6{margin-top:6px !important;margin-bottom:6px !important}.lg\:mt-6{margin-top:6px !important}.lg\:mr-6{margin-right:6px !important}.lg\:mb-6{margin-bottom:6px !important}.lg\:ml-6{margin-left:6px !important}.lg\:p-7{padding:7px !important}.lg\:px-7{padding-left:7px !important;padding-right:7px !important}.lg\:py-7{padding-top:7px !important;padding-bottom:7px !important}.lg\:pt-7{padding-top:7px !important}.lg\:pr-7{padding-right:7px !important}.lg\:pb-7{padding-bottom:7px !important}.lg\:pl-7{padding-left:7px !important}.lg\:m-7{margin:7px !important}.lg\:mx-7{margin-left:7px !important;margin-right:7px !important}.lg\:my-7{margin-top:7px !important;margin-bottom:7px !important}.lg\:mt-7{margin-top:7px !important}.lg\:mr-7{margin-right:7px !important}.lg\:mb-7{margin-bottom:7px !important}.lg\:ml-7{margin-left:7px !important}.lg\:p-8{padding:8px !important}.lg\:px-8{padding-left:8px !important;padding-right:8px !important}.lg\:py-8{padding-top:8px !important;padding-bottom:8px !important}.lg\:pt-8{padding-top:8px !important}.lg\:pr-8{padding-right:8px !important}.lg\:pb-8{padding-bottom:8px !important}.lg\:pl-8{padding-left:8px !important}.lg\:m-8{margin:8px !important}.lg\:mx-8{margin-left:8px !important;margin-right:8px !important}.lg\:my-8{margin-top:8px !important;margin-bottom:8px !important}.lg\:mt-8{margin-top:8px !important}.lg\:mr-8{margin-right:8px !important}.lg\:mb-8{margin-bottom:8px !important}.lg\:ml-8{margin-left:8px !important}.lg\:p-9{padding:9px !important}.lg\:px-9{padding-left:9px !important;padding-right:9px !important}.lg\:py-9{padding-top:9px !important;padding-bottom:9px !important}.lg\:pt-9{padding-top:9px !important}.lg\:pr-9{padding-right:9px !important}.lg\:pb-9{padding-bottom:9px !important}.lg\:pl-9{padding-left:9px !important}.lg\:m-9{margin:9px !important}.lg\:mx-9{margin-left:9px !important;margin-right:9px !important}.lg\:my-9{margin-top:9px !important;margin-bottom:9px !important}.lg\:mt-9{margin-top:9px !important}.lg\:mr-9{margin-right:9px !important}.lg\:mb-9{margin-bottom:9px !important}.lg\:ml-9{margin-left:9px !important}.lg\:p-10{padding:10px !important}.lg\:px-10{padding-left:10px !important;padding-right:10px !important}.lg\:py-10{padding-top:10px !important;padding-bottom:10px !important}.lg\:pt-10{padding-top:10px !important}.lg\:pr-10{padding-right:10px !important}.lg\:pb-10{padding-bottom:10px !important}.lg\:pl-10{padding-left:10px !important}.lg\:m-10{margin:10px !important}.lg\:mx-10{margin-left:10px !important;margin-right:10px !important}.lg\:my-10{margin-top:10px !important;margin-bottom:10px !important}.lg\:mt-10{margin-top:10px !important}.lg\:mr-10{margin-right:10px !important}.lg\:mb-10{margin-bottom:10px !important}.lg\:ml-10{margin-left:10px !important}.lg\:p-12{padding:12px !important}.lg\:px-12{padding-left:12px !important;padding-right:12px !important}.lg\:py-12{padding-top:12px !important;padding-bottom:12px !important}.lg\:pt-12{padding-top:12px !important}.lg\:pr-12{padding-right:12px !important}.lg\:pb-12{padding-bottom:12px !important}.lg\:pl-12{padding-left:12px !important}.lg\:m-12{margin:12px !important}.lg\:mx-12{margin-left:12px !important;margin-right:12px !important}.lg\:my-12{margin-top:12px !important;margin-bottom:12px !important}.lg\:mt-12{margin-top:12px !important}.lg\:mr-12{margin-right:12px !important}.lg\:mb-12{margin-bottom:12px !important}.lg\:ml-12{margin-left:12px !important}.lg\:p-14{padding:14px !important}.lg\:px-14{padding-left:14px !important;padding-right:14px !important}.lg\:py-14{padding-top:14px !important;padding-bottom:14px !important}.lg\:pt-14{padding-top:14px !important}.lg\:pr-14{padding-right:14px !important}.lg\:pb-14{padding-bottom:14px !important}.lg\:pl-14{padding-left:14px !important}.lg\:m-14{margin:14px !important}.lg\:mx-14{margin-left:14px !important;margin-right:14px !important}.lg\:my-14{margin-top:14px !important;margin-bottom:14px !important}.lg\:mt-14{margin-top:14px !important}.lg\:mr-14{margin-right:14px !important}.lg\:mb-14{margin-bottom:14px !important}.lg\:ml-14{margin-left:14px !important}.lg\:p-15{padding:15px !important}.lg\:px-15{padding-left:15px !important;padding-right:15px !important}.lg\:py-15{padding-top:15px !important;padding-bottom:15px !important}.lg\:pt-15{padding-top:15px !important}.lg\:pr-15{padding-right:15px !important}.lg\:pb-15{padding-bottom:15px !important}.lg\:pl-15{padding-left:15px !important}.lg\:m-15{margin:15px !important}.lg\:mx-15{margin-left:15px !important;margin-right:15px !important}.lg\:my-15{margin-top:15px !important;margin-bottom:15px !important}.lg\:mt-15{margin-top:15px !important}.lg\:mr-15{margin-right:15px !important}.lg\:mb-15{margin-bottom:15px !important}.lg\:ml-15{margin-left:15px !important}.lg\:p-16{padding:16px !important}.lg\:px-16{padding-left:16px !important;padding-right:16px !important}.lg\:py-16{padding-top:16px !important;padding-bottom:16px !important}.lg\:pt-16{padding-top:16px !important}.lg\:pr-16{padding-right:16px !important}.lg\:pb-16{padding-bottom:16px !important}.lg\:pl-16{padding-left:16px !important}.lg\:m-16{margin:16px !important}.lg\:mx-16{margin-left:16px !important;margin-right:16px !important}.lg\:my-16{margin-top:16px !important;margin-bottom:16px !important}.lg\:mt-16{margin-top:16px !important}.lg\:mr-16{margin-right:16px !important}.lg\:mb-16{margin-bottom:16px !important}.lg\:ml-16{margin-left:16px !important}.lg\:p-18{padding:18px !important}.lg\:px-18{padding-left:18px !important;padding-right:18px !important}.lg\:py-18{padding-top:18px !important;padding-bottom:18px !important}.lg\:pt-18{padding-top:18px !important}.lg\:pr-18{padding-right:18px !important}.lg\:pb-18{padding-bottom:18px !important}.lg\:pl-18{padding-left:18px !important}.lg\:m-18{margin:18px !important}.lg\:mx-18{margin-left:18px !important;margin-right:18px !important}.lg\:my-18{margin-top:18px !important;margin-bottom:18px !important}.lg\:mt-18{margin-top:18px !important}.lg\:mr-18{margin-right:18px !important}.lg\:mb-18{margin-bottom:18px !important}.lg\:ml-18{margin-left:18px !important}.lg\:p-20{padding:20px !important}.lg\:px-20{padding-left:20px !important;padding-right:20px !important}.lg\:py-20{padding-top:20px !important;padding-bottom:20px !important}.lg\:pt-20{padding-top:20px !important}.lg\:pr-20{padding-right:20px !important}.lg\:pb-20{padding-bottom:20px !important}.lg\:pl-20{padding-left:20px !important}.lg\:m-20{margin:20px !important}.lg\:mx-20{margin-left:20px !important;margin-right:20px !important}.lg\:my-20{margin-top:20px !important;margin-bottom:20px !important}.lg\:mt-20{margin-top:20px !important}.lg\:mr-20{margin-right:20px !important}.lg\:mb-20{margin-bottom:20px !important}.lg\:ml-20{margin-left:20px !important}.lg\:p-25{padding:25px !important}.lg\:px-25{padding-left:25px !important;padding-right:25px !important}.lg\:py-25{padding-top:25px !important;padding-bottom:25px !important}.lg\:pt-25{padding-top:25px !important}.lg\:pr-25{padding-right:25px !important}.lg\:pb-25{padding-bottom:25px !important}.lg\:pl-25{padding-left:25px !important}.lg\:m-25{margin:25px !important}.lg\:mx-25{margin-left:25px !important;margin-right:25px !important}.lg\:my-25{margin-top:25px !important;margin-bottom:25px !important}.lg\:mt-25{margin-top:25px !important}.lg\:mr-25{margin-right:25px !important}.lg\:mb-25{margin-bottom:25px !important}.lg\:ml-25{margin-left:25px !important}.lg\:p-30{padding:30px !important}.lg\:px-30{padding-left:30px !important;padding-right:30px !important}.lg\:py-30{padding-top:30px !important;padding-bottom:30px !important}.lg\:pt-30{padding-top:30px !important}.lg\:pr-30{padding-right:30px !important}.lg\:pb-30{padding-bottom:30px !important}.lg\:pl-30{padding-left:30px !important}.lg\:m-30{margin:30px !important}.lg\:mx-30{margin-left:30px !important;margin-right:30px !important}.lg\:my-30{margin-top:30px !important;margin-bottom:30px !important}.lg\:mt-30{margin-top:30px !important}.lg\:mr-30{margin-right:30px !important}.lg\:mb-30{margin-bottom:30px !important}.lg\:ml-30{margin-left:30px !important}.lg\:p-35{padding:35px !important}.lg\:px-35{padding-left:35px !important;padding-right:35px !important}.lg\:py-35{padding-top:35px !important;padding-bottom:35px !important}.lg\:pt-35{padding-top:35px !important}.lg\:pr-35{padding-right:35px !important}.lg\:pb-35{padding-bottom:35px !important}.lg\:pl-35{padding-left:35px !important}.lg\:m-35{margin:35px !important}.lg\:mx-35{margin-left:35px !important;margin-right:35px !important}.lg\:my-35{margin-top:35px !important;margin-bottom:35px !important}.lg\:mt-35{margin-top:35px !important}.lg\:mr-35{margin-right:35px !important}.lg\:mb-35{margin-bottom:35px !important}.lg\:ml-35{margin-left:35px !important}.lg\:p-40{padding:40px !important}.lg\:px-40{padding-left:40px !important;padding-right:40px !important}.lg\:py-40{padding-top:40px !important;padding-bottom:40px !important}.lg\:pt-40{padding-top:40px !important}.lg\:pr-40{padding-right:40px !important}.lg\:pb-40{padding-bottom:40px !important}.lg\:pl-40{padding-left:40px !important}.lg\:m-40{margin:40px !important}.lg\:mx-40{margin-left:40px !important;margin-right:40px !important}.lg\:my-40{margin-top:40px !important;margin-bottom:40px !important}.lg\:mt-40{margin-top:40px !important}.lg\:mr-40{margin-right:40px !important}.lg\:mb-40{margin-bottom:40px !important}.lg\:ml-40{margin-left:40px !important}.lg\:p-45{padding:45px !important}.lg\:px-45{padding-left:45px !important;padding-right:45px !important}.lg\:py-45{padding-top:45px !important;padding-bottom:45px !important}.lg\:pt-45{padding-top:45px !important}.lg\:pr-45{padding-right:45px !important}.lg\:pb-45{padding-bottom:45px !important}.lg\:pl-45{padding-left:45px !important}.lg\:m-45{margin:45px !important}.lg\:mx-45{margin-left:45px !important;margin-right:45px !important}.lg\:my-45{margin-top:45px !important;margin-bottom:45px !important}.lg\:mt-45{margin-top:45px !important}.lg\:mr-45{margin-right:45px !important}.lg\:mb-45{margin-bottom:45px !important}.lg\:ml-45{margin-left:45px !important}.lg\:p-50{padding:50px !important}.lg\:px-50{padding-left:50px !important;padding-right:50px !important}.lg\:py-50{padding-top:50px !important;padding-bottom:50px !important}.lg\:pt-50{padding-top:50px !important}.lg\:pr-50{padding-right:50px !important}.lg\:pb-50{padding-bottom:50px !important}.lg\:pl-50{padding-left:50px !important}.lg\:m-50{margin:50px !important}.lg\:mx-50{margin-left:50px !important;margin-right:50px !important}.lg\:my-50{margin-top:50px !important;margin-bottom:50px !important}.lg\:mt-50{margin-top:50px !important}.lg\:mr-50{margin-right:50px !important}.lg\:mb-50{margin-bottom:50px !important}.lg\:ml-50{margin-left:50px !important}.lg\:p-55{padding:55px !important}.lg\:px-55{padding-left:55px !important;padding-right:55px !important}.lg\:py-55{padding-top:55px !important;padding-bottom:55px !important}.lg\:pt-55{padding-top:55px !important}.lg\:pr-55{padding-right:55px !important}.lg\:pb-55{padding-bottom:55px !important}.lg\:pl-55{padding-left:55px !important}.lg\:m-55{margin:55px !important}.lg\:mx-55{margin-left:55px !important;margin-right:55px !important}.lg\:my-55{margin-top:55px !important;margin-bottom:55px !important}.lg\:mt-55{margin-top:55px !important}.lg\:mr-55{margin-right:55px !important}.lg\:mb-55{margin-bottom:55px !important}.lg\:ml-55{margin-left:55px !important}.lg\:p-60{padding:60px !important}.lg\:px-60{padding-left:60px !important;padding-right:60px !important}.lg\:py-60{padding-top:60px !important;padding-bottom:60px !important}.lg\:pt-60{padding-top:60px !important}.lg\:pr-60{padding-right:60px !important}.lg\:pb-60{padding-bottom:60px !important}.lg\:pl-60{padding-left:60px !important}.lg\:m-60{margin:60px !important}.lg\:mx-60{margin-left:60px !important;margin-right:60px !important}.lg\:my-60{margin-top:60px !important;margin-bottom:60px !important}.lg\:mt-60{margin-top:60px !important}.lg\:mr-60{margin-right:60px !important}.lg\:mb-60{margin-bottom:60px !important}.lg\:ml-60{margin-left:60px !important}.lg\:p-65{padding:65px !important}.lg\:px-65{padding-left:65px !important;padding-right:65px !important}.lg\:py-65{padding-top:65px !important;padding-bottom:65px !important}.lg\:pt-65{padding-top:65px !important}.lg\:pr-65{padding-right:65px !important}.lg\:pb-65{padding-bottom:65px !important}.lg\:pl-65{padding-left:65px !important}.lg\:m-65{margin:65px !important}.lg\:mx-65{margin-left:65px !important;margin-right:65px !important}.lg\:my-65{margin-top:65px !important;margin-bottom:65px !important}.lg\:mt-65{margin-top:65px !important}.lg\:mr-65{margin-right:65px !important}.lg\:mb-65{margin-bottom:65px !important}.lg\:ml-65{margin-left:65px !important}.lg\:p-70{padding:70px !important}.lg\:px-70{padding-left:70px !important;padding-right:70px !important}.lg\:py-70{padding-top:70px !important;padding-bottom:70px !important}.lg\:pt-70{padding-top:70px !important}.lg\:pr-70{padding-right:70px !important}.lg\:pb-70{padding-bottom:70px !important}.lg\:pl-70{padding-left:70px !important}.lg\:m-70{margin:70px !important}.lg\:mx-70{margin-left:70px !important;margin-right:70px !important}.lg\:my-70{margin-top:70px !important;margin-bottom:70px !important}.lg\:mt-70{margin-top:70px !important}.lg\:mr-70{margin-right:70px !important}.lg\:mb-70{margin-bottom:70px !important}.lg\:ml-70{margin-left:70px !important}.lg\:p-75{padding:75px !important}.lg\:px-75{padding-left:75px !important;padding-right:75px !important}.lg\:py-75{padding-top:75px !important;padding-bottom:75px !important}.lg\:pt-75{padding-top:75px !important}.lg\:pr-75{padding-right:75px !important}.lg\:pb-75{padding-bottom:75px !important}.lg\:pl-75{padding-left:75px !important}.lg\:m-75{margin:75px !important}.lg\:mx-75{margin-left:75px !important;margin-right:75px !important}.lg\:my-75{margin-top:75px !important;margin-bottom:75px !important}.lg\:mt-75{margin-top:75px !important}.lg\:mr-75{margin-right:75px !important}.lg\:mb-75{margin-bottom:75px !important}.lg\:ml-75{margin-left:75px !important}.lg\:p-80{padding:80px !important}.lg\:px-80{padding-left:80px !important;padding-right:80px !important}.lg\:py-80{padding-top:80px !important;padding-bottom:80px !important}.lg\:pt-80{padding-top:80px !important}.lg\:pr-80{padding-right:80px !important}.lg\:pb-80{padding-bottom:80px !important}.lg\:pl-80{padding-left:80px !important}.lg\:m-80{margin:80px !important}.lg\:mx-80{margin-left:80px !important;margin-right:80px !important}.lg\:my-80{margin-top:80px !important;margin-bottom:80px !important}.lg\:mt-80{margin-top:80px !important}.lg\:mr-80{margin-right:80px !important}.lg\:mb-80{margin-bottom:80px !important}.lg\:ml-80{margin-left:80px !important}.lg\:p-85{padding:85px !important}.lg\:px-85{padding-left:85px !important;padding-right:85px !important}.lg\:py-85{padding-top:85px !important;padding-bottom:85px !important}.lg\:pt-85{padding-top:85px !important}.lg\:pr-85{padding-right:85px !important}.lg\:pb-85{padding-bottom:85px !important}.lg\:pl-85{padding-left:85px !important}.lg\:m-85{margin:85px !important}.lg\:mx-85{margin-left:85px !important;margin-right:85px !important}.lg\:my-85{margin-top:85px !important;margin-bottom:85px !important}.lg\:mt-85{margin-top:85px !important}.lg\:mr-85{margin-right:85px !important}.lg\:mb-85{margin-bottom:85px !important}.lg\:ml-85{margin-left:85px !important}.lg\:p-90{padding:90px !important}.lg\:px-90{padding-left:90px !important;padding-right:90px !important}.lg\:py-90{padding-top:90px !important;padding-bottom:90px !important}.lg\:pt-90{padding-top:90px !important}.lg\:pr-90{padding-right:90px !important}.lg\:pb-90{padding-bottom:90px !important}.lg\:pl-90{padding-left:90px !important}.lg\:m-90{margin:90px !important}.lg\:mx-90{margin-left:90px !important;margin-right:90px !important}.lg\:my-90{margin-top:90px !important;margin-bottom:90px !important}.lg\:mt-90{margin-top:90px !important}.lg\:mr-90{margin-right:90px !important}.lg\:mb-90{margin-bottom:90px !important}.lg\:ml-90{margin-left:90px !important}.lg\:p-95{padding:95px !important}.lg\:px-95{padding-left:95px !important;padding-right:95px !important}.lg\:py-95{padding-top:95px !important;padding-bottom:95px !important}.lg\:pt-95{padding-top:95px !important}.lg\:pr-95{padding-right:95px !important}.lg\:pb-95{padding-bottom:95px !important}.lg\:pl-95{padding-left:95px !important}.lg\:m-95{margin:95px !important}.lg\:mx-95{margin-left:95px !important;margin-right:95px !important}.lg\:my-95{margin-top:95px !important;margin-bottom:95px !important}.lg\:mt-95{margin-top:95px !important}.lg\:mr-95{margin-right:95px !important}.lg\:mb-95{margin-bottom:95px !important}.lg\:ml-95{margin-left:95px !important}.lg\:p-100{padding:100px !important}.lg\:px-100{padding-left:100px !important;padding-right:100px !important}.lg\:py-100{padding-top:100px !important;padding-bottom:100px !important}.lg\:pt-100{padding-top:100px !important}.lg\:pr-100{padding-right:100px !important}.lg\:pb-100{padding-bottom:100px !important}.lg\:pl-100{padding-left:100px !important}.lg\:m-100{margin:100px !important}.lg\:mx-100{margin-left:100px !important;margin-right:100px !important}.lg\:my-100{margin-top:100px !important;margin-bottom:100px !important}.lg\:mt-100{margin-top:100px !important}.lg\:mr-100{margin-right:100px !important}.lg\:mb-100{margin-bottom:100px !important}.lg\:ml-100{margin-left:100px !important}}@media(min-width: 1280px){.xl\:p-0{padding:0 !important}.xl\:px-0{padding-left:0 !important;padding-right:0 !important}.xl\:py-0{padding-top:0 !important;padding-bottom:0 !important}.xl\:pt-0{padding-top:0 !important}.xl\:pr-0{padding-right:0 !important}.xl\:pb-0{padding-bottom:0 !important}.xl\:pl-0{padding-left:0 !important}.xl\:m-0{margin:0 !important}.xl\:mx-0{margin-left:0 !important;margin-right:0 !important}.xl\:my-0{margin-top:0 !important;margin-bottom:0 !important}.xl\:mt-0{margin-top:0 !important}.xl\:mr-0{margin-right:0 !important}.xl\:mb-0{margin-bottom:0 !important}.xl\:ml-0{margin-left:0 !important}.xl\:p-1{padding:1px !important}.xl\:px-1{padding-left:1px !important;padding-right:1px !important}.xl\:py-1{padding-top:1px !important;padding-bottom:1px !important}.xl\:pt-1{padding-top:1px !important}.xl\:pr-1{padding-right:1px !important}.xl\:pb-1{padding-bottom:1px !important}.xl\:pl-1{padding-left:1px !important}.xl\:m-1{margin:1px !important}.xl\:mx-1{margin-left:1px !important;margin-right:1px !important}.xl\:my-1{margin-top:1px !important;margin-bottom:1px !important}.xl\:mt-1{margin-top:1px !important}.xl\:mr-1{margin-right:1px !important}.xl\:mb-1{margin-bottom:1px !important}.xl\:ml-1{margin-left:1px !important}.xl\:p-2{padding:2px !important}.xl\:px-2{padding-left:2px !important;padding-right:2px !important}.xl\:py-2{padding-top:2px !important;padding-bottom:2px !important}.xl\:pt-2{padding-top:2px !important}.xl\:pr-2{padding-right:2px !important}.xl\:pb-2{padding-bottom:2px !important}.xl\:pl-2{padding-left:2px !important}.xl\:m-2{margin:2px !important}.xl\:mx-2{margin-left:2px !important;margin-right:2px !important}.xl\:my-2{margin-top:2px !important;margin-bottom:2px !important}.xl\:mt-2{margin-top:2px !important}.xl\:mr-2{margin-right:2px !important}.xl\:mb-2{margin-bottom:2px !important}.xl\:ml-2{margin-left:2px !important}.xl\:p-3{padding:3px !important}.xl\:px-3{padding-left:3px !important;padding-right:3px !important}.xl\:py-3{padding-top:3px !important;padding-bottom:3px !important}.xl\:pt-3{padding-top:3px !important}.xl\:pr-3{padding-right:3px !important}.xl\:pb-3{padding-bottom:3px !important}.xl\:pl-3{padding-left:3px !important}.xl\:m-3{margin:3px !important}.xl\:mx-3{margin-left:3px !important;margin-right:3px !important}.xl\:my-3{margin-top:3px !important;margin-bottom:3px !important}.xl\:mt-3{margin-top:3px !important}.xl\:mr-3{margin-right:3px !important}.xl\:mb-3{margin-bottom:3px !important}.xl\:ml-3{margin-left:3px !important}.xl\:p-4{padding:4px !important}.xl\:px-4{padding-left:4px !important;padding-right:4px !important}.xl\:py-4{padding-top:4px !important;padding-bottom:4px !important}.xl\:pt-4{padding-top:4px !important}.xl\:pr-4{padding-right:4px !important}.xl\:pb-4{padding-bottom:4px !important}.xl\:pl-4{padding-left:4px !important}.xl\:m-4{margin:4px !important}.xl\:mx-4{margin-left:4px !important;margin-right:4px !important}.xl\:my-4{margin-top:4px !important;margin-bottom:4px !important}.xl\:mt-4{margin-top:4px !important}.xl\:mr-4{margin-right:4px !important}.xl\:mb-4{margin-bottom:4px !important}.xl\:ml-4{margin-left:4px !important}.xl\:p-5{padding:5px !important}.xl\:px-5{padding-left:5px !important;padding-right:5px !important}.xl\:py-5{padding-top:5px !important;padding-bottom:5px !important}.xl\:pt-5{padding-top:5px !important}.xl\:pr-5{padding-right:5px !important}.xl\:pb-5{padding-bottom:5px !important}.xl\:pl-5{padding-left:5px !important}.xl\:m-5{margin:5px !important}.xl\:mx-5{margin-left:5px !important;margin-right:5px !important}.xl\:my-5{margin-top:5px !important;margin-bottom:5px !important}.xl\:mt-5{margin-top:5px !important}.xl\:mr-5{margin-right:5px !important}.xl\:mb-5{margin-bottom:5px !important}.xl\:ml-5{margin-left:5px !important}.xl\:p-6{padding:6px !important}.xl\:px-6{padding-left:6px !important;padding-right:6px !important}.xl\:py-6{padding-top:6px !important;padding-bottom:6px !important}.xl\:pt-6{padding-top:6px !important}.xl\:pr-6{padding-right:6px !important}.xl\:pb-6{padding-bottom:6px !important}.xl\:pl-6{padding-left:6px !important}.xl\:m-6{margin:6px !important}.xl\:mx-6{margin-left:6px !important;margin-right:6px !important}.xl\:my-6{margin-top:6px !important;margin-bottom:6px !important}.xl\:mt-6{margin-top:6px !important}.xl\:mr-6{margin-right:6px !important}.xl\:mb-6{margin-bottom:6px !important}.xl\:ml-6{margin-left:6px !important}.xl\:p-7{padding:7px !important}.xl\:px-7{padding-left:7px !important;padding-right:7px !important}.xl\:py-7{padding-top:7px !important;padding-bottom:7px !important}.xl\:pt-7{padding-top:7px !important}.xl\:pr-7{padding-right:7px !important}.xl\:pb-7{padding-bottom:7px !important}.xl\:pl-7{padding-left:7px !important}.xl\:m-7{margin:7px !important}.xl\:mx-7{margin-left:7px !important;margin-right:7px !important}.xl\:my-7{margin-top:7px !important;margin-bottom:7px !important}.xl\:mt-7{margin-top:7px !important}.xl\:mr-7{margin-right:7px !important}.xl\:mb-7{margin-bottom:7px !important}.xl\:ml-7{margin-left:7px !important}.xl\:p-8{padding:8px !important}.xl\:px-8{padding-left:8px !important;padding-right:8px !important}.xl\:py-8{padding-top:8px !important;padding-bottom:8px !important}.xl\:pt-8{padding-top:8px !important}.xl\:pr-8{padding-right:8px !important}.xl\:pb-8{padding-bottom:8px !important}.xl\:pl-8{padding-left:8px !important}.xl\:m-8{margin:8px !important}.xl\:mx-8{margin-left:8px !important;margin-right:8px !important}.xl\:my-8{margin-top:8px !important;margin-bottom:8px !important}.xl\:mt-8{margin-top:8px !important}.xl\:mr-8{margin-right:8px !important}.xl\:mb-8{margin-bottom:8px !important}.xl\:ml-8{margin-left:8px !important}.xl\:p-9{padding:9px !important}.xl\:px-9{padding-left:9px !important;padding-right:9px !important}.xl\:py-9{padding-top:9px !important;padding-bottom:9px !important}.xl\:pt-9{padding-top:9px !important}.xl\:pr-9{padding-right:9px !important}.xl\:pb-9{padding-bottom:9px !important}.xl\:pl-9{padding-left:9px !important}.xl\:m-9{margin:9px !important}.xl\:mx-9{margin-left:9px !important;margin-right:9px !important}.xl\:my-9{margin-top:9px !important;margin-bottom:9px !important}.xl\:mt-9{margin-top:9px !important}.xl\:mr-9{margin-right:9px !important}.xl\:mb-9{margin-bottom:9px !important}.xl\:ml-9{margin-left:9px !important}.xl\:p-10{padding:10px !important}.xl\:px-10{padding-left:10px !important;padding-right:10px !important}.xl\:py-10{padding-top:10px !important;padding-bottom:10px !important}.xl\:pt-10{padding-top:10px !important}.xl\:pr-10{padding-right:10px !important}.xl\:pb-10{padding-bottom:10px !important}.xl\:pl-10{padding-left:10px !important}.xl\:m-10{margin:10px !important}.xl\:mx-10{margin-left:10px !important;margin-right:10px !important}.xl\:my-10{margin-top:10px !important;margin-bottom:10px !important}.xl\:mt-10{margin-top:10px !important}.xl\:mr-10{margin-right:10px !important}.xl\:mb-10{margin-bottom:10px !important}.xl\:ml-10{margin-left:10px !important}.xl\:p-12{padding:12px !important}.xl\:px-12{padding-left:12px !important;padding-right:12px !important}.xl\:py-12{padding-top:12px !important;padding-bottom:12px !important}.xl\:pt-12{padding-top:12px !important}.xl\:pr-12{padding-right:12px !important}.xl\:pb-12{padding-bottom:12px !important}.xl\:pl-12{padding-left:12px !important}.xl\:m-12{margin:12px !important}.xl\:mx-12{margin-left:12px !important;margin-right:12px !important}.xl\:my-12{margin-top:12px !important;margin-bottom:12px !important}.xl\:mt-12{margin-top:12px !important}.xl\:mr-12{margin-right:12px !important}.xl\:mb-12{margin-bottom:12px !important}.xl\:ml-12{margin-left:12px !important}.xl\:p-14{padding:14px !important}.xl\:px-14{padding-left:14px !important;padding-right:14px !important}.xl\:py-14{padding-top:14px !important;padding-bottom:14px !important}.xl\:pt-14{padding-top:14px !important}.xl\:pr-14{padding-right:14px !important}.xl\:pb-14{padding-bottom:14px !important}.xl\:pl-14{padding-left:14px !important}.xl\:m-14{margin:14px !important}.xl\:mx-14{margin-left:14px !important;margin-right:14px !important}.xl\:my-14{margin-top:14px !important;margin-bottom:14px !important}.xl\:mt-14{margin-top:14px !important}.xl\:mr-14{margin-right:14px !important}.xl\:mb-14{margin-bottom:14px !important}.xl\:ml-14{margin-left:14px !important}.xl\:p-15{padding:15px !important}.xl\:px-15{padding-left:15px !important;padding-right:15px !important}.xl\:py-15{padding-top:15px !important;padding-bottom:15px !important}.xl\:pt-15{padding-top:15px !important}.xl\:pr-15{padding-right:15px !important}.xl\:pb-15{padding-bottom:15px !important}.xl\:pl-15{padding-left:15px !important}.xl\:m-15{margin:15px !important}.xl\:mx-15{margin-left:15px !important;margin-right:15px !important}.xl\:my-15{margin-top:15px !important;margin-bottom:15px !important}.xl\:mt-15{margin-top:15px !important}.xl\:mr-15{margin-right:15px !important}.xl\:mb-15{margin-bottom:15px !important}.xl\:ml-15{margin-left:15px !important}.xl\:p-16{padding:16px !important}.xl\:px-16{padding-left:16px !important;padding-right:16px !important}.xl\:py-16{padding-top:16px !important;padding-bottom:16px !important}.xl\:pt-16{padding-top:16px !important}.xl\:pr-16{padding-right:16px !important}.xl\:pb-16{padding-bottom:16px !important}.xl\:pl-16{padding-left:16px !important}.xl\:m-16{margin:16px !important}.xl\:mx-16{margin-left:16px !important;margin-right:16px !important}.xl\:my-16{margin-top:16px !important;margin-bottom:16px !important}.xl\:mt-16{margin-top:16px !important}.xl\:mr-16{margin-right:16px !important}.xl\:mb-16{margin-bottom:16px !important}.xl\:ml-16{margin-left:16px !important}.xl\:p-18{padding:18px !important}.xl\:px-18{padding-left:18px !important;padding-right:18px !important}.xl\:py-18{padding-top:18px !important;padding-bottom:18px !important}.xl\:pt-18{padding-top:18px !important}.xl\:pr-18{padding-right:18px !important}.xl\:pb-18{padding-bottom:18px !important}.xl\:pl-18{padding-left:18px !important}.xl\:m-18{margin:18px !important}.xl\:mx-18{margin-left:18px !important;margin-right:18px !important}.xl\:my-18{margin-top:18px !important;margin-bottom:18px !important}.xl\:mt-18{margin-top:18px !important}.xl\:mr-18{margin-right:18px !important}.xl\:mb-18{margin-bottom:18px !important}.xl\:ml-18{margin-left:18px !important}.xl\:p-20{padding:20px !important}.xl\:px-20{padding-left:20px !important;padding-right:20px !important}.xl\:py-20{padding-top:20px !important;padding-bottom:20px !important}.xl\:pt-20{padding-top:20px !important}.xl\:pr-20{padding-right:20px !important}.xl\:pb-20{padding-bottom:20px !important}.xl\:pl-20{padding-left:20px !important}.xl\:m-20{margin:20px !important}.xl\:mx-20{margin-left:20px !important;margin-right:20px !important}.xl\:my-20{margin-top:20px !important;margin-bottom:20px !important}.xl\:mt-20{margin-top:20px !important}.xl\:mr-20{margin-right:20px !important}.xl\:mb-20{margin-bottom:20px !important}.xl\:ml-20{margin-left:20px !important}.xl\:p-25{padding:25px !important}.xl\:px-25{padding-left:25px !important;padding-right:25px !important}.xl\:py-25{padding-top:25px !important;padding-bottom:25px !important}.xl\:pt-25{padding-top:25px !important}.xl\:pr-25{padding-right:25px !important}.xl\:pb-25{padding-bottom:25px !important}.xl\:pl-25{padding-left:25px !important}.xl\:m-25{margin:25px !important}.xl\:mx-25{margin-left:25px !important;margin-right:25px !important}.xl\:my-25{margin-top:25px !important;margin-bottom:25px !important}.xl\:mt-25{margin-top:25px !important}.xl\:mr-25{margin-right:25px !important}.xl\:mb-25{margin-bottom:25px !important}.xl\:ml-25{margin-left:25px !important}.xl\:p-30{padding:30px !important}.xl\:px-30{padding-left:30px !important;padding-right:30px !important}.xl\:py-30{padding-top:30px !important;padding-bottom:30px !important}.xl\:pt-30{padding-top:30px !important}.xl\:pr-30{padding-right:30px !important}.xl\:pb-30{padding-bottom:30px !important}.xl\:pl-30{padding-left:30px !important}.xl\:m-30{margin:30px !important}.xl\:mx-30{margin-left:30px !important;margin-right:30px !important}.xl\:my-30{margin-top:30px !important;margin-bottom:30px !important}.xl\:mt-30{margin-top:30px !important}.xl\:mr-30{margin-right:30px !important}.xl\:mb-30{margin-bottom:30px !important}.xl\:ml-30{margin-left:30px !important}.xl\:p-35{padding:35px !important}.xl\:px-35{padding-left:35px !important;padding-right:35px !important}.xl\:py-35{padding-top:35px !important;padding-bottom:35px !important}.xl\:pt-35{padding-top:35px !important}.xl\:pr-35{padding-right:35px !important}.xl\:pb-35{padding-bottom:35px !important}.xl\:pl-35{padding-left:35px !important}.xl\:m-35{margin:35px !important}.xl\:mx-35{margin-left:35px !important;margin-right:35px !important}.xl\:my-35{margin-top:35px !important;margin-bottom:35px !important}.xl\:mt-35{margin-top:35px !important}.xl\:mr-35{margin-right:35px !important}.xl\:mb-35{margin-bottom:35px !important}.xl\:ml-35{margin-left:35px !important}.xl\:p-40{padding:40px !important}.xl\:px-40{padding-left:40px !important;padding-right:40px !important}.xl\:py-40{padding-top:40px !important;padding-bottom:40px !important}.xl\:pt-40{padding-top:40px !important}.xl\:pr-40{padding-right:40px !important}.xl\:pb-40{padding-bottom:40px !important}.xl\:pl-40{padding-left:40px !important}.xl\:m-40{margin:40px !important}.xl\:mx-40{margin-left:40px !important;margin-right:40px !important}.xl\:my-40{margin-top:40px !important;margin-bottom:40px !important}.xl\:mt-40{margin-top:40px !important}.xl\:mr-40{margin-right:40px !important}.xl\:mb-40{margin-bottom:40px !important}.xl\:ml-40{margin-left:40px !important}.xl\:p-45{padding:45px !important}.xl\:px-45{padding-left:45px !important;padding-right:45px !important}.xl\:py-45{padding-top:45px !important;padding-bottom:45px !important}.xl\:pt-45{padding-top:45px !important}.xl\:pr-45{padding-right:45px !important}.xl\:pb-45{padding-bottom:45px !important}.xl\:pl-45{padding-left:45px !important}.xl\:m-45{margin:45px !important}.xl\:mx-45{margin-left:45px !important;margin-right:45px !important}.xl\:my-45{margin-top:45px !important;margin-bottom:45px !important}.xl\:mt-45{margin-top:45px !important}.xl\:mr-45{margin-right:45px !important}.xl\:mb-45{margin-bottom:45px !important}.xl\:ml-45{margin-left:45px !important}.xl\:p-50{padding:50px !important}.xl\:px-50{padding-left:50px !important;padding-right:50px !important}.xl\:py-50{padding-top:50px !important;padding-bottom:50px !important}.xl\:pt-50{padding-top:50px !important}.xl\:pr-50{padding-right:50px !important}.xl\:pb-50{padding-bottom:50px !important}.xl\:pl-50{padding-left:50px !important}.xl\:m-50{margin:50px !important}.xl\:mx-50{margin-left:50px !important;margin-right:50px !important}.xl\:my-50{margin-top:50px !important;margin-bottom:50px !important}.xl\:mt-50{margin-top:50px !important}.xl\:mr-50{margin-right:50px !important}.xl\:mb-50{margin-bottom:50px !important}.xl\:ml-50{margin-left:50px !important}.xl\:p-55{padding:55px !important}.xl\:px-55{padding-left:55px !important;padding-right:55px !important}.xl\:py-55{padding-top:55px !important;padding-bottom:55px !important}.xl\:pt-55{padding-top:55px !important}.xl\:pr-55{padding-right:55px !important}.xl\:pb-55{padding-bottom:55px !important}.xl\:pl-55{padding-left:55px !important}.xl\:m-55{margin:55px !important}.xl\:mx-55{margin-left:55px !important;margin-right:55px !important}.xl\:my-55{margin-top:55px !important;margin-bottom:55px !important}.xl\:mt-55{margin-top:55px !important}.xl\:mr-55{margin-right:55px !important}.xl\:mb-55{margin-bottom:55px !important}.xl\:ml-55{margin-left:55px !important}.xl\:p-60{padding:60px !important}.xl\:px-60{padding-left:60px !important;padding-right:60px !important}.xl\:py-60{padding-top:60px !important;padding-bottom:60px !important}.xl\:pt-60{padding-top:60px !important}.xl\:pr-60{padding-right:60px !important}.xl\:pb-60{padding-bottom:60px !important}.xl\:pl-60{padding-left:60px !important}.xl\:m-60{margin:60px !important}.xl\:mx-60{margin-left:60px !important;margin-right:60px !important}.xl\:my-60{margin-top:60px !important;margin-bottom:60px !important}.xl\:mt-60{margin-top:60px !important}.xl\:mr-60{margin-right:60px !important}.xl\:mb-60{margin-bottom:60px !important}.xl\:ml-60{margin-left:60px !important}.xl\:p-65{padding:65px !important}.xl\:px-65{padding-left:65px !important;padding-right:65px !important}.xl\:py-65{padding-top:65px !important;padding-bottom:65px !important}.xl\:pt-65{padding-top:65px !important}.xl\:pr-65{padding-right:65px !important}.xl\:pb-65{padding-bottom:65px !important}.xl\:pl-65{padding-left:65px !important}.xl\:m-65{margin:65px !important}.xl\:mx-65{margin-left:65px !important;margin-right:65px !important}.xl\:my-65{margin-top:65px !important;margin-bottom:65px !important}.xl\:mt-65{margin-top:65px !important}.xl\:mr-65{margin-right:65px !important}.xl\:mb-65{margin-bottom:65px !important}.xl\:ml-65{margin-left:65px !important}.xl\:p-70{padding:70px !important}.xl\:px-70{padding-left:70px !important;padding-right:70px !important}.xl\:py-70{padding-top:70px !important;padding-bottom:70px !important}.xl\:pt-70{padding-top:70px !important}.xl\:pr-70{padding-right:70px !important}.xl\:pb-70{padding-bottom:70px !important}.xl\:pl-70{padding-left:70px !important}.xl\:m-70{margin:70px !important}.xl\:mx-70{margin-left:70px !important;margin-right:70px !important}.xl\:my-70{margin-top:70px !important;margin-bottom:70px !important}.xl\:mt-70{margin-top:70px !important}.xl\:mr-70{margin-right:70px !important}.xl\:mb-70{margin-bottom:70px !important}.xl\:ml-70{margin-left:70px !important}.xl\:p-75{padding:75px !important}.xl\:px-75{padding-left:75px !important;padding-right:75px !important}.xl\:py-75{padding-top:75px !important;padding-bottom:75px !important}.xl\:pt-75{padding-top:75px !important}.xl\:pr-75{padding-right:75px !important}.xl\:pb-75{padding-bottom:75px !important}.xl\:pl-75{padding-left:75px !important}.xl\:m-75{margin:75px !important}.xl\:mx-75{margin-left:75px !important;margin-right:75px !important}.xl\:my-75{margin-top:75px !important;margin-bottom:75px !important}.xl\:mt-75{margin-top:75px !important}.xl\:mr-75{margin-right:75px !important}.xl\:mb-75{margin-bottom:75px !important}.xl\:ml-75{margin-left:75px !important}.xl\:p-80{padding:80px !important}.xl\:px-80{padding-left:80px !important;padding-right:80px !important}.xl\:py-80{padding-top:80px !important;padding-bottom:80px !important}.xl\:pt-80{padding-top:80px !important}.xl\:pr-80{padding-right:80px !important}.xl\:pb-80{padding-bottom:80px !important}.xl\:pl-80{padding-left:80px !important}.xl\:m-80{margin:80px !important}.xl\:mx-80{margin-left:80px !important;margin-right:80px !important}.xl\:my-80{margin-top:80px !important;margin-bottom:80px !important}.xl\:mt-80{margin-top:80px !important}.xl\:mr-80{margin-right:80px !important}.xl\:mb-80{margin-bottom:80px !important}.xl\:ml-80{margin-left:80px !important}.xl\:p-85{padding:85px !important}.xl\:px-85{padding-left:85px !important;padding-right:85px !important}.xl\:py-85{padding-top:85px !important;padding-bottom:85px !important}.xl\:pt-85{padding-top:85px !important}.xl\:pr-85{padding-right:85px !important}.xl\:pb-85{padding-bottom:85px !important}.xl\:pl-85{padding-left:85px !important}.xl\:m-85{margin:85px !important}.xl\:mx-85{margin-left:85px !important;margin-right:85px !important}.xl\:my-85{margin-top:85px !important;margin-bottom:85px !important}.xl\:mt-85{margin-top:85px !important}.xl\:mr-85{margin-right:85px !important}.xl\:mb-85{margin-bottom:85px !important}.xl\:ml-85{margin-left:85px !important}.xl\:p-90{padding:90px !important}.xl\:px-90{padding-left:90px !important;padding-right:90px !important}.xl\:py-90{padding-top:90px !important;padding-bottom:90px !important}.xl\:pt-90{padding-top:90px !important}.xl\:pr-90{padding-right:90px !important}.xl\:pb-90{padding-bottom:90px !important}.xl\:pl-90{padding-left:90px !important}.xl\:m-90{margin:90px !important}.xl\:mx-90{margin-left:90px !important;margin-right:90px !important}.xl\:my-90{margin-top:90px !important;margin-bottom:90px !important}.xl\:mt-90{margin-top:90px !important}.xl\:mr-90{margin-right:90px !important}.xl\:mb-90{margin-bottom:90px !important}.xl\:ml-90{margin-left:90px !important}.xl\:p-95{padding:95px !important}.xl\:px-95{padding-left:95px !important;padding-right:95px !important}.xl\:py-95{padding-top:95px !important;padding-bottom:95px !important}.xl\:pt-95{padding-top:95px !important}.xl\:pr-95{padding-right:95px !important}.xl\:pb-95{padding-bottom:95px !important}.xl\:pl-95{padding-left:95px !important}.xl\:m-95{margin:95px !important}.xl\:mx-95{margin-left:95px !important;margin-right:95px !important}.xl\:my-95{margin-top:95px !important;margin-bottom:95px !important}.xl\:mt-95{margin-top:95px !important}.xl\:mr-95{margin-right:95px !important}.xl\:mb-95{margin-bottom:95px !important}.xl\:ml-95{margin-left:95px !important}.xl\:p-100{padding:100px !important}.xl\:px-100{padding-left:100px !important;padding-right:100px !important}.xl\:py-100{padding-top:100px !important;padding-bottom:100px !important}.xl\:pt-100{padding-top:100px !important}.xl\:pr-100{padding-right:100px !important}.xl\:pb-100{padding-bottom:100px !important}.xl\:pl-100{padding-left:100px !important}.xl\:m-100{margin:100px !important}.xl\:mx-100{margin-left:100px !important;margin-right:100px !important}.xl\:my-100{margin-top:100px !important;margin-bottom:100px !important}.xl\:mt-100{margin-top:100px !important}.xl\:mr-100{margin-right:100px !important}.xl\:mb-100{margin-bottom:100px !important}.xl\:ml-100{margin-left:100px !important}}@media(min-width: 1536px){.xxl\:p-0{padding:0 !important}.xxl\:px-0{padding-left:0 !important;padding-right:0 !important}.xxl\:py-0{padding-top:0 !important;padding-bottom:0 !important}.xxl\:pt-0{padding-top:0 !important}.xxl\:pr-0{padding-right:0 !important}.xxl\:pb-0{padding-bottom:0 !important}.xxl\:pl-0{padding-left:0 !important}.xxl\:m-0{margin:0 !important}.xxl\:mx-0{margin-left:0 !important;margin-right:0 !important}.xxl\:my-0{margin-top:0 !important;margin-bottom:0 !important}.xxl\:mt-0{margin-top:0 !important}.xxl\:mr-0{margin-right:0 !important}.xxl\:mb-0{margin-bottom:0 !important}.xxl\:ml-0{margin-left:0 !important}.xxl\:p-1{padding:1px !important}.xxl\:px-1{padding-left:1px !important;padding-right:1px !important}.xxl\:py-1{padding-top:1px !important;padding-bottom:1px !important}.xxl\:pt-1{padding-top:1px !important}.xxl\:pr-1{padding-right:1px !important}.xxl\:pb-1{padding-bottom:1px !important}.xxl\:pl-1{padding-left:1px !important}.xxl\:m-1{margin:1px !important}.xxl\:mx-1{margin-left:1px !important;margin-right:1px !important}.xxl\:my-1{margin-top:1px !important;margin-bottom:1px !important}.xxl\:mt-1{margin-top:1px !important}.xxl\:mr-1{margin-right:1px !important}.xxl\:mb-1{margin-bottom:1px !important}.xxl\:ml-1{margin-left:1px !important}.xxl\:p-2{padding:2px !important}.xxl\:px-2{padding-left:2px !important;padding-right:2px !important}.xxl\:py-2{padding-top:2px !important;padding-bottom:2px !important}.xxl\:pt-2{padding-top:2px !important}.xxl\:pr-2{padding-right:2px !important}.xxl\:pb-2{padding-bottom:2px !important}.xxl\:pl-2{padding-left:2px !important}.xxl\:m-2{margin:2px !important}.xxl\:mx-2{margin-left:2px !important;margin-right:2px !important}.xxl\:my-2{margin-top:2px !important;margin-bottom:2px !important}.xxl\:mt-2{margin-top:2px !important}.xxl\:mr-2{margin-right:2px !important}.xxl\:mb-2{margin-bottom:2px !important}.xxl\:ml-2{margin-left:2px !important}.xxl\:p-3{padding:3px !important}.xxl\:px-3{padding-left:3px !important;padding-right:3px !important}.xxl\:py-3{padding-top:3px !important;padding-bottom:3px !important}.xxl\:pt-3{padding-top:3px !important}.xxl\:pr-3{padding-right:3px !important}.xxl\:pb-3{padding-bottom:3px !important}.xxl\:pl-3{padding-left:3px !important}.xxl\:m-3{margin:3px !important}.xxl\:mx-3{margin-left:3px !important;margin-right:3px !important}.xxl\:my-3{margin-top:3px !important;margin-bottom:3px !important}.xxl\:mt-3{margin-top:3px !important}.xxl\:mr-3{margin-right:3px !important}.xxl\:mb-3{margin-bottom:3px !important}.xxl\:ml-3{margin-left:3px !important}.xxl\:p-4{padding:4px !important}.xxl\:px-4{padding-left:4px !important;padding-right:4px !important}.xxl\:py-4{padding-top:4px !important;padding-bottom:4px !important}.xxl\:pt-4{padding-top:4px !important}.xxl\:pr-4{padding-right:4px !important}.xxl\:pb-4{padding-bottom:4px !important}.xxl\:pl-4{padding-left:4px !important}.xxl\:m-4{margin:4px !important}.xxl\:mx-4{margin-left:4px !important;margin-right:4px !important}.xxl\:my-4{margin-top:4px !important;margin-bottom:4px !important}.xxl\:mt-4{margin-top:4px !important}.xxl\:mr-4{margin-right:4px !important}.xxl\:mb-4{margin-bottom:4px !important}.xxl\:ml-4{margin-left:4px !important}.xxl\:p-5{padding:5px !important}.xxl\:px-5{padding-left:5px !important;padding-right:5px !important}.xxl\:py-5{padding-top:5px !important;padding-bottom:5px !important}.xxl\:pt-5{padding-top:5px !important}.xxl\:pr-5{padding-right:5px !important}.xxl\:pb-5{padding-bottom:5px !important}.xxl\:pl-5{padding-left:5px !important}.xxl\:m-5{margin:5px !important}.xxl\:mx-5{margin-left:5px !important;margin-right:5px !important}.xxl\:my-5{margin-top:5px !important;margin-bottom:5px !important}.xxl\:mt-5{margin-top:5px !important}.xxl\:mr-5{margin-right:5px !important}.xxl\:mb-5{margin-bottom:5px !important}.xxl\:ml-5{margin-left:5px !important}.xxl\:p-6{padding:6px !important}.xxl\:px-6{padding-left:6px !important;padding-right:6px !important}.xxl\:py-6{padding-top:6px !important;padding-bottom:6px !important}.xxl\:pt-6{padding-top:6px !important}.xxl\:pr-6{padding-right:6px !important}.xxl\:pb-6{padding-bottom:6px !important}.xxl\:pl-6{padding-left:6px !important}.xxl\:m-6{margin:6px !important}.xxl\:mx-6{margin-left:6px !important;margin-right:6px !important}.xxl\:my-6{margin-top:6px !important;margin-bottom:6px !important}.xxl\:mt-6{margin-top:6px !important}.xxl\:mr-6{margin-right:6px !important}.xxl\:mb-6{margin-bottom:6px !important}.xxl\:ml-6{margin-left:6px !important}.xxl\:p-7{padding:7px !important}.xxl\:px-7{padding-left:7px !important;padding-right:7px !important}.xxl\:py-7{padding-top:7px !important;padding-bottom:7px !important}.xxl\:pt-7{padding-top:7px !important}.xxl\:pr-7{padding-right:7px !important}.xxl\:pb-7{padding-bottom:7px !important}.xxl\:pl-7{padding-left:7px !important}.xxl\:m-7{margin:7px !important}.xxl\:mx-7{margin-left:7px !important;margin-right:7px !important}.xxl\:my-7{margin-top:7px !important;margin-bottom:7px !important}.xxl\:mt-7{margin-top:7px !important}.xxl\:mr-7{margin-right:7px !important}.xxl\:mb-7{margin-bottom:7px !important}.xxl\:ml-7{margin-left:7px !important}.xxl\:p-8{padding:8px !important}.xxl\:px-8{padding-left:8px !important;padding-right:8px !important}.xxl\:py-8{padding-top:8px !important;padding-bottom:8px !important}.xxl\:pt-8{padding-top:8px !important}.xxl\:pr-8{padding-right:8px !important}.xxl\:pb-8{padding-bottom:8px !important}.xxl\:pl-8{padding-left:8px !important}.xxl\:m-8{margin:8px !important}.xxl\:mx-8{margin-left:8px !important;margin-right:8px !important}.xxl\:my-8{margin-top:8px !important;margin-bottom:8px !important}.xxl\:mt-8{margin-top:8px !important}.xxl\:mr-8{margin-right:8px !important}.xxl\:mb-8{margin-bottom:8px !important}.xxl\:ml-8{margin-left:8px !important}.xxl\:p-9{padding:9px !important}.xxl\:px-9{padding-left:9px !important;padding-right:9px !important}.xxl\:py-9{padding-top:9px !important;padding-bottom:9px !important}.xxl\:pt-9{padding-top:9px !important}.xxl\:pr-9{padding-right:9px !important}.xxl\:pb-9{padding-bottom:9px !important}.xxl\:pl-9{padding-left:9px !important}.xxl\:m-9{margin:9px !important}.xxl\:mx-9{margin-left:9px !important;margin-right:9px !important}.xxl\:my-9{margin-top:9px !important;margin-bottom:9px !important}.xxl\:mt-9{margin-top:9px !important}.xxl\:mr-9{margin-right:9px !important}.xxl\:mb-9{margin-bottom:9px !important}.xxl\:ml-9{margin-left:9px !important}.xxl\:p-10{padding:10px !important}.xxl\:px-10{padding-left:10px !important;padding-right:10px !important}.xxl\:py-10{padding-top:10px !important;padding-bottom:10px !important}.xxl\:pt-10{padding-top:10px !important}.xxl\:pr-10{padding-right:10px !important}.xxl\:pb-10{padding-bottom:10px !important}.xxl\:pl-10{padding-left:10px !important}.xxl\:m-10{margin:10px !important}.xxl\:mx-10{margin-left:10px !important;margin-right:10px !important}.xxl\:my-10{margin-top:10px !important;margin-bottom:10px !important}.xxl\:mt-10{margin-top:10px !important}.xxl\:mr-10{margin-right:10px !important}.xxl\:mb-10{margin-bottom:10px !important}.xxl\:ml-10{margin-left:10px !important}.xxl\:p-12{padding:12px !important}.xxl\:px-12{padding-left:12px !important;padding-right:12px !important}.xxl\:py-12{padding-top:12px !important;padding-bottom:12px !important}.xxl\:pt-12{padding-top:12px !important}.xxl\:pr-12{padding-right:12px !important}.xxl\:pb-12{padding-bottom:12px !important}.xxl\:pl-12{padding-left:12px !important}.xxl\:m-12{margin:12px !important}.xxl\:mx-12{margin-left:12px !important;margin-right:12px !important}.xxl\:my-12{margin-top:12px !important;margin-bottom:12px !important}.xxl\:mt-12{margin-top:12px !important}.xxl\:mr-12{margin-right:12px !important}.xxl\:mb-12{margin-bottom:12px !important}.xxl\:ml-12{margin-left:12px !important}.xxl\:p-14{padding:14px !important}.xxl\:px-14{padding-left:14px !important;padding-right:14px !important}.xxl\:py-14{padding-top:14px !important;padding-bottom:14px !important}.xxl\:pt-14{padding-top:14px !important}.xxl\:pr-14{padding-right:14px !important}.xxl\:pb-14{padding-bottom:14px !important}.xxl\:pl-14{padding-left:14px !important}.xxl\:m-14{margin:14px !important}.xxl\:mx-14{margin-left:14px !important;margin-right:14px !important}.xxl\:my-14{margin-top:14px !important;margin-bottom:14px !important}.xxl\:mt-14{margin-top:14px !important}.xxl\:mr-14{margin-right:14px !important}.xxl\:mb-14{margin-bottom:14px !important}.xxl\:ml-14{margin-left:14px !important}.xxl\:p-15{padding:15px !important}.xxl\:px-15{padding-left:15px !important;padding-right:15px !important}.xxl\:py-15{padding-top:15px !important;padding-bottom:15px !important}.xxl\:pt-15{padding-top:15px !important}.xxl\:pr-15{padding-right:15px !important}.xxl\:pb-15{padding-bottom:15px !important}.xxl\:pl-15{padding-left:15px !important}.xxl\:m-15{margin:15px !important}.xxl\:mx-15{margin-left:15px !important;margin-right:15px !important}.xxl\:my-15{margin-top:15px !important;margin-bottom:15px !important}.xxl\:mt-15{margin-top:15px !important}.xxl\:mr-15{margin-right:15px !important}.xxl\:mb-15{margin-bottom:15px !important}.xxl\:ml-15{margin-left:15px !important}.xxl\:p-16{padding:16px !important}.xxl\:px-16{padding-left:16px !important;padding-right:16px !important}.xxl\:py-16{padding-top:16px !important;padding-bottom:16px !important}.xxl\:pt-16{padding-top:16px !important}.xxl\:pr-16{padding-right:16px !important}.xxl\:pb-16{padding-bottom:16px !important}.xxl\:pl-16{padding-left:16px !important}.xxl\:m-16{margin:16px !important}.xxl\:mx-16{margin-left:16px !important;margin-right:16px !important}.xxl\:my-16{margin-top:16px !important;margin-bottom:16px !important}.xxl\:mt-16{margin-top:16px !important}.xxl\:mr-16{margin-right:16px !important}.xxl\:mb-16{margin-bottom:16px !important}.xxl\:ml-16{margin-left:16px !important}.xxl\:p-18{padding:18px !important}.xxl\:px-18{padding-left:18px !important;padding-right:18px !important}.xxl\:py-18{padding-top:18px !important;padding-bottom:18px !important}.xxl\:pt-18{padding-top:18px !important}.xxl\:pr-18{padding-right:18px !important}.xxl\:pb-18{padding-bottom:18px !important}.xxl\:pl-18{padding-left:18px !important}.xxl\:m-18{margin:18px !important}.xxl\:mx-18{margin-left:18px !important;margin-right:18px !important}.xxl\:my-18{margin-top:18px !important;margin-bottom:18px !important}.xxl\:mt-18{margin-top:18px !important}.xxl\:mr-18{margin-right:18px !important}.xxl\:mb-18{margin-bottom:18px !important}.xxl\:ml-18{margin-left:18px !important}.xxl\:p-20{padding:20px !important}.xxl\:px-20{padding-left:20px !important;padding-right:20px !important}.xxl\:py-20{padding-top:20px !important;padding-bottom:20px !important}.xxl\:pt-20{padding-top:20px !important}.xxl\:pr-20{padding-right:20px !important}.xxl\:pb-20{padding-bottom:20px !important}.xxl\:pl-20{padding-left:20px !important}.xxl\:m-20{margin:20px !important}.xxl\:mx-20{margin-left:20px !important;margin-right:20px !important}.xxl\:my-20{margin-top:20px !important;margin-bottom:20px !important}.xxl\:mt-20{margin-top:20px !important}.xxl\:mr-20{margin-right:20px !important}.xxl\:mb-20{margin-bottom:20px !important}.xxl\:ml-20{margin-left:20px !important}.xxl\:p-25{padding:25px !important}.xxl\:px-25{padding-left:25px !important;padding-right:25px !important}.xxl\:py-25{padding-top:25px !important;padding-bottom:25px !important}.xxl\:pt-25{padding-top:25px !important}.xxl\:pr-25{padding-right:25px !important}.xxl\:pb-25{padding-bottom:25px !important}.xxl\:pl-25{padding-left:25px !important}.xxl\:m-25{margin:25px !important}.xxl\:mx-25{margin-left:25px !important;margin-right:25px !important}.xxl\:my-25{margin-top:25px !important;margin-bottom:25px !important}.xxl\:mt-25{margin-top:25px !important}.xxl\:mr-25{margin-right:25px !important}.xxl\:mb-25{margin-bottom:25px !important}.xxl\:ml-25{margin-left:25px !important}.xxl\:p-30{padding:30px !important}.xxl\:px-30{padding-left:30px !important;padding-right:30px !important}.xxl\:py-30{padding-top:30px !important;padding-bottom:30px !important}.xxl\:pt-30{padding-top:30px !important}.xxl\:pr-30{padding-right:30px !important}.xxl\:pb-30{padding-bottom:30px !important}.xxl\:pl-30{padding-left:30px !important}.xxl\:m-30{margin:30px !important}.xxl\:mx-30{margin-left:30px !important;margin-right:30px !important}.xxl\:my-30{margin-top:30px !important;margin-bottom:30px !important}.xxl\:mt-30{margin-top:30px !important}.xxl\:mr-30{margin-right:30px !important}.xxl\:mb-30{margin-bottom:30px !important}.xxl\:ml-30{margin-left:30px !important}.xxl\:p-35{padding:35px !important}.xxl\:px-35{padding-left:35px !important;padding-right:35px !important}.xxl\:py-35{padding-top:35px !important;padding-bottom:35px !important}.xxl\:pt-35{padding-top:35px !important}.xxl\:pr-35{padding-right:35px !important}.xxl\:pb-35{padding-bottom:35px !important}.xxl\:pl-35{padding-left:35px !important}.xxl\:m-35{margin:35px !important}.xxl\:mx-35{margin-left:35px !important;margin-right:35px !important}.xxl\:my-35{margin-top:35px !important;margin-bottom:35px !important}.xxl\:mt-35{margin-top:35px !important}.xxl\:mr-35{margin-right:35px !important}.xxl\:mb-35{margin-bottom:35px !important}.xxl\:ml-35{margin-left:35px !important}.xxl\:p-40{padding:40px !important}.xxl\:px-40{padding-left:40px !important;padding-right:40px !important}.xxl\:py-40{padding-top:40px !important;padding-bottom:40px !important}.xxl\:pt-40{padding-top:40px !important}.xxl\:pr-40{padding-right:40px !important}.xxl\:pb-40{padding-bottom:40px !important}.xxl\:pl-40{padding-left:40px !important}.xxl\:m-40{margin:40px !important}.xxl\:mx-40{margin-left:40px !important;margin-right:40px !important}.xxl\:my-40{margin-top:40px !important;margin-bottom:40px !important}.xxl\:mt-40{margin-top:40px !important}.xxl\:mr-40{margin-right:40px !important}.xxl\:mb-40{margin-bottom:40px !important}.xxl\:ml-40{margin-left:40px !important}.xxl\:p-45{padding:45px !important}.xxl\:px-45{padding-left:45px !important;padding-right:45px !important}.xxl\:py-45{padding-top:45px !important;padding-bottom:45px !important}.xxl\:pt-45{padding-top:45px !important}.xxl\:pr-45{padding-right:45px !important}.xxl\:pb-45{padding-bottom:45px !important}.xxl\:pl-45{padding-left:45px !important}.xxl\:m-45{margin:45px !important}.xxl\:mx-45{margin-left:45px !important;margin-right:45px !important}.xxl\:my-45{margin-top:45px !important;margin-bottom:45px !important}.xxl\:mt-45{margin-top:45px !important}.xxl\:mr-45{margin-right:45px !important}.xxl\:mb-45{margin-bottom:45px !important}.xxl\:ml-45{margin-left:45px !important}.xxl\:p-50{padding:50px !important}.xxl\:px-50{padding-left:50px !important;padding-right:50px !important}.xxl\:py-50{padding-top:50px !important;padding-bottom:50px !important}.xxl\:pt-50{padding-top:50px !important}.xxl\:pr-50{padding-right:50px !important}.xxl\:pb-50{padding-bottom:50px !important}.xxl\:pl-50{padding-left:50px !important}.xxl\:m-50{margin:50px !important}.xxl\:mx-50{margin-left:50px !important;margin-right:50px !important}.xxl\:my-50{margin-top:50px !important;margin-bottom:50px !important}.xxl\:mt-50{margin-top:50px !important}.xxl\:mr-50{margin-right:50px !important}.xxl\:mb-50{margin-bottom:50px !important}.xxl\:ml-50{margin-left:50px !important}.xxl\:p-55{padding:55px !important}.xxl\:px-55{padding-left:55px !important;padding-right:55px !important}.xxl\:py-55{padding-top:55px !important;padding-bottom:55px !important}.xxl\:pt-55{padding-top:55px !important}.xxl\:pr-55{padding-right:55px !important}.xxl\:pb-55{padding-bottom:55px !important}.xxl\:pl-55{padding-left:55px !important}.xxl\:m-55{margin:55px !important}.xxl\:mx-55{margin-left:55px !important;margin-right:55px !important}.xxl\:my-55{margin-top:55px !important;margin-bottom:55px !important}.xxl\:mt-55{margin-top:55px !important}.xxl\:mr-55{margin-right:55px !important}.xxl\:mb-55{margin-bottom:55px !important}.xxl\:ml-55{margin-left:55px !important}.xxl\:p-60{padding:60px !important}.xxl\:px-60{padding-left:60px !important;padding-right:60px !important}.xxl\:py-60{padding-top:60px !important;padding-bottom:60px !important}.xxl\:pt-60{padding-top:60px !important}.xxl\:pr-60{padding-right:60px !important}.xxl\:pb-60{padding-bottom:60px !important}.xxl\:pl-60{padding-left:60px !important}.xxl\:m-60{margin:60px !important}.xxl\:mx-60{margin-left:60px !important;margin-right:60px !important}.xxl\:my-60{margin-top:60px !important;margin-bottom:60px !important}.xxl\:mt-60{margin-top:60px !important}.xxl\:mr-60{margin-right:60px !important}.xxl\:mb-60{margin-bottom:60px !important}.xxl\:ml-60{margin-left:60px !important}.xxl\:p-65{padding:65px !important}.xxl\:px-65{padding-left:65px !important;padding-right:65px !important}.xxl\:py-65{padding-top:65px !important;padding-bottom:65px !important}.xxl\:pt-65{padding-top:65px !important}.xxl\:pr-65{padding-right:65px !important}.xxl\:pb-65{padding-bottom:65px !important}.xxl\:pl-65{padding-left:65px !important}.xxl\:m-65{margin:65px !important}.xxl\:mx-65{margin-left:65px !important;margin-right:65px !important}.xxl\:my-65{margin-top:65px !important;margin-bottom:65px !important}.xxl\:mt-65{margin-top:65px !important}.xxl\:mr-65{margin-right:65px !important}.xxl\:mb-65{margin-bottom:65px !important}.xxl\:ml-65{margin-left:65px !important}.xxl\:p-70{padding:70px !important}.xxl\:px-70{padding-left:70px !important;padding-right:70px !important}.xxl\:py-70{padding-top:70px !important;padding-bottom:70px !important}.xxl\:pt-70{padding-top:70px !important}.xxl\:pr-70{padding-right:70px !important}.xxl\:pb-70{padding-bottom:70px !important}.xxl\:pl-70{padding-left:70px !important}.xxl\:m-70{margin:70px !important}.xxl\:mx-70{margin-left:70px !important;margin-right:70px !important}.xxl\:my-70{margin-top:70px !important;margin-bottom:70px !important}.xxl\:mt-70{margin-top:70px !important}.xxl\:mr-70{margin-right:70px !important}.xxl\:mb-70{margin-bottom:70px !important}.xxl\:ml-70{margin-left:70px !important}.xxl\:p-75{padding:75px !important}.xxl\:px-75{padding-left:75px !important;padding-right:75px !important}.xxl\:py-75{padding-top:75px !important;padding-bottom:75px !important}.xxl\:pt-75{padding-top:75px !important}.xxl\:pr-75{padding-right:75px !important}.xxl\:pb-75{padding-bottom:75px !important}.xxl\:pl-75{padding-left:75px !important}.xxl\:m-75{margin:75px !important}.xxl\:mx-75{margin-left:75px !important;margin-right:75px !important}.xxl\:my-75{margin-top:75px !important;margin-bottom:75px !important}.xxl\:mt-75{margin-top:75px !important}.xxl\:mr-75{margin-right:75px !important}.xxl\:mb-75{margin-bottom:75px !important}.xxl\:ml-75{margin-left:75px !important}.xxl\:p-80{padding:80px !important}.xxl\:px-80{padding-left:80px !important;padding-right:80px !important}.xxl\:py-80{padding-top:80px !important;padding-bottom:80px !important}.xxl\:pt-80{padding-top:80px !important}.xxl\:pr-80{padding-right:80px !important}.xxl\:pb-80{padding-bottom:80px !important}.xxl\:pl-80{padding-left:80px !important}.xxl\:m-80{margin:80px !important}.xxl\:mx-80{margin-left:80px !important;margin-right:80px !important}.xxl\:my-80{margin-top:80px !important;margin-bottom:80px !important}.xxl\:mt-80{margin-top:80px !important}.xxl\:mr-80{margin-right:80px !important}.xxl\:mb-80{margin-bottom:80px !important}.xxl\:ml-80{margin-left:80px !important}.xxl\:p-85{padding:85px !important}.xxl\:px-85{padding-left:85px !important;padding-right:85px !important}.xxl\:py-85{padding-top:85px !important;padding-bottom:85px !important}.xxl\:pt-85{padding-top:85px !important}.xxl\:pr-85{padding-right:85px !important}.xxl\:pb-85{padding-bottom:85px !important}.xxl\:pl-85{padding-left:85px !important}.xxl\:m-85{margin:85px !important}.xxl\:mx-85{margin-left:85px !important;margin-right:85px !important}.xxl\:my-85{margin-top:85px !important;margin-bottom:85px !important}.xxl\:mt-85{margin-top:85px !important}.xxl\:mr-85{margin-right:85px !important}.xxl\:mb-85{margin-bottom:85px !important}.xxl\:ml-85{margin-left:85px !important}.xxl\:p-90{padding:90px !important}.xxl\:px-90{padding-left:90px !important;padding-right:90px !important}.xxl\:py-90{padding-top:90px !important;padding-bottom:90px !important}.xxl\:pt-90{padding-top:90px !important}.xxl\:pr-90{padding-right:90px !important}.xxl\:pb-90{padding-bottom:90px !important}.xxl\:pl-90{padding-left:90px !important}.xxl\:m-90{margin:90px !important}.xxl\:mx-90{margin-left:90px !important;margin-right:90px !important}.xxl\:my-90{margin-top:90px !important;margin-bottom:90px !important}.xxl\:mt-90{margin-top:90px !important}.xxl\:mr-90{margin-right:90px !important}.xxl\:mb-90{margin-bottom:90px !important}.xxl\:ml-90{margin-left:90px !important}.xxl\:p-95{padding:95px !important}.xxl\:px-95{padding-left:95px !important;padding-right:95px !important}.xxl\:py-95{padding-top:95px !important;padding-bottom:95px !important}.xxl\:pt-95{padding-top:95px !important}.xxl\:pr-95{padding-right:95px !important}.xxl\:pb-95{padding-bottom:95px !important}.xxl\:pl-95{padding-left:95px !important}.xxl\:m-95{margin:95px !important}.xxl\:mx-95{margin-left:95px !important;margin-right:95px !important}.xxl\:my-95{margin-top:95px !important;margin-bottom:95px !important}.xxl\:mt-95{margin-top:95px !important}.xxl\:mr-95{margin-right:95px !important}.xxl\:mb-95{margin-bottom:95px !important}.xxl\:ml-95{margin-left:95px !important}.xxl\:p-100{padding:100px !important}.xxl\:px-100{padding-left:100px !important;padding-right:100px !important}.xxl\:py-100{padding-top:100px !important;padding-bottom:100px !important}.xxl\:pt-100{padding-top:100px !important}.xxl\:pr-100{padding-right:100px !important}.xxl\:pb-100{padding-bottom:100px !important}.xxl\:pl-100{padding-left:100px !important}.xxl\:m-100{margin:100px !important}.xxl\:mx-100{margin-left:100px !important;margin-right:100px !important}.xxl\:my-100{margin-top:100px !important;margin-bottom:100px !important}.xxl\:mt-100{margin-top:100px !important}.xxl\:mr-100{margin-right:100px !important}.xxl\:mb-100{margin-bottom:100px !important}.xxl\:ml-100{margin-left:100px !important}}.mx-auto{margin-left:auto;margin-right:auto}.ml-auto{margin-left:auto}.mr-auto{margin-right:auto}.gap-auto{gap:auto}.gap-0{gap:0}.gap-x-0{column-gap:0}.gap-y-0{row-gap:0}.gap-1{gap:1px}.gap-x-1{column-gap:1px}.gap-y-1{row-gap:1px}.gap-2{gap:2px}.gap-x-2{column-gap:2px}.gap-y-2{row-gap:2px}.gap-3{gap:3px}.gap-x-3{column-gap:3px}.gap-y-3{row-gap:3px}.gap-4{gap:4px}.gap-x-4{column-gap:4px}.gap-y-4{row-gap:4px}.gap-5{gap:5px}.gap-x-5{column-gap:5px}.gap-y-5{row-gap:5px}.gap-6{gap:6px}.gap-x-6{column-gap:6px}.gap-y-6{row-gap:6px}.gap-7{gap:7px}.gap-x-7{column-gap:7px}.gap-y-7{row-gap:7px}.gap-8{gap:8px}.gap-x-8{column-gap:8px}.gap-y-8{row-gap:8px}.gap-9{gap:9px}.gap-x-9{column-gap:9px}.gap-y-9{row-gap:9px}.gap-10{gap:10px}.gap-x-10{column-gap:10px}.gap-y-10{row-gap:10px}.gap-12{gap:12px}.gap-x-12{column-gap:12px}.gap-y-12{row-gap:12px}.gap-14{gap:14px}.gap-x-14{column-gap:14px}.gap-y-14{row-gap:14px}.gap-15{gap:15px}.gap-x-15{column-gap:15px}.gap-y-15{row-gap:15px}.gap-16{gap:16px}.gap-x-16{column-gap:16px}.gap-y-16{row-gap:16px}.gap-18{gap:18px}.gap-x-18{column-gap:18px}.gap-y-18{row-gap:18px}.gap-20{gap:20px}.gap-x-20{column-gap:20px}.gap-y-20{row-gap:20px}.gap-25{gap:25px}.gap-x-25{column-gap:25px}.gap-y-25{row-gap:25px}.gap-30{gap:30px}.gap-x-30{column-gap:30px}.gap-y-30{row-gap:30px}.gap-35{gap:35px}.gap-x-35{column-gap:35px}.gap-y-35{row-gap:35px}.gap-40{gap:40px}.gap-x-40{column-gap:40px}.gap-y-40{row-gap:40px}.gap-45{gap:45px}.gap-x-45{column-gap:45px}.gap-y-45{row-gap:45px}.gap-50{gap:50px}.gap-x-50{column-gap:50px}.gap-y-50{row-gap:50px}.gap-55{gap:55px}.gap-x-55{column-gap:55px}.gap-y-55{row-gap:55px}.gap-60{gap:60px}.gap-x-60{column-gap:60px}.gap-y-60{row-gap:60px}.gap-65{gap:65px}.gap-x-65{column-gap:65px}.gap-y-65{row-gap:65px}.gap-70{gap:70px}.gap-x-70{column-gap:70px}.gap-y-70{row-gap:70px}.gap-75{gap:75px}.gap-x-75{column-gap:75px}.gap-y-75{row-gap:75px}.gap-80{gap:80px}.gap-x-80{column-gap:80px}.gap-y-80{row-gap:80px}.gap-85{gap:85px}.gap-x-85{column-gap:85px}.gap-y-85{row-gap:85px}.gap-90{gap:90px}.gap-x-90{column-gap:90px}.gap-y-90{row-gap:90px}.gap-95{gap:95px}.gap-x-95{column-gap:95px}.gap-y-95{row-gap:95px}.gap-100{gap:100px}.gap-x-100{column-gap:100px}.gap-y-100{row-gap:100px}.text-xs{font-size:.75rem}.text-sm{font-size:.875rem}.text-md{font-size:1rem}.text-lg{font-size:1.25rem}.text-xl{font-size:1.5rem}.text-2xl{font-size:1.75rem}.text-3xl{font-size:2rem}.text-4xl{font-size:2.5rem}.font-thin{font-weight:100}.font-extralight{font-weight:200}.font-light{font-weight:300}.font-normal{font-weight:400}.font-medium{font-weight:500}.font-semibold{font-weight:600}.font-bold{font-weight:700}.font-extrabold{font-weight:800}.font-black{font-weight:900}.leading-none{line-height:1}.leading-tight{line-height:1.25}.leading-snug{line-height:1.375}.leading-normal{line-height:1.5}.leading-relaxed{line-height:1.625}.leading-loose{line-height:2}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-justify{text-align:justify}.uppercase{text-transform:uppercase}.lowercase{text-transform:lowercase}.capitalize{text-transform:capitalize}.normal-case{text-transform:none}.italic{font-style:italic}.not-italic{font-style:normal}.underline{text-decoration:underline}.line-through{text-decoration:line-through}.no-underline{text-decoration:none}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}[data-tooltip][role~=tooltip]{position:relative}[data-tooltip][role~=tooltip]::before,[data-tooltip][role~=tooltip]::after{transform:translate3d(0, 0, 0);-webkit-backface-visibility:hidden;backface-visibility:hidden;will-change:transform;opacity:0;pointer-events:none;transition:all var(--microtip-transition-duration, 0.18s) var(--microtip-transition-easing, ease-in-out) var(--microtip-transition-delay, 0s);position:absolute;box-sizing:border-box;z-index:10;transform-origin:top}[data-tooltip][role~=tooltip]::before{background-size:100% auto !important;content:""}[data-tooltip][role~=tooltip]::after{background:var(--tooltip-bg);box-shadow:0 3px 7px var(--tooltip-shadow-color);border-radius:4px;color:#fff;content:attr(data-tooltip);font-size:var(--microtip-font-size, 13px);font-weight:var(--microtip-font-weight, normal);text-transform:var(--microtip-text-transform, none);padding:.5em 1em;white-space:nowrap;box-sizing:content-box}[data-tooltip][role~=tooltip]:hover::before,[data-tooltip][role~=tooltip]:hover::after,[data-tooltip][role~=tooltip]:focus::before,[data-tooltip][role~=tooltip]:focus::after{opacity:1;pointer-events:auto}[role~=tooltip][data-microtip-position|=top]::before{background:url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%280%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E) no-repeat;height:6px;width:18px;margin-bottom:5px}[role~=tooltip][data-microtip-position|=top]::after{margin-bottom:11px}[role~=tooltip][data-microtip-position|=top]::before{transform:translate3d(-50%, 0, 0);bottom:100%;left:50%}[role~=tooltip][data-microtip-position|=top]:hover::before{transform:translate3d(-50%, -5px, 0)}[role~=tooltip][data-microtip-position|=top]::after{transform:translate3d(-50%, 0, 0);bottom:100%;left:50%}[role~=tooltip][data-microtip-position=top]:hover::after{transform:translate3d(-50%, -5px, 0)}[role~=tooltip][data-microtip-position=top-left]::after{transform:translate3d(calc(-100% + 16px), 0, 0);bottom:100%}[role~=tooltip][data-microtip-position=top-left]:hover::after{transform:translate3d(calc(-100% + 16px), -5px, 0)}[role~=tooltip][data-microtip-position=top-right]::after{transform:translate3d(calc(0% - 16px), 0, 0);bottom:100%}[role~=tooltip][data-microtip-position=top-right]:hover::after{transform:translate3d(calc(0% - 16px), -5px, 0)}[role~=tooltip][data-microtip-position|=bottom]::before{background:url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%28180%2018%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E) no-repeat;height:6px;width:18px;margin-top:5px;margin-bottom:0}[role~=tooltip][data-microtip-position|=bottom]::after{margin-top:11px}[role~=tooltip][data-microtip-position|=bottom]::before{transform:translate3d(-50%, -10px, 0);bottom:auto;left:50%;top:100%}[role~=tooltip][data-microtip-position|=bottom]:hover::before{transform:translate3d(-50%, 0, 0)}[role~=tooltip][data-microtip-position|=bottom]::after{transform:translate3d(-50%, -10px, 0);top:100%;left:50%}[role~=tooltip][data-microtip-position=bottom]:hover::after{transform:translate3d(-50%, 0, 0)}[role~=tooltip][data-microtip-position=bottom-left]::after{transform:translate3d(calc(-100% + 16px), -10px, 0);top:100%}[role~=tooltip][data-microtip-position=bottom-left]:hover::after{transform:translate3d(calc(-100% + 16px), 0, 0)}[role~=tooltip][data-microtip-position=bottom-right]::after{transform:translate3d(calc(0% - 16px), -10px, 0);top:100%}[role~=tooltip][data-microtip-position=bottom-right]:hover::after{transform:translate3d(calc(0% - 16px), 0, 0)}[role~=tooltip][data-microtip-position=left]::before,[role~=tooltip][data-microtip-position=left]::after{bottom:auto;left:auto;right:100%;top:50%;transform:translate3d(10px, -50%, 0)}[role~=tooltip][data-microtip-position=left]::before{background:url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%28-90%2018%2018%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E) no-repeat;height:18px;width:6px;margin-right:5px;margin-bottom:0}[role~=tooltip][data-microtip-position=left]::after{margin-right:11px}[role~=tooltip][data-microtip-position=left]:hover::before,[role~=tooltip][data-microtip-position=left]:hover::after{transform:translate3d(0, -50%, 0)}[role~=tooltip][data-microtip-position=right]::before,[role~=tooltip][data-microtip-position=right]::after{bottom:auto;left:100%;top:50%;transform:translate3d(-10px, -50%, 0)}[role~=tooltip][data-microtip-position=right]::before{background:url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%2890%206%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E) no-repeat;height:18px;width:6px;margin-bottom:0;margin-left:5px}[role~=tooltip][data-microtip-position=right]::after{margin-left:11px}[role~=tooltip][data-microtip-position=right]:hover::before,[role~=tooltip][data-microtip-position=right]:hover::after{transform:translate3d(0, -50%, 0)}[role~=tooltip][data-microtip-size=small]::after{white-space:initial;width:80px}[role~=tooltip][data-microtip-size=medium]::after{white-space:initial;width:150px}[role~=tooltip][data-microtip-size=large]::after{white-space:initial;width:260px}.container{width:100%;margin-left:auto;margin-right:auto;padding-left:1rem;padding-right:1rem}@media(min-width: 480px){.container{max-width:450px}}@media(min-width: 640px){.container{max-width:540px}}@media(min-width: 768px){.container{max-width:720px}}@media(min-width: 1024px){.container{max-width:960px}}@media(min-width: 1280px){.container{max-width:1140px}}@media(min-width: 1536px){.container{max-width:1320px}}.container-flex{display:flex;width:100%;margin-left:auto;margin-right:auto;padding-left:1rem;padding-right:1rem}@media(min-width: 480px){.container-flex{max-width:450px}}@media(min-width: 640px){.container-flex{max-width:540px}}@media(min-width: 768px){.container-flex{max-width:720px}}@media(min-width: 1024px){.container-flex{max-width:960px}}@media(min-width: 1280px){.container-flex{max-width:1140px}}@media(min-width: 1536px){.container-flex{max-width:1320px}}.container-grid{display:grid;width:100%;margin-left:auto;margin-right:auto;padding-left:1rem;padding-right:1rem}@media(min-width: 480px){.container-grid{max-width:450px}}@media(min-width: 640px){.container-grid{max-width:540px}}@media(min-width: 768px){.container-grid{max-width:720px}}@media(min-width: 1024px){.container-grid{max-width:960px}}@media(min-width: 1280px){.container-grid{max-width:1140px}}@media(min-width: 1536px){.container-grid{max-width:1320px}}.container-fluid{width:100%;margin-left:auto;margin-right:auto;padding-left:1rem;padding-right:1rem}.flex{display:flex}.flex.row{flex-direction:row}.flex.row-reverse{flex-direction:row-reverse}.flex.col{flex-direction:column}.flex.col-reverse{flex-direction:column-reverse}.flex.wrap{flex-wrap:wrap}.flex.nowrap{flex-wrap:nowrap}.flex.wrap-reverse{flex-wrap:wrap-reverse}.flex.start{justify-content:flex-start}.flex.end{justify-content:flex-end}.flex.center{justify-content:center}.flex.between{justify-content:space-between}.flex.around{justify-content:space-around}.flex.evenly{justify-content:space-evenly}.flex.items-start{align-items:flex-start}.flex.items-end{align-items:flex-end}.flex.items-center{align-items:center}.flex.items-baseline{align-items:baseline}.flex.items-stretch{align-items:stretch}.flex.gap-0{gap:0rem}.flex.gap-1{gap:0.25rem}.flex.gap-2{gap:0.5rem}.flex.gap-3{gap:0.75rem}.flex.gap-4{gap:1rem}.flex.gap-5{gap:1.25rem}.flex.gap-6{gap:1.5rem}.flex.gap-7{gap:1.75rem}.flex.gap-8{gap:2rem}.flex>.w-auto{flex:1 1 auto}.flex>.w-full{flex:0 0 100%}.flex>.w-1{flex:0 0 8.3333333333%}.flex>.w-2{flex:0 0 16.6666666667%}.flex>.w-3{flex:0 0 25%}.flex>.w-4{flex:0 0 33.3333333333%}.flex>.w-5{flex:0 0 41.6666666667%}.flex>.w-6{flex:0 0 50%}.flex>.w-7{flex:0 0 58.3333333333%}.flex>.w-8{flex:0 0 66.6666666667%}.flex>.w-9{flex:0 0 75%}.flex>.w-10{flex:0 0 83.3333333333%}.flex>.w-11{flex:0 0 91.6666666667%}.flex>.w-12{flex:0 0 100%}@media(min-width: 480px){.xs\:row{flex-direction:row}.xs\:row-reverse{flex-direction:row-reverse}.xs\:col{flex-direction:column}.xs\:col-reverse{flex-direction:column-reverse}.xs\:wrap{flex-wrap:wrap}.xs\:nowrap{flex-wrap:nowrap}.xs\:wrap-reverse{flex-wrap:wrap-reverse}.xs\:start{justify-content:flex-start}.xs\:end{justify-content:flex-end}.xs\:center{justify-content:center}.xs\:between{justify-content:space-between}.xs\:around{justify-content:space-around}.xs\:evenly{justify-content:space-evenly}.xs\:items-start{align-items:flex-start}.xs\:items-end{align-items:flex-end}.xs\:items-center{align-items:center}.xs\:items-baseline{align-items:baseline}.xs\:items-stretch{align-items:stretch}.xs\:w-auto{flex:1 1 auto}.xs\:w-full{flex:0 0 100%}.xs\:w-1{flex:0 0 8.3333333333%}.xs\:w-2{flex:0 0 16.6666666667%}.xs\:w-3{flex:0 0 25%}.xs\:w-4{flex:0 0 33.3333333333%}.xs\:w-5{flex:0 0 41.6666666667%}.xs\:w-6{flex:0 0 50%}.xs\:w-7{flex:0 0 58.3333333333%}.xs\:w-8{flex:0 0 66.6666666667%}.xs\:w-9{flex:0 0 75%}.xs\:w-10{flex:0 0 83.3333333333%}.xs\:w-11{flex:0 0 91.6666666667%}.xs\:w-12{flex:0 0 100%}.xs\:gap-0{gap:0rem}.xs\:gap-1{gap:0.25rem}.xs\:gap-2{gap:0.5rem}.xs\:gap-3{gap:0.75rem}.xs\:gap-4{gap:1rem}.xs\:gap-5{gap:1.25rem}.xs\:gap-6{gap:1.5rem}.xs\:gap-7{gap:1.75rem}.xs\:gap-8{gap:2rem}}@media(min-width: 640px){.sm\:row{flex-direction:row}.sm\:row-reverse{flex-direction:row-reverse}.sm\:col{flex-direction:column}.sm\:col-reverse{flex-direction:column-reverse}.sm\:wrap{flex-wrap:wrap}.sm\:nowrap{flex-wrap:nowrap}.sm\:wrap-reverse{flex-wrap:wrap-reverse}.sm\:start{justify-content:flex-start}.sm\:end{justify-content:flex-end}.sm\:center{justify-content:center}.sm\:between{justify-content:space-between}.sm\:around{justify-content:space-around}.sm\:evenly{justify-content:space-evenly}.sm\:items-start{align-items:flex-start}.sm\:items-end{align-items:flex-end}.sm\:items-center{align-items:center}.sm\:items-baseline{align-items:baseline}.sm\:items-stretch{align-items:stretch}.sm\:w-auto{flex:1 1 auto}.sm\:w-full{flex:0 0 100%}.sm\:w-1{flex:0 0 8.3333333333%}.sm\:w-2{flex:0 0 16.6666666667%}.sm\:w-3{flex:0 0 25%}.sm\:w-4{flex:0 0 33.3333333333%}.sm\:w-5{flex:0 0 41.6666666667%}.sm\:w-6{flex:0 0 50%}.sm\:w-7{flex:0 0 58.3333333333%}.sm\:w-8{flex:0 0 66.6666666667%}.sm\:w-9{flex:0 0 75%}.sm\:w-10{flex:0 0 83.3333333333%}.sm\:w-11{flex:0 0 91.6666666667%}.sm\:w-12{flex:0 0 100%}.sm\:gap-0{gap:0rem}.sm\:gap-1{gap:0.25rem}.sm\:gap-2{gap:0.5rem}.sm\:gap-3{gap:0.75rem}.sm\:gap-4{gap:1rem}.sm\:gap-5{gap:1.25rem}.sm\:gap-6{gap:1.5rem}.sm\:gap-7{gap:1.75rem}.sm\:gap-8{gap:2rem}}@media(min-width: 768px){.md\:row{flex-direction:row}.md\:row-reverse{flex-direction:row-reverse}.md\:col{flex-direction:column}.md\:col-reverse{flex-direction:column-reverse}.md\:wrap{flex-wrap:wrap}.md\:nowrap{flex-wrap:nowrap}.md\:wrap-reverse{flex-wrap:wrap-reverse}.md\:start{justify-content:flex-start}.md\:end{justify-content:flex-end}.md\:center{justify-content:center}.md\:between{justify-content:space-between}.md\:around{justify-content:space-around}.md\:evenly{justify-content:space-evenly}.md\:items-start{align-items:flex-start}.md\:items-end{align-items:flex-end}.md\:items-center{align-items:center}.md\:items-baseline{align-items:baseline}.md\:items-stretch{align-items:stretch}.md\:w-auto{flex:1 1 auto}.md\:w-full{flex:0 0 100%}.md\:w-1{flex:0 0 8.3333333333%}.md\:w-2{flex:0 0 16.6666666667%}.md\:w-3{flex:0 0 25%}.md\:w-4{flex:0 0 33.3333333333%}.md\:w-5{flex:0 0 41.6666666667%}.md\:w-6{flex:0 0 50%}.md\:w-7{flex:0 0 58.3333333333%}.md\:w-8{flex:0 0 66.6666666667%}.md\:w-9{flex:0 0 75%}.md\:w-10{flex:0 0 83.3333333333%}.md\:w-11{flex:0 0 91.6666666667%}.md\:w-12{flex:0 0 100%}.md\:gap-0{gap:0rem}.md\:gap-1{gap:0.25rem}.md\:gap-2{gap:0.5rem}.md\:gap-3{gap:0.75rem}.md\:gap-4{gap:1rem}.md\:gap-5{gap:1.25rem}.md\:gap-6{gap:1.5rem}.md\:gap-7{gap:1.75rem}.md\:gap-8{gap:2rem}}@media(min-width: 1024px){.lg\:row{flex-direction:row}.lg\:row-reverse{flex-direction:row-reverse}.lg\:col{flex-direction:column}.lg\:col-reverse{flex-direction:column-reverse}.lg\:wrap{flex-wrap:wrap}.lg\:nowrap{flex-wrap:nowrap}.lg\:wrap-reverse{flex-wrap:wrap-reverse}.lg\:start{justify-content:flex-start}.lg\:end{justify-content:flex-end}.lg\:center{justify-content:center}.lg\:between{justify-content:space-between}.lg\:around{justify-content:space-around}.lg\:evenly{justify-content:space-evenly}.lg\:items-start{align-items:flex-start}.lg\:items-end{align-items:flex-end}.lg\:items-center{align-items:center}.lg\:items-baseline{align-items:baseline}.lg\:items-stretch{align-items:stretch}.lg\:w-auto{flex:1 1 auto}.lg\:w-full{flex:0 0 100%}.lg\:w-1{flex:0 0 8.3333333333%}.lg\:w-2{flex:0 0 16.6666666667%}.lg\:w-3{flex:0 0 25%}.lg\:w-4{flex:0 0 33.3333333333%}.lg\:w-5{flex:0 0 41.6666666667%}.lg\:w-6{flex:0 0 50%}.lg\:w-7{flex:0 0 58.3333333333%}.lg\:w-8{flex:0 0 66.6666666667%}.lg\:w-9{flex:0 0 75%}.lg\:w-10{flex:0 0 83.3333333333%}.lg\:w-11{flex:0 0 91.6666666667%}.lg\:w-12{flex:0 0 100%}.lg\:gap-0{gap:0rem}.lg\:gap-1{gap:0.25rem}.lg\:gap-2{gap:0.5rem}.lg\:gap-3{gap:0.75rem}.lg\:gap-4{gap:1rem}.lg\:gap-5{gap:1.25rem}.lg\:gap-6{gap:1.5rem}.lg\:gap-7{gap:1.75rem}.lg\:gap-8{gap:2rem}}@media(min-width: 1280px){.xl\:row{flex-direction:row}.xl\:row-reverse{flex-direction:row-reverse}.xl\:col{flex-direction:column}.xl\:col-reverse{flex-direction:column-reverse}.xl\:wrap{flex-wrap:wrap}.xl\:nowrap{flex-wrap:nowrap}.xl\:wrap-reverse{flex-wrap:wrap-reverse}.xl\:start{justify-content:flex-start}.xl\:end{justify-content:flex-end}.xl\:center{justify-content:center}.xl\:between{justify-content:space-between}.xl\:around{justify-content:space-around}.xl\:evenly{justify-content:space-evenly}.xl\:items-start{align-items:flex-start}.xl\:items-end{align-items:flex-end}.xl\:items-center{align-items:center}.xl\:items-baseline{align-items:baseline}.xl\:items-stretch{align-items:stretch}.xl\:w-auto{flex:1 1 auto}.xl\:w-full{flex:0 0 100%}.xl\:w-1{flex:0 0 8.3333333333%}.xl\:w-2{flex:0 0 16.6666666667%}.xl\:w-3{flex:0 0 25%}.xl\:w-4{flex:0 0 33.3333333333%}.xl\:w-5{flex:0 0 41.6666666667%}.xl\:w-6{flex:0 0 50%}.xl\:w-7{flex:0 0 58.3333333333%}.xl\:w-8{flex:0 0 66.6666666667%}.xl\:w-9{flex:0 0 75%}.xl\:w-10{flex:0 0 83.3333333333%}.xl\:w-11{flex:0 0 91.6666666667%}.xl\:w-12{flex:0 0 100%}.xl\:gap-0{gap:0rem}.xl\:gap-1{gap:0.25rem}.xl\:gap-2{gap:0.5rem}.xl\:gap-3{gap:0.75rem}.xl\:gap-4{gap:1rem}.xl\:gap-5{gap:1.25rem}.xl\:gap-6{gap:1.5rem}.xl\:gap-7{gap:1.75rem}.xl\:gap-8{gap:2rem}}@media(min-width: 1536px){.xxl\:row{flex-direction:row}.xxl\:row-reverse{flex-direction:row-reverse}.xxl\:col{flex-direction:column}.xxl\:col-reverse{flex-direction:column-reverse}.xxl\:wrap{flex-wrap:wrap}.xxl\:nowrap{flex-wrap:nowrap}.xxl\:wrap-reverse{flex-wrap:wrap-reverse}.xxl\:start{justify-content:flex-start}.xxl\:end{justify-content:flex-end}.xxl\:center{justify-content:center}.xxl\:between{justify-content:space-between}.xxl\:around{justify-content:space-around}.xxl\:evenly{justify-content:space-evenly}.xxl\:items-start{align-items:flex-start}.xxl\:items-end{align-items:flex-end}.xxl\:items-center{align-items:center}.xxl\:items-baseline{align-items:baseline}.xxl\:items-stretch{align-items:stretch}.xxl\:w-auto{flex:1 1 auto}.xxl\:w-full{flex:0 0 100%}.xxl\:w-1{flex:0 0 8.3333333333%}.xxl\:w-2{flex:0 0 16.6666666667%}.xxl\:w-3{flex:0 0 25%}.xxl\:w-4{flex:0 0 33.3333333333%}.xxl\:w-5{flex:0 0 41.6666666667%}.xxl\:w-6{flex:0 0 50%}.xxl\:w-7{flex:0 0 58.3333333333%}.xxl\:w-8{flex:0 0 66.6666666667%}.xxl\:w-9{flex:0 0 75%}.xxl\:w-10{flex:0 0 83.3333333333%}.xxl\:w-11{flex:0 0 91.6666666667%}.xxl\:w-12{flex:0 0 100%}.xxl\:gap-0{gap:0rem}.xxl\:gap-1{gap:0.25rem}.xxl\:gap-2{gap:0.5rem}.xxl\:gap-3{gap:0.75rem}.xxl\:gap-4{gap:1rem}.xxl\:gap-5{gap:1.25rem}.xxl\:gap-6{gap:1.5rem}.xxl\:gap-7{gap:1.75rem}.xxl\:gap-8{gap:2rem}}.grid{display:grid}.grid.inline{display:inline-grid}.grid.cols-1{grid-template-columns:repeat(1, minmax(0, 1fr))}.grid.rows-1{grid-template-rows:repeat(1, minmax(0, 1fr))}@media(min-width: 480px){.grid.xs\:cols-1{grid-template-columns:repeat(1, minmax(0, 1fr))}}@media(min-width: 640px){.grid.sm\:cols-1{grid-template-columns:repeat(1, minmax(0, 1fr))}}@media(min-width: 768px){.grid.md\:cols-1{grid-template-columns:repeat(1, minmax(0, 1fr))}}@media(min-width: 1024px){.grid.lg\:cols-1{grid-template-columns:repeat(1, minmax(0, 1fr))}}@media(min-width: 1280px){.grid.xl\:cols-1{grid-template-columns:repeat(1, minmax(0, 1fr))}}@media(min-width: 1536px){.grid.xxl\:cols-1{grid-template-columns:repeat(1, minmax(0, 1fr))}}.grid.cols-2{grid-template-columns:repeat(2, minmax(0, 1fr))}.grid.rows-2{grid-template-rows:repeat(2, minmax(0, 1fr))}@media(min-width: 480px){.grid.xs\:cols-2{grid-template-columns:repeat(2, minmax(0, 1fr))}}@media(min-width: 640px){.grid.sm\:cols-2{grid-template-columns:repeat(2, minmax(0, 1fr))}}@media(min-width: 768px){.grid.md\:cols-2{grid-template-columns:repeat(2, minmax(0, 1fr))}}@media(min-width: 1024px){.grid.lg\:cols-2{grid-template-columns:repeat(2, minmax(0, 1fr))}}@media(min-width: 1280px){.grid.xl\:cols-2{grid-template-columns:repeat(2, minmax(0, 1fr))}}@media(min-width: 1536px){.grid.xxl\:cols-2{grid-template-columns:repeat(2, minmax(0, 1fr))}}.grid.cols-3{grid-template-columns:repeat(3, minmax(0, 1fr))}.grid.rows-3{grid-template-rows:repeat(3, minmax(0, 1fr))}@media(min-width: 480px){.grid.xs\:cols-3{grid-template-columns:repeat(3, minmax(0, 1fr))}}@media(min-width: 640px){.grid.sm\:cols-3{grid-template-columns:repeat(3, minmax(0, 1fr))}}@media(min-width: 768px){.grid.md\:cols-3{grid-template-columns:repeat(3, minmax(0, 1fr))}}@media(min-width: 1024px){.grid.lg\:cols-3{grid-template-columns:repeat(3, minmax(0, 1fr))}}@media(min-width: 1280px){.grid.xl\:cols-3{grid-template-columns:repeat(3, minmax(0, 1fr))}}@media(min-width: 1536px){.grid.xxl\:cols-3{grid-template-columns:repeat(3, minmax(0, 1fr))}}.grid.cols-4{grid-template-columns:repeat(4, minmax(0, 1fr))}.grid.rows-4{grid-template-rows:repeat(4, minmax(0, 1fr))}@media(min-width: 480px){.grid.xs\:cols-4{grid-template-columns:repeat(4, minmax(0, 1fr))}}@media(min-width: 640px){.grid.sm\:cols-4{grid-template-columns:repeat(4, minmax(0, 1fr))}}@media(min-width: 768px){.grid.md\:cols-4{grid-template-columns:repeat(4, minmax(0, 1fr))}}@media(min-width: 1024px){.grid.lg\:cols-4{grid-template-columns:repeat(4, minmax(0, 1fr))}}@media(min-width: 1280px){.grid.xl\:cols-4{grid-template-columns:repeat(4, minmax(0, 1fr))}}@media(min-width: 1536px){.grid.xxl\:cols-4{grid-template-columns:repeat(4, minmax(0, 1fr))}}.grid.cols-5{grid-template-columns:repeat(5, minmax(0, 1fr))}.grid.rows-5{grid-template-rows:repeat(5, minmax(0, 1fr))}@media(min-width: 480px){.grid.xs\:cols-5{grid-template-columns:repeat(5, minmax(0, 1fr))}}@media(min-width: 640px){.grid.sm\:cols-5{grid-template-columns:repeat(5, minmax(0, 1fr))}}@media(min-width: 768px){.grid.md\:cols-5{grid-template-columns:repeat(5, minmax(0, 1fr))}}@media(min-width: 1024px){.grid.lg\:cols-5{grid-template-columns:repeat(5, minmax(0, 1fr))}}@media(min-width: 1280px){.grid.xl\:cols-5{grid-template-columns:repeat(5, minmax(0, 1fr))}}@media(min-width: 1536px){.grid.xxl\:cols-5{grid-template-columns:repeat(5, minmax(0, 1fr))}}.grid.cols-6{grid-template-columns:repeat(6, minmax(0, 1fr))}.grid.rows-6{grid-template-rows:repeat(6, minmax(0, 1fr))}@media(min-width: 480px){.grid.xs\:cols-6{grid-template-columns:repeat(6, minmax(0, 1fr))}}@media(min-width: 640px){.grid.sm\:cols-6{grid-template-columns:repeat(6, minmax(0, 1fr))}}@media(min-width: 768px){.grid.md\:cols-6{grid-template-columns:repeat(6, minmax(0, 1fr))}}@media(min-width: 1024px){.grid.lg\:cols-6{grid-template-columns:repeat(6, minmax(0, 1fr))}}@media(min-width: 1280px){.grid.xl\:cols-6{grid-template-columns:repeat(6, minmax(0, 1fr))}}@media(min-width: 1536px){.grid.xxl\:cols-6{grid-template-columns:repeat(6, minmax(0, 1fr))}}.grid.cols-7{grid-template-columns:repeat(7, minmax(0, 1fr))}.grid.rows-7{grid-template-rows:repeat(7, minmax(0, 1fr))}@media(min-width: 480px){.grid.xs\:cols-7{grid-template-columns:repeat(7, minmax(0, 1fr))}}@media(min-width: 640px){.grid.sm\:cols-7{grid-template-columns:repeat(7, minmax(0, 1fr))}}@media(min-width: 768px){.grid.md\:cols-7{grid-template-columns:repeat(7, minmax(0, 1fr))}}@media(min-width: 1024px){.grid.lg\:cols-7{grid-template-columns:repeat(7, minmax(0, 1fr))}}@media(min-width: 1280px){.grid.xl\:cols-7{grid-template-columns:repeat(7, minmax(0, 1fr))}}@media(min-width: 1536px){.grid.xxl\:cols-7{grid-template-columns:repeat(7, minmax(0, 1fr))}}.grid.cols-8{grid-template-columns:repeat(8, minmax(0, 1fr))}.grid.rows-8{grid-template-rows:repeat(8, minmax(0, 1fr))}@media(min-width: 480px){.grid.xs\:cols-8{grid-template-columns:repeat(8, minmax(0, 1fr))}}@media(min-width: 640px){.grid.sm\:cols-8{grid-template-columns:repeat(8, minmax(0, 1fr))}}@media(min-width: 768px){.grid.md\:cols-8{grid-template-columns:repeat(8, minmax(0, 1fr))}}@media(min-width: 1024px){.grid.lg\:cols-8{grid-template-columns:repeat(8, minmax(0, 1fr))}}@media(min-width: 1280px){.grid.xl\:cols-8{grid-template-columns:repeat(8, minmax(0, 1fr))}}@media(min-width: 1536px){.grid.xxl\:cols-8{grid-template-columns:repeat(8, minmax(0, 1fr))}}.grid.cols-9{grid-template-columns:repeat(9, minmax(0, 1fr))}.grid.rows-9{grid-template-rows:repeat(9, minmax(0, 1fr))}@media(min-width: 480px){.grid.xs\:cols-9{grid-template-columns:repeat(9, minmax(0, 1fr))}}@media(min-width: 640px){.grid.sm\:cols-9{grid-template-columns:repeat(9, minmax(0, 1fr))}}@media(min-width: 768px){.grid.md\:cols-9{grid-template-columns:repeat(9, minmax(0, 1fr))}}@media(min-width: 1024px){.grid.lg\:cols-9{grid-template-columns:repeat(9, minmax(0, 1fr))}}@media(min-width: 1280px){.grid.xl\:cols-9{grid-template-columns:repeat(9, minmax(0, 1fr))}}@media(min-width: 1536px){.grid.xxl\:cols-9{grid-template-columns:repeat(9, minmax(0, 1fr))}}.grid.cols-10{grid-template-columns:repeat(10, minmax(0, 1fr))}.grid.rows-10{grid-template-rows:repeat(10, minmax(0, 1fr))}@media(min-width: 480px){.grid.xs\:cols-10{grid-template-columns:repeat(10, minmax(0, 1fr))}}@media(min-width: 640px){.grid.sm\:cols-10{grid-template-columns:repeat(10, minmax(0, 1fr))}}@media(min-width: 768px){.grid.md\:cols-10{grid-template-columns:repeat(10, minmax(0, 1fr))}}@media(min-width: 1024px){.grid.lg\:cols-10{grid-template-columns:repeat(10, minmax(0, 1fr))}}@media(min-width: 1280px){.grid.xl\:cols-10{grid-template-columns:repeat(10, minmax(0, 1fr))}}@media(min-width: 1536px){.grid.xxl\:cols-10{grid-template-columns:repeat(10, minmax(0, 1fr))}}.grid.cols-11{grid-template-columns:repeat(11, minmax(0, 1fr))}.grid.rows-11{grid-template-rows:repeat(11, minmax(0, 1fr))}@media(min-width: 480px){.grid.xs\:cols-11{grid-template-columns:repeat(11, minmax(0, 1fr))}}@media(min-width: 640px){.grid.sm\:cols-11{grid-template-columns:repeat(11, minmax(0, 1fr))}}@media(min-width: 768px){.grid.md\:cols-11{grid-template-columns:repeat(11, minmax(0, 1fr))}}@media(min-width: 1024px){.grid.lg\:cols-11{grid-template-columns:repeat(11, minmax(0, 1fr))}}@media(min-width: 1280px){.grid.xl\:cols-11{grid-template-columns:repeat(11, minmax(0, 1fr))}}@media(min-width: 1536px){.grid.xxl\:cols-11{grid-template-columns:repeat(11, minmax(0, 1fr))}}.grid.cols-12{grid-template-columns:repeat(12, minmax(0, 1fr))}.grid.rows-12{grid-template-rows:repeat(12, minmax(0, 1fr))}@media(min-width: 480px){.grid.xs\:cols-12{grid-template-columns:repeat(12, minmax(0, 1fr))}}@media(min-width: 640px){.grid.sm\:cols-12{grid-template-columns:repeat(12, minmax(0, 1fr))}}@media(min-width: 768px){.grid.md\:cols-12{grid-template-columns:repeat(12, minmax(0, 1fr))}}@media(min-width: 1024px){.grid.lg\:cols-12{grid-template-columns:repeat(12, minmax(0, 1fr))}}@media(min-width: 1280px){.grid.xl\:cols-12{grid-template-columns:repeat(12, minmax(0, 1fr))}}@media(min-width: 1536px){.grid.xxl\:cols-12{grid-template-columns:repeat(12, minmax(0, 1fr))}}.col-span-1{grid-column:span 1/span 1}@media(min-width: 480px){.xs\:col-span-1{grid-column:span 1/span 1}}@media(min-width: 640px){.sm\:col-span-1{grid-column:span 1/span 1}}@media(min-width: 768px){.md\:col-span-1{grid-column:span 1/span 1}}@media(min-width: 1024px){.lg\:col-span-1{grid-column:span 1/span 1}}@media(min-width: 1280px){.xl\:col-span-1{grid-column:span 1/span 1}}@media(min-width: 1536px){.xxl\:col-span-1{grid-column:span 1/span 1}}.col-span-2{grid-column:span 2/span 2}@media(min-width: 480px){.xs\:col-span-2{grid-column:span 2/span 2}}@media(min-width: 640px){.sm\:col-span-2{grid-column:span 2/span 2}}@media(min-width: 768px){.md\:col-span-2{grid-column:span 2/span 2}}@media(min-width: 1024px){.lg\:col-span-2{grid-column:span 2/span 2}}@media(min-width: 1280px){.xl\:col-span-2{grid-column:span 2/span 2}}@media(min-width: 1536px){.xxl\:col-span-2{grid-column:span 2/span 2}}.col-span-3{grid-column:span 3/span 3}@media(min-width: 480px){.xs\:col-span-3{grid-column:span 3/span 3}}@media(min-width: 640px){.sm\:col-span-3{grid-column:span 3/span 3}}@media(min-width: 768px){.md\:col-span-3{grid-column:span 3/span 3}}@media(min-width: 1024px){.lg\:col-span-3{grid-column:span 3/span 3}}@media(min-width: 1280px){.xl\:col-span-3{grid-column:span 3/span 3}}@media(min-width: 1536px){.xxl\:col-span-3{grid-column:span 3/span 3}}.col-span-4{grid-column:span 4/span 4}@media(min-width: 480px){.xs\:col-span-4{grid-column:span 4/span 4}}@media(min-width: 640px){.sm\:col-span-4{grid-column:span 4/span 4}}@media(min-width: 768px){.md\:col-span-4{grid-column:span 4/span 4}}@media(min-width: 1024px){.lg\:col-span-4{grid-column:span 4/span 4}}@media(min-width: 1280px){.xl\:col-span-4{grid-column:span 4/span 4}}@media(min-width: 1536px){.xxl\:col-span-4{grid-column:span 4/span 4}}.col-span-5{grid-column:span 5/span 5}@media(min-width: 480px){.xs\:col-span-5{grid-column:span 5/span 5}}@media(min-width: 640px){.sm\:col-span-5{grid-column:span 5/span 5}}@media(min-width: 768px){.md\:col-span-5{grid-column:span 5/span 5}}@media(min-width: 1024px){.lg\:col-span-5{grid-column:span 5/span 5}}@media(min-width: 1280px){.xl\:col-span-5{grid-column:span 5/span 5}}@media(min-width: 1536px){.xxl\:col-span-5{grid-column:span 5/span 5}}.col-span-6{grid-column:span 6/span 6}@media(min-width: 480px){.xs\:col-span-6{grid-column:span 6/span 6}}@media(min-width: 640px){.sm\:col-span-6{grid-column:span 6/span 6}}@media(min-width: 768px){.md\:col-span-6{grid-column:span 6/span 6}}@media(min-width: 1024px){.lg\:col-span-6{grid-column:span 6/span 6}}@media(min-width: 1280px){.xl\:col-span-6{grid-column:span 6/span 6}}@media(min-width: 1536px){.xxl\:col-span-6{grid-column:span 6/span 6}}.col-span-7{grid-column:span 7/span 7}@media(min-width: 480px){.xs\:col-span-7{grid-column:span 7/span 7}}@media(min-width: 640px){.sm\:col-span-7{grid-column:span 7/span 7}}@media(min-width: 768px){.md\:col-span-7{grid-column:span 7/span 7}}@media(min-width: 1024px){.lg\:col-span-7{grid-column:span 7/span 7}}@media(min-width: 1280px){.xl\:col-span-7{grid-column:span 7/span 7}}@media(min-width: 1536px){.xxl\:col-span-7{grid-column:span 7/span 7}}.col-span-8{grid-column:span 8/span 8}@media(min-width: 480px){.xs\:col-span-8{grid-column:span 8/span 8}}@media(min-width: 640px){.sm\:col-span-8{grid-column:span 8/span 8}}@media(min-width: 768px){.md\:col-span-8{grid-column:span 8/span 8}}@media(min-width: 1024px){.lg\:col-span-8{grid-column:span 8/span 8}}@media(min-width: 1280px){.xl\:col-span-8{grid-column:span 8/span 8}}@media(min-width: 1536px){.xxl\:col-span-8{grid-column:span 8/span 8}}.col-span-9{grid-column:span 9/span 9}@media(min-width: 480px){.xs\:col-span-9{grid-column:span 9/span 9}}@media(min-width: 640px){.sm\:col-span-9{grid-column:span 9/span 9}}@media(min-width: 768px){.md\:col-span-9{grid-column:span 9/span 9}}@media(min-width: 1024px){.lg\:col-span-9{grid-column:span 9/span 9}}@media(min-width: 1280px){.xl\:col-span-9{grid-column:span 9/span 9}}@media(min-width: 1536px){.xxl\:col-span-9{grid-column:span 9/span 9}}.col-span-10{grid-column:span 10/span 10}@media(min-width: 480px){.xs\:col-span-10{grid-column:span 10/span 10}}@media(min-width: 640px){.sm\:col-span-10{grid-column:span 10/span 10}}@media(min-width: 768px){.md\:col-span-10{grid-column:span 10/span 10}}@media(min-width: 1024px){.lg\:col-span-10{grid-column:span 10/span 10}}@media(min-width: 1280px){.xl\:col-span-10{grid-column:span 10/span 10}}@media(min-width: 1536px){.xxl\:col-span-10{grid-column:span 10/span 10}}.col-span-11{grid-column:span 11/span 11}@media(min-width: 480px){.xs\:col-span-11{grid-column:span 11/span 11}}@media(min-width: 640px){.sm\:col-span-11{grid-column:span 11/span 11}}@media(min-width: 768px){.md\:col-span-11{grid-column:span 11/span 11}}@media(min-width: 1024px){.lg\:col-span-11{grid-column:span 11/span 11}}@media(min-width: 1280px){.xl\:col-span-11{grid-column:span 11/span 11}}@media(min-width: 1536px){.xxl\:col-span-11{grid-column:span 11/span 11}}.col-span-12{grid-column:span 12/span 12}@media(min-width: 480px){.xs\:col-span-12{grid-column:span 12/span 12}}@media(min-width: 640px){.sm\:col-span-12{grid-column:span 12/span 12}}@media(min-width: 768px){.md\:col-span-12{grid-column:span 12/span 12}}@media(min-width: 1024px){.lg\:col-span-12{grid-column:span 12/span 12}}@media(min-width: 1280px){.xl\:col-span-12{grid-column:span 12/span 12}}@media(min-width: 1536px){.xxl\:col-span-12{grid-column:span 12/span 12}}.grid.auto-fit-sm{grid-template-columns:repeat(auto-fit, minmax(200px, 1fr))}.grid.auto-fill-sm{grid-template-columns:repeat(auto-fill, minmax(200px, 1fr))}.grid.auto-fit-md{grid-template-columns:repeat(auto-fit, minmax(300px, 1fr))}.grid.auto-fill-md{grid-template-columns:repeat(auto-fill, minmax(300px, 1fr))}.grid.auto-fit-lg{grid-template-columns:repeat(auto-fit, minmax(400px, 1fr))}.grid.auto-fill-lg{grid-template-columns:repeat(auto-fill, minmax(400px, 1fr))}.grid.flow-row{grid-auto-flow:row}.grid.flow-col{grid-auto-flow:column}.grid.flow-dense{grid-auto-flow:dense}.justify-items-start{justify-items:start}.align-items-start{align-items:start}.place-items-start{place-items:start}@media(min-width: 480px){.xs\:justify-items-start{justify-items:start}.xs\:align-items-start{align-items:start}.xs\:place-items-start{place-items:start}}@media(min-width: 640px){.sm\:justify-items-start{justify-items:start}.sm\:align-items-start{align-items:start}.sm\:place-items-start{place-items:start}}@media(min-width: 768px){.md\:justify-items-start{justify-items:start}.md\:align-items-start{align-items:start}.md\:place-items-start{place-items:start}}@media(min-width: 1024px){.lg\:justify-items-start{justify-items:start}.lg\:align-items-start{align-items:start}.lg\:place-items-start{place-items:start}}@media(min-width: 1280px){.xl\:justify-items-start{justify-items:start}.xl\:align-items-start{align-items:start}.xl\:place-items-start{place-items:start}}@media(min-width: 1536px){.xxl\:justify-items-start{justify-items:start}.xxl\:align-items-start{align-items:start}.xxl\:place-items-start{place-items:start}}.justify-items-end{justify-items:end}.align-items-end{align-items:end}.place-items-end{place-items:end}@media(min-width: 480px){.xs\:justify-items-end{justify-items:end}.xs\:align-items-end{align-items:end}.xs\:place-items-end{place-items:end}}@media(min-width: 640px){.sm\:justify-items-end{justify-items:end}.sm\:align-items-end{align-items:end}.sm\:place-items-end{place-items:end}}@media(min-width: 768px){.md\:justify-items-end{justify-items:end}.md\:align-items-end{align-items:end}.md\:place-items-end{place-items:end}}@media(min-width: 1024px){.lg\:justify-items-end{justify-items:end}.lg\:align-items-end{align-items:end}.lg\:place-items-end{place-items:end}}@media(min-width: 1280px){.xl\:justify-items-end{justify-items:end}.xl\:align-items-end{align-items:end}.xl\:place-items-end{place-items:end}}@media(min-width: 1536px){.xxl\:justify-items-end{justify-items:end}.xxl\:align-items-end{align-items:end}.xxl\:place-items-end{place-items:end}}.justify-items-center{justify-items:center}.align-items-center{align-items:center}.place-items-center{place-items:center}@media(min-width: 480px){.xs\:justify-items-center{justify-items:center}.xs\:align-items-center{align-items:center}.xs\:place-items-center{place-items:center}}@media(min-width: 640px){.sm\:justify-items-center{justify-items:center}.sm\:align-items-center{align-items:center}.sm\:place-items-center{place-items:center}}@media(min-width: 768px){.md\:justify-items-center{justify-items:center}.md\:align-items-center{align-items:center}.md\:place-items-center{place-items:center}}@media(min-width: 1024px){.lg\:justify-items-center{justify-items:center}.lg\:align-items-center{align-items:center}.lg\:place-items-center{place-items:center}}@media(min-width: 1280px){.xl\:justify-items-center{justify-items:center}.xl\:align-items-center{align-items:center}.xl\:place-items-center{place-items:center}}@media(min-width: 1536px){.xxl\:justify-items-center{justify-items:center}.xxl\:align-items-center{align-items:center}.xxl\:place-items-center{place-items:center}}.justify-items-stretch{justify-items:stretch}.align-items-stretch{align-items:stretch}.place-items-stretch{place-items:stretch}@media(min-width: 480px){.xs\:justify-items-stretch{justify-items:stretch}.xs\:align-items-stretch{align-items:stretch}.xs\:place-items-stretch{place-items:stretch}}@media(min-width: 640px){.sm\:justify-items-stretch{justify-items:stretch}.sm\:align-items-stretch{align-items:stretch}.sm\:place-items-stretch{place-items:stretch}}@media(min-width: 768px){.md\:justify-items-stretch{justify-items:stretch}.md\:align-items-stretch{align-items:stretch}.md\:place-items-stretch{place-items:stretch}}@media(min-width: 1024px){.lg\:justify-items-stretch{justify-items:stretch}.lg\:align-items-stretch{align-items:stretch}.lg\:place-items-stretch{place-items:stretch}}@media(min-width: 1280px){.xl\:justify-items-stretch{justify-items:stretch}.xl\:align-items-stretch{align-items:stretch}.xl\:place-items-stretch{place-items:stretch}}@media(min-width: 1536px){.xxl\:justify-items-stretch{justify-items:stretch}.xxl\:align-items-stretch{align-items:stretch}.xxl\:place-items-stretch{place-items:stretch}}[data-theme=light]{--primary: #007bff;--primary-rgb: 0, 123, 255;--primary-lighter: rgb(38.25, 142.8, 255);--primary-light: rgb(25.5, 136.2, 255);--primary-dark: rgb(0, 110.7, 229.5);--primary-darker: rgb(0, 104.55, 216.75);--primary-10: rgba(0, 123, 255, 0.1);--primary-25: rgba(0, 123, 255, 0.25);--primary-50: rgba(0, 123, 255, 0.5);--primary-75: rgba(0, 123, 255, 0.75);--primary-hover: var(--primary-dark);--primary-active: var(--primary-darker);--primary-disabled: var(--primary-50);--secondary: #6c757d;--secondary-rgb: 108, 117, 125;--secondary-lighter: rgb(128.6856223176, 137.7802575107, 145.8643776824);--secondary-light: rgb(121.2553648069, 130.8849785408, 139.4446351931);--secondary-dark: rgb(97.2, 105.3, 112.5);--secondary-darker: rgb(91.8, 99.45, 106.25);--secondary-10: rgba(108, 117, 125, 0.1);--secondary-25: rgba(108, 117, 125, 0.25);--secondary-50: rgba(108, 117, 125, 0.5);--secondary-75: rgba(108, 117, 125, 0.75);--secondary-hover: var(--secondary-dark);--secondary-active: var(--secondary-darker);--secondary-disabled: var(--secondary-50);--success: #28a745;--success-rgb: 40, 167, 69;--success-lighter: rgb(48.7826086957, 203.6673913043, 84.15);--success-light: rgb(45.8550724638, 191.4449275362, 79.1);--success-dark: rgb(36, 150.3, 62.1);--success-darker: rgb(34, 141.95, 58.65);--success-10: rgba(40, 167, 69, 0.1);--success-25: rgba(40, 167, 69, 0.25);--success-50: rgba(40, 167, 69, 0.5);--success-75: rgba(40, 167, 69, 0.75);--success-hover: var(--success-dark);--success-active: var(--success-darker);--success-disabled: var(--success-50);--danger: #dc3545;--danger-rgb: 220, 53, 69;--danger-lighter: rgb(225.25, 83.3, 96.9);--danger-light: rgb(223.5, 73.2, 87.6);--danger-dark: rgb(209.4151898734, 36.2848101266, 52.8721518987);--danger-darker: rgb(197.7810126582, 34.2689873418, 49.9348101266);--danger-10: rgba(220, 53, 69, 0.1);--danger-25: rgba(220, 53, 69, 0.25);--danger-50: rgba(220, 53, 69, 0.5);--danger-75: rgba(220, 53, 69, 0.75);--danger-hover: var(--danger-dark);--danger-active: var(--danger-darker);--danger-disabled: var(--danger-50);--warning: #ffc107;--warning-rgb: 255, 193, 7;--warning-lighter: rgb(255, 202.3, 44.2);--warning-light: rgb(255, 199.2, 31.8);--warning-dark: rgb(235.8, 176.85, 0);--warning-darker: rgb(222.7, 167.025, 0);--warning-10: rgba(255, 193, 7, 0.1);--warning-25: rgba(255, 193, 7, 0.25);--warning-50: rgba(255, 193, 7, 0.5);--warning-75: rgba(255, 193, 7, 0.75);--warning-hover: var(--warning-dark);--warning-active: var(--warning-darker);--warning-disabled: var(--warning-50);--info: #17a2b8;--info-rgb: 23, 162, 184;--info-lighter: rgb(28.05, 197.5695652174, 224.4);--info-light: rgb(26.3666666667, 185.7130434783, 210.9333333333);--info-dark: rgb(20.7, 145.8, 165.6);--info-darker: rgb(19.55, 137.7, 156.4);--info-10: rgba(23, 162, 184, 0.1);--info-25: rgba(23, 162, 184, 0.25);--info-50: rgba(23, 162, 184, 0.5);--info-75: rgba(23, 162, 184, 0.75);--info-hover: var(--info-dark);--info-active: var(--info-darker);--info-disabled: var(--info-50);--light: #f8f9fa;--light-rgb: 248, 249, 250;--light-lighter: rgb(249.05, 249.9, 250.75);--light-light: rgb(248.7, 249.6, 250.5);--light-dark: rgb(218.95, 224.1, 229.25);--light-darker: rgb(204.425, 211.65, 218.875);--light-10: rgba(248, 249, 250, 0.1);--light-25: rgba(248, 249, 250, 0.25);--light-50: rgba(248, 249, 250, 0.5);--light-75: rgba(248, 249, 250, 0.75);--light-hover: var(--light-dark);--light-active: var(--light-darker);--light-disabled: var(--light-50);--dark: #1c1f22;--dark-rgb: 28, 31, 34;--dark-lighter: rgb(58.3483870968, 64.6, 70.8516129032);--dark-light: rgb(48.2322580645, 53.4, 58.5677419355);--dark-dark: rgb(25.2, 27.9, 30.6);--dark-darker: rgb(23.8, 26.35, 28.9);--dark-10: rgba(28, 31, 34, 0.1);--dark-25: rgba(28, 31, 34, 0.25);--dark-50: rgba(28, 31, 34, 0.5);--dark-75: rgba(28, 31, 34, 0.75);--dark-hover: var(--dark-dark);--dark-active: var(--dark-darker);--dark-disabled: var(--dark-50);--bg-primary: var(--light);--bg-secondary: rgb(233.475, 236.55, 239.625);--bg-tertiary: rgb(218.95, 224.1, 229.25);--border-color: rgba(28, 31, 34, 0.1);--border-color-dark: rgba(28, 31, 34, 0.2);--text-primary: var(--dark);--text-secondary: rgba(28, 31, 34, 0.7);--text-tertiary: rgba(28, 31, 34, 0.5);--text-disabled: rgba(28, 31, 34, 0.3);--text-inverse: var(--light);--link-color: var(--primary);--link-hover-color: rgb(0, 110.7, 229.5);--link-active-color: rgb(0, 98.4, 204);--link-visited-color: rgb(25.5, 123.9, 229.5);--nav-bg: var(--bg-primary);--nav-hover: var(--bg-secondary);--nav-active: var(--bg-tertiary);--nav-text: var(--text-primary);--nav-text-hover: var(--primary);--nav-border: var(--border-color);--tooltip-bg: var(--dark);--tooltip-text: var(--light);--tooltip-shadow-color: rgba(0,0,0,0.4);--microtip-transition-duration: 0.518s;--microtip-transition-delay: .2s;--microtip-transition-easing: cubic-bezier(0.16, 1, 0.9, 1);--microtip-font-size: 0.875rem;--microtip-font-weight: 300;--microtip-text-transform: none;--input-bg: rgb(249.4, 250.2, 251)}[data-theme=dark]{--primary: #007bff;--primary-rgb: 0, 123, 255;--primary-lighter: rgb(0, 104.55, 216.75);--primary-light: rgb(0, 110.7, 229.5);--primary-dark: rgb(25.5, 136.2, 255);--primary-darker: rgb(38.25, 142.8, 255);--primary-10: rgba(0, 123, 255, 0.1);--primary-25: rgba(0, 123, 255, 0.25);--primary-50: rgba(0, 123, 255, 0.5);--primary-75: rgba(0, 123, 255, 0.75);--primary-hover: var(--primary-light);--primary-active: var(--primary-lighter);--primary-disabled: var(--primary-50);--secondary: #6c757d;--secondary-rgb: 108, 117, 125;--secondary-lighter: rgb(91.8, 99.45, 106.25);--secondary-light: rgb(97.2, 105.3, 112.5);--secondary-dark: rgb(121.2553648069, 130.8849785408, 139.4446351931);--secondary-darker: rgb(128.6856223176, 137.7802575107, 145.8643776824);--secondary-10: rgba(108, 117, 125, 0.1);--secondary-25: rgba(108, 117, 125, 0.25);--secondary-50: rgba(108, 117, 125, 0.5);--secondary-75: rgba(108, 117, 125, 0.75);--secondary-hover: var(--secondary-light);--secondary-active: var(--secondary-lighter);--secondary-disabled: var(--secondary-50);--success: #28a745;--success-rgb: 40, 167, 69;--success-lighter: rgb(34, 141.95, 58.65);--success-light: rgb(36, 150.3, 62.1);--success-dark: rgb(45.8550724638, 191.4449275362, 79.1);--success-darker: rgb(48.7826086957, 203.6673913043, 84.15);--success-10: rgba(40, 167, 69, 0.1);--success-25: rgba(40, 167, 69, 0.25);--success-50: rgba(40, 167, 69, 0.5);--success-75: rgba(40, 167, 69, 0.75);--success-hover: var(--success-light);--success-active: var(--success-lighter);--success-disabled: var(--success-50);--danger: #dc3545;--danger-rgb: 220, 53, 69;--danger-lighter: rgb(197.7810126582, 34.2689873418, 49.9348101266);--danger-light: rgb(209.4151898734, 36.2848101266, 52.8721518987);--danger-dark: rgb(223.5, 73.2, 87.6);--danger-darker: rgb(225.25, 83.3, 96.9);--danger-10: rgba(220, 53, 69, 0.1);--danger-25: rgba(220, 53, 69, 0.25);--danger-50: rgba(220, 53, 69, 0.5);--danger-75: rgba(220, 53, 69, 0.75);--danger-hover: var(--danger-light);--danger-active: var(--danger-lighter);--danger-disabled: var(--danger-50);--warning: #ffc107;--warning-rgb: 255, 193, 7;--warning-lighter: rgb(222.7, 167.025, 0);--warning-light: rgb(235.8, 176.85, 0);--warning-dark: rgb(255, 199.2, 31.8);--warning-darker: rgb(255, 202.3, 44.2);--warning-10: rgba(255, 193, 7, 0.1);--warning-25: rgba(255, 193, 7, 0.25);--warning-50: rgba(255, 193, 7, 0.5);--warning-75: rgba(255, 193, 7, 0.75);--warning-hover: var(--warning-light);--warning-active: var(--warning-lighter);--warning-disabled: var(--warning-50);--info: #17a2b8;--info-rgb: 23, 162, 184;--info-lighter: rgb(19.55, 137.7, 156.4);--info-light: rgb(20.7, 145.8, 165.6);--info-dark: rgb(26.3666666667, 185.7130434783, 210.9333333333);--info-darker: rgb(28.05, 197.5695652174, 224.4);--info-10: rgba(23, 162, 184, 0.1);--info-25: rgba(23, 162, 184, 0.25);--info-50: rgba(23, 162, 184, 0.5);--info-75: rgba(23, 162, 184, 0.75);--info-hover: var(--info-light);--info-active: var(--info-lighter);--info-disabled: var(--info-50);--light: #f8f9fa;--light-rgb: 248, 249, 250;--light-lighter: rgb(204.425, 211.65, 218.875);--light-light: rgb(218.95, 224.1, 229.25);--light-dark: rgb(248.7, 249.6, 250.5);--light-darker: rgb(249.05, 249.9, 250.75);--light-10: rgba(248, 249, 250, 0.1);--light-25: rgba(248, 249, 250, 0.25);--light-50: rgba(248, 249, 250, 0.5);--light-75: rgba(248, 249, 250, 0.75);--light-hover: var(--light-light);--light-active: var(--light-lighter);--light-disabled: var(--light-50);--dark: #1c1f22;--dark-rgb: 28, 31, 34;--dark-lighter: rgb(23.8, 26.35, 28.9);--dark-light: rgb(25.2, 27.9, 30.6);--dark-dark: rgb(48.2322580645, 53.4, 58.5677419355);--dark-darker: rgb(58.3483870968, 64.6, 70.8516129032);--dark-10: rgba(28, 31, 34, 0.1);--dark-25: rgba(28, 31, 34, 0.25);--dark-50: rgba(28, 31, 34, 0.5);--dark-75: rgba(28, 31, 34, 0.75);--dark-hover: var(--dark-light);--dark-active: var(--dark-lighter);--dark-disabled: var(--dark-50);--bg-primary: var(--dark);--bg-secondary: rgb(38.1161290323, 42.2, 46.2838709677);--bg-tertiary: rgb(48.2322580645, 53.4, 58.5677419355);--border-color: rgba(248, 249, 250, 0.07);--border-color-dark: rgba(248, 249, 250, 0.15);--text-primary: var(--light);--text-secondary: rgba(248, 249, 250, 0.7);--text-tertiary: rgba(248, 249, 250, 0.5);--text-disabled: rgba(248, 249, 250, 0.3);--text-inverse: var(--dark);--link-color: var(--primary);--link-hover-color: rgb(25.5, 136.2, 255);--link-active-color: rgb(51, 149.4, 255);--link-visited-color: rgb(25.5, 123.9, 229.5);--nav-bg: var(--bg-primary);--nav-hover: var(--bg-secondary);--nav-active: var(--bg-tertiary);--nav-text: var(--text-primary);--nav-text-hover: var(--primary);--nav-border: var(--border-color);--tooltip-bg: var(--dark);--tooltip-text: var(--light);--tooltip-shadow-color: rgba(0,0,0,0.4);--microtip-transition-duration: 0.518s;--microtip-transition-delay: .2s;--microtip-transition-easing: cubic-bezier(0.16, 1, 0.9, 1);--microtip-font-size: 0.875rem;--microtip-font-weight: 300;--microtip-text-transform: none;--font-family-heading: var(--font-family-base);--input-bg: rgb(22.4, 24.8, 27.2)}.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.5rem 1rem;border:1px solid rgba(0,0,0,0);border-radius:.375rem;font-weight:500;cursor:pointer;transition:all .2s ease-in-out;font-size:1rem;padding:.5rem 1rem;border-radius:.375rem}.btn:disabled{cursor:not-allowed;opacity:.65}.btn.loading{position:relative;color:rgba(0,0,0,0) !important;pointer-events:none}.btn.loading::after{content:"";position:absolute;width:1rem;height:1rem;border:1px solid;border-radius:50%;border-right-color:rgba(0,0,0,0);animation:spin .75s linear infinite}.btn .btn.icon{width:1.25rem;height:1.25rem}.btn.outline{background-color:rgba(0,0,0,0);border-color:var(--text-secondary);color:var(--text-secondary)}.btn.outline:hover:not(:disabled){background-color:var(--text-secondary);color:var(--text-inverse)}.btn.outline:active:not(:disabled){background-color:var(--text-secondary-active)}.btn.outline:disabled{border-color:var(--text-secondary-disabled);color:var(--text-secondary-disabled)}.btn.outline.primary{background-color:rgba(0,0,0,0);border-color:var(--primary);color:var(--primary)}.btn.outline.primary:hover:not(:disabled){background-color:var(--primary);color:var(--text-inverse)}.btn.outline.primary:active:not(:disabled){background-color:var(--primary-active)}.btn.outline.primary:disabled{border-color:var(--primary-disabled);color:var(--primary-disabled)}.btn.outline.secondary{background-color:rgba(0,0,0,0);border-color:var(--secondary);color:var(--secondary)}.btn.outline.secondary:hover:not(:disabled){background-color:var(--secondary);color:var(--text-inverse)}.btn.outline.secondary:active:not(:disabled){background-color:var(--secondary-active)}.btn.outline.secondary:disabled{border-color:var(--secondary-disabled);color:var(--secondary-disabled)}.btn.outline.success{background-color:rgba(0,0,0,0);border-color:var(--success);color:var(--success)}.btn.outline.success:hover:not(:disabled){background-color:var(--success);color:var(--text-inverse)}.btn.outline.success:active:not(:disabled){background-color:var(--success-active)}.btn.outline.success:disabled{border-color:var(--success-disabled);color:var(--success-disabled)}.btn.outline.danger{background-color:rgba(0,0,0,0);border-color:var(--danger);color:var(--danger)}.btn.outline.danger:hover:not(:disabled){background-color:var(--danger);color:var(--text-inverse)}.btn.outline.danger:active:not(:disabled){background-color:var(--danger-active)}.btn.outline.danger:disabled{border-color:var(--danger-disabled);color:var(--danger-disabled)}.btn.outline.warning{background-color:rgba(0,0,0,0);border-color:var(--warning);color:var(--warning)}.btn.outline.warning:hover:not(:disabled){background-color:var(--warning);color:var(--text-inverse)}.btn.outline.warning:active:not(:disabled){background-color:var(--warning-active)}.btn.outline.warning:disabled{border-color:var(--warning-disabled);color:var(--warning-disabled)}.btn.outline.info{background-color:rgba(0,0,0,0);border-color:var(--info);color:var(--info)}.btn.outline.info:hover:not(:disabled){background-color:var(--info);color:var(--text-inverse)}.btn.outline.info:active:not(:disabled){background-color:var(--info-active)}.btn.outline.info:disabled{border-color:var(--info-disabled);color:var(--info-disabled)}.btn.outline.light{background-color:rgba(0,0,0,0);border-color:var(--light);color:var(--light)}.btn.outline.light:hover:not(:disabled){background-color:var(--light);color:var(--text-inverse)}.btn.outline.light:active:not(:disabled){background-color:var(--light-active)}.btn.outline.light:disabled{border-color:var(--light-disabled);color:var(--light-disabled)}.btn.outline.dark{background-color:rgba(0,0,0,0);border-color:var(--dark);color:var(--dark)}.btn.outline.dark:hover:not(:disabled){background-color:var(--dark);color:var(--text-inverse)}.btn.outline.dark:active:not(:disabled){background-color:var(--dark-active)}.btn.outline.dark:disabled{border-color:var(--dark-disabled);color:var(--dark-disabled)}.btn.ghost{background-color:rgba(0,0,0,0);color:var(--text-secondary)}.btn.ghost:hover:not(:disabled){background-color:var(--text-secondary-10)}.btn.ghost:active:not(:disabled){background-color:var(--text-secondary-25)}.btn.ghost:disabled{color:var(--text-secondary-disabled)}.btn.ghost.primary{background-color:rgba(0,0,0,0);color:var(--primary)}.btn.ghost.primary:hover:not(:disabled){background-color:var(--primary-10)}.btn.ghost.primary:active:not(:disabled){background-color:var(--primary-25)}.btn.ghost.primary:disabled{color:var(--primary-disabled)}.btn.ghost.secondary{background-color:rgba(0,0,0,0);color:var(--secondary)}.btn.ghost.secondary:hover:not(:disabled){background-color:var(--secondary-10)}.btn.ghost.secondary:active:not(:disabled){background-color:var(--secondary-25)}.btn.ghost.secondary:disabled{color:var(--secondary-disabled)}.btn.ghost.success{background-color:rgba(0,0,0,0);color:var(--success)}.btn.ghost.success:hover:not(:disabled){background-color:var(--success-10)}.btn.ghost.success:active:not(:disabled){background-color:var(--success-25)}.btn.ghost.success:disabled{color:var(--success-disabled)}.btn.ghost.danger{background-color:rgba(0,0,0,0);color:var(--danger)}.btn.ghost.danger:hover:not(:disabled){background-color:var(--danger-10)}.btn.ghost.danger:active:not(:disabled){background-color:var(--danger-25)}.btn.ghost.danger:disabled{color:var(--danger-disabled)}.btn.ghost.warning{background-color:rgba(0,0,0,0);color:var(--warning)}.btn.ghost.warning:hover:not(:disabled){background-color:var(--warning-10)}.btn.ghost.warning:active:not(:disabled){background-color:var(--warning-25)}.btn.ghost.warning:disabled{color:var(--warning-disabled)}.btn.ghost.info{background-color:rgba(0,0,0,0);color:var(--info)}.btn.ghost.info:hover:not(:disabled){background-color:var(--info-10)}.btn.ghost.info:active:not(:disabled){background-color:var(--info-25)}.btn.ghost.info:disabled{color:var(--info-disabled)}.btn.ghost.light{background-color:rgba(0,0,0,0);color:var(--light)}.btn.ghost.light:hover:not(:disabled){background-color:var(--light-10)}.btn.ghost.light:active:not(:disabled){background-color:var(--light-25)}.btn.ghost.light:disabled{color:var(--light-disabled)}.btn.ghost.dark{background-color:rgba(0,0,0,0);color:var(--dark)}.btn.ghost.dark:hover:not(:disabled){background-color:var(--dark-10)}.btn.ghost.dark:active:not(:disabled){background-color:var(--dark-25)}.btn.ghost.dark:disabled{color:var(--dark-disabled)}.btn.primary{background-color:var(--primary);color:#fff}.btn.primary:hover:not(:disabled){background-color:var(--primary-hover)}.btn.primary:active:not(:disabled){background-color:var(--primary-active)}.btn.primary:disabled{background-color:var(--primary-disabled)}.btn.secondary{background-color:var(--secondary);color:#fff}.btn.secondary:hover:not(:disabled){background-color:var(--secondary-hover)}.btn.secondary:active:not(:disabled){background-color:var(--secondary-active)}.btn.secondary:disabled{background-color:var(--secondary-disabled)}.btn.success{background-color:var(--success);color:#fff}.btn.success:hover:not(:disabled){background-color:var(--success-hover)}.btn.success:active:not(:disabled){background-color:var(--success-active)}.btn.success:disabled{background-color:var(--success-disabled)}.btn.danger{background-color:var(--danger);color:#fff}.btn.danger:hover:not(:disabled){background-color:var(--danger-hover)}.btn.danger:active:not(:disabled){background-color:var(--danger-active)}.btn.danger:disabled{background-color:var(--danger-disabled)}.btn.warning{background-color:var(--warning);color:#fff}.btn.warning:hover:not(:disabled){background-color:var(--warning-hover)}.btn.warning:active:not(:disabled){background-color:var(--warning-active)}.btn.warning:disabled{background-color:var(--warning-disabled)}.btn.info{background-color:var(--info);color:#fff}.btn.info:hover:not(:disabled){background-color:var(--info-hover)}.btn.info:active:not(:disabled){background-color:var(--info-active)}.btn.info:disabled{background-color:var(--info-disabled)}.btn.light{background-color:var(--light);color:#fff}.btn.light:hover:not(:disabled){background-color:var(--light-hover)}.btn.light:active:not(:disabled){background-color:var(--light-active)}.btn.light:disabled{background-color:var(--light-disabled)}.btn.dark{background-color:var(--dark);color:#fff}.btn.dark:hover:not(:disabled){background-color:var(--dark-hover)}.btn.dark:active:not(:disabled){background-color:var(--dark-active)}.btn.dark:disabled{background-color:var(--dark-disabled)}.btn.xs{font-size:.75rem;padding:.25rem .5rem}.btn.xs .btn.icon{width:.75rem;height:.75rem}.btn.sm{font-size:.875rem;padding:.375rem .75rem}.btn.sm .btn.icon{width:1rem;height:1rem}.btn.md{font-size:1rem;padding:.5rem 1rem}.btn.md .btn.icon{width:1.25rem;height:1.25rem}.btn.lg{font-size:1.125rem;padding:.75rem 1.5rem}.btn.lg .btn.icon{width:1.5rem;height:1.5rem}.btn.xl{font-size:1.25rem;padding:1rem 2rem}.btn.xl .btn.icon{width:1.75rem;height:1.75rem}.btn.rounded{border-radius:.375rem}.btn.pill{border-radius:9999px}.btn.square{border-radius:0}.btn.icon{padding:.5rem}.btn.icon.btn-xs{padding:.25rem}.btn.icon.btn-sm{padding:.375rem}.btn.icon.btn-lg{padding:.75rem}.btn.icon.btn-xl{padding:1rem}@keyframes spin{to{transform:rotate(360deg)}}:root{--shadow-color: 255, 0, 0}.navbar{justify-content:space-between;display:flex;width:100%;margin-left:auto;margin-right:auto;padding-left:1rem;padding-right:1rem}@media(min-width: 480px){.navbar{max-width:450px}}@media(min-width: 640px){.navbar{max-width:540px}}@media(min-width: 768px){.navbar{max-width:720px}}@media(min-width: 1024px){.navbar{max-width:960px}}@media(min-width: 1280px){.navbar{max-width:1140px}}@media(min-width: 1536px){.navbar{max-width:1320px}}.navbar{align-items:center;background-color:var(--nav-bg)}.navbar:hover{transition:box-shadow .2s ease-in-out;box-shadow:0 10px 15px -3px rgba(0,0,0,.2)}.navbar .logo img{max-height:40px;width:auto}.navbar .menu{display:flex;list-style:none;margin:0;padding:0}.navbar .menu li{position:relative}.navbar .menu li a{display:block;padding:1rem;text-decoration:none;color:var(--nav-text);transition:background-color .2s ease-in-out}.navbar .menu li a:hover{background-color:var(--nav-hover)}.navbar .menu li:hover>.submenu{display:block;visibility:visible;opacity:1;pointer-events:auto}.navbar .submenu{background-color:#fff;display:block;visibility:hidden;pointer-events:none;opacity:0;position:absolute;top:100%;left:0;min-width:200px;list-style:none;margin:0;padding:0;background-color:var(--nav-bg);box-shadow:0 2px 5px rgba(0,0,0,.1);transition:opacity .2s ease-in-out,visibility .2s ease-in-out}.navbar .submenu li a{padding:.75rem 1rem}.navbar .submenu .submenu{top:0;left:100%}@media(max-width: 768px){.navbar{flex-direction:column}.navbar .menu{flex-direction:column;width:100%}.navbar .menu .submenu{position:static;display:none;width:100%}.navbar .menu .submenu li a{padding-left:2rem}}.form-group{position:relative;margin-bottom:1.5rem}.form-inline{display:flex;align-items:center;gap:1rem}.form-label{position:absolute;left:1rem;top:50%;transform:translateY(-50%);transition:all .2s ease-in-out;color:var(--text-secondary);pointer-events:none;font-size:1rem}.form-input{width:100%;padding:.85rem;border:1px solid var(--border-color);border-radius:.5rem;background:var(--input-bg);color:var(--text-primary);font-size:1rem;transition:all .2s ease-in-out}.form-input:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 4px rgba(var(--primary-rgb), 0.1)}.form-input:not(:placeholder-shown)+label{top:0;font-size:.875rem;transform:translateY(-50%);background:var(--bg-primary);padding:0 .5rem}.form-input:focus+label{top:0;font-size:.875rem;transform:translateY(-50%);background:var(--bg-primary);padding:0 .5rem;color:var(--primary)}.form-select{width:100%;padding:.85rem;border:1px solid var(--border-color);border-radius:.5rem;background:var(--input-bg);color:var(--text-primary);font-size:1rem;transition:all .2s ease-in-out;appearance:none;background-image:url("data:image/svg+xml,...");background-repeat:no-repeat;background-position:right 1rem center;padding-right:2.5rem}.form-select:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 4px rgba(var(--primary-rgb), 0.1)}.form-select:not(:placeholder-shown)+label{top:0;font-size:.875rem;transform:translateY(-50%);background:var(--bg-primary);padding:0 .5rem}.form-select:focus+label{top:0;font-size:.875rem;transform:translateY(-50%);background:var(--bg-primary);padding:0 .5rem;color:var(--primary)}.form-check{position:relative;display:inline-flex;align-items:center;cursor:pointer;user-select:none}.form-check-input{appearance:none;width:1.25rem;height:1.25rem;border:2px solid var(--border-color);border-radius:.25rem;margin-right:.5rem;cursor:pointer}.form-check-input:checked{background-color:var(--primary);border-color:var(--primary);background-image:url("data:image/svg+xml,...")}.is-valid{border-color:var(--success)}.is-valid+label{color:var(--success)}.is-invalid{border-color:var(--danger)}.is-invalid+label{color:var(--danger)}.form-input-0{width:100%;padding:.85rem;border:1px solid var(--border-color);border-radius:.5rem;background:var(--input-bg);color:var(--text-primary);font-size:1rem;transition:all .2s ease-in-out;padding:0}.form-input-0:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 4px rgba(var(--primary-rgb), 0.1)}.form-input-0:not(:placeholder-shown)+label{top:0;font-size:.875rem;transform:translateY(-50%);background:var(--bg-primary);padding:0 .5rem}.form-input-0:focus+label{top:0;font-size:.875rem;transform:translateY(-50%);background:var(--bg-primary);padding:0 .5rem;color:var(--primary)}.form-input-1{width:100%;padding:.85rem;border:1px solid var(--border-color);border-radius:.5rem;background:var(--input-bg);color:var(--text-primary);font-size:1rem;transition:all .2s ease-in-out;padding:1}.form-input-1:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 4px rgba(var(--primary-rgb), 0.1)}.form-input-1:not(:placeholder-shown)+label{top:0;font-size:.875rem;transform:translateY(-50%);background:var(--bg-primary);padding:0 .5rem}.form-input-1:focus+label{top:0;font-size:.875rem;transform:translateY(-50%);background:var(--bg-primary);padding:0 .5rem;color:var(--primary)}.form-input-2{width:100%;padding:.85rem;border:1px solid var(--border-color);border-radius:.5rem;background:var(--input-bg);color:var(--text-primary);font-size:1rem;transition:all .2s ease-in-out;padding:2}.form-input-2:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 4px rgba(var(--primary-rgb), 0.1)}.form-input-2:not(:placeholder-shown)+label{top:0;font-size:.875rem;transform:translateY(-50%);background:var(--bg-primary);padding:0 .5rem}.form-input-2:focus+label{top:0;font-size:.875rem;transform:translateY(-50%);background:var(--bg-primary);padding:0 .5rem;color:var(--primary)}.form-input-3{width:100%;padding:.85rem;border:1px solid var(--border-color);border-radius:.5rem;background:var(--input-bg);color:var(--text-primary);font-size:1rem;transition:all .2s ease-in-out;padding:3}.form-input-3:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 4px rgba(var(--primary-rgb), 0.1)}.form-input-3:not(:placeholder-shown)+label{top:0;font-size:.875rem;transform:translateY(-50%);background:var(--bg-primary);padding:0 .5rem}.form-input-3:focus+label{top:0;font-size:.875rem;transform:translateY(-50%);background:var(--bg-primary);padding:0 .5rem;color:var(--primary)}.form-input-4{width:100%;padding:.85rem;border:1px solid var(--border-color);border-radius:.5rem;background:var(--input-bg);color:var(--text-primary);font-size:1rem;transition:all .2s ease-in-out;padding:4}.form-input-4:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 4px rgba(var(--primary-rgb), 0.1)}.form-input-4:not(:placeholder-shown)+label{top:0;font-size:.875rem;transform:translateY(-50%);background:var(--bg-primary);padding:0 .5rem}.form-input-4:focus+label{top:0;font-size:.875rem;transform:translateY(-50%);background:var(--bg-primary);padding:0 .5rem;color:var(--primary)}.form-input-5{width:100%;padding:.85rem;border:1px solid var(--border-color);border-radius:.5rem;background:var(--input-bg);color:var(--text-primary);font-size:1rem;transition:all .2s ease-in-out;padding:5}.form-input-5:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 4px rgba(var(--primary-rgb), 0.1)}.form-input-5:not(:placeholder-shown)+label{top:0;font-size:.875rem;transform:translateY(-50%);background:var(--bg-primary);padding:0 .5rem}.form-input-5:focus+label{top:0;font-size:.875rem;transform:translateY(-50%);background:var(--bg-primary);padding:0 .5rem;color:var(--primary)}@media(prefers-reduced-motion: reduce){.form-input,.form-label{transition:none}}/*# sourceMappingURL=index.css.map */
|