.custom-toast{position:fixed;top:24px;right:24px;z-index:250;width:auto;pointer-events:none}.toast-shell{display:flex;justify-content:flex-end;width:100%;pointer-events:none}.toast-content{display:flex;gap:10px;align-items:center;min-width:300px;max-width:450px;width:-moz-max-content;width:max-content;padding:12px 16px 16px 14px;border-radius:12px;background:var(--toast-bg);color:var(--toast-text)!important;border:1px solid var(--toast-border);box-shadow:0 12px 32px -12px rgba(15,23,42,.24);position:relative;overflow:hidden;pointer-events:auto;animation:toast-pop .36s cubic-bezier(.21,.8,.43,.99);-webkit-backdrop-filter:blur(18px) saturate(150%);backdrop-filter:blur(18px) saturate(150%)}.toast-content:before{inset:0;border-radius:inherit;background:radial-gradient(circle at top right,hsla(0,0%,100%,.38),transparent 65%)}.toast-content:after,.toast-content:before{content:"";position:absolute;pointer-events:none}.toast-content:after{inset:1px;border-radius:11px;border:1px solid var(--toast-inner-border);opacity:.6}.toast-glow{position:absolute;inset:0;background:radial-gradient(120% 120% at -20% -20%,var(--toast-glow),transparent 55%);opacity:.6;pointer-events:none;z-index:0}.toast-icon{z-index:1;flex:0 0 32px;height:32px;width:32px;display:flex;align-items:center;justify-content:center;border-radius:10px;background:var(--toast-accent-surface);border:1px solid var(--toast-icon-border);box-shadow:0 8px 20px -8px var(--toast-accent-shadow)}.toast-icon__glyph{color:var(--toast-accent)!important}.toast-message{z-index:1;color:inherit!important;font-size:.875rem;line-height:1.4;font-weight:500;letter-spacing:.01em}.toast-close{z-index:1;margin-left:auto;margin-right:-4px}.toast-close__btn{min-width:28px!important;min-height:28px!important;padding:4px!important;border-radius:8px!important;color:var(--toast-accent)!important;transition:background-color .2s ease,color .2s ease;background-color:transparent!important;border:1px solid transparent!important}.toast-close__btn:hover{background-color:var(--toast-accent-hover)!important;color:var(--toast-text)!important;border-color:var(--toast-accent-hover-border)!important}.toast-progress-container{position:absolute;inset:auto 14px 8px 14px;height:3px;border-radius:999px;background:var(--toast-progress-track);overflow:hidden;z-index:1}.toast-progress{height:100%;width:100%;background:var(--toast-progress);animation:toast-progress var(--toast-timeout,3s) linear forwards;transform-origin:left center}.toast-success{--toast-bg:linear-gradient(135deg,#f2fbf5,#e0f4e6);--toast-text:#104329;--toast-accent:#21a366;--toast-accent-hover:rgba(33,163,102,.16);--toast-accent-hover-border:rgba(33,163,102,.28);--toast-accent-surface:rgba(33,163,102,.18);--toast-icon-border:rgba(33,163,102,.35);--toast-accent-shadow:rgba(33,163,102,.28);--toast-border:rgba(33,163,102,.22);--toast-inner-border:hsla(0,0%,100%,.6);--toast-glow:rgba(59,184,121,.35);--toast-progress-track:rgba(33,163,102,.12);--toast-progress:linear-gradient(90deg,rgba(33,163,102,.8),rgba(33,163,102,.35))}.toast-error{--toast-bg:linear-gradient(135deg,#fff0f0,#ffe0de);--toast-text:#611621;--toast-accent:#d13f52;--toast-accent-hover:rgba(209,63,82,.18);--toast-accent-hover-border:rgba(209,63,82,.3);--toast-accent-surface:rgba(209,63,82,.18);--toast-icon-border:rgba(209,63,82,.35);--toast-accent-shadow:rgba(209,63,82,.28);--toast-border:rgba(209,63,82,.22);--toast-inner-border:hsla(0,0%,100%,.55);--toast-glow:rgba(209,63,82,.32);--toast-progress-track:rgba(209,63,82,.12);--toast-progress:linear-gradient(90deg,rgba(209,63,82,.8),rgba(209,63,82,.35))}.toast-pending{--toast-bg:linear-gradient(135deg,#fff9eb,#fff3d3);--toast-text:#5d4211;--toast-accent:#d4891f;--toast-accent-hover:rgba(212,137,31,.16);--toast-accent-hover-border:rgba(212,137,31,.3);--toast-accent-surface:rgba(212,137,31,.22);--toast-icon-border:rgba(212,137,31,.32);--toast-accent-shadow:rgba(212,137,31,.28);--toast-border:rgba(212,137,31,.2);--toast-inner-border:hsla(0,0%,100%,.56);--toast-glow:rgba(212,137,31,.28);--toast-progress-track:rgba(212,137,31,.12);--toast-progress:linear-gradient(90deg,rgba(212,137,31,.8),rgba(212,137,31,.35))}.toast-transition-enter-active,.toast-transition-leave-active{transition:opacity .28s cubic-bezier(.2,.8,.4,1),transform .28s cubic-bezier(.2,.8,.4,1)}.toast-transition-enter,.toast-transition-leave-to{opacity:0;transform:translateY(-16px) scale(.94)}.toast-transition-leave-active .toast-content{filter:blur(1px)}@keyframes toast-pop{0%{opacity:0;transform:translateY(-10px) scale(.9)}60%{opacity:1;transform:translateY(4px) scale(1.03)}to{opacity:1;transform:translateY(0) scale(1)}}@keyframes toast-progress{0%{transform:scaleX(1);opacity:1}to{transform:scaleX(0);opacity:.3}}@media (max-width:480px){.custom-toast{top:16px;right:16px;left:16px}.toast-shell{justify-content:center}.toast-content{min-width:0;width:100%;max-width:280px;padding:10px 14px 14px 12px;gap:8px}.toast-message{font-size:.8125rem}.toast-progress-container{inset:auto 12px 6px 12px}}@media (prefers-reduced-motion:reduce){.toast-content{animation:none}.toast-transition-enter-active,.toast-transition-leave-active{transition:none}.toast-progress{animation:none}}:root{--primary:#8b1a29;--primary-1:#1e88e5;--secondary:#424242;--accent:#82b1ff;--info:#2196f3;--warning:#ffc107;--success:#4caf50;--success-70:#388e3c;--success-90:#c8e6c9;--error:#ff5252;--error-90:#ffcdd2;--grey-05:#e0e0e0;--grey-10:#bcbdbd;--grey-15:#999;--grey-23:#5a5b5b;--blue-80:#223947;--blue-90:#092332;--orange-70:#ff9800;--slate-50:#64748b;--slate-60:#334155;--slate-70:#18181b;--slate-80:#475569;--slate-90:#0f172a;--primary-purple:#422264;--secondary-purple:#f3f4f7;--tertiary-purple:#ede8f2}*{overscroll-behavior:none;-ms-overflow-style:none;scrollbar-width:none}::-webkit-scrollbar{display:none}.ma-1px{margin:1px}.mt-1px{margin-top:1px}.mr-1px{margin-right:1px}.mb-1px{margin-bottom:1px}.ml-1px,.mx-1px{margin-left:1px}.mx-1px{margin-right:1px}.my-1px{margin-top:1px;margin-bottom:1px}.pa-1px{padding:1px}.pt-1px{padding-top:1px}.pr-1px{padding-right:1px}.pb-1px{padding-bottom:1px}.pl-1px,.px-1px{padding-left:1px}.px-1px{padding-right:1px}.py-1px{padding-top:1px;padding-bottom:1px}.w-1px{width:1px}.h-1px{height:1px}.w-1-percentage{width:1%}.h-1-percentage{height:1%}.min-w-1px{min-width:1px}.min-h-1px{min-height:1px}.max-w-1px{max-width:1px}.max-h-1px{max-height:1px}.font-1px{font-size:1px!important}.lh-1px{line-height:1px}.lh-1-percentage{line-height:1%}.border-1px{border-width:1px}.border-t-1px{border-top-width:1px}.border-r-1px{border-right-width:1px}.border-b-1px{border-bottom-width:1px}.border-l-1px{border-left-width:1px}.rounded-1px{border-radius:1px}.rounded-t-1px{border-top-left-radius:1px;border-top-right-radius:1px}.rounded-r-1px{border-top-right-radius:1px}.rounded-b-1px,.rounded-r-1px{border-bottom-right-radius:1px}.rounded-b-1px,.rounded-l-1px{border-bottom-left-radius:1px}.rounded-l-1px,.rounded-tl-1px{border-top-left-radius:1px}.rounded-tr-1px{border-top-right-radius:1px}.rounded-br-1px{border-bottom-right-radius:1px}.rounded-bl-1px{border-bottom-left-radius:1px}.rounded-1-percentage{border-radius:1%}.gap-1{gap:1px}.gap-x-1{-moz-column-gap:1px;column-gap:1px}.gap-y-1{row-gap:1px}.top-1{top:1px}.right-1{right:1px}.bottom-1{bottom:1px}.left-1{left:1px}.z-1{z-index:1}.ma-2px{margin:2px}.mt-2px{margin-top:2px}.mr-2px{margin-right:2px}.mb-2px{margin-bottom:2px}.ml-2px,.mx-2px{margin-left:2px}.mx-2px{margin-right:2px}.my-2px{margin-top:2px;margin-bottom:2px}.pa-2px{padding:2px}.pt-2px{padding-top:2px}.pr-2px{padding-right:2px}.pb-2px{padding-bottom:2px}.pl-2px,.px-2px{padding-left:2px}.px-2px{padding-right:2px}.py-2px{padding-top:2px;padding-bottom:2px}.w-2px{width:2px}.h-2px{height:2px}.w-2-percentage{width:2%}.h-2-percentage{height:2%}.min-w-2px{min-width:2px}.min-h-2px{min-height:2px}.max-w-2px{max-width:2px}.max-h-2px{max-height:2px}.font-2px{font-size:2px!important}.lh-2px{line-height:2px}.lh-2-percentage{line-height:2%}.border-2px{border-width:2px}.border-t-2px{border-top-width:2px}.border-r-2px{border-right-width:2px}.border-b-2px{border-bottom-width:2px}.border-l-2px{border-left-width:2px}.rounded-2px{border-radius:2px}.rounded-t-2px{border-top-left-radius:2px;border-top-right-radius:2px}.rounded-r-2px{border-top-right-radius:2px}.rounded-b-2px,.rounded-r-2px{border-bottom-right-radius:2px}.rounded-b-2px,.rounded-l-2px{border-bottom-left-radius:2px}.rounded-l-2px,.rounded-tl-2px{border-top-left-radius:2px}.rounded-tr-2px{border-top-right-radius:2px}.rounded-br-2px{border-bottom-right-radius:2px}.rounded-bl-2px{border-bottom-left-radius:2px}.rounded-2-percentage{border-radius:2%}.gap-2{gap:2px}.gap-x-2{-moz-column-gap:2px;column-gap:2px}.gap-y-2{row-gap:2px}.top-2{top:2px}.right-2{right:2px}.bottom-2{bottom:2px}.left-2{left:2px}.z-2{z-index:2}.ma-3px{margin:3px}.mt-3px{margin-top:3px}.mr-3px{margin-right:3px}.mb-3px{margin-bottom:3px}.ml-3px,.mx-3px{margin-left:3px}.mx-3px{margin-right:3px}.my-3px{margin-top:3px;margin-bottom:3px}.pa-3px{padding:3px}.pt-3px{padding-top:3px}.pr-3px{padding-right:3px}.pb-3px{padding-bottom:3px}.pl-3px,.px-3px{padding-left:3px}.px-3px{padding-right:3px}.py-3px{padding-top:3px;padding-bottom:3px}.w-3px{width:3px}.h-3px{height:3px}.w-3-percentage{width:3%}.h-3-percentage{height:3%}.min-w-3px{min-width:3px}.min-h-3px{min-height:3px}.max-w-3px{max-width:3px}.max-h-3px{max-height:3px}.font-3px{font-size:3px!important}.lh-3px{line-height:3px}.lh-3-percentage{line-height:3%}.border-3px{border-width:3px}.border-t-3px{border-top-width:3px}.border-r-3px{border-right-width:3px}.border-b-3px{border-bottom-width:3px}.border-l-3px{border-left-width:3px}.rounded-3px{border-radius:3px}.rounded-t-3px{border-top-left-radius:3px;border-top-right-radius:3px}.rounded-r-3px{border-top-right-radius:3px}.rounded-b-3px,.rounded-r-3px{border-bottom-right-radius:3px}.rounded-b-3px,.rounded-l-3px{border-bottom-left-radius:3px}.rounded-l-3px,.rounded-tl-3px{border-top-left-radius:3px}.rounded-tr-3px{border-top-right-radius:3px}.rounded-br-3px{border-bottom-right-radius:3px}.rounded-bl-3px{border-bottom-left-radius:3px}.rounded-3-percentage{border-radius:3%}.gap-3{gap:3px}.gap-x-3{-moz-column-gap:3px;column-gap:3px}.gap-y-3{row-gap:3px}.top-3{top:3px}.right-3{right:3px}.bottom-3{bottom:3px}.left-3{left:3px}.z-3{z-index:3}.ma-4px{margin:4px}.mt-4px{margin-top:4px}.mr-4px{margin-right:4px}.mb-4px{margin-bottom:4px}.ml-4px,.mx-4px{margin-left:4px}.mx-4px{margin-right:4px}.my-4px{margin-top:4px;margin-bottom:4px}.pa-4px{padding:4px}.pt-4px{padding-top:4px}.pr-4px{padding-right:4px}.pb-4px{padding-bottom:4px}.pl-4px,.px-4px{padding-left:4px}.px-4px{padding-right:4px}.py-4px{padding-top:4px;padding-bottom:4px}.w-4px{width:4px}.h-4px{height:4px}.w-4-percentage{width:4%}.h-4-percentage{height:4%}.min-w-4px{min-width:4px}.min-h-4px{min-height:4px}.max-w-4px{max-width:4px}.max-h-4px{max-height:4px}.font-4px{font-size:4px!important}.lh-4px{line-height:4px}.lh-4-percentage{line-height:4%}.border-4px{border-width:4px}.border-t-4px{border-top-width:4px}.border-r-4px{border-right-width:4px}.border-b-4px{border-bottom-width:4px}.border-l-4px{border-left-width:4px}.rounded-4px{border-radius:4px}.rounded-t-4px{border-top-left-radius:4px;border-top-right-radius:4px}.rounded-r-4px{border-top-right-radius:4px}.rounded-b-4px,.rounded-r-4px{border-bottom-right-radius:4px}.rounded-b-4px,.rounded-l-4px{border-bottom-left-radius:4px}.rounded-l-4px,.rounded-tl-4px{border-top-left-radius:4px}.rounded-tr-4px{border-top-right-radius:4px}.rounded-br-4px{border-bottom-right-radius:4px}.rounded-bl-4px{border-bottom-left-radius:4px}.rounded-4-percentage{border-radius:4%}.gap-4{gap:4px}.gap-x-4{-moz-column-gap:4px;column-gap:4px}.gap-y-4{row-gap:4px}.top-4{top:4px}.right-4{right:4px}.bottom-4{bottom:4px}.left-4{left:4px}.z-4{z-index:4}.ma-5px{margin:5px}.mt-5px{margin-top:5px}.mr-5px{margin-right:5px}.mb-5px{margin-bottom:5px}.ml-5px,.mx-5px{margin-left:5px}.mx-5px{margin-right:5px}.my-5px{margin-top:5px;margin-bottom:5px}.pa-5px{padding:5px}.pt-5px{padding-top:5px}.pr-5px{padding-right:5px}.pb-5px{padding-bottom:5px}.pl-5px,.px-5px{padding-left:5px}.px-5px{padding-right:5px}.py-5px{padding-top:5px;padding-bottom:5px}.w-5px{width:5px}.h-5px{height:5px}.w-5-percentage{width:5%}.h-5-percentage{height:5%}.min-w-5px{min-width:5px}.min-h-5px{min-height:5px}.max-w-5px{max-width:5px}.max-h-5px{max-height:5px}.font-5px{font-size:5px!important}.lh-5px{line-height:5px}.lh-5-percentage{line-height:5%}.border-5px{border-width:5px}.border-t-5px{border-top-width:5px}.border-r-5px{border-right-width:5px}.border-b-5px{border-bottom-width:5px}.border-l-5px{border-left-width:5px}.rounded-5px{border-radius:5px}.rounded-t-5px{border-top-left-radius:5px;border-top-right-radius:5px}.rounded-r-5px{border-top-right-radius:5px}.rounded-b-5px,.rounded-r-5px{border-bottom-right-radius:5px}.rounded-b-5px,.rounded-l-5px{border-bottom-left-radius:5px}.rounded-l-5px,.rounded-tl-5px{border-top-left-radius:5px}.rounded-tr-5px{border-top-right-radius:5px}.rounded-br-5px{border-bottom-right-radius:5px}.rounded-bl-5px{border-bottom-left-radius:5px}.rounded-5-percentage{border-radius:5%}.gap-5{gap:5px}.gap-x-5{-moz-column-gap:5px;column-gap:5px}.gap-y-5{row-gap:5px}.top-5{top:5px}.right-5{right:5px}.bottom-5{bottom:5px}.left-5{left:5px}.z-5{z-index:5}.ma-6px{margin:6px}.mt-6px{margin-top:6px}.mr-6px{margin-right:6px}.mb-6px{margin-bottom:6px}.ml-6px,.mx-6px{margin-left:6px}.mx-6px{margin-right:6px}.my-6px{margin-top:6px;margin-bottom:6px}.pa-6px{padding:6px}.pt-6px{padding-top:6px}.pr-6px{padding-right:6px}.pb-6px{padding-bottom:6px}.pl-6px,.px-6px{padding-left:6px}.px-6px{padding-right:6px}.py-6px{padding-top:6px;padding-bottom:6px}.w-6px{width:6px}.h-6px{height:6px}.w-6-percentage{width:6%}.h-6-percentage{height:6%}.min-w-6px{min-width:6px}.min-h-6px{min-height:6px}.max-w-6px{max-width:6px}.max-h-6px{max-height:6px}.font-6px{font-size:6px!important}.lh-6px{line-height:6px}.lh-6-percentage{line-height:6%}.border-6px{border-width:6px}.border-t-6px{border-top-width:6px}.border-r-6px{border-right-width:6px}.border-b-6px{border-bottom-width:6px}.border-l-6px{border-left-width:6px}.rounded-6px{border-radius:6px}.rounded-t-6px{border-top-left-radius:6px;border-top-right-radius:6px}.rounded-r-6px{border-top-right-radius:6px}.rounded-b-6px,.rounded-r-6px{border-bottom-right-radius:6px}.rounded-b-6px,.rounded-l-6px{border-bottom-left-radius:6px}.rounded-l-6px,.rounded-tl-6px{border-top-left-radius:6px}.rounded-tr-6px{border-top-right-radius:6px}.rounded-br-6px{border-bottom-right-radius:6px}.rounded-bl-6px{border-bottom-left-radius:6px}.rounded-6-percentage{border-radius:6%}.gap-6{gap:6px}.gap-x-6{-moz-column-gap:6px;column-gap:6px}.gap-y-6{row-gap:6px}.top-6{top:6px}.right-6{right:6px}.bottom-6{bottom:6px}.left-6{left:6px}.z-6{z-index:6}.ma-7px{margin:7px}.mt-7px{margin-top:7px}.mr-7px{margin-right:7px}.mb-7px{margin-bottom:7px}.ml-7px,.mx-7px{margin-left:7px}.mx-7px{margin-right:7px}.my-7px{margin-top:7px;margin-bottom:7px}.pa-7px{padding:7px}.pt-7px{padding-top:7px}.pr-7px{padding-right:7px}.pb-7px{padding-bottom:7px}.pl-7px,.px-7px{padding-left:7px}.px-7px{padding-right:7px}.py-7px{padding-top:7px;padding-bottom:7px}.w-7px{width:7px}.h-7px{height:7px}.w-7-percentage{width:7%}.h-7-percentage{height:7%}.min-w-7px{min-width:7px}.min-h-7px{min-height:7px}.max-w-7px{max-width:7px}.max-h-7px{max-height:7px}.font-7px{font-size:7px!important}.lh-7px{line-height:7px}.lh-7-percentage{line-height:7%}.border-7px{border-width:7px}.border-t-7px{border-top-width:7px}.border-r-7px{border-right-width:7px}.border-b-7px{border-bottom-width:7px}.border-l-7px{border-left-width:7px}.rounded-7px{border-radius:7px}.rounded-t-7px{border-top-left-radius:7px;border-top-right-radius:7px}.rounded-r-7px{border-top-right-radius:7px}.rounded-b-7px,.rounded-r-7px{border-bottom-right-radius:7px}.rounded-b-7px,.rounded-l-7px{border-bottom-left-radius:7px}.rounded-l-7px,.rounded-tl-7px{border-top-left-radius:7px}.rounded-tr-7px{border-top-right-radius:7px}.rounded-br-7px{border-bottom-right-radius:7px}.rounded-bl-7px{border-bottom-left-radius:7px}.rounded-7-percentage{border-radius:7%}.gap-7{gap:7px}.gap-x-7{-moz-column-gap:7px;column-gap:7px}.gap-y-7{row-gap:7px}.top-7{top:7px}.right-7{right:7px}.bottom-7{bottom:7px}.left-7{left:7px}.z-7{z-index:7}.ma-8px{margin:8px}.mt-8px{margin-top:8px}.mr-8px{margin-right:8px}.mb-8px{margin-bottom:8px}.ml-8px,.mx-8px{margin-left:8px}.mx-8px{margin-right:8px}.my-8px{margin-top:8px;margin-bottom:8px}.pa-8px{padding:8px}.pt-8px{padding-top:8px}.pr-8px{padding-right:8px}.pb-8px{padding-bottom:8px}.pl-8px,.px-8px{padding-left:8px}.px-8px{padding-right:8px}.py-8px{padding-top:8px;padding-bottom:8px}.w-8px{width:8px}.h-8px{height:8px}.w-8-percentage{width:8%}.h-8-percentage{height:8%}.min-w-8px{min-width:8px}.min-h-8px{min-height:8px}.max-w-8px{max-width:8px}.max-h-8px{max-height:8px}.font-8px{font-size:8px!important}.lh-8px{line-height:8px}.lh-8-percentage{line-height:8%}.border-8px{border-width:8px}.border-t-8px{border-top-width:8px}.border-r-8px{border-right-width:8px}.border-b-8px{border-bottom-width:8px}.border-l-8px{border-left-width:8px}.rounded-8px{border-radius:8px}.rounded-t-8px{border-top-left-radius:8px;border-top-right-radius:8px}.rounded-r-8px{border-top-right-radius:8px}.rounded-b-8px,.rounded-r-8px{border-bottom-right-radius:8px}.rounded-b-8px,.rounded-l-8px{border-bottom-left-radius:8px}.rounded-l-8px,.rounded-tl-8px{border-top-left-radius:8px}.rounded-tr-8px{border-top-right-radius:8px}.rounded-br-8px{border-bottom-right-radius:8px}.rounded-bl-8px{border-bottom-left-radius:8px}.rounded-8-percentage{border-radius:8%}.gap-8{gap:8px}.gap-x-8{-moz-column-gap:8px;column-gap:8px}.gap-y-8{row-gap:8px}.top-8{top:8px}.right-8{right:8px}.bottom-8{bottom:8px}.left-8{left:8px}.z-8{z-index:8}.ma-9px{margin:9px}.mt-9px{margin-top:9px}.mr-9px{margin-right:9px}.mb-9px{margin-bottom:9px}.ml-9px,.mx-9px{margin-left:9px}.mx-9px{margin-right:9px}.my-9px{margin-top:9px;margin-bottom:9px}.pa-9px{padding:9px}.pt-9px{padding-top:9px}.pr-9px{padding-right:9px}.pb-9px{padding-bottom:9px}.pl-9px,.px-9px{padding-left:9px}.px-9px{padding-right:9px}.py-9px{padding-top:9px;padding-bottom:9px}.w-9px{width:9px}.h-9px{height:9px}.w-9-percentage{width:9%}.h-9-percentage{height:9%}.min-w-9px{min-width:9px}.min-h-9px{min-height:9px}.max-w-9px{max-width:9px}.max-h-9px{max-height:9px}.font-9px{font-size:9px!important}.lh-9px{line-height:9px}.lh-9-percentage{line-height:9%}.border-9px{border-width:9px}.border-t-9px{border-top-width:9px}.border-r-9px{border-right-width:9px}.border-b-9px{border-bottom-width:9px}.border-l-9px{border-left-width:9px}.rounded-9px{border-radius:9px}.rounded-t-9px{border-top-left-radius:9px;border-top-right-radius:9px}.rounded-r-9px{border-top-right-radius:9px}.rounded-b-9px,.rounded-r-9px{border-bottom-right-radius:9px}.rounded-b-9px,.rounded-l-9px{border-bottom-left-radius:9px}.rounded-l-9px,.rounded-tl-9px{border-top-left-radius:9px}.rounded-tr-9px{border-top-right-radius:9px}.rounded-br-9px{border-bottom-right-radius:9px}.rounded-bl-9px{border-bottom-left-radius:9px}.rounded-9-percentage{border-radius:9%}.gap-9{gap:9px}.gap-x-9{-moz-column-gap:9px;column-gap:9px}.gap-y-9{row-gap:9px}.top-9{top:9px}.right-9{right:9px}.bottom-9{bottom:9px}.left-9{left:9px}.z-9{z-index:9}.ma-10px{margin:10px}.mt-10px{margin-top:10px}.mr-10px{margin-right:10px}.mb-10px{margin-bottom:10px}.ml-10px,.mx-10px{margin-left:10px}.mx-10px{margin-right:10px}.my-10px{margin-top:10px;margin-bottom:10px}.pa-10px{padding:10px}.pt-10px{padding-top:10px}.pr-10px{padding-right:10px}.pb-10px{padding-bottom:10px}.pl-10px,.px-10px{padding-left:10px}.px-10px{padding-right:10px}.py-10px{padding-top:10px;padding-bottom:10px}.w-10px{width:10px}.h-10px{height:10px}.w-10-percentage{width:10%}.h-10-percentage{height:10%}.min-w-10px{min-width:10px}.min-h-10px{min-height:10px}.max-w-10px{max-width:10px}.max-h-10px{max-height:10px}.font-10px{font-size:10px!important}.lh-10px{line-height:10px}.lh-10-percentage{line-height:10%}.border-10px{border-width:10px}.border-t-10px{border-top-width:10px}.border-r-10px{border-right-width:10px}.border-b-10px{border-bottom-width:10px}.border-l-10px{border-left-width:10px}.rounded-10px{border-radius:10px}.rounded-t-10px{border-top-left-radius:10px;border-top-right-radius:10px}.rounded-r-10px{border-top-right-radius:10px;border-bottom-right-radius:10px}.rounded-b-10px{border-bottom-left-radius:10px;border-bottom-right-radius:10px}.rounded-l-10px{border-bottom-left-radius:10px}.rounded-l-10px,.rounded-tl-10px{border-top-left-radius:10px}.rounded-tr-10px{border-top-right-radius:10px}.rounded-br-10px{border-bottom-right-radius:10px}.rounded-bl-10px{border-bottom-left-radius:10px}.rounded-10-percentage{border-radius:10%}.gap-10{gap:10px}.gap-x-10{-moz-column-gap:10px;column-gap:10px}.gap-y-10{row-gap:10px}.top-10{top:10px}.right-10{right:10px}.bottom-10{bottom:10px}.left-10{left:10px}.z-10{z-index:10}.ma-11px{margin:11px}.mt-11px{margin-top:11px}.mr-11px{margin-right:11px}.mb-11px{margin-bottom:11px}.ml-11px,.mx-11px{margin-left:11px}.mx-11px{margin-right:11px}.my-11px{margin-top:11px;margin-bottom:11px}.pa-11px{padding:11px}.pt-11px{padding-top:11px}.pr-11px{padding-right:11px}.pb-11px{padding-bottom:11px}.pl-11px,.px-11px{padding-left:11px}.px-11px{padding-right:11px}.py-11px{padding-top:11px;padding-bottom:11px}.w-11px{width:11px}.h-11px{height:11px}.w-11-percentage{width:11%}.h-11-percentage{height:11%}.min-w-11px{min-width:11px}.min-h-11px{min-height:11px}.max-w-11px{max-width:11px}.max-h-11px{max-height:11px}.font-11px{font-size:11px!important}.lh-11px{line-height:11px}.lh-11-percentage{line-height:11%}.border-11px{border-width:11px}.border-t-11px{border-top-width:11px}.border-r-11px{border-right-width:11px}.border-b-11px{border-bottom-width:11px}.border-l-11px{border-left-width:11px}.rounded-11px{border-radius:11px}.rounded-t-11px{border-top-left-radius:11px;border-top-right-radius:11px}.rounded-r-11px{border-top-right-radius:11px;border-bottom-right-radius:11px}.rounded-b-11px{border-bottom-left-radius:11px;border-bottom-right-radius:11px}.rounded-l-11px{border-bottom-left-radius:11px}.rounded-l-11px,.rounded-tl-11px{border-top-left-radius:11px}.rounded-tr-11px{border-top-right-radius:11px}.rounded-br-11px{border-bottom-right-radius:11px}.rounded-bl-11px{border-bottom-left-radius:11px}.rounded-11-percentage{border-radius:11%}.gap-11{gap:11px}.gap-x-11{-moz-column-gap:11px;column-gap:11px}.gap-y-11{row-gap:11px}.top-11{top:11px}.right-11{right:11px}.bottom-11{bottom:11px}.left-11{left:11px}.z-11{z-index:11}.ma-12px{margin:12px}.mt-12px{margin-top:12px}.mr-12px{margin-right:12px}.mb-12px{margin-bottom:12px}.ml-12px,.mx-12px{margin-left:12px}.mx-12px{margin-right:12px}.my-12px{margin-top:12px;margin-bottom:12px}.pa-12px{padding:12px}.pt-12px{padding-top:12px}.pr-12px{padding-right:12px}.pb-12px{padding-bottom:12px}.pl-12px,.px-12px{padding-left:12px}.px-12px{padding-right:12px}.py-12px{padding-top:12px;padding-bottom:12px}.w-12px{width:12px}.h-12px{height:12px}.w-12-percentage{width:12%}.h-12-percentage{height:12%}.min-w-12px{min-width:12px}.min-h-12px{min-height:12px}.max-w-12px{max-width:12px}.max-h-12px{max-height:12px}.font-12px{font-size:12px!important}.lh-12px{line-height:12px}.lh-12-percentage{line-height:12%}.border-12px{border-width:12px}.border-t-12px{border-top-width:12px}.border-r-12px{border-right-width:12px}.border-b-12px{border-bottom-width:12px}.border-l-12px{border-left-width:12px}.rounded-12px{border-radius:12px}.rounded-t-12px{border-top-left-radius:12px;border-top-right-radius:12px}.rounded-r-12px{border-top-right-radius:12px;border-bottom-right-radius:12px}.rounded-b-12px{border-bottom-left-radius:12px;border-bottom-right-radius:12px}.rounded-l-12px{border-bottom-left-radius:12px}.rounded-l-12px,.rounded-tl-12px{border-top-left-radius:12px}.rounded-tr-12px{border-top-right-radius:12px}.rounded-br-12px{border-bottom-right-radius:12px}.rounded-bl-12px{border-bottom-left-radius:12px}.rounded-12-percentage{border-radius:12%}.gap-12{gap:12px}.gap-x-12{-moz-column-gap:12px;column-gap:12px}.gap-y-12{row-gap:12px}.top-12{top:12px}.right-12{right:12px}.bottom-12{bottom:12px}.left-12{left:12px}.z-12{z-index:12}.ma-13px{margin:13px}.mt-13px{margin-top:13px}.mr-13px{margin-right:13px}.mb-13px{margin-bottom:13px}.ml-13px,.mx-13px{margin-left:13px}.mx-13px{margin-right:13px}.my-13px{margin-top:13px;margin-bottom:13px}.pa-13px{padding:13px}.pt-13px{padding-top:13px}.pr-13px{padding-right:13px}.pb-13px{padding-bottom:13px}.pl-13px,.px-13px{padding-left:13px}.px-13px{padding-right:13px}.py-13px{padding-top:13px;padding-bottom:13px}.w-13px{width:13px}.h-13px{height:13px}.w-13-percentage{width:13%}.h-13-percentage{height:13%}.min-w-13px{min-width:13px}.min-h-13px{min-height:13px}.max-w-13px{max-width:13px}.max-h-13px{max-height:13px}.font-13px{font-size:13px!important}.lh-13px{line-height:13px}.lh-13-percentage{line-height:13%}.border-13px{border-width:13px}.border-t-13px{border-top-width:13px}.border-r-13px{border-right-width:13px}.border-b-13px{border-bottom-width:13px}.border-l-13px{border-left-width:13px}.rounded-13px{border-radius:13px}.rounded-t-13px{border-top-left-radius:13px;border-top-right-radius:13px}.rounded-r-13px{border-top-right-radius:13px;border-bottom-right-radius:13px}.rounded-b-13px{border-bottom-left-radius:13px;border-bottom-right-radius:13px}.rounded-l-13px{border-bottom-left-radius:13px}.rounded-l-13px,.rounded-tl-13px{border-top-left-radius:13px}.rounded-tr-13px{border-top-right-radius:13px}.rounded-br-13px{border-bottom-right-radius:13px}.rounded-bl-13px{border-bottom-left-radius:13px}.rounded-13-percentage{border-radius:13%}.gap-13{gap:13px}.gap-x-13{-moz-column-gap:13px;column-gap:13px}.gap-y-13{row-gap:13px}.top-13{top:13px}.right-13{right:13px}.bottom-13{bottom:13px}.left-13{left:13px}.z-13{z-index:13}.ma-14px{margin:14px}.mt-14px{margin-top:14px}.mr-14px{margin-right:14px}.mb-14px{margin-bottom:14px}.ml-14px,.mx-14px{margin-left:14px}.mx-14px{margin-right:14px}.my-14px{margin-top:14px;margin-bottom:14px}.pa-14px{padding:14px}.pt-14px{padding-top:14px}.pr-14px{padding-right:14px}.pb-14px{padding-bottom:14px}.pl-14px,.px-14px{padding-left:14px}.px-14px{padding-right:14px}.py-14px{padding-top:14px;padding-bottom:14px}.w-14px{width:14px}.h-14px{height:14px}.w-14-percentage{width:14%}.h-14-percentage{height:14%}.min-w-14px{min-width:14px}.min-h-14px{min-height:14px}.max-w-14px{max-width:14px}.max-h-14px{max-height:14px}.font-14px{font-size:14px!important}.lh-14px{line-height:14px}.lh-14-percentage{line-height:14%}.border-14px{border-width:14px}.border-t-14px{border-top-width:14px}.border-r-14px{border-right-width:14px}.border-b-14px{border-bottom-width:14px}.border-l-14px{border-left-width:14px}.rounded-14px{border-radius:14px}.rounded-t-14px{border-top-left-radius:14px;border-top-right-radius:14px}.rounded-r-14px{border-top-right-radius:14px;border-bottom-right-radius:14px}.rounded-b-14px{border-bottom-left-radius:14px;border-bottom-right-radius:14px}.rounded-l-14px{border-bottom-left-radius:14px}.rounded-l-14px,.rounded-tl-14px{border-top-left-radius:14px}.rounded-tr-14px{border-top-right-radius:14px}.rounded-br-14px{border-bottom-right-radius:14px}.rounded-bl-14px{border-bottom-left-radius:14px}.rounded-14-percentage{border-radius:14%}.gap-14{gap:14px}.gap-x-14{-moz-column-gap:14px;column-gap:14px}.gap-y-14{row-gap:14px}.top-14{top:14px}.right-14{right:14px}.bottom-14{bottom:14px}.left-14{left:14px}.z-14{z-index:14}.ma-15px{margin:15px}.mt-15px{margin-top:15px}.mr-15px{margin-right:15px}.mb-15px{margin-bottom:15px}.ml-15px,.mx-15px{margin-left:15px}.mx-15px{margin-right:15px}.my-15px{margin-top:15px;margin-bottom:15px}.pa-15px{padding:15px}.pt-15px{padding-top:15px}.pr-15px{padding-right:15px}.pb-15px{padding-bottom:15px}.pl-15px,.px-15px{padding-left:15px}.px-15px{padding-right:15px}.py-15px{padding-top:15px;padding-bottom:15px}.w-15px{width:15px}.h-15px{height:15px}.w-15-percentage{width:15%}.h-15-percentage{height:15%}.min-w-15px{min-width:15px}.min-h-15px{min-height:15px}.max-w-15px{max-width:15px}.max-h-15px{max-height:15px}.font-15px{font-size:15px!important}.lh-15px{line-height:15px}.lh-15-percentage{line-height:15%}.border-15px{border-width:15px}.border-t-15px{border-top-width:15px}.border-r-15px{border-right-width:15px}.border-b-15px{border-bottom-width:15px}.border-l-15px{border-left-width:15px}.rounded-15px{border-radius:15px}.rounded-t-15px{border-top-left-radius:15px;border-top-right-radius:15px}.rounded-r-15px{border-top-right-radius:15px;border-bottom-right-radius:15px}.rounded-b-15px{border-bottom-left-radius:15px;border-bottom-right-radius:15px}.rounded-l-15px{border-bottom-left-radius:15px}.rounded-l-15px,.rounded-tl-15px{border-top-left-radius:15px}.rounded-tr-15px{border-top-right-radius:15px}.rounded-br-15px{border-bottom-right-radius:15px}.rounded-bl-15px{border-bottom-left-radius:15px}.rounded-15-percentage{border-radius:15%}.gap-15{gap:15px}.gap-x-15{-moz-column-gap:15px;column-gap:15px}.gap-y-15{row-gap:15px}.top-15{top:15px}.right-15{right:15px}.bottom-15{bottom:15px}.left-15{left:15px}.z-15{z-index:15}.ma-16px{margin:16px}.mt-16px{margin-top:16px}.mr-16px{margin-right:16px}.mb-16px{margin-bottom:16px}.ml-16px,.mx-16px{margin-left:16px}.mx-16px{margin-right:16px}.my-16px{margin-top:16px;margin-bottom:16px}.pa-16px{padding:16px}.pt-16px{padding-top:16px}.pr-16px{padding-right:16px}.pb-16px{padding-bottom:16px}.pl-16px,.px-16px{padding-left:16px}.px-16px{padding-right:16px}.py-16px{padding-top:16px;padding-bottom:16px}.w-16px{width:16px}.h-16px{height:16px}.w-16-percentage{width:16%}.h-16-percentage{height:16%}.min-w-16px{min-width:16px}.min-h-16px{min-height:16px}.max-w-16px{max-width:16px}.max-h-16px{max-height:16px}.font-16px{font-size:16px!important}.lh-16px{line-height:16px}.lh-16-percentage{line-height:16%}.border-16px{border-width:16px}.border-t-16px{border-top-width:16px}.border-r-16px{border-right-width:16px}.border-b-16px{border-bottom-width:16px}.border-l-16px{border-left-width:16px}.rounded-16px{border-radius:16px}.rounded-t-16px{border-top-left-radius:16px;border-top-right-radius:16px}.rounded-r-16px{border-top-right-radius:16px;border-bottom-right-radius:16px}.rounded-b-16px{border-bottom-left-radius:16px;border-bottom-right-radius:16px}.rounded-l-16px{border-bottom-left-radius:16px}.rounded-l-16px,.rounded-tl-16px{border-top-left-radius:16px}.rounded-tr-16px{border-top-right-radius:16px}.rounded-br-16px{border-bottom-right-radius:16px}.rounded-bl-16px{border-bottom-left-radius:16px}.rounded-16-percentage{border-radius:16%}.gap-16{gap:16px}.gap-x-16{-moz-column-gap:16px;column-gap:16px}.gap-y-16{row-gap:16px}.top-16{top:16px}.right-16{right:16px}.bottom-16{bottom:16px}.left-16{left:16px}.z-16{z-index:16}.ma-17px{margin:17px}.mt-17px{margin-top:17px}.mr-17px{margin-right:17px}.mb-17px{margin-bottom:17px}.ml-17px,.mx-17px{margin-left:17px}.mx-17px{margin-right:17px}.my-17px{margin-top:17px;margin-bottom:17px}.pa-17px{padding:17px}.pt-17px{padding-top:17px}.pr-17px{padding-right:17px}.pb-17px{padding-bottom:17px}.pl-17px,.px-17px{padding-left:17px}.px-17px{padding-right:17px}.py-17px{padding-top:17px;padding-bottom:17px}.w-17px{width:17px}.h-17px{height:17px}.w-17-percentage{width:17%}.h-17-percentage{height:17%}.min-w-17px{min-width:17px}.min-h-17px{min-height:17px}.max-w-17px{max-width:17px}.max-h-17px{max-height:17px}.font-17px{font-size:17px!important}.lh-17px{line-height:17px}.lh-17-percentage{line-height:17%}.border-17px{border-width:17px}.border-t-17px{border-top-width:17px}.border-r-17px{border-right-width:17px}.border-b-17px{border-bottom-width:17px}.border-l-17px{border-left-width:17px}.rounded-17px{border-radius:17px}.rounded-t-17px{border-top-left-radius:17px;border-top-right-radius:17px}.rounded-r-17px{border-top-right-radius:17px;border-bottom-right-radius:17px}.rounded-b-17px{border-bottom-left-radius:17px;border-bottom-right-radius:17px}.rounded-l-17px{border-bottom-left-radius:17px}.rounded-l-17px,.rounded-tl-17px{border-top-left-radius:17px}.rounded-tr-17px{border-top-right-radius:17px}.rounded-br-17px{border-bottom-right-radius:17px}.rounded-bl-17px{border-bottom-left-radius:17px}.rounded-17-percentage{border-radius:17%}.gap-17{gap:17px}.gap-x-17{-moz-column-gap:17px;column-gap:17px}.gap-y-17{row-gap:17px}.top-17{top:17px}.right-17{right:17px}.bottom-17{bottom:17px}.left-17{left:17px}.z-17{z-index:17}.ma-18px{margin:18px}.mt-18px{margin-top:18px}.mr-18px{margin-right:18px}.mb-18px{margin-bottom:18px}.ml-18px,.mx-18px{margin-left:18px}.mx-18px{margin-right:18px}.my-18px{margin-top:18px;margin-bottom:18px}.pa-18px{padding:18px}.pt-18px{padding-top:18px}.pr-18px{padding-right:18px}.pb-18px{padding-bottom:18px}.pl-18px,.px-18px{padding-left:18px}.px-18px{padding-right:18px}.py-18px{padding-top:18px;padding-bottom:18px}.w-18px{width:18px}.h-18px{height:18px}.w-18-percentage{width:18%}.h-18-percentage{height:18%}.min-w-18px{min-width:18px}.min-h-18px{min-height:18px}.max-w-18px{max-width:18px}.max-h-18px{max-height:18px}.font-18px{font-size:18px!important}.lh-18px{line-height:18px}.lh-18-percentage{line-height:18%}.border-18px{border-width:18px}.border-t-18px{border-top-width:18px}.border-r-18px{border-right-width:18px}.border-b-18px{border-bottom-width:18px}.border-l-18px{border-left-width:18px}.rounded-18px{border-radius:18px}.rounded-t-18px{border-top-left-radius:18px;border-top-right-radius:18px}.rounded-r-18px{border-top-right-radius:18px;border-bottom-right-radius:18px}.rounded-b-18px{border-bottom-left-radius:18px;border-bottom-right-radius:18px}.rounded-l-18px{border-bottom-left-radius:18px}.rounded-l-18px,.rounded-tl-18px{border-top-left-radius:18px}.rounded-tr-18px{border-top-right-radius:18px}.rounded-br-18px{border-bottom-right-radius:18px}.rounded-bl-18px{border-bottom-left-radius:18px}.rounded-18-percentage{border-radius:18%}.gap-18{gap:18px}.gap-x-18{-moz-column-gap:18px;column-gap:18px}.gap-y-18{row-gap:18px}.top-18{top:18px}.right-18{right:18px}.bottom-18{bottom:18px}.left-18{left:18px}.z-18{z-index:18}.ma-19px{margin:19px}.mt-19px{margin-top:19px}.mr-19px{margin-right:19px}.mb-19px{margin-bottom:19px}.ml-19px,.mx-19px{margin-left:19px}.mx-19px{margin-right:19px}.my-19px{margin-top:19px;margin-bottom:19px}.pa-19px{padding:19px}.pt-19px{padding-top:19px}.pr-19px{padding-right:19px}.pb-19px{padding-bottom:19px}.pl-19px,.px-19px{padding-left:19px}.px-19px{padding-right:19px}.py-19px{padding-top:19px;padding-bottom:19px}.w-19px{width:19px}.h-19px{height:19px}.w-19-percentage{width:19%}.h-19-percentage{height:19%}.min-w-19px{min-width:19px}.min-h-19px{min-height:19px}.max-w-19px{max-width:19px}.max-h-19px{max-height:19px}.font-19px{font-size:19px!important}.lh-19px{line-height:19px}.lh-19-percentage{line-height:19%}.border-19px{border-width:19px}.border-t-19px{border-top-width:19px}.border-r-19px{border-right-width:19px}.border-b-19px{border-bottom-width:19px}.border-l-19px{border-left-width:19px}.rounded-19px{border-radius:19px}.rounded-t-19px{border-top-left-radius:19px;border-top-right-radius:19px}.rounded-r-19px{border-top-right-radius:19px;border-bottom-right-radius:19px}.rounded-b-19px{border-bottom-left-radius:19px;border-bottom-right-radius:19px}.rounded-l-19px{border-bottom-left-radius:19px}.rounded-l-19px,.rounded-tl-19px{border-top-left-radius:19px}.rounded-tr-19px{border-top-right-radius:19px}.rounded-br-19px{border-bottom-right-radius:19px}.rounded-bl-19px{border-bottom-left-radius:19px}.rounded-19-percentage{border-radius:19%}.gap-19{gap:19px}.gap-x-19{-moz-column-gap:19px;column-gap:19px}.gap-y-19{row-gap:19px}.top-19{top:19px}.right-19{right:19px}.bottom-19{bottom:19px}.left-19{left:19px}.z-19{z-index:19}.ma-20px{margin:20px}.mt-20px{margin-top:20px}.mr-20px{margin-right:20px}.mb-20px{margin-bottom:20px}.ml-20px,.mx-20px{margin-left:20px}.mx-20px{margin-right:20px}.my-20px{margin-top:20px;margin-bottom:20px}.pa-20px{padding:20px}.pt-20px{padding-top:20px}.pr-20px{padding-right:20px}.pb-20px{padding-bottom:20px}.pl-20px,.px-20px{padding-left:20px}.px-20px{padding-right:20px}.py-20px{padding-top:20px;padding-bottom:20px}.w-20px{width:20px}.h-20px{height:20px}.w-20-percentage{width:20%}.h-20-percentage{height:20%}.min-w-20px{min-width:20px}.min-h-20px{min-height:20px}.max-w-20px{max-width:20px}.max-h-20px{max-height:20px}.font-20px{font-size:20px!important}.lh-20px{line-height:20px}.lh-20-percentage{line-height:20%}.border-20px{border-width:20px}.border-t-20px{border-top-width:20px}.border-r-20px{border-right-width:20px}.border-b-20px{border-bottom-width:20px}.border-l-20px{border-left-width:20px}.rounded-20px{border-radius:20px}.rounded-t-20px{border-top-left-radius:20px;border-top-right-radius:20px}.rounded-r-20px{border-top-right-radius:20px;border-bottom-right-radius:20px}.rounded-b-20px{border-bottom-left-radius:20px;border-bottom-right-radius:20px}.rounded-l-20px{border-bottom-left-radius:20px}.rounded-l-20px,.rounded-tl-20px{border-top-left-radius:20px}.rounded-tr-20px{border-top-right-radius:20px}.rounded-br-20px{border-bottom-right-radius:20px}.rounded-bl-20px{border-bottom-left-radius:20px}.rounded-20-percentage{border-radius:20%}.gap-20{gap:20px}.gap-x-20{-moz-column-gap:20px;column-gap:20px}.gap-y-20{row-gap:20px}.top-20{top:20px}.right-20{right:20px}.bottom-20{bottom:20px}.left-20{left:20px}.z-20{z-index:20}.ma-21px{margin:21px}.mt-21px{margin-top:21px}.mr-21px{margin-right:21px}.mb-21px{margin-bottom:21px}.ml-21px,.mx-21px{margin-left:21px}.mx-21px{margin-right:21px}.my-21px{margin-top:21px;margin-bottom:21px}.pa-21px{padding:21px}.pt-21px{padding-top:21px}.pr-21px{padding-right:21px}.pb-21px{padding-bottom:21px}.pl-21px,.px-21px{padding-left:21px}.px-21px{padding-right:21px}.py-21px{padding-top:21px;padding-bottom:21px}.w-21px{width:21px}.h-21px{height:21px}.w-21-percentage{width:21%}.h-21-percentage{height:21%}.min-w-21px{min-width:21px}.min-h-21px{min-height:21px}.max-w-21px{max-width:21px}.max-h-21px{max-height:21px}.font-21px{font-size:21px!important}.lh-21px{line-height:21px}.lh-21-percentage{line-height:21%}.border-21px{border-width:21px}.border-t-21px{border-top-width:21px}.border-r-21px{border-right-width:21px}.border-b-21px{border-bottom-width:21px}.border-l-21px{border-left-width:21px}.rounded-21px{border-radius:21px}.rounded-t-21px{border-top-left-radius:21px;border-top-right-radius:21px}.rounded-r-21px{border-top-right-radius:21px;border-bottom-right-radius:21px}.rounded-b-21px{border-bottom-left-radius:21px;border-bottom-right-radius:21px}.rounded-l-21px{border-bottom-left-radius:21px}.rounded-l-21px,.rounded-tl-21px{border-top-left-radius:21px}.rounded-tr-21px{border-top-right-radius:21px}.rounded-br-21px{border-bottom-right-radius:21px}.rounded-bl-21px{border-bottom-left-radius:21px}.rounded-21-percentage{border-radius:21%}.gap-21{gap:21px}.gap-x-21{-moz-column-gap:21px;column-gap:21px}.gap-y-21{row-gap:21px}.top-21{top:21px}.right-21{right:21px}.bottom-21{bottom:21px}.left-21{left:21px}.z-21{z-index:21}.ma-22px{margin:22px}.mt-22px{margin-top:22px}.mr-22px{margin-right:22px}.mb-22px{margin-bottom:22px}.ml-22px,.mx-22px{margin-left:22px}.mx-22px{margin-right:22px}.my-22px{margin-top:22px;margin-bottom:22px}.pa-22px{padding:22px}.pt-22px{padding-top:22px}.pr-22px{padding-right:22px}.pb-22px{padding-bottom:22px}.pl-22px,.px-22px{padding-left:22px}.px-22px{padding-right:22px}.py-22px{padding-top:22px;padding-bottom:22px}.w-22px{width:22px}.h-22px{height:22px}.w-22-percentage{width:22%}.h-22-percentage{height:22%}.min-w-22px{min-width:22px}.min-h-22px{min-height:22px}.max-w-22px{max-width:22px}.max-h-22px{max-height:22px}.font-22px{font-size:22px!important}.lh-22px{line-height:22px}.lh-22-percentage{line-height:22%}.border-22px{border-width:22px}.border-t-22px{border-top-width:22px}.border-r-22px{border-right-width:22px}.border-b-22px{border-bottom-width:22px}.border-l-22px{border-left-width:22px}.rounded-22px{border-radius:22px}.rounded-t-22px{border-top-left-radius:22px;border-top-right-radius:22px}.rounded-r-22px{border-top-right-radius:22px;border-bottom-right-radius:22px}.rounded-b-22px{border-bottom-left-radius:22px;border-bottom-right-radius:22px}.rounded-l-22px{border-bottom-left-radius:22px}.rounded-l-22px,.rounded-tl-22px{border-top-left-radius:22px}.rounded-tr-22px{border-top-right-radius:22px}.rounded-br-22px{border-bottom-right-radius:22px}.rounded-bl-22px{border-bottom-left-radius:22px}.rounded-22-percentage{border-radius:22%}.gap-22{gap:22px}.gap-x-22{-moz-column-gap:22px;column-gap:22px}.gap-y-22{row-gap:22px}.top-22{top:22px}.right-22{right:22px}.bottom-22{bottom:22px}.left-22{left:22px}.z-22{z-index:22}.ma-23px{margin:23px}.mt-23px{margin-top:23px}.mr-23px{margin-right:23px}.mb-23px{margin-bottom:23px}.ml-23px,.mx-23px{margin-left:23px}.mx-23px{margin-right:23px}.my-23px{margin-top:23px;margin-bottom:23px}.pa-23px{padding:23px}.pt-23px{padding-top:23px}.pr-23px{padding-right:23px}.pb-23px{padding-bottom:23px}.pl-23px,.px-23px{padding-left:23px}.px-23px{padding-right:23px}.py-23px{padding-top:23px;padding-bottom:23px}.w-23px{width:23px}.h-23px{height:23px}.w-23-percentage{width:23%}.h-23-percentage{height:23%}.min-w-23px{min-width:23px}.min-h-23px{min-height:23px}.max-w-23px{max-width:23px}.max-h-23px{max-height:23px}.font-23px{font-size:23px!important}.lh-23px{line-height:23px}.lh-23-percentage{line-height:23%}.border-23px{border-width:23px}.border-t-23px{border-top-width:23px}.border-r-23px{border-right-width:23px}.border-b-23px{border-bottom-width:23px}.border-l-23px{border-left-width:23px}.rounded-23px{border-radius:23px}.rounded-t-23px{border-top-left-radius:23px;border-top-right-radius:23px}.rounded-r-23px{border-top-right-radius:23px;border-bottom-right-radius:23px}.rounded-b-23px{border-bottom-left-radius:23px;border-bottom-right-radius:23px}.rounded-l-23px{border-bottom-left-radius:23px}.rounded-l-23px,.rounded-tl-23px{border-top-left-radius:23px}.rounded-tr-23px{border-top-right-radius:23px}.rounded-br-23px{border-bottom-right-radius:23px}.rounded-bl-23px{border-bottom-left-radius:23px}.rounded-23-percentage{border-radius:23%}.gap-23{gap:23px}.gap-x-23{-moz-column-gap:23px;column-gap:23px}.gap-y-23{row-gap:23px}.top-23{top:23px}.right-23{right:23px}.bottom-23{bottom:23px}.left-23{left:23px}.z-23{z-index:23}.ma-24px{margin:24px}.mt-24px{margin-top:24px}.mr-24px{margin-right:24px}.mb-24px{margin-bottom:24px}.ml-24px,.mx-24px{margin-left:24px}.mx-24px{margin-right:24px}.my-24px{margin-top:24px;margin-bottom:24px}.pa-24px{padding:24px}.pt-24px{padding-top:24px}.pr-24px{padding-right:24px}.pb-24px{padding-bottom:24px}.pl-24px,.px-24px{padding-left:24px}.px-24px{padding-right:24px}.py-24px{padding-top:24px;padding-bottom:24px}.w-24px{width:24px}.h-24px{height:24px}.w-24-percentage{width:24%}.h-24-percentage{height:24%}.min-w-24px{min-width:24px}.min-h-24px{min-height:24px}.max-w-24px{max-width:24px}.max-h-24px{max-height:24px}.font-24px{font-size:24px!important}.lh-24px{line-height:24px}.lh-24-percentage{line-height:24%}.border-24px{border-width:24px}.border-t-24px{border-top-width:24px}.border-r-24px{border-right-width:24px}.border-b-24px{border-bottom-width:24px}.border-l-24px{border-left-width:24px}.rounded-24px{border-radius:24px}.rounded-t-24px{border-top-left-radius:24px;border-top-right-radius:24px}.rounded-r-24px{border-top-right-radius:24px;border-bottom-right-radius:24px}.rounded-b-24px{border-bottom-left-radius:24px;border-bottom-right-radius:24px}.rounded-l-24px{border-bottom-left-radius:24px}.rounded-l-24px,.rounded-tl-24px{border-top-left-radius:24px}.rounded-tr-24px{border-top-right-radius:24px}.rounded-br-24px{border-bottom-right-radius:24px}.rounded-bl-24px{border-bottom-left-radius:24px}.rounded-24-percentage{border-radius:24%}.gap-24{gap:24px}.gap-x-24{-moz-column-gap:24px;column-gap:24px}.gap-y-24{row-gap:24px}.top-24{top:24px}.right-24{right:24px}.bottom-24{bottom:24px}.left-24{left:24px}.z-24{z-index:24}.ma-25px{margin:25px}.mt-25px{margin-top:25px}.mr-25px{margin-right:25px}.mb-25px{margin-bottom:25px}.ml-25px,.mx-25px{margin-left:25px}.mx-25px{margin-right:25px}.my-25px{margin-top:25px;margin-bottom:25px}.pa-25px{padding:25px}.pt-25px{padding-top:25px}.pr-25px{padding-right:25px}.pb-25px{padding-bottom:25px}.pl-25px,.px-25px{padding-left:25px}.px-25px{padding-right:25px}.py-25px{padding-top:25px;padding-bottom:25px}.w-25px{width:25px}.h-25px{height:25px}.w-25-percentage{width:25%}.h-25-percentage{height:25%}.min-w-25px{min-width:25px}.min-h-25px{min-height:25px}.max-w-25px{max-width:25px}.max-h-25px{max-height:25px}.font-25px{font-size:25px!important}.lh-25px{line-height:25px}.lh-25-percentage{line-height:25%}.border-25px{border-width:25px}.border-t-25px{border-top-width:25px}.border-r-25px{border-right-width:25px}.border-b-25px{border-bottom-width:25px}.border-l-25px{border-left-width:25px}.rounded-25px{border-radius:25px}.rounded-t-25px{border-top-left-radius:25px;border-top-right-radius:25px}.rounded-r-25px{border-top-right-radius:25px;border-bottom-right-radius:25px}.rounded-b-25px{border-bottom-left-radius:25px;border-bottom-right-radius:25px}.rounded-l-25px{border-bottom-left-radius:25px}.rounded-l-25px,.rounded-tl-25px{border-top-left-radius:25px}.rounded-tr-25px{border-top-right-radius:25px}.rounded-br-25px{border-bottom-right-radius:25px}.rounded-bl-25px{border-bottom-left-radius:25px}.rounded-25-percentage{border-radius:25%}.gap-25{gap:25px}.gap-x-25{-moz-column-gap:25px;column-gap:25px}.gap-y-25{row-gap:25px}.top-25{top:25px}.right-25{right:25px}.bottom-25{bottom:25px}.left-25{left:25px}.z-25{z-index:25}.ma-26px{margin:26px}.mt-26px{margin-top:26px}.mr-26px{margin-right:26px}.mb-26px{margin-bottom:26px}.ml-26px,.mx-26px{margin-left:26px}.mx-26px{margin-right:26px}.my-26px{margin-top:26px;margin-bottom:26px}.pa-26px{padding:26px}.pt-26px{padding-top:26px}.pr-26px{padding-right:26px}.pb-26px{padding-bottom:26px}.pl-26px,.px-26px{padding-left:26px}.px-26px{padding-right:26px}.py-26px{padding-top:26px;padding-bottom:26px}.w-26px{width:26px}.h-26px{height:26px}.w-26-percentage{width:26%}.h-26-percentage{height:26%}.min-w-26px{min-width:26px}.min-h-26px{min-height:26px}.max-w-26px{max-width:26px}.max-h-26px{max-height:26px}.font-26px{font-size:26px!important}.lh-26px{line-height:26px}.lh-26-percentage{line-height:26%}.border-26px{border-width:26px}.border-t-26px{border-top-width:26px}.border-r-26px{border-right-width:26px}.border-b-26px{border-bottom-width:26px}.border-l-26px{border-left-width:26px}.rounded-26px{border-radius:26px}.rounded-t-26px{border-top-left-radius:26px;border-top-right-radius:26px}.rounded-r-26px{border-top-right-radius:26px;border-bottom-right-radius:26px}.rounded-b-26px{border-bottom-left-radius:26px;border-bottom-right-radius:26px}.rounded-l-26px{border-bottom-left-radius:26px}.rounded-l-26px,.rounded-tl-26px{border-top-left-radius:26px}.rounded-tr-26px{border-top-right-radius:26px}.rounded-br-26px{border-bottom-right-radius:26px}.rounded-bl-26px{border-bottom-left-radius:26px}.rounded-26-percentage{border-radius:26%}.gap-26{gap:26px}.gap-x-26{-moz-column-gap:26px;column-gap:26px}.gap-y-26{row-gap:26px}.top-26{top:26px}.right-26{right:26px}.bottom-26{bottom:26px}.left-26{left:26px}.z-26{z-index:26}.ma-27px{margin:27px}.mt-27px{margin-top:27px}.mr-27px{margin-right:27px}.mb-27px{margin-bottom:27px}.ml-27px,.mx-27px{margin-left:27px}.mx-27px{margin-right:27px}.my-27px{margin-top:27px;margin-bottom:27px}.pa-27px{padding:27px}.pt-27px{padding-top:27px}.pr-27px{padding-right:27px}.pb-27px{padding-bottom:27px}.pl-27px,.px-27px{padding-left:27px}.px-27px{padding-right:27px}.py-27px{padding-top:27px;padding-bottom:27px}.w-27px{width:27px}.h-27px{height:27px}.w-27-percentage{width:27%}.h-27-percentage{height:27%}.min-w-27px{min-width:27px}.min-h-27px{min-height:27px}.max-w-27px{max-width:27px}.max-h-27px{max-height:27px}.font-27px{font-size:27px!important}.lh-27px{line-height:27px}.lh-27-percentage{line-height:27%}.border-27px{border-width:27px}.border-t-27px{border-top-width:27px}.border-r-27px{border-right-width:27px}.border-b-27px{border-bottom-width:27px}.border-l-27px{border-left-width:27px}.rounded-27px{border-radius:27px}.rounded-t-27px{border-top-left-radius:27px;border-top-right-radius:27px}.rounded-r-27px{border-top-right-radius:27px;border-bottom-right-radius:27px}.rounded-b-27px{border-bottom-left-radius:27px;border-bottom-right-radius:27px}.rounded-l-27px{border-bottom-left-radius:27px}.rounded-l-27px,.rounded-tl-27px{border-top-left-radius:27px}.rounded-tr-27px{border-top-right-radius:27px}.rounded-br-27px{border-bottom-right-radius:27px}.rounded-bl-27px{border-bottom-left-radius:27px}.rounded-27-percentage{border-radius:27%}.gap-27{gap:27px}.gap-x-27{-moz-column-gap:27px;column-gap:27px}.gap-y-27{row-gap:27px}.top-27{top:27px}.right-27{right:27px}.bottom-27{bottom:27px}.left-27{left:27px}.z-27{z-index:27}.ma-28px{margin:28px}.mt-28px{margin-top:28px}.mr-28px{margin-right:28px}.mb-28px{margin-bottom:28px}.ml-28px,.mx-28px{margin-left:28px}.mx-28px{margin-right:28px}.my-28px{margin-top:28px;margin-bottom:28px}.pa-28px{padding:28px}.pt-28px{padding-top:28px}.pr-28px{padding-right:28px}.pb-28px{padding-bottom:28px}.pl-28px,.px-28px{padding-left:28px}.px-28px{padding-right:28px}.py-28px{padding-top:28px;padding-bottom:28px}.w-28px{width:28px}.h-28px{height:28px}.w-28-percentage{width:28%}.h-28-percentage{height:28%}.min-w-28px{min-width:28px}.min-h-28px{min-height:28px}.max-w-28px{max-width:28px}.max-h-28px{max-height:28px}.font-28px{font-size:28px!important}.lh-28px{line-height:28px}.lh-28-percentage{line-height:28%}.border-28px{border-width:28px}.border-t-28px{border-top-width:28px}.border-r-28px{border-right-width:28px}.border-b-28px{border-bottom-width:28px}.border-l-28px{border-left-width:28px}.rounded-28px{border-radius:28px}.rounded-t-28px{border-top-left-radius:28px;border-top-right-radius:28px}.rounded-r-28px{border-top-right-radius:28px;border-bottom-right-radius:28px}.rounded-b-28px{border-bottom-left-radius:28px;border-bottom-right-radius:28px}.rounded-l-28px{border-bottom-left-radius:28px}.rounded-l-28px,.rounded-tl-28px{border-top-left-radius:28px}.rounded-tr-28px{border-top-right-radius:28px}.rounded-br-28px{border-bottom-right-radius:28px}.rounded-bl-28px{border-bottom-left-radius:28px}.rounded-28-percentage{border-radius:28%}.gap-28{gap:28px}.gap-x-28{-moz-column-gap:28px;column-gap:28px}.gap-y-28{row-gap:28px}.top-28{top:28px}.right-28{right:28px}.bottom-28{bottom:28px}.left-28{left:28px}.z-28{z-index:28}.ma-29px{margin:29px}.mt-29px{margin-top:29px}.mr-29px{margin-right:29px}.mb-29px{margin-bottom:29px}.ml-29px,.mx-29px{margin-left:29px}.mx-29px{margin-right:29px}.my-29px{margin-top:29px;margin-bottom:29px}.pa-29px{padding:29px}.pt-29px{padding-top:29px}.pr-29px{padding-right:29px}.pb-29px{padding-bottom:29px}.pl-29px,.px-29px{padding-left:29px}.px-29px{padding-right:29px}.py-29px{padding-top:29px;padding-bottom:29px}.w-29px{width:29px}.h-29px{height:29px}.w-29-percentage{width:29%}.h-29-percentage{height:29%}.min-w-29px{min-width:29px}.min-h-29px{min-height:29px}.max-w-29px{max-width:29px}.max-h-29px{max-height:29px}.font-29px{font-size:29px!important}.lh-29px{line-height:29px}.lh-29-percentage{line-height:29%}.border-29px{border-width:29px}.border-t-29px{border-top-width:29px}.border-r-29px{border-right-width:29px}.border-b-29px{border-bottom-width:29px}.border-l-29px{border-left-width:29px}.rounded-29px{border-radius:29px}.rounded-t-29px{border-top-left-radius:29px;border-top-right-radius:29px}.rounded-r-29px{border-top-right-radius:29px;border-bottom-right-radius:29px}.rounded-b-29px{border-bottom-left-radius:29px;border-bottom-right-radius:29px}.rounded-l-29px{border-bottom-left-radius:29px}.rounded-l-29px,.rounded-tl-29px{border-top-left-radius:29px}.rounded-tr-29px{border-top-right-radius:29px}.rounded-br-29px{border-bottom-right-radius:29px}.rounded-bl-29px{border-bottom-left-radius:29px}.rounded-29-percentage{border-radius:29%}.gap-29{gap:29px}.gap-x-29{-moz-column-gap:29px;column-gap:29px}.gap-y-29{row-gap:29px}.top-29{top:29px}.right-29{right:29px}.bottom-29{bottom:29px}.left-29{left:29px}.z-29{z-index:29}.ma-30px{margin:30px}.mt-30px{margin-top:30px}.mr-30px{margin-right:30px}.mb-30px{margin-bottom:30px}.ml-30px,.mx-30px{margin-left:30px}.mx-30px{margin-right:30px}.my-30px{margin-top:30px;margin-bottom:30px}.pa-30px{padding:30px}.pt-30px{padding-top:30px}.pr-30px{padding-right:30px}.pb-30px{padding-bottom:30px}.pl-30px,.px-30px{padding-left:30px}.px-30px{padding-right:30px}.py-30px{padding-top:30px;padding-bottom:30px}.w-30px{width:30px}.h-30px{height:30px}.w-30-percentage{width:30%}.h-30-percentage{height:30%}.min-w-30px{min-width:30px}.min-h-30px{min-height:30px}.max-w-30px{max-width:30px}.max-h-30px{max-height:30px}.font-30px{font-size:30px!important}.lh-30px{line-height:30px}.lh-30-percentage{line-height:30%}.border-30px{border-width:30px}.border-t-30px{border-top-width:30px}.border-r-30px{border-right-width:30px}.border-b-30px{border-bottom-width:30px}.border-l-30px{border-left-width:30px}.rounded-30px{border-radius:30px}.rounded-t-30px{border-top-left-radius:30px;border-top-right-radius:30px}.rounded-r-30px{border-top-right-radius:30px;border-bottom-right-radius:30px}.rounded-b-30px{border-bottom-left-radius:30px;border-bottom-right-radius:30px}.rounded-l-30px{border-bottom-left-radius:30px}.rounded-l-30px,.rounded-tl-30px{border-top-left-radius:30px}.rounded-tr-30px{border-top-right-radius:30px}.rounded-br-30px{border-bottom-right-radius:30px}.rounded-bl-30px{border-bottom-left-radius:30px}.rounded-30-percentage{border-radius:30%}.gap-30{gap:30px}.gap-x-30{-moz-column-gap:30px;column-gap:30px}.gap-y-30{row-gap:30px}.top-30{top:30px}.right-30{right:30px}.bottom-30{bottom:30px}.left-30{left:30px}.z-30{z-index:30}.ma-31px{margin:31px}.mt-31px{margin-top:31px}.mr-31px{margin-right:31px}.mb-31px{margin-bottom:31px}.ml-31px,.mx-31px{margin-left:31px}.mx-31px{margin-right:31px}.my-31px{margin-top:31px;margin-bottom:31px}.pa-31px{padding:31px}.pt-31px{padding-top:31px}.pr-31px{padding-right:31px}.pb-31px{padding-bottom:31px}.pl-31px,.px-31px{padding-left:31px}.px-31px{padding-right:31px}.py-31px{padding-top:31px;padding-bottom:31px}.w-31px{width:31px}.h-31px{height:31px}.w-31-percentage{width:31%}.h-31-percentage{height:31%}.min-w-31px{min-width:31px}.min-h-31px{min-height:31px}.max-w-31px{max-width:31px}.max-h-31px{max-height:31px}.font-31px{font-size:31px!important}.lh-31px{line-height:31px}.lh-31-percentage{line-height:31%}.border-31px{border-width:31px}.border-t-31px{border-top-width:31px}.border-r-31px{border-right-width:31px}.border-b-31px{border-bottom-width:31px}.border-l-31px{border-left-width:31px}.rounded-31px{border-radius:31px}.rounded-t-31px{border-top-left-radius:31px;border-top-right-radius:31px}.rounded-r-31px{border-top-right-radius:31px;border-bottom-right-radius:31px}.rounded-b-31px{border-bottom-left-radius:31px;border-bottom-right-radius:31px}.rounded-l-31px{border-bottom-left-radius:31px}.rounded-l-31px,.rounded-tl-31px{border-top-left-radius:31px}.rounded-tr-31px{border-top-right-radius:31px}.rounded-br-31px{border-bottom-right-radius:31px}.rounded-bl-31px{border-bottom-left-radius:31px}.rounded-31-percentage{border-radius:31%}.gap-31{gap:31px}.gap-x-31{-moz-column-gap:31px;column-gap:31px}.gap-y-31{row-gap:31px}.top-31{top:31px}.right-31{right:31px}.bottom-31{bottom:31px}.left-31{left:31px}.z-31{z-index:31}.ma-32px{margin:32px}.mt-32px{margin-top:32px}.mr-32px{margin-right:32px}.mb-32px{margin-bottom:32px}.ml-32px,.mx-32px{margin-left:32px}.mx-32px{margin-right:32px}.my-32px{margin-top:32px;margin-bottom:32px}.pa-32px{padding:32px}.pt-32px{padding-top:32px}.pr-32px{padding-right:32px}.pb-32px{padding-bottom:32px}.pl-32px,.px-32px{padding-left:32px}.px-32px{padding-right:32px}.py-32px{padding-top:32px;padding-bottom:32px}.w-32px{width:32px}.h-32px{height:32px}.w-32-percentage{width:32%}.h-32-percentage{height:32%}.min-w-32px{min-width:32px}.min-h-32px{min-height:32px}.max-w-32px{max-width:32px}.max-h-32px{max-height:32px}.font-32px{font-size:32px!important}.lh-32px{line-height:32px}.lh-32-percentage{line-height:32%}.border-32px{border-width:32px}.border-t-32px{border-top-width:32px}.border-r-32px{border-right-width:32px}.border-b-32px{border-bottom-width:32px}.border-l-32px{border-left-width:32px}.rounded-32px{border-radius:32px}.rounded-t-32px{border-top-left-radius:32px;border-top-right-radius:32px}.rounded-r-32px{border-top-right-radius:32px;border-bottom-right-radius:32px}.rounded-b-32px{border-bottom-left-radius:32px;border-bottom-right-radius:32px}.rounded-l-32px{border-bottom-left-radius:32px}.rounded-l-32px,.rounded-tl-32px{border-top-left-radius:32px}.rounded-tr-32px{border-top-right-radius:32px}.rounded-br-32px{border-bottom-right-radius:32px}.rounded-bl-32px{border-bottom-left-radius:32px}.rounded-32-percentage{border-radius:32%}.gap-32{gap:32px}.gap-x-32{-moz-column-gap:32px;column-gap:32px}.gap-y-32{row-gap:32px}.top-32{top:32px}.right-32{right:32px}.bottom-32{bottom:32px}.left-32{left:32px}.z-32{z-index:32}.ma-33px{margin:33px}.mt-33px{margin-top:33px}.mr-33px{margin-right:33px}.mb-33px{margin-bottom:33px}.ml-33px,.mx-33px{margin-left:33px}.mx-33px{margin-right:33px}.my-33px{margin-top:33px;margin-bottom:33px}.pa-33px{padding:33px}.pt-33px{padding-top:33px}.pr-33px{padding-right:33px}.pb-33px{padding-bottom:33px}.pl-33px,.px-33px{padding-left:33px}.px-33px{padding-right:33px}.py-33px{padding-top:33px;padding-bottom:33px}.w-33px{width:33px}.h-33px{height:33px}.w-33-percentage{width:33%}.h-33-percentage{height:33%}.min-w-33px{min-width:33px}.min-h-33px{min-height:33px}.max-w-33px{max-width:33px}.max-h-33px{max-height:33px}.font-33px{font-size:33px!important}.lh-33px{line-height:33px}.lh-33-percentage{line-height:33%}.border-33px{border-width:33px}.border-t-33px{border-top-width:33px}.border-r-33px{border-right-width:33px}.border-b-33px{border-bottom-width:33px}.border-l-33px{border-left-width:33px}.rounded-33px{border-radius:33px}.rounded-t-33px{border-top-left-radius:33px;border-top-right-radius:33px}.rounded-r-33px{border-top-right-radius:33px;border-bottom-right-radius:33px}.rounded-b-33px{border-bottom-left-radius:33px;border-bottom-right-radius:33px}.rounded-l-33px{border-bottom-left-radius:33px}.rounded-l-33px,.rounded-tl-33px{border-top-left-radius:33px}.rounded-tr-33px{border-top-right-radius:33px}.rounded-br-33px{border-bottom-right-radius:33px}.rounded-bl-33px{border-bottom-left-radius:33px}.rounded-33-percentage{border-radius:33%}.gap-33{gap:33px}.gap-x-33{-moz-column-gap:33px;column-gap:33px}.gap-y-33{row-gap:33px}.top-33{top:33px}.right-33{right:33px}.bottom-33{bottom:33px}.left-33{left:33px}.z-33{z-index:33}.ma-34px{margin:34px}.mt-34px{margin-top:34px}.mr-34px{margin-right:34px}.mb-34px{margin-bottom:34px}.ml-34px,.mx-34px{margin-left:34px}.mx-34px{margin-right:34px}.my-34px{margin-top:34px;margin-bottom:34px}.pa-34px{padding:34px}.pt-34px{padding-top:34px}.pr-34px{padding-right:34px}.pb-34px{padding-bottom:34px}.pl-34px,.px-34px{padding-left:34px}.px-34px{padding-right:34px}.py-34px{padding-top:34px;padding-bottom:34px}.w-34px{width:34px}.h-34px{height:34px}.w-34-percentage{width:34%}.h-34-percentage{height:34%}.min-w-34px{min-width:34px}.min-h-34px{min-height:34px}.max-w-34px{max-width:34px}.max-h-34px{max-height:34px}.font-34px{font-size:34px!important}.lh-34px{line-height:34px}.lh-34-percentage{line-height:34%}.border-34px{border-width:34px}.border-t-34px{border-top-width:34px}.border-r-34px{border-right-width:34px}.border-b-34px{border-bottom-width:34px}.border-l-34px{border-left-width:34px}.rounded-34px{border-radius:34px}.rounded-t-34px{border-top-left-radius:34px;border-top-right-radius:34px}.rounded-r-34px{border-top-right-radius:34px;border-bottom-right-radius:34px}.rounded-b-34px{border-bottom-left-radius:34px;border-bottom-right-radius:34px}.rounded-l-34px{border-bottom-left-radius:34px}.rounded-l-34px,.rounded-tl-34px{border-top-left-radius:34px}.rounded-tr-34px{border-top-right-radius:34px}.rounded-br-34px{border-bottom-right-radius:34px}.rounded-bl-34px{border-bottom-left-radius:34px}.rounded-34-percentage{border-radius:34%}.gap-34{gap:34px}.gap-x-34{-moz-column-gap:34px;column-gap:34px}.gap-y-34{row-gap:34px}.top-34{top:34px}.right-34{right:34px}.bottom-34{bottom:34px}.left-34{left:34px}.z-34{z-index:34}.ma-35px{margin:35px}.mt-35px{margin-top:35px}.mr-35px{margin-right:35px}.mb-35px{margin-bottom:35px}.ml-35px,.mx-35px{margin-left:35px}.mx-35px{margin-right:35px}.my-35px{margin-top:35px;margin-bottom:35px}.pa-35px{padding:35px}.pt-35px{padding-top:35px}.pr-35px{padding-right:35px}.pb-35px{padding-bottom:35px}.pl-35px,.px-35px{padding-left:35px}.px-35px{padding-right:35px}.py-35px{padding-top:35px;padding-bottom:35px}.w-35px{width:35px}.h-35px{height:35px}.w-35-percentage{width:35%}.h-35-percentage{height:35%}.min-w-35px{min-width:35px}.min-h-35px{min-height:35px}.max-w-35px{max-width:35px}.max-h-35px{max-height:35px}.font-35px{font-size:35px!important}.lh-35px{line-height:35px}.lh-35-percentage{line-height:35%}.border-35px{border-width:35px}.border-t-35px{border-top-width:35px}.border-r-35px{border-right-width:35px}.border-b-35px{border-bottom-width:35px}.border-l-35px{border-left-width:35px}.rounded-35px{border-radius:35px}.rounded-t-35px{border-top-left-radius:35px;border-top-right-radius:35px}.rounded-r-35px{border-top-right-radius:35px;border-bottom-right-radius:35px}.rounded-b-35px{border-bottom-left-radius:35px;border-bottom-right-radius:35px}.rounded-l-35px{border-bottom-left-radius:35px}.rounded-l-35px,.rounded-tl-35px{border-top-left-radius:35px}.rounded-tr-35px{border-top-right-radius:35px}.rounded-br-35px{border-bottom-right-radius:35px}.rounded-bl-35px{border-bottom-left-radius:35px}.rounded-35-percentage{border-radius:35%}.gap-35{gap:35px}.gap-x-35{-moz-column-gap:35px;column-gap:35px}.gap-y-35{row-gap:35px}.top-35{top:35px}.right-35{right:35px}.bottom-35{bottom:35px}.left-35{left:35px}.z-35{z-index:35}.ma-36px{margin:36px}.mt-36px{margin-top:36px}.mr-36px{margin-right:36px}.mb-36px{margin-bottom:36px}.ml-36px,.mx-36px{margin-left:36px}.mx-36px{margin-right:36px}.my-36px{margin-top:36px;margin-bottom:36px}.pa-36px{padding:36px}.pt-36px{padding-top:36px}.pr-36px{padding-right:36px}.pb-36px{padding-bottom:36px}.pl-36px,.px-36px{padding-left:36px}.px-36px{padding-right:36px}.py-36px{padding-top:36px;padding-bottom:36px}.w-36px{width:36px}.h-36px{height:36px}.w-36-percentage{width:36%}.h-36-percentage{height:36%}.min-w-36px{min-width:36px}.min-h-36px{min-height:36px}.max-w-36px{max-width:36px}.max-h-36px{max-height:36px}.font-36px{font-size:36px!important}.lh-36px{line-height:36px}.lh-36-percentage{line-height:36%}.border-36px{border-width:36px}.border-t-36px{border-top-width:36px}.border-r-36px{border-right-width:36px}.border-b-36px{border-bottom-width:36px}.border-l-36px{border-left-width:36px}.rounded-36px{border-radius:36px}.rounded-t-36px{border-top-left-radius:36px;border-top-right-radius:36px}.rounded-r-36px{border-top-right-radius:36px;border-bottom-right-radius:36px}.rounded-b-36px{border-bottom-left-radius:36px;border-bottom-right-radius:36px}.rounded-l-36px{border-bottom-left-radius:36px}.rounded-l-36px,.rounded-tl-36px{border-top-left-radius:36px}.rounded-tr-36px{border-top-right-radius:36px}.rounded-br-36px{border-bottom-right-radius:36px}.rounded-bl-36px{border-bottom-left-radius:36px}.rounded-36-percentage{border-radius:36%}.gap-36{gap:36px}.gap-x-36{-moz-column-gap:36px;column-gap:36px}.gap-y-36{row-gap:36px}.top-36{top:36px}.right-36{right:36px}.bottom-36{bottom:36px}.left-36{left:36px}.z-36{z-index:36}.ma-37px{margin:37px}.mt-37px{margin-top:37px}.mr-37px{margin-right:37px}.mb-37px{margin-bottom:37px}.ml-37px,.mx-37px{margin-left:37px}.mx-37px{margin-right:37px}.my-37px{margin-top:37px;margin-bottom:37px}.pa-37px{padding:37px}.pt-37px{padding-top:37px}.pr-37px{padding-right:37px}.pb-37px{padding-bottom:37px}.pl-37px,.px-37px{padding-left:37px}.px-37px{padding-right:37px}.py-37px{padding-top:37px;padding-bottom:37px}.w-37px{width:37px}.h-37px{height:37px}.w-37-percentage{width:37%}.h-37-percentage{height:37%}.min-w-37px{min-width:37px}.min-h-37px{min-height:37px}.max-w-37px{max-width:37px}.max-h-37px{max-height:37px}.font-37px{font-size:37px!important}.lh-37px{line-height:37px}.lh-37-percentage{line-height:37%}.border-37px{border-width:37px}.border-t-37px{border-top-width:37px}.border-r-37px{border-right-width:37px}.border-b-37px{border-bottom-width:37px}.border-l-37px{border-left-width:37px}.rounded-37px{border-radius:37px}.rounded-t-37px{border-top-left-radius:37px;border-top-right-radius:37px}.rounded-r-37px{border-top-right-radius:37px;border-bottom-right-radius:37px}.rounded-b-37px{border-bottom-left-radius:37px;border-bottom-right-radius:37px}.rounded-l-37px{border-bottom-left-radius:37px}.rounded-l-37px,.rounded-tl-37px{border-top-left-radius:37px}.rounded-tr-37px{border-top-right-radius:37px}.rounded-br-37px{border-bottom-right-radius:37px}.rounded-bl-37px{border-bottom-left-radius:37px}.rounded-37-percentage{border-radius:37%}.gap-37{gap:37px}.gap-x-37{-moz-column-gap:37px;column-gap:37px}.gap-y-37{row-gap:37px}.top-37{top:37px}.right-37{right:37px}.bottom-37{bottom:37px}.left-37{left:37px}.z-37{z-index:37}.ma-38px{margin:38px}.mt-38px{margin-top:38px}.mr-38px{margin-right:38px}.mb-38px{margin-bottom:38px}.ml-38px,.mx-38px{margin-left:38px}.mx-38px{margin-right:38px}.my-38px{margin-top:38px;margin-bottom:38px}.pa-38px{padding:38px}.pt-38px{padding-top:38px}.pr-38px{padding-right:38px}.pb-38px{padding-bottom:38px}.pl-38px,.px-38px{padding-left:38px}.px-38px{padding-right:38px}.py-38px{padding-top:38px;padding-bottom:38px}.w-38px{width:38px}.h-38px{height:38px}.w-38-percentage{width:38%}.h-38-percentage{height:38%}.min-w-38px{min-width:38px}.min-h-38px{min-height:38px}.max-w-38px{max-width:38px}.max-h-38px{max-height:38px}.font-38px{font-size:38px!important}.lh-38px{line-height:38px}.lh-38-percentage{line-height:38%}.border-38px{border-width:38px}.border-t-38px{border-top-width:38px}.border-r-38px{border-right-width:38px}.border-b-38px{border-bottom-width:38px}.border-l-38px{border-left-width:38px}.rounded-38px{border-radius:38px}.rounded-t-38px{border-top-left-radius:38px;border-top-right-radius:38px}.rounded-r-38px{border-top-right-radius:38px;border-bottom-right-radius:38px}.rounded-b-38px{border-bottom-left-radius:38px;border-bottom-right-radius:38px}.rounded-l-38px{border-bottom-left-radius:38px}.rounded-l-38px,.rounded-tl-38px{border-top-left-radius:38px}.rounded-tr-38px{border-top-right-radius:38px}.rounded-br-38px{border-bottom-right-radius:38px}.rounded-bl-38px{border-bottom-left-radius:38px}.rounded-38-percentage{border-radius:38%}.gap-38{gap:38px}.gap-x-38{-moz-column-gap:38px;column-gap:38px}.gap-y-38{row-gap:38px}.top-38{top:38px}.right-38{right:38px}.bottom-38{bottom:38px}.left-38{left:38px}.z-38{z-index:38}.ma-39px{margin:39px}.mt-39px{margin-top:39px}.mr-39px{margin-right:39px}.mb-39px{margin-bottom:39px}.ml-39px,.mx-39px{margin-left:39px}.mx-39px{margin-right:39px}.my-39px{margin-top:39px;margin-bottom:39px}.pa-39px{padding:39px}.pt-39px{padding-top:39px}.pr-39px{padding-right:39px}.pb-39px{padding-bottom:39px}.pl-39px,.px-39px{padding-left:39px}.px-39px{padding-right:39px}.py-39px{padding-top:39px;padding-bottom:39px}.w-39px{width:39px}.h-39px{height:39px}.w-39-percentage{width:39%}.h-39-percentage{height:39%}.min-w-39px{min-width:39px}.min-h-39px{min-height:39px}.max-w-39px{max-width:39px}.max-h-39px{max-height:39px}.font-39px{font-size:39px!important}.lh-39px{line-height:39px}.lh-39-percentage{line-height:39%}.border-39px{border-width:39px}.border-t-39px{border-top-width:39px}.border-r-39px{border-right-width:39px}.border-b-39px{border-bottom-width:39px}.border-l-39px{border-left-width:39px}.rounded-39px{border-radius:39px}.rounded-t-39px{border-top-left-radius:39px;border-top-right-radius:39px}.rounded-r-39px{border-top-right-radius:39px;border-bottom-right-radius:39px}.rounded-b-39px{border-bottom-left-radius:39px;border-bottom-right-radius:39px}.rounded-l-39px{border-bottom-left-radius:39px}.rounded-l-39px,.rounded-tl-39px{border-top-left-radius:39px}.rounded-tr-39px{border-top-right-radius:39px}.rounded-br-39px{border-bottom-right-radius:39px}.rounded-bl-39px{border-bottom-left-radius:39px}.rounded-39-percentage{border-radius:39%}.gap-39{gap:39px}.gap-x-39{-moz-column-gap:39px;column-gap:39px}.gap-y-39{row-gap:39px}.top-39{top:39px}.right-39{right:39px}.bottom-39{bottom:39px}.left-39{left:39px}.z-39{z-index:39}.ma-40px{margin:40px}.mt-40px{margin-top:40px}.mr-40px{margin-right:40px}.mb-40px{margin-bottom:40px}.ml-40px,.mx-40px{margin-left:40px}.mx-40px{margin-right:40px}.my-40px{margin-top:40px;margin-bottom:40px}.pa-40px{padding:40px}.pt-40px{padding-top:40px}.pr-40px{padding-right:40px}.pb-40px{padding-bottom:40px}.pl-40px,.px-40px{padding-left:40px}.px-40px{padding-right:40px}.py-40px{padding-top:40px;padding-bottom:40px}.w-40px{width:40px}.h-40px{height:40px}.w-40-percentage{width:40%}.h-40-percentage{height:40%}.min-w-40px{min-width:40px}.min-h-40px{min-height:40px}.max-w-40px{max-width:40px}.max-h-40px{max-height:40px}.font-40px{font-size:40px!important}.lh-40px{line-height:40px}.lh-40-percentage{line-height:40%}.border-40px{border-width:40px}.border-t-40px{border-top-width:40px}.border-r-40px{border-right-width:40px}.border-b-40px{border-bottom-width:40px}.border-l-40px{border-left-width:40px}.rounded-40px{border-radius:40px}.rounded-t-40px{border-top-left-radius:40px;border-top-right-radius:40px}.rounded-r-40px{border-top-right-radius:40px;border-bottom-right-radius:40px}.rounded-b-40px{border-bottom-left-radius:40px;border-bottom-right-radius:40px}.rounded-l-40px{border-bottom-left-radius:40px}.rounded-l-40px,.rounded-tl-40px{border-top-left-radius:40px}.rounded-tr-40px{border-top-right-radius:40px}.rounded-br-40px{border-bottom-right-radius:40px}.rounded-bl-40px{border-bottom-left-radius:40px}.rounded-40-percentage{border-radius:40%}.gap-40{gap:40px}.gap-x-40{-moz-column-gap:40px;column-gap:40px}.gap-y-40{row-gap:40px}.top-40{top:40px}.right-40{right:40px}.bottom-40{bottom:40px}.left-40{left:40px}.z-40{z-index:40}.ma-41px{margin:41px}.mt-41px{margin-top:41px}.mr-41px{margin-right:41px}.mb-41px{margin-bottom:41px}.ml-41px,.mx-41px{margin-left:41px}.mx-41px{margin-right:41px}.my-41px{margin-top:41px;margin-bottom:41px}.pa-41px{padding:41px}.pt-41px{padding-top:41px}.pr-41px{padding-right:41px}.pb-41px{padding-bottom:41px}.pl-41px,.px-41px{padding-left:41px}.px-41px{padding-right:41px}.py-41px{padding-top:41px;padding-bottom:41px}.w-41px{width:41px}.h-41px{height:41px}.w-41-percentage{width:41%}.h-41-percentage{height:41%}.min-w-41px{min-width:41px}.min-h-41px{min-height:41px}.max-w-41px{max-width:41px}.max-h-41px{max-height:41px}.font-41px{font-size:41px!important}.lh-41px{line-height:41px}.lh-41-percentage{line-height:41%}.border-41px{border-width:41px}.border-t-41px{border-top-width:41px}.border-r-41px{border-right-width:41px}.border-b-41px{border-bottom-width:41px}.border-l-41px{border-left-width:41px}.rounded-41px{border-radius:41px}.rounded-t-41px{border-top-left-radius:41px;border-top-right-radius:41px}.rounded-r-41px{border-top-right-radius:41px;border-bottom-right-radius:41px}.rounded-b-41px{border-bottom-left-radius:41px;border-bottom-right-radius:41px}.rounded-l-41px{border-bottom-left-radius:41px}.rounded-l-41px,.rounded-tl-41px{border-top-left-radius:41px}.rounded-tr-41px{border-top-right-radius:41px}.rounded-br-41px{border-bottom-right-radius:41px}.rounded-bl-41px{border-bottom-left-radius:41px}.rounded-41-percentage{border-radius:41%}.gap-41{gap:41px}.gap-x-41{-moz-column-gap:41px;column-gap:41px}.gap-y-41{row-gap:41px}.top-41{top:41px}.right-41{right:41px}.bottom-41{bottom:41px}.left-41{left:41px}.z-41{z-index:41}.ma-42px{margin:42px}.mt-42px{margin-top:42px}.mr-42px{margin-right:42px}.mb-42px{margin-bottom:42px}.ml-42px,.mx-42px{margin-left:42px}.mx-42px{margin-right:42px}.my-42px{margin-top:42px;margin-bottom:42px}.pa-42px{padding:42px}.pt-42px{padding-top:42px}.pr-42px{padding-right:42px}.pb-42px{padding-bottom:42px}.pl-42px,.px-42px{padding-left:42px}.px-42px{padding-right:42px}.py-42px{padding-top:42px;padding-bottom:42px}.w-42px{width:42px}.h-42px{height:42px}.w-42-percentage{width:42%}.h-42-percentage{height:42%}.min-w-42px{min-width:42px}.min-h-42px{min-height:42px}.max-w-42px{max-width:42px}.max-h-42px{max-height:42px}.font-42px{font-size:42px!important}.lh-42px{line-height:42px}.lh-42-percentage{line-height:42%}.border-42px{border-width:42px}.border-t-42px{border-top-width:42px}.border-r-42px{border-right-width:42px}.border-b-42px{border-bottom-width:42px}.border-l-42px{border-left-width:42px}.rounded-42px{border-radius:42px}.rounded-t-42px{border-top-left-radius:42px;border-top-right-radius:42px}.rounded-r-42px{border-top-right-radius:42px;border-bottom-right-radius:42px}.rounded-b-42px{border-bottom-left-radius:42px;border-bottom-right-radius:42px}.rounded-l-42px{border-bottom-left-radius:42px}.rounded-l-42px,.rounded-tl-42px{border-top-left-radius:42px}.rounded-tr-42px{border-top-right-radius:42px}.rounded-br-42px{border-bottom-right-radius:42px}.rounded-bl-42px{border-bottom-left-radius:42px}.rounded-42-percentage{border-radius:42%}.gap-42{gap:42px}.gap-x-42{-moz-column-gap:42px;column-gap:42px}.gap-y-42{row-gap:42px}.top-42{top:42px}.right-42{right:42px}.bottom-42{bottom:42px}.left-42{left:42px}.z-42{z-index:42}.ma-43px{margin:43px}.mt-43px{margin-top:43px}.mr-43px{margin-right:43px}.mb-43px{margin-bottom:43px}.ml-43px,.mx-43px{margin-left:43px}.mx-43px{margin-right:43px}.my-43px{margin-top:43px;margin-bottom:43px}.pa-43px{padding:43px}.pt-43px{padding-top:43px}.pr-43px{padding-right:43px}.pb-43px{padding-bottom:43px}.pl-43px,.px-43px{padding-left:43px}.px-43px{padding-right:43px}.py-43px{padding-top:43px;padding-bottom:43px}.w-43px{width:43px}.h-43px{height:43px}.w-43-percentage{width:43%}.h-43-percentage{height:43%}.min-w-43px{min-width:43px}.min-h-43px{min-height:43px}.max-w-43px{max-width:43px}.max-h-43px{max-height:43px}.font-43px{font-size:43px!important}.lh-43px{line-height:43px}.lh-43-percentage{line-height:43%}.border-43px{border-width:43px}.border-t-43px{border-top-width:43px}.border-r-43px{border-right-width:43px}.border-b-43px{border-bottom-width:43px}.border-l-43px{border-left-width:43px}.rounded-43px{border-radius:43px}.rounded-t-43px{border-top-left-radius:43px;border-top-right-radius:43px}.rounded-r-43px{border-top-right-radius:43px;border-bottom-right-radius:43px}.rounded-b-43px{border-bottom-left-radius:43px;border-bottom-right-radius:43px}.rounded-l-43px{border-bottom-left-radius:43px}.rounded-l-43px,.rounded-tl-43px{border-top-left-radius:43px}.rounded-tr-43px{border-top-right-radius:43px}.rounded-br-43px{border-bottom-right-radius:43px}.rounded-bl-43px{border-bottom-left-radius:43px}.rounded-43-percentage{border-radius:43%}.gap-43{gap:43px}.gap-x-43{-moz-column-gap:43px;column-gap:43px}.gap-y-43{row-gap:43px}.top-43{top:43px}.right-43{right:43px}.bottom-43{bottom:43px}.left-43{left:43px}.z-43{z-index:43}.ma-44px{margin:44px}.mt-44px{margin-top:44px}.mr-44px{margin-right:44px}.mb-44px{margin-bottom:44px}.ml-44px,.mx-44px{margin-left:44px}.mx-44px{margin-right:44px}.my-44px{margin-top:44px;margin-bottom:44px}.pa-44px{padding:44px}.pt-44px{padding-top:44px}.pr-44px{padding-right:44px}.pb-44px{padding-bottom:44px}.pl-44px,.px-44px{padding-left:44px}.px-44px{padding-right:44px}.py-44px{padding-top:44px;padding-bottom:44px}.w-44px{width:44px}.h-44px{height:44px}.w-44-percentage{width:44%}.h-44-percentage{height:44%}.min-w-44px{min-width:44px}.min-h-44px{min-height:44px}.max-w-44px{max-width:44px}.max-h-44px{max-height:44px}.font-44px{font-size:44px!important}.lh-44px{line-height:44px}.lh-44-percentage{line-height:44%}.border-44px{border-width:44px}.border-t-44px{border-top-width:44px}.border-r-44px{border-right-width:44px}.border-b-44px{border-bottom-width:44px}.border-l-44px{border-left-width:44px}.rounded-44px{border-radius:44px}.rounded-t-44px{border-top-left-radius:44px;border-top-right-radius:44px}.rounded-r-44px{border-top-right-radius:44px;border-bottom-right-radius:44px}.rounded-b-44px{border-bottom-left-radius:44px;border-bottom-right-radius:44px}.rounded-l-44px{border-bottom-left-radius:44px}.rounded-l-44px,.rounded-tl-44px{border-top-left-radius:44px}.rounded-tr-44px{border-top-right-radius:44px}.rounded-br-44px{border-bottom-right-radius:44px}.rounded-bl-44px{border-bottom-left-radius:44px}.rounded-44-percentage{border-radius:44%}.gap-44{gap:44px}.gap-x-44{-moz-column-gap:44px;column-gap:44px}.gap-y-44{row-gap:44px}.top-44{top:44px}.right-44{right:44px}.bottom-44{bottom:44px}.left-44{left:44px}.z-44{z-index:44}.ma-45px{margin:45px}.mt-45px{margin-top:45px}.mr-45px{margin-right:45px}.mb-45px{margin-bottom:45px}.ml-45px,.mx-45px{margin-left:45px}.mx-45px{margin-right:45px}.my-45px{margin-top:45px;margin-bottom:45px}.pa-45px{padding:45px}.pt-45px{padding-top:45px}.pr-45px{padding-right:45px}.pb-45px{padding-bottom:45px}.pl-45px,.px-45px{padding-left:45px}.px-45px{padding-right:45px}.py-45px{padding-top:45px;padding-bottom:45px}.w-45px{width:45px}.h-45px{height:45px}.w-45-percentage{width:45%}.h-45-percentage{height:45%}.min-w-45px{min-width:45px}.min-h-45px{min-height:45px}.max-w-45px{max-width:45px}.max-h-45px{max-height:45px}.font-45px{font-size:45px!important}.lh-45px{line-height:45px}.lh-45-percentage{line-height:45%}.border-45px{border-width:45px}.border-t-45px{border-top-width:45px}.border-r-45px{border-right-width:45px}.border-b-45px{border-bottom-width:45px}.border-l-45px{border-left-width:45px}.rounded-45px{border-radius:45px}.rounded-t-45px{border-top-left-radius:45px;border-top-right-radius:45px}.rounded-r-45px{border-top-right-radius:45px;border-bottom-right-radius:45px}.rounded-b-45px{border-bottom-left-radius:45px;border-bottom-right-radius:45px}.rounded-l-45px{border-bottom-left-radius:45px}.rounded-l-45px,.rounded-tl-45px{border-top-left-radius:45px}.rounded-tr-45px{border-top-right-radius:45px}.rounded-br-45px{border-bottom-right-radius:45px}.rounded-bl-45px{border-bottom-left-radius:45px}.rounded-45-percentage{border-radius:45%}.gap-45{gap:45px}.gap-x-45{-moz-column-gap:45px;column-gap:45px}.gap-y-45{row-gap:45px}.top-45{top:45px}.right-45{right:45px}.bottom-45{bottom:45px}.left-45{left:45px}.z-45{z-index:45}.ma-46px{margin:46px}.mt-46px{margin-top:46px}.mr-46px{margin-right:46px}.mb-46px{margin-bottom:46px}.ml-46px,.mx-46px{margin-left:46px}.mx-46px{margin-right:46px}.my-46px{margin-top:46px;margin-bottom:46px}.pa-46px{padding:46px}.pt-46px{padding-top:46px}.pr-46px{padding-right:46px}.pb-46px{padding-bottom:46px}.pl-46px,.px-46px{padding-left:46px}.px-46px{padding-right:46px}.py-46px{padding-top:46px;padding-bottom:46px}.w-46px{width:46px}.h-46px{height:46px}.w-46-percentage{width:46%}.h-46-percentage{height:46%}.min-w-46px{min-width:46px}.min-h-46px{min-height:46px}.max-w-46px{max-width:46px}.max-h-46px{max-height:46px}.font-46px{font-size:46px!important}.lh-46px{line-height:46px}.lh-46-percentage{line-height:46%}.border-46px{border-width:46px}.border-t-46px{border-top-width:46px}.border-r-46px{border-right-width:46px}.border-b-46px{border-bottom-width:46px}.border-l-46px{border-left-width:46px}.rounded-46px{border-radius:46px}.rounded-t-46px{border-top-left-radius:46px;border-top-right-radius:46px}.rounded-r-46px{border-top-right-radius:46px;border-bottom-right-radius:46px}.rounded-b-46px{border-bottom-left-radius:46px;border-bottom-right-radius:46px}.rounded-l-46px{border-bottom-left-radius:46px}.rounded-l-46px,.rounded-tl-46px{border-top-left-radius:46px}.rounded-tr-46px{border-top-right-radius:46px}.rounded-br-46px{border-bottom-right-radius:46px}.rounded-bl-46px{border-bottom-left-radius:46px}.rounded-46-percentage{border-radius:46%}.gap-46{gap:46px}.gap-x-46{-moz-column-gap:46px;column-gap:46px}.gap-y-46{row-gap:46px}.top-46{top:46px}.right-46{right:46px}.bottom-46{bottom:46px}.left-46{left:46px}.z-46{z-index:46}.ma-47px{margin:47px}.mt-47px{margin-top:47px}.mr-47px{margin-right:47px}.mb-47px{margin-bottom:47px}.ml-47px,.mx-47px{margin-left:47px}.mx-47px{margin-right:47px}.my-47px{margin-top:47px;margin-bottom:47px}.pa-47px{padding:47px}.pt-47px{padding-top:47px}.pr-47px{padding-right:47px}.pb-47px{padding-bottom:47px}.pl-47px,.px-47px{padding-left:47px}.px-47px{padding-right:47px}.py-47px{padding-top:47px;padding-bottom:47px}.w-47px{width:47px}.h-47px{height:47px}.w-47-percentage{width:47%}.h-47-percentage{height:47%}.min-w-47px{min-width:47px}.min-h-47px{min-height:47px}.max-w-47px{max-width:47px}.max-h-47px{max-height:47px}.font-47px{font-size:47px!important}.lh-47px{line-height:47px}.lh-47-percentage{line-height:47%}.border-47px{border-width:47px}.border-t-47px{border-top-width:47px}.border-r-47px{border-right-width:47px}.border-b-47px{border-bottom-width:47px}.border-l-47px{border-left-width:47px}.rounded-47px{border-radius:47px}.rounded-t-47px{border-top-left-radius:47px;border-top-right-radius:47px}.rounded-r-47px{border-top-right-radius:47px;border-bottom-right-radius:47px}.rounded-b-47px{border-bottom-left-radius:47px;border-bottom-right-radius:47px}.rounded-l-47px{border-bottom-left-radius:47px}.rounded-l-47px,.rounded-tl-47px{border-top-left-radius:47px}.rounded-tr-47px{border-top-right-radius:47px}.rounded-br-47px{border-bottom-right-radius:47px}.rounded-bl-47px{border-bottom-left-radius:47px}.rounded-47-percentage{border-radius:47%}.gap-47{gap:47px}.gap-x-47{-moz-column-gap:47px;column-gap:47px}.gap-y-47{row-gap:47px}.top-47{top:47px}.right-47{right:47px}.bottom-47{bottom:47px}.left-47{left:47px}.z-47{z-index:47}.ma-48px{margin:48px}.mt-48px{margin-top:48px}.mr-48px{margin-right:48px}.mb-48px{margin-bottom:48px}.ml-48px,.mx-48px{margin-left:48px}.mx-48px{margin-right:48px}.my-48px{margin-top:48px;margin-bottom:48px}.pa-48px{padding:48px}.pt-48px{padding-top:48px}.pr-48px{padding-right:48px}.pb-48px{padding-bottom:48px}.pl-48px,.px-48px{padding-left:48px}.px-48px{padding-right:48px}.py-48px{padding-top:48px;padding-bottom:48px}.w-48px{width:48px}.h-48px{height:48px}.w-48-percentage{width:48%}.h-48-percentage{height:48%}.min-w-48px{min-width:48px}.min-h-48px{min-height:48px}.max-w-48px{max-width:48px}.max-h-48px{max-height:48px}.font-48px{font-size:48px!important}.lh-48px{line-height:48px}.lh-48-percentage{line-height:48%}.border-48px{border-width:48px}.border-t-48px{border-top-width:48px}.border-r-48px{border-right-width:48px}.border-b-48px{border-bottom-width:48px}.border-l-48px{border-left-width:48px}.rounded-48px{border-radius:48px}.rounded-t-48px{border-top-left-radius:48px;border-top-right-radius:48px}.rounded-r-48px{border-top-right-radius:48px;border-bottom-right-radius:48px}.rounded-b-48px{border-bottom-left-radius:48px;border-bottom-right-radius:48px}.rounded-l-48px{border-bottom-left-radius:48px}.rounded-l-48px,.rounded-tl-48px{border-top-left-radius:48px}.rounded-tr-48px{border-top-right-radius:48px}.rounded-br-48px{border-bottom-right-radius:48px}.rounded-bl-48px{border-bottom-left-radius:48px}.rounded-48-percentage{border-radius:48%}.gap-48{gap:48px}.gap-x-48{-moz-column-gap:48px;column-gap:48px}.gap-y-48{row-gap:48px}.top-48{top:48px}.right-48{right:48px}.bottom-48{bottom:48px}.left-48{left:48px}.z-48{z-index:48}.ma-49px{margin:49px}.mt-49px{margin-top:49px}.mr-49px{margin-right:49px}.mb-49px{margin-bottom:49px}.ml-49px,.mx-49px{margin-left:49px}.mx-49px{margin-right:49px}.my-49px{margin-top:49px;margin-bottom:49px}.pa-49px{padding:49px}.pt-49px{padding-top:49px}.pr-49px{padding-right:49px}.pb-49px{padding-bottom:49px}.pl-49px,.px-49px{padding-left:49px}.px-49px{padding-right:49px}.py-49px{padding-top:49px;padding-bottom:49px}.w-49px{width:49px}.h-49px{height:49px}.w-49-percentage{width:49%}.h-49-percentage{height:49%}.min-w-49px{min-width:49px}.min-h-49px{min-height:49px}.max-w-49px{max-width:49px}.max-h-49px{max-height:49px}.font-49px{font-size:49px!important}.lh-49px{line-height:49px}.lh-49-percentage{line-height:49%}.border-49px{border-width:49px}.border-t-49px{border-top-width:49px}.border-r-49px{border-right-width:49px}.border-b-49px{border-bottom-width:49px}.border-l-49px{border-left-width:49px}.rounded-49px{border-radius:49px}.rounded-t-49px{border-top-left-radius:49px;border-top-right-radius:49px}.rounded-r-49px{border-top-right-radius:49px;border-bottom-right-radius:49px}.rounded-b-49px{border-bottom-left-radius:49px;border-bottom-right-radius:49px}.rounded-l-49px{border-bottom-left-radius:49px}.rounded-l-49px,.rounded-tl-49px{border-top-left-radius:49px}.rounded-tr-49px{border-top-right-radius:49px}.rounded-br-49px{border-bottom-right-radius:49px}.rounded-bl-49px{border-bottom-left-radius:49px}.rounded-49-percentage{border-radius:49%}.gap-49{gap:49px}.gap-x-49{-moz-column-gap:49px;column-gap:49px}.gap-y-49{row-gap:49px}.top-49{top:49px}.right-49{right:49px}.bottom-49{bottom:49px}.left-49{left:49px}.z-49{z-index:49}.ma-50px{margin:50px}.mt-50px{margin-top:50px}.mr-50px{margin-right:50px}.mb-50px{margin-bottom:50px}.ml-50px,.mx-50px{margin-left:50px}.mx-50px{margin-right:50px}.my-50px{margin-top:50px;margin-bottom:50px}.pa-50px{padding:50px}.pt-50px{padding-top:50px}.pr-50px{padding-right:50px}.pb-50px{padding-bottom:50px}.pl-50px,.px-50px{padding-left:50px}.px-50px{padding-right:50px}.py-50px{padding-top:50px;padding-bottom:50px}.w-50px{width:50px}.h-50px{height:50px}.w-50-percentage{width:50%}.h-50-percentage{height:50%}.min-w-50px{min-width:50px}.min-h-50px{min-height:50px}.max-w-50px{max-width:50px}.max-h-50px{max-height:50px}.font-50px{font-size:50px!important}.lh-50px{line-height:50px}.lh-50-percentage{line-height:50%}.border-50px{border-width:50px}.border-t-50px{border-top-width:50px}.border-r-50px{border-right-width:50px}.border-b-50px{border-bottom-width:50px}.border-l-50px{border-left-width:50px}.rounded-50px{border-radius:50px}.rounded-t-50px{border-top-left-radius:50px;border-top-right-radius:50px}.rounded-r-50px{border-top-right-radius:50px;border-bottom-right-radius:50px}.rounded-b-50px{border-bottom-left-radius:50px;border-bottom-right-radius:50px}.rounded-l-50px{border-bottom-left-radius:50px}.rounded-l-50px,.rounded-tl-50px{border-top-left-radius:50px}.rounded-tr-50px{border-top-right-radius:50px}.rounded-br-50px{border-bottom-right-radius:50px}.rounded-bl-50px{border-bottom-left-radius:50px}.rounded-50-percentage{border-radius:50%}.gap-50{gap:50px}.gap-x-50{-moz-column-gap:50px;column-gap:50px}.gap-y-50{row-gap:50px}.top-50{top:50px}.right-50{right:50px}.bottom-50{bottom:50px}.left-50{left:50px}.z-50{z-index:50}.ma-51px{margin:51px}.mt-51px{margin-top:51px}.mr-51px{margin-right:51px}.mb-51px{margin-bottom:51px}.ml-51px,.mx-51px{margin-left:51px}.mx-51px{margin-right:51px}.my-51px{margin-top:51px;margin-bottom:51px}.pa-51px{padding:51px}.pt-51px{padding-top:51px}.pr-51px{padding-right:51px}.pb-51px{padding-bottom:51px}.pl-51px,.px-51px{padding-left:51px}.px-51px{padding-right:51px}.py-51px{padding-top:51px;padding-bottom:51px}.w-51px{width:51px}.h-51px{height:51px}.w-51-percentage{width:51%}.h-51-percentage{height:51%}.min-w-51px{min-width:51px}.min-h-51px{min-height:51px}.max-w-51px{max-width:51px}.max-h-51px{max-height:51px}.font-51px{font-size:51px!important}.lh-51px{line-height:51px}.lh-51-percentage{line-height:51%}.border-51px{border-width:51px}.border-t-51px{border-top-width:51px}.border-r-51px{border-right-width:51px}.border-b-51px{border-bottom-width:51px}.border-l-51px{border-left-width:51px}.rounded-51px{border-radius:51px}.rounded-t-51px{border-top-left-radius:51px;border-top-right-radius:51px}.rounded-r-51px{border-top-right-radius:51px;border-bottom-right-radius:51px}.rounded-b-51px{border-bottom-left-radius:51px;border-bottom-right-radius:51px}.rounded-l-51px{border-bottom-left-radius:51px}.rounded-l-51px,.rounded-tl-51px{border-top-left-radius:51px}.rounded-tr-51px{border-top-right-radius:51px}.rounded-br-51px{border-bottom-right-radius:51px}.rounded-bl-51px{border-bottom-left-radius:51px}.rounded-51-percentage{border-radius:51%}.gap-51{gap:51px}.gap-x-51{-moz-column-gap:51px;column-gap:51px}.gap-y-51{row-gap:51px}.top-51{top:51px}.right-51{right:51px}.bottom-51{bottom:51px}.left-51{left:51px}.z-51{z-index:51}.ma-52px{margin:52px}.mt-52px{margin-top:52px}.mr-52px{margin-right:52px}.mb-52px{margin-bottom:52px}.ml-52px,.mx-52px{margin-left:52px}.mx-52px{margin-right:52px}.my-52px{margin-top:52px;margin-bottom:52px}.pa-52px{padding:52px}.pt-52px{padding-top:52px}.pr-52px{padding-right:52px}.pb-52px{padding-bottom:52px}.pl-52px,.px-52px{padding-left:52px}.px-52px{padding-right:52px}.py-52px{padding-top:52px;padding-bottom:52px}.w-52px{width:52px}.h-52px{height:52px}.w-52-percentage{width:52%}.h-52-percentage{height:52%}.min-w-52px{min-width:52px}.min-h-52px{min-height:52px}.max-w-52px{max-width:52px}.max-h-52px{max-height:52px}.font-52px{font-size:52px!important}.lh-52px{line-height:52px}.lh-52-percentage{line-height:52%}.border-52px{border-width:52px}.border-t-52px{border-top-width:52px}.border-r-52px{border-right-width:52px}.border-b-52px{border-bottom-width:52px}.border-l-52px{border-left-width:52px}.rounded-52px{border-radius:52px}.rounded-t-52px{border-top-left-radius:52px;border-top-right-radius:52px}.rounded-r-52px{border-top-right-radius:52px;border-bottom-right-radius:52px}.rounded-b-52px{border-bottom-left-radius:52px;border-bottom-right-radius:52px}.rounded-l-52px{border-bottom-left-radius:52px}.rounded-l-52px,.rounded-tl-52px{border-top-left-radius:52px}.rounded-tr-52px{border-top-right-radius:52px}.rounded-br-52px{border-bottom-right-radius:52px}.rounded-bl-52px{border-bottom-left-radius:52px}.rounded-52-percentage{border-radius:52%}.gap-52{gap:52px}.gap-x-52{-moz-column-gap:52px;column-gap:52px}.gap-y-52{row-gap:52px}.top-52{top:52px}.right-52{right:52px}.bottom-52{bottom:52px}.left-52{left:52px}.z-52{z-index:52}.ma-53px{margin:53px}.mt-53px{margin-top:53px}.mr-53px{margin-right:53px}.mb-53px{margin-bottom:53px}.ml-53px,.mx-53px{margin-left:53px}.mx-53px{margin-right:53px}.my-53px{margin-top:53px;margin-bottom:53px}.pa-53px{padding:53px}.pt-53px{padding-top:53px}.pr-53px{padding-right:53px}.pb-53px{padding-bottom:53px}.pl-53px,.px-53px{padding-left:53px}.px-53px{padding-right:53px}.py-53px{padding-top:53px;padding-bottom:53px}.w-53px{width:53px}.h-53px{height:53px}.w-53-percentage{width:53%}.h-53-percentage{height:53%}.min-w-53px{min-width:53px}.min-h-53px{min-height:53px}.max-w-53px{max-width:53px}.max-h-53px{max-height:53px}.font-53px{font-size:53px!important}.lh-53px{line-height:53px}.lh-53-percentage{line-height:53%}.border-53px{border-width:53px}.border-t-53px{border-top-width:53px}.border-r-53px{border-right-width:53px}.border-b-53px{border-bottom-width:53px}.border-l-53px{border-left-width:53px}.rounded-53px{border-radius:53px}.rounded-t-53px{border-top-left-radius:53px;border-top-right-radius:53px}.rounded-r-53px{border-top-right-radius:53px;border-bottom-right-radius:53px}.rounded-b-53px{border-bottom-left-radius:53px;border-bottom-right-radius:53px}.rounded-l-53px{border-bottom-left-radius:53px}.rounded-l-53px,.rounded-tl-53px{border-top-left-radius:53px}.rounded-tr-53px{border-top-right-radius:53px}.rounded-br-53px{border-bottom-right-radius:53px}.rounded-bl-53px{border-bottom-left-radius:53px}.rounded-53-percentage{border-radius:53%}.gap-53{gap:53px}.gap-x-53{-moz-column-gap:53px;column-gap:53px}.gap-y-53{row-gap:53px}.top-53{top:53px}.right-53{right:53px}.bottom-53{bottom:53px}.left-53{left:53px}.z-53{z-index:53}.ma-54px{margin:54px}.mt-54px{margin-top:54px}.mr-54px{margin-right:54px}.mb-54px{margin-bottom:54px}.ml-54px,.mx-54px{margin-left:54px}.mx-54px{margin-right:54px}.my-54px{margin-top:54px;margin-bottom:54px}.pa-54px{padding:54px}.pt-54px{padding-top:54px}.pr-54px{padding-right:54px}.pb-54px{padding-bottom:54px}.pl-54px,.px-54px{padding-left:54px}.px-54px{padding-right:54px}.py-54px{padding-top:54px;padding-bottom:54px}.w-54px{width:54px}.h-54px{height:54px}.w-54-percentage{width:54%}.h-54-percentage{height:54%}.min-w-54px{min-width:54px}.min-h-54px{min-height:54px}.max-w-54px{max-width:54px}.max-h-54px{max-height:54px}.font-54px{font-size:54px!important}.lh-54px{line-height:54px}.lh-54-percentage{line-height:54%}.border-54px{border-width:54px}.border-t-54px{border-top-width:54px}.border-r-54px{border-right-width:54px}.border-b-54px{border-bottom-width:54px}.border-l-54px{border-left-width:54px}.rounded-54px{border-radius:54px}.rounded-t-54px{border-top-left-radius:54px;border-top-right-radius:54px}.rounded-r-54px{border-top-right-radius:54px;border-bottom-right-radius:54px}.rounded-b-54px{border-bottom-left-radius:54px;border-bottom-right-radius:54px}.rounded-l-54px{border-bottom-left-radius:54px}.rounded-l-54px,.rounded-tl-54px{border-top-left-radius:54px}.rounded-tr-54px{border-top-right-radius:54px}.rounded-br-54px{border-bottom-right-radius:54px}.rounded-bl-54px{border-bottom-left-radius:54px}.rounded-54-percentage{border-radius:54%}.gap-54{gap:54px}.gap-x-54{-moz-column-gap:54px;column-gap:54px}.gap-y-54{row-gap:54px}.top-54{top:54px}.right-54{right:54px}.bottom-54{bottom:54px}.left-54{left:54px}.z-54{z-index:54}.ma-55px{margin:55px}.mt-55px{margin-top:55px}.mr-55px{margin-right:55px}.mb-55px{margin-bottom:55px}.ml-55px,.mx-55px{margin-left:55px}.mx-55px{margin-right:55px}.my-55px{margin-top:55px;margin-bottom:55px}.pa-55px{padding:55px}.pt-55px{padding-top:55px}.pr-55px{padding-right:55px}.pb-55px{padding-bottom:55px}.pl-55px,.px-55px{padding-left:55px}.px-55px{padding-right:55px}.py-55px{padding-top:55px;padding-bottom:55px}.w-55px{width:55px}.h-55px{height:55px}.w-55-percentage{width:55%}.h-55-percentage{height:55%}.min-w-55px{min-width:55px}.min-h-55px{min-height:55px}.max-w-55px{max-width:55px}.max-h-55px{max-height:55px}.font-55px{font-size:55px!important}.lh-55px{line-height:55px}.lh-55-percentage{line-height:55%}.border-55px{border-width:55px}.border-t-55px{border-top-width:55px}.border-r-55px{border-right-width:55px}.border-b-55px{border-bottom-width:55px}.border-l-55px{border-left-width:55px}.rounded-55px{border-radius:55px}.rounded-t-55px{border-top-left-radius:55px;border-top-right-radius:55px}.rounded-r-55px{border-top-right-radius:55px;border-bottom-right-radius:55px}.rounded-b-55px{border-bottom-left-radius:55px;border-bottom-right-radius:55px}.rounded-l-55px{border-bottom-left-radius:55px}.rounded-l-55px,.rounded-tl-55px{border-top-left-radius:55px}.rounded-tr-55px{border-top-right-radius:55px}.rounded-br-55px{border-bottom-right-radius:55px}.rounded-bl-55px{border-bottom-left-radius:55px}.rounded-55-percentage{border-radius:55%}.gap-55{gap:55px}.gap-x-55{-moz-column-gap:55px;column-gap:55px}.gap-y-55{row-gap:55px}.top-55{top:55px}.right-55{right:55px}.bottom-55{bottom:55px}.left-55{left:55px}.z-55{z-index:55}.ma-56px{margin:56px}.mt-56px{margin-top:56px}.mr-56px{margin-right:56px}.mb-56px{margin-bottom:56px}.ml-56px,.mx-56px{margin-left:56px}.mx-56px{margin-right:56px}.my-56px{margin-top:56px;margin-bottom:56px}.pa-56px{padding:56px}.pt-56px{padding-top:56px}.pr-56px{padding-right:56px}.pb-56px{padding-bottom:56px}.pl-56px,.px-56px{padding-left:56px}.px-56px{padding-right:56px}.py-56px{padding-top:56px;padding-bottom:56px}.w-56px{width:56px}.h-56px{height:56px}.w-56-percentage{width:56%}.h-56-percentage{height:56%}.min-w-56px{min-width:56px}.min-h-56px{min-height:56px}.max-w-56px{max-width:56px}.max-h-56px{max-height:56px}.font-56px{font-size:56px!important}.lh-56px{line-height:56px}.lh-56-percentage{line-height:56%}.border-56px{border-width:56px}.border-t-56px{border-top-width:56px}.border-r-56px{border-right-width:56px}.border-b-56px{border-bottom-width:56px}.border-l-56px{border-left-width:56px}.rounded-56px{border-radius:56px}.rounded-t-56px{border-top-left-radius:56px;border-top-right-radius:56px}.rounded-r-56px{border-top-right-radius:56px;border-bottom-right-radius:56px}.rounded-b-56px{border-bottom-left-radius:56px;border-bottom-right-radius:56px}.rounded-l-56px{border-bottom-left-radius:56px}.rounded-l-56px,.rounded-tl-56px{border-top-left-radius:56px}.rounded-tr-56px{border-top-right-radius:56px}.rounded-br-56px{border-bottom-right-radius:56px}.rounded-bl-56px{border-bottom-left-radius:56px}.rounded-56-percentage{border-radius:56%}.gap-56{gap:56px}.gap-x-56{-moz-column-gap:56px;column-gap:56px}.gap-y-56{row-gap:56px}.top-56{top:56px}.right-56{right:56px}.bottom-56{bottom:56px}.left-56{left:56px}.z-56{z-index:56}.ma-57px{margin:57px}.mt-57px{margin-top:57px}.mr-57px{margin-right:57px}.mb-57px{margin-bottom:57px}.ml-57px,.mx-57px{margin-left:57px}.mx-57px{margin-right:57px}.my-57px{margin-top:57px;margin-bottom:57px}.pa-57px{padding:57px}.pt-57px{padding-top:57px}.pr-57px{padding-right:57px}.pb-57px{padding-bottom:57px}.pl-57px,.px-57px{padding-left:57px}.px-57px{padding-right:57px}.py-57px{padding-top:57px;padding-bottom:57px}.w-57px{width:57px}.h-57px{height:57px}.w-57-percentage{width:57%}.h-57-percentage{height:57%}.min-w-57px{min-width:57px}.min-h-57px{min-height:57px}.max-w-57px{max-width:57px}.max-h-57px{max-height:57px}.font-57px{font-size:57px!important}.lh-57px{line-height:57px}.lh-57-percentage{line-height:57%}.border-57px{border-width:57px}.border-t-57px{border-top-width:57px}.border-r-57px{border-right-width:57px}.border-b-57px{border-bottom-width:57px}.border-l-57px{border-left-width:57px}.rounded-57px{border-radius:57px}.rounded-t-57px{border-top-left-radius:57px;border-top-right-radius:57px}.rounded-r-57px{border-top-right-radius:57px;border-bottom-right-radius:57px}.rounded-b-57px{border-bottom-left-radius:57px;border-bottom-right-radius:57px}.rounded-l-57px{border-bottom-left-radius:57px}.rounded-l-57px,.rounded-tl-57px{border-top-left-radius:57px}.rounded-tr-57px{border-top-right-radius:57px}.rounded-br-57px{border-bottom-right-radius:57px}.rounded-bl-57px{border-bottom-left-radius:57px}.rounded-57-percentage{border-radius:57%}.gap-57{gap:57px}.gap-x-57{-moz-column-gap:57px;column-gap:57px}.gap-y-57{row-gap:57px}.top-57{top:57px}.right-57{right:57px}.bottom-57{bottom:57px}.left-57{left:57px}.z-57{z-index:57}.ma-58px{margin:58px}.mt-58px{margin-top:58px}.mr-58px{margin-right:58px}.mb-58px{margin-bottom:58px}.ml-58px,.mx-58px{margin-left:58px}.mx-58px{margin-right:58px}.my-58px{margin-top:58px;margin-bottom:58px}.pa-58px{padding:58px}.pt-58px{padding-top:58px}.pr-58px{padding-right:58px}.pb-58px{padding-bottom:58px}.pl-58px,.px-58px{padding-left:58px}.px-58px{padding-right:58px}.py-58px{padding-top:58px;padding-bottom:58px}.w-58px{width:58px}.h-58px{height:58px}.w-58-percentage{width:58%}.h-58-percentage{height:58%}.min-w-58px{min-width:58px}.min-h-58px{min-height:58px}.max-w-58px{max-width:58px}.max-h-58px{max-height:58px}.font-58px{font-size:58px!important}.lh-58px{line-height:58px}.lh-58-percentage{line-height:58%}.border-58px{border-width:58px}.border-t-58px{border-top-width:58px}.border-r-58px{border-right-width:58px}.border-b-58px{border-bottom-width:58px}.border-l-58px{border-left-width:58px}.rounded-58px{border-radius:58px}.rounded-t-58px{border-top-left-radius:58px;border-top-right-radius:58px}.rounded-r-58px{border-top-right-radius:58px;border-bottom-right-radius:58px}.rounded-b-58px{border-bottom-left-radius:58px;border-bottom-right-radius:58px}.rounded-l-58px{border-bottom-left-radius:58px}.rounded-l-58px,.rounded-tl-58px{border-top-left-radius:58px}.rounded-tr-58px{border-top-right-radius:58px}.rounded-br-58px{border-bottom-right-radius:58px}.rounded-bl-58px{border-bottom-left-radius:58px}.rounded-58-percentage{border-radius:58%}.gap-58{gap:58px}.gap-x-58{-moz-column-gap:58px;column-gap:58px}.gap-y-58{row-gap:58px}.top-58{top:58px}.right-58{right:58px}.bottom-58{bottom:58px}.left-58{left:58px}.z-58{z-index:58}.ma-59px{margin:59px}.mt-59px{margin-top:59px}.mr-59px{margin-right:59px}.mb-59px{margin-bottom:59px}.ml-59px,.mx-59px{margin-left:59px}.mx-59px{margin-right:59px}.my-59px{margin-top:59px;margin-bottom:59px}.pa-59px{padding:59px}.pt-59px{padding-top:59px}.pr-59px{padding-right:59px}.pb-59px{padding-bottom:59px}.pl-59px,.px-59px{padding-left:59px}.px-59px{padding-right:59px}.py-59px{padding-top:59px;padding-bottom:59px}.w-59px{width:59px}.h-59px{height:59px}.w-59-percentage{width:59%}.h-59-percentage{height:59%}.min-w-59px{min-width:59px}.min-h-59px{min-height:59px}.max-w-59px{max-width:59px}.max-h-59px{max-height:59px}.font-59px{font-size:59px!important}.lh-59px{line-height:59px}.lh-59-percentage{line-height:59%}.border-59px{border-width:59px}.border-t-59px{border-top-width:59px}.border-r-59px{border-right-width:59px}.border-b-59px{border-bottom-width:59px}.border-l-59px{border-left-width:59px}.rounded-59px{border-radius:59px}.rounded-t-59px{border-top-left-radius:59px;border-top-right-radius:59px}.rounded-r-59px{border-top-right-radius:59px;border-bottom-right-radius:59px}.rounded-b-59px{border-bottom-left-radius:59px;border-bottom-right-radius:59px}.rounded-l-59px{border-bottom-left-radius:59px}.rounded-l-59px,.rounded-tl-59px{border-top-left-radius:59px}.rounded-tr-59px{border-top-right-radius:59px}.rounded-br-59px{border-bottom-right-radius:59px}.rounded-bl-59px{border-bottom-left-radius:59px}.rounded-59-percentage{border-radius:59%}.gap-59{gap:59px}.gap-x-59{-moz-column-gap:59px;column-gap:59px}.gap-y-59{row-gap:59px}.top-59{top:59px}.right-59{right:59px}.bottom-59{bottom:59px}.left-59{left:59px}.z-59{z-index:59}.ma-60px{margin:60px}.mt-60px{margin-top:60px}.mr-60px{margin-right:60px}.mb-60px{margin-bottom:60px}.ml-60px,.mx-60px{margin-left:60px}.mx-60px{margin-right:60px}.my-60px{margin-top:60px;margin-bottom:60px}.pa-60px{padding:60px}.pt-60px{padding-top:60px}.pr-60px{padding-right:60px}.pb-60px{padding-bottom:60px}.pl-60px,.px-60px{padding-left:60px}.px-60px{padding-right:60px}.py-60px{padding-top:60px;padding-bottom:60px}.w-60px{width:60px}.h-60px{height:60px}.w-60-percentage{width:60%}.h-60-percentage{height:60%}.min-w-60px{min-width:60px}.min-h-60px{min-height:60px}.max-w-60px{max-width:60px}.max-h-60px{max-height:60px}.font-60px{font-size:60px!important}.lh-60px{line-height:60px}.lh-60-percentage{line-height:60%}.border-60px{border-width:60px}.border-t-60px{border-top-width:60px}.border-r-60px{border-right-width:60px}.border-b-60px{border-bottom-width:60px}.border-l-60px{border-left-width:60px}.rounded-60px{border-radius:60px}.rounded-t-60px{border-top-left-radius:60px;border-top-right-radius:60px}.rounded-r-60px{border-top-right-radius:60px;border-bottom-right-radius:60px}.rounded-b-60px{border-bottom-left-radius:60px;border-bottom-right-radius:60px}.rounded-l-60px{border-bottom-left-radius:60px}.rounded-l-60px,.rounded-tl-60px{border-top-left-radius:60px}.rounded-tr-60px{border-top-right-radius:60px}.rounded-br-60px{border-bottom-right-radius:60px}.rounded-bl-60px{border-bottom-left-radius:60px}.rounded-60-percentage{border-radius:60%}.gap-60{gap:60px}.gap-x-60{-moz-column-gap:60px;column-gap:60px}.gap-y-60{row-gap:60px}.top-60{top:60px}.right-60{right:60px}.bottom-60{bottom:60px}.left-60{left:60px}.z-60{z-index:60}.ma-61px{margin:61px}.mt-61px{margin-top:61px}.mr-61px{margin-right:61px}.mb-61px{margin-bottom:61px}.ml-61px,.mx-61px{margin-left:61px}.mx-61px{margin-right:61px}.my-61px{margin-top:61px;margin-bottom:61px}.pa-61px{padding:61px}.pt-61px{padding-top:61px}.pr-61px{padding-right:61px}.pb-61px{padding-bottom:61px}.pl-61px,.px-61px{padding-left:61px}.px-61px{padding-right:61px}.py-61px{padding-top:61px;padding-bottom:61px}.w-61px{width:61px}.h-61px{height:61px}.w-61-percentage{width:61%}.h-61-percentage{height:61%}.min-w-61px{min-width:61px}.min-h-61px{min-height:61px}.max-w-61px{max-width:61px}.max-h-61px{max-height:61px}.font-61px{font-size:61px!important}.lh-61px{line-height:61px}.lh-61-percentage{line-height:61%}.border-61px{border-width:61px}.border-t-61px{border-top-width:61px}.border-r-61px{border-right-width:61px}.border-b-61px{border-bottom-width:61px}.border-l-61px{border-left-width:61px}.rounded-61px{border-radius:61px}.rounded-t-61px{border-top-left-radius:61px;border-top-right-radius:61px}.rounded-r-61px{border-top-right-radius:61px;border-bottom-right-radius:61px}.rounded-b-61px{border-bottom-left-radius:61px;border-bottom-right-radius:61px}.rounded-l-61px{border-bottom-left-radius:61px}.rounded-l-61px,.rounded-tl-61px{border-top-left-radius:61px}.rounded-tr-61px{border-top-right-radius:61px}.rounded-br-61px{border-bottom-right-radius:61px}.rounded-bl-61px{border-bottom-left-radius:61px}.rounded-61-percentage{border-radius:61%}.gap-61{gap:61px}.gap-x-61{-moz-column-gap:61px;column-gap:61px}.gap-y-61{row-gap:61px}.top-61{top:61px}.right-61{right:61px}.bottom-61{bottom:61px}.left-61{left:61px}.z-61{z-index:61}.ma-62px{margin:62px}.mt-62px{margin-top:62px}.mr-62px{margin-right:62px}.mb-62px{margin-bottom:62px}.ml-62px,.mx-62px{margin-left:62px}.mx-62px{margin-right:62px}.my-62px{margin-top:62px;margin-bottom:62px}.pa-62px{padding:62px}.pt-62px{padding-top:62px}.pr-62px{padding-right:62px}.pb-62px{padding-bottom:62px}.pl-62px,.px-62px{padding-left:62px}.px-62px{padding-right:62px}.py-62px{padding-top:62px;padding-bottom:62px}.w-62px{width:62px}.h-62px{height:62px}.w-62-percentage{width:62%}.h-62-percentage{height:62%}.min-w-62px{min-width:62px}.min-h-62px{min-height:62px}.max-w-62px{max-width:62px}.max-h-62px{max-height:62px}.font-62px{font-size:62px!important}.lh-62px{line-height:62px}.lh-62-percentage{line-height:62%}.border-62px{border-width:62px}.border-t-62px{border-top-width:62px}.border-r-62px{border-right-width:62px}.border-b-62px{border-bottom-width:62px}.border-l-62px{border-left-width:62px}.rounded-62px{border-radius:62px}.rounded-t-62px{border-top-left-radius:62px;border-top-right-radius:62px}.rounded-r-62px{border-top-right-radius:62px;border-bottom-right-radius:62px}.rounded-b-62px{border-bottom-left-radius:62px;border-bottom-right-radius:62px}.rounded-l-62px{border-bottom-left-radius:62px}.rounded-l-62px,.rounded-tl-62px{border-top-left-radius:62px}.rounded-tr-62px{border-top-right-radius:62px}.rounded-br-62px{border-bottom-right-radius:62px}.rounded-bl-62px{border-bottom-left-radius:62px}.rounded-62-percentage{border-radius:62%}.gap-62{gap:62px}.gap-x-62{-moz-column-gap:62px;column-gap:62px}.gap-y-62{row-gap:62px}.top-62{top:62px}.right-62{right:62px}.bottom-62{bottom:62px}.left-62{left:62px}.z-62{z-index:62}.ma-63px{margin:63px}.mt-63px{margin-top:63px}.mr-63px{margin-right:63px}.mb-63px{margin-bottom:63px}.ml-63px,.mx-63px{margin-left:63px}.mx-63px{margin-right:63px}.my-63px{margin-top:63px;margin-bottom:63px}.pa-63px{padding:63px}.pt-63px{padding-top:63px}.pr-63px{padding-right:63px}.pb-63px{padding-bottom:63px}.pl-63px,.px-63px{padding-left:63px}.px-63px{padding-right:63px}.py-63px{padding-top:63px;padding-bottom:63px}.w-63px{width:63px}.h-63px{height:63px}.w-63-percentage{width:63%}.h-63-percentage{height:63%}.min-w-63px{min-width:63px}.min-h-63px{min-height:63px}.max-w-63px{max-width:63px}.max-h-63px{max-height:63px}.font-63px{font-size:63px!important}.lh-63px{line-height:63px}.lh-63-percentage{line-height:63%}.border-63px{border-width:63px}.border-t-63px{border-top-width:63px}.border-r-63px{border-right-width:63px}.border-b-63px{border-bottom-width:63px}.border-l-63px{border-left-width:63px}.rounded-63px{border-radius:63px}.rounded-t-63px{border-top-left-radius:63px;border-top-right-radius:63px}.rounded-r-63px{border-top-right-radius:63px;border-bottom-right-radius:63px}.rounded-b-63px{border-bottom-left-radius:63px;border-bottom-right-radius:63px}.rounded-l-63px{border-bottom-left-radius:63px}.rounded-l-63px,.rounded-tl-63px{border-top-left-radius:63px}.rounded-tr-63px{border-top-right-radius:63px}.rounded-br-63px{border-bottom-right-radius:63px}.rounded-bl-63px{border-bottom-left-radius:63px}.rounded-63-percentage{border-radius:63%}.gap-63{gap:63px}.gap-x-63{-moz-column-gap:63px;column-gap:63px}.gap-y-63{row-gap:63px}.top-63{top:63px}.right-63{right:63px}.bottom-63{bottom:63px}.left-63{left:63px}.z-63{z-index:63}.ma-64px{margin:64px}.mt-64px{margin-top:64px}.mr-64px{margin-right:64px}.mb-64px{margin-bottom:64px}.ml-64px,.mx-64px{margin-left:64px}.mx-64px{margin-right:64px}.my-64px{margin-top:64px;margin-bottom:64px}.pa-64px{padding:64px}.pt-64px{padding-top:64px}.pr-64px{padding-right:64px}.pb-64px{padding-bottom:64px}.pl-64px,.px-64px{padding-left:64px}.px-64px{padding-right:64px}.py-64px{padding-top:64px;padding-bottom:64px}.w-64px{width:64px}.h-64px{height:64px}.w-64-percentage{width:64%}.h-64-percentage{height:64%}.min-w-64px{min-width:64px}.min-h-64px{min-height:64px}.max-w-64px{max-width:64px}.max-h-64px{max-height:64px}.font-64px{font-size:64px!important}.lh-64px{line-height:64px}.lh-64-percentage{line-height:64%}.border-64px{border-width:64px}.border-t-64px{border-top-width:64px}.border-r-64px{border-right-width:64px}.border-b-64px{border-bottom-width:64px}.border-l-64px{border-left-width:64px}.rounded-64px{border-radius:64px}.rounded-t-64px{border-top-left-radius:64px;border-top-right-radius:64px}.rounded-r-64px{border-top-right-radius:64px;border-bottom-right-radius:64px}.rounded-b-64px{border-bottom-left-radius:64px;border-bottom-right-radius:64px}.rounded-l-64px{border-bottom-left-radius:64px}.rounded-l-64px,.rounded-tl-64px{border-top-left-radius:64px}.rounded-tr-64px{border-top-right-radius:64px}.rounded-br-64px{border-bottom-right-radius:64px}.rounded-bl-64px{border-bottom-left-radius:64px}.rounded-64-percentage{border-radius:64%}.gap-64{gap:64px}.gap-x-64{-moz-column-gap:64px;column-gap:64px}.gap-y-64{row-gap:64px}.top-64{top:64px}.right-64{right:64px}.bottom-64{bottom:64px}.left-64{left:64px}.z-64{z-index:64}.ma-65px{margin:65px}.mt-65px{margin-top:65px}.mr-65px{margin-right:65px}.mb-65px{margin-bottom:65px}.ml-65px,.mx-65px{margin-left:65px}.mx-65px{margin-right:65px}.my-65px{margin-top:65px;margin-bottom:65px}.pa-65px{padding:65px}.pt-65px{padding-top:65px}.pr-65px{padding-right:65px}.pb-65px{padding-bottom:65px}.pl-65px,.px-65px{padding-left:65px}.px-65px{padding-right:65px}.py-65px{padding-top:65px;padding-bottom:65px}.w-65px{width:65px}.h-65px{height:65px}.w-65-percentage{width:65%}.h-65-percentage{height:65%}.min-w-65px{min-width:65px}.min-h-65px{min-height:65px}.max-w-65px{max-width:65px}.max-h-65px{max-height:65px}.font-65px{font-size:65px!important}.lh-65px{line-height:65px}.lh-65-percentage{line-height:65%}.border-65px{border-width:65px}.border-t-65px{border-top-width:65px}.border-r-65px{border-right-width:65px}.border-b-65px{border-bottom-width:65px}.border-l-65px{border-left-width:65px}.rounded-65px{border-radius:65px}.rounded-t-65px{border-top-left-radius:65px;border-top-right-radius:65px}.rounded-r-65px{border-top-right-radius:65px;border-bottom-right-radius:65px}.rounded-b-65px{border-bottom-left-radius:65px;border-bottom-right-radius:65px}.rounded-l-65px{border-bottom-left-radius:65px}.rounded-l-65px,.rounded-tl-65px{border-top-left-radius:65px}.rounded-tr-65px{border-top-right-radius:65px}.rounded-br-65px{border-bottom-right-radius:65px}.rounded-bl-65px{border-bottom-left-radius:65px}.rounded-65-percentage{border-radius:65%}.gap-65{gap:65px}.gap-x-65{-moz-column-gap:65px;column-gap:65px}.gap-y-65{row-gap:65px}.top-65{top:65px}.right-65{right:65px}.bottom-65{bottom:65px}.left-65{left:65px}.z-65{z-index:65}.ma-66px{margin:66px}.mt-66px{margin-top:66px}.mr-66px{margin-right:66px}.mb-66px{margin-bottom:66px}.ml-66px,.mx-66px{margin-left:66px}.mx-66px{margin-right:66px}.my-66px{margin-top:66px;margin-bottom:66px}.pa-66px{padding:66px}.pt-66px{padding-top:66px}.pr-66px{padding-right:66px}.pb-66px{padding-bottom:66px}.pl-66px,.px-66px{padding-left:66px}.px-66px{padding-right:66px}.py-66px{padding-top:66px;padding-bottom:66px}.w-66px{width:66px}.h-66px{height:66px}.w-66-percentage{width:66%}.h-66-percentage{height:66%}.min-w-66px{min-width:66px}.min-h-66px{min-height:66px}.max-w-66px{max-width:66px}.max-h-66px{max-height:66px}.font-66px{font-size:66px!important}.lh-66px{line-height:66px}.lh-66-percentage{line-height:66%}.border-66px{border-width:66px}.border-t-66px{border-top-width:66px}.border-r-66px{border-right-width:66px}.border-b-66px{border-bottom-width:66px}.border-l-66px{border-left-width:66px}.rounded-66px{border-radius:66px}.rounded-t-66px{border-top-left-radius:66px;border-top-right-radius:66px}.rounded-r-66px{border-top-right-radius:66px;border-bottom-right-radius:66px}.rounded-b-66px{border-bottom-left-radius:66px;border-bottom-right-radius:66px}.rounded-l-66px{border-bottom-left-radius:66px}.rounded-l-66px,.rounded-tl-66px{border-top-left-radius:66px}.rounded-tr-66px{border-top-right-radius:66px}.rounded-br-66px{border-bottom-right-radius:66px}.rounded-bl-66px{border-bottom-left-radius:66px}.rounded-66-percentage{border-radius:66%}.gap-66{gap:66px}.gap-x-66{-moz-column-gap:66px;column-gap:66px}.gap-y-66{row-gap:66px}.top-66{top:66px}.right-66{right:66px}.bottom-66{bottom:66px}.left-66{left:66px}.z-66{z-index:66}.ma-67px{margin:67px}.mt-67px{margin-top:67px}.mr-67px{margin-right:67px}.mb-67px{margin-bottom:67px}.ml-67px,.mx-67px{margin-left:67px}.mx-67px{margin-right:67px}.my-67px{margin-top:67px;margin-bottom:67px}.pa-67px{padding:67px}.pt-67px{padding-top:67px}.pr-67px{padding-right:67px}.pb-67px{padding-bottom:67px}.pl-67px,.px-67px{padding-left:67px}.px-67px{padding-right:67px}.py-67px{padding-top:67px;padding-bottom:67px}.w-67px{width:67px}.h-67px{height:67px}.w-67-percentage{width:67%}.h-67-percentage{height:67%}.min-w-67px{min-width:67px}.min-h-67px{min-height:67px}.max-w-67px{max-width:67px}.max-h-67px{max-height:67px}.font-67px{font-size:67px!important}.lh-67px{line-height:67px}.lh-67-percentage{line-height:67%}.border-67px{border-width:67px}.border-t-67px{border-top-width:67px}.border-r-67px{border-right-width:67px}.border-b-67px{border-bottom-width:67px}.border-l-67px{border-left-width:67px}.rounded-67px{border-radius:67px}.rounded-t-67px{border-top-left-radius:67px;border-top-right-radius:67px}.rounded-r-67px{border-top-right-radius:67px;border-bottom-right-radius:67px}.rounded-b-67px{border-bottom-left-radius:67px;border-bottom-right-radius:67px}.rounded-l-67px{border-bottom-left-radius:67px}.rounded-l-67px,.rounded-tl-67px{border-top-left-radius:67px}.rounded-tr-67px{border-top-right-radius:67px}.rounded-br-67px{border-bottom-right-radius:67px}.rounded-bl-67px{border-bottom-left-radius:67px}.rounded-67-percentage{border-radius:67%}.gap-67{gap:67px}.gap-x-67{-moz-column-gap:67px;column-gap:67px}.gap-y-67{row-gap:67px}.top-67{top:67px}.right-67{right:67px}.bottom-67{bottom:67px}.left-67{left:67px}.z-67{z-index:67}.ma-68px{margin:68px}.mt-68px{margin-top:68px}.mr-68px{margin-right:68px}.mb-68px{margin-bottom:68px}.ml-68px,.mx-68px{margin-left:68px}.mx-68px{margin-right:68px}.my-68px{margin-top:68px;margin-bottom:68px}.pa-68px{padding:68px}.pt-68px{padding-top:68px}.pr-68px{padding-right:68px}.pb-68px{padding-bottom:68px}.pl-68px,.px-68px{padding-left:68px}.px-68px{padding-right:68px}.py-68px{padding-top:68px;padding-bottom:68px}.w-68px{width:68px}.h-68px{height:68px}.w-68-percentage{width:68%}.h-68-percentage{height:68%}.min-w-68px{min-width:68px}.min-h-68px{min-height:68px}.max-w-68px{max-width:68px}.max-h-68px{max-height:68px}.font-68px{font-size:68px!important}.lh-68px{line-height:68px}.lh-68-percentage{line-height:68%}.border-68px{border-width:68px}.border-t-68px{border-top-width:68px}.border-r-68px{border-right-width:68px}.border-b-68px{border-bottom-width:68px}.border-l-68px{border-left-width:68px}.rounded-68px{border-radius:68px}.rounded-t-68px{border-top-left-radius:68px;border-top-right-radius:68px}.rounded-r-68px{border-top-right-radius:68px;border-bottom-right-radius:68px}.rounded-b-68px{border-bottom-left-radius:68px;border-bottom-right-radius:68px}.rounded-l-68px{border-bottom-left-radius:68px}.rounded-l-68px,.rounded-tl-68px{border-top-left-radius:68px}.rounded-tr-68px{border-top-right-radius:68px}.rounded-br-68px{border-bottom-right-radius:68px}.rounded-bl-68px{border-bottom-left-radius:68px}.rounded-68-percentage{border-radius:68%}.gap-68{gap:68px}.gap-x-68{-moz-column-gap:68px;column-gap:68px}.gap-y-68{row-gap:68px}.top-68{top:68px}.right-68{right:68px}.bottom-68{bottom:68px}.left-68{left:68px}.z-68{z-index:68}.ma-69px{margin:69px}.mt-69px{margin-top:69px}.mr-69px{margin-right:69px}.mb-69px{margin-bottom:69px}.ml-69px,.mx-69px{margin-left:69px}.mx-69px{margin-right:69px}.my-69px{margin-top:69px;margin-bottom:69px}.pa-69px{padding:69px}.pt-69px{padding-top:69px}.pr-69px{padding-right:69px}.pb-69px{padding-bottom:69px}.pl-69px,.px-69px{padding-left:69px}.px-69px{padding-right:69px}.py-69px{padding-top:69px;padding-bottom:69px}.w-69px{width:69px}.h-69px{height:69px}.w-69-percentage{width:69%}.h-69-percentage{height:69%}.min-w-69px{min-width:69px}.min-h-69px{min-height:69px}.max-w-69px{max-width:69px}.max-h-69px{max-height:69px}.font-69px{font-size:69px!important}.lh-69px{line-height:69px}.lh-69-percentage{line-height:69%}.border-69px{border-width:69px}.border-t-69px{border-top-width:69px}.border-r-69px{border-right-width:69px}.border-b-69px{border-bottom-width:69px}.border-l-69px{border-left-width:69px}.rounded-69px{border-radius:69px}.rounded-t-69px{border-top-left-radius:69px;border-top-right-radius:69px}.rounded-r-69px{border-top-right-radius:69px;border-bottom-right-radius:69px}.rounded-b-69px{border-bottom-left-radius:69px;border-bottom-right-radius:69px}.rounded-l-69px{border-bottom-left-radius:69px}.rounded-l-69px,.rounded-tl-69px{border-top-left-radius:69px}.rounded-tr-69px{border-top-right-radius:69px}.rounded-br-69px{border-bottom-right-radius:69px}.rounded-bl-69px{border-bottom-left-radius:69px}.rounded-69-percentage{border-radius:69%}.gap-69{gap:69px}.gap-x-69{-moz-column-gap:69px;column-gap:69px}.gap-y-69{row-gap:69px}.top-69{top:69px}.right-69{right:69px}.bottom-69{bottom:69px}.left-69{left:69px}.z-69{z-index:69}.ma-70px{margin:70px}.mt-70px{margin-top:70px}.mr-70px{margin-right:70px}.mb-70px{margin-bottom:70px}.ml-70px,.mx-70px{margin-left:70px}.mx-70px{margin-right:70px}.my-70px{margin-top:70px;margin-bottom:70px}.pa-70px{padding:70px}.pt-70px{padding-top:70px}.pr-70px{padding-right:70px}.pb-70px{padding-bottom:70px}.pl-70px,.px-70px{padding-left:70px}.px-70px{padding-right:70px}.py-70px{padding-top:70px;padding-bottom:70px}.w-70px{width:70px}.h-70px{height:70px}.w-70-percentage{width:70%}.h-70-percentage{height:70%}.min-w-70px{min-width:70px}.min-h-70px{min-height:70px}.max-w-70px{max-width:70px}.max-h-70px{max-height:70px}.font-70px{font-size:70px!important}.lh-70px{line-height:70px}.lh-70-percentage{line-height:70%}.border-70px{border-width:70px}.border-t-70px{border-top-width:70px}.border-r-70px{border-right-width:70px}.border-b-70px{border-bottom-width:70px}.border-l-70px{border-left-width:70px}.rounded-70px{border-radius:70px}.rounded-t-70px{border-top-left-radius:70px;border-top-right-radius:70px}.rounded-r-70px{border-top-right-radius:70px;border-bottom-right-radius:70px}.rounded-b-70px{border-bottom-left-radius:70px;border-bottom-right-radius:70px}.rounded-l-70px{border-bottom-left-radius:70px}.rounded-l-70px,.rounded-tl-70px{border-top-left-radius:70px}.rounded-tr-70px{border-top-right-radius:70px}.rounded-br-70px{border-bottom-right-radius:70px}.rounded-bl-70px{border-bottom-left-radius:70px}.rounded-70-percentage{border-radius:70%}.gap-70{gap:70px}.gap-x-70{-moz-column-gap:70px;column-gap:70px}.gap-y-70{row-gap:70px}.top-70{top:70px}.right-70{right:70px}.bottom-70{bottom:70px}.left-70{left:70px}.z-70{z-index:70}.ma-71px{margin:71px}.mt-71px{margin-top:71px}.mr-71px{margin-right:71px}.mb-71px{margin-bottom:71px}.ml-71px,.mx-71px{margin-left:71px}.mx-71px{margin-right:71px}.my-71px{margin-top:71px;margin-bottom:71px}.pa-71px{padding:71px}.pt-71px{padding-top:71px}.pr-71px{padding-right:71px}.pb-71px{padding-bottom:71px}.pl-71px,.px-71px{padding-left:71px}.px-71px{padding-right:71px}.py-71px{padding-top:71px;padding-bottom:71px}.w-71px{width:71px}.h-71px{height:71px}.w-71-percentage{width:71%}.h-71-percentage{height:71%}.min-w-71px{min-width:71px}.min-h-71px{min-height:71px}.max-w-71px{max-width:71px}.max-h-71px{max-height:71px}.font-71px{font-size:71px!important}.lh-71px{line-height:71px}.lh-71-percentage{line-height:71%}.border-71px{border-width:71px}.border-t-71px{border-top-width:71px}.border-r-71px{border-right-width:71px}.border-b-71px{border-bottom-width:71px}.border-l-71px{border-left-width:71px}.rounded-71px{border-radius:71px}.rounded-t-71px{border-top-left-radius:71px;border-top-right-radius:71px}.rounded-r-71px{border-top-right-radius:71px;border-bottom-right-radius:71px}.rounded-b-71px{border-bottom-left-radius:71px;border-bottom-right-radius:71px}.rounded-l-71px{border-bottom-left-radius:71px}.rounded-l-71px,.rounded-tl-71px{border-top-left-radius:71px}.rounded-tr-71px{border-top-right-radius:71px}.rounded-br-71px{border-bottom-right-radius:71px}.rounded-bl-71px{border-bottom-left-radius:71px}.rounded-71-percentage{border-radius:71%}.gap-71{gap:71px}.gap-x-71{-moz-column-gap:71px;column-gap:71px}.gap-y-71{row-gap:71px}.top-71{top:71px}.right-71{right:71px}.bottom-71{bottom:71px}.left-71{left:71px}.z-71{z-index:71}.ma-72px{margin:72px}.mt-72px{margin-top:72px}.mr-72px{margin-right:72px}.mb-72px{margin-bottom:72px}.ml-72px,.mx-72px{margin-left:72px}.mx-72px{margin-right:72px}.my-72px{margin-top:72px;margin-bottom:72px}.pa-72px{padding:72px}.pt-72px{padding-top:72px}.pr-72px{padding-right:72px}.pb-72px{padding-bottom:72px}.pl-72px,.px-72px{padding-left:72px}.px-72px{padding-right:72px}.py-72px{padding-top:72px;padding-bottom:72px}.w-72px{width:72px}.h-72px{height:72px}.w-72-percentage{width:72%}.h-72-percentage{height:72%}.min-w-72px{min-width:72px}.min-h-72px{min-height:72px}.max-w-72px{max-width:72px}.max-h-72px{max-height:72px}.font-72px{font-size:72px!important}.lh-72px{line-height:72px}.lh-72-percentage{line-height:72%}.border-72px{border-width:72px}.border-t-72px{border-top-width:72px}.border-r-72px{border-right-width:72px}.border-b-72px{border-bottom-width:72px}.border-l-72px{border-left-width:72px}.rounded-72px{border-radius:72px}.rounded-t-72px{border-top-left-radius:72px;border-top-right-radius:72px}.rounded-r-72px{border-top-right-radius:72px;border-bottom-right-radius:72px}.rounded-b-72px{border-bottom-left-radius:72px;border-bottom-right-radius:72px}.rounded-l-72px{border-bottom-left-radius:72px}.rounded-l-72px,.rounded-tl-72px{border-top-left-radius:72px}.rounded-tr-72px{border-top-right-radius:72px}.rounded-br-72px{border-bottom-right-radius:72px}.rounded-bl-72px{border-bottom-left-radius:72px}.rounded-72-percentage{border-radius:72%}.gap-72{gap:72px}.gap-x-72{-moz-column-gap:72px;column-gap:72px}.gap-y-72{row-gap:72px}.top-72{top:72px}.right-72{right:72px}.bottom-72{bottom:72px}.left-72{left:72px}.z-72{z-index:72}.ma-73px{margin:73px}.mt-73px{margin-top:73px}.mr-73px{margin-right:73px}.mb-73px{margin-bottom:73px}.ml-73px,.mx-73px{margin-left:73px}.mx-73px{margin-right:73px}.my-73px{margin-top:73px;margin-bottom:73px}.pa-73px{padding:73px}.pt-73px{padding-top:73px}.pr-73px{padding-right:73px}.pb-73px{padding-bottom:73px}.pl-73px,.px-73px{padding-left:73px}.px-73px{padding-right:73px}.py-73px{padding-top:73px;padding-bottom:73px}.w-73px{width:73px}.h-73px{height:73px}.w-73-percentage{width:73%}.h-73-percentage{height:73%}.min-w-73px{min-width:73px}.min-h-73px{min-height:73px}.max-w-73px{max-width:73px}.max-h-73px{max-height:73px}.font-73px{font-size:73px!important}.lh-73px{line-height:73px}.lh-73-percentage{line-height:73%}.border-73px{border-width:73px}.border-t-73px{border-top-width:73px}.border-r-73px{border-right-width:73px}.border-b-73px{border-bottom-width:73px}.border-l-73px{border-left-width:73px}.rounded-73px{border-radius:73px}.rounded-t-73px{border-top-left-radius:73px;border-top-right-radius:73px}.rounded-r-73px{border-top-right-radius:73px;border-bottom-right-radius:73px}.rounded-b-73px{border-bottom-left-radius:73px;border-bottom-right-radius:73px}.rounded-l-73px{border-bottom-left-radius:73px}.rounded-l-73px,.rounded-tl-73px{border-top-left-radius:73px}.rounded-tr-73px{border-top-right-radius:73px}.rounded-br-73px{border-bottom-right-radius:73px}.rounded-bl-73px{border-bottom-left-radius:73px}.rounded-73-percentage{border-radius:73%}.gap-73{gap:73px}.gap-x-73{-moz-column-gap:73px;column-gap:73px}.gap-y-73{row-gap:73px}.top-73{top:73px}.right-73{right:73px}.bottom-73{bottom:73px}.left-73{left:73px}.z-73{z-index:73}.ma-74px{margin:74px}.mt-74px{margin-top:74px}.mr-74px{margin-right:74px}.mb-74px{margin-bottom:74px}.ml-74px,.mx-74px{margin-left:74px}.mx-74px{margin-right:74px}.my-74px{margin-top:74px;margin-bottom:74px}.pa-74px{padding:74px}.pt-74px{padding-top:74px}.pr-74px{padding-right:74px}.pb-74px{padding-bottom:74px}.pl-74px,.px-74px{padding-left:74px}.px-74px{padding-right:74px}.py-74px{padding-top:74px;padding-bottom:74px}.w-74px{width:74px}.h-74px{height:74px}.w-74-percentage{width:74%}.h-74-percentage{height:74%}.min-w-74px{min-width:74px}.min-h-74px{min-height:74px}.max-w-74px{max-width:74px}.max-h-74px{max-height:74px}.font-74px{font-size:74px!important}.lh-74px{line-height:74px}.lh-74-percentage{line-height:74%}.border-74px{border-width:74px}.border-t-74px{border-top-width:74px}.border-r-74px{border-right-width:74px}.border-b-74px{border-bottom-width:74px}.border-l-74px{border-left-width:74px}.rounded-74px{border-radius:74px}.rounded-t-74px{border-top-left-radius:74px;border-top-right-radius:74px}.rounded-r-74px{border-top-right-radius:74px;border-bottom-right-radius:74px}.rounded-b-74px{border-bottom-left-radius:74px;border-bottom-right-radius:74px}.rounded-l-74px{border-bottom-left-radius:74px}.rounded-l-74px,.rounded-tl-74px{border-top-left-radius:74px}.rounded-tr-74px{border-top-right-radius:74px}.rounded-br-74px{border-bottom-right-radius:74px}.rounded-bl-74px{border-bottom-left-radius:74px}.rounded-74-percentage{border-radius:74%}.gap-74{gap:74px}.gap-x-74{-moz-column-gap:74px;column-gap:74px}.gap-y-74{row-gap:74px}.top-74{top:74px}.right-74{right:74px}.bottom-74{bottom:74px}.left-74{left:74px}.z-74{z-index:74}.ma-75px{margin:75px}.mt-75px{margin-top:75px}.mr-75px{margin-right:75px}.mb-75px{margin-bottom:75px}.ml-75px,.mx-75px{margin-left:75px}.mx-75px{margin-right:75px}.my-75px{margin-top:75px;margin-bottom:75px}.pa-75px{padding:75px}.pt-75px{padding-top:75px}.pr-75px{padding-right:75px}.pb-75px{padding-bottom:75px}.pl-75px,.px-75px{padding-left:75px}.px-75px{padding-right:75px}.py-75px{padding-top:75px;padding-bottom:75px}.w-75px{width:75px}.h-75px{height:75px}.w-75-percentage{width:75%}.h-75-percentage{height:75%}.min-w-75px{min-width:75px}.min-h-75px{min-height:75px}.max-w-75px{max-width:75px}.max-h-75px{max-height:75px}.font-75px{font-size:75px!important}.lh-75px{line-height:75px}.lh-75-percentage{line-height:75%}.border-75px{border-width:75px}.border-t-75px{border-top-width:75px}.border-r-75px{border-right-width:75px}.border-b-75px{border-bottom-width:75px}.border-l-75px{border-left-width:75px}.rounded-75px{border-radius:75px}.rounded-t-75px{border-top-left-radius:75px;border-top-right-radius:75px}.rounded-r-75px{border-top-right-radius:75px;border-bottom-right-radius:75px}.rounded-b-75px{border-bottom-left-radius:75px;border-bottom-right-radius:75px}.rounded-l-75px{border-bottom-left-radius:75px}.rounded-l-75px,.rounded-tl-75px{border-top-left-radius:75px}.rounded-tr-75px{border-top-right-radius:75px}.rounded-br-75px{border-bottom-right-radius:75px}.rounded-bl-75px{border-bottom-left-radius:75px}.rounded-75-percentage{border-radius:75%}.gap-75{gap:75px}.gap-x-75{-moz-column-gap:75px;column-gap:75px}.gap-y-75{row-gap:75px}.top-75{top:75px}.right-75{right:75px}.bottom-75{bottom:75px}.left-75{left:75px}.z-75{z-index:75}.ma-76px{margin:76px}.mt-76px{margin-top:76px}.mr-76px{margin-right:76px}.mb-76px{margin-bottom:76px}.ml-76px,.mx-76px{margin-left:76px}.mx-76px{margin-right:76px}.my-76px{margin-top:76px;margin-bottom:76px}.pa-76px{padding:76px}.pt-76px{padding-top:76px}.pr-76px{padding-right:76px}.pb-76px{padding-bottom:76px}.pl-76px,.px-76px{padding-left:76px}.px-76px{padding-right:76px}.py-76px{padding-top:76px;padding-bottom:76px}.w-76px{width:76px}.h-76px{height:76px}.w-76-percentage{width:76%}.h-76-percentage{height:76%}.min-w-76px{min-width:76px}.min-h-76px{min-height:76px}.max-w-76px{max-width:76px}.max-h-76px{max-height:76px}.font-76px{font-size:76px!important}.lh-76px{line-height:76px}.lh-76-percentage{line-height:76%}.border-76px{border-width:76px}.border-t-76px{border-top-width:76px}.border-r-76px{border-right-width:76px}.border-b-76px{border-bottom-width:76px}.border-l-76px{border-left-width:76px}.rounded-76px{border-radius:76px}.rounded-t-76px{border-top-left-radius:76px;border-top-right-radius:76px}.rounded-r-76px{border-top-right-radius:76px;border-bottom-right-radius:76px}.rounded-b-76px{border-bottom-left-radius:76px;border-bottom-right-radius:76px}.rounded-l-76px{border-bottom-left-radius:76px}.rounded-l-76px,.rounded-tl-76px{border-top-left-radius:76px}.rounded-tr-76px{border-top-right-radius:76px}.rounded-br-76px{border-bottom-right-radius:76px}.rounded-bl-76px{border-bottom-left-radius:76px}.rounded-76-percentage{border-radius:76%}.gap-76{gap:76px}.gap-x-76{-moz-column-gap:76px;column-gap:76px}.gap-y-76{row-gap:76px}.top-76{top:76px}.right-76{right:76px}.bottom-76{bottom:76px}.left-76{left:76px}.z-76{z-index:76}.ma-77px{margin:77px}.mt-77px{margin-top:77px}.mr-77px{margin-right:77px}.mb-77px{margin-bottom:77px}.ml-77px,.mx-77px{margin-left:77px}.mx-77px{margin-right:77px}.my-77px{margin-top:77px;margin-bottom:77px}.pa-77px{padding:77px}.pt-77px{padding-top:77px}.pr-77px{padding-right:77px}.pb-77px{padding-bottom:77px}.pl-77px,.px-77px{padding-left:77px}.px-77px{padding-right:77px}.py-77px{padding-top:77px;padding-bottom:77px}.w-77px{width:77px}.h-77px{height:77px}.w-77-percentage{width:77%}.h-77-percentage{height:77%}.min-w-77px{min-width:77px}.min-h-77px{min-height:77px}.max-w-77px{max-width:77px}.max-h-77px{max-height:77px}.font-77px{font-size:77px!important}.lh-77px{line-height:77px}.lh-77-percentage{line-height:77%}.border-77px{border-width:77px}.border-t-77px{border-top-width:77px}.border-r-77px{border-right-width:77px}.border-b-77px{border-bottom-width:77px}.border-l-77px{border-left-width:77px}.rounded-77px{border-radius:77px}.rounded-t-77px{border-top-left-radius:77px;border-top-right-radius:77px}.rounded-r-77px{border-top-right-radius:77px;border-bottom-right-radius:77px}.rounded-b-77px{border-bottom-left-radius:77px;border-bottom-right-radius:77px}.rounded-l-77px{border-bottom-left-radius:77px}.rounded-l-77px,.rounded-tl-77px{border-top-left-radius:77px}.rounded-tr-77px{border-top-right-radius:77px}.rounded-br-77px{border-bottom-right-radius:77px}.rounded-bl-77px{border-bottom-left-radius:77px}.rounded-77-percentage{border-radius:77%}.gap-77{gap:77px}.gap-x-77{-moz-column-gap:77px;column-gap:77px}.gap-y-77{row-gap:77px}.top-77{top:77px}.right-77{right:77px}.bottom-77{bottom:77px}.left-77{left:77px}.z-77{z-index:77}.ma-78px{margin:78px}.mt-78px{margin-top:78px}.mr-78px{margin-right:78px}.mb-78px{margin-bottom:78px}.ml-78px,.mx-78px{margin-left:78px}.mx-78px{margin-right:78px}.my-78px{margin-top:78px;margin-bottom:78px}.pa-78px{padding:78px}.pt-78px{padding-top:78px}.pr-78px{padding-right:78px}.pb-78px{padding-bottom:78px}.pl-78px,.px-78px{padding-left:78px}.px-78px{padding-right:78px}.py-78px{padding-top:78px;padding-bottom:78px}.w-78px{width:78px}.h-78px{height:78px}.w-78-percentage{width:78%}.h-78-percentage{height:78%}.min-w-78px{min-width:78px}.min-h-78px{min-height:78px}.max-w-78px{max-width:78px}.max-h-78px{max-height:78px}.font-78px{font-size:78px!important}.lh-78px{line-height:78px}.lh-78-percentage{line-height:78%}.border-78px{border-width:78px}.border-t-78px{border-top-width:78px}.border-r-78px{border-right-width:78px}.border-b-78px{border-bottom-width:78px}.border-l-78px{border-left-width:78px}.rounded-78px{border-radius:78px}.rounded-t-78px{border-top-left-radius:78px;border-top-right-radius:78px}.rounded-r-78px{border-top-right-radius:78px;border-bottom-right-radius:78px}.rounded-b-78px{border-bottom-left-radius:78px;border-bottom-right-radius:78px}.rounded-l-78px{border-bottom-left-radius:78px}.rounded-l-78px,.rounded-tl-78px{border-top-left-radius:78px}.rounded-tr-78px{border-top-right-radius:78px}.rounded-br-78px{border-bottom-right-radius:78px}.rounded-bl-78px{border-bottom-left-radius:78px}.rounded-78-percentage{border-radius:78%}.gap-78{gap:78px}.gap-x-78{-moz-column-gap:78px;column-gap:78px}.gap-y-78{row-gap:78px}.top-78{top:78px}.right-78{right:78px}.bottom-78{bottom:78px}.left-78{left:78px}.z-78{z-index:78}.ma-79px{margin:79px}.mt-79px{margin-top:79px}.mr-79px{margin-right:79px}.mb-79px{margin-bottom:79px}.ml-79px,.mx-79px{margin-left:79px}.mx-79px{margin-right:79px}.my-79px{margin-top:79px;margin-bottom:79px}.pa-79px{padding:79px}.pt-79px{padding-top:79px}.pr-79px{padding-right:79px}.pb-79px{padding-bottom:79px}.pl-79px,.px-79px{padding-left:79px}.px-79px{padding-right:79px}.py-79px{padding-top:79px;padding-bottom:79px}.w-79px{width:79px}.h-79px{height:79px}.w-79-percentage{width:79%}.h-79-percentage{height:79%}.min-w-79px{min-width:79px}.min-h-79px{min-height:79px}.max-w-79px{max-width:79px}.max-h-79px{max-height:79px}.font-79px{font-size:79px!important}.lh-79px{line-height:79px}.lh-79-percentage{line-height:79%}.border-79px{border-width:79px}.border-t-79px{border-top-width:79px}.border-r-79px{border-right-width:79px}.border-b-79px{border-bottom-width:79px}.border-l-79px{border-left-width:79px}.rounded-79px{border-radius:79px}.rounded-t-79px{border-top-left-radius:79px;border-top-right-radius:79px}.rounded-r-79px{border-top-right-radius:79px;border-bottom-right-radius:79px}.rounded-b-79px{border-bottom-left-radius:79px;border-bottom-right-radius:79px}.rounded-l-79px{border-bottom-left-radius:79px}.rounded-l-79px,.rounded-tl-79px{border-top-left-radius:79px}.rounded-tr-79px{border-top-right-radius:79px}.rounded-br-79px{border-bottom-right-radius:79px}.rounded-bl-79px{border-bottom-left-radius:79px}.rounded-79-percentage{border-radius:79%}.gap-79{gap:79px}.gap-x-79{-moz-column-gap:79px;column-gap:79px}.gap-y-79{row-gap:79px}.top-79{top:79px}.right-79{right:79px}.bottom-79{bottom:79px}.left-79{left:79px}.z-79{z-index:79}.ma-80px{margin:80px}.mt-80px{margin-top:80px}.mr-80px{margin-right:80px}.mb-80px{margin-bottom:80px}.ml-80px,.mx-80px{margin-left:80px}.mx-80px{margin-right:80px}.my-80px{margin-top:80px;margin-bottom:80px}.pa-80px{padding:80px}.pt-80px{padding-top:80px}.pr-80px{padding-right:80px}.pb-80px{padding-bottom:80px}.pl-80px,.px-80px{padding-left:80px}.px-80px{padding-right:80px}.py-80px{padding-top:80px;padding-bottom:80px}.w-80px{width:80px}.h-80px{height:80px}.w-80-percentage{width:80%}.h-80-percentage{height:80%}.min-w-80px{min-width:80px}.min-h-80px{min-height:80px}.max-w-80px{max-width:80px}.max-h-80px{max-height:80px}.font-80px{font-size:80px!important}.lh-80px{line-height:80px}.lh-80-percentage{line-height:80%}.border-80px{border-width:80px}.border-t-80px{border-top-width:80px}.border-r-80px{border-right-width:80px}.border-b-80px{border-bottom-width:80px}.border-l-80px{border-left-width:80px}.rounded-80px{border-radius:80px}.rounded-t-80px{border-top-left-radius:80px;border-top-right-radius:80px}.rounded-r-80px{border-top-right-radius:80px;border-bottom-right-radius:80px}.rounded-b-80px{border-bottom-left-radius:80px;border-bottom-right-radius:80px}.rounded-l-80px{border-bottom-left-radius:80px}.rounded-l-80px,.rounded-tl-80px{border-top-left-radius:80px}.rounded-tr-80px{border-top-right-radius:80px}.rounded-br-80px{border-bottom-right-radius:80px}.rounded-bl-80px{border-bottom-left-radius:80px}.rounded-80-percentage{border-radius:80%}.gap-80{gap:80px}.gap-x-80{-moz-column-gap:80px;column-gap:80px}.gap-y-80{row-gap:80px}.top-80{top:80px}.right-80{right:80px}.bottom-80{bottom:80px}.left-80{left:80px}.z-80{z-index:80}.ma-81px{margin:81px}.mt-81px{margin-top:81px}.mr-81px{margin-right:81px}.mb-81px{margin-bottom:81px}.ml-81px,.mx-81px{margin-left:81px}.mx-81px{margin-right:81px}.my-81px{margin-top:81px;margin-bottom:81px}.pa-81px{padding:81px}.pt-81px{padding-top:81px}.pr-81px{padding-right:81px}.pb-81px{padding-bottom:81px}.pl-81px,.px-81px{padding-left:81px}.px-81px{padding-right:81px}.py-81px{padding-top:81px;padding-bottom:81px}.w-81px{width:81px}.h-81px{height:81px}.w-81-percentage{width:81%}.h-81-percentage{height:81%}.min-w-81px{min-width:81px}.min-h-81px{min-height:81px}.max-w-81px{max-width:81px}.max-h-81px{max-height:81px}.font-81px{font-size:81px!important}.lh-81px{line-height:81px}.lh-81-percentage{line-height:81%}.border-81px{border-width:81px}.border-t-81px{border-top-width:81px}.border-r-81px{border-right-width:81px}.border-b-81px{border-bottom-width:81px}.border-l-81px{border-left-width:81px}.rounded-81px{border-radius:81px}.rounded-t-81px{border-top-left-radius:81px;border-top-right-radius:81px}.rounded-r-81px{border-top-right-radius:81px;border-bottom-right-radius:81px}.rounded-b-81px{border-bottom-left-radius:81px;border-bottom-right-radius:81px}.rounded-l-81px{border-bottom-left-radius:81px}.rounded-l-81px,.rounded-tl-81px{border-top-left-radius:81px}.rounded-tr-81px{border-top-right-radius:81px}.rounded-br-81px{border-bottom-right-radius:81px}.rounded-bl-81px{border-bottom-left-radius:81px}.rounded-81-percentage{border-radius:81%}.gap-81{gap:81px}.gap-x-81{-moz-column-gap:81px;column-gap:81px}.gap-y-81{row-gap:81px}.top-81{top:81px}.right-81{right:81px}.bottom-81{bottom:81px}.left-81{left:81px}.z-81{z-index:81}.ma-82px{margin:82px}.mt-82px{margin-top:82px}.mr-82px{margin-right:82px}.mb-82px{margin-bottom:82px}.ml-82px,.mx-82px{margin-left:82px}.mx-82px{margin-right:82px}.my-82px{margin-top:82px;margin-bottom:82px}.pa-82px{padding:82px}.pt-82px{padding-top:82px}.pr-82px{padding-right:82px}.pb-82px{padding-bottom:82px}.pl-82px,.px-82px{padding-left:82px}.px-82px{padding-right:82px}.py-82px{padding-top:82px;padding-bottom:82px}.w-82px{width:82px}.h-82px{height:82px}.w-82-percentage{width:82%}.h-82-percentage{height:82%}.min-w-82px{min-width:82px}.min-h-82px{min-height:82px}.max-w-82px{max-width:82px}.max-h-82px{max-height:82px}.font-82px{font-size:82px!important}.lh-82px{line-height:82px}.lh-82-percentage{line-height:82%}.border-82px{border-width:82px}.border-t-82px{border-top-width:82px}.border-r-82px{border-right-width:82px}.border-b-82px{border-bottom-width:82px}.border-l-82px{border-left-width:82px}.rounded-82px{border-radius:82px}.rounded-t-82px{border-top-left-radius:82px;border-top-right-radius:82px}.rounded-r-82px{border-top-right-radius:82px;border-bottom-right-radius:82px}.rounded-b-82px{border-bottom-left-radius:82px;border-bottom-right-radius:82px}.rounded-l-82px{border-bottom-left-radius:82px}.rounded-l-82px,.rounded-tl-82px{border-top-left-radius:82px}.rounded-tr-82px{border-top-right-radius:82px}.rounded-br-82px{border-bottom-right-radius:82px}.rounded-bl-82px{border-bottom-left-radius:82px}.rounded-82-percentage{border-radius:82%}.gap-82{gap:82px}.gap-x-82{-moz-column-gap:82px;column-gap:82px}.gap-y-82{row-gap:82px}.top-82{top:82px}.right-82{right:82px}.bottom-82{bottom:82px}.left-82{left:82px}.z-82{z-index:82}.ma-83px{margin:83px}.mt-83px{margin-top:83px}.mr-83px{margin-right:83px}.mb-83px{margin-bottom:83px}.ml-83px,.mx-83px{margin-left:83px}.mx-83px{margin-right:83px}.my-83px{margin-top:83px;margin-bottom:83px}.pa-83px{padding:83px}.pt-83px{padding-top:83px}.pr-83px{padding-right:83px}.pb-83px{padding-bottom:83px}.pl-83px,.px-83px{padding-left:83px}.px-83px{padding-right:83px}.py-83px{padding-top:83px;padding-bottom:83px}.w-83px{width:83px}.h-83px{height:83px}.w-83-percentage{width:83%}.h-83-percentage{height:83%}.min-w-83px{min-width:83px}.min-h-83px{min-height:83px}.max-w-83px{max-width:83px}.max-h-83px{max-height:83px}.font-83px{font-size:83px!important}.lh-83px{line-height:83px}.lh-83-percentage{line-height:83%}.border-83px{border-width:83px}.border-t-83px{border-top-width:83px}.border-r-83px{border-right-width:83px}.border-b-83px{border-bottom-width:83px}.border-l-83px{border-left-width:83px}.rounded-83px{border-radius:83px}.rounded-t-83px{border-top-left-radius:83px;border-top-right-radius:83px}.rounded-r-83px{border-top-right-radius:83px;border-bottom-right-radius:83px}.rounded-b-83px{border-bottom-left-radius:83px;border-bottom-right-radius:83px}.rounded-l-83px{border-bottom-left-radius:83px}.rounded-l-83px,.rounded-tl-83px{border-top-left-radius:83px}.rounded-tr-83px{border-top-right-radius:83px}.rounded-br-83px{border-bottom-right-radius:83px}.rounded-bl-83px{border-bottom-left-radius:83px}.rounded-83-percentage{border-radius:83%}.gap-83{gap:83px}.gap-x-83{-moz-column-gap:83px;column-gap:83px}.gap-y-83{row-gap:83px}.top-83{top:83px}.right-83{right:83px}.bottom-83{bottom:83px}.left-83{left:83px}.z-83{z-index:83}.ma-84px{margin:84px}.mt-84px{margin-top:84px}.mr-84px{margin-right:84px}.mb-84px{margin-bottom:84px}.ml-84px,.mx-84px{margin-left:84px}.mx-84px{margin-right:84px}.my-84px{margin-top:84px;margin-bottom:84px}.pa-84px{padding:84px}.pt-84px{padding-top:84px}.pr-84px{padding-right:84px}.pb-84px{padding-bottom:84px}.pl-84px,.px-84px{padding-left:84px}.px-84px{padding-right:84px}.py-84px{padding-top:84px;padding-bottom:84px}.w-84px{width:84px}.h-84px{height:84px}.w-84-percentage{width:84%}.h-84-percentage{height:84%}.min-w-84px{min-width:84px}.min-h-84px{min-height:84px}.max-w-84px{max-width:84px}.max-h-84px{max-height:84px}.font-84px{font-size:84px!important}.lh-84px{line-height:84px}.lh-84-percentage{line-height:84%}.border-84px{border-width:84px}.border-t-84px{border-top-width:84px}.border-r-84px{border-right-width:84px}.border-b-84px{border-bottom-width:84px}.border-l-84px{border-left-width:84px}.rounded-84px{border-radius:84px}.rounded-t-84px{border-top-left-radius:84px;border-top-right-radius:84px}.rounded-r-84px{border-top-right-radius:84px;border-bottom-right-radius:84px}.rounded-b-84px{border-bottom-left-radius:84px;border-bottom-right-radius:84px}.rounded-l-84px{border-bottom-left-radius:84px}.rounded-l-84px,.rounded-tl-84px{border-top-left-radius:84px}.rounded-tr-84px{border-top-right-radius:84px}.rounded-br-84px{border-bottom-right-radius:84px}.rounded-bl-84px{border-bottom-left-radius:84px}.rounded-84-percentage{border-radius:84%}.gap-84{gap:84px}.gap-x-84{-moz-column-gap:84px;column-gap:84px}.gap-y-84{row-gap:84px}.top-84{top:84px}.right-84{right:84px}.bottom-84{bottom:84px}.left-84{left:84px}.z-84{z-index:84}.ma-85px{margin:85px}.mt-85px{margin-top:85px}.mr-85px{margin-right:85px}.mb-85px{margin-bottom:85px}.ml-85px,.mx-85px{margin-left:85px}.mx-85px{margin-right:85px}.my-85px{margin-top:85px;margin-bottom:85px}.pa-85px{padding:85px}.pt-85px{padding-top:85px}.pr-85px{padding-right:85px}.pb-85px{padding-bottom:85px}.pl-85px,.px-85px{padding-left:85px}.px-85px{padding-right:85px}.py-85px{padding-top:85px;padding-bottom:85px}.w-85px{width:85px}.h-85px{height:85px}.w-85-percentage{width:85%}.h-85-percentage{height:85%}.min-w-85px{min-width:85px}.min-h-85px{min-height:85px}.max-w-85px{max-width:85px}.max-h-85px{max-height:85px}.font-85px{font-size:85px!important}.lh-85px{line-height:85px}.lh-85-percentage{line-height:85%}.border-85px{border-width:85px}.border-t-85px{border-top-width:85px}.border-r-85px{border-right-width:85px}.border-b-85px{border-bottom-width:85px}.border-l-85px{border-left-width:85px}.rounded-85px{border-radius:85px}.rounded-t-85px{border-top-left-radius:85px;border-top-right-radius:85px}.rounded-r-85px{border-top-right-radius:85px;border-bottom-right-radius:85px}.rounded-b-85px{border-bottom-left-radius:85px;border-bottom-right-radius:85px}.rounded-l-85px{border-bottom-left-radius:85px}.rounded-l-85px,.rounded-tl-85px{border-top-left-radius:85px}.rounded-tr-85px{border-top-right-radius:85px}.rounded-br-85px{border-bottom-right-radius:85px}.rounded-bl-85px{border-bottom-left-radius:85px}.rounded-85-percentage{border-radius:85%}.gap-85{gap:85px}.gap-x-85{-moz-column-gap:85px;column-gap:85px}.gap-y-85{row-gap:85px}.top-85{top:85px}.right-85{right:85px}.bottom-85{bottom:85px}.left-85{left:85px}.z-85{z-index:85}.ma-86px{margin:86px}.mt-86px{margin-top:86px}.mr-86px{margin-right:86px}.mb-86px{margin-bottom:86px}.ml-86px,.mx-86px{margin-left:86px}.mx-86px{margin-right:86px}.my-86px{margin-top:86px;margin-bottom:86px}.pa-86px{padding:86px}.pt-86px{padding-top:86px}.pr-86px{padding-right:86px}.pb-86px{padding-bottom:86px}.pl-86px,.px-86px{padding-left:86px}.px-86px{padding-right:86px}.py-86px{padding-top:86px;padding-bottom:86px}.w-86px{width:86px}.h-86px{height:86px}.w-86-percentage{width:86%}.h-86-percentage{height:86%}.min-w-86px{min-width:86px}.min-h-86px{min-height:86px}.max-w-86px{max-width:86px}.max-h-86px{max-height:86px}.font-86px{font-size:86px!important}.lh-86px{line-height:86px}.lh-86-percentage{line-height:86%}.border-86px{border-width:86px}.border-t-86px{border-top-width:86px}.border-r-86px{border-right-width:86px}.border-b-86px{border-bottom-width:86px}.border-l-86px{border-left-width:86px}.rounded-86px{border-radius:86px}.rounded-t-86px{border-top-left-radius:86px;border-top-right-radius:86px}.rounded-r-86px{border-top-right-radius:86px;border-bottom-right-radius:86px}.rounded-b-86px{border-bottom-left-radius:86px;border-bottom-right-radius:86px}.rounded-l-86px{border-bottom-left-radius:86px}.rounded-l-86px,.rounded-tl-86px{border-top-left-radius:86px}.rounded-tr-86px{border-top-right-radius:86px}.rounded-br-86px{border-bottom-right-radius:86px}.rounded-bl-86px{border-bottom-left-radius:86px}.rounded-86-percentage{border-radius:86%}.gap-86{gap:86px}.gap-x-86{-moz-column-gap:86px;column-gap:86px}.gap-y-86{row-gap:86px}.top-86{top:86px}.right-86{right:86px}.bottom-86{bottom:86px}.left-86{left:86px}.z-86{z-index:86}.ma-87px{margin:87px}.mt-87px{margin-top:87px}.mr-87px{margin-right:87px}.mb-87px{margin-bottom:87px}.ml-87px,.mx-87px{margin-left:87px}.mx-87px{margin-right:87px}.my-87px{margin-top:87px;margin-bottom:87px}.pa-87px{padding:87px}.pt-87px{padding-top:87px}.pr-87px{padding-right:87px}.pb-87px{padding-bottom:87px}.pl-87px,.px-87px{padding-left:87px}.px-87px{padding-right:87px}.py-87px{padding-top:87px;padding-bottom:87px}.w-87px{width:87px}.h-87px{height:87px}.w-87-percentage{width:87%}.h-87-percentage{height:87%}.min-w-87px{min-width:87px}.min-h-87px{min-height:87px}.max-w-87px{max-width:87px}.max-h-87px{max-height:87px}.font-87px{font-size:87px!important}.lh-87px{line-height:87px}.lh-87-percentage{line-height:87%}.border-87px{border-width:87px}.border-t-87px{border-top-width:87px}.border-r-87px{border-right-width:87px}.border-b-87px{border-bottom-width:87px}.border-l-87px{border-left-width:87px}.rounded-87px{border-radius:87px}.rounded-t-87px{border-top-left-radius:87px;border-top-right-radius:87px}.rounded-r-87px{border-top-right-radius:87px;border-bottom-right-radius:87px}.rounded-b-87px{border-bottom-left-radius:87px;border-bottom-right-radius:87px}.rounded-l-87px{border-bottom-left-radius:87px}.rounded-l-87px,.rounded-tl-87px{border-top-left-radius:87px}.rounded-tr-87px{border-top-right-radius:87px}.rounded-br-87px{border-bottom-right-radius:87px}.rounded-bl-87px{border-bottom-left-radius:87px}.rounded-87-percentage{border-radius:87%}.gap-87{gap:87px}.gap-x-87{-moz-column-gap:87px;column-gap:87px}.gap-y-87{row-gap:87px}.top-87{top:87px}.right-87{right:87px}.bottom-87{bottom:87px}.left-87{left:87px}.z-87{z-index:87}.ma-88px{margin:88px}.mt-88px{margin-top:88px}.mr-88px{margin-right:88px}.mb-88px{margin-bottom:88px}.ml-88px,.mx-88px{margin-left:88px}.mx-88px{margin-right:88px}.my-88px{margin-top:88px;margin-bottom:88px}.pa-88px{padding:88px}.pt-88px{padding-top:88px}.pr-88px{padding-right:88px}.pb-88px{padding-bottom:88px}.pl-88px,.px-88px{padding-left:88px}.px-88px{padding-right:88px}.py-88px{padding-top:88px;padding-bottom:88px}.w-88px{width:88px}.h-88px{height:88px}.w-88-percentage{width:88%}.h-88-percentage{height:88%}.min-w-88px{min-width:88px}.min-h-88px{min-height:88px}.max-w-88px{max-width:88px}.max-h-88px{max-height:88px}.font-88px{font-size:88px!important}.lh-88px{line-height:88px}.lh-88-percentage{line-height:88%}.border-88px{border-width:88px}.border-t-88px{border-top-width:88px}.border-r-88px{border-right-width:88px}.border-b-88px{border-bottom-width:88px}.border-l-88px{border-left-width:88px}.rounded-88px{border-radius:88px}.rounded-t-88px{border-top-left-radius:88px;border-top-right-radius:88px}.rounded-r-88px{border-top-right-radius:88px;border-bottom-right-radius:88px}.rounded-b-88px{border-bottom-left-radius:88px;border-bottom-right-radius:88px}.rounded-l-88px{border-bottom-left-radius:88px}.rounded-l-88px,.rounded-tl-88px{border-top-left-radius:88px}.rounded-tr-88px{border-top-right-radius:88px}.rounded-br-88px{border-bottom-right-radius:88px}.rounded-bl-88px{border-bottom-left-radius:88px}.rounded-88-percentage{border-radius:88%}.gap-88{gap:88px}.gap-x-88{-moz-column-gap:88px;column-gap:88px}.gap-y-88{row-gap:88px}.top-88{top:88px}.right-88{right:88px}.bottom-88{bottom:88px}.left-88{left:88px}.z-88{z-index:88}.ma-89px{margin:89px}.mt-89px{margin-top:89px}.mr-89px{margin-right:89px}.mb-89px{margin-bottom:89px}.ml-89px,.mx-89px{margin-left:89px}.mx-89px{margin-right:89px}.my-89px{margin-top:89px;margin-bottom:89px}.pa-89px{padding:89px}.pt-89px{padding-top:89px}.pr-89px{padding-right:89px}.pb-89px{padding-bottom:89px}.pl-89px,.px-89px{padding-left:89px}.px-89px{padding-right:89px}.py-89px{padding-top:89px;padding-bottom:89px}.w-89px{width:89px}.h-89px{height:89px}.w-89-percentage{width:89%}.h-89-percentage{height:89%}.min-w-89px{min-width:89px}.min-h-89px{min-height:89px}.max-w-89px{max-width:89px}.max-h-89px{max-height:89px}.font-89px{font-size:89px!important}.lh-89px{line-height:89px}.lh-89-percentage{line-height:89%}.border-89px{border-width:89px}.border-t-89px{border-top-width:89px}.border-r-89px{border-right-width:89px}.border-b-89px{border-bottom-width:89px}.border-l-89px{border-left-width:89px}.rounded-89px{border-radius:89px}.rounded-t-89px{border-top-left-radius:89px;border-top-right-radius:89px}.rounded-r-89px{border-top-right-radius:89px;border-bottom-right-radius:89px}.rounded-b-89px{border-bottom-left-radius:89px;border-bottom-right-radius:89px}.rounded-l-89px{border-bottom-left-radius:89px}.rounded-l-89px,.rounded-tl-89px{border-top-left-radius:89px}.rounded-tr-89px{border-top-right-radius:89px}.rounded-br-89px{border-bottom-right-radius:89px}.rounded-bl-89px{border-bottom-left-radius:89px}.rounded-89-percentage{border-radius:89%}.gap-89{gap:89px}.gap-x-89{-moz-column-gap:89px;column-gap:89px}.gap-y-89{row-gap:89px}.top-89{top:89px}.right-89{right:89px}.bottom-89{bottom:89px}.left-89{left:89px}.z-89{z-index:89}.ma-90px{margin:90px}.mt-90px{margin-top:90px}.mr-90px{margin-right:90px}.mb-90px{margin-bottom:90px}.ml-90px,.mx-90px{margin-left:90px}.mx-90px{margin-right:90px}.my-90px{margin-top:90px;margin-bottom:90px}.pa-90px{padding:90px}.pt-90px{padding-top:90px}.pr-90px{padding-right:90px}.pb-90px{padding-bottom:90px}.pl-90px,.px-90px{padding-left:90px}.px-90px{padding-right:90px}.py-90px{padding-top:90px;padding-bottom:90px}.w-90px{width:90px}.h-90px{height:90px}.w-90-percentage{width:90%}.h-90-percentage{height:90%}.min-w-90px{min-width:90px}.min-h-90px{min-height:90px}.max-w-90px{max-width:90px}.max-h-90px{max-height:90px}.font-90px{font-size:90px!important}.lh-90px{line-height:90px}.lh-90-percentage{line-height:90%}.border-90px{border-width:90px}.border-t-90px{border-top-width:90px}.border-r-90px{border-right-width:90px}.border-b-90px{border-bottom-width:90px}.border-l-90px{border-left-width:90px}.rounded-90px{border-radius:90px}.rounded-t-90px{border-top-left-radius:90px;border-top-right-radius:90px}.rounded-r-90px{border-top-right-radius:90px;border-bottom-right-radius:90px}.rounded-b-90px{border-bottom-left-radius:90px;border-bottom-right-radius:90px}.rounded-l-90px{border-bottom-left-radius:90px}.rounded-l-90px,.rounded-tl-90px{border-top-left-radius:90px}.rounded-tr-90px{border-top-right-radius:90px}.rounded-br-90px{border-bottom-right-radius:90px}.rounded-bl-90px{border-bottom-left-radius:90px}.rounded-90-percentage{border-radius:90%}.gap-90{gap:90px}.gap-x-90{-moz-column-gap:90px;column-gap:90px}.gap-y-90{row-gap:90px}.top-90{top:90px}.right-90{right:90px}.bottom-90{bottom:90px}.left-90{left:90px}.z-90{z-index:90}.ma-91px{margin:91px}.mt-91px{margin-top:91px}.mr-91px{margin-right:91px}.mb-91px{margin-bottom:91px}.ml-91px,.mx-91px{margin-left:91px}.mx-91px{margin-right:91px}.my-91px{margin-top:91px;margin-bottom:91px}.pa-91px{padding:91px}.pt-91px{padding-top:91px}.pr-91px{padding-right:91px}.pb-91px{padding-bottom:91px}.pl-91px,.px-91px{padding-left:91px}.px-91px{padding-right:91px}.py-91px{padding-top:91px;padding-bottom:91px}.w-91px{width:91px}.h-91px{height:91px}.w-91-percentage{width:91%}.h-91-percentage{height:91%}.min-w-91px{min-width:91px}.min-h-91px{min-height:91px}.max-w-91px{max-width:91px}.max-h-91px{max-height:91px}.font-91px{font-size:91px!important}.lh-91px{line-height:91px}.lh-91-percentage{line-height:91%}.border-91px{border-width:91px}.border-t-91px{border-top-width:91px}.border-r-91px{border-right-width:91px}.border-b-91px{border-bottom-width:91px}.border-l-91px{border-left-width:91px}.rounded-91px{border-radius:91px}.rounded-t-91px{border-top-left-radius:91px;border-top-right-radius:91px}.rounded-r-91px{border-top-right-radius:91px;border-bottom-right-radius:91px}.rounded-b-91px{border-bottom-left-radius:91px;border-bottom-right-radius:91px}.rounded-l-91px{border-bottom-left-radius:91px}.rounded-l-91px,.rounded-tl-91px{border-top-left-radius:91px}.rounded-tr-91px{border-top-right-radius:91px}.rounded-br-91px{border-bottom-right-radius:91px}.rounded-bl-91px{border-bottom-left-radius:91px}.rounded-91-percentage{border-radius:91%}.gap-91{gap:91px}.gap-x-91{-moz-column-gap:91px;column-gap:91px}.gap-y-91{row-gap:91px}.top-91{top:91px}.right-91{right:91px}.bottom-91{bottom:91px}.left-91{left:91px}.z-91{z-index:91}.ma-92px{margin:92px}.mt-92px{margin-top:92px}.mr-92px{margin-right:92px}.mb-92px{margin-bottom:92px}.ml-92px,.mx-92px{margin-left:92px}.mx-92px{margin-right:92px}.my-92px{margin-top:92px;margin-bottom:92px}.pa-92px{padding:92px}.pt-92px{padding-top:92px}.pr-92px{padding-right:92px}.pb-92px{padding-bottom:92px}.pl-92px,.px-92px{padding-left:92px}.px-92px{padding-right:92px}.py-92px{padding-top:92px;padding-bottom:92px}.w-92px{width:92px}.h-92px{height:92px}.w-92-percentage{width:92%}.h-92-percentage{height:92%}.min-w-92px{min-width:92px}.min-h-92px{min-height:92px}.max-w-92px{max-width:92px}.max-h-92px{max-height:92px}.font-92px{font-size:92px!important}.lh-92px{line-height:92px}.lh-92-percentage{line-height:92%}.border-92px{border-width:92px}.border-t-92px{border-top-width:92px}.border-r-92px{border-right-width:92px}.border-b-92px{border-bottom-width:92px}.border-l-92px{border-left-width:92px}.rounded-92px{border-radius:92px}.rounded-t-92px{border-top-left-radius:92px;border-top-right-radius:92px}.rounded-r-92px{border-top-right-radius:92px;border-bottom-right-radius:92px}.rounded-b-92px{border-bottom-left-radius:92px;border-bottom-right-radius:92px}.rounded-l-92px{border-bottom-left-radius:92px}.rounded-l-92px,.rounded-tl-92px{border-top-left-radius:92px}.rounded-tr-92px{border-top-right-radius:92px}.rounded-br-92px{border-bottom-right-radius:92px}.rounded-bl-92px{border-bottom-left-radius:92px}.rounded-92-percentage{border-radius:92%}.gap-92{gap:92px}.gap-x-92{-moz-column-gap:92px;column-gap:92px}.gap-y-92{row-gap:92px}.top-92{top:92px}.right-92{right:92px}.bottom-92{bottom:92px}.left-92{left:92px}.z-92{z-index:92}.ma-93px{margin:93px}.mt-93px{margin-top:93px}.mr-93px{margin-right:93px}.mb-93px{margin-bottom:93px}.ml-93px,.mx-93px{margin-left:93px}.mx-93px{margin-right:93px}.my-93px{margin-top:93px;margin-bottom:93px}.pa-93px{padding:93px}.pt-93px{padding-top:93px}.pr-93px{padding-right:93px}.pb-93px{padding-bottom:93px}.pl-93px,.px-93px{padding-left:93px}.px-93px{padding-right:93px}.py-93px{padding-top:93px;padding-bottom:93px}.w-93px{width:93px}.h-93px{height:93px}.w-93-percentage{width:93%}.h-93-percentage{height:93%}.min-w-93px{min-width:93px}.min-h-93px{min-height:93px}.max-w-93px{max-width:93px}.max-h-93px{max-height:93px}.font-93px{font-size:93px!important}.lh-93px{line-height:93px}.lh-93-percentage{line-height:93%}.border-93px{border-width:93px}.border-t-93px{border-top-width:93px}.border-r-93px{border-right-width:93px}.border-b-93px{border-bottom-width:93px}.border-l-93px{border-left-width:93px}.rounded-93px{border-radius:93px}.rounded-t-93px{border-top-left-radius:93px;border-top-right-radius:93px}.rounded-r-93px{border-top-right-radius:93px;border-bottom-right-radius:93px}.rounded-b-93px{border-bottom-left-radius:93px;border-bottom-right-radius:93px}.rounded-l-93px{border-bottom-left-radius:93px}.rounded-l-93px,.rounded-tl-93px{border-top-left-radius:93px}.rounded-tr-93px{border-top-right-radius:93px}.rounded-br-93px{border-bottom-right-radius:93px}.rounded-bl-93px{border-bottom-left-radius:93px}.rounded-93-percentage{border-radius:93%}.gap-93{gap:93px}.gap-x-93{-moz-column-gap:93px;column-gap:93px}.gap-y-93{row-gap:93px}.top-93{top:93px}.right-93{right:93px}.bottom-93{bottom:93px}.left-93{left:93px}.z-93{z-index:93}.ma-94px{margin:94px}.mt-94px{margin-top:94px}.mr-94px{margin-right:94px}.mb-94px{margin-bottom:94px}.ml-94px,.mx-94px{margin-left:94px}.mx-94px{margin-right:94px}.my-94px{margin-top:94px;margin-bottom:94px}.pa-94px{padding:94px}.pt-94px{padding-top:94px}.pr-94px{padding-right:94px}.pb-94px{padding-bottom:94px}.pl-94px,.px-94px{padding-left:94px}.px-94px{padding-right:94px}.py-94px{padding-top:94px;padding-bottom:94px}.w-94px{width:94px}.h-94px{height:94px}.w-94-percentage{width:94%}.h-94-percentage{height:94%}.min-w-94px{min-width:94px}.min-h-94px{min-height:94px}.max-w-94px{max-width:94px}.max-h-94px{max-height:94px}.font-94px{font-size:94px!important}.lh-94px{line-height:94px}.lh-94-percentage{line-height:94%}.border-94px{border-width:94px}.border-t-94px{border-top-width:94px}.border-r-94px{border-right-width:94px}.border-b-94px{border-bottom-width:94px}.border-l-94px{border-left-width:94px}.rounded-94px{border-radius:94px}.rounded-t-94px{border-top-left-radius:94px;border-top-right-radius:94px}.rounded-r-94px{border-top-right-radius:94px;border-bottom-right-radius:94px}.rounded-b-94px{border-bottom-left-radius:94px;border-bottom-right-radius:94px}.rounded-l-94px{border-bottom-left-radius:94px}.rounded-l-94px,.rounded-tl-94px{border-top-left-radius:94px}.rounded-tr-94px{border-top-right-radius:94px}.rounded-br-94px{border-bottom-right-radius:94px}.rounded-bl-94px{border-bottom-left-radius:94px}.rounded-94-percentage{border-radius:94%}.gap-94{gap:94px}.gap-x-94{-moz-column-gap:94px;column-gap:94px}.gap-y-94{row-gap:94px}.top-94{top:94px}.right-94{right:94px}.bottom-94{bottom:94px}.left-94{left:94px}.z-94{z-index:94}.ma-95px{margin:95px}.mt-95px{margin-top:95px}.mr-95px{margin-right:95px}.mb-95px{margin-bottom:95px}.ml-95px,.mx-95px{margin-left:95px}.mx-95px{margin-right:95px}.my-95px{margin-top:95px;margin-bottom:95px}.pa-95px{padding:95px}.pt-95px{padding-top:95px}.pr-95px{padding-right:95px}.pb-95px{padding-bottom:95px}.pl-95px,.px-95px{padding-left:95px}.px-95px{padding-right:95px}.py-95px{padding-top:95px;padding-bottom:95px}.w-95px{width:95px}.h-95px{height:95px}.w-95-percentage{width:95%}.h-95-percentage{height:95%}.min-w-95px{min-width:95px}.min-h-95px{min-height:95px}.max-w-95px{max-width:95px}.max-h-95px{max-height:95px}.font-95px{font-size:95px!important}.lh-95px{line-height:95px}.lh-95-percentage{line-height:95%}.border-95px{border-width:95px}.border-t-95px{border-top-width:95px}.border-r-95px{border-right-width:95px}.border-b-95px{border-bottom-width:95px}.border-l-95px{border-left-width:95px}.rounded-95px{border-radius:95px}.rounded-t-95px{border-top-left-radius:95px;border-top-right-radius:95px}.rounded-r-95px{border-top-right-radius:95px;border-bottom-right-radius:95px}.rounded-b-95px{border-bottom-left-radius:95px;border-bottom-right-radius:95px}.rounded-l-95px{border-bottom-left-radius:95px}.rounded-l-95px,.rounded-tl-95px{border-top-left-radius:95px}.rounded-tr-95px{border-top-right-radius:95px}.rounded-br-95px{border-bottom-right-radius:95px}.rounded-bl-95px{border-bottom-left-radius:95px}.rounded-95-percentage{border-radius:95%}.gap-95{gap:95px}.gap-x-95{-moz-column-gap:95px;column-gap:95px}.gap-y-95{row-gap:95px}.top-95{top:95px}.right-95{right:95px}.bottom-95{bottom:95px}.left-95{left:95px}.z-95{z-index:95}.ma-96px{margin:96px}.mt-96px{margin-top:96px}.mr-96px{margin-right:96px}.mb-96px{margin-bottom:96px}.ml-96px,.mx-96px{margin-left:96px}.mx-96px{margin-right:96px}.my-96px{margin-top:96px;margin-bottom:96px}.pa-96px{padding:96px}.pt-96px{padding-top:96px}.pr-96px{padding-right:96px}.pb-96px{padding-bottom:96px}.pl-96px,.px-96px{padding-left:96px}.px-96px{padding-right:96px}.py-96px{padding-top:96px;padding-bottom:96px}.w-96px{width:96px}.h-96px{height:96px}.w-96-percentage{width:96%}.h-96-percentage{height:96%}.min-w-96px{min-width:96px}.min-h-96px{min-height:96px}.max-w-96px{max-width:96px}.max-h-96px{max-height:96px}.font-96px{font-size:96px!important}.lh-96px{line-height:96px}.lh-96-percentage{line-height:96%}.border-96px{border-width:96px}.border-t-96px{border-top-width:96px}.border-r-96px{border-right-width:96px}.border-b-96px{border-bottom-width:96px}.border-l-96px{border-left-width:96px}.rounded-96px{border-radius:96px}.rounded-t-96px{border-top-left-radius:96px;border-top-right-radius:96px}.rounded-r-96px{border-top-right-radius:96px;border-bottom-right-radius:96px}.rounded-b-96px{border-bottom-left-radius:96px;border-bottom-right-radius:96px}.rounded-l-96px{border-bottom-left-radius:96px}.rounded-l-96px,.rounded-tl-96px{border-top-left-radius:96px}.rounded-tr-96px{border-top-right-radius:96px}.rounded-br-96px{border-bottom-right-radius:96px}.rounded-bl-96px{border-bottom-left-radius:96px}.rounded-96-percentage{border-radius:96%}.gap-96{gap:96px}.gap-x-96{-moz-column-gap:96px;column-gap:96px}.gap-y-96{row-gap:96px}.top-96{top:96px}.right-96{right:96px}.bottom-96{bottom:96px}.left-96{left:96px}.z-96{z-index:96}.ma-97px{margin:97px}.mt-97px{margin-top:97px}.mr-97px{margin-right:97px}.mb-97px{margin-bottom:97px}.ml-97px,.mx-97px{margin-left:97px}.mx-97px{margin-right:97px}.my-97px{margin-top:97px;margin-bottom:97px}.pa-97px{padding:97px}.pt-97px{padding-top:97px}.pr-97px{padding-right:97px}.pb-97px{padding-bottom:97px}.pl-97px,.px-97px{padding-left:97px}.px-97px{padding-right:97px}.py-97px{padding-top:97px;padding-bottom:97px}.w-97px{width:97px}.h-97px{height:97px}.w-97-percentage{width:97%}.h-97-percentage{height:97%}.min-w-97px{min-width:97px}.min-h-97px{min-height:97px}.max-w-97px{max-width:97px}.max-h-97px{max-height:97px}.font-97px{font-size:97px!important}.lh-97px{line-height:97px}.lh-97-percentage{line-height:97%}.border-97px{border-width:97px}.border-t-97px{border-top-width:97px}.border-r-97px{border-right-width:97px}.border-b-97px{border-bottom-width:97px}.border-l-97px{border-left-width:97px}.rounded-97px{border-radius:97px}.rounded-t-97px{border-top-left-radius:97px;border-top-right-radius:97px}.rounded-r-97px{border-top-right-radius:97px;border-bottom-right-radius:97px}.rounded-b-97px{border-bottom-left-radius:97px;border-bottom-right-radius:97px}.rounded-l-97px{border-bottom-left-radius:97px}.rounded-l-97px,.rounded-tl-97px{border-top-left-radius:97px}.rounded-tr-97px{border-top-right-radius:97px}.rounded-br-97px{border-bottom-right-radius:97px}.rounded-bl-97px{border-bottom-left-radius:97px}.rounded-97-percentage{border-radius:97%}.gap-97{gap:97px}.gap-x-97{-moz-column-gap:97px;column-gap:97px}.gap-y-97{row-gap:97px}.top-97{top:97px}.right-97{right:97px}.bottom-97{bottom:97px}.left-97{left:97px}.z-97{z-index:97}.ma-98px{margin:98px}.mt-98px{margin-top:98px}.mr-98px{margin-right:98px}.mb-98px{margin-bottom:98px}.ml-98px,.mx-98px{margin-left:98px}.mx-98px{margin-right:98px}.my-98px{margin-top:98px;margin-bottom:98px}.pa-98px{padding:98px}.pt-98px{padding-top:98px}.pr-98px{padding-right:98px}.pb-98px{padding-bottom:98px}.pl-98px,.px-98px{padding-left:98px}.px-98px{padding-right:98px}.py-98px{padding-top:98px;padding-bottom:98px}.w-98px{width:98px}.h-98px{height:98px}.w-98-percentage{width:98%}.h-98-percentage{height:98%}.min-w-98px{min-width:98px}.min-h-98px{min-height:98px}.max-w-98px{max-width:98px}.max-h-98px{max-height:98px}.font-98px{font-size:98px!important}.lh-98px{line-height:98px}.lh-98-percentage{line-height:98%}.border-98px{border-width:98px}.border-t-98px{border-top-width:98px}.border-r-98px{border-right-width:98px}.border-b-98px{border-bottom-width:98px}.border-l-98px{border-left-width:98px}.rounded-98px{border-radius:98px}.rounded-t-98px{border-top-left-radius:98px;border-top-right-radius:98px}.rounded-r-98px{border-top-right-radius:98px;border-bottom-right-radius:98px}.rounded-b-98px{border-bottom-left-radius:98px;border-bottom-right-radius:98px}.rounded-l-98px{border-bottom-left-radius:98px}.rounded-l-98px,.rounded-tl-98px{border-top-left-radius:98px}.rounded-tr-98px{border-top-right-radius:98px}.rounded-br-98px{border-bottom-right-radius:98px}.rounded-bl-98px{border-bottom-left-radius:98px}.rounded-98-percentage{border-radius:98%}.gap-98{gap:98px}.gap-x-98{-moz-column-gap:98px;column-gap:98px}.gap-y-98{row-gap:98px}.top-98{top:98px}.right-98{right:98px}.bottom-98{bottom:98px}.left-98{left:98px}.z-98{z-index:98}.ma-99px{margin:99px}.mt-99px{margin-top:99px}.mr-99px{margin-right:99px}.mb-99px{margin-bottom:99px}.ml-99px,.mx-99px{margin-left:99px}.mx-99px{margin-right:99px}.my-99px{margin-top:99px;margin-bottom:99px}.pa-99px{padding:99px}.pt-99px{padding-top:99px}.pr-99px{padding-right:99px}.pb-99px{padding-bottom:99px}.pl-99px,.px-99px{padding-left:99px}.px-99px{padding-right:99px}.py-99px{padding-top:99px;padding-bottom:99px}.w-99px{width:99px}.h-99px{height:99px}.w-99-percentage{width:99%}.h-99-percentage{height:99%}.min-w-99px{min-width:99px}.min-h-99px{min-height:99px}.max-w-99px{max-width:99px}.max-h-99px{max-height:99px}.font-99px{font-size:99px!important}.lh-99px{line-height:99px}.lh-99-percentage{line-height:99%}.border-99px{border-width:99px}.border-t-99px{border-top-width:99px}.border-r-99px{border-right-width:99px}.border-b-99px{border-bottom-width:99px}.border-l-99px{border-left-width:99px}.rounded-99px{border-radius:99px}.rounded-t-99px{border-top-left-radius:99px;border-top-right-radius:99px}.rounded-r-99px{border-top-right-radius:99px;border-bottom-right-radius:99px}.rounded-b-99px{border-bottom-left-radius:99px;border-bottom-right-radius:99px}.rounded-l-99px{border-bottom-left-radius:99px}.rounded-l-99px,.rounded-tl-99px{border-top-left-radius:99px}.rounded-tr-99px{border-top-right-radius:99px}.rounded-br-99px{border-bottom-right-radius:99px}.rounded-bl-99px{border-bottom-left-radius:99px}.rounded-99-percentage{border-radius:99%}.gap-99{gap:99px}.gap-x-99{-moz-column-gap:99px;column-gap:99px}.gap-y-99{row-gap:99px}.top-99{top:99px}.right-99{right:99px}.bottom-99{bottom:99px}.left-99{left:99px}.z-99{z-index:99}.ma-100px{margin:100px}.mt-100px{margin-top:100px}.mr-100px{margin-right:100px}.mb-100px{margin-bottom:100px}.ml-100px,.mx-100px{margin-left:100px}.mx-100px{margin-right:100px}.my-100px{margin-top:100px;margin-bottom:100px}.pa-100px{padding:100px}.pt-100px{padding-top:100px}.pr-100px{padding-right:100px}.pb-100px{padding-bottom:100px}.pl-100px,.px-100px{padding-left:100px}.px-100px{padding-right:100px}.py-100px{padding-top:100px;padding-bottom:100px}.w-100px{width:100px}.h-100px{height:100px}.w-100-percentage{width:100%}.h-100-percentage{height:100%}.min-w-100px{min-width:100px}.min-h-100px{min-height:100px}.max-w-100px{max-width:100px}.max-h-100px{max-height:100px}.font-100px{font-size:100px!important}.lh-100px{line-height:100px}.lh-100-percentage{line-height:100%}.border-100px{border-width:100px}.border-t-100px{border-top-width:100px}.border-r-100px{border-right-width:100px}.border-b-100px{border-bottom-width:100px}.border-l-100px{border-left-width:100px}.rounded-100px{border-radius:100px}.rounded-t-100px{border-top-left-radius:100px;border-top-right-radius:100px}.rounded-r-100px{border-top-right-radius:100px;border-bottom-right-radius:100px}.rounded-b-100px{border-bottom-left-radius:100px;border-bottom-right-radius:100px}.rounded-l-100px{border-bottom-left-radius:100px}.rounded-l-100px,.rounded-tl-100px{border-top-left-radius:100px}.rounded-tr-100px{border-top-right-radius:100px}.rounded-br-100px{border-bottom-right-radius:100px}.rounded-bl-100px{border-bottom-left-radius:100px}.rounded-100-percentage{border-radius:100%}.gap-100{gap:100px}.gap-x-100{-moz-column-gap:100px;column-gap:100px}.gap-y-100{row-gap:100px}.top-100{top:100px}.right-100{right:100px}.bottom-100{bottom:100px}.left-100{left:100px}.z-100{z-index:100}.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}.position-static{position:static}.position-fixed{position:fixed}.position-absolute{position:absolute}.position-relative{position:relative}.position-sticky{position:sticky}.opacity-0{opacity:0}.opacity-5{opacity:.05}.opacity-10{opacity:.1}.opacity-15{opacity:.15}.opacity-20{opacity:.2}.opacity-25{opacity:.25}.opacity-30{opacity:.3}.opacity-35{opacity:.35}.opacity-40{opacity:.4}.opacity-45{opacity:.45}.opacity-50{opacity:.5}.opacity-55{opacity:.55}.opacity-60{opacity:.6}.opacity-65{opacity:.65}.opacity-70{opacity:.7}.opacity-75{opacity:.75}.opacity-80{opacity:.8}.opacity-85{opacity:.85}.opacity-90{opacity:.9}.opacity-95{opacity:.95}.opacity-100{opacity:1}.shadow-none{box-shadow:none!important}.shadow-sm{box-shadow:0 1px 2px 0 rgba(0,0,0,.05)!important}.shadow{box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)!important}.shadow-md{box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)!important}.shadow-lg{box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)!important}.shadow-xl{box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04)!important}.shadow-2xl{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)!important}.cursor-auto{cursor:auto}.cursor-default{cursor:default}.cursor-pointer{cursor:pointer!important}.cursor-wait{cursor:wait}.cursor-text{cursor:text}.cursor-not-allowed{cursor:not-allowed}:-webkit-autofill,:-webkit-autofill:active,:-webkit-autofill:focus,:-webkit-autofill:hover{-webkit-background-clip:text!important;box-shadow:none!important}.border-solid{border-style:solid!important}.border-grey-05{border-color:var(--grey-05)!important}.border-grey-15{border-color:var(--grey-15)!important}.search-input-field{max-width:300px!important;background-color:#fff!important;border-radius:16px!important}.search-input-field .v-input__slot fieldset{border:1px solid var(--primary-purple)!important}.search-input-field .v-input__slot:hover fieldset{color:var(--primary-purple)!important}.search-input-field.v-input--is-focused fieldset{border:2px solid var(--primary-purple)!important}.search-input-field.v-input--is-focused .v-icon{color:var(--primary-purple)!important}@media screen and (max-width:600px){.search-input-field{width:100%!important;min-width:100%!important;max-width:100%!important}}.custom-data-table .v-data-table__wrapper{border:1px solid #000!important;overflow:auto!important;scrollbar-width:thin;scrollbar-color:#999 #f1f1f1}.custom-data-table .v-data-table__wrapper::-webkit-scrollbar{height:6px;width:6px}.custom-data-table .v-data-table__wrapper::-webkit-scrollbar-track{background:#f1f1f1}.custom-data-table .v-data-table__wrapper::-webkit-scrollbar-thumb{background-color:#999;border-radius:4px}.custom-data-table .v-data-table__wrapper::-webkit-scrollbar-thumb:hover{background-color:#666}.custom-data-table thead tr th>div .primary{background-color:var(--grey-23)!important;border-color:#000!important}.custom-data-table thead tr:not(.v-data-table__progress),.custom-data-table thead tr:not(.v-data-table__progress) th{background-color:var(--grey-15)!important;height:50px!important;min-height:50px!important;white-space:nowrap!important}.custom-data-table thead tr:not(.v-data-table__progress) span,.custom-data-table thead tr:not(.v-data-table__progress) th span{font-size:16px!important;color:#000!important;font-weight:700!important;white-space:nowrap!important}.custom-data-table thead tr:not(.v-data-table__progress) th.sortable i:after,.custom-data-table thead tr:not(.v-data-table__progress) th.sortable i:before{color:#000!important;font-weight:700!important}.custom-data-table tbody,.custom-data-table tbody>tr:not(.v-data-table__empty-wrapper),.custom-data-table tbody>tr:not(.v-data-table__empty-wrapper)>td{border:thin solid #000!important;border-color:#000!important}.custom-data-table tbody>tr:not(.v-data-table__empty-wrapper)>td,.custom-data-table tbody>tr:not(.v-data-table__empty-wrapper)>td *{white-space:nowrap!important}.custom-data-table .v-data-footer{margin:0!important}.custom-data-table .v-data-footer .primary--text{color:var(--grey-23)!important}.custom-data-table .v-data-footer__pagination{margin:0 10px!important}.fixed-first-last-col table tr td:first-child,.fixed-first-last-col table tr th:first-child{position:sticky!important;left:0!important}.fixed-first-last-col table tr td:last-child,.fixed-first-last-col table tr th:last-child{position:sticky!important;right:0!important}.fixed-first-last-col table tr th:first-child,.fixed-first-last-col table tr th:last-child{z-index:3!important}.fixed-first-last-col table tr:nth-child(2n):not(.table-filters-row) td:first-child,.fixed-first-last-col table tr:nth-child(2n):not(.table-filters-row) td:last-child{z-index:2!important;background-image:url(data:image/png;base64,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)}.fixed-first-last-col table tr:nth-child(odd):not(.table-filters-row) td:first-child,.fixed-first-last-col table tr:nth-child(odd):not(.table-filters-row) td:last-child{z-index:2!important;background:#fff!important}.fixed-first-last-col table tr.table-filters-row:nth-child(odd) td:first-child,.fixed-first-last-col table tr.table-filters-row:nth-child(odd) td:last-child{z-index:2!important;background-image:url(data:image/png;base64,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)}.v-menu__content .v-list.v-select-list.v-sheet{padding:0!important}.v-menu__content .v-list.v-select-list.v-sheet .primary--text{color:var(--primary-purple)!important;caret-color:var(--primary-purple)!important}.v-menu__content .v-list.v-select-list.v-sheet .v-list-item{height:40px!important;min-height:40px!important}.new-table-class{background-color:transparent!important}.new-table-class .v-data-table__wrapper{border:1px solid #000!important;overflow:auto!important;scrollbar-width:thin;scrollbar-color:var(--primary-purple) #f1f1f1}.new-table-class .v-data-table__wrapper::-webkit-scrollbar{height:6px;width:6px}.new-table-class .v-data-table__wrapper::-webkit-scrollbar-track{background:#f1f1f1}.new-table-class .v-data-table__wrapper::-webkit-scrollbar-thumb{background-color:var(--primary-purple);border-radius:4px}.new-table-class .v-data-table__wrapper::-webkit-scrollbar-thumb:hover{background-color:#666}.new-table-class thead tr th:first-child{min-width:70px!important;max-width:70px!important;padding-right:4px!important}.new-table-class:not(.v-data-table--mobile) tbody tr td:last-child{padding-right:0!important;padding-left:0!important}.new-table-class .v-data-table__wrapper .v-data-table-header{height:32px!important}.new-table-class .v-data-table__wrapper .v-data-table-header th{background:var(--primary-purple)!important;color:#fff!important;font-size:14px!important}.new-table-class .v-data-table__wrapper{border-radius:12px!important;border:1px solid #f8f7f8!important;margin-bottom:12px!important;box-shadow:0 2px 4px rgba(0,0,0,.2)!important}.new-table-class .v-data-table__wrapper .v-data-table__progress .v-progress-linear__background,.new-table-class .v-data-table__wrapper .v-data-table__progress .v-progress-linear__buffer{background:var(--grey-05)!important}.new-table-class .v-data-table__wrapper .v-data-table__progress .v-progress-linear__indeterminate{background:var(--primary-purple)!important}.new-table-class tbody tr:hover{background-color:var(--tertiary-purple)!important;cursor:pointer}.new-table-class tbody tr:nth-child(odd):not(.table-filters-row){background-color:#fff!important}.new-table-class tbody tr:nth-child(odd):not(.table-filters-row):hover{background-color:var(--tertiary-purple)!important}.new-table-class tbody tr:nth-child(2n):not(.table-filters-row){background:var(--secondary-purple)!important}.new-table-class tbody tr.table-filters-row,.new-table-class tbody tr:nth-child(2n):not(.table-filters-row):hover{background-color:var(--tertiary-purple)!important}.new-table-class tbody tr td{border:none!important;transition:background-color .2s;height:32px!important;font-size:14px!important;border-bottom:1px solid #f8f7f8!important}.new-table-class .v-data-table-header .v-icon{color:#fff!important}.new-table-class .v-data-footer{background:none!important;font-size:16px;color:var(--primary-purple)!important;border-top:none!important;margin:0!important}.new-table-class .v-data-footer .v-data-footer__select{height:32px!important;font-size:14px!important}.new-table-class .v-data-footer .v-data-footer__pagination{font-size:14px!important}.new-table-class .v-data-footer .v-btn{background:var(--primary-purple)!important;color:#fff!important;border-radius:8px!important;min-width:36px;height:28px;margin:0 2px;font-weight:500;box-shadow:none!important}.new-table-class .v-data-footer .v-btn .v-icon{color:#fff!important}.new-table-class .v-data-footer .v-btn--active,.new-table-class .v-data-footer .v-btn:active{background:#4b2fcf!important;color:#fff!important}.new-table-class .v-data-footer .v-input,.new-table-class .v-data-footer .v-select{background:var(--primary-purple)!important;border-radius:8px!important;font-size:15px;color:#2d2d2d!important;margin-left:8px;margin-right:8px}.new-table-class .v-data-footer .v-select:not(.filter-input-field) .mdi-menu-down:before{font-size:16px!important;color:#fff!important}.new-table-class .v-data-footer .v-data-footer__select .v-select__selection{margin:7px 4px 7px 6px!important;color:#fff!important}.new-table-class .v-data-footer .v-data-footer__select .v-input__control>.v-input__slot:after,.new-table-class .v-data-footer .v-data-footer__select .v-input__control>.v-input__slot:before{border:none!important}.filter-input-field .v-input__control{min-height:24px!important;height:24px!important;border-radius:8px!important}.filter-input-field .v-input__slot{border:1px solid #e4e2e4!important}.first-two-last-col-fixed table tr td:first-child,.first-two-last-col-fixed table tr th:first-child{position:sticky!important;left:0!important}.first-two-last-col-fixed table tr td:nth-child(2),.first-two-last-col-fixed table tr th:nth-child(2){position:sticky!important;left:70px!important}.first-two-last-col-fixed table tr td:last-child,.first-two-last-col-fixed table tr th:last-child{position:sticky!important;right:0!important}.first-two-last-col-fixed table tr th:first-child,.first-two-last-col-fixed table tr th:last-child,.first-two-last-col-fixed table tr th:nth-child(2){z-index:3!important}.first-two-last-col-fixed table tr:nth-child(2n):not(.table-filters-row) td:first-child,.first-two-last-col-fixed table tr:nth-child(2n):not(.table-filters-row) td:last-child,.first-two-last-col-fixed table tr:nth-child(2n):not(.table-filters-row) td:nth-child(2){z-index:2!important;background-image:url(data:image/png;base64,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)}.first-two-last-col-fixed table tr:nth-child(odd):not(.table-filters-row) td:first-child,.first-two-last-col-fixed table tr:nth-child(odd):not(.table-filters-row) td:last-child,.first-two-last-col-fixed table tr:nth-child(odd):not(.table-filters-row) td:nth-child(2){z-index:2!important;background-color:#fff!important}.first-two-last-col-fixed table tr.table-filters-row:nth-child(odd) td:first-child,.first-two-last-col-fixed table tr.table-filters-row:nth-child(odd) td:last-child,.first-two-last-col-fixed table tr.table-filters-row:nth-child(odd) td:nth-child(2){z-index:2!important;background-image:url(data:image/png;base64,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)}.custom-btn-class{border-radius:16px!important;background-color:#fff!important}.custom-btn-class:not(.v-btn--disabled){border:1px solid var(--primary-purple)}.custom-btn-class:not(.v-btn--disabled) .v-btn__content{color:var(--primary-purple)!important}.custom-btn-class:hover{background-color:var(--primary-purple)!important}.custom-btn-class:hover .v-btn__content{color:#fff!important}.custom-select-field{max-width:200px!important;border-radius:16px!important;background-color:#fff!important}.custom-select-field .v-input__slot fieldset{border:1px solid var(--primary-purple)!important}.custom-select-field .v-input__slot:hover fieldset{color:var(--primary-purple)!important}.custom-select-field.v-input--is-focused fieldset{border:2px solid var(--primary-purple)!important}.custom-select-field.v-input--is-focused .v-icon{color:var(--primary-purple)!important}.custom-dialog,.custom-dialog-card{border-radius:12px!important}.custom-dialog-card{box-shadow:0 4px 24px rgba(44,44,84,.08),0 1.5px 6px rgba(44,44,84,.03)}.custom-cancel-btn{color:var(--primary-purple)!important;border-radius:16px!important;font-weight:500;transition:background .2s;text-transform:none!important;padding:0 12px!important}.custom-cancel-btn:hover{background:#f3e8ff!important}.custom-save-btn{background:var(--primary-purple)!important;color:#fff!important;font-weight:600;box-shadow:none;border-radius:16px!important;transition:background .2s;text-transform:none!important;padding:0 16px!important}.custom-save-btn:hover{background:#764ba2!important}.custom-input-field{background-color:#fff!important;border-radius:8px!important}.custom-input-field .v-input__slot{background:#fff!important}.custom-input-field .v-icon{font-size:16px!important}.custom-input-field .v-input__slot:hover fieldset{color:var(--primary-purple)!important}.custom-input-field.v-input--is-focused fieldset{border:2px solid var(--primary-purple)!important}.theme--light.v-btn-toggle:not(.v-btn-toggle--group) .v-btn.v-btn:not(.v-btn--active){border:1px solid var(--primary-purple)!important}.theme--light.v-btn-toggle:not(.v-btn-toggle--group) .v-btn{border-color:none!important}.fixed-first-last-col table tr td:first-child,.fixed-first-last-col table tr th:first-child{box-shadow:4px 0 12px -4px rgba(44,44,84,.15);background:#fff;z-index:4!important}.fixed-first-last-col table tr td:last-child,.fixed-first-last-col table tr th:last-child{box-shadow:-4px 0 12px -4px rgba(44,44,84,.15);background:#fff;z-index:4!important}.first-two-last-col-fixed table tr td:nth-child(2),.first-two-last-col-fixed table tr th:nth-child(2){box-shadow:4px 0 12px -4px rgba(44,44,84,.15);background:#fff;z-index:4!important}.first-two-last-col-fixed table tr td:last-child,.first-two-last-col-fixed table tr th:last-child{box-shadow:-4px 0 12px -4px rgba(44,44,84,.15);background:#fff;z-index:4!important}.new-table-class tbody .v-simple-checkbox .v-icon.mdi-checkbox-marked{color:var(--primary-purple)!important}.new-table-class .v-simple-checkbox .v-icon{font-size:20px!important}.new-table-class .v-data-table-header-mobile__wrapper .v-select__slot .v-label{color:#fff!important}.new-table-class.v-data-table--mobile .v-data-footer__pagination{margin:0 5px 0 12px!important}.new-table-class.v-data-table--mobile .v-data-footer__select{margin-left:0!important;margin-right:0!important}.new-table-class.v-data-table--mobile .v-data-footer__select .v-input.v-select{margin-left:25px!important}.new-table-class.v-data-table--mobile tbody .v-data-table__empty-wrapper{display:flex!important;flex-direction:row!important;align-items:center!important;justify-content:center!important}.new-table-class.v-data-table--mobile tbody .v-data-table__empty-wrapper td{line-height:2.2!important}.filter-input-field.v-input--dense .v-icon.mdi-close{font-size:14px!important;color:var(--v-primary-purple)!important;caret-color:var(--v-primary-purple)!important}.v-label .v-label--active .theme--light .primary--text{border-color:#8b1a29!important;box-shadow:0 0 0 1px #8b1a29!important}.headline{font-weight:700;text-align:center}.mb-3{margin-bottom:16px}.text-white{color:#fff!important}