diff --git a/pirulug/.gitignore b/pirulug/.gitignore new file mode 100644 index 0000000000..1ede1f883b --- /dev/null +++ b/pirulug/.gitignore @@ -0,0 +1,3 @@ +node_modules +package-lock.json +pnpm-lock.yaml \ No newline at end of file diff --git a/pirulug/LICENSE b/pirulug/LICENSE new file mode 100644 index 0000000000..b2111d566b --- /dev/null +++ b/pirulug/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 - 2026 pirulug + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/pirulug/README.es.md b/pirulug/README.es.md new file mode 100644 index 0000000000..1cae8caf09 --- /dev/null +++ b/pirulug/README.es.md @@ -0,0 +1,75 @@ +# Pirulug PMA Theme + +Un tema moderno y compacto en modos Dark y Light para phpMyAdmin, desarrollado con Bootstrap 5.3 y Sass. + +[English version (Ingles)](README.md) + +![Vista previa](screen.png) + +## Caracteristicas + +- **Modos Dark y Light:** Soporte nativo para alternancia de modos mediante variables CSS y el atributo `data-bs-theme`. +- **Tipografia Optimizada:** Tamano de fuente reducido (`0.875rem` / 14px base) para una densidad y legibilidad ideal en tablas de bases de datos. +- **Paleta de Color Pirulug:** Acento primario `#ff0055` con contrastes calibrados para interfaces claras y oscuras. +- **Iconografia Dinamica:** Soporte de iconos SVG adaptables automaticamente segun el modo de color activo. +- **Compatibilidad:** Compatible con phpMyAdmin 5.0, 5.1, 5.2 y 6.0. + +## Instalacion + +1. Clona o copia esta carpeta dentro del directorio de temas de tu instalacion de phpMyAdmin: + - En phpMyAdmin estandar: `phpMyAdmin/themes/pma-pirulug-theme` + - En Laragon u otras distribuciones con directorio publico: `etc/apps/phpMyAdmin/themes/pma-pirulug-theme` y `etc/apps/phpMyAdmin/public/themes/pma-pirulug-theme` +2. Abre phpMyAdmin en tu navegador. +3. Ve a **Configuracion** > **Tema** y selecciona **Pirulug**. + +## Desarrollo y Compilacion + +El tema utiliza Sass para compilar los estilos hacia CSS: + +### Requisitos +- Node.js (v16+) +- npm + +### Comandos disponibles + +```bash +# Instalar dependencias +npm install + +# Compilar SCSS a CSS (desarrollo) +npm run build + +# Compilar SCSS a CSS comprimido (produccion) +npm run build:compile + +# Modo observador (recompila automaticamente al guardar cambios) +npm run watch +``` + +## Estructura del Proyecto + +```text +pma-pirulug-theme/ +├── css/ # CSS compilado +├── img/ # Iconos e imagenes del tema +│ └── dark/ # Iconos especificos para modo oscuro +├── scss/ # Codigo fuente SCSS +│ ├── 0-functions/ # Funciones auxiliares +│ ├── 1-variables/ # Variables de color, fuentes y temas +│ ├── 2-mixins/ # Mixins reutilizables +│ ├── 3-components/ # Botones, tarjetas y dropdowns +│ ├── 4-layout/ # Estilos de navegacion, tablas, consola y layout +│ ├── 6-vendor/ # Estilos de librerias externas +│ ├── 7-hacks/ # Sobrescrituras y ajustes especificos +│ └── theme.scss # Archivo maestro SCSS +├── package.json # Scripts de compilacion y dependencias +├── theme.json # Metadatos del tema para phpMyAdmin +├── README.md # Documentacion en ingles +└── README.es.md # Documentacion en espanol +``` + +## Licencia + +Este proyecto esta bajo la Licencia MIT. Consulta el archivo [LICENSE](LICENSE) para mas detalles. + +**Autor:** Pirulug diff --git a/pirulug/README.md b/pirulug/README.md new file mode 100644 index 0000000000..f41c6fda12 --- /dev/null +++ b/pirulug/README.md @@ -0,0 +1,75 @@ +# Pirulug PMA Theme + +A modern, compact Dark and Light theme for phpMyAdmin built with Bootstrap 5.3 and Sass. + +[Spanish version (Espanol)](README.es.md) + +![Preview](screen.png) + +## Features + +- **Dark & Light Modes:** Native mode switching using CSS variables and the `data-bs-theme` attribute. +- **Optimized Typography:** Reduced base font size (`0.875rem` / 14px base) for dense, readable database tables and controls. +- **Pirulug Color Palette:** Distinctive `#ff0055` primary accent color with calibrated contrast across light and dark backgrounds. +- **Dynamic Iconography:** Automatic SVG icon adjustments based on the active color theme. +- **Compatibility:** Supports phpMyAdmin 5.0, 5.1, 5.2, and 6.0. + +## Installation + +1. Clone or copy this repository into your phpMyAdmin themes directory: + - Standard phpMyAdmin: `phpMyAdmin/themes/pma-pirulug-theme` + - Laragon or installations with a public directory: `etc/apps/phpMyAdmin/themes/pma-pirulug-theme` and `etc/apps/phpMyAdmin/public/themes/pma-pirulug-theme` +2. Open phpMyAdmin in your web browser. +3. Navigate to **Settings** > **Theme** and select **Pirulug**. + +## Development and Build + +This theme uses Sass to compile styles into CSS: + +### Requirements +- Node.js (v16+) +- npm + +### Available Commands + +```bash +# Install dependencies +npm install + +# Compile SCSS to CSS (development) +npm run build + +# Compile SCSS to compressed CSS (production) +npm run build:compile + +# Watch mode (automatically recompile on file changes) +npm run watch +``` + +## Project Structure + +```text +pma-pirulug-theme/ +├── css/ # Compiled CSS output +├── img/ # Theme icons and images +│ └── dark/ # Dark-mode specific icons +├── scss/ # SCSS source code +│ ├── 0-functions/ # Helper functions +│ ├── 1-variables/ # Color, font, and theme variables +│ ├── 2-mixins/ # Reusable mixins +│ ├── 3-components/ # Buttons, cards, and dropdowns +│ ├── 4-layout/ # Navigation, tables, console, and layouts +│ ├── 6-vendor/ # External vendor styles +│ ├── 7-hacks/ # Targeted overrides and adjustments +│ └── theme.scss # Master SCSS file +├── package.json # Build scripts and dependencies +├── theme.json # phpMyAdmin theme metadata +├── README.md # English documentation +└── README.es.md # Spanish documentation +``` + +## License + +This project is open source and available under the [MIT License](LICENSE). + +**Author:** Pirulug \ No newline at end of file diff --git a/pirulug/css/theme.css b/pirulug/css/theme.css new file mode 100644 index 0000000000..9d57349d0e --- /dev/null +++ b/pirulug/css/theme.css @@ -0,0 +1,17879 @@ +@charset "UTF-8"; +/*! + * Bootstrap v5.3.8 (https://getbootstrap.com/) + * Copyright 2011-2025 The Bootstrap Authors + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */ +:root, +[data-bs-theme=light] { + --bs-blue: #4361ee; + --bs-indigo: #6610f2; + --bs-purple: #6f42c1; + --bs-pink: #ff0055; + --bs-red: #de0e1c; + --bs-orange: #e2a03f; + --bs-yellow: #ffc107; + --bs-green: #00ab55; + --bs-teal: #20c997; + --bs-cyan: #2196f3; + --bs-black: #000; + --bs-white: #fff; + --bs-gray: #6c757d; + --bs-gray-dark: #343a40; + --bs-gray-100: #f8f9fa; + --bs-gray-200: #e9ecef; + --bs-gray-300: #dee2e6; + --bs-gray-400: #ced4da; + --bs-gray-500: #adb5bd; + --bs-gray-600: #6c757d; + --bs-gray-700: #495057; + --bs-gray-800: #343a40; + --bs-gray-900: #212529; + --bs-primary: #ff0055; + --bs-secondary: #6f42c1; + --bs-success: #00ab55; + --bs-info: #2196f3; + --bs-warning: #ffc107; + --bs-danger: #de0e1c; + --bs-light: #f8f9fa; + --bs-dark: #212529; + --bs-primary-rgb: 255, 0, 85; + --bs-secondary-rgb: 111, 66, 193; + --bs-success-rgb: 0, 171, 85; + --bs-info-rgb: 33, 150, 243; + --bs-warning-rgb: 255, 193, 7; + --bs-danger-rgb: 222, 14, 28; + --bs-light-rgb: 248, 249, 250; + --bs-dark-rgb: 33, 37, 41; + --bs-primary-text-emphasis: #660022; + --bs-secondary-text-emphasis: rgb(17.4117647059%, 10.3529411765%, 30.2745098039%); + --bs-success-text-emphasis: rgb(0%, 26.8235294118%, 13.3333333333%); + --bs-info-text-emphasis: rgb(5.1764705882%, 23.5294117647%, 38.1176470588%); + --bs-warning-text-emphasis: rgb(40%, 30.2745098039%, 1.0980392157%); + --bs-danger-text-emphasis: rgb(34.8235294118%, 2.1960784314%, 4.3921568627%); + --bs-light-text-emphasis: #495057; + --bs-dark-text-emphasis: #495057; + --bs-primary-bg-subtle: #ffccdd; + --bs-secondary-bg-subtle: #f8f9fa; + --bs-success-bg-subtle: rgb(80%, 93.4117647059%, 86.6666666667%); + --bs-info-bg-subtle: rgb(82.5882352941%, 91.7647058824%, 99.0588235294%); + --bs-warning-bg-subtle: rgb(100%, 95.137254902%, 80.5490196078%); + --bs-danger-bg-subtle: rgb(97.4117647059%, 81.0980392157%, 82.1960784314%); + --bs-light-bg-subtle: rgb(98.6274509804%, 98.8235294118%, 99.0196078431%); + --bs-dark-bg-subtle: #ced4da; + --bs-primary-border-subtle: #ff99bb; + --bs-secondary-border-subtle: #e9ecef; + --bs-success-border-subtle: rgb(60%, 86.8235294118%, 73.3333333333%); + --bs-info-border-subtle: rgb(65.1764705882%, 83.5294117647%, 98.1176470588%); + --bs-warning-border-subtle: rgb(100%, 90.2745098039%, 61.0980392157%); + --bs-danger-border-subtle: rgb(94.8235294118%, 62.1960784314%, 64.3921568627%); + --bs-light-border-subtle: #e9ecef; + --bs-dark-border-subtle: #adb5bd; + --bs-white-rgb: 255, 255, 255; + --bs-black-rgb: 0, 0, 0; + --bs-font-sans-serif: "Nunito", sans-serif; + --bs-font-monospace: "Fira Code", monospace; + --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)); + --bs-body-font-family: var(--bs-font-sans-serif); + --bs-body-font-size: 0.875rem; + --bs-body-font-weight: 400; + --bs-body-line-height: 1.5; + --bs-body-color: #212529; + --bs-body-color-rgb: 33, 37, 41; + --bs-body-bg: #fff; + --bs-body-bg-rgb: 255, 255, 255; + --bs-emphasis-color: #000; + --bs-emphasis-color-rgb: 0, 0, 0; + --bs-secondary-color: rgba(33, 37, 41, 0.75); + --bs-secondary-color-rgb: 33, 37, 41; + --bs-secondary-bg: #e9ecef; + --bs-secondary-bg-rgb: 233, 236, 239; + --bs-tertiary-color: rgba(33, 37, 41, 0.5); + --bs-tertiary-color-rgb: 33, 37, 41; + --bs-tertiary-bg: #f8f9fa; + --bs-tertiary-bg-rgb: 248, 249, 250; + --bs-heading-color: inherit; + --bs-link-color: #ff0055; + --bs-link-color-rgb: 255, 0, 85; + --bs-link-decoration: none; + --bs-link-hover-color: #cc0044; + --bs-link-hover-color-rgb: 204, 0, 68; + --bs-link-hover-decoration: underline; + --bs-code-color: #ff0055; + --bs-highlight-color: #212529; + --bs-highlight-bg: rgb(100%, 95.137254902%, 80.5490196078%); + --bs-border-width: 1px; + --bs-border-style: solid; + --bs-border-color: #dee2e6; + --bs-border-color-translucent: rgba(0, 0, 0, 0.175); + --bs-border-radius: 0.375rem; + --bs-border-radius-sm: 0.25rem; + --bs-border-radius-lg: 0.5rem; + --bs-border-radius-xl: 1rem; + --bs-border-radius-xxl: 2rem; + --bs-border-radius-2xl: var(--bs-border-radius-xxl); + --bs-border-radius-pill: 50rem; + --bs-box-shadow: 0 0.5rem 1rem rgba(var(--bs-body-color-rgb), 0.15); + --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(var(--bs-body-color-rgb), 0.075); + --bs-box-shadow-lg: 0 1rem 3rem rgba(var(--bs-body-color-rgb), 0.175); + --bs-box-shadow-inset: inset 0 1px 2px rgba(var(--bs-body-color-rgb), 0.075); + --bs-focus-ring-width: 0.25rem; + --bs-focus-ring-opacity: 0.25; + --bs-focus-ring-color: rgba(255, 0, 85, 0.25); + --bs-form-valid-color: #00ab55; + --bs-form-valid-border-color: #00ab55; + --bs-form-invalid-color: #de0e1c; + --bs-form-invalid-border-color: #de0e1c; +} + +[data-bs-theme=dark] { + color-scheme: dark; + --bs-body-color: #ced4da; + --bs-body-color-rgb: 206, 212, 218; + --bs-body-bg: #171717; + --bs-body-bg-rgb: 23, 23, 23; + --bs-emphasis-color: #fff; + --bs-emphasis-color-rgb: 255, 255, 255; + --bs-secondary-color: rgba(206, 212, 218, 0.75); + --bs-secondary-color-rgb: 206, 212, 218; + --bs-secondary-bg: #222222; + --bs-secondary-bg-rgb: 34, 34, 34; + --bs-tertiary-color: rgba(206, 212, 218, 0.5); + --bs-tertiary-color-rgb: 206, 212, 218; + --bs-tertiary-bg: #2b2b2b; + --bs-tertiary-bg-rgb: 43, 43, 43; + --bs-primary-text-emphasis: #ff6699; + --bs-secondary-text-emphasis: rgb(66.1176470588%, 55.5294117647%, 85.4117647059%); + --bs-success-text-emphasis: rgb(40%, 80.2352941176%, 60%); + --bs-info-text-emphasis: rgb(47.7647058824%, 75.2941176471%, 97.1764705882%); + --bs-warning-text-emphasis: rgb(100%, 85.4117647059%, 41.6470588235%); + --bs-danger-text-emphasis: rgb(92.2352941176%, 43.2941176471%, 46.5882352941%); + --bs-light-text-emphasis: #f8f9fa; + --bs-dark-text-emphasis: #dee2e6; + --bs-primary-bg-subtle: #330011; + --bs-secondary-bg-subtle: rgb(8.7058823529%, 5.1764705882%, 15.137254902%); + --bs-success-bg-subtle: rgb(0%, 13.4117647059%, 6.6666666667%); + --bs-info-bg-subtle: rgb(2.5882352941%, 11.7647058824%, 19.0588235294%); + --bs-warning-bg-subtle: rgb(20%, 15.137254902%, 0.5490196078%); + --bs-danger-bg-subtle: rgb(17.4117647059%, 1.0980392157%, 2.1960784314%); + --bs-light-bg-subtle: #343a40; + --bs-dark-bg-subtle: #1a1d20; + --bs-primary-border-subtle: #990033; + --bs-secondary-border-subtle: rgb(26.1176470588%, 15.5294117647%, 45.4117647059%); + --bs-success-border-subtle: rgb(0%, 40.2352941176%, 20%); + --bs-info-border-subtle: rgb(7.7647058824%, 35.2941176471%, 57.1764705882%); + --bs-warning-border-subtle: rgb(60%, 45.4117647059%, 1.6470588235%); + --bs-danger-border-subtle: rgb(52.2352941176%, 3.2941176471%, 6.5882352941%); + --bs-light-border-subtle: #495057; + --bs-dark-border-subtle: #343a40; + --bs-heading-color: inherit; + --bs-link-color: #ff6699; + --bs-link-hover-color: #ff99bb; + --bs-link-color-rgb: 255, 102, 153; + --bs-link-hover-color-rgb: 255, 153, 187; + --bs-code-color: rgb(47.7647058824%, 75.2941176471%, 97.1764705882%); + --bs-highlight-color: #ced4da; + --bs-highlight-bg: rgb(40%, 30.2745098039%, 1.0980392157%); + --bs-border-color: #495057; + --bs-border-color-translucent: rgba(255, 255, 255, 0.15); + --bs-form-valid-color: rgb(40%, 80.2352941176%, 60%); + --bs-form-valid-border-color: rgb(40%, 80.2352941176%, 60%); + --bs-form-invalid-color: rgb(92.2352941176%, 43.2941176471%, 46.5882352941%); + --bs-form-invalid-border-color: rgb(92.2352941176%, 43.2941176471%, 46.5882352941%); +} + +*, +*::before, +*::after { + box-sizing: border-box; +} + +@media (prefers-reduced-motion: no-preference) { + :root { + scroll-behavior: smooth; + } +} + +body { + margin: 0; + font-family: var(--bs-body-font-family); + font-size: var(--bs-body-font-size); + font-weight: var(--bs-body-font-weight); + line-height: var(--bs-body-line-height); + color: var(--bs-body-color); + text-align: var(--bs-body-text-align); + background-color: var(--bs-body-bg); + -webkit-text-size-adjust: 100%; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); +} + +hr { + margin: 1rem 0; + color: inherit; + border: 0; + border-top: var(--bs-border-width) solid; + opacity: 0.25; +} + +h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 { + margin-top: 0; + margin-bottom: 0.5rem; + font-weight: 500; + line-height: 1.2; + color: var(--bs-heading-color); +} + +h1, .h1 { + font-size: calc(1.30875rem + 0.705vw); +} +@media (min-width: 1200px) { + h1, .h1 { + font-size: 1.8375rem; + } +} + +h2, .h2 { + font-size: calc(1.278125rem + 0.3375vw); +} +@media (min-width: 1200px) { + h2, .h2 { + font-size: 1.53125rem; + } +} + +h3, .h3 { + font-size: calc(1.25625rem + 0.075vw); +} +@media (min-width: 1200px) { + h3, .h3 { + font-size: 1.3125rem; + } +} + +h4, .h4 { + font-size: 1.1375rem; +} + +h5, .h5 { + font-size: 1.00625rem; +} + +h6, .h6 { + font-size: 0.875rem; +} + +p { + margin-top: 0; + margin-bottom: 1rem; +} + +abbr[title] { + text-decoration: underline dotted; + cursor: help; + text-decoration-skip-ink: none; +} + +address { + margin-bottom: 1rem; + font-style: normal; + line-height: inherit; +} + +ol, +ul { + padding-left: 2rem; +} + +ol, +ul, +dl { + margin-top: 0; + margin-bottom: 1rem; +} + +ol ol, +ul ul, +ol ul, +ul ol { + margin-bottom: 0; +} + +dt { + font-weight: 700; +} + +dd { + margin-bottom: 0.5rem; + margin-left: 0; +} + +blockquote { + margin: 0 0 1rem; +} + +b, +strong { + font-weight: bolder; +} + +small, .small { + font-size: 0.875em; +} + +mark, .mark { + padding: 0.1875em; + color: var(--bs-highlight-color); + background-color: var(--bs-highlight-bg); +} + +sub, +sup { + position: relative; + font-size: 0.75em; + line-height: 0; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +a { + color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1)); + text-decoration: none; +} +a:hover { + --bs-link-color-rgb: var(--bs-link-hover-color-rgb); + text-decoration: underline; +} + +a:not([href]):not([class]), a:not([href]):not([class]):hover { + color: inherit; + text-decoration: none; +} + +pre, +code, +kbd, +samp { + font-family: var(--bs-font-monospace); + font-size: 1em; +} + +pre { + display: block; + margin-top: 0; + margin-bottom: 1rem; + overflow: auto; + font-size: 0.875em; +} +pre code { + font-size: inherit; + color: inherit; + word-break: normal; +} + +code { + font-size: 0.875em; + color: var(--bs-code-color); + word-wrap: break-word; +} +a > code { + color: inherit; +} + +kbd { + padding: 0.1875rem 0.375rem; + font-size: 0.875em; + color: var(--bs-body-bg); + background-color: var(--bs-body-color); + border-radius: 0.25rem; +} +kbd kbd { + padding: 0; + font-size: 1em; +} + +figure { + margin: 0 0 1rem; +} + +img, +svg { + vertical-align: middle; +} + +table { + caption-side: bottom; + border-collapse: collapse; +} + +caption { + padding-top: 0.5rem; + padding-bottom: 0.5rem; + color: var(--bs-secondary-color); + text-align: left; +} + +th { + text-align: inherit; + text-align: -webkit-match-parent; +} + +thead, +tbody, +tfoot, +tr, +td, +th { + border-color: inherit; + border-style: solid; + border-width: 0; +} + +label { + display: inline-block; +} + +button { + border-radius: 0; +} + +button:focus:not(:focus-visible) { + outline: 0; +} + +input, +button, +select, +optgroup, +textarea { + margin: 0; + font-family: inherit; + font-size: inherit; + line-height: inherit; +} + +button, +select { + text-transform: none; +} + +[role=button] { + cursor: pointer; +} + +select { + word-wrap: normal; +} +select:disabled { + opacity: 1; +} + +[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator { + display: none !important; +} + +button, +[type=button], +[type=reset], +[type=submit] { + -webkit-appearance: button; +} +button:not(:disabled), +[type=button]:not(:disabled), +[type=reset]:not(:disabled), +[type=submit]:not(:disabled) { + cursor: pointer; +} + +::-moz-focus-inner { + padding: 0; + border-style: none; +} + +textarea { + resize: vertical; +} + +fieldset { + min-width: 0; + padding: 0; + margin: 0; + border: 0; +} + +legend { + float: left; + width: 100%; + padding: 0; + margin-bottom: 0.5rem; + line-height: inherit; + font-size: calc(1.275rem + 0.3vw); +} +@media (min-width: 1200px) { + legend { + font-size: 1.5rem; + } +} +legend + * { + clear: left; +} + +::-webkit-datetime-edit-fields-wrapper, +::-webkit-datetime-edit-text, +::-webkit-datetime-edit-minute, +::-webkit-datetime-edit-hour-field, +::-webkit-datetime-edit-day-field, +::-webkit-datetime-edit-month-field, +::-webkit-datetime-edit-year-field { + padding: 0; +} + +::-webkit-inner-spin-button { + height: auto; +} + +[type=search] { + -webkit-appearance: textfield; + outline-offset: -2px; +} +[type=search]::-webkit-search-cancel-button { + cursor: pointer; + filter: grayscale(1); +} + +/* rtl:raw: +[type="tel"], +[type="url"], +[type="email"], +[type="number"] { + direction: ltr; +} +*/ +::-webkit-search-decoration { + -webkit-appearance: none; +} + +::-webkit-color-swatch-wrapper { + padding: 0; +} + +::file-selector-button { + font: inherit; + -webkit-appearance: button; +} + +output { + display: inline-block; +} + +iframe { + border: 0; +} + +summary { + display: list-item; + cursor: pointer; +} + +progress { + vertical-align: baseline; +} + +[hidden] { + display: none !important; +} + +.lead { + font-size: 1.09375rem; + font-weight: 300; +} + +.display-1 { + font-weight: 300; + line-height: 1.2; + font-size: calc(1.625rem + 4.5vw); +} +@media (min-width: 1200px) { + .display-1 { + font-size: 5rem; + } +} + +.display-2 { + font-weight: 300; + line-height: 1.2; + font-size: calc(1.575rem + 3.9vw); +} +@media (min-width: 1200px) { + .display-2 { + font-size: 4.5rem; + } +} + +.display-3 { + font-weight: 300; + line-height: 1.2; + font-size: calc(1.525rem + 3.3vw); +} +@media (min-width: 1200px) { + .display-3 { + font-size: 4rem; + } +} + +.display-4 { + font-weight: 300; + line-height: 1.2; + font-size: calc(1.475rem + 2.7vw); +} +@media (min-width: 1200px) { + .display-4 { + font-size: 3.5rem; + } +} + +.display-5 { + font-weight: 300; + line-height: 1.2; + font-size: calc(1.425rem + 2.1vw); +} +@media (min-width: 1200px) { + .display-5 { + font-size: 3rem; + } +} + +.display-6 { + font-weight: 300; + line-height: 1.2; + font-size: calc(1.375rem + 1.5vw); +} +@media (min-width: 1200px) { + .display-6 { + font-size: 2.5rem; + } +} + +.list-unstyled { + padding-left: 0; + list-style: none; +} + +.list-inline { + padding-left: 0; + list-style: none; +} + +.list-inline-item { + display: inline-block; +} +.list-inline-item:not(:last-child) { + margin-right: 0.5rem; +} + +.initialism { + font-size: 0.875em; + text-transform: uppercase; +} + +.blockquote { + margin-bottom: 1rem; + font-size: 1.09375rem; +} +.blockquote > :last-child { + margin-bottom: 0; +} + +.blockquote-footer { + margin-top: -1rem; + margin-bottom: 1rem; + font-size: 0.875em; + color: #6c757d; +} +.blockquote-footer::before { + content: "— "; +} + +.img-fluid { + max-width: 100%; + height: auto; +} + +.img-thumbnail { + padding: 0.25rem; + background-color: var(--bs-body-bg); + border: var(--bs-border-width) solid var(--bs-border-color); + border-radius: var(--bs-border-radius); + max-width: 100%; + height: auto; +} + +.figure { + display: inline-block; +} + +.figure-img { + margin-bottom: 0.5rem; + line-height: 1; +} + +.figure-caption { + font-size: 0.875em; + color: var(--bs-secondary-color); +} + +.container, +.container-fluid, +.container-xxl, +.container-xl, +.container-lg, +.container-md, +.container-sm { + --bs-gutter-x: 1.5rem; + --bs-gutter-y: 0; + width: 100%; + padding-right: calc(var(--bs-gutter-x) * 0.5); + padding-left: calc(var(--bs-gutter-x) * 0.5); + margin-right: auto; + margin-left: auto; +} + +@media (min-width: 576px) { + .container-sm, .container { + max-width: 540px; + } +} +@media (min-width: 768px) { + .container-md, .container-sm, .container { + max-width: 720px; + } +} +@media (min-width: 992px) { + .container-lg, .container-md, .container-sm, .container { + max-width: 960px; + } +} +@media (min-width: 1200px) { + .container-xl, .container-lg, .container-md, .container-sm, .container { + max-width: 1140px; + } +} +@media (min-width: 1400px) { + .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container { + max-width: 1320px; + } +} +:root { + --bs-breakpoint-xs: 0; + --bs-breakpoint-sm: 576px; + --bs-breakpoint-md: 768px; + --bs-breakpoint-lg: 992px; + --bs-breakpoint-xl: 1200px; + --bs-breakpoint-xxl: 1400px; +} + +.row { + --bs-gutter-x: 1.5rem; + --bs-gutter-y: 0; + display: flex; + flex-wrap: wrap; + margin-top: calc(-1 * var(--bs-gutter-y)); + margin-right: calc(-0.5 * var(--bs-gutter-x)); + margin-left: calc(-0.5 * var(--bs-gutter-x)); +} +.row > * { + flex-shrink: 0; + width: 100%; + max-width: 100%; + padding-right: calc(var(--bs-gutter-x) * 0.5); + padding-left: calc(var(--bs-gutter-x) * 0.5); + margin-top: var(--bs-gutter-y); +} + +.col { + flex: 1 0 0; +} + +.row-cols-auto > * { + flex: 0 0 auto; + width: auto; +} + +.row-cols-1 > * { + flex: 0 0 auto; + width: 100%; +} + +.row-cols-2 > * { + flex: 0 0 auto; + width: 50%; +} + +.row-cols-3 > * { + flex: 0 0 auto; + width: 33.33333333%; +} + +.row-cols-4 > * { + flex: 0 0 auto; + width: 25%; +} + +.row-cols-5 > * { + flex: 0 0 auto; + width: 20%; +} + +.row-cols-6 > * { + flex: 0 0 auto; + width: 16.66666667%; +} + +.col-auto { + flex: 0 0 auto; + width: auto; +} + +.col-1 { + flex: 0 0 auto; + width: 8.33333333%; +} + +.col-2 { + flex: 0 0 auto; + width: 16.66666667%; +} + +.col-3 { + flex: 0 0 auto; + width: 25%; +} + +.col-4 { + flex: 0 0 auto; + width: 33.33333333%; +} + +.col-5 { + flex: 0 0 auto; + width: 41.66666667%; +} + +.col-6 { + flex: 0 0 auto; + width: 50%; +} + +.col-7 { + flex: 0 0 auto; + width: 58.33333333%; +} + +.col-8 { + flex: 0 0 auto; + width: 66.66666667%; +} + +.col-9 { + flex: 0 0 auto; + width: 75%; +} + +.col-10 { + flex: 0 0 auto; + width: 83.33333333%; +} + +.col-11 { + flex: 0 0 auto; + width: 91.66666667%; +} + +.col-12 { + flex: 0 0 auto; + width: 100%; +} + +.offset-1 { + margin-left: 8.33333333%; +} + +.offset-2 { + margin-left: 16.66666667%; +} + +.offset-3 { + margin-left: 25%; +} + +.offset-4 { + margin-left: 33.33333333%; +} + +.offset-5 { + margin-left: 41.66666667%; +} + +.offset-6 { + margin-left: 50%; +} + +.offset-7 { + margin-left: 58.33333333%; +} + +.offset-8 { + margin-left: 66.66666667%; +} + +.offset-9 { + margin-left: 75%; +} + +.offset-10 { + margin-left: 83.33333333%; +} + +.offset-11 { + margin-left: 91.66666667%; +} + +.g-0, +.gx-0 { + --bs-gutter-x: 0; +} + +.g-0, +.gy-0 { + --bs-gutter-y: 0; +} + +.g-1, +.gx-1 { + --bs-gutter-x: 0.25rem; +} + +.g-1, +.gy-1 { + --bs-gutter-y: 0.25rem; +} + +.g-2, +.gx-2 { + --bs-gutter-x: 0.5rem; +} + +.g-2, +.gy-2 { + --bs-gutter-y: 0.5rem; +} + +.g-3, +.gx-3 { + --bs-gutter-x: 1rem; +} + +.g-3, +.gy-3 { + --bs-gutter-y: 1rem; +} + +.g-4, +.gx-4 { + --bs-gutter-x: 1.5rem; +} + +.g-4, +.gy-4 { + --bs-gutter-y: 1.5rem; +} + +.g-5, +.gx-5 { + --bs-gutter-x: 3rem; +} + +.g-5, +.gy-5 { + --bs-gutter-y: 3rem; +} + +@media (min-width: 576px) { + .col-sm { + flex: 1 0 0; + } + .row-cols-sm-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-sm-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-sm-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-sm-3 > * { + flex: 0 0 auto; + width: 33.33333333%; + } + .row-cols-sm-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-sm-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-sm-6 > * { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-sm-auto { + flex: 0 0 auto; + width: auto; + } + .col-sm-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-sm-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-sm-3 { + flex: 0 0 auto; + width: 25%; + } + .col-sm-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-sm-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-sm-6 { + flex: 0 0 auto; + width: 50%; + } + .col-sm-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-sm-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-sm-9 { + flex: 0 0 auto; + width: 75%; + } + .col-sm-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-sm-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-sm-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-sm-0 { + margin-left: 0; + } + .offset-sm-1 { + margin-left: 8.33333333%; + } + .offset-sm-2 { + margin-left: 16.66666667%; + } + .offset-sm-3 { + margin-left: 25%; + } + .offset-sm-4 { + margin-left: 33.33333333%; + } + .offset-sm-5 { + margin-left: 41.66666667%; + } + .offset-sm-6 { + margin-left: 50%; + } + .offset-sm-7 { + margin-left: 58.33333333%; + } + .offset-sm-8 { + margin-left: 66.66666667%; + } + .offset-sm-9 { + margin-left: 75%; + } + .offset-sm-10 { + margin-left: 83.33333333%; + } + .offset-sm-11 { + margin-left: 91.66666667%; + } + .g-sm-0, + .gx-sm-0 { + --bs-gutter-x: 0; + } + .g-sm-0, + .gy-sm-0 { + --bs-gutter-y: 0; + } + .g-sm-1, + .gx-sm-1 { + --bs-gutter-x: 0.25rem; + } + .g-sm-1, + .gy-sm-1 { + --bs-gutter-y: 0.25rem; + } + .g-sm-2, + .gx-sm-2 { + --bs-gutter-x: 0.5rem; + } + .g-sm-2, + .gy-sm-2 { + --bs-gutter-y: 0.5rem; + } + .g-sm-3, + .gx-sm-3 { + --bs-gutter-x: 1rem; + } + .g-sm-3, + .gy-sm-3 { + --bs-gutter-y: 1rem; + } + .g-sm-4, + .gx-sm-4 { + --bs-gutter-x: 1.5rem; + } + .g-sm-4, + .gy-sm-4 { + --bs-gutter-y: 1.5rem; + } + .g-sm-5, + .gx-sm-5 { + --bs-gutter-x: 3rem; + } + .g-sm-5, + .gy-sm-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 768px) { + .col-md { + flex: 1 0 0; + } + .row-cols-md-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-md-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-md-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-md-3 > * { + flex: 0 0 auto; + width: 33.33333333%; + } + .row-cols-md-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-md-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-md-6 > * { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-md-auto { + flex: 0 0 auto; + width: auto; + } + .col-md-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-md-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-md-3 { + flex: 0 0 auto; + width: 25%; + } + .col-md-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-md-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-md-6 { + flex: 0 0 auto; + width: 50%; + } + .col-md-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-md-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-md-9 { + flex: 0 0 auto; + width: 75%; + } + .col-md-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-md-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-md-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-md-0 { + margin-left: 0; + } + .offset-md-1 { + margin-left: 8.33333333%; + } + .offset-md-2 { + margin-left: 16.66666667%; + } + .offset-md-3 { + margin-left: 25%; + } + .offset-md-4 { + margin-left: 33.33333333%; + } + .offset-md-5 { + margin-left: 41.66666667%; + } + .offset-md-6 { + margin-left: 50%; + } + .offset-md-7 { + margin-left: 58.33333333%; + } + .offset-md-8 { + margin-left: 66.66666667%; + } + .offset-md-9 { + margin-left: 75%; + } + .offset-md-10 { + margin-left: 83.33333333%; + } + .offset-md-11 { + margin-left: 91.66666667%; + } + .g-md-0, + .gx-md-0 { + --bs-gutter-x: 0; + } + .g-md-0, + .gy-md-0 { + --bs-gutter-y: 0; + } + .g-md-1, + .gx-md-1 { + --bs-gutter-x: 0.25rem; + } + .g-md-1, + .gy-md-1 { + --bs-gutter-y: 0.25rem; + } + .g-md-2, + .gx-md-2 { + --bs-gutter-x: 0.5rem; + } + .g-md-2, + .gy-md-2 { + --bs-gutter-y: 0.5rem; + } + .g-md-3, + .gx-md-3 { + --bs-gutter-x: 1rem; + } + .g-md-3, + .gy-md-3 { + --bs-gutter-y: 1rem; + } + .g-md-4, + .gx-md-4 { + --bs-gutter-x: 1.5rem; + } + .g-md-4, + .gy-md-4 { + --bs-gutter-y: 1.5rem; + } + .g-md-5, + .gx-md-5 { + --bs-gutter-x: 3rem; + } + .g-md-5, + .gy-md-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 992px) { + .col-lg { + flex: 1 0 0; + } + .row-cols-lg-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-lg-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-lg-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-lg-3 > * { + flex: 0 0 auto; + width: 33.33333333%; + } + .row-cols-lg-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-lg-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-lg-6 > * { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-lg-auto { + flex: 0 0 auto; + width: auto; + } + .col-lg-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-lg-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-lg-3 { + flex: 0 0 auto; + width: 25%; + } + .col-lg-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-lg-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-lg-6 { + flex: 0 0 auto; + width: 50%; + } + .col-lg-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-lg-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-lg-9 { + flex: 0 0 auto; + width: 75%; + } + .col-lg-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-lg-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-lg-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-lg-0 { + margin-left: 0; + } + .offset-lg-1 { + margin-left: 8.33333333%; + } + .offset-lg-2 { + margin-left: 16.66666667%; + } + .offset-lg-3 { + margin-left: 25%; + } + .offset-lg-4 { + margin-left: 33.33333333%; + } + .offset-lg-5 { + margin-left: 41.66666667%; + } + .offset-lg-6 { + margin-left: 50%; + } + .offset-lg-7 { + margin-left: 58.33333333%; + } + .offset-lg-8 { + margin-left: 66.66666667%; + } + .offset-lg-9 { + margin-left: 75%; + } + .offset-lg-10 { + margin-left: 83.33333333%; + } + .offset-lg-11 { + margin-left: 91.66666667%; + } + .g-lg-0, + .gx-lg-0 { + --bs-gutter-x: 0; + } + .g-lg-0, + .gy-lg-0 { + --bs-gutter-y: 0; + } + .g-lg-1, + .gx-lg-1 { + --bs-gutter-x: 0.25rem; + } + .g-lg-1, + .gy-lg-1 { + --bs-gutter-y: 0.25rem; + } + .g-lg-2, + .gx-lg-2 { + --bs-gutter-x: 0.5rem; + } + .g-lg-2, + .gy-lg-2 { + --bs-gutter-y: 0.5rem; + } + .g-lg-3, + .gx-lg-3 { + --bs-gutter-x: 1rem; + } + .g-lg-3, + .gy-lg-3 { + --bs-gutter-y: 1rem; + } + .g-lg-4, + .gx-lg-4 { + --bs-gutter-x: 1.5rem; + } + .g-lg-4, + .gy-lg-4 { + --bs-gutter-y: 1.5rem; + } + .g-lg-5, + .gx-lg-5 { + --bs-gutter-x: 3rem; + } + .g-lg-5, + .gy-lg-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 1200px) { + .col-xl { + flex: 1 0 0; + } + .row-cols-xl-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-xl-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-xl-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-xl-3 > * { + flex: 0 0 auto; + width: 33.33333333%; + } + .row-cols-xl-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-xl-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-xl-6 > * { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-xl-auto { + flex: 0 0 auto; + width: auto; + } + .col-xl-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-xl-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-xl-3 { + flex: 0 0 auto; + width: 25%; + } + .col-xl-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-xl-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-xl-6 { + flex: 0 0 auto; + width: 50%; + } + .col-xl-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-xl-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-xl-9 { + flex: 0 0 auto; + width: 75%; + } + .col-xl-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-xl-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-xl-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-xl-0 { + margin-left: 0; + } + .offset-xl-1 { + margin-left: 8.33333333%; + } + .offset-xl-2 { + margin-left: 16.66666667%; + } + .offset-xl-3 { + margin-left: 25%; + } + .offset-xl-4 { + margin-left: 33.33333333%; + } + .offset-xl-5 { + margin-left: 41.66666667%; + } + .offset-xl-6 { + margin-left: 50%; + } + .offset-xl-7 { + margin-left: 58.33333333%; + } + .offset-xl-8 { + margin-left: 66.66666667%; + } + .offset-xl-9 { + margin-left: 75%; + } + .offset-xl-10 { + margin-left: 83.33333333%; + } + .offset-xl-11 { + margin-left: 91.66666667%; + } + .g-xl-0, + .gx-xl-0 { + --bs-gutter-x: 0; + } + .g-xl-0, + .gy-xl-0 { + --bs-gutter-y: 0; + } + .g-xl-1, + .gx-xl-1 { + --bs-gutter-x: 0.25rem; + } + .g-xl-1, + .gy-xl-1 { + --bs-gutter-y: 0.25rem; + } + .g-xl-2, + .gx-xl-2 { + --bs-gutter-x: 0.5rem; + } + .g-xl-2, + .gy-xl-2 { + --bs-gutter-y: 0.5rem; + } + .g-xl-3, + .gx-xl-3 { + --bs-gutter-x: 1rem; + } + .g-xl-3, + .gy-xl-3 { + --bs-gutter-y: 1rem; + } + .g-xl-4, + .gx-xl-4 { + --bs-gutter-x: 1.5rem; + } + .g-xl-4, + .gy-xl-4 { + --bs-gutter-y: 1.5rem; + } + .g-xl-5, + .gx-xl-5 { + --bs-gutter-x: 3rem; + } + .g-xl-5, + .gy-xl-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 1400px) { + .col-xxl { + flex: 1 0 0; + } + .row-cols-xxl-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-xxl-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-xxl-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-xxl-3 > * { + flex: 0 0 auto; + width: 33.33333333%; + } + .row-cols-xxl-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-xxl-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-xxl-6 > * { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-xxl-auto { + flex: 0 0 auto; + width: auto; + } + .col-xxl-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-xxl-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-xxl-3 { + flex: 0 0 auto; + width: 25%; + } + .col-xxl-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-xxl-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-xxl-6 { + flex: 0 0 auto; + width: 50%; + } + .col-xxl-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-xxl-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-xxl-9 { + flex: 0 0 auto; + width: 75%; + } + .col-xxl-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-xxl-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-xxl-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-xxl-0 { + margin-left: 0; + } + .offset-xxl-1 { + margin-left: 8.33333333%; + } + .offset-xxl-2 { + margin-left: 16.66666667%; + } + .offset-xxl-3 { + margin-left: 25%; + } + .offset-xxl-4 { + margin-left: 33.33333333%; + } + .offset-xxl-5 { + margin-left: 41.66666667%; + } + .offset-xxl-6 { + margin-left: 50%; + } + .offset-xxl-7 { + margin-left: 58.33333333%; + } + .offset-xxl-8 { + margin-left: 66.66666667%; + } + .offset-xxl-9 { + margin-left: 75%; + } + .offset-xxl-10 { + margin-left: 83.33333333%; + } + .offset-xxl-11 { + margin-left: 91.66666667%; + } + .g-xxl-0, + .gx-xxl-0 { + --bs-gutter-x: 0; + } + .g-xxl-0, + .gy-xxl-0 { + --bs-gutter-y: 0; + } + .g-xxl-1, + .gx-xxl-1 { + --bs-gutter-x: 0.25rem; + } + .g-xxl-1, + .gy-xxl-1 { + --bs-gutter-y: 0.25rem; + } + .g-xxl-2, + .gx-xxl-2 { + --bs-gutter-x: 0.5rem; + } + .g-xxl-2, + .gy-xxl-2 { + --bs-gutter-y: 0.5rem; + } + .g-xxl-3, + .gx-xxl-3 { + --bs-gutter-x: 1rem; + } + .g-xxl-3, + .gy-xxl-3 { + --bs-gutter-y: 1rem; + } + .g-xxl-4, + .gx-xxl-4 { + --bs-gutter-x: 1.5rem; + } + .g-xxl-4, + .gy-xxl-4 { + --bs-gutter-y: 1.5rem; + } + .g-xxl-5, + .gx-xxl-5 { + --bs-gutter-x: 3rem; + } + .g-xxl-5, + .gy-xxl-5 { + --bs-gutter-y: 3rem; + } +} +.table { + --bs-table-color-type: initial; + --bs-table-bg-type: initial; + --bs-table-color-state: initial; + --bs-table-bg-state: initial; + --bs-table-color: var(--bs-body-color); + --bs-table-bg: var(--bs-body-bg); + --bs-table-border-color: var(--bs-border-color); + --bs-table-accent-bg: var(--bs-body-bg); + --bs-table-striped-color: var(--bs-body-color); + --bs-table-striped-bg: rgba(255, 0, 85, 0.05); + --bs-table-active-color: var(--bs-body-color); + --bs-table-active-bg: rgba(255, 0, 85, 0.1); + --bs-table-hover-color: var(--bs-body-color); + --bs-table-hover-bg: rgba(255, 0, 85, 0.075); + width: 100%; + margin-bottom: 1rem; + vertical-align: top; + border-color: var(--bs-table-border-color); +} +.table > :not(caption) > * > * { + padding: 0.5rem 0.5rem; + color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color))); + background-color: var(--bs-table-bg); + border-bottom-width: var(--bs-border-width); + box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg))); +} +.table > tbody { + vertical-align: inherit; +} +.table > thead { + vertical-align: bottom; +} + +.table-group-divider { + border-top: calc(var(--bs-border-width) * 2) solid currentcolor; +} + +.caption-top { + caption-side: top; +} + +.table-sm > :not(caption) > * > * { + padding: 0.25rem 0.25rem; +} + +.table-bordered > :not(caption) > * { + border-width: var(--bs-border-width) 0; +} +.table-bordered > :not(caption) > * > * { + border-width: 0 var(--bs-border-width); +} + +.table-borderless > :not(caption) > * > * { + border-bottom-width: 0; +} +.table-borderless > :not(:first-child) { + border-top-width: 0; +} + +.table-striped > tbody > tr:nth-of-type(odd) > * { + --bs-table-color-type: var(--bs-table-striped-color); + --bs-table-bg-type: var(--bs-table-striped-bg); +} + +.table-striped-columns > :not(caption) > tr > :nth-child(even) { + --bs-table-color-type: var(--bs-table-striped-color); + --bs-table-bg-type: var(--bs-table-striped-bg); +} + +.table-active { + --bs-table-color-state: var(--bs-table-active-color); + --bs-table-bg-state: var(--bs-table-active-bg); +} + +.table-hover > tbody > tr:hover > * { + --bs-table-color-state: var(--bs-table-hover-color); + --bs-table-bg-state: var(--bs-table-hover-bg); +} + +.table-primary { + --bs-table-color: #000; + --bs-table-bg: #ffccdd; + --bs-table-border-color: rgb(90%, 72%, 78%); + --bs-table-striped-bg: rgb(95%, 76%, 82.3333333333%); + --bs-table-striped-color: #000; + --bs-table-active-bg: rgb(90%, 72%, 78%); + --bs-table-active-color: #000; + --bs-table-hover-bg: rgb(92.5%, 74%, 80.1666666667%); + --bs-table-hover-color: #000; + color: var(--bs-table-color); + border-color: var(--bs-table-border-color); +} + +.table-secondary { + --bs-table-color: #000; + --bs-table-bg: rgb(88.7058823529%, 85.1764705882%, 95.137254902%); + --bs-table-border-color: rgb(79.8352941176%, 76.6588235294%, 85.6235294118%); + --bs-table-striped-bg: rgb(84.2705882353%, 80.9176470588%, 90.3803921569%); + --bs-table-striped-color: #000; + --bs-table-active-bg: rgb(79.8352941176%, 76.6588235294%, 85.6235294118%); + --bs-table-active-color: #000; + --bs-table-hover-bg: rgb(82.0529411765%, 78.7882352941%, 88.0019607843%); + --bs-table-hover-color: #000; + color: var(--bs-table-color); + border-color: var(--bs-table-border-color); +} + +.table-success { + --bs-table-color: #000; + --bs-table-bg: rgb(80%, 93.4117647059%, 86.6666666667%); + --bs-table-border-color: rgb(72%, 84.0705882353%, 78%); + --bs-table-striped-bg: rgb(76%, 88.7411764706%, 82.3333333333%); + --bs-table-striped-color: #000; + --bs-table-active-bg: rgb(72%, 84.0705882353%, 78%); + --bs-table-active-color: #000; + --bs-table-hover-bg: rgb(74%, 86.4058823529%, 80.1666666667%); + --bs-table-hover-color: #000; + color: var(--bs-table-color); + border-color: var(--bs-table-border-color); +} + +.table-info { + --bs-table-color: #000; + --bs-table-bg: rgb(82.5882352941%, 91.7647058824%, 99.0588235294%); + --bs-table-border-color: rgb(74.3294117647%, 82.5882352941%, 89.1529411765%); + --bs-table-striped-bg: rgb(78.4588235294%, 87.1764705882%, 94.1058823529%); + --bs-table-striped-color: #000; + --bs-table-active-bg: rgb(74.3294117647%, 82.5882352941%, 89.1529411765%); + --bs-table-active-color: #000; + --bs-table-hover-bg: rgb(76.3941176471%, 84.8823529412%, 91.6294117647%); + --bs-table-hover-color: #000; + color: var(--bs-table-color); + border-color: var(--bs-table-border-color); +} + +.table-warning { + --bs-table-color: #000; + --bs-table-bg: rgb(100%, 95.137254902%, 80.5490196078%); + --bs-table-border-color: rgb(90%, 85.6235294118%, 72.4941176471%); + --bs-table-striped-bg: rgb(95%, 90.3803921569%, 76.5215686275%); + --bs-table-striped-color: #000; + --bs-table-active-bg: rgb(90%, 85.6235294118%, 72.4941176471%); + --bs-table-active-color: #000; + --bs-table-hover-bg: rgb(92.5%, 88.0019607843%, 74.5078431373%); + --bs-table-hover-color: #000; + color: var(--bs-table-color); + border-color: var(--bs-table-border-color); +} + +.table-danger { + --bs-table-color: #000; + --bs-table-bg: rgb(97.4117647059%, 81.0980392157%, 82.1960784314%); + --bs-table-border-color: rgb(87.6705882353%, 72.9882352941%, 73.9764705882%); + --bs-table-striped-bg: rgb(92.5411764706%, 77.0431372549%, 78.0862745098%); + --bs-table-striped-color: #000; + --bs-table-active-bg: rgb(87.6705882353%, 72.9882352941%, 73.9764705882%); + --bs-table-active-color: #000; + --bs-table-hover-bg: rgb(90.1058823529%, 75.0156862745%, 76.031372549%); + --bs-table-hover-color: #000; + color: var(--bs-table-color); + border-color: var(--bs-table-border-color); +} + +.table-light { + --bs-table-color: #000; + --bs-table-bg: #f8f9fa; + --bs-table-border-color: rgb(87.5294117647%, 87.8823529412%, 88.2352941176%); + --bs-table-striped-bg: rgb(92.3921568627%, 92.7647058824%, 93.137254902%); + --bs-table-striped-color: #000; + --bs-table-active-bg: rgb(87.5294117647%, 87.8823529412%, 88.2352941176%); + --bs-table-active-color: #000; + --bs-table-hover-bg: rgb(89.9607843137%, 90.3235294118%, 90.6862745098%); + --bs-table-hover-color: #000; + color: var(--bs-table-color); + border-color: var(--bs-table-border-color); +} + +.table-dark { + --bs-table-color: #fff; + --bs-table-bg: #212529; + --bs-table-border-color: rgb(21.6470588235%, 23.0588235294%, 24.4705882353%); + --bs-table-striped-bg: rgb(17.2941176471%, 18.7843137255%, 20.2745098039%); + --bs-table-striped-color: #fff; + --bs-table-active-bg: rgb(21.6470588235%, 23.0588235294%, 24.4705882353%); + --bs-table-active-color: #fff; + --bs-table-hover-bg: rgb(19.4705882353%, 20.9215686275%, 22.3725490196%); + --bs-table-hover-color: #fff; + color: var(--bs-table-color); + border-color: var(--bs-table-border-color); +} + +.table-responsive { + overflow-x: auto; + -webkit-overflow-scrolling: touch; +} + +@media (max-width: 575.98px) { + .table-responsive-sm { + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } +} +@media (max-width: 767.98px) { + .table-responsive-md { + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } +} +@media (max-width: 991.98px) { + .table-responsive-lg { + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } +} +@media (max-width: 1199.98px) { + .table-responsive-xl { + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } +} +@media (max-width: 1399.98px) { + .table-responsive-xxl { + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } +} +.form-label { + margin-bottom: 0.5rem; +} + +.col-form-label { + padding-top: calc(0.375rem + var(--bs-border-width)); + padding-bottom: calc(0.375rem + var(--bs-border-width)); + margin-bottom: 0; + font-size: inherit; + line-height: 1.5; +} + +.col-form-label-lg { + padding-top: calc(0.5rem + var(--bs-border-width)); + padding-bottom: calc(0.5rem + var(--bs-border-width)); + font-size: 1.00625rem; +} + +.col-form-label-sm { + padding-top: calc(0.25rem + var(--bs-border-width)); + padding-bottom: calc(0.25rem + var(--bs-border-width)); + font-size: 0.74375rem; +} + +.form-text { + margin-top: 0.25rem; + font-size: 0.875em; + color: var(--bs-secondary-color); +} + +.form-control { + display: block; + width: 100%; + padding: 0.375rem 0.75rem; + font-size: 0.875rem; + font-weight: 400; + line-height: 1.5; + color: var(--bs-body-color); + appearance: none; + background-color: var(--bs-body-bg); + background-clip: padding-box; + border: var(--bs-border-width) solid var(--bs-border-color); + border-radius: var(--bs-border-radius); + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .form-control { + transition: none; + } +} +.form-control[type=file] { + overflow: hidden; +} +.form-control[type=file]:not(:disabled):not([readonly]) { + cursor: pointer; +} +.form-control:focus { + color: var(--bs-body-color); + background-color: var(--bs-body-bg); + border-color: rgb(100%, 50%, 66.6666666667%); + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(255, 0, 85, 0.25); +} +.form-control::-webkit-date-and-time-value { + min-width: 85px; + height: 1.5em; + margin: 0; +} +.form-control::-webkit-datetime-edit { + display: block; + padding: 0; +} +.form-control::placeholder { + color: var(--bs-secondary-color); + opacity: 1; +} +.form-control:disabled { + background-color: var(--bs-secondary-bg); + opacity: 1; +} +.form-control::file-selector-button { + padding: 0.375rem 0.75rem; + margin: -0.375rem -0.75rem; + margin-inline-end: 0.75rem; + color: var(--bs-body-color); + background-color: var(--bs-tertiary-bg); + pointer-events: none; + border-color: inherit; + border-style: solid; + border-width: 0; + border-inline-end-width: var(--bs-border-width); + border-radius: 0; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .form-control::file-selector-button { + transition: none; + } +} +.form-control:hover:not(:disabled):not([readonly])::file-selector-button { + background-color: var(--bs-secondary-bg); +} + +.form-control-plaintext { + display: block; + width: 100%; + padding: 0.375rem 0; + margin-bottom: 0; + line-height: 1.5; + color: var(--bs-body-color); + background-color: transparent; + border: solid transparent; + border-width: var(--bs-border-width) 0; +} +.form-control-plaintext:focus { + outline: 0; +} +.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg { + padding-right: 0; + padding-left: 0; +} + +.form-control-sm { + min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2)); + padding: 0.25rem 0.5rem; + font-size: 0.74375rem; + border-radius: var(--bs-border-radius-sm); +} +.form-control-sm::file-selector-button { + padding: 0.25rem 0.5rem; + margin: -0.25rem -0.5rem; + margin-inline-end: 0.5rem; +} + +.form-control-lg { + min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2)); + padding: 0.5rem 1rem; + font-size: 1.00625rem; + border-radius: var(--bs-border-radius-lg); +} +.form-control-lg::file-selector-button { + padding: 0.5rem 1rem; + margin: -0.5rem -1rem; + margin-inline-end: 1rem; +} + +textarea.form-control { + min-height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2)); +} +textarea.form-control-sm { + min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2)); +} +textarea.form-control-lg { + min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2)); +} + +.form-control-color { + width: 3rem; + height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2)); + padding: 0.375rem; +} +.form-control-color:not(:disabled):not([readonly]) { + cursor: pointer; +} +.form-control-color::-moz-color-swatch { + border: 0 !important; + border-radius: var(--bs-border-radius); +} +.form-control-color::-webkit-color-swatch { + border: 0 !important; + border-radius: var(--bs-border-radius); +} +.form-control-color.form-control-sm { + height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2)); +} +.form-control-color.form-control-lg { + height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2)); +} + +.form-select { + --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"); + display: block; + width: 100%; + padding: 0.375rem 2.25rem 0.375rem 0.75rem; + font-size: 0.875rem; + font-weight: 400; + line-height: 1.5; + color: var(--bs-body-color); + appearance: none; + background-color: var(--bs-body-bg); + background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none); + background-repeat: no-repeat; + background-position: right 0.75rem center; + background-size: 16px 12px; + border: var(--bs-border-width) solid var(--bs-border-color); + border-radius: var(--bs-border-radius); + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .form-select { + transition: none; + } +} +.form-select:focus { + border-color: rgb(100%, 50%, 66.6666666667%); + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(255, 0, 85, 0.25); +} +.form-select[multiple], .form-select[size]:not([size="1"]) { + padding-right: 0.75rem; + background-image: none; +} +.form-select:disabled { + background-color: var(--bs-secondary-bg); +} +.form-select:-moz-focusring { + color: transparent; + text-shadow: 0 0 0 var(--bs-body-color); +} + +.form-select-sm { + padding-top: 0.25rem; + padding-bottom: 0.25rem; + padding-left: 0.5rem; + font-size: 0.74375rem; + border-radius: var(--bs-border-radius-sm); +} + +.form-select-lg { + padding-top: 0.5rem; + padding-bottom: 0.5rem; + padding-left: 1rem; + font-size: 1.00625rem; + border-radius: var(--bs-border-radius-lg); +} + +[data-bs-theme=dark] .form-select { + --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ced4da' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"); +} + +.form-check { + display: block; + min-height: 1.3125rem; + padding-left: 1.5em; + margin-bottom: 0.125rem; +} +.form-check .form-check-input { + float: left; + margin-left: -1.5em; +} + +.form-check-reverse { + padding-right: 1.5em; + padding-left: 0; + text-align: right; +} +.form-check-reverse .form-check-input { + float: right; + margin-right: -1.5em; + margin-left: 0; +} + +.form-check-input { + --bs-form-check-bg: var(--bs-body-bg); + flex-shrink: 0; + width: 1em; + height: 1em; + margin-top: 0.25em; + vertical-align: top; + appearance: none; + background-color: var(--bs-form-check-bg); + background-image: var(--bs-form-check-bg-image); + background-repeat: no-repeat; + background-position: center; + background-size: contain; + border: var(--bs-border-width) solid var(--bs-border-color); + print-color-adjust: exact; +} +.form-check-input[type=checkbox] { + border-radius: 0.25em; +} +.form-check-input[type=radio] { + border-radius: 50%; +} +.form-check-input:active { + filter: brightness(90%); +} +.form-check-input:focus { + border-color: rgb(100%, 50%, 66.6666666667%); + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(255, 0, 85, 0.25); +} +.form-check-input:checked { + background-color: #ff0055; + border-color: #ff0055; +} +.form-check-input:checked[type=checkbox] { + --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e"); +} +.form-check-input:checked[type=radio] { + --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e"); +} +.form-check-input[type=checkbox]:indeterminate { + background-color: #ff0055; + border-color: #ff0055; + --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e"); +} +.form-check-input:disabled { + pointer-events: none; + filter: none; + opacity: 0.5; +} +.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label { + cursor: default; + opacity: 0.5; +} + +.form-switch { + padding-left: 2.5em; +} +.form-switch .form-check-input { + --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e"); + width: 2em; + margin-left: -2.5em; + background-image: var(--bs-form-switch-bg); + background-position: left center; + border-radius: 2em; + transition: background-position 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .form-switch .form-check-input { + transition: none; + } +} +.form-switch .form-check-input:focus { + --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgb%28100%, 50%, 66.6666666667%%29'/%3e%3c/svg%3e"); +} +.form-switch .form-check-input:checked { + background-position: right center; + --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); +} +.form-switch.form-check-reverse { + padding-right: 2.5em; + padding-left: 0; +} +.form-switch.form-check-reverse .form-check-input { + margin-right: -2.5em; + margin-left: 0; +} + +.form-check-inline { + display: inline-block; + margin-right: 1rem; +} + +.btn-check { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none; +} +.btn-check[disabled] + .btn, [data-bs-theme=dark] .pma_quick_warp .btn-check[disabled] + .drop_button, .btn-check:disabled + .btn, [data-bs-theme=dark] .pma_quick_warp .btn-check:disabled + .drop_button { + pointer-events: none; + filter: none; + opacity: 0.65; +} + +[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus) { + --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e"); +} + +.form-range { + width: 100%; + height: 1.5rem; + padding: 0; + appearance: none; + background-color: transparent; +} +.form-range:focus { + outline: 0; +} +.form-range:focus::-webkit-slider-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(255, 0, 85, 0.25); +} +.form-range:focus::-moz-range-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(255, 0, 85, 0.25); +} +.form-range::-moz-focus-outer { + border: 0; +} +.form-range::-webkit-slider-thumb { + width: 1rem; + height: 1rem; + margin-top: -0.25rem; + appearance: none; + background-color: #ff0055; + border: 0; + border-radius: 1rem; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .form-range::-webkit-slider-thumb { + transition: none; + } +} +.form-range::-webkit-slider-thumb:active { + background-color: rgb(100%, 70%, 80%); +} +.form-range::-webkit-slider-runnable-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: var(--bs-secondary-bg); + border-color: transparent; + border-radius: 1rem; +} +.form-range::-moz-range-thumb { + width: 1rem; + height: 1rem; + appearance: none; + background-color: #ff0055; + border: 0; + border-radius: 1rem; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .form-range::-moz-range-thumb { + transition: none; + } +} +.form-range::-moz-range-thumb:active { + background-color: rgb(100%, 70%, 80%); +} +.form-range::-moz-range-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: var(--bs-secondary-bg); + border-color: transparent; + border-radius: 1rem; +} +.form-range:disabled { + pointer-events: none; +} +.form-range:disabled::-webkit-slider-thumb { + background-color: var(--bs-secondary-color); +} +.form-range:disabled::-moz-range-thumb { + background-color: var(--bs-secondary-color); +} + +.form-floating { + position: relative; +} +.form-floating > .form-control, +.form-floating > .form-control-plaintext, +.form-floating > .form-select { + height: calc(3.5rem + calc(var(--bs-border-width) * 2)); + min-height: calc(3.5rem + calc(var(--bs-border-width) * 2)); + line-height: 1.25; +} +.form-floating > label { + position: absolute; + top: 0; + left: 0; + z-index: 2; + max-width: 100%; + height: 100%; + padding: 1rem 0.75rem; + overflow: hidden; + color: rgba(var(--bs-body-color-rgb), 0.65); + text-align: start; + text-overflow: ellipsis; + white-space: nowrap; + pointer-events: none; + border: var(--bs-border-width) solid transparent; + transform-origin: 0 0; + transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .form-floating > label { + transition: none; + } +} +.form-floating > .form-control, +.form-floating > .form-control-plaintext { + padding: 1rem 0.75rem; +} +.form-floating > .form-control::placeholder, +.form-floating > .form-control-plaintext::placeholder { + color: transparent; +} +.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown), +.form-floating > .form-control-plaintext:focus, +.form-floating > .form-control-plaintext:not(:placeholder-shown) { + padding-top: 1.625rem; + padding-bottom: 0.625rem; +} +.form-floating > .form-control:-webkit-autofill, +.form-floating > .form-control-plaintext:-webkit-autofill { + padding-top: 1.625rem; + padding-bottom: 0.625rem; +} +.form-floating > .form-select { + padding-top: 1.625rem; + padding-bottom: 0.625rem; + padding-left: 0.75rem; +} +.form-floating > .form-control:focus ~ label, +.form-floating > .form-control:not(:placeholder-shown) ~ label, +.form-floating > .form-control-plaintext ~ label, +.form-floating > .form-select ~ label { + transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); +} +.form-floating > .form-control:-webkit-autofill ~ label { + transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); +} +.form-floating > textarea:focus ~ label::after, +.form-floating > textarea:not(:placeholder-shown) ~ label::after { + position: absolute; + inset: 1rem 0.375rem; + z-index: -1; + height: 1.5em; + content: ""; + background-color: var(--bs-body-bg); + border-radius: var(--bs-border-radius); +} +.form-floating > textarea:disabled ~ label::after { + background-color: var(--bs-secondary-bg); +} +.form-floating > .form-control-plaintext ~ label { + border-width: var(--bs-border-width) 0; +} +.form-floating > :disabled ~ label, +.form-floating > .form-control:disabled ~ label { + color: #6c757d; +} + +.input-group { + position: relative; + display: flex; + flex-wrap: wrap; + align-items: stretch; + width: 100%; +} +.input-group > .form-control, +.input-group > .form-select, +.input-group > .form-floating { + position: relative; + flex: 1 1 auto; + width: 1%; + min-width: 0; +} +.input-group > .form-control:focus, +.input-group > .form-select:focus, +.input-group > .form-floating:focus-within { + z-index: 5; +} +.input-group .btn, .input-group [data-bs-theme=dark] .pma_quick_warp .drop_button, [data-bs-theme=dark] .pma_quick_warp .input-group .drop_button { + position: relative; + z-index: 2; +} +.input-group .btn:focus, .input-group [data-bs-theme=dark] .pma_quick_warp .drop_button:focus, [data-bs-theme=dark] .pma_quick_warp .input-group .drop_button:focus { + z-index: 5; +} + +.input-group-text { + display: flex; + align-items: center; + padding: 0.375rem 0.75rem; + font-size: 0.875rem; + font-weight: 400; + line-height: 1.5; + color: var(--bs-body-color); + text-align: center; + white-space: nowrap; + background-color: var(--bs-tertiary-bg); + border: var(--bs-border-width) solid var(--bs-border-color); + border-radius: var(--bs-border-radius); +} + +.input-group-lg > .form-control, +.input-group-lg > .form-select, +.input-group-lg > .input-group-text, +.input-group-lg > .btn, +[data-bs-theme=dark] .pma_quick_warp .input-group-lg > .drop_button { + padding: 0.5rem 1rem; + font-size: 1.00625rem; + border-radius: var(--bs-border-radius-lg); +} + +.input-group-sm > .form-control, +.input-group-sm > .form-select, +.input-group-sm > .input-group-text, +.input-group-sm > .btn, +[data-bs-theme=dark] .pma_quick_warp .input-group-sm > .drop_button { + padding: 0.25rem 0.5rem; + font-size: 0.74375rem; + border-radius: var(--bs-border-radius-sm); +} + +.input-group-lg > .form-select, +.input-group-sm > .form-select { + padding-right: 3rem; +} + +.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating), +.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3), +.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control, +.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} +.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating), +.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4), +.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control, +.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} +.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) { + margin-left: calc(-1 * var(--bs-border-width)); + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} +.input-group > .form-floating:not(:first-child) > .form-control, +.input-group > .form-floating:not(:first-child) > .form-select { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.valid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 0.875em; + color: var(--bs-form-valid-color); +} + +.valid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: 0.1rem; + font-size: 0.74375rem; + color: #fff; + background-color: var(--bs-success); + border-radius: var(--bs-border-radius); +} + +.was-validated :valid ~ .valid-feedback, +.was-validated :valid ~ .valid-tooltip, +.is-valid ~ .valid-feedback, +.is-valid ~ .valid-tooltip { + display: block; +} + +.was-validated .form-control:valid, .form-control.is-valid { + border-color: var(--bs-form-valid-border-color); + padding-right: calc(1.5em + 0.75rem); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2300ab55' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: right calc(0.375em + 0.1875rem) center; + background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} +.was-validated .form-control:valid:focus, .form-control.is-valid:focus { + border-color: var(--bs-form-valid-border-color); + box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25); +} + +.was-validated textarea.form-control:valid, textarea.form-control.is-valid { + padding-right: calc(1.5em + 0.75rem); + background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); +} + +.was-validated .form-select:valid, .form-select.is-valid { + border-color: var(--bs-form-valid-border-color); +} +.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] { + --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2300ab55' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e"); + padding-right: 4.125rem; + background-position: right 0.75rem center, center right 2.25rem; + background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} +.was-validated .form-select:valid:focus, .form-select.is-valid:focus { + border-color: var(--bs-form-valid-border-color); + box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25); +} + +.was-validated .form-control-color:valid, .form-control-color.is-valid { + width: calc(3rem + calc(1.5em + 0.75rem)); +} + +.was-validated .form-check-input:valid, .form-check-input.is-valid { + border-color: var(--bs-form-valid-border-color); +} +.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked { + background-color: var(--bs-form-valid-color); +} +.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus { + box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25); +} +.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { + color: var(--bs-form-valid-color); +} + +.form-check-inline .form-check-input ~ .valid-feedback { + margin-left: 0.5em; +} + +.was-validated .input-group > .form-control:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid, +.was-validated .input-group > .form-select:not(:focus):valid, +.input-group > .form-select:not(:focus).is-valid, +.was-validated .input-group > .form-floating:not(:focus-within):valid, +.input-group > .form-floating:not(:focus-within).is-valid { + z-index: 3; +} + +.invalid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 0.875em; + color: var(--bs-form-invalid-color); +} + +.invalid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: 0.1rem; + font-size: 0.74375rem; + color: #fff; + background-color: var(--bs-danger); + border-radius: var(--bs-border-radius); +} + +.was-validated :invalid ~ .invalid-feedback, +.was-validated :invalid ~ .invalid-tooltip, +.is-invalid ~ .invalid-feedback, +.is-invalid ~ .invalid-tooltip { + display: block; +} + +.was-validated .form-control:invalid, .form-control.is-invalid { + border-color: var(--bs-form-invalid-border-color); + padding-right: calc(1.5em + 0.75rem); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23de0e1c'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23de0e1c' stroke='none'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: right calc(0.375em + 0.1875rem) center; + background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} +.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus { + border-color: var(--bs-form-invalid-border-color); + box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25); +} + +.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid { + padding-right: calc(1.5em + 0.75rem); + background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); +} + +.was-validated .form-select:invalid, .form-select.is-invalid { + border-color: var(--bs-form-invalid-border-color); +} +.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] { + --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23de0e1c'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23de0e1c' stroke='none'/%3e%3c/svg%3e"); + padding-right: 4.125rem; + background-position: right 0.75rem center, center right 2.25rem; + background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} +.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus { + border-color: var(--bs-form-invalid-border-color); + box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25); +} + +.was-validated .form-control-color:invalid, .form-control-color.is-invalid { + width: calc(3rem + calc(1.5em + 0.75rem)); +} + +.was-validated .form-check-input:invalid, .form-check-input.is-invalid { + border-color: var(--bs-form-invalid-border-color); +} +.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked { + background-color: var(--bs-form-invalid-color); +} +.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus { + box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25); +} +.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { + color: var(--bs-form-invalid-color); +} + +.form-check-inline .form-check-input ~ .invalid-feedback { + margin-left: 0.5em; +} + +.was-validated .input-group > .form-control:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid, +.was-validated .input-group > .form-select:not(:focus):invalid, +.input-group > .form-select:not(:focus).is-invalid, +.was-validated .input-group > .form-floating:not(:focus-within):invalid, +.input-group > .form-floating:not(:focus-within).is-invalid { + z-index: 4; +} + +.btn, [data-bs-theme=dark] .pma_quick_warp .drop_button { + --bs-btn-padding-x: 0.75rem; + --bs-btn-padding-y: 0.375rem; + --bs-btn-font-family: ; + --bs-btn-font-size: 0.875rem; + --bs-btn-font-weight: 400; + --bs-btn-line-height: 1.5; + --bs-btn-color: var(--bs-body-color); + --bs-btn-bg: transparent; + --bs-btn-border-width: var(--bs-border-width); + --bs-btn-border-color: transparent; + --bs-btn-border-radius: var(--bs-border-radius); + --bs-btn-hover-border-color: transparent; + --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075); + --bs-btn-disabled-opacity: 0.65; + --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5); + display: inline-block; + padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x); + font-family: var(--bs-btn-font-family); + font-size: var(--bs-btn-font-size); + font-weight: var(--bs-btn-font-weight); + line-height: var(--bs-btn-line-height); + color: var(--bs-btn-color); + text-align: center; + vertical-align: middle; + cursor: pointer; + user-select: none; + border: var(--bs-btn-border-width) solid var(--bs-btn-border-color); + border-radius: var(--bs-btn-border-radius); + background-color: var(--bs-btn-bg); + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .btn, [data-bs-theme=dark] .pma_quick_warp .drop_button { + transition: none; + } +} +.btn:hover, [data-bs-theme=dark] .pma_quick_warp .drop_button:hover { + color: var(--bs-btn-hover-color); + text-decoration: none; + background-color: var(--bs-btn-hover-bg); + border-color: var(--bs-btn-hover-border-color); +} +.btn-check + .btn:hover, [data-bs-theme=dark] .pma_quick_warp .btn-check + .drop_button:hover { + color: var(--bs-btn-color); + background-color: var(--bs-btn-bg); + border-color: var(--bs-btn-border-color); +} +.btn:focus-visible, [data-bs-theme=dark] .pma_quick_warp .drop_button:focus-visible { + color: var(--bs-btn-hover-color); + background-color: var(--bs-btn-hover-bg); + border-color: var(--bs-btn-hover-border-color); + outline: 0; + box-shadow: var(--bs-btn-focus-box-shadow); +} +.btn-check:focus-visible + .btn, [data-bs-theme=dark] .pma_quick_warp .btn-check:focus-visible + .drop_button { + border-color: var(--bs-btn-hover-border-color); + outline: 0; + box-shadow: var(--bs-btn-focus-box-shadow); +} +.btn-check:checked + .btn, [data-bs-theme=dark] .pma_quick_warp .btn-check:checked + .drop_button, :not(.btn-check) + .btn:active, [data-bs-theme=dark] .pma_quick_warp :not(.btn-check) + .drop_button:active, .btn:first-child:active, [data-bs-theme=dark] .pma_quick_warp .drop_button:first-child:active, .btn.active, [data-bs-theme=dark] .pma_quick_warp .active.drop_button, .btn.show, [data-bs-theme=dark] .pma_quick_warp .show.drop_button { + color: var(--bs-btn-active-color); + background-color: var(--bs-btn-active-bg); + border-color: var(--bs-btn-active-border-color); +} +.btn-check:checked + .btn:focus-visible, [data-bs-theme=dark] .pma_quick_warp .btn-check:checked + .drop_button:focus-visible, :not(.btn-check) + .btn:active:focus-visible, [data-bs-theme=dark] .pma_quick_warp :not(.btn-check) + .drop_button:active:focus-visible, .btn:first-child:active:focus-visible, [data-bs-theme=dark] .pma_quick_warp .drop_button:first-child:active:focus-visible, .btn.active:focus-visible, [data-bs-theme=dark] .pma_quick_warp .active.drop_button:focus-visible, .btn.show:focus-visible, [data-bs-theme=dark] .pma_quick_warp .show.drop_button:focus-visible { + box-shadow: var(--bs-btn-focus-box-shadow); +} +.btn-check:checked:focus-visible + .btn, [data-bs-theme=dark] .pma_quick_warp .btn-check:checked:focus-visible + .drop_button { + box-shadow: var(--bs-btn-focus-box-shadow); +} +.btn:disabled, [data-bs-theme=dark] .pma_quick_warp .drop_button:disabled, .btn.disabled, [data-bs-theme=dark] .pma_quick_warp .disabled.drop_button, fieldset:disabled .btn, fieldset:disabled [data-bs-theme=dark] .pma_quick_warp .drop_button, [data-bs-theme=dark] .pma_quick_warp fieldset:disabled .drop_button { + color: var(--bs-btn-disabled-color); + pointer-events: none; + background-color: var(--bs-btn-disabled-bg); + border-color: var(--bs-btn-disabled-border-color); + opacity: var(--bs-btn-disabled-opacity); +} + +.btn-primary, [data-bs-theme=dark] .pma_quick_warp .drop_button { + --bs-btn-color: #000; + --bs-btn-bg: #ff0055; + --bs-btn-border-color: #ff0055; + --bs-btn-hover-color: #000; + --bs-btn-hover-bg: rgb(100%, 15%, 43.3333333333%); + --bs-btn-hover-border-color: rgb(100%, 10%, 40%); + --bs-btn-focus-shadow-rgb: 217, 0, 72; + --bs-btn-active-color: #000; + --bs-btn-active-bg: #ff3377; + --bs-btn-active-border-color: rgb(100%, 10%, 40%); + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #000; + --bs-btn-disabled-bg: #ff0055; + --bs-btn-disabled-border-color: #ff0055; +} + +.btn-secondary { + --bs-btn-color: #fff; + --bs-btn-bg: #6f42c1; + --bs-btn-border-color: #6f42c1; + --bs-btn-hover-color: #fff; + --bs-btn-hover-bg: rgb(37%, 22%, 64.3333333333%); + --bs-btn-hover-border-color: rgb(34.8235294118%, 20.7058823529%, 60.5490196078%); + --bs-btn-focus-shadow-rgb: 133, 94, 202; + --bs-btn-active-color: #fff; + --bs-btn-active-bg: rgb(34.8235294118%, 20.7058823529%, 60.5490196078%); + --bs-btn-active-border-color: rgb(32.6470588235%, 19.4117647059%, 56.7647058824%); + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #fff; + --bs-btn-disabled-bg: #6f42c1; + --bs-btn-disabled-border-color: #6f42c1; +} + +.btn-success { + --bs-btn-color: #000; + --bs-btn-bg: #00ab55; + --bs-btn-border-color: #00ab55; + --bs-btn-hover-color: #000; + --bs-btn-hover-bg: rgb(15%, 72%, 43.3333333333%); + --bs-btn-hover-border-color: rgb(10%, 70.3529411765%, 40%); + --bs-btn-focus-shadow-rgb: 0, 145, 72; + --bs-btn-active-color: #000; + --bs-btn-active-bg: rgb(20%, 73.6470588235%, 46.6666666667%); + --bs-btn-active-border-color: rgb(10%, 70.3529411765%, 40%); + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #000; + --bs-btn-disabled-bg: #00ab55; + --bs-btn-disabled-border-color: #00ab55; +} + +.btn-info { + --bs-btn-color: #000; + --bs-btn-bg: #2196f3; + --bs-btn-border-color: #2196f3; + --bs-btn-hover-color: #000; + --bs-btn-hover-bg: rgb(26%, 65%, 96%); + --bs-btn-hover-border-color: rgb(21.6470588235%, 62.9411764706%, 95.7647058824%); + --bs-btn-focus-shadow-rgb: 28, 128, 207; + --bs-btn-active-color: #000; + --bs-btn-active-bg: rgb(30.3529411765%, 67.0588235294%, 96.2352941176%); + --bs-btn-active-border-color: rgb(21.6470588235%, 62.9411764706%, 95.7647058824%); + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #000; + --bs-btn-disabled-bg: #2196f3; + --bs-btn-disabled-border-color: #2196f3; +} + +.btn-warning { + --bs-btn-color: #000; + --bs-btn-bg: #ffc107; + --bs-btn-border-color: #ffc107; + --bs-btn-hover-color: #000; + --bs-btn-hover-bg: rgb(100%, 79.3333333333%, 17.3333333333%); + --bs-btn-hover-border-color: rgb(100%, 78.1176470588%, 12.4705882353%); + --bs-btn-focus-shadow-rgb: 217, 164, 6; + --bs-btn-active-color: #000; + --bs-btn-active-bg: rgb(100%, 80.5490196078%, 22.1960784314%); + --bs-btn-active-border-color: rgb(100%, 78.1176470588%, 12.4705882353%); + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #000; + --bs-btn-disabled-bg: #ffc107; + --bs-btn-disabled-border-color: #ffc107; +} + +.btn-danger { + --bs-btn-color: #fff; + --bs-btn-bg: #de0e1c; + --bs-btn-border-color: #de0e1c; + --bs-btn-hover-color: #fff; + --bs-btn-hover-bg: rgb(74%, 4.6666666667%, 9.3333333333%); + --bs-btn-hover-border-color: rgb(69.6470588235%, 4.3921568627%, 8.7843137255%); + --bs-btn-focus-shadow-rgb: 227, 50, 62; + --bs-btn-active-color: #fff; + --bs-btn-active-bg: rgb(69.6470588235%, 4.3921568627%, 8.7843137255%); + --bs-btn-active-border-color: rgb(65.2941176471%, 4.1176470588%, 8.2352941176%); + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #fff; + --bs-btn-disabled-bg: #de0e1c; + --bs-btn-disabled-border-color: #de0e1c; +} + +.btn-light { + --bs-btn-color: #000; + --bs-btn-bg: #f8f9fa; + --bs-btn-border-color: #f8f9fa; + --bs-btn-hover-color: #000; + --bs-btn-hover-bg: rgb(82.6666666667%, 83%, 83.3333333333%); + --bs-btn-hover-border-color: rgb(77.8039215686%, 78.1176470588%, 78.431372549%); + --bs-btn-focus-shadow-rgb: 211, 212, 213; + --bs-btn-active-color: #000; + --bs-btn-active-bg: rgb(77.8039215686%, 78.1176470588%, 78.431372549%); + --bs-btn-active-border-color: rgb(72.9411764706%, 73.2352941176%, 73.5294117647%); + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #000; + --bs-btn-disabled-bg: #f8f9fa; + --bs-btn-disabled-border-color: #f8f9fa; +} + +.btn-dark { + --bs-btn-color: #fff; + --bs-btn-bg: #212529; + --bs-btn-border-color: #212529; + --bs-btn-hover-color: #fff; + --bs-btn-hover-bg: rgb(26%, 27.3333333333%, 28.6666666667%); + --bs-btn-hover-border-color: rgb(21.6470588235%, 23.0588235294%, 24.4705882353%); + --bs-btn-focus-shadow-rgb: 66, 70, 73; + --bs-btn-active-color: #fff; + --bs-btn-active-bg: rgb(30.3529411765%, 31.6078431373%, 32.862745098%); + --bs-btn-active-border-color: rgb(21.6470588235%, 23.0588235294%, 24.4705882353%); + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #fff; + --bs-btn-disabled-bg: #212529; + --bs-btn-disabled-border-color: #212529; +} + +.btn-outline-primary { + --bs-btn-color: #ff0055; + --bs-btn-border-color: #ff0055; + --bs-btn-hover-color: #000; + --bs-btn-hover-bg: #ff0055; + --bs-btn-hover-border-color: #ff0055; + --bs-btn-focus-shadow-rgb: 255, 0, 85; + --bs-btn-active-color: #000; + --bs-btn-active-bg: #ff0055; + --bs-btn-active-border-color: #ff0055; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #ff0055; + --bs-btn-disabled-bg: transparent; + --bs-btn-disabled-border-color: #ff0055; + --bs-gradient: none; +} + +.btn-outline-secondary { + --bs-btn-color: #6f42c1; + --bs-btn-border-color: #6f42c1; + --bs-btn-hover-color: #fff; + --bs-btn-hover-bg: #6f42c1; + --bs-btn-hover-border-color: #6f42c1; + --bs-btn-focus-shadow-rgb: 111, 66, 193; + --bs-btn-active-color: #fff; + --bs-btn-active-bg: #6f42c1; + --bs-btn-active-border-color: #6f42c1; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #6f42c1; + --bs-btn-disabled-bg: transparent; + --bs-btn-disabled-border-color: #6f42c1; + --bs-gradient: none; +} + +.btn-outline-success { + --bs-btn-color: #00ab55; + --bs-btn-border-color: #00ab55; + --bs-btn-hover-color: #000; + --bs-btn-hover-bg: #00ab55; + --bs-btn-hover-border-color: #00ab55; + --bs-btn-focus-shadow-rgb: 0, 171, 85; + --bs-btn-active-color: #000; + --bs-btn-active-bg: #00ab55; + --bs-btn-active-border-color: #00ab55; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #00ab55; + --bs-btn-disabled-bg: transparent; + --bs-btn-disabled-border-color: #00ab55; + --bs-gradient: none; +} + +.btn-outline-info { + --bs-btn-color: #2196f3; + --bs-btn-border-color: #2196f3; + --bs-btn-hover-color: #000; + --bs-btn-hover-bg: #2196f3; + --bs-btn-hover-border-color: #2196f3; + --bs-btn-focus-shadow-rgb: 33, 150, 243; + --bs-btn-active-color: #000; + --bs-btn-active-bg: #2196f3; + --bs-btn-active-border-color: #2196f3; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #2196f3; + --bs-btn-disabled-bg: transparent; + --bs-btn-disabled-border-color: #2196f3; + --bs-gradient: none; +} + +.btn-outline-warning { + --bs-btn-color: #ffc107; + --bs-btn-border-color: #ffc107; + --bs-btn-hover-color: #000; + --bs-btn-hover-bg: #ffc107; + --bs-btn-hover-border-color: #ffc107; + --bs-btn-focus-shadow-rgb: 255, 193, 7; + --bs-btn-active-color: #000; + --bs-btn-active-bg: #ffc107; + --bs-btn-active-border-color: #ffc107; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #ffc107; + --bs-btn-disabled-bg: transparent; + --bs-btn-disabled-border-color: #ffc107; + --bs-gradient: none; +} + +.btn-outline-danger { + --bs-btn-color: #de0e1c; + --bs-btn-border-color: #de0e1c; + --bs-btn-hover-color: #fff; + --bs-btn-hover-bg: #de0e1c; + --bs-btn-hover-border-color: #de0e1c; + --bs-btn-focus-shadow-rgb: 222, 14, 28; + --bs-btn-active-color: #fff; + --bs-btn-active-bg: #de0e1c; + --bs-btn-active-border-color: #de0e1c; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #de0e1c; + --bs-btn-disabled-bg: transparent; + --bs-btn-disabled-border-color: #de0e1c; + --bs-gradient: none; +} + +.btn-outline-light { + --bs-btn-color: #f8f9fa; + --bs-btn-border-color: #f8f9fa; + --bs-btn-hover-color: #000; + --bs-btn-hover-bg: #f8f9fa; + --bs-btn-hover-border-color: #f8f9fa; + --bs-btn-focus-shadow-rgb: 248, 249, 250; + --bs-btn-active-color: #000; + --bs-btn-active-bg: #f8f9fa; + --bs-btn-active-border-color: #f8f9fa; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #f8f9fa; + --bs-btn-disabled-bg: transparent; + --bs-btn-disabled-border-color: #f8f9fa; + --bs-gradient: none; +} + +.btn-outline-dark { + --bs-btn-color: #212529; + --bs-btn-border-color: #212529; + --bs-btn-hover-color: #fff; + --bs-btn-hover-bg: #212529; + --bs-btn-hover-border-color: #212529; + --bs-btn-focus-shadow-rgb: 33, 37, 41; + --bs-btn-active-color: #fff; + --bs-btn-active-bg: #212529; + --bs-btn-active-border-color: #212529; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #212529; + --bs-btn-disabled-bg: transparent; + --bs-btn-disabled-border-color: #212529; + --bs-gradient: none; +} + +.btn-link { + --bs-btn-font-weight: 400; + --bs-btn-color: var(--bs-link-color); + --bs-btn-bg: transparent; + --bs-btn-border-color: transparent; + --bs-btn-hover-color: var(--bs-link-hover-color); + --bs-btn-hover-border-color: transparent; + --bs-btn-active-color: var(--bs-link-hover-color); + --bs-btn-active-border-color: transparent; + --bs-btn-disabled-color: #6c757d; + --bs-btn-disabled-border-color: transparent; + --bs-btn-box-shadow: 0 0 0 #000; + --bs-btn-focus-shadow-rgb: 217, 0, 72; + text-decoration: none; +} +.btn-link:hover, .btn-link:focus-visible { + text-decoration: underline; +} +.btn-link:focus-visible { + color: var(--bs-btn-color); +} +.btn-link:hover { + color: var(--bs-btn-hover-color); +} + +.btn-lg, .btn-group-lg > .btn, [data-bs-theme=dark] .pma_quick_warp .btn-group-lg > .drop_button { + --bs-btn-padding-y: 0.5rem; + --bs-btn-padding-x: 1rem; + --bs-btn-font-size: 1.00625rem; + --bs-btn-border-radius: var(--bs-border-radius-lg); +} + +.btn-sm, .btn-group-sm > .btn, [data-bs-theme=dark] .pma_quick_warp .btn-group-sm > .drop_button { + --bs-btn-padding-y: 0.25rem; + --bs-btn-padding-x: 0.5rem; + --bs-btn-font-size: 0.74375rem; + --bs-btn-border-radius: var(--bs-border-radius-sm); +} + +.fade { + transition: opacity 0.15s linear; +} +@media (prefers-reduced-motion: reduce) { + .fade { + transition: none; + } +} +.fade:not(.show) { + opacity: 0; +} + +.collapse:not(.show) { + display: none; +} + +.collapsing { + height: 0; + overflow: hidden; + transition: height 0.35s ease; +} +@media (prefers-reduced-motion: reduce) { + .collapsing { + transition: none; + } +} +.collapsing.collapse-horizontal { + width: 0; + height: auto; + transition: width 0.35s ease; +} +@media (prefers-reduced-motion: reduce) { + .collapsing.collapse-horizontal { + transition: none; + } +} + +.dropup, +.dropend, +.dropdown, +.dropstart, +.dropup-center, +.dropdown-center { + position: relative; +} + +.dropdown-toggle { + white-space: nowrap; +} +.dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid; + border-right: 0.3em solid transparent; + border-bottom: 0; + border-left: 0.3em solid transparent; +} +.dropdown-toggle:empty::after { + margin-left: 0; +} + +.dropdown-menu { + --bs-dropdown-zindex: 1000; + --bs-dropdown-min-width: 10rem; + --bs-dropdown-padding-x: 0; + --bs-dropdown-padding-y: 0.5rem; + --bs-dropdown-spacer: 0.125rem; + --bs-dropdown-font-size: 0.875rem; + --bs-dropdown-color: var(--bs-body-color); + --bs-dropdown-bg: var(--bs-body-bg); + --bs-dropdown-border-color: var(--bs-border-color-translucent); + --bs-dropdown-border-radius: var(--bs-border-radius); + --bs-dropdown-border-width: var(--bs-border-width); + --bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width)); + --bs-dropdown-divider-bg: var(--bs-border-color-translucent); + --bs-dropdown-divider-margin-y: 0.5rem; + --bs-dropdown-box-shadow: var(--bs-box-shadow); + --bs-dropdown-link-color: var(--bs-body-color); + --bs-dropdown-link-hover-color: var(--bs-body-color); + --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg); + --bs-dropdown-link-active-color: #fff; + --bs-dropdown-link-active-bg: #ff0055; + --bs-dropdown-link-disabled-color: var(--bs-tertiary-color); + --bs-dropdown-item-padding-x: 1rem; + --bs-dropdown-item-padding-y: 0.25rem; + --bs-dropdown-header-color: #6c757d; + --bs-dropdown-header-padding-x: 1rem; + --bs-dropdown-header-padding-y: 0.5rem; + position: absolute; + z-index: var(--bs-dropdown-zindex); + display: none; + min-width: var(--bs-dropdown-min-width); + padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x); + margin: 0; + font-size: var(--bs-dropdown-font-size); + color: var(--bs-dropdown-color); + text-align: left; + list-style: none; + background-color: var(--bs-dropdown-bg); + background-clip: padding-box; + border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color); + border-radius: var(--bs-dropdown-border-radius); +} +.dropdown-menu[data-bs-popper] { + top: 100%; + left: 0; + margin-top: var(--bs-dropdown-spacer); +} + +.dropdown-menu-start { + --bs-position: start; +} +.dropdown-menu-start[data-bs-popper] { + right: auto; + left: 0; +} + +.dropdown-menu-end { + --bs-position: end; +} +.dropdown-menu-end[data-bs-popper] { + right: 0; + left: auto; +} + +@media (min-width: 576px) { + .dropdown-menu-sm-start { + --bs-position: start; + } + .dropdown-menu-sm-start[data-bs-popper] { + right: auto; + left: 0; + } + .dropdown-menu-sm-end { + --bs-position: end; + } + .dropdown-menu-sm-end[data-bs-popper] { + right: 0; + left: auto; + } +} +@media (min-width: 768px) { + .dropdown-menu-md-start { + --bs-position: start; + } + .dropdown-menu-md-start[data-bs-popper] { + right: auto; + left: 0; + } + .dropdown-menu-md-end { + --bs-position: end; + } + .dropdown-menu-md-end[data-bs-popper] { + right: 0; + left: auto; + } +} +@media (min-width: 992px) { + .dropdown-menu-lg-start { + --bs-position: start; + } + .dropdown-menu-lg-start[data-bs-popper] { + right: auto; + left: 0; + } + .dropdown-menu-lg-end { + --bs-position: end; + } + .dropdown-menu-lg-end[data-bs-popper] { + right: 0; + left: auto; + } +} +@media (min-width: 1200px) { + .dropdown-menu-xl-start { + --bs-position: start; + } + .dropdown-menu-xl-start[data-bs-popper] { + right: auto; + left: 0; + } + .dropdown-menu-xl-end { + --bs-position: end; + } + .dropdown-menu-xl-end[data-bs-popper] { + right: 0; + left: auto; + } +} +@media (min-width: 1400px) { + .dropdown-menu-xxl-start { + --bs-position: start; + } + .dropdown-menu-xxl-start[data-bs-popper] { + right: auto; + left: 0; + } + .dropdown-menu-xxl-end { + --bs-position: end; + } + .dropdown-menu-xxl-end[data-bs-popper] { + right: 0; + left: auto; + } +} +.dropup .dropdown-menu[data-bs-popper] { + top: auto; + bottom: 100%; + margin-top: 0; + margin-bottom: var(--bs-dropdown-spacer); +} +.dropup .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0; + border-right: 0.3em solid transparent; + border-bottom: 0.3em solid; + border-left: 0.3em solid transparent; +} +.dropup .dropdown-toggle:empty::after { + margin-left: 0; +} + +.dropend .dropdown-menu[data-bs-popper] { + top: 0; + right: auto; + left: 100%; + margin-top: 0; + margin-left: var(--bs-dropdown-spacer); +} +.dropend .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0; + border-bottom: 0.3em solid transparent; + border-left: 0.3em solid; +} +.dropend .dropdown-toggle:empty::after { + margin-left: 0; +} +.dropend .dropdown-toggle::after { + vertical-align: 0; +} + +.dropstart .dropdown-menu[data-bs-popper] { + top: 0; + right: 100%; + left: auto; + margin-top: 0; + margin-right: var(--bs-dropdown-spacer); +} +.dropstart .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; +} +.dropstart .dropdown-toggle::after { + display: none; +} +.dropstart .dropdown-toggle::before { + display: inline-block; + margin-right: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0.3em solid; + border-bottom: 0.3em solid transparent; +} +.dropstart .dropdown-toggle:empty::after { + margin-left: 0; +} +.dropstart .dropdown-toggle::before { + vertical-align: 0; +} + +.dropdown-divider { + height: 0; + margin: var(--bs-dropdown-divider-margin-y) 0; + overflow: hidden; + border-top: 1px solid var(--bs-dropdown-divider-bg); + opacity: 1; +} + +.dropdown-item { + display: block; + width: 100%; + padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x); + clear: both; + font-weight: 400; + color: var(--bs-dropdown-link-color); + text-align: inherit; + white-space: nowrap; + background-color: transparent; + border: 0; + border-radius: var(--bs-dropdown-item-border-radius, 0); +} +.dropdown-item:hover, .dropdown-item:focus { + color: var(--bs-dropdown-link-hover-color); + text-decoration: none; + background-color: var(--bs-dropdown-link-hover-bg); +} +.dropdown-item.active, .dropdown-item:active { + color: var(--bs-dropdown-link-active-color); + text-decoration: none; + background-color: var(--bs-dropdown-link-active-bg); +} +.dropdown-item.disabled, .dropdown-item:disabled { + color: var(--bs-dropdown-link-disabled-color); + pointer-events: none; + background-color: transparent; +} + +.dropdown-menu.show { + display: block; +} + +.dropdown-header { + display: block; + padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x); + margin-bottom: 0; + font-size: 0.74375rem; + color: var(--bs-dropdown-header-color); + white-space: nowrap; +} + +.dropdown-item-text { + display: block; + padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x); + color: var(--bs-dropdown-link-color); +} + +.dropdown-menu-dark { + --bs-dropdown-color: #dee2e6; + --bs-dropdown-bg: #343a40; + --bs-dropdown-border-color: var(--bs-border-color-translucent); + --bs-dropdown-box-shadow: ; + --bs-dropdown-link-color: #dee2e6; + --bs-dropdown-link-hover-color: #fff; + --bs-dropdown-divider-bg: var(--bs-border-color-translucent); + --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15); + --bs-dropdown-link-active-color: #fff; + --bs-dropdown-link-active-bg: #ff0055; + --bs-dropdown-link-disabled-color: #adb5bd; + --bs-dropdown-header-color: #adb5bd; +} + +.btn-group, +.btn-group-vertical { + position: relative; + display: inline-flex; + vertical-align: middle; +} +.btn-group > .btn, [data-bs-theme=dark] .pma_quick_warp .btn-group > .drop_button, +.btn-group-vertical > .btn, +[data-bs-theme=dark] .pma_quick_warp .btn-group-vertical > .drop_button { + position: relative; + flex: 1 1 auto; +} +.btn-group > .btn-check:checked + .btn, [data-bs-theme=dark] .pma_quick_warp .btn-group > .btn-check:checked + .drop_button, +.btn-group > .btn-check:focus + .btn, +[data-bs-theme=dark] .pma_quick_warp .btn-group > .btn-check:focus + .drop_button, +.btn-group > .btn:hover, +[data-bs-theme=dark] .pma_quick_warp .btn-group > .drop_button:hover, +.btn-group > .btn:focus, +[data-bs-theme=dark] .pma_quick_warp .btn-group > .drop_button:focus, +.btn-group > .btn:active, +[data-bs-theme=dark] .pma_quick_warp .btn-group > .drop_button:active, +.btn-group > .btn.active, +[data-bs-theme=dark] .pma_quick_warp .btn-group > .active.drop_button, +.btn-group-vertical > .btn-check:checked + .btn, +[data-bs-theme=dark] .pma_quick_warp .btn-group-vertical > .btn-check:checked + .drop_button, +.btn-group-vertical > .btn-check:focus + .btn, +[data-bs-theme=dark] .pma_quick_warp .btn-group-vertical > .btn-check:focus + .drop_button, +.btn-group-vertical > .btn:hover, +[data-bs-theme=dark] .pma_quick_warp .btn-group-vertical > .drop_button:hover, +.btn-group-vertical > .btn:focus, +[data-bs-theme=dark] .pma_quick_warp .btn-group-vertical > .drop_button:focus, +.btn-group-vertical > .btn:active, +[data-bs-theme=dark] .pma_quick_warp .btn-group-vertical > .drop_button:active, +.btn-group-vertical > .btn.active, +[data-bs-theme=dark] .pma_quick_warp .btn-group-vertical > .active.drop_button { + z-index: 1; +} + +.btn-toolbar { + display: flex; + flex-wrap: wrap; + justify-content: flex-start; +} +.btn-toolbar .input-group { + width: auto; +} + +.btn-group { + border-radius: var(--bs-border-radius); +} +.btn-group > :not(.btn-check:first-child) + .btn, [data-bs-theme=dark] .pma_quick_warp .btn-group > :not(.btn-check:first-child) + .drop_button, +.btn-group > .btn-group:not(:first-child) { + margin-left: calc(-1 * var(--bs-border-width)); +} +.btn-group > .btn:not(:last-child):not(.dropdown-toggle), [data-bs-theme=dark] .pma_quick_warp .btn-group > .drop_button:not(:last-child):not(.dropdown-toggle), +.btn-group > .btn.dropdown-toggle-split:first-child, +[data-bs-theme=dark] .pma_quick_warp .btn-group > .dropdown-toggle-split.drop_button:first-child, +.btn-group > .btn-group:not(:last-child) > .btn, +[data-bs-theme=dark] .pma_quick_warp .btn-group > .btn-group:not(:last-child) > .drop_button { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} +.btn-group > .btn:nth-child(n+3), [data-bs-theme=dark] .pma_quick_warp .btn-group > .drop_button:nth-child(n+3), +.btn-group > :not(.btn-check) + .btn, +[data-bs-theme=dark] .pma_quick_warp .btn-group > :not(.btn-check) + .drop_button, +.btn-group > .btn-group:not(:first-child) > .btn, +[data-bs-theme=dark] .pma_quick_warp .btn-group > .btn-group:not(:first-child) > .drop_button { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.dropdown-toggle-split { + padding-right: 0.5625rem; + padding-left: 0.5625rem; +} +.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after { + margin-left: 0; +} +.dropstart .dropdown-toggle-split::before { + margin-right: 0; +} + +.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split, [data-bs-theme=dark] .pma_quick_warp .btn-group-sm > .drop_button + .dropdown-toggle-split { + padding-right: 0.375rem; + padding-left: 0.375rem; +} + +.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split, [data-bs-theme=dark] .pma_quick_warp .btn-group-lg > .drop_button + .dropdown-toggle-split { + padding-right: 0.75rem; + padding-left: 0.75rem; +} + +.btn-group-vertical { + flex-direction: column; + align-items: flex-start; + justify-content: center; +} +.btn-group-vertical > .btn, [data-bs-theme=dark] .pma_quick_warp .btn-group-vertical > .drop_button, +.btn-group-vertical > .btn-group { + width: 100%; +} +.btn-group-vertical > .btn:not(:first-child), [data-bs-theme=dark] .pma_quick_warp .btn-group-vertical > .drop_button:not(:first-child), +.btn-group-vertical > .btn-group:not(:first-child) { + margin-top: calc(-1 * var(--bs-border-width)); +} +.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), [data-bs-theme=dark] .pma_quick_warp .btn-group-vertical > .drop_button:not(:last-child):not(.dropdown-toggle), +.btn-group-vertical > .btn-group:not(:last-child) > .btn, +[data-bs-theme=dark] .pma_quick_warp .btn-group-vertical > .btn-group:not(:last-child) > .drop_button { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} +.btn-group-vertical > .btn:nth-child(n+3), [data-bs-theme=dark] .pma_quick_warp .btn-group-vertical > .drop_button:nth-child(n+3), +.btn-group-vertical > :not(.btn-check) + .btn, +[data-bs-theme=dark] .pma_quick_warp .btn-group-vertical > :not(.btn-check) + .drop_button, +.btn-group-vertical > .btn-group:not(:first-child) > .btn, +[data-bs-theme=dark] .pma_quick_warp .btn-group-vertical > .btn-group:not(:first-child) > .drop_button { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.nav { + --bs-nav-link-padding-x: 1rem; + --bs-nav-link-padding-y: 0.5rem; + --bs-nav-link-font-weight: ; + --bs-nav-link-color: var(--bs-link-color); + --bs-nav-link-hover-color: var(--bs-link-hover-color); + --bs-nav-link-disabled-color: var(--bs-secondary-color); + display: flex; + flex-wrap: wrap; + padding-left: 0; + margin-bottom: 0; + list-style: none; +} + +.nav-link { + display: block; + padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x); + font-size: var(--bs-nav-link-font-size); + font-weight: var(--bs-nav-link-font-weight); + color: var(--bs-nav-link-color); + background: none; + border: 0; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .nav-link { + transition: none; + } +} +.nav-link:hover, .nav-link:focus { + color: var(--bs-nav-link-hover-color); + text-decoration: none; +} +.nav-link:focus-visible { + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(255, 0, 85, 0.25); +} +.nav-link.disabled, .nav-link:disabled { + color: var(--bs-nav-link-disabled-color); + pointer-events: none; + cursor: default; +} + +.nav-tabs { + --bs-nav-tabs-border-width: var(--bs-border-width); + --bs-nav-tabs-border-color: var(--bs-border-color); + --bs-nav-tabs-border-radius: var(--bs-border-radius); + --bs-nav-tabs-link-hover-border-color: var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color); + --bs-nav-tabs-link-active-color: var(--bs-emphasis-color); + --bs-nav-tabs-link-active-bg: var(--bs-body-bg); + --bs-nav-tabs-link-active-border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg); + border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color); +} +.nav-tabs .nav-link { + margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width)); + border: var(--bs-nav-tabs-border-width) solid transparent; + border-top-left-radius: var(--bs-nav-tabs-border-radius); + border-top-right-radius: var(--bs-nav-tabs-border-radius); +} +.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { + isolation: isolate; + border-color: var(--bs-nav-tabs-link-hover-border-color); +} +.nav-tabs .nav-link.active, +.nav-tabs .nav-item.show .nav-link { + color: var(--bs-nav-tabs-link-active-color); + background-color: var(--bs-nav-tabs-link-active-bg); + border-color: var(--bs-nav-tabs-link-active-border-color); +} +.nav-tabs .dropdown-menu { + margin-top: calc(-1 * var(--bs-nav-tabs-border-width)); + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.nav-pills { + --bs-nav-pills-border-radius: var(--bs-border-radius); + --bs-nav-pills-link-active-color: #fff; + --bs-nav-pills-link-active-bg: #ff0055; +} +.nav-pills .nav-link { + border-radius: var(--bs-nav-pills-border-radius); +} +.nav-pills .nav-link.active, +.nav-pills .show > .nav-link { + color: var(--bs-nav-pills-link-active-color); + background-color: var(--bs-nav-pills-link-active-bg); +} + +.nav-underline { + --bs-nav-underline-gap: 1rem; + --bs-nav-underline-border-width: 0.125rem; + --bs-nav-underline-link-active-color: var(--bs-emphasis-color); + gap: var(--bs-nav-underline-gap); +} +.nav-underline .nav-link { + padding-right: 0; + padding-left: 0; + border-bottom: var(--bs-nav-underline-border-width) solid transparent; +} +.nav-underline .nav-link:hover, .nav-underline .nav-link:focus { + border-bottom-color: currentcolor; +} +.nav-underline .nav-link.active, +.nav-underline .show > .nav-link { + font-weight: 700; + color: var(--bs-nav-underline-link-active-color); + border-bottom-color: currentcolor; +} + +.nav-fill > .nav-link, +.nav-fill .nav-item { + flex: 1 1 auto; + text-align: center; +} + +.nav-justified > .nav-link, +.nav-justified .nav-item { + flex-grow: 1; + flex-basis: 0; + text-align: center; +} + +.nav-fill .nav-item .nav-link, +.nav-justified .nav-item .nav-link { + width: 100%; +} + +.tab-content > .tab-pane { + display: none; +} +.tab-content > .active { + display: block; +} + +.navbar { + --bs-navbar-padding-x: 0; + --bs-navbar-padding-y: 0.5rem; + --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.65); + --bs-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), 0.8); + --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3); + --bs-navbar-active-color: rgba(var(--bs-emphasis-color-rgb), 1); + --bs-navbar-brand-padding-y: 0.4015625rem; + --bs-navbar-brand-margin-end: 1rem; + --bs-navbar-brand-font-size: 1.00625rem; + --bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1); + --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1); + --bs-navbar-nav-link-padding-x: 0.5rem; + --bs-navbar-toggler-padding-y: 0.25rem; + --bs-navbar-toggler-padding-x: 0.75rem; + --bs-navbar-toggler-font-size: 1.00625rem; + --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); + --bs-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), 0.15); + --bs-navbar-toggler-border-radius: var(--bs-border-radius); + --bs-navbar-toggler-focus-width: 0.25rem; + --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out; + position: relative; + display: flex; + flex-wrap: wrap; + align-items: center; + justify-content: space-between; + padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x); +} +.navbar > .container, +.navbar > .container-fluid, +.navbar > .container-sm, +.navbar > .container-md, +.navbar > .container-lg, +.navbar > .container-xl, +.navbar > .container-xxl { + display: flex; + flex-wrap: inherit; + align-items: center; + justify-content: space-between; +} +.navbar-brand { + padding-top: var(--bs-navbar-brand-padding-y); + padding-bottom: var(--bs-navbar-brand-padding-y); + margin-right: var(--bs-navbar-brand-margin-end); + font-size: var(--bs-navbar-brand-font-size); + color: var(--bs-navbar-brand-color); + white-space: nowrap; +} +.navbar-brand:hover, .navbar-brand:focus { + color: var(--bs-navbar-brand-hover-color); + text-decoration: none; +} + +.navbar-nav { + --bs-nav-link-padding-x: 0; + --bs-nav-link-padding-y: 0.5rem; + --bs-nav-link-font-weight: ; + --bs-nav-link-color: var(--bs-navbar-color); + --bs-nav-link-hover-color: var(--bs-navbar-hover-color); + --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color); + display: flex; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; + list-style: none; +} +.navbar-nav .nav-link.active, .navbar-nav .nav-link.show { + color: var(--bs-navbar-active-color); +} +.navbar-nav .dropdown-menu { + position: static; +} + +.navbar-text { + padding-top: 0.5rem; + padding-bottom: 0.5rem; + color: var(--bs-navbar-color); +} +.navbar-text a, +.navbar-text a:hover, +.navbar-text a:focus { + color: var(--bs-navbar-active-color); +} + +.navbar-collapse { + flex-grow: 1; + flex-basis: 100%; + align-items: center; +} + +.navbar-toggler { + padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x); + font-size: var(--bs-navbar-toggler-font-size); + line-height: 1; + color: var(--bs-navbar-color); + background-color: transparent; + border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color); + border-radius: var(--bs-navbar-toggler-border-radius); + transition: var(--bs-navbar-toggler-transition); +} +@media (prefers-reduced-motion: reduce) { + .navbar-toggler { + transition: none; + } +} +.navbar-toggler:hover { + text-decoration: none; +} +.navbar-toggler:focus { + text-decoration: none; + outline: 0; + box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width); +} + +.navbar-toggler-icon { + display: inline-block; + width: 1.5em; + height: 1.5em; + vertical-align: middle; + background-image: var(--bs-navbar-toggler-icon-bg); + background-repeat: no-repeat; + background-position: center; + background-size: 100%; +} + +.navbar-nav-scroll { + max-height: var(--bs-scroll-height, 75vh); + overflow-y: auto; +} + +@media (min-width: 576px) { + .navbar-expand-sm { + flex-wrap: nowrap; + justify-content: flex-start; + } + .navbar-expand-sm .navbar-nav { + flex-direction: row; + } + .navbar-expand-sm .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-sm .navbar-nav .nav-link { + padding-right: var(--bs-navbar-nav-link-padding-x); + padding-left: var(--bs-navbar-nav-link-padding-x); + } + .navbar-expand-sm .navbar-nav-scroll { + overflow: visible; + } + .navbar-expand-sm .navbar-collapse { + display: flex !important; + flex-basis: auto; + } + .navbar-expand-sm .navbar-toggler { + display: none; + } + .navbar-expand-sm .offcanvas { + position: static; + z-index: auto; + flex-grow: 1; + width: auto !important; + height: auto !important; + visibility: visible !important; + background-color: transparent !important; + border: 0 !important; + transform: none !important; + transition: none; + } + .navbar-expand-sm .offcanvas .offcanvas-header { + display: none; + } + .navbar-expand-sm .offcanvas .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + } +} +@media (min-width: 768px) { + .navbar-expand-md { + flex-wrap: nowrap; + justify-content: flex-start; + } + .navbar-expand-md .navbar-nav { + flex-direction: row; + } + .navbar-expand-md .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-md .navbar-nav .nav-link { + padding-right: var(--bs-navbar-nav-link-padding-x); + padding-left: var(--bs-navbar-nav-link-padding-x); + } + .navbar-expand-md .navbar-nav-scroll { + overflow: visible; + } + .navbar-expand-md .navbar-collapse { + display: flex !important; + flex-basis: auto; + } + .navbar-expand-md .navbar-toggler { + display: none; + } + .navbar-expand-md .offcanvas { + position: static; + z-index: auto; + flex-grow: 1; + width: auto !important; + height: auto !important; + visibility: visible !important; + background-color: transparent !important; + border: 0 !important; + transform: none !important; + transition: none; + } + .navbar-expand-md .offcanvas .offcanvas-header { + display: none; + } + .navbar-expand-md .offcanvas .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + } +} +@media (min-width: 992px) { + .navbar-expand-lg { + flex-wrap: nowrap; + justify-content: flex-start; + } + .navbar-expand-lg .navbar-nav { + flex-direction: row; + } + .navbar-expand-lg .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-lg .navbar-nav .nav-link { + padding-right: var(--bs-navbar-nav-link-padding-x); + padding-left: var(--bs-navbar-nav-link-padding-x); + } + .navbar-expand-lg .navbar-nav-scroll { + overflow: visible; + } + .navbar-expand-lg .navbar-collapse { + display: flex !important; + flex-basis: auto; + } + .navbar-expand-lg .navbar-toggler { + display: none; + } + .navbar-expand-lg .offcanvas { + position: static; + z-index: auto; + flex-grow: 1; + width: auto !important; + height: auto !important; + visibility: visible !important; + background-color: transparent !important; + border: 0 !important; + transform: none !important; + transition: none; + } + .navbar-expand-lg .offcanvas .offcanvas-header { + display: none; + } + .navbar-expand-lg .offcanvas .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + } +} +@media (min-width: 1200px) { + .navbar-expand-xl { + flex-wrap: nowrap; + justify-content: flex-start; + } + .navbar-expand-xl .navbar-nav { + flex-direction: row; + } + .navbar-expand-xl .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-xl .navbar-nav .nav-link { + padding-right: var(--bs-navbar-nav-link-padding-x); + padding-left: var(--bs-navbar-nav-link-padding-x); + } + .navbar-expand-xl .navbar-nav-scroll { + overflow: visible; + } + .navbar-expand-xl .navbar-collapse { + display: flex !important; + flex-basis: auto; + } + .navbar-expand-xl .navbar-toggler { + display: none; + } + .navbar-expand-xl .offcanvas { + position: static; + z-index: auto; + flex-grow: 1; + width: auto !important; + height: auto !important; + visibility: visible !important; + background-color: transparent !important; + border: 0 !important; + transform: none !important; + transition: none; + } + .navbar-expand-xl .offcanvas .offcanvas-header { + display: none; + } + .navbar-expand-xl .offcanvas .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + } +} +@media (min-width: 1400px) { + .navbar-expand-xxl { + flex-wrap: nowrap; + justify-content: flex-start; + } + .navbar-expand-xxl .navbar-nav { + flex-direction: row; + } + .navbar-expand-xxl .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-xxl .navbar-nav .nav-link { + padding-right: var(--bs-navbar-nav-link-padding-x); + padding-left: var(--bs-navbar-nav-link-padding-x); + } + .navbar-expand-xxl .navbar-nav-scroll { + overflow: visible; + } + .navbar-expand-xxl .navbar-collapse { + display: flex !important; + flex-basis: auto; + } + .navbar-expand-xxl .navbar-toggler { + display: none; + } + .navbar-expand-xxl .offcanvas { + position: static; + z-index: auto; + flex-grow: 1; + width: auto !important; + height: auto !important; + visibility: visible !important; + background-color: transparent !important; + border: 0 !important; + transform: none !important; + transition: none; + } + .navbar-expand-xxl .offcanvas .offcanvas-header { + display: none; + } + .navbar-expand-xxl .offcanvas .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + } +} +.navbar-expand { + flex-wrap: nowrap; + justify-content: flex-start; +} +.navbar-expand .navbar-nav { + flex-direction: row; +} +.navbar-expand .navbar-nav .dropdown-menu { + position: absolute; +} +.navbar-expand .navbar-nav .nav-link { + padding-right: var(--bs-navbar-nav-link-padding-x); + padding-left: var(--bs-navbar-nav-link-padding-x); +} +.navbar-expand .navbar-nav-scroll { + overflow: visible; +} +.navbar-expand .navbar-collapse { + display: flex !important; + flex-basis: auto; +} +.navbar-expand .navbar-toggler { + display: none; +} +.navbar-expand .offcanvas { + position: static; + z-index: auto; + flex-grow: 1; + width: auto !important; + height: auto !important; + visibility: visible !important; + background-color: transparent !important; + border: 0 !important; + transform: none !important; + transition: none; +} +.navbar-expand .offcanvas .offcanvas-header { + display: none; +} +.navbar-expand .offcanvas .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; +} + +.navbar-dark, +.navbar[data-bs-theme=dark] { + --bs-navbar-color: rgba(255, 255, 255, 0.55); + --bs-navbar-hover-color: rgba(255, 255, 255, 0.75); + --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25); + --bs-navbar-active-color: #fff; + --bs-navbar-brand-color: #fff; + --bs-navbar-brand-hover-color: #fff; + --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1); + --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); +} + +[data-bs-theme=dark] .navbar-toggler-icon { + --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); +} + +.card { + --bs-card-spacer-y: 1rem; + --bs-card-spacer-x: 1rem; + --bs-card-title-spacer-y: 0.5rem; + --bs-card-title-color: ; + --bs-card-subtitle-color: ; + --bs-card-border-width: 1px; + --bs-card-border-color: var(--bs-border-color-translucent); + --bs-card-border-radius: var(--bs-border-radius); + --bs-card-box-shadow: ; + --bs-card-inner-border-radius: calc(var(--bs-border-radius) - 1px); + --bs-card-cap-padding-y: 0.5rem; + --bs-card-cap-padding-x: 1rem; + --bs-card-cap-bg: var(--bs-body-color-rgb); + --bs-card-cap-color: ; + --bs-card-height: ; + --bs-card-color: ; + --bs-card-bg: var(--bs-body-bg); + --bs-card-img-overlay-padding: 1rem; + --bs-card-group-margin: 0.75rem; + position: relative; + display: flex; + flex-direction: column; + min-width: 0; + height: var(--bs-card-height); + color: var(--bs-body-color); + word-wrap: break-word; + background-color: var(--bs-card-bg); + background-clip: border-box; + border: var(--bs-card-border-width) solid var(--bs-card-border-color); + border-radius: var(--bs-card-border-radius); +} +.card > hr { + margin-right: 0; + margin-left: 0; +} +.card > .list-group { + border-top: inherit; + border-bottom: inherit; +} +.card > .list-group:first-child { + border-top-width: 0; + border-top-left-radius: var(--bs-card-inner-border-radius); + border-top-right-radius: var(--bs-card-inner-border-radius); +} +.card > .list-group:last-child { + border-bottom-width: 0; + border-bottom-right-radius: var(--bs-card-inner-border-radius); + border-bottom-left-radius: var(--bs-card-inner-border-radius); +} +.card > .card-header + .list-group, +.card > .list-group + .card-footer { + border-top: 0; +} + +.card-body { + flex: 1 1 auto; + padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x); + color: var(--bs-card-color); +} + +.card-title { + margin-bottom: var(--bs-card-title-spacer-y); + color: var(--bs-card-title-color); +} + +.card-subtitle { + margin-top: calc(-0.5 * var(--bs-card-title-spacer-y)); + margin-bottom: 0; + color: var(--bs-card-subtitle-color); +} + +.card-text:last-child { + margin-bottom: 0; +} + +.card-link:hover { + text-decoration: none; +} +.card-link + .card-link { + margin-left: var(--bs-card-spacer-x); +} + +.card-header { + padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x); + margin-bottom: 0; + color: var(--bs-card-cap-color); + background-color: var(--bs-card-cap-bg); + border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color); +} +.card-header:first-child { + border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0; +} + +.card-footer { + padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x); + color: var(--bs-card-cap-color); + background-color: var(--bs-card-cap-bg); + border-top: var(--bs-card-border-width) solid var(--bs-card-border-color); +} +.card-footer:last-child { + border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius); +} + +.card-header-tabs { + margin-right: calc(-0.5 * var(--bs-card-cap-padding-x)); + margin-bottom: calc(-1 * var(--bs-card-cap-padding-y)); + margin-left: calc(-0.5 * var(--bs-card-cap-padding-x)); + border-bottom: 0; +} +.card-header-tabs .nav-link.active { + background-color: var(--bs-card-bg); + border-bottom-color: var(--bs-card-bg); +} + +.card-header-pills { + margin-right: calc(-0.5 * var(--bs-card-cap-padding-x)); + margin-left: calc(-0.5 * var(--bs-card-cap-padding-x)); +} + +.card-img-overlay { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + padding: var(--bs-card-img-overlay-padding); + border-radius: var(--bs-card-inner-border-radius); +} + +.card-img, +.card-img-top, +.card-img-bottom { + width: 100%; +} + +.card-img, +.card-img-top { + border-top-left-radius: var(--bs-card-inner-border-radius); + border-top-right-radius: var(--bs-card-inner-border-radius); +} + +.card-img, +.card-img-bottom { + border-bottom-right-radius: var(--bs-card-inner-border-radius); + border-bottom-left-radius: var(--bs-card-inner-border-radius); +} + +.card-group > .card { + margin-bottom: var(--bs-card-group-margin); +} +@media (min-width: 576px) { + .card-group { + display: flex; + flex-flow: row wrap; + } + .card-group > .card { + flex: 1 0 0; + margin-bottom: 0; + } + .card-group > .card + .card { + margin-left: 0; + border-left: 0; + } + .card-group > .card:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + } + .card-group > .card:not(:last-child) > .card-img-top, + .card-group > .card:not(:last-child) > .card-header { + border-top-right-radius: 0; + } + .card-group > .card:not(:last-child) > .card-img-bottom, + .card-group > .card:not(:last-child) > .card-footer { + border-bottom-right-radius: 0; + } + .card-group > .card:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + } + .card-group > .card:not(:first-child) > .card-img-top, + .card-group > .card:not(:first-child) > .card-header { + border-top-left-radius: 0; + } + .card-group > .card:not(:first-child) > .card-img-bottom, + .card-group > .card:not(:first-child) > .card-footer { + border-bottom-left-radius: 0; + } +} + +.accordion { + --bs-accordion-color: var(--bs-body-color); + --bs-accordion-bg: var(--bs-body-bg); + --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease; + --bs-accordion-border-color: var(--bs-border-color); + --bs-accordion-border-width: var(--bs-border-width); + --bs-accordion-border-radius: var(--bs-border-radius); + --bs-accordion-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width))); + --bs-accordion-btn-padding-x: 1.25rem; + --bs-accordion-btn-padding-y: 1rem; + --bs-accordion-btn-color: var(--bs-body-color); + --bs-accordion-btn-bg: var(--bs-accordion-bg); + --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e"); + --bs-accordion-btn-icon-width: 1.25rem; + --bs-accordion-btn-icon-transform: rotate(-180deg); + --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out; + --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23660022' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e"); + --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(255, 0, 85, 0.25); + --bs-accordion-body-padding-x: 1.25rem; + --bs-accordion-body-padding-y: 1rem; + --bs-accordion-active-color: var(--bs-primary-text-emphasis); + --bs-accordion-active-bg: var(--bs-primary-bg-subtle); +} + +.accordion-button { + position: relative; + display: flex; + align-items: center; + width: 100%; + padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x); + font-size: 0.875rem; + color: var(--bs-accordion-btn-color); + text-align: left; + background-color: var(--bs-accordion-btn-bg); + border: 0; + border-radius: 0; + overflow-anchor: none; + transition: var(--bs-accordion-transition); +} +@media (prefers-reduced-motion: reduce) { + .accordion-button { + transition: none; + } +} +.accordion-button:not(.collapsed) { + color: var(--bs-accordion-active-color); + background-color: var(--bs-accordion-active-bg); + box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color); +} +.accordion-button:not(.collapsed)::after { + background-image: var(--bs-accordion-btn-active-icon); + transform: var(--bs-accordion-btn-icon-transform); +} +.accordion-button::after { + flex-shrink: 0; + width: var(--bs-accordion-btn-icon-width); + height: var(--bs-accordion-btn-icon-width); + margin-left: auto; + content: ""; + background-image: var(--bs-accordion-btn-icon); + background-repeat: no-repeat; + background-size: var(--bs-accordion-btn-icon-width); + transition: var(--bs-accordion-btn-icon-transition); +} +@media (prefers-reduced-motion: reduce) { + .accordion-button::after { + transition: none; + } +} +.accordion-button:hover { + z-index: 2; +} +.accordion-button:focus { + z-index: 3; + outline: 0; + box-shadow: var(--bs-accordion-btn-focus-box-shadow); +} + +.accordion-header { + margin-bottom: 0; +} + +.accordion-item { + color: var(--bs-accordion-color); + background-color: var(--bs-accordion-bg); + border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color); +} +.accordion-item:first-of-type { + border-top-left-radius: var(--bs-accordion-border-radius); + border-top-right-radius: var(--bs-accordion-border-radius); +} +.accordion-item:first-of-type > .accordion-header .accordion-button { + border-top-left-radius: var(--bs-accordion-inner-border-radius); + border-top-right-radius: var(--bs-accordion-inner-border-radius); +} +.accordion-item:not(:first-of-type) { + border-top: 0; +} +.accordion-item:last-of-type { + border-bottom-right-radius: var(--bs-accordion-border-radius); + border-bottom-left-radius: var(--bs-accordion-border-radius); +} +.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed { + border-bottom-right-radius: var(--bs-accordion-inner-border-radius); + border-bottom-left-radius: var(--bs-accordion-inner-border-radius); +} +.accordion-item:last-of-type > .accordion-collapse { + border-bottom-right-radius: var(--bs-accordion-border-radius); + border-bottom-left-radius: var(--bs-accordion-border-radius); +} + +.accordion-body { + padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x); +} + +.accordion-flush > .accordion-item { + border-right: 0; + border-left: 0; + border-radius: 0; +} +.accordion-flush > .accordion-item:first-child { + border-top: 0; +} +.accordion-flush > .accordion-item:last-child { + border-bottom: 0; +} +.accordion-flush > .accordion-item > .accordion-collapse, +.accordion-flush > .accordion-item > .accordion-header .accordion-button, +.accordion-flush > .accordion-item > .accordion-header .accordion-button.collapsed { + border-radius: 0; +} + +[data-bs-theme=dark] .accordion-button::after { + --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff6699'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e"); + --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff6699'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e"); +} + +.breadcrumb { + --bs-breadcrumb-padding-x: 0; + --bs-breadcrumb-padding-y: 0; + --bs-breadcrumb-margin-bottom: 1rem; + --bs-breadcrumb-bg: ; + --bs-breadcrumb-border-radius: ; + --bs-breadcrumb-divider-color: var(--bs-secondary-color); + --bs-breadcrumb-item-padding-x: 0.5rem; + --bs-breadcrumb-item-active-color: var(--bs-secondary-color); + display: flex; + flex-wrap: wrap; + padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x); + margin-bottom: var(--bs-breadcrumb-margin-bottom); + font-size: var(--bs-breadcrumb-font-size); + list-style: none; + background-color: var(--bs-breadcrumb-bg); + border-radius: var(--bs-breadcrumb-border-radius); +} + +.breadcrumb-item + .breadcrumb-item { + padding-left: var(--bs-breadcrumb-item-padding-x); +} +.breadcrumb-item + .breadcrumb-item::before { + float: left; + padding-right: var(--bs-breadcrumb-item-padding-x); + color: var(--bs-breadcrumb-divider-color); + content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */; +} +.breadcrumb-item.active { + color: var(--bs-breadcrumb-item-active-color); +} + +.pagination { + --bs-pagination-padding-x: 0.75rem; + --bs-pagination-padding-y: 0.375rem; + --bs-pagination-font-size: 0.875rem; + --bs-pagination-color: var(--bs-link-color); + --bs-pagination-bg: var(--bs-body-bg); + --bs-pagination-border-width: var(--bs-border-width); + --bs-pagination-border-color: var(--bs-border-color); + --bs-pagination-border-radius: var(--bs-border-radius); + --bs-pagination-hover-color: var(--bs-link-hover-color); + --bs-pagination-hover-bg: var(--bs-tertiary-bg); + --bs-pagination-hover-border-color: var(--bs-border-color); + --bs-pagination-focus-color: var(--bs-link-hover-color); + --bs-pagination-focus-bg: var(--bs-secondary-bg); + --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(255, 0, 85, 0.25); + --bs-pagination-active-color: #fff; + --bs-pagination-active-bg: #ff0055; + --bs-pagination-active-border-color: #ff0055; + --bs-pagination-disabled-color: var(--bs-secondary-color); + --bs-pagination-disabled-bg: var(--bs-secondary-bg); + --bs-pagination-disabled-border-color: var(--bs-border-color); + display: flex; + padding-left: 0; + list-style: none; +} + +.page-link { + position: relative; + display: block; + padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x); + font-size: var(--bs-pagination-font-size); + color: var(--bs-pagination-color); + background-color: var(--bs-pagination-bg); + border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color); + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .page-link { + transition: none; + } +} +.page-link:hover { + z-index: 2; + color: var(--bs-pagination-hover-color); + text-decoration: none; + background-color: var(--bs-pagination-hover-bg); + border-color: var(--bs-pagination-hover-border-color); +} +.page-link:focus { + z-index: 3; + color: var(--bs-pagination-focus-color); + background-color: var(--bs-pagination-focus-bg); + outline: 0; + box-shadow: var(--bs-pagination-focus-box-shadow); +} +.page-link.active, .active > .page-link { + z-index: 3; + color: var(--bs-pagination-active-color); + background-color: var(--bs-pagination-active-bg); + border-color: var(--bs-pagination-active-border-color); +} +.page-link.disabled, .disabled > .page-link { + color: var(--bs-pagination-disabled-color); + pointer-events: none; + background-color: var(--bs-pagination-disabled-bg); + border-color: var(--bs-pagination-disabled-border-color); +} + +.page-item:not(:first-child) .page-link { + margin-left: calc(-1 * var(--bs-border-width)); +} +.page-item:first-child .page-link { + border-top-left-radius: var(--bs-pagination-border-radius); + border-bottom-left-radius: var(--bs-pagination-border-radius); +} +.page-item:last-child .page-link { + border-top-right-radius: var(--bs-pagination-border-radius); + border-bottom-right-radius: var(--bs-pagination-border-radius); +} + +.pagination-lg { + --bs-pagination-padding-x: 1.5rem; + --bs-pagination-padding-y: 0.75rem; + --bs-pagination-font-size: 1.00625rem; + --bs-pagination-border-radius: var(--bs-border-radius-lg); +} + +.pagination-sm { + --bs-pagination-padding-x: 0.5rem; + --bs-pagination-padding-y: 0.25rem; + --bs-pagination-font-size: 0.74375rem; + --bs-pagination-border-radius: var(--bs-border-radius-sm); +} + +.badge { + --bs-badge-padding-x: 0.65em; + --bs-badge-padding-y: 0.35em; + --bs-badge-font-size: 0.75em; + --bs-badge-font-weight: 700; + --bs-badge-color: #fff; + --bs-badge-border-radius: var(--bs-border-radius); + display: inline-block; + padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x); + font-size: var(--bs-badge-font-size); + font-weight: var(--bs-badge-font-weight); + line-height: 1; + color: var(--bs-badge-color); + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: var(--bs-badge-border-radius); +} +.badge:empty { + display: none; +} + +.btn .badge, [data-bs-theme=dark] .pma_quick_warp .drop_button .badge { + position: relative; + top: -1px; +} + +.alert { + --bs-alert-bg: transparent; + --bs-alert-padding-x: 1rem; + --bs-alert-padding-y: 1rem; + --bs-alert-margin-bottom: 1rem; + --bs-alert-color: inherit; + --bs-alert-border-color: transparent; + --bs-alert-border: var(--bs-border-width) solid var(--bs-alert-border-color); + --bs-alert-border-radius: var(--bs-border-radius); + --bs-alert-link-color: inherit; + position: relative; + padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x); + margin-bottom: var(--bs-alert-margin-bottom); + color: var(--bs-alert-color); + background-color: var(--bs-alert-bg); + border: var(--bs-alert-border); + border-radius: var(--bs-alert-border-radius); +} + +.alert-heading { + color: inherit; +} + +.alert-link { + font-weight: 700; + color: var(--bs-alert-link-color); +} + +.alert-dismissible { + padding-right: 3rem; +} +.alert-dismissible .btn-close { + position: absolute; + top: 0; + right: 0; + z-index: 2; + padding: 1.25rem 1rem; +} + +.alert-primary { + --bs-alert-color: var(--bs-primary-text-emphasis); + --bs-alert-bg: var(--bs-primary-bg-subtle); + --bs-alert-border-color: var(--bs-primary-border-subtle); + --bs-alert-link-color: var(--bs-primary-text-emphasis); +} + +.alert-secondary { + --bs-alert-color: var(--bs-secondary-text-emphasis); + --bs-alert-bg: var(--bs-secondary-bg-subtle); + --bs-alert-border-color: var(--bs-secondary-border-subtle); + --bs-alert-link-color: var(--bs-secondary-text-emphasis); +} + +.alert-success { + --bs-alert-color: var(--bs-success-text-emphasis); + --bs-alert-bg: var(--bs-success-bg-subtle); + --bs-alert-border-color: var(--bs-success-border-subtle); + --bs-alert-link-color: var(--bs-success-text-emphasis); +} + +.alert-info { + --bs-alert-color: var(--bs-info-text-emphasis); + --bs-alert-bg: var(--bs-info-bg-subtle); + --bs-alert-border-color: var(--bs-info-border-subtle); + --bs-alert-link-color: var(--bs-info-text-emphasis); +} + +.alert-warning { + --bs-alert-color: var(--bs-warning-text-emphasis); + --bs-alert-bg: var(--bs-warning-bg-subtle); + --bs-alert-border-color: var(--bs-warning-border-subtle); + --bs-alert-link-color: var(--bs-warning-text-emphasis); +} + +.alert-danger { + --bs-alert-color: var(--bs-danger-text-emphasis); + --bs-alert-bg: var(--bs-danger-bg-subtle); + --bs-alert-border-color: var(--bs-danger-border-subtle); + --bs-alert-link-color: var(--bs-danger-text-emphasis); +} + +.alert-light { + --bs-alert-color: var(--bs-light-text-emphasis); + --bs-alert-bg: var(--bs-light-bg-subtle); + --bs-alert-border-color: var(--bs-light-border-subtle); + --bs-alert-link-color: var(--bs-light-text-emphasis); +} + +.alert-dark { + --bs-alert-color: var(--bs-dark-text-emphasis); + --bs-alert-bg: var(--bs-dark-bg-subtle); + --bs-alert-border-color: var(--bs-dark-border-subtle); + --bs-alert-link-color: var(--bs-dark-text-emphasis); +} + +@keyframes progress-bar-stripes { + 0% { + background-position-x: var(--bs-progress-height); + } +} +.progress, +.progress-stacked { + --bs-progress-height: 1rem; + --bs-progress-font-size: 0.65625rem; + --bs-progress-bg: var(--bs-secondary-bg); + --bs-progress-border-radius: var(--bs-border-radius); + --bs-progress-box-shadow: var(--bs-box-shadow-inset); + --bs-progress-bar-color: #fff; + --bs-progress-bar-bg: #ff0055; + --bs-progress-bar-transition: width 0.6s ease; + display: flex; + height: var(--bs-progress-height); + overflow: hidden; + font-size: var(--bs-progress-font-size); + background-color: var(--bs-progress-bg); + border-radius: var(--bs-progress-border-radius); +} + +.progress-bar { + display: flex; + flex-direction: column; + justify-content: center; + overflow: hidden; + color: var(--bs-progress-bar-color); + text-align: center; + white-space: nowrap; + background-color: var(--bs-progress-bar-bg); + transition: var(--bs-progress-bar-transition); +} +@media (prefers-reduced-motion: reduce) { + .progress-bar { + transition: none; + } +} + +.progress-bar-striped { + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-size: var(--bs-progress-height) var(--bs-progress-height); +} + +.progress-stacked > .progress { + overflow: visible; +} + +.progress-stacked > .progress > .progress-bar { + width: 100%; +} + +.progress-bar-animated { + animation: 1s linear infinite progress-bar-stripes; +} +@media (prefers-reduced-motion: reduce) { + .progress-bar-animated { + animation: none; + } +} + +.list-group { + --bs-list-group-color: var(--bs-body-color); + --bs-list-group-bg: var(--bs-body-bg); + --bs-list-group-border-color: var(--bs-border-color); + --bs-list-group-border-width: var(--bs-border-width); + --bs-list-group-border-radius: var(--bs-border-radius); + --bs-list-group-item-padding-x: 1rem; + --bs-list-group-item-padding-y: 0.5rem; + --bs-list-group-action-color: var(--bs-secondary-color); + --bs-list-group-action-hover-color: var(--bs-emphasis-color); + --bs-list-group-action-hover-bg: var(--bs-tertiary-bg); + --bs-list-group-action-active-color: var(--bs-body-color); + --bs-list-group-action-active-bg: var(--bs-secondary-bg); + --bs-list-group-disabled-color: var(--bs-secondary-color); + --bs-list-group-disabled-bg: var(--bs-body-bg); + --bs-list-group-active-color: #fff; + --bs-list-group-active-bg: #ff0055; + --bs-list-group-active-border-color: #ff0055; + display: flex; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; + border-radius: var(--bs-list-group-border-radius); +} + +.list-group-numbered { + list-style-type: none; + counter-reset: section; +} +.list-group-numbered > .list-group-item::before { + content: counters(section, ".") ". "; + counter-increment: section; +} + +.list-group-item { + position: relative; + display: block; + padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x); + color: var(--bs-list-group-color); + background-color: var(--bs-list-group-bg); + border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color); +} +.list-group-item:first-child { + border-top-left-radius: inherit; + border-top-right-radius: inherit; +} +.list-group-item:last-child { + border-bottom-right-radius: inherit; + border-bottom-left-radius: inherit; +} +.list-group-item.disabled, .list-group-item:disabled { + color: var(--bs-list-group-disabled-color); + pointer-events: none; + background-color: var(--bs-list-group-disabled-bg); +} +.list-group-item.active { + z-index: 2; + color: var(--bs-list-group-active-color); + background-color: var(--bs-list-group-active-bg); + border-color: var(--bs-list-group-active-border-color); +} +.list-group-item + .list-group-item { + border-top-width: 0; +} +.list-group-item + .list-group-item.active { + margin-top: calc(-1 * var(--bs-list-group-border-width)); + border-top-width: var(--bs-list-group-border-width); +} + +.list-group-item-action { + width: 100%; + color: var(--bs-list-group-action-color); + text-align: inherit; +} +.list-group-item-action:not(.active):hover, .list-group-item-action:not(.active):focus { + z-index: 1; + color: var(--bs-list-group-action-hover-color); + text-decoration: none; + background-color: var(--bs-list-group-action-hover-bg); +} +.list-group-item-action:not(.active):active { + color: var(--bs-list-group-action-active-color); + background-color: var(--bs-list-group-action-active-bg); +} + +.list-group-horizontal { + flex-direction: row; +} +.list-group-horizontal > .list-group-item:first-child:not(:last-child) { + border-bottom-left-radius: var(--bs-list-group-border-radius); + border-top-right-radius: 0; +} +.list-group-horizontal > .list-group-item:last-child:not(:first-child) { + border-top-right-radius: var(--bs-list-group-border-radius); + border-bottom-left-radius: 0; +} +.list-group-horizontal > .list-group-item.active { + margin-top: 0; +} +.list-group-horizontal > .list-group-item + .list-group-item { + border-top-width: var(--bs-list-group-border-width); + border-left-width: 0; +} +.list-group-horizontal > .list-group-item + .list-group-item.active { + margin-left: calc(-1 * var(--bs-list-group-border-width)); + border-left-width: var(--bs-list-group-border-width); +} + +@media (min-width: 576px) { + .list-group-horizontal-sm { + flex-direction: row; + } + .list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) { + border-bottom-left-radius: var(--bs-list-group-border-radius); + border-top-right-radius: 0; + } + .list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) { + border-top-right-radius: var(--bs-list-group-border-radius); + border-bottom-left-radius: 0; + } + .list-group-horizontal-sm > .list-group-item.active { + margin-top: 0; + } + .list-group-horizontal-sm > .list-group-item + .list-group-item { + border-top-width: var(--bs-list-group-border-width); + border-left-width: 0; + } + .list-group-horizontal-sm > .list-group-item + .list-group-item.active { + margin-left: calc(-1 * var(--bs-list-group-border-width)); + border-left-width: var(--bs-list-group-border-width); + } +} +@media (min-width: 768px) { + .list-group-horizontal-md { + flex-direction: row; + } + .list-group-horizontal-md > .list-group-item:first-child:not(:last-child) { + border-bottom-left-radius: var(--bs-list-group-border-radius); + border-top-right-radius: 0; + } + .list-group-horizontal-md > .list-group-item:last-child:not(:first-child) { + border-top-right-radius: var(--bs-list-group-border-radius); + border-bottom-left-radius: 0; + } + .list-group-horizontal-md > .list-group-item.active { + margin-top: 0; + } + .list-group-horizontal-md > .list-group-item + .list-group-item { + border-top-width: var(--bs-list-group-border-width); + border-left-width: 0; + } + .list-group-horizontal-md > .list-group-item + .list-group-item.active { + margin-left: calc(-1 * var(--bs-list-group-border-width)); + border-left-width: var(--bs-list-group-border-width); + } +} +@media (min-width: 992px) { + .list-group-horizontal-lg { + flex-direction: row; + } + .list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) { + border-bottom-left-radius: var(--bs-list-group-border-radius); + border-top-right-radius: 0; + } + .list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) { + border-top-right-radius: var(--bs-list-group-border-radius); + border-bottom-left-radius: 0; + } + .list-group-horizontal-lg > .list-group-item.active { + margin-top: 0; + } + .list-group-horizontal-lg > .list-group-item + .list-group-item { + border-top-width: var(--bs-list-group-border-width); + border-left-width: 0; + } + .list-group-horizontal-lg > .list-group-item + .list-group-item.active { + margin-left: calc(-1 * var(--bs-list-group-border-width)); + border-left-width: var(--bs-list-group-border-width); + } +} +@media (min-width: 1200px) { + .list-group-horizontal-xl { + flex-direction: row; + } + .list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) { + border-bottom-left-radius: var(--bs-list-group-border-radius); + border-top-right-radius: 0; + } + .list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) { + border-top-right-radius: var(--bs-list-group-border-radius); + border-bottom-left-radius: 0; + } + .list-group-horizontal-xl > .list-group-item.active { + margin-top: 0; + } + .list-group-horizontal-xl > .list-group-item + .list-group-item { + border-top-width: var(--bs-list-group-border-width); + border-left-width: 0; + } + .list-group-horizontal-xl > .list-group-item + .list-group-item.active { + margin-left: calc(-1 * var(--bs-list-group-border-width)); + border-left-width: var(--bs-list-group-border-width); + } +} +@media (min-width: 1400px) { + .list-group-horizontal-xxl { + flex-direction: row; + } + .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) { + border-bottom-left-radius: var(--bs-list-group-border-radius); + border-top-right-radius: 0; + } + .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) { + border-top-right-radius: var(--bs-list-group-border-radius); + border-bottom-left-radius: 0; + } + .list-group-horizontal-xxl > .list-group-item.active { + margin-top: 0; + } + .list-group-horizontal-xxl > .list-group-item + .list-group-item { + border-top-width: var(--bs-list-group-border-width); + border-left-width: 0; + } + .list-group-horizontal-xxl > .list-group-item + .list-group-item.active { + margin-left: calc(-1 * var(--bs-list-group-border-width)); + border-left-width: var(--bs-list-group-border-width); + } +} +.list-group-flush { + border-radius: 0; +} +.list-group-flush > .list-group-item { + border-width: 0 0 var(--bs-list-group-border-width); +} +.list-group-flush > .list-group-item:last-child { + border-bottom-width: 0; +} + +.list-group-item-primary { + --bs-list-group-color: var(--bs-primary-text-emphasis); + --bs-list-group-bg: var(--bs-primary-bg-subtle); + --bs-list-group-border-color: var(--bs-primary-border-subtle); + --bs-list-group-action-hover-color: var(--bs-emphasis-color); + --bs-list-group-action-hover-bg: var(--bs-primary-border-subtle); + --bs-list-group-action-active-color: var(--bs-emphasis-color); + --bs-list-group-action-active-bg: var(--bs-primary-border-subtle); + --bs-list-group-active-color: var(--bs-primary-bg-subtle); + --bs-list-group-active-bg: var(--bs-primary-text-emphasis); + --bs-list-group-active-border-color: var(--bs-primary-text-emphasis); +} + +.list-group-item-secondary { + --bs-list-group-color: var(--bs-secondary-text-emphasis); + --bs-list-group-bg: var(--bs-secondary-bg-subtle); + --bs-list-group-border-color: var(--bs-secondary-border-subtle); + --bs-list-group-action-hover-color: var(--bs-emphasis-color); + --bs-list-group-action-hover-bg: var(--bs-secondary-border-subtle); + --bs-list-group-action-active-color: var(--bs-emphasis-color); + --bs-list-group-action-active-bg: var(--bs-secondary-border-subtle); + --bs-list-group-active-color: var(--bs-secondary-bg-subtle); + --bs-list-group-active-bg: var(--bs-secondary-text-emphasis); + --bs-list-group-active-border-color: var(--bs-secondary-text-emphasis); +} + +.list-group-item-success { + --bs-list-group-color: var(--bs-success-text-emphasis); + --bs-list-group-bg: var(--bs-success-bg-subtle); + --bs-list-group-border-color: var(--bs-success-border-subtle); + --bs-list-group-action-hover-color: var(--bs-emphasis-color); + --bs-list-group-action-hover-bg: var(--bs-success-border-subtle); + --bs-list-group-action-active-color: var(--bs-emphasis-color); + --bs-list-group-action-active-bg: var(--bs-success-border-subtle); + --bs-list-group-active-color: var(--bs-success-bg-subtle); + --bs-list-group-active-bg: var(--bs-success-text-emphasis); + --bs-list-group-active-border-color: var(--bs-success-text-emphasis); +} + +.list-group-item-info { + --bs-list-group-color: var(--bs-info-text-emphasis); + --bs-list-group-bg: var(--bs-info-bg-subtle); + --bs-list-group-border-color: var(--bs-info-border-subtle); + --bs-list-group-action-hover-color: var(--bs-emphasis-color); + --bs-list-group-action-hover-bg: var(--bs-info-border-subtle); + --bs-list-group-action-active-color: var(--bs-emphasis-color); + --bs-list-group-action-active-bg: var(--bs-info-border-subtle); + --bs-list-group-active-color: var(--bs-info-bg-subtle); + --bs-list-group-active-bg: var(--bs-info-text-emphasis); + --bs-list-group-active-border-color: var(--bs-info-text-emphasis); +} + +.list-group-item-warning { + --bs-list-group-color: var(--bs-warning-text-emphasis); + --bs-list-group-bg: var(--bs-warning-bg-subtle); + --bs-list-group-border-color: var(--bs-warning-border-subtle); + --bs-list-group-action-hover-color: var(--bs-emphasis-color); + --bs-list-group-action-hover-bg: var(--bs-warning-border-subtle); + --bs-list-group-action-active-color: var(--bs-emphasis-color); + --bs-list-group-action-active-bg: var(--bs-warning-border-subtle); + --bs-list-group-active-color: var(--bs-warning-bg-subtle); + --bs-list-group-active-bg: var(--bs-warning-text-emphasis); + --bs-list-group-active-border-color: var(--bs-warning-text-emphasis); +} + +.list-group-item-danger { + --bs-list-group-color: var(--bs-danger-text-emphasis); + --bs-list-group-bg: var(--bs-danger-bg-subtle); + --bs-list-group-border-color: var(--bs-danger-border-subtle); + --bs-list-group-action-hover-color: var(--bs-emphasis-color); + --bs-list-group-action-hover-bg: var(--bs-danger-border-subtle); + --bs-list-group-action-active-color: var(--bs-emphasis-color); + --bs-list-group-action-active-bg: var(--bs-danger-border-subtle); + --bs-list-group-active-color: var(--bs-danger-bg-subtle); + --bs-list-group-active-bg: var(--bs-danger-text-emphasis); + --bs-list-group-active-border-color: var(--bs-danger-text-emphasis); +} + +.list-group-item-light { + --bs-list-group-color: var(--bs-light-text-emphasis); + --bs-list-group-bg: var(--bs-light-bg-subtle); + --bs-list-group-border-color: var(--bs-light-border-subtle); + --bs-list-group-action-hover-color: var(--bs-emphasis-color); + --bs-list-group-action-hover-bg: var(--bs-light-border-subtle); + --bs-list-group-action-active-color: var(--bs-emphasis-color); + --bs-list-group-action-active-bg: var(--bs-light-border-subtle); + --bs-list-group-active-color: var(--bs-light-bg-subtle); + --bs-list-group-active-bg: var(--bs-light-text-emphasis); + --bs-list-group-active-border-color: var(--bs-light-text-emphasis); +} + +.list-group-item-dark { + --bs-list-group-color: var(--bs-dark-text-emphasis); + --bs-list-group-bg: var(--bs-dark-bg-subtle); + --bs-list-group-border-color: var(--bs-dark-border-subtle); + --bs-list-group-action-hover-color: var(--bs-emphasis-color); + --bs-list-group-action-hover-bg: var(--bs-dark-border-subtle); + --bs-list-group-action-active-color: var(--bs-emphasis-color); + --bs-list-group-action-active-bg: var(--bs-dark-border-subtle); + --bs-list-group-active-color: var(--bs-dark-bg-subtle); + --bs-list-group-active-bg: var(--bs-dark-text-emphasis); + --bs-list-group-active-border-color: var(--bs-dark-text-emphasis); +} + +.btn-close { + --bs-btn-close-color: #000; + --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e"); + --bs-btn-close-opacity: 0.5; + --bs-btn-close-hover-opacity: 0.75; + --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(255, 0, 85, 0.25); + --bs-btn-close-focus-opacity: 1; + --bs-btn-close-disabled-opacity: 0.25; + box-sizing: content-box; + width: 1em; + height: 1em; + padding: 0.25em 0.25em; + color: var(--bs-btn-close-color); + background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat; + filter: var(--bs-btn-close-filter); + border: 0; + border-radius: 0.375rem; + opacity: var(--bs-btn-close-opacity); +} +.btn-close:hover { + color: var(--bs-btn-close-color); + text-decoration: none; + opacity: var(--bs-btn-close-hover-opacity); +} +.btn-close:focus { + outline: 0; + box-shadow: var(--bs-btn-close-focus-shadow); + opacity: var(--bs-btn-close-focus-opacity); +} +.btn-close:disabled, .btn-close.disabled { + pointer-events: none; + user-select: none; + opacity: var(--bs-btn-close-disabled-opacity); +} + +.btn-close-white { + --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%); +} + +:root, +[data-bs-theme=light] { + --bs-btn-close-filter: ; +} + +[data-bs-theme=dark] { + --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%); +} + +.toast { + --bs-toast-zindex: 1090; + --bs-toast-padding-x: 0.75rem; + --bs-toast-padding-y: 0.5rem; + --bs-toast-spacing: 1.5rem; + --bs-toast-max-width: 350px; + --bs-toast-font-size: 0.875rem; + --bs-toast-color: ; + --bs-toast-bg: rgba(var(--bs-body-bg-rgb), 0.85); + --bs-toast-border-width: var(--bs-border-width); + --bs-toast-border-color: var(--bs-border-color-translucent); + --bs-toast-border-radius: var(--bs-border-radius); + --bs-toast-box-shadow: var(--bs-box-shadow); + --bs-toast-header-color: var(--bs-secondary-color); + --bs-toast-header-bg: rgba(var(--bs-body-bg-rgb), 0.85); + --bs-toast-header-border-color: var(--bs-border-color-translucent); + width: var(--bs-toast-max-width); + max-width: 100%; + font-size: var(--bs-toast-font-size); + color: var(--bs-toast-color); + pointer-events: auto; + background-color: var(--bs-toast-bg); + background-clip: padding-box; + border: var(--bs-toast-border-width) solid var(--bs-toast-border-color); + box-shadow: var(--bs-toast-box-shadow); + border-radius: var(--bs-toast-border-radius); +} +.toast.showing { + opacity: 0; +} +.toast:not(.show) { + display: none; +} + +.toast-container { + --bs-toast-zindex: 1090; + position: absolute; + z-index: var(--bs-toast-zindex); + width: max-content; + max-width: 100%; + pointer-events: none; +} +.toast-container > :not(:last-child) { + margin-bottom: var(--bs-toast-spacing); +} + +.toast-header { + display: flex; + align-items: center; + padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x); + color: var(--bs-toast-header-color); + background-color: var(--bs-toast-header-bg); + background-clip: padding-box; + border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color); + border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width)); + border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width)); +} +.toast-header .btn-close { + margin-right: calc(-0.5 * var(--bs-toast-padding-x)); + margin-left: var(--bs-toast-padding-x); +} + +.toast-body { + padding: var(--bs-toast-padding-x); + word-wrap: break-word; +} + +.modal { + --bs-modal-zindex: 1055; + --bs-modal-width: 500px; + --bs-modal-padding: 1rem; + --bs-modal-margin: 0.5rem; + --bs-modal-color: var(--bs-body-color); + --bs-modal-bg: var(--bs-body-bg); + --bs-modal-border-color: var(--bs-border-color-translucent); + --bs-modal-border-width: var(--bs-border-width); + --bs-modal-border-radius: var(--bs-border-radius-lg); + --bs-modal-box-shadow: var(--bs-box-shadow-sm); + --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width))); + --bs-modal-header-padding-x: 1rem; + --bs-modal-header-padding-y: 1rem; + --bs-modal-header-padding: 1rem 1rem; + --bs-modal-header-border-color: var(--bs-border-color); + --bs-modal-header-border-width: var(--bs-border-width); + --bs-modal-title-line-height: 1.5; + --bs-modal-footer-gap: 0.5rem; + --bs-modal-footer-bg: ; + --bs-modal-footer-border-color: var(--bs-border-color); + --bs-modal-footer-border-width: var(--bs-border-width); + position: fixed; + top: 0; + left: 0; + z-index: var(--bs-modal-zindex); + display: none; + width: 100%; + height: 100%; + overflow-x: hidden; + overflow-y: auto; + outline: 0; +} + +.modal-dialog { + position: relative; + width: auto; + margin: var(--bs-modal-margin); + pointer-events: none; +} +.modal.fade .modal-dialog { + transform: translate(0, -50px); + transition: transform 0.3s ease-out; +} +@media (prefers-reduced-motion: reduce) { + .modal.fade .modal-dialog { + transition: none; + } +} +.modal.show .modal-dialog { + transform: none; +} +.modal.modal-static .modal-dialog { + transform: scale(1.02); +} + +.modal-dialog-scrollable { + height: calc(100% - var(--bs-modal-margin) * 2); +} +.modal-dialog-scrollable .modal-content { + max-height: 100%; + overflow: hidden; +} +.modal-dialog-scrollable .modal-body { + overflow-y: auto; +} + +.modal-dialog-centered { + display: flex; + align-items: center; + min-height: calc(100% - var(--bs-modal-margin) * 2); +} + +.modal-content { + position: relative; + display: flex; + flex-direction: column; + width: 100%; + color: var(--bs-modal-color); + pointer-events: auto; + background-color: var(--bs-modal-bg); + background-clip: padding-box; + border: var(--bs-modal-border-width) solid var(--bs-modal-border-color); + border-radius: var(--bs-modal-border-radius); + outline: 0; +} + +.modal-backdrop { + --bs-backdrop-zindex: 1050; + --bs-backdrop-bg: #000; + --bs-backdrop-opacity: 0.5; + position: fixed; + top: 0; + left: 0; + z-index: var(--bs-backdrop-zindex); + width: 100vw; + height: 100vh; + background-color: var(--bs-backdrop-bg); +} +.modal-backdrop.fade { + opacity: 0; +} +.modal-backdrop.show { + opacity: var(--bs-backdrop-opacity); +} + +.modal-header { + display: flex; + flex-shrink: 0; + align-items: center; + padding: var(--bs-modal-header-padding); + border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color); + border-top-left-radius: var(--bs-modal-inner-border-radius); + border-top-right-radius: var(--bs-modal-inner-border-radius); +} +.modal-header .btn-close { + padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5); + margin-top: calc(-0.5 * var(--bs-modal-header-padding-y)); + margin-right: calc(-0.5 * var(--bs-modal-header-padding-x)); + margin-bottom: calc(-0.5 * var(--bs-modal-header-padding-y)); + margin-left: auto; +} + +.modal-title { + margin-bottom: 0; + line-height: var(--bs-modal-title-line-height); +} + +.modal-body { + position: relative; + flex: 1 1 auto; + padding: var(--bs-modal-padding); +} + +.modal-footer { + display: flex; + flex-shrink: 0; + flex-wrap: wrap; + align-items: center; + justify-content: flex-end; + padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5); + background-color: var(--bs-modal-footer-bg); + border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color); + border-bottom-right-radius: var(--bs-modal-inner-border-radius); + border-bottom-left-radius: var(--bs-modal-inner-border-radius); +} +.modal-footer > * { + margin: calc(var(--bs-modal-footer-gap) * 0.5); +} + +@media (min-width: 576px) { + .modal { + --bs-modal-margin: 1.75rem; + --bs-modal-box-shadow: var(--bs-box-shadow); + } + .modal-dialog { + max-width: var(--bs-modal-width); + margin-right: auto; + margin-left: auto; + } + .modal-sm { + --bs-modal-width: 300px; + } +} +@media (min-width: 992px) { + .modal-lg, + .modal-xl { + --bs-modal-width: 800px; + } +} +@media (min-width: 1200px) { + .modal-xl { + --bs-modal-width: 1140px; + } +} +.modal-fullscreen { + width: 100vw; + max-width: none; + height: 100%; + margin: 0; +} +.modal-fullscreen .modal-content { + height: 100%; + border: 0; + border-radius: 0; +} +.modal-fullscreen .modal-header, +.modal-fullscreen .modal-footer { + border-radius: 0; +} +.modal-fullscreen .modal-body { + overflow-y: auto; +} + +@media (max-width: 575.98px) { + .modal-fullscreen-sm-down { + width: 100vw; + max-width: none; + height: 100%; + margin: 0; + } + .modal-fullscreen-sm-down .modal-content { + height: 100%; + border: 0; + border-radius: 0; + } + .modal-fullscreen-sm-down .modal-header, + .modal-fullscreen-sm-down .modal-footer { + border-radius: 0; + } + .modal-fullscreen-sm-down .modal-body { + overflow-y: auto; + } +} +@media (max-width: 767.98px) { + .modal-fullscreen-md-down { + width: 100vw; + max-width: none; + height: 100%; + margin: 0; + } + .modal-fullscreen-md-down .modal-content { + height: 100%; + border: 0; + border-radius: 0; + } + .modal-fullscreen-md-down .modal-header, + .modal-fullscreen-md-down .modal-footer { + border-radius: 0; + } + .modal-fullscreen-md-down .modal-body { + overflow-y: auto; + } +} +@media (max-width: 991.98px) { + .modal-fullscreen-lg-down { + width: 100vw; + max-width: none; + height: 100%; + margin: 0; + } + .modal-fullscreen-lg-down .modal-content { + height: 100%; + border: 0; + border-radius: 0; + } + .modal-fullscreen-lg-down .modal-header, + .modal-fullscreen-lg-down .modal-footer { + border-radius: 0; + } + .modal-fullscreen-lg-down .modal-body { + overflow-y: auto; + } +} +@media (max-width: 1199.98px) { + .modal-fullscreen-xl-down { + width: 100vw; + max-width: none; + height: 100%; + margin: 0; + } + .modal-fullscreen-xl-down .modal-content { + height: 100%; + border: 0; + border-radius: 0; + } + .modal-fullscreen-xl-down .modal-header, + .modal-fullscreen-xl-down .modal-footer { + border-radius: 0; + } + .modal-fullscreen-xl-down .modal-body { + overflow-y: auto; + } +} +@media (max-width: 1399.98px) { + .modal-fullscreen-xxl-down { + width: 100vw; + max-width: none; + height: 100%; + margin: 0; + } + .modal-fullscreen-xxl-down .modal-content { + height: 100%; + border: 0; + border-radius: 0; + } + .modal-fullscreen-xxl-down .modal-header, + .modal-fullscreen-xxl-down .modal-footer { + border-radius: 0; + } + .modal-fullscreen-xxl-down .modal-body { + overflow-y: auto; + } +} +.tooltip { + --bs-tooltip-zindex: 1080; + --bs-tooltip-max-width: 200px; + --bs-tooltip-padding-x: 0.5rem; + --bs-tooltip-padding-y: 0.25rem; + --bs-tooltip-margin: ; + --bs-tooltip-font-size: 0.74375rem; + --bs-tooltip-color: var(--bs-body-bg); + --bs-tooltip-bg: var(--bs-emphasis-color); + --bs-tooltip-border-radius: var(--bs-border-radius); + --bs-tooltip-opacity: 0.9; + --bs-tooltip-arrow-width: 0.8rem; + --bs-tooltip-arrow-height: 0.4rem; + z-index: var(--bs-tooltip-zindex); + display: block; + margin: var(--bs-tooltip-margin); + font-family: var(--bs-font-sans-serif); + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + white-space: normal; + word-spacing: normal; + line-break: auto; + font-size: var(--bs-tooltip-font-size); + word-wrap: break-word; + opacity: 0; +} +.tooltip.show { + opacity: var(--bs-tooltip-opacity); +} +.tooltip .tooltip-arrow { + display: block; + width: var(--bs-tooltip-arrow-width); + height: var(--bs-tooltip-arrow-height); +} +.tooltip .tooltip-arrow::before { + position: absolute; + content: ""; + border-color: transparent; + border-style: solid; +} + +.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow { + bottom: calc(-1 * var(--bs-tooltip-arrow-height)); +} +.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before { + top: -1px; + border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0; + border-top-color: var(--bs-tooltip-bg); +} + +/* rtl:begin:ignore */ +.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow { + left: calc(-1 * var(--bs-tooltip-arrow-height)); + width: var(--bs-tooltip-arrow-height); + height: var(--bs-tooltip-arrow-width); +} +.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before { + right: -1px; + border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0; + border-right-color: var(--bs-tooltip-bg); +} + +/* rtl:end:ignore */ +.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow { + top: calc(-1 * var(--bs-tooltip-arrow-height)); +} +.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before { + bottom: -1px; + border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height); + border-bottom-color: var(--bs-tooltip-bg); +} + +/* rtl:begin:ignore */ +.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow { + right: calc(-1 * var(--bs-tooltip-arrow-height)); + width: var(--bs-tooltip-arrow-height); + height: var(--bs-tooltip-arrow-width); +} +.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before { + left: -1px; + border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height); + border-left-color: var(--bs-tooltip-bg); +} + +/* rtl:end:ignore */ +.tooltip-inner { + max-width: var(--bs-tooltip-max-width); + padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x); + color: var(--bs-tooltip-color); + text-align: center; + background-color: var(--bs-tooltip-bg); + border-radius: var(--bs-tooltip-border-radius); +} + +.popover { + --bs-popover-zindex: 1070; + --bs-popover-max-width: 276px; + --bs-popover-font-size: 0.74375rem; + --bs-popover-bg: var(--bs-body-bg); + --bs-popover-border-width: var(--bs-border-width); + --bs-popover-border-color: var(--bs-border-color-translucent); + --bs-popover-border-radius: var(--bs-border-radius-lg); + --bs-popover-inner-border-radius: calc(var(--bs-border-radius-lg) - var(--bs-border-width)); + --bs-popover-box-shadow: var(--bs-box-shadow); + --bs-popover-header-padding-x: 1rem; + --bs-popover-header-padding-y: 0.5rem; + --bs-popover-header-font-size: 0.875rem; + --bs-popover-header-color: inherit; + --bs-popover-header-bg: var(--bs-secondary-bg); + --bs-popover-body-padding-x: 1rem; + --bs-popover-body-padding-y: 1rem; + --bs-popover-body-color: var(--bs-body-color); + --bs-popover-arrow-width: 1rem; + --bs-popover-arrow-height: 0.5rem; + --bs-popover-arrow-border: var(--bs-popover-border-color); + z-index: var(--bs-popover-zindex); + display: block; + max-width: var(--bs-popover-max-width); + font-family: var(--bs-font-sans-serif); + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + white-space: normal; + word-spacing: normal; + line-break: auto; + font-size: var(--bs-popover-font-size); + word-wrap: break-word; + background-color: var(--bs-popover-bg); + background-clip: padding-box; + border: var(--bs-popover-border-width) solid var(--bs-popover-border-color); + border-radius: var(--bs-popover-border-radius); +} +.popover .popover-arrow { + display: block; + width: var(--bs-popover-arrow-width); + height: var(--bs-popover-arrow-height); +} +.popover .popover-arrow::before, .popover .popover-arrow::after { + position: absolute; + display: block; + content: ""; + border-color: transparent; + border-style: solid; + border-width: 0; +} + +.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow { + bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width)); +} +.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before, .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after { + border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0; +} +.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before { + bottom: 0; + border-top-color: var(--bs-popover-arrow-border); +} +.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after { + bottom: var(--bs-popover-border-width); + border-top-color: var(--bs-popover-bg); +} + +/* rtl:begin:ignore */ +.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow { + left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width)); + width: var(--bs-popover-arrow-height); + height: var(--bs-popover-arrow-width); +} +.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before, .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after { + border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0; +} +.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before { + left: 0; + border-right-color: var(--bs-popover-arrow-border); +} +.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after { + left: var(--bs-popover-border-width); + border-right-color: var(--bs-popover-bg); +} + +/* rtl:end:ignore */ +.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow { + top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width)); +} +.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after { + border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height); +} +.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before { + top: 0; + border-bottom-color: var(--bs-popover-arrow-border); +} +.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after { + top: var(--bs-popover-border-width); + border-bottom-color: var(--bs-popover-bg); +} +.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before { + position: absolute; + top: 0; + left: 50%; + display: block; + width: var(--bs-popover-arrow-width); + margin-left: calc(-0.5 * var(--bs-popover-arrow-width)); + content: ""; + border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg); +} + +/* rtl:begin:ignore */ +.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow { + right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width)); + width: var(--bs-popover-arrow-height); + height: var(--bs-popover-arrow-width); +} +.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before, .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after { + border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height); +} +.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before { + right: 0; + border-left-color: var(--bs-popover-arrow-border); +} +.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after { + right: var(--bs-popover-border-width); + border-left-color: var(--bs-popover-bg); +} + +/* rtl:end:ignore */ +.popover-header { + padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x); + margin-bottom: 0; + font-size: var(--bs-popover-header-font-size); + color: var(--bs-popover-header-color); + background-color: var(--bs-popover-header-bg); + border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color); + border-top-left-radius: var(--bs-popover-inner-border-radius); + border-top-right-radius: var(--bs-popover-inner-border-radius); +} +.popover-header:empty { + display: none; +} + +.popover-body { + padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x); + color: var(--bs-popover-body-color); +} + +.carousel { + position: relative; +} + +.carousel.pointer-event { + touch-action: pan-y; +} + +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; +} +.carousel-inner::after { + display: block; + clear: both; + content: ""; +} + +.carousel-item { + position: relative; + display: none; + float: left; + width: 100%; + margin-right: -100%; + backface-visibility: hidden; + transition: transform 0.6s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .carousel-item { + transition: none; + } +} + +.carousel-item.active, +.carousel-item-next, +.carousel-item-prev { + display: block; +} + +.carousel-item-next:not(.carousel-item-start), +.active.carousel-item-end { + transform: translateX(100%); +} + +.carousel-item-prev:not(.carousel-item-end), +.active.carousel-item-start { + transform: translateX(-100%); +} + +.carousel-fade .carousel-item { + opacity: 0; + transition-property: opacity; + transform: none; +} +.carousel-fade .carousel-item.active, +.carousel-fade .carousel-item-next.carousel-item-start, +.carousel-fade .carousel-item-prev.carousel-item-end { + z-index: 1; + opacity: 1; +} +.carousel-fade .active.carousel-item-start, +.carousel-fade .active.carousel-item-end { + z-index: 0; + opacity: 0; + transition: opacity 0s 0.6s; +} +@media (prefers-reduced-motion: reduce) { + .carousel-fade .active.carousel-item-start, + .carousel-fade .active.carousel-item-end { + transition: none; + } +} + +.carousel-control-prev, +.carousel-control-next { + position: absolute; + top: 0; + bottom: 0; + z-index: 1; + display: flex; + align-items: center; + justify-content: center; + width: 15%; + padding: 0; + color: #fff; + text-align: center; + background: none; + filter: var(--bs-carousel-control-icon-filter); + border: 0; + opacity: 0.5; + transition: opacity 0.15s ease; +} +@media (prefers-reduced-motion: reduce) { + .carousel-control-prev, + .carousel-control-next { + transition: none; + } +} +.carousel-control-prev:hover, .carousel-control-prev:focus, +.carousel-control-next:hover, +.carousel-control-next:focus { + color: #fff; + text-decoration: none; + outline: 0; + opacity: 0.9; +} + +.carousel-control-prev { + left: 0; +} + +.carousel-control-next { + right: 0; +} + +.carousel-control-prev-icon, +.carousel-control-next-icon { + display: inline-block; + width: 2rem; + height: 2rem; + background-repeat: no-repeat; + background-position: 50%; + background-size: 100% 100%; +} + +.carousel-control-prev-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e")*/; +} + +.carousel-control-next-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e")*/; +} + +.carousel-indicators { + position: absolute; + right: 0; + bottom: 0; + left: 0; + z-index: 2; + display: flex; + justify-content: center; + padding: 0; + margin-right: 15%; + margin-bottom: 1rem; + margin-left: 15%; +} +.carousel-indicators [data-bs-target] { + box-sizing: content-box; + flex: 0 1 auto; + width: 30px; + height: 3px; + padding: 0; + margin-right: 3px; + margin-left: 3px; + text-indent: -999px; + cursor: pointer; + background-color: var(--bs-carousel-indicator-active-bg); + background-clip: padding-box; + border: 0; + border-top: 10px solid transparent; + border-bottom: 10px solid transparent; + opacity: 0.5; + transition: opacity 0.6s ease; +} +@media (prefers-reduced-motion: reduce) { + .carousel-indicators [data-bs-target] { + transition: none; + } +} +.carousel-indicators .active { + opacity: 1; +} + +.carousel-caption { + position: absolute; + right: 15%; + bottom: 1.25rem; + left: 15%; + padding-top: 1.25rem; + padding-bottom: 1.25rem; + color: var(--bs-carousel-caption-color); + text-align: center; +} + +.carousel-dark { + --bs-carousel-indicator-active-bg: #000; + --bs-carousel-caption-color: #000; + --bs-carousel-control-icon-filter: invert(1) grayscale(100); +} + +:root, +[data-bs-theme=light] { + --bs-carousel-indicator-active-bg: #fff; + --bs-carousel-caption-color: #fff; + --bs-carousel-control-icon-filter: ; +} + +[data-bs-theme=dark] { + --bs-carousel-indicator-active-bg: #000; + --bs-carousel-caption-color: #000; + --bs-carousel-control-icon-filter: invert(1) grayscale(100); +} + +.spinner-grow, +.spinner-border { + display: inline-block; + flex-shrink: 0; + width: var(--bs-spinner-width); + height: var(--bs-spinner-height); + vertical-align: var(--bs-spinner-vertical-align); + border-radius: 50%; + animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name); +} + +@keyframes spinner-border { + to { + transform: rotate(360deg) /* rtl:ignore */; + } +} +.spinner-border { + --bs-spinner-width: 2rem; + --bs-spinner-height: 2rem; + --bs-spinner-vertical-align: -0.125em; + --bs-spinner-border-width: 0.25em; + --bs-spinner-animation-speed: 0.75s; + --bs-spinner-animation-name: spinner-border; + border: var(--bs-spinner-border-width) solid currentcolor; + border-right-color: transparent; +} + +.spinner-border-sm { + --bs-spinner-width: 1rem; + --bs-spinner-height: 1rem; + --bs-spinner-border-width: 0.2em; +} + +@keyframes spinner-grow { + 0% { + transform: scale(0); + } + 50% { + opacity: 1; + transform: none; + } +} +.spinner-grow { + --bs-spinner-width: 2rem; + --bs-spinner-height: 2rem; + --bs-spinner-vertical-align: -0.125em; + --bs-spinner-animation-speed: 0.75s; + --bs-spinner-animation-name: spinner-grow; + background-color: currentcolor; + opacity: 0; +} + +.spinner-grow-sm { + --bs-spinner-width: 1rem; + --bs-spinner-height: 1rem; +} + +@media (prefers-reduced-motion: reduce) { + .spinner-border, + .spinner-grow { + --bs-spinner-animation-speed: 1.5s; + } +} +.offcanvas, .offcanvas-xxl, .offcanvas-xl, .offcanvas-lg, .offcanvas-md, .offcanvas-sm { + --bs-offcanvas-zindex: 1045; + --bs-offcanvas-width: 400px; + --bs-offcanvas-height: 30vh; + --bs-offcanvas-padding-x: 1rem; + --bs-offcanvas-padding-y: 1rem; + --bs-offcanvas-color: var(--bs-body-color); + --bs-offcanvas-bg: var(--bs-body-bg); + --bs-offcanvas-border-width: var(--bs-border-width); + --bs-offcanvas-border-color: var(--bs-border-color-translucent); + --bs-offcanvas-box-shadow: var(--bs-box-shadow-sm); + --bs-offcanvas-transition: transform 0.3s ease-in-out; + --bs-offcanvas-title-line-height: 1.5; +} + +@media (max-width: 575.98px) { + .offcanvas-sm { + position: fixed; + bottom: 0; + z-index: var(--bs-offcanvas-zindex); + display: flex; + flex-direction: column; + max-width: 100%; + color: var(--bs-offcanvas-color); + visibility: hidden; + background-color: var(--bs-offcanvas-bg); + background-clip: padding-box; + outline: 0; + transition: var(--bs-offcanvas-transition); + } +} +@media (max-width: 575.98px) and (prefers-reduced-motion: reduce) { + .offcanvas-sm { + transition: none; + } +} +@media (max-width: 575.98px) { + .offcanvas-sm.offcanvas-start { + top: 0; + left: 0; + width: var(--bs-offcanvas-width); + border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateX(-100%); + } + .offcanvas-sm.offcanvas-end { + top: 0; + right: 0; + width: var(--bs-offcanvas-width); + border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateX(100%); + } + .offcanvas-sm.offcanvas-top { + top: 0; + right: 0; + left: 0; + height: var(--bs-offcanvas-height); + max-height: 100%; + border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateY(-100%); + } + .offcanvas-sm.offcanvas-bottom { + right: 0; + left: 0; + height: var(--bs-offcanvas-height); + max-height: 100%; + border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateY(100%); + } + .offcanvas-sm.showing, .offcanvas-sm.show:not(.hiding) { + transform: none; + } + .offcanvas-sm.showing, .offcanvas-sm.hiding, .offcanvas-sm.show { + visibility: visible; + } +} +@media (min-width: 576px) { + .offcanvas-sm { + --bs-offcanvas-height: auto; + --bs-offcanvas-border-width: 0; + background-color: transparent !important; + } + .offcanvas-sm .offcanvas-header { + display: none; + } + .offcanvas-sm .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + background-color: transparent !important; + } +} + +@media (max-width: 767.98px) { + .offcanvas-md { + position: fixed; + bottom: 0; + z-index: var(--bs-offcanvas-zindex); + display: flex; + flex-direction: column; + max-width: 100%; + color: var(--bs-offcanvas-color); + visibility: hidden; + background-color: var(--bs-offcanvas-bg); + background-clip: padding-box; + outline: 0; + transition: var(--bs-offcanvas-transition); + } +} +@media (max-width: 767.98px) and (prefers-reduced-motion: reduce) { + .offcanvas-md { + transition: none; + } +} +@media (max-width: 767.98px) { + .offcanvas-md.offcanvas-start { + top: 0; + left: 0; + width: var(--bs-offcanvas-width); + border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateX(-100%); + } + .offcanvas-md.offcanvas-end { + top: 0; + right: 0; + width: var(--bs-offcanvas-width); + border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateX(100%); + } + .offcanvas-md.offcanvas-top { + top: 0; + right: 0; + left: 0; + height: var(--bs-offcanvas-height); + max-height: 100%; + border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateY(-100%); + } + .offcanvas-md.offcanvas-bottom { + right: 0; + left: 0; + height: var(--bs-offcanvas-height); + max-height: 100%; + border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateY(100%); + } + .offcanvas-md.showing, .offcanvas-md.show:not(.hiding) { + transform: none; + } + .offcanvas-md.showing, .offcanvas-md.hiding, .offcanvas-md.show { + visibility: visible; + } +} +@media (min-width: 768px) { + .offcanvas-md { + --bs-offcanvas-height: auto; + --bs-offcanvas-border-width: 0; + background-color: transparent !important; + } + .offcanvas-md .offcanvas-header { + display: none; + } + .offcanvas-md .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + background-color: transparent !important; + } +} + +@media (max-width: 991.98px) { + .offcanvas-lg { + position: fixed; + bottom: 0; + z-index: var(--bs-offcanvas-zindex); + display: flex; + flex-direction: column; + max-width: 100%; + color: var(--bs-offcanvas-color); + visibility: hidden; + background-color: var(--bs-offcanvas-bg); + background-clip: padding-box; + outline: 0; + transition: var(--bs-offcanvas-transition); + } +} +@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) { + .offcanvas-lg { + transition: none; + } +} +@media (max-width: 991.98px) { + .offcanvas-lg.offcanvas-start { + top: 0; + left: 0; + width: var(--bs-offcanvas-width); + border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateX(-100%); + } + .offcanvas-lg.offcanvas-end { + top: 0; + right: 0; + width: var(--bs-offcanvas-width); + border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateX(100%); + } + .offcanvas-lg.offcanvas-top { + top: 0; + right: 0; + left: 0; + height: var(--bs-offcanvas-height); + max-height: 100%; + border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateY(-100%); + } + .offcanvas-lg.offcanvas-bottom { + right: 0; + left: 0; + height: var(--bs-offcanvas-height); + max-height: 100%; + border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateY(100%); + } + .offcanvas-lg.showing, .offcanvas-lg.show:not(.hiding) { + transform: none; + } + .offcanvas-lg.showing, .offcanvas-lg.hiding, .offcanvas-lg.show { + visibility: visible; + } +} +@media (min-width: 992px) { + .offcanvas-lg { + --bs-offcanvas-height: auto; + --bs-offcanvas-border-width: 0; + background-color: transparent !important; + } + .offcanvas-lg .offcanvas-header { + display: none; + } + .offcanvas-lg .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + background-color: transparent !important; + } +} + +@media (max-width: 1199.98px) { + .offcanvas-xl { + position: fixed; + bottom: 0; + z-index: var(--bs-offcanvas-zindex); + display: flex; + flex-direction: column; + max-width: 100%; + color: var(--bs-offcanvas-color); + visibility: hidden; + background-color: var(--bs-offcanvas-bg); + background-clip: padding-box; + outline: 0; + transition: var(--bs-offcanvas-transition); + } +} +@media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) { + .offcanvas-xl { + transition: none; + } +} +@media (max-width: 1199.98px) { + .offcanvas-xl.offcanvas-start { + top: 0; + left: 0; + width: var(--bs-offcanvas-width); + border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateX(-100%); + } + .offcanvas-xl.offcanvas-end { + top: 0; + right: 0; + width: var(--bs-offcanvas-width); + border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateX(100%); + } + .offcanvas-xl.offcanvas-top { + top: 0; + right: 0; + left: 0; + height: var(--bs-offcanvas-height); + max-height: 100%; + border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateY(-100%); + } + .offcanvas-xl.offcanvas-bottom { + right: 0; + left: 0; + height: var(--bs-offcanvas-height); + max-height: 100%; + border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateY(100%); + } + .offcanvas-xl.showing, .offcanvas-xl.show:not(.hiding) { + transform: none; + } + .offcanvas-xl.showing, .offcanvas-xl.hiding, .offcanvas-xl.show { + visibility: visible; + } +} +@media (min-width: 1200px) { + .offcanvas-xl { + --bs-offcanvas-height: auto; + --bs-offcanvas-border-width: 0; + background-color: transparent !important; + } + .offcanvas-xl .offcanvas-header { + display: none; + } + .offcanvas-xl .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + background-color: transparent !important; + } +} + +@media (max-width: 1399.98px) { + .offcanvas-xxl { + position: fixed; + bottom: 0; + z-index: var(--bs-offcanvas-zindex); + display: flex; + flex-direction: column; + max-width: 100%; + color: var(--bs-offcanvas-color); + visibility: hidden; + background-color: var(--bs-offcanvas-bg); + background-clip: padding-box; + outline: 0; + transition: var(--bs-offcanvas-transition); + } +} +@media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) { + .offcanvas-xxl { + transition: none; + } +} +@media (max-width: 1399.98px) { + .offcanvas-xxl.offcanvas-start { + top: 0; + left: 0; + width: var(--bs-offcanvas-width); + border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateX(-100%); + } + .offcanvas-xxl.offcanvas-end { + top: 0; + right: 0; + width: var(--bs-offcanvas-width); + border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateX(100%); + } + .offcanvas-xxl.offcanvas-top { + top: 0; + right: 0; + left: 0; + height: var(--bs-offcanvas-height); + max-height: 100%; + border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateY(-100%); + } + .offcanvas-xxl.offcanvas-bottom { + right: 0; + left: 0; + height: var(--bs-offcanvas-height); + max-height: 100%; + border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateY(100%); + } + .offcanvas-xxl.showing, .offcanvas-xxl.show:not(.hiding) { + transform: none; + } + .offcanvas-xxl.showing, .offcanvas-xxl.hiding, .offcanvas-xxl.show { + visibility: visible; + } +} +@media (min-width: 1400px) { + .offcanvas-xxl { + --bs-offcanvas-height: auto; + --bs-offcanvas-border-width: 0; + background-color: transparent !important; + } + .offcanvas-xxl .offcanvas-header { + display: none; + } + .offcanvas-xxl .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + background-color: transparent !important; + } +} + +.offcanvas { + position: fixed; + bottom: 0; + z-index: var(--bs-offcanvas-zindex); + display: flex; + flex-direction: column; + max-width: 100%; + color: var(--bs-offcanvas-color); + visibility: hidden; + background-color: var(--bs-offcanvas-bg); + background-clip: padding-box; + outline: 0; + transition: var(--bs-offcanvas-transition); +} +@media (prefers-reduced-motion: reduce) { + .offcanvas { + transition: none; + } +} +.offcanvas.offcanvas-start { + top: 0; + left: 0; + width: var(--bs-offcanvas-width); + border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateX(-100%); +} +.offcanvas.offcanvas-end { + top: 0; + right: 0; + width: var(--bs-offcanvas-width); + border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateX(100%); +} +.offcanvas.offcanvas-top { + top: 0; + right: 0; + left: 0; + height: var(--bs-offcanvas-height); + max-height: 100%; + border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateY(-100%); +} +.offcanvas.offcanvas-bottom { + right: 0; + left: 0; + height: var(--bs-offcanvas-height); + max-height: 100%; + border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateY(100%); +} +.offcanvas.showing, .offcanvas.show:not(.hiding) { + transform: none; +} +.offcanvas.showing, .offcanvas.hiding, .offcanvas.show { + visibility: visible; +} + +.offcanvas-backdrop { + position: fixed; + top: 0; + left: 0; + z-index: 1040; + width: 100vw; + height: 100vh; + background-color: #000; +} +.offcanvas-backdrop.fade { + opacity: 0; +} +.offcanvas-backdrop.show { + opacity: 0.5; +} + +.offcanvas-header { + display: flex; + align-items: center; + padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x); +} +.offcanvas-header .btn-close { + padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5); + margin-top: calc(-0.5 * var(--bs-offcanvas-padding-y)); + margin-right: calc(-0.5 * var(--bs-offcanvas-padding-x)); + margin-bottom: calc(-0.5 * var(--bs-offcanvas-padding-y)); + margin-left: auto; +} + +.offcanvas-title { + margin-bottom: 0; + line-height: var(--bs-offcanvas-title-line-height); +} + +.offcanvas-body { + flex-grow: 1; + padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x); + overflow-y: auto; +} + +.placeholder { + display: inline-block; + min-height: 1em; + vertical-align: middle; + cursor: wait; + background-color: currentcolor; + opacity: 0.5; +} +.placeholder.btn::before, [data-bs-theme=dark] .pma_quick_warp .placeholder.drop_button::before { + display: inline-block; + content: ""; +} + +.placeholder-xs { + min-height: 0.6em; +} + +.placeholder-sm { + min-height: 0.8em; +} + +.placeholder-lg { + min-height: 1.2em; +} + +.placeholder-glow .placeholder { + animation: placeholder-glow 2s ease-in-out infinite; +} + +@keyframes placeholder-glow { + 50% { + opacity: 0.2; + } +} +.placeholder-wave { + mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%); + mask-size: 200% 100%; + animation: placeholder-wave 2s linear infinite; +} + +@keyframes placeholder-wave { + 100% { + mask-position: -200% 0%; + } +} +.clearfix::after { + display: block; + clear: both; + content: ""; +} + +.text-bg-primary { + color: #000 !important; + background-color: RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important; +} + +.text-bg-secondary { + color: #fff !important; + background-color: RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important; +} + +.text-bg-success { + color: #000 !important; + background-color: RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important; +} + +.text-bg-info { + color: #000 !important; + background-color: RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important; +} + +.text-bg-warning { + color: #000 !important; + background-color: RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important; +} + +.text-bg-danger { + color: #fff !important; + background-color: RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important; +} + +.text-bg-light { + color: #000 !important; + background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important; +} + +.text-bg-dark { + color: #fff !important; + background-color: RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important; +} + +.link-primary { + color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important; + text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important; +} +.link-primary:hover, .link-primary:focus { + color: RGBA(255, 51, 119, var(--bs-link-opacity, 1)) !important; + text-decoration-color: RGBA(255, 51, 119, var(--bs-link-underline-opacity, 1)) !important; +} + +.link-secondary { + color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important; + text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important; +} +.link-secondary:hover, .link-secondary:focus { + color: RGBA(89, 53, 154, var(--bs-link-opacity, 1)) !important; + text-decoration-color: RGBA(89, 53, 154, var(--bs-link-underline-opacity, 1)) !important; +} + +.link-success { + color: RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important; + text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important; +} +.link-success:hover, .link-success:focus { + color: RGBA(51, 188, 119, var(--bs-link-opacity, 1)) !important; + text-decoration-color: RGBA(51, 188, 119, var(--bs-link-underline-opacity, 1)) !important; +} + +.link-info { + color: RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important; + text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important; +} +.link-info:hover, .link-info:focus { + color: RGBA(77, 171, 245, var(--bs-link-opacity, 1)) !important; + text-decoration-color: RGBA(77, 171, 245, var(--bs-link-underline-opacity, 1)) !important; +} + +.link-warning { + color: RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important; + text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important; +} +.link-warning:hover, .link-warning:focus { + color: RGBA(255, 205, 57, var(--bs-link-opacity, 1)) !important; + text-decoration-color: RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)) !important; +} + +.link-danger { + color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important; + text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important; +} +.link-danger:hover, .link-danger:focus { + color: RGBA(178, 11, 22, var(--bs-link-opacity, 1)) !important; + text-decoration-color: RGBA(178, 11, 22, var(--bs-link-underline-opacity, 1)) !important; +} + +.link-light { + color: RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important; + text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important; +} +.link-light:hover, .link-light:focus { + color: RGBA(249, 250, 251, var(--bs-link-opacity, 1)) !important; + text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important; +} + +.link-dark { + color: RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important; + text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important; +} +.link-dark:hover, .link-dark:focus { + color: RGBA(26, 30, 33, var(--bs-link-opacity, 1)) !important; + text-decoration-color: RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1)) !important; +} + +.link-body-emphasis { + color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important; + text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important; +} +.link-body-emphasis:hover, .link-body-emphasis:focus { + color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important; + text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important; +} + +.focus-ring:focus { + outline: 0; + box-shadow: var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color); +} + +.icon-link { + display: inline-flex; + gap: 0.375rem; + align-items: center; + text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5)); + text-underline-offset: 0.25em; + backface-visibility: hidden; +} +.icon-link > .bi { + flex-shrink: 0; + width: 1em; + height: 1em; + fill: currentcolor; + transition: 0.2s ease-in-out transform; +} +@media (prefers-reduced-motion: reduce) { + .icon-link > .bi { + transition: none; + } +} + +.icon-link-hover:hover > .bi, .icon-link-hover:focus-visible > .bi { + transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0)); +} + +.ratio { + position: relative; + width: 100%; +} +.ratio::before { + display: block; + padding-top: var(--bs-aspect-ratio); + content: ""; +} +.ratio > * { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} + +.ratio-1x1 { + --bs-aspect-ratio: 100%; +} + +.ratio-4x3 { + --bs-aspect-ratio: 75%; +} + +.ratio-16x9 { + --bs-aspect-ratio: 56.25%; +} + +.ratio-21x9 { + --bs-aspect-ratio: 42.8571428571%; +} + +.fixed-top { + position: fixed; + top: 0; + right: 0; + left: 0; + z-index: 1030; +} + +.fixed-bottom { + position: fixed; + right: 0; + bottom: 0; + left: 0; + z-index: 1030; +} + +.sticky-top { + position: sticky; + top: 0; + z-index: 1020; +} + +.sticky-bottom { + position: sticky; + bottom: 0; + z-index: 1020; +} + +@media (min-width: 576px) { + .sticky-sm-top { + position: sticky; + top: 0; + z-index: 1020; + } + .sticky-sm-bottom { + position: sticky; + bottom: 0; + z-index: 1020; + } +} +@media (min-width: 768px) { + .sticky-md-top { + position: sticky; + top: 0; + z-index: 1020; + } + .sticky-md-bottom { + position: sticky; + bottom: 0; + z-index: 1020; + } +} +@media (min-width: 992px) { + .sticky-lg-top { + position: sticky; + top: 0; + z-index: 1020; + } + .sticky-lg-bottom { + position: sticky; + bottom: 0; + z-index: 1020; + } +} +@media (min-width: 1200px) { + .sticky-xl-top { + position: sticky; + top: 0; + z-index: 1020; + } + .sticky-xl-bottom { + position: sticky; + bottom: 0; + z-index: 1020; + } +} +@media (min-width: 1400px) { + .sticky-xxl-top { + position: sticky; + top: 0; + z-index: 1020; + } + .sticky-xxl-bottom { + position: sticky; + bottom: 0; + z-index: 1020; + } +} +.hstack { + display: flex; + flex-direction: row; + align-items: center; + align-self: stretch; +} + +.vstack { + display: flex; + flex: 1 1 auto; + flex-direction: column; + align-self: stretch; +} + +.visually-hidden, +.visually-hidden-focusable:not(:focus):not(:focus-within) { + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border: 0 !important; +} +.visually-hidden:not(caption), +.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) { + position: absolute !important; +} +.visually-hidden *, +.visually-hidden-focusable:not(:focus):not(:focus-within) * { + overflow: hidden !important; +} + +.stretched-link::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1; + content: ""; +} + +.text-truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +.vr { + display: inline-block; + align-self: stretch; + width: var(--bs-border-width); + min-height: 1em; + background-color: currentcolor; + opacity: 0.25; +} + +.align-baseline { + vertical-align: baseline !important; +} + +.align-top { + vertical-align: top !important; +} + +.align-middle { + vertical-align: middle !important; +} + +.align-bottom { + vertical-align: bottom !important; +} + +.align-text-bottom { + vertical-align: text-bottom !important; +} + +.align-text-top { + vertical-align: text-top !important; +} + +.float-start { + float: left !important; +} + +.float-end { + float: right !important; +} + +.float-none { + float: none !important; +} + +.object-fit-contain { + object-fit: contain !important; +} + +.object-fit-cover { + object-fit: cover !important; +} + +.object-fit-fill { + object-fit: fill !important; +} + +.object-fit-scale { + object-fit: scale-down !important; +} + +.object-fit-none { + object-fit: none !important; +} + +.opacity-0 { + opacity: 0 !important; +} + +.opacity-25 { + opacity: 0.25 !important; +} + +.opacity-50 { + opacity: 0.5 !important; +} + +.opacity-75 { + opacity: 0.75 !important; +} + +.opacity-100 { + opacity: 1 !important; +} + +.overflow-auto { + overflow: auto !important; +} + +.overflow-hidden { + overflow: hidden !important; +} + +.overflow-visible { + overflow: visible !important; +} + +.overflow-scroll { + overflow: scroll !important; +} + +.overflow-x-auto { + overflow-x: auto !important; +} + +.overflow-x-hidden { + overflow-x: hidden !important; +} + +.overflow-x-visible { + overflow-x: visible !important; +} + +.overflow-x-scroll { + overflow-x: scroll !important; +} + +.overflow-y-auto { + overflow-y: auto !important; +} + +.overflow-y-hidden { + overflow-y: hidden !important; +} + +.overflow-y-visible { + overflow-y: visible !important; +} + +.overflow-y-scroll { + overflow-y: scroll !important; +} + +.d-inline { + display: inline !important; +} + +.d-inline-block { + display: inline-block !important; +} + +.d-block { + display: block !important; +} + +.d-grid { + display: grid !important; +} + +.d-inline-grid { + display: inline-grid !important; +} + +.d-table { + display: table !important; +} + +.d-table-row { + display: table-row !important; +} + +.d-table-cell { + display: table-cell !important; +} + +.d-flex { + display: flex !important; +} + +.d-inline-flex { + display: inline-flex !important; +} + +.d-none { + display: none !important; +} + +.shadow { + box-shadow: var(--bs-box-shadow) !important; +} + +.shadow-sm { + box-shadow: var(--bs-box-shadow-sm) !important; +} + +.shadow-lg { + box-shadow: var(--bs-box-shadow-lg) !important; +} + +.shadow-none { + box-shadow: none !important; +} + +.focus-ring-primary { + --bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity)); +} + +.focus-ring-secondary { + --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity)); +} + +.focus-ring-success { + --bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity)); +} + +.focus-ring-info { + --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity)); +} + +.focus-ring-warning { + --bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity)); +} + +.focus-ring-danger { + --bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity)); +} + +.focus-ring-light { + --bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity)); +} + +.focus-ring-dark { + --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity)); +} + +.position-static { + position: static !important; +} + +.position-relative { + position: relative !important; +} + +.position-absolute { + position: absolute !important; +} + +.position-fixed { + position: fixed !important; +} + +.position-sticky { + position: sticky !important; +} + +.top-0 { + top: 0 !important; +} + +.top-50 { + top: 50% !important; +} + +.top-100 { + top: 100% !important; +} + +.bottom-0 { + bottom: 0 !important; +} + +.bottom-50 { + bottom: 50% !important; +} + +.bottom-100 { + bottom: 100% !important; +} + +.start-0 { + left: 0 !important; +} + +.start-50 { + left: 50% !important; +} + +.start-100 { + left: 100% !important; +} + +.end-0 { + right: 0 !important; +} + +.end-50 { + right: 50% !important; +} + +.end-100 { + right: 100% !important; +} + +.translate-middle { + transform: translate(-50%, -50%) !important; +} + +.translate-middle-x { + transform: translateX(-50%) !important; +} + +.translate-middle-y { + transform: translateY(-50%) !important; +} + +.border { + border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important; +} + +.border-0 { + border: 0 !important; +} + +.border-top { + border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important; +} + +.border-top-0 { + border-top: 0 !important; +} + +.border-end { + border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important; +} + +.border-end-0 { + border-right: 0 !important; +} + +.border-bottom { + border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important; +} + +.border-bottom-0 { + border-bottom: 0 !important; +} + +.border-start { + border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important; +} + +.border-start-0 { + border-left: 0 !important; +} + +.border-primary { + --bs-border-opacity: 1; + border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important; +} + +.border-secondary { + --bs-border-opacity: 1; + border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important; +} + +.border-success { + --bs-border-opacity: 1; + border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important; +} + +.border-info { + --bs-border-opacity: 1; + border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important; +} + +.border-warning { + --bs-border-opacity: 1; + border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important; +} + +.border-danger { + --bs-border-opacity: 1; + border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important; +} + +.border-light { + --bs-border-opacity: 1; + border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important; +} + +.border-dark { + --bs-border-opacity: 1; + border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important; +} + +.border-black { + --bs-border-opacity: 1; + border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important; +} + +.border-white { + --bs-border-opacity: 1; + border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important; +} + +.border-primary-subtle { + border-color: var(--bs-primary-border-subtle) !important; +} + +.border-secondary-subtle { + border-color: var(--bs-secondary-border-subtle) !important; +} + +.border-success-subtle { + border-color: var(--bs-success-border-subtle) !important; +} + +.border-info-subtle { + border-color: var(--bs-info-border-subtle) !important; +} + +.border-warning-subtle { + border-color: var(--bs-warning-border-subtle) !important; +} + +.border-danger-subtle { + border-color: var(--bs-danger-border-subtle) !important; +} + +.border-light-subtle { + border-color: var(--bs-light-border-subtle) !important; +} + +.border-dark-subtle { + border-color: var(--bs-dark-border-subtle) !important; +} + +.border-1 { + border-width: 1px !important; +} + +.border-2 { + border-width: 2px !important; +} + +.border-3 { + border-width: 3px !important; +} + +.border-4 { + border-width: 4px !important; +} + +.border-5 { + border-width: 5px !important; +} + +.border-opacity-10 { + --bs-border-opacity: 0.1; +} + +.border-opacity-25 { + --bs-border-opacity: 0.25; +} + +.border-opacity-50 { + --bs-border-opacity: 0.5; +} + +.border-opacity-75 { + --bs-border-opacity: 0.75; +} + +.border-opacity-100 { + --bs-border-opacity: 1; +} + +.w-25 { + width: 25% !important; +} + +.w-50 { + width: 50% !important; +} + +.w-75 { + width: 75% !important; +} + +.w-100 { + width: 100% !important; +} + +.w-auto { + width: auto !important; +} + +.mw-100 { + max-width: 100% !important; +} + +.vw-100 { + width: 100vw !important; +} + +.min-vw-100 { + min-width: 100vw !important; +} + +.h-25 { + height: 25% !important; +} + +.h-50 { + height: 50% !important; +} + +.h-75 { + height: 75% !important; +} + +.h-100 { + height: 100% !important; +} + +.h-auto { + height: auto !important; +} + +.mh-100 { + max-height: 100% !important; +} + +.vh-100 { + height: 100vh !important; +} + +.min-vh-100 { + min-height: 100vh !important; +} + +.flex-fill { + flex: 1 1 auto !important; +} + +.flex-row { + flex-direction: row !important; +} + +.flex-column { + flex-direction: column !important; +} + +.flex-row-reverse { + flex-direction: row-reverse !important; +} + +.flex-column-reverse { + flex-direction: column-reverse !important; +} + +.flex-grow-0 { + flex-grow: 0 !important; +} + +.flex-grow-1 { + flex-grow: 1 !important; +} + +.flex-shrink-0 { + flex-shrink: 0 !important; +} + +.flex-shrink-1 { + flex-shrink: 1 !important; +} + +.flex-wrap { + flex-wrap: wrap !important; +} + +.flex-nowrap { + flex-wrap: nowrap !important; +} + +.flex-wrap-reverse { + flex-wrap: wrap-reverse !important; +} + +.justify-content-start { + justify-content: flex-start !important; +} + +.justify-content-end { + justify-content: flex-end !important; +} + +.justify-content-center { + justify-content: center !important; +} + +.justify-content-between { + justify-content: space-between !important; +} + +.justify-content-around { + justify-content: space-around !important; +} + +.justify-content-evenly { + justify-content: space-evenly !important; +} + +.align-items-start { + align-items: flex-start !important; +} + +.align-items-end { + align-items: flex-end !important; +} + +.align-items-center { + align-items: center !important; +} + +.align-items-baseline { + align-items: baseline !important; +} + +.align-items-stretch { + align-items: stretch !important; +} + +.align-content-start { + align-content: flex-start !important; +} + +.align-content-end { + align-content: flex-end !important; +} + +.align-content-center { + align-content: center !important; +} + +.align-content-between { + align-content: space-between !important; +} + +.align-content-around { + align-content: space-around !important; +} + +.align-content-stretch { + align-content: stretch !important; +} + +.align-self-auto { + align-self: auto !important; +} + +.align-self-start { + align-self: flex-start !important; +} + +.align-self-end { + align-self: flex-end !important; +} + +.align-self-center { + align-self: center !important; +} + +.align-self-baseline { + align-self: baseline !important; +} + +.align-self-stretch { + align-self: stretch !important; +} + +.order-first { + order: -1 !important; +} + +.order-0 { + order: 0 !important; +} + +.order-1 { + order: 1 !important; +} + +.order-2 { + order: 2 !important; +} + +.order-3 { + order: 3 !important; +} + +.order-4 { + order: 4 !important; +} + +.order-5 { + order: 5 !important; +} + +.order-last { + order: 6 !important; +} + +.m-0 { + margin: 0 !important; +} + +.m-1 { + margin: 0.25rem !important; +} + +.m-2 { + margin: 0.5rem !important; +} + +.m-3 { + margin: 1rem !important; +} + +.m-4 { + margin: 1.5rem !important; +} + +.m-5 { + margin: 3rem !important; +} + +.m-auto { + margin: auto !important; +} + +.mx-0 { + margin-right: 0 !important; + margin-left: 0 !important; +} + +.mx-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; +} + +.mx-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; +} + +.mx-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; +} + +.mx-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; +} + +.mx-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; +} + +.mx-auto { + margin-right: auto !important; + margin-left: auto !important; +} + +.my-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; +} + +.my-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; +} + +.my-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; +} + +.my-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; +} + +.my-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; +} + +.my-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; +} + +.my-auto { + margin-top: auto !important; + margin-bottom: auto !important; +} + +.mt-0 { + margin-top: 0 !important; +} + +.mt-1 { + margin-top: 0.25rem !important; +} + +.mt-2 { + margin-top: 0.5rem !important; +} + +.mt-3 { + margin-top: 1rem !important; +} + +.mt-4 { + margin-top: 1.5rem !important; +} + +.mt-5 { + margin-top: 3rem !important; +} + +.mt-auto { + margin-top: auto !important; +} + +.me-0 { + margin-right: 0 !important; +} + +.me-1 { + margin-right: 0.25rem !important; +} + +.me-2 { + margin-right: 0.5rem !important; +} + +.me-3 { + margin-right: 1rem !important; +} + +.me-4 { + margin-right: 1.5rem !important; +} + +.me-5 { + margin-right: 3rem !important; +} + +.me-auto { + margin-right: auto !important; +} + +.mb-0 { + margin-bottom: 0 !important; +} + +.mb-1 { + margin-bottom: 0.25rem !important; +} + +.mb-2 { + margin-bottom: 0.5rem !important; +} + +.mb-3, .card { + margin-bottom: 1rem !important; +} + +.mb-4 { + margin-bottom: 1.5rem !important; +} + +.mb-5 { + margin-bottom: 3rem !important; +} + +.mb-auto { + margin-bottom: auto !important; +} + +.ms-0 { + margin-left: 0 !important; +} + +.ms-1 { + margin-left: 0.25rem !important; +} + +.ms-2 { + margin-left: 0.5rem !important; +} + +.ms-3 { + margin-left: 1rem !important; +} + +.ms-4 { + margin-left: 1.5rem !important; +} + +.ms-5 { + margin-left: 3rem !important; +} + +.ms-auto { + margin-left: auto !important; +} + +.p-0 { + padding: 0 !important; +} + +.p-1 { + padding: 0.25rem !important; +} + +.p-2 { + padding: 0.5rem !important; +} + +.p-3 { + padding: 1rem !important; +} + +.p-4 { + padding: 1.5rem !important; +} + +.p-5 { + padding: 3rem !important; +} + +.px-0 { + padding-right: 0 !important; + padding-left: 0 !important; +} + +.px-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; +} + +.px-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; +} + +.px-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; +} + +.px-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; +} + +.px-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; +} + +.py-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; +} + +.py-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; +} + +.py-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; +} + +.py-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; +} + +.py-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; +} + +.py-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; +} + +.pt-0 { + padding-top: 0 !important; +} + +.pt-1 { + padding-top: 0.25rem !important; +} + +.pt-2 { + padding-top: 0.5rem !important; +} + +.pt-3 { + padding-top: 1rem !important; +} + +.pt-4 { + padding-top: 1.5rem !important; +} + +.pt-5 { + padding-top: 3rem !important; +} + +.pe-0 { + padding-right: 0 !important; +} + +.pe-1 { + padding-right: 0.25rem !important; +} + +.pe-2 { + padding-right: 0.5rem !important; +} + +.pe-3 { + padding-right: 1rem !important; +} + +.pe-4 { + padding-right: 1.5rem !important; +} + +.pe-5 { + padding-right: 3rem !important; +} + +.pb-0 { + padding-bottom: 0 !important; +} + +.pb-1 { + padding-bottom: 0.25rem !important; +} + +.pb-2 { + padding-bottom: 0.5rem !important; +} + +.pb-3 { + padding-bottom: 1rem !important; +} + +.pb-4 { + padding-bottom: 1.5rem !important; +} + +.pb-5 { + padding-bottom: 3rem !important; +} + +.ps-0 { + padding-left: 0 !important; +} + +.ps-1 { + padding-left: 0.25rem !important; +} + +.ps-2 { + padding-left: 0.5rem !important; +} + +.ps-3 { + padding-left: 1rem !important; +} + +.ps-4 { + padding-left: 1.5rem !important; +} + +.ps-5 { + padding-left: 3rem !important; +} + +.gap-0 { + gap: 0 !important; +} + +.gap-1 { + gap: 0.25rem !important; +} + +.gap-2 { + gap: 0.5rem !important; +} + +.gap-3 { + gap: 1rem !important; +} + +.gap-4 { + gap: 1.5rem !important; +} + +.gap-5 { + gap: 3rem !important; +} + +.row-gap-0 { + row-gap: 0 !important; +} + +.row-gap-1 { + row-gap: 0.25rem !important; +} + +.row-gap-2 { + row-gap: 0.5rem !important; +} + +.row-gap-3 { + row-gap: 1rem !important; +} + +.row-gap-4 { + row-gap: 1.5rem !important; +} + +.row-gap-5 { + row-gap: 3rem !important; +} + +.column-gap-0 { + column-gap: 0 !important; +} + +.column-gap-1 { + column-gap: 0.25rem !important; +} + +.column-gap-2 { + column-gap: 0.5rem !important; +} + +.column-gap-3 { + column-gap: 1rem !important; +} + +.column-gap-4 { + column-gap: 1.5rem !important; +} + +.column-gap-5 { + column-gap: 3rem !important; +} + +.font-monospace { + font-family: var(--bs-font-monospace) !important; +} + +.fs-1 { + font-size: calc(1.30875rem + 0.705vw) !important; +} + +.fs-2 { + font-size: calc(1.278125rem + 0.3375vw) !important; +} + +.fs-3 { + font-size: calc(1.25625rem + 0.075vw) !important; +} + +.fs-4 { + font-size: 1.1375rem !important; +} + +.fs-5 { + font-size: 1.00625rem !important; +} + +.fs-6 { + font-size: 0.875rem !important; +} + +.fst-italic { + font-style: italic !important; +} + +.fst-normal { + font-style: normal !important; +} + +.fw-lighter { + font-weight: lighter !important; +} + +.fw-light { + font-weight: 300 !important; +} + +.fw-normal { + font-weight: 400 !important; +} + +.fw-medium { + font-weight: 500 !important; +} + +.fw-semibold { + font-weight: 600 !important; +} + +.fw-bold { + font-weight: 700 !important; +} + +.fw-bolder { + font-weight: bolder !important; +} + +.lh-1 { + line-height: 1 !important; +} + +.lh-sm { + line-height: 1.25 !important; +} + +.lh-base { + line-height: 1.5 !important; +} + +.lh-lg { + line-height: 2 !important; +} + +.text-start { + text-align: left !important; +} + +.text-end { + text-align: right !important; +} + +.text-center { + text-align: center !important; +} + +.text-decoration-none { + text-decoration: none !important; +} + +.text-decoration-underline { + text-decoration: underline !important; +} + +.text-decoration-line-through { + text-decoration: line-through !important; +} + +.text-lowercase { + text-transform: lowercase !important; +} + +.text-uppercase { + text-transform: uppercase !important; +} + +.text-capitalize { + text-transform: capitalize !important; +} + +.text-wrap { + white-space: normal !important; +} + +.text-nowrap { + white-space: nowrap !important; +} + +/* rtl:begin:remove */ +.text-break { + word-wrap: break-word !important; + word-break: break-word !important; +} + +/* rtl:end:remove */ +.text-primary { + --bs-text-opacity: 1; + color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important; +} + +.text-secondary { + --bs-text-opacity: 1; + color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important; +} + +.text-success { + --bs-text-opacity: 1; + color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important; +} + +.text-info { + --bs-text-opacity: 1; + color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important; +} + +.text-warning { + --bs-text-opacity: 1; + color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important; +} + +.text-danger { + --bs-text-opacity: 1; + color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important; +} + +.text-light { + --bs-text-opacity: 1; + color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important; +} + +.text-dark { + --bs-text-opacity: 1; + color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important; +} + +.text-black { + --bs-text-opacity: 1; + color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important; +} + +.text-white { + --bs-text-opacity: 1; + color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important; +} + +.text-body { + --bs-text-opacity: 1; + color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important; +} + +.text-muted { + --bs-text-opacity: 1; + color: var(--bs-secondary-color) !important; +} + +.text-black-50 { + --bs-text-opacity: 1; + color: rgba(0, 0, 0, 0.5) !important; +} + +.text-white-50 { + --bs-text-opacity: 1; + color: rgba(255, 255, 255, 0.5) !important; +} + +.text-body-secondary { + --bs-text-opacity: 1; + color: var(--bs-secondary-color) !important; +} + +.text-body-tertiary { + --bs-text-opacity: 1; + color: var(--bs-tertiary-color) !important; +} + +.text-body-emphasis { + --bs-text-opacity: 1; + color: var(--bs-emphasis-color) !important; +} + +.text-reset { + --bs-text-opacity: 1; + color: inherit !important; +} + +.text-opacity-25 { + --bs-text-opacity: 0.25; +} + +.text-opacity-50 { + --bs-text-opacity: 0.5; +} + +.text-opacity-75 { + --bs-text-opacity: 0.75; +} + +.text-opacity-100 { + --bs-text-opacity: 1; +} + +.text-primary-emphasis { + color: var(--bs-primary-text-emphasis) !important; +} + +.text-secondary-emphasis { + color: var(--bs-secondary-text-emphasis) !important; +} + +.text-success-emphasis { + color: var(--bs-success-text-emphasis) !important; +} + +.text-info-emphasis { + color: var(--bs-info-text-emphasis) !important; +} + +.text-warning-emphasis { + color: var(--bs-warning-text-emphasis) !important; +} + +.text-danger-emphasis { + color: var(--bs-danger-text-emphasis) !important; +} + +.text-light-emphasis { + color: var(--bs-light-text-emphasis) !important; +} + +.text-dark-emphasis { + color: var(--bs-dark-text-emphasis) !important; +} + +.link-opacity-10 { + --bs-link-opacity: 0.1; +} + +.link-opacity-10-hover:hover { + --bs-link-opacity: 0.1; +} + +.link-opacity-25 { + --bs-link-opacity: 0.25; +} + +.link-opacity-25-hover:hover { + --bs-link-opacity: 0.25; +} + +.link-opacity-50 { + --bs-link-opacity: 0.5; +} + +.link-opacity-50-hover:hover { + --bs-link-opacity: 0.5; +} + +.link-opacity-75 { + --bs-link-opacity: 0.75; +} + +.link-opacity-75-hover:hover { + --bs-link-opacity: 0.75; +} + +.link-opacity-100 { + --bs-link-opacity: 1; +} + +.link-opacity-100-hover:hover { + --bs-link-opacity: 1; +} + +.link-offset-1 { + text-underline-offset: 0.125em !important; +} + +.link-offset-1-hover:hover { + text-underline-offset: 0.125em !important; +} + +.link-offset-2 { + text-underline-offset: 0.25em !important; +} + +.link-offset-2-hover:hover { + text-underline-offset: 0.25em !important; +} + +.link-offset-3 { + text-underline-offset: 0.375em !important; +} + +.link-offset-3-hover:hover { + text-underline-offset: 0.375em !important; +} + +.link-underline-primary { + --bs-link-underline-opacity: 1; + text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important; +} + +.link-underline-secondary { + --bs-link-underline-opacity: 1; + text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important; +} + +.link-underline-success { + --bs-link-underline-opacity: 1; + text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important; +} + +.link-underline-info { + --bs-link-underline-opacity: 1; + text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important; +} + +.link-underline-warning { + --bs-link-underline-opacity: 1; + text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important; +} + +.link-underline-danger { + --bs-link-underline-opacity: 1; + text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important; +} + +.link-underline-light { + --bs-link-underline-opacity: 1; + text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important; +} + +.link-underline-dark { + --bs-link-underline-opacity: 1; + text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important; +} + +.link-underline { + --bs-link-underline-opacity: 1; + text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important; +} + +.link-underline-opacity-0 { + --bs-link-underline-opacity: 0; +} + +.link-underline-opacity-0-hover:hover { + --bs-link-underline-opacity: 0; +} + +.link-underline-opacity-10 { + --bs-link-underline-opacity: 0.1; +} + +.link-underline-opacity-10-hover:hover { + --bs-link-underline-opacity: 0.1; +} + +.link-underline-opacity-25 { + --bs-link-underline-opacity: 0.25; +} + +.link-underline-opacity-25-hover:hover { + --bs-link-underline-opacity: 0.25; +} + +.link-underline-opacity-50 { + --bs-link-underline-opacity: 0.5; +} + +.link-underline-opacity-50-hover:hover { + --bs-link-underline-opacity: 0.5; +} + +.link-underline-opacity-75 { + --bs-link-underline-opacity: 0.75; +} + +.link-underline-opacity-75-hover:hover { + --bs-link-underline-opacity: 0.75; +} + +.link-underline-opacity-100 { + --bs-link-underline-opacity: 1; +} + +.link-underline-opacity-100-hover:hover { + --bs-link-underline-opacity: 1; +} + +.bg-primary { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important; +} + +.bg-secondary { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important; +} + +.bg-success { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important; +} + +.bg-info { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important; +} + +.bg-warning { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important; +} + +.bg-danger { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important; +} + +.bg-light { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important; +} + +.bg-dark { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important; +} + +.bg-black { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important; +} + +.bg-white { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important; +} + +.bg-body, [data-bs-theme=dark] #topmenucontainer nav { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important; +} + +.bg-transparent { + --bs-bg-opacity: 1; + background-color: transparent !important; +} + +.bg-body-secondary { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important; +} + +.bg-body-tertiary, [data-bs-theme=dark] #pma_console .toolbar, [data-bs-theme=dark] div.tools { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important; +} + +.bg-opacity-10 { + --bs-bg-opacity: 0.1; +} + +.bg-opacity-25 { + --bs-bg-opacity: 0.25; +} + +.bg-opacity-50 { + --bs-bg-opacity: 0.5; +} + +.bg-opacity-75 { + --bs-bg-opacity: 0.75; +} + +.bg-opacity-100 { + --bs-bg-opacity: 1; +} + +.bg-primary-subtle { + background-color: var(--bs-primary-bg-subtle) !important; +} + +.bg-secondary-subtle { + background-color: var(--bs-secondary-bg-subtle) !important; +} + +.bg-success-subtle { + background-color: var(--bs-success-bg-subtle) !important; +} + +.bg-info-subtle { + background-color: var(--bs-info-bg-subtle) !important; +} + +.bg-warning-subtle { + background-color: var(--bs-warning-bg-subtle) !important; +} + +.bg-danger-subtle { + background-color: var(--bs-danger-bg-subtle) !important; +} + +.bg-light-subtle { + background-color: var(--bs-light-bg-subtle) !important; +} + +.bg-dark-subtle { + background-color: var(--bs-dark-bg-subtle) !important; +} + +.bg-gradient { + background-image: var(--bs-gradient) !important; +} + +.user-select-all { + user-select: all !important; +} + +.user-select-auto { + user-select: auto !important; +} + +.user-select-none { + user-select: none !important; +} + +.pe-none { + pointer-events: none !important; +} + +.pe-auto { + pointer-events: auto !important; +} + +.rounded { + border-radius: var(--bs-border-radius) !important; +} + +.rounded-0 { + border-radius: 0 !important; +} + +.rounded-1 { + border-radius: var(--bs-border-radius-sm) !important; +} + +.rounded-2 { + border-radius: var(--bs-border-radius) !important; +} + +.rounded-3 { + border-radius: var(--bs-border-radius-lg) !important; +} + +.rounded-4 { + border-radius: var(--bs-border-radius-xl) !important; +} + +.rounded-5 { + border-radius: var(--bs-border-radius-xxl) !important; +} + +.rounded-circle { + border-radius: 50% !important; +} + +.rounded-pill { + border-radius: var(--bs-border-radius-pill) !important; +} + +.rounded-top { + border-top-left-radius: var(--bs-border-radius) !important; + border-top-right-radius: var(--bs-border-radius) !important; +} + +.rounded-top-0 { + border-top-left-radius: 0 !important; + border-top-right-radius: 0 !important; +} + +.rounded-top-1 { + border-top-left-radius: var(--bs-border-radius-sm) !important; + border-top-right-radius: var(--bs-border-radius-sm) !important; +} + +.rounded-top-2 { + border-top-left-radius: var(--bs-border-radius) !important; + border-top-right-radius: var(--bs-border-radius) !important; +} + +.rounded-top-3 { + border-top-left-radius: var(--bs-border-radius-lg) !important; + border-top-right-radius: var(--bs-border-radius-lg) !important; +} + +.rounded-top-4 { + border-top-left-radius: var(--bs-border-radius-xl) !important; + border-top-right-radius: var(--bs-border-radius-xl) !important; +} + +.rounded-top-5 { + border-top-left-radius: var(--bs-border-radius-xxl) !important; + border-top-right-radius: var(--bs-border-radius-xxl) !important; +} + +.rounded-top-circle { + border-top-left-radius: 50% !important; + border-top-right-radius: 50% !important; +} + +.rounded-top-pill { + border-top-left-radius: var(--bs-border-radius-pill) !important; + border-top-right-radius: var(--bs-border-radius-pill) !important; +} + +.rounded-end { + border-top-right-radius: var(--bs-border-radius) !important; + border-bottom-right-radius: var(--bs-border-radius) !important; +} + +.rounded-end-0 { + border-top-right-radius: 0 !important; + border-bottom-right-radius: 0 !important; +} + +.rounded-end-1 { + border-top-right-radius: var(--bs-border-radius-sm) !important; + border-bottom-right-radius: var(--bs-border-radius-sm) !important; +} + +.rounded-end-2 { + border-top-right-radius: var(--bs-border-radius) !important; + border-bottom-right-radius: var(--bs-border-radius) !important; +} + +.rounded-end-3 { + border-top-right-radius: var(--bs-border-radius-lg) !important; + border-bottom-right-radius: var(--bs-border-radius-lg) !important; +} + +.rounded-end-4 { + border-top-right-radius: var(--bs-border-radius-xl) !important; + border-bottom-right-radius: var(--bs-border-radius-xl) !important; +} + +.rounded-end-5 { + border-top-right-radius: var(--bs-border-radius-xxl) !important; + border-bottom-right-radius: var(--bs-border-radius-xxl) !important; +} + +.rounded-end-circle { + border-top-right-radius: 50% !important; + border-bottom-right-radius: 50% !important; +} + +.rounded-end-pill { + border-top-right-radius: var(--bs-border-radius-pill) !important; + border-bottom-right-radius: var(--bs-border-radius-pill) !important; +} + +.rounded-bottom { + border-bottom-right-radius: var(--bs-border-radius) !important; + border-bottom-left-radius: var(--bs-border-radius) !important; +} + +.rounded-bottom-0 { + border-bottom-right-radius: 0 !important; + border-bottom-left-radius: 0 !important; +} + +.rounded-bottom-1 { + border-bottom-right-radius: var(--bs-border-radius-sm) !important; + border-bottom-left-radius: var(--bs-border-radius-sm) !important; +} + +.rounded-bottom-2 { + border-bottom-right-radius: var(--bs-border-radius) !important; + border-bottom-left-radius: var(--bs-border-radius) !important; +} + +.rounded-bottom-3 { + border-bottom-right-radius: var(--bs-border-radius-lg) !important; + border-bottom-left-radius: var(--bs-border-radius-lg) !important; +} + +.rounded-bottom-4 { + border-bottom-right-radius: var(--bs-border-radius-xl) !important; + border-bottom-left-radius: var(--bs-border-radius-xl) !important; +} + +.rounded-bottom-5 { + border-bottom-right-radius: var(--bs-border-radius-xxl) !important; + border-bottom-left-radius: var(--bs-border-radius-xxl) !important; +} + +.rounded-bottom-circle { + border-bottom-right-radius: 50% !important; + border-bottom-left-radius: 50% !important; +} + +.rounded-bottom-pill { + border-bottom-right-radius: var(--bs-border-radius-pill) !important; + border-bottom-left-radius: var(--bs-border-radius-pill) !important; +} + +.rounded-start { + border-bottom-left-radius: var(--bs-border-radius) !important; + border-top-left-radius: var(--bs-border-radius) !important; +} + +.rounded-start-0 { + border-bottom-left-radius: 0 !important; + border-top-left-radius: 0 !important; +} + +.rounded-start-1 { + border-bottom-left-radius: var(--bs-border-radius-sm) !important; + border-top-left-radius: var(--bs-border-radius-sm) !important; +} + +.rounded-start-2 { + border-bottom-left-radius: var(--bs-border-radius) !important; + border-top-left-radius: var(--bs-border-radius) !important; +} + +.rounded-start-3 { + border-bottom-left-radius: var(--bs-border-radius-lg) !important; + border-top-left-radius: var(--bs-border-radius-lg) !important; +} + +.rounded-start-4 { + border-bottom-left-radius: var(--bs-border-radius-xl) !important; + border-top-left-radius: var(--bs-border-radius-xl) !important; +} + +.rounded-start-5 { + border-bottom-left-radius: var(--bs-border-radius-xxl) !important; + border-top-left-radius: var(--bs-border-radius-xxl) !important; +} + +.rounded-start-circle { + border-bottom-left-radius: 50% !important; + border-top-left-radius: 50% !important; +} + +.rounded-start-pill { + border-bottom-left-radius: var(--bs-border-radius-pill) !important; + border-top-left-radius: var(--bs-border-radius-pill) !important; +} + +.visible { + visibility: visible !important; +} + +.invisible { + visibility: hidden !important; +} + +.z-n1 { + z-index: -1 !important; +} + +.z-0 { + z-index: 0 !important; +} + +.z-1 { + z-index: 1 !important; +} + +.z-2 { + z-index: 2 !important; +} + +.z-3 { + z-index: 3 !important; +} + +.z-99 { + z-index: 99 !important; +} + +@media (min-width: 576px) { + .float-sm-start { + float: left !important; + } + .float-sm-end { + float: right !important; + } + .float-sm-none { + float: none !important; + } + .object-fit-sm-contain { + object-fit: contain !important; + } + .object-fit-sm-cover { + object-fit: cover !important; + } + .object-fit-sm-fill { + object-fit: fill !important; + } + .object-fit-sm-scale { + object-fit: scale-down !important; + } + .object-fit-sm-none { + object-fit: none !important; + } + .d-sm-inline { + display: inline !important; + } + .d-sm-inline-block { + display: inline-block !important; + } + .d-sm-block { + display: block !important; + } + .d-sm-grid { + display: grid !important; + } + .d-sm-inline-grid { + display: inline-grid !important; + } + .d-sm-table { + display: table !important; + } + .d-sm-table-row { + display: table-row !important; + } + .d-sm-table-cell { + display: table-cell !important; + } + .d-sm-flex { + display: flex !important; + } + .d-sm-inline-flex { + display: inline-flex !important; + } + .d-sm-none { + display: none !important; + } + .flex-sm-fill { + flex: 1 1 auto !important; + } + .flex-sm-row { + flex-direction: row !important; + } + .flex-sm-column { + flex-direction: column !important; + } + .flex-sm-row-reverse { + flex-direction: row-reverse !important; + } + .flex-sm-column-reverse { + flex-direction: column-reverse !important; + } + .flex-sm-grow-0 { + flex-grow: 0 !important; + } + .flex-sm-grow-1 { + flex-grow: 1 !important; + } + .flex-sm-shrink-0 { + flex-shrink: 0 !important; + } + .flex-sm-shrink-1 { + flex-shrink: 1 !important; + } + .flex-sm-wrap { + flex-wrap: wrap !important; + } + .flex-sm-nowrap { + flex-wrap: nowrap !important; + } + .flex-sm-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .justify-content-sm-start { + justify-content: flex-start !important; + } + .justify-content-sm-end { + justify-content: flex-end !important; + } + .justify-content-sm-center { + justify-content: center !important; + } + .justify-content-sm-between { + justify-content: space-between !important; + } + .justify-content-sm-around { + justify-content: space-around !important; + } + .justify-content-sm-evenly { + justify-content: space-evenly !important; + } + .align-items-sm-start { + align-items: flex-start !important; + } + .align-items-sm-end { + align-items: flex-end !important; + } + .align-items-sm-center { + align-items: center !important; + } + .align-items-sm-baseline { + align-items: baseline !important; + } + .align-items-sm-stretch { + align-items: stretch !important; + } + .align-content-sm-start { + align-content: flex-start !important; + } + .align-content-sm-end { + align-content: flex-end !important; + } + .align-content-sm-center { + align-content: center !important; + } + .align-content-sm-between { + align-content: space-between !important; + } + .align-content-sm-around { + align-content: space-around !important; + } + .align-content-sm-stretch { + align-content: stretch !important; + } + .align-self-sm-auto { + align-self: auto !important; + } + .align-self-sm-start { + align-self: flex-start !important; + } + .align-self-sm-end { + align-self: flex-end !important; + } + .align-self-sm-center { + align-self: center !important; + } + .align-self-sm-baseline { + align-self: baseline !important; + } + .align-self-sm-stretch { + align-self: stretch !important; + } + .order-sm-first { + order: -1 !important; + } + .order-sm-0 { + order: 0 !important; + } + .order-sm-1 { + order: 1 !important; + } + .order-sm-2 { + order: 2 !important; + } + .order-sm-3 { + order: 3 !important; + } + .order-sm-4 { + order: 4 !important; + } + .order-sm-5 { + order: 5 !important; + } + .order-sm-last { + order: 6 !important; + } + .m-sm-0 { + margin: 0 !important; + } + .m-sm-1 { + margin: 0.25rem !important; + } + .m-sm-2 { + margin: 0.5rem !important; + } + .m-sm-3 { + margin: 1rem !important; + } + .m-sm-4 { + margin: 1.5rem !important; + } + .m-sm-5 { + margin: 3rem !important; + } + .m-sm-auto { + margin: auto !important; + } + .mx-sm-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } + .mx-sm-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } + .mx-sm-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } + .mx-sm-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } + .mx-sm-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } + .mx-sm-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } + .mx-sm-auto { + margin-right: auto !important; + margin-left: auto !important; + } + .my-sm-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-sm-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-sm-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-sm-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-sm-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-sm-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-sm-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-sm-0 { + margin-top: 0 !important; + } + .mt-sm-1 { + margin-top: 0.25rem !important; + } + .mt-sm-2 { + margin-top: 0.5rem !important; + } + .mt-sm-3 { + margin-top: 1rem !important; + } + .mt-sm-4 { + margin-top: 1.5rem !important; + } + .mt-sm-5 { + margin-top: 3rem !important; + } + .mt-sm-auto { + margin-top: auto !important; + } + .me-sm-0 { + margin-right: 0 !important; + } + .me-sm-1 { + margin-right: 0.25rem !important; + } + .me-sm-2 { + margin-right: 0.5rem !important; + } + .me-sm-3 { + margin-right: 1rem !important; + } + .me-sm-4 { + margin-right: 1.5rem !important; + } + .me-sm-5 { + margin-right: 3rem !important; + } + .me-sm-auto { + margin-right: auto !important; + } + .mb-sm-0 { + margin-bottom: 0 !important; + } + .mb-sm-1 { + margin-bottom: 0.25rem !important; + } + .mb-sm-2 { + margin-bottom: 0.5rem !important; + } + .mb-sm-3 { + margin-bottom: 1rem !important; + } + .mb-sm-4 { + margin-bottom: 1.5rem !important; + } + .mb-sm-5 { + margin-bottom: 3rem !important; + } + .mb-sm-auto { + margin-bottom: auto !important; + } + .ms-sm-0 { + margin-left: 0 !important; + } + .ms-sm-1 { + margin-left: 0.25rem !important; + } + .ms-sm-2 { + margin-left: 0.5rem !important; + } + .ms-sm-3 { + margin-left: 1rem !important; + } + .ms-sm-4 { + margin-left: 1.5rem !important; + } + .ms-sm-5 { + margin-left: 3rem !important; + } + .ms-sm-auto { + margin-left: auto !important; + } + .p-sm-0 { + padding: 0 !important; + } + .p-sm-1 { + padding: 0.25rem !important; + } + .p-sm-2 { + padding: 0.5rem !important; + } + .p-sm-3 { + padding: 1rem !important; + } + .p-sm-4 { + padding: 1.5rem !important; + } + .p-sm-5 { + padding: 3rem !important; + } + .px-sm-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } + .px-sm-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } + .px-sm-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } + .px-sm-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } + .px-sm-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } + .px-sm-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } + .py-sm-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-sm-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-sm-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-sm-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-sm-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-sm-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-sm-0 { + padding-top: 0 !important; + } + .pt-sm-1 { + padding-top: 0.25rem !important; + } + .pt-sm-2 { + padding-top: 0.5rem !important; + } + .pt-sm-3 { + padding-top: 1rem !important; + } + .pt-sm-4 { + padding-top: 1.5rem !important; + } + .pt-sm-5 { + padding-top: 3rem !important; + } + .pe-sm-0 { + padding-right: 0 !important; + } + .pe-sm-1 { + padding-right: 0.25rem !important; + } + .pe-sm-2 { + padding-right: 0.5rem !important; + } + .pe-sm-3 { + padding-right: 1rem !important; + } + .pe-sm-4 { + padding-right: 1.5rem !important; + } + .pe-sm-5 { + padding-right: 3rem !important; + } + .pb-sm-0 { + padding-bottom: 0 !important; + } + .pb-sm-1 { + padding-bottom: 0.25rem !important; + } + .pb-sm-2 { + padding-bottom: 0.5rem !important; + } + .pb-sm-3 { + padding-bottom: 1rem !important; + } + .pb-sm-4 { + padding-bottom: 1.5rem !important; + } + .pb-sm-5 { + padding-bottom: 3rem !important; + } + .ps-sm-0 { + padding-left: 0 !important; + } + .ps-sm-1 { + padding-left: 0.25rem !important; + } + .ps-sm-2 { + padding-left: 0.5rem !important; + } + .ps-sm-3 { + padding-left: 1rem !important; + } + .ps-sm-4 { + padding-left: 1.5rem !important; + } + .ps-sm-5 { + padding-left: 3rem !important; + } + .gap-sm-0 { + gap: 0 !important; + } + .gap-sm-1 { + gap: 0.25rem !important; + } + .gap-sm-2 { + gap: 0.5rem !important; + } + .gap-sm-3 { + gap: 1rem !important; + } + .gap-sm-4 { + gap: 1.5rem !important; + } + .gap-sm-5 { + gap: 3rem !important; + } + .row-gap-sm-0 { + row-gap: 0 !important; + } + .row-gap-sm-1 { + row-gap: 0.25rem !important; + } + .row-gap-sm-2 { + row-gap: 0.5rem !important; + } + .row-gap-sm-3 { + row-gap: 1rem !important; + } + .row-gap-sm-4 { + row-gap: 1.5rem !important; + } + .row-gap-sm-5 { + row-gap: 3rem !important; + } + .column-gap-sm-0 { + column-gap: 0 !important; + } + .column-gap-sm-1 { + column-gap: 0.25rem !important; + } + .column-gap-sm-2 { + column-gap: 0.5rem !important; + } + .column-gap-sm-3 { + column-gap: 1rem !important; + } + .column-gap-sm-4 { + column-gap: 1.5rem !important; + } + .column-gap-sm-5 { + column-gap: 3rem !important; + } + .text-sm-start { + text-align: left !important; + } + .text-sm-end { + text-align: right !important; + } + .text-sm-center { + text-align: center !important; + } +} +@media (min-width: 768px) { + .float-md-start { + float: left !important; + } + .float-md-end { + float: right !important; + } + .float-md-none { + float: none !important; + } + .object-fit-md-contain { + object-fit: contain !important; + } + .object-fit-md-cover { + object-fit: cover !important; + } + .object-fit-md-fill { + object-fit: fill !important; + } + .object-fit-md-scale { + object-fit: scale-down !important; + } + .object-fit-md-none { + object-fit: none !important; + } + .d-md-inline { + display: inline !important; + } + .d-md-inline-block { + display: inline-block !important; + } + .d-md-block { + display: block !important; + } + .d-md-grid { + display: grid !important; + } + .d-md-inline-grid { + display: inline-grid !important; + } + .d-md-table { + display: table !important; + } + .d-md-table-row { + display: table-row !important; + } + .d-md-table-cell { + display: table-cell !important; + } + .d-md-flex { + display: flex !important; + } + .d-md-inline-flex { + display: inline-flex !important; + } + .d-md-none { + display: none !important; + } + .flex-md-fill { + flex: 1 1 auto !important; + } + .flex-md-row { + flex-direction: row !important; + } + .flex-md-column { + flex-direction: column !important; + } + .flex-md-row-reverse { + flex-direction: row-reverse !important; + } + .flex-md-column-reverse { + flex-direction: column-reverse !important; + } + .flex-md-grow-0 { + flex-grow: 0 !important; + } + .flex-md-grow-1 { + flex-grow: 1 !important; + } + .flex-md-shrink-0 { + flex-shrink: 0 !important; + } + .flex-md-shrink-1 { + flex-shrink: 1 !important; + } + .flex-md-wrap { + flex-wrap: wrap !important; + } + .flex-md-nowrap { + flex-wrap: nowrap !important; + } + .flex-md-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .justify-content-md-start { + justify-content: flex-start !important; + } + .justify-content-md-end { + justify-content: flex-end !important; + } + .justify-content-md-center { + justify-content: center !important; + } + .justify-content-md-between { + justify-content: space-between !important; + } + .justify-content-md-around { + justify-content: space-around !important; + } + .justify-content-md-evenly { + justify-content: space-evenly !important; + } + .align-items-md-start { + align-items: flex-start !important; + } + .align-items-md-end { + align-items: flex-end !important; + } + .align-items-md-center { + align-items: center !important; + } + .align-items-md-baseline { + align-items: baseline !important; + } + .align-items-md-stretch { + align-items: stretch !important; + } + .align-content-md-start { + align-content: flex-start !important; + } + .align-content-md-end { + align-content: flex-end !important; + } + .align-content-md-center { + align-content: center !important; + } + .align-content-md-between { + align-content: space-between !important; + } + .align-content-md-around { + align-content: space-around !important; + } + .align-content-md-stretch { + align-content: stretch !important; + } + .align-self-md-auto { + align-self: auto !important; + } + .align-self-md-start { + align-self: flex-start !important; + } + .align-self-md-end { + align-self: flex-end !important; + } + .align-self-md-center { + align-self: center !important; + } + .align-self-md-baseline { + align-self: baseline !important; + } + .align-self-md-stretch { + align-self: stretch !important; + } + .order-md-first { + order: -1 !important; + } + .order-md-0 { + order: 0 !important; + } + .order-md-1 { + order: 1 !important; + } + .order-md-2 { + order: 2 !important; + } + .order-md-3 { + order: 3 !important; + } + .order-md-4 { + order: 4 !important; + } + .order-md-5 { + order: 5 !important; + } + .order-md-last { + order: 6 !important; + } + .m-md-0 { + margin: 0 !important; + } + .m-md-1 { + margin: 0.25rem !important; + } + .m-md-2 { + margin: 0.5rem !important; + } + .m-md-3 { + margin: 1rem !important; + } + .m-md-4 { + margin: 1.5rem !important; + } + .m-md-5 { + margin: 3rem !important; + } + .m-md-auto { + margin: auto !important; + } + .mx-md-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } + .mx-md-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } + .mx-md-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } + .mx-md-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } + .mx-md-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } + .mx-md-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } + .mx-md-auto { + margin-right: auto !important; + margin-left: auto !important; + } + .my-md-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-md-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-md-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-md-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-md-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-md-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-md-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-md-0 { + margin-top: 0 !important; + } + .mt-md-1 { + margin-top: 0.25rem !important; + } + .mt-md-2 { + margin-top: 0.5rem !important; + } + .mt-md-3 { + margin-top: 1rem !important; + } + .mt-md-4 { + margin-top: 1.5rem !important; + } + .mt-md-5 { + margin-top: 3rem !important; + } + .mt-md-auto { + margin-top: auto !important; + } + .me-md-0 { + margin-right: 0 !important; + } + .me-md-1 { + margin-right: 0.25rem !important; + } + .me-md-2 { + margin-right: 0.5rem !important; + } + .me-md-3 { + margin-right: 1rem !important; + } + .me-md-4 { + margin-right: 1.5rem !important; + } + .me-md-5 { + margin-right: 3rem !important; + } + .me-md-auto { + margin-right: auto !important; + } + .mb-md-0 { + margin-bottom: 0 !important; + } + .mb-md-1 { + margin-bottom: 0.25rem !important; + } + .mb-md-2 { + margin-bottom: 0.5rem !important; + } + .mb-md-3 { + margin-bottom: 1rem !important; + } + .mb-md-4 { + margin-bottom: 1.5rem !important; + } + .mb-md-5 { + margin-bottom: 3rem !important; + } + .mb-md-auto { + margin-bottom: auto !important; + } + .ms-md-0 { + margin-left: 0 !important; + } + .ms-md-1 { + margin-left: 0.25rem !important; + } + .ms-md-2 { + margin-left: 0.5rem !important; + } + .ms-md-3 { + margin-left: 1rem !important; + } + .ms-md-4 { + margin-left: 1.5rem !important; + } + .ms-md-5 { + margin-left: 3rem !important; + } + .ms-md-auto { + margin-left: auto !important; + } + .p-md-0 { + padding: 0 !important; + } + .p-md-1 { + padding: 0.25rem !important; + } + .p-md-2 { + padding: 0.5rem !important; + } + .p-md-3 { + padding: 1rem !important; + } + .p-md-4 { + padding: 1.5rem !important; + } + .p-md-5 { + padding: 3rem !important; + } + .px-md-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } + .px-md-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } + .px-md-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } + .px-md-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } + .px-md-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } + .px-md-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } + .py-md-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-md-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-md-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-md-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-md-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-md-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-md-0 { + padding-top: 0 !important; + } + .pt-md-1 { + padding-top: 0.25rem !important; + } + .pt-md-2 { + padding-top: 0.5rem !important; + } + .pt-md-3 { + padding-top: 1rem !important; + } + .pt-md-4 { + padding-top: 1.5rem !important; + } + .pt-md-5 { + padding-top: 3rem !important; + } + .pe-md-0 { + padding-right: 0 !important; + } + .pe-md-1 { + padding-right: 0.25rem !important; + } + .pe-md-2 { + padding-right: 0.5rem !important; + } + .pe-md-3 { + padding-right: 1rem !important; + } + .pe-md-4 { + padding-right: 1.5rem !important; + } + .pe-md-5 { + padding-right: 3rem !important; + } + .pb-md-0 { + padding-bottom: 0 !important; + } + .pb-md-1 { + padding-bottom: 0.25rem !important; + } + .pb-md-2 { + padding-bottom: 0.5rem !important; + } + .pb-md-3 { + padding-bottom: 1rem !important; + } + .pb-md-4 { + padding-bottom: 1.5rem !important; + } + .pb-md-5 { + padding-bottom: 3rem !important; + } + .ps-md-0 { + padding-left: 0 !important; + } + .ps-md-1 { + padding-left: 0.25rem !important; + } + .ps-md-2 { + padding-left: 0.5rem !important; + } + .ps-md-3 { + padding-left: 1rem !important; + } + .ps-md-4 { + padding-left: 1.5rem !important; + } + .ps-md-5 { + padding-left: 3rem !important; + } + .gap-md-0 { + gap: 0 !important; + } + .gap-md-1 { + gap: 0.25rem !important; + } + .gap-md-2 { + gap: 0.5rem !important; + } + .gap-md-3 { + gap: 1rem !important; + } + .gap-md-4 { + gap: 1.5rem !important; + } + .gap-md-5 { + gap: 3rem !important; + } + .row-gap-md-0 { + row-gap: 0 !important; + } + .row-gap-md-1 { + row-gap: 0.25rem !important; + } + .row-gap-md-2 { + row-gap: 0.5rem !important; + } + .row-gap-md-3 { + row-gap: 1rem !important; + } + .row-gap-md-4 { + row-gap: 1.5rem !important; + } + .row-gap-md-5 { + row-gap: 3rem !important; + } + .column-gap-md-0 { + column-gap: 0 !important; + } + .column-gap-md-1 { + column-gap: 0.25rem !important; + } + .column-gap-md-2 { + column-gap: 0.5rem !important; + } + .column-gap-md-3 { + column-gap: 1rem !important; + } + .column-gap-md-4 { + column-gap: 1.5rem !important; + } + .column-gap-md-5 { + column-gap: 3rem !important; + } + .text-md-start { + text-align: left !important; + } + .text-md-end { + text-align: right !important; + } + .text-md-center { + text-align: center !important; + } +} +@media (min-width: 992px) { + .float-lg-start { + float: left !important; + } + .float-lg-end { + float: right !important; + } + .float-lg-none { + float: none !important; + } + .object-fit-lg-contain { + object-fit: contain !important; + } + .object-fit-lg-cover { + object-fit: cover !important; + } + .object-fit-lg-fill { + object-fit: fill !important; + } + .object-fit-lg-scale { + object-fit: scale-down !important; + } + .object-fit-lg-none { + object-fit: none !important; + } + .d-lg-inline { + display: inline !important; + } + .d-lg-inline-block { + display: inline-block !important; + } + .d-lg-block { + display: block !important; + } + .d-lg-grid { + display: grid !important; + } + .d-lg-inline-grid { + display: inline-grid !important; + } + .d-lg-table { + display: table !important; + } + .d-lg-table-row { + display: table-row !important; + } + .d-lg-table-cell { + display: table-cell !important; + } + .d-lg-flex { + display: flex !important; + } + .d-lg-inline-flex { + display: inline-flex !important; + } + .d-lg-none { + display: none !important; + } + .flex-lg-fill { + flex: 1 1 auto !important; + } + .flex-lg-row { + flex-direction: row !important; + } + .flex-lg-column { + flex-direction: column !important; + } + .flex-lg-row-reverse { + flex-direction: row-reverse !important; + } + .flex-lg-column-reverse { + flex-direction: column-reverse !important; + } + .flex-lg-grow-0 { + flex-grow: 0 !important; + } + .flex-lg-grow-1 { + flex-grow: 1 !important; + } + .flex-lg-shrink-0 { + flex-shrink: 0 !important; + } + .flex-lg-shrink-1 { + flex-shrink: 1 !important; + } + .flex-lg-wrap { + flex-wrap: wrap !important; + } + .flex-lg-nowrap { + flex-wrap: nowrap !important; + } + .flex-lg-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .justify-content-lg-start { + justify-content: flex-start !important; + } + .justify-content-lg-end { + justify-content: flex-end !important; + } + .justify-content-lg-center { + justify-content: center !important; + } + .justify-content-lg-between { + justify-content: space-between !important; + } + .justify-content-lg-around { + justify-content: space-around !important; + } + .justify-content-lg-evenly { + justify-content: space-evenly !important; + } + .align-items-lg-start { + align-items: flex-start !important; + } + .align-items-lg-end { + align-items: flex-end !important; + } + .align-items-lg-center { + align-items: center !important; + } + .align-items-lg-baseline { + align-items: baseline !important; + } + .align-items-lg-stretch { + align-items: stretch !important; + } + .align-content-lg-start { + align-content: flex-start !important; + } + .align-content-lg-end { + align-content: flex-end !important; + } + .align-content-lg-center { + align-content: center !important; + } + .align-content-lg-between { + align-content: space-between !important; + } + .align-content-lg-around { + align-content: space-around !important; + } + .align-content-lg-stretch { + align-content: stretch !important; + } + .align-self-lg-auto { + align-self: auto !important; + } + .align-self-lg-start { + align-self: flex-start !important; + } + .align-self-lg-end { + align-self: flex-end !important; + } + .align-self-lg-center { + align-self: center !important; + } + .align-self-lg-baseline { + align-self: baseline !important; + } + .align-self-lg-stretch { + align-self: stretch !important; + } + .order-lg-first { + order: -1 !important; + } + .order-lg-0 { + order: 0 !important; + } + .order-lg-1 { + order: 1 !important; + } + .order-lg-2 { + order: 2 !important; + } + .order-lg-3 { + order: 3 !important; + } + .order-lg-4 { + order: 4 !important; + } + .order-lg-5 { + order: 5 !important; + } + .order-lg-last { + order: 6 !important; + } + .m-lg-0 { + margin: 0 !important; + } + .m-lg-1 { + margin: 0.25rem !important; + } + .m-lg-2 { + margin: 0.5rem !important; + } + .m-lg-3 { + margin: 1rem !important; + } + .m-lg-4 { + margin: 1.5rem !important; + } + .m-lg-5 { + margin: 3rem !important; + } + .m-lg-auto { + margin: auto !important; + } + .mx-lg-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } + .mx-lg-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } + .mx-lg-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } + .mx-lg-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } + .mx-lg-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } + .mx-lg-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } + .mx-lg-auto { + margin-right: auto !important; + margin-left: auto !important; + } + .my-lg-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-lg-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-lg-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-lg-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-lg-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-lg-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-lg-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-lg-0 { + margin-top: 0 !important; + } + .mt-lg-1 { + margin-top: 0.25rem !important; + } + .mt-lg-2 { + margin-top: 0.5rem !important; + } + .mt-lg-3 { + margin-top: 1rem !important; + } + .mt-lg-4 { + margin-top: 1.5rem !important; + } + .mt-lg-5 { + margin-top: 3rem !important; + } + .mt-lg-auto { + margin-top: auto !important; + } + .me-lg-0 { + margin-right: 0 !important; + } + .me-lg-1 { + margin-right: 0.25rem !important; + } + .me-lg-2 { + margin-right: 0.5rem !important; + } + .me-lg-3 { + margin-right: 1rem !important; + } + .me-lg-4 { + margin-right: 1.5rem !important; + } + .me-lg-5 { + margin-right: 3rem !important; + } + .me-lg-auto { + margin-right: auto !important; + } + .mb-lg-0 { + margin-bottom: 0 !important; + } + .mb-lg-1 { + margin-bottom: 0.25rem !important; + } + .mb-lg-2 { + margin-bottom: 0.5rem !important; + } + .mb-lg-3 { + margin-bottom: 1rem !important; + } + .mb-lg-4 { + margin-bottom: 1.5rem !important; + } + .mb-lg-5 { + margin-bottom: 3rem !important; + } + .mb-lg-auto { + margin-bottom: auto !important; + } + .ms-lg-0 { + margin-left: 0 !important; + } + .ms-lg-1 { + margin-left: 0.25rem !important; + } + .ms-lg-2 { + margin-left: 0.5rem !important; + } + .ms-lg-3 { + margin-left: 1rem !important; + } + .ms-lg-4 { + margin-left: 1.5rem !important; + } + .ms-lg-5 { + margin-left: 3rem !important; + } + .ms-lg-auto { + margin-left: auto !important; + } + .p-lg-0 { + padding: 0 !important; + } + .p-lg-1 { + padding: 0.25rem !important; + } + .p-lg-2 { + padding: 0.5rem !important; + } + .p-lg-3 { + padding: 1rem !important; + } + .p-lg-4 { + padding: 1.5rem !important; + } + .p-lg-5 { + padding: 3rem !important; + } + .px-lg-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } + .px-lg-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } + .px-lg-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } + .px-lg-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } + .px-lg-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } + .px-lg-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } + .py-lg-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-lg-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-lg-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-lg-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-lg-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-lg-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-lg-0 { + padding-top: 0 !important; + } + .pt-lg-1 { + padding-top: 0.25rem !important; + } + .pt-lg-2 { + padding-top: 0.5rem !important; + } + .pt-lg-3 { + padding-top: 1rem !important; + } + .pt-lg-4 { + padding-top: 1.5rem !important; + } + .pt-lg-5 { + padding-top: 3rem !important; + } + .pe-lg-0 { + padding-right: 0 !important; + } + .pe-lg-1 { + padding-right: 0.25rem !important; + } + .pe-lg-2 { + padding-right: 0.5rem !important; + } + .pe-lg-3 { + padding-right: 1rem !important; + } + .pe-lg-4 { + padding-right: 1.5rem !important; + } + .pe-lg-5 { + padding-right: 3rem !important; + } + .pb-lg-0 { + padding-bottom: 0 !important; + } + .pb-lg-1 { + padding-bottom: 0.25rem !important; + } + .pb-lg-2 { + padding-bottom: 0.5rem !important; + } + .pb-lg-3 { + padding-bottom: 1rem !important; + } + .pb-lg-4 { + padding-bottom: 1.5rem !important; + } + .pb-lg-5 { + padding-bottom: 3rem !important; + } + .ps-lg-0 { + padding-left: 0 !important; + } + .ps-lg-1 { + padding-left: 0.25rem !important; + } + .ps-lg-2 { + padding-left: 0.5rem !important; + } + .ps-lg-3 { + padding-left: 1rem !important; + } + .ps-lg-4 { + padding-left: 1.5rem !important; + } + .ps-lg-5 { + padding-left: 3rem !important; + } + .gap-lg-0 { + gap: 0 !important; + } + .gap-lg-1 { + gap: 0.25rem !important; + } + .gap-lg-2 { + gap: 0.5rem !important; + } + .gap-lg-3 { + gap: 1rem !important; + } + .gap-lg-4 { + gap: 1.5rem !important; + } + .gap-lg-5 { + gap: 3rem !important; + } + .row-gap-lg-0 { + row-gap: 0 !important; + } + .row-gap-lg-1 { + row-gap: 0.25rem !important; + } + .row-gap-lg-2 { + row-gap: 0.5rem !important; + } + .row-gap-lg-3 { + row-gap: 1rem !important; + } + .row-gap-lg-4 { + row-gap: 1.5rem !important; + } + .row-gap-lg-5 { + row-gap: 3rem !important; + } + .column-gap-lg-0 { + column-gap: 0 !important; + } + .column-gap-lg-1 { + column-gap: 0.25rem !important; + } + .column-gap-lg-2 { + column-gap: 0.5rem !important; + } + .column-gap-lg-3 { + column-gap: 1rem !important; + } + .column-gap-lg-4 { + column-gap: 1.5rem !important; + } + .column-gap-lg-5 { + column-gap: 3rem !important; + } + .text-lg-start { + text-align: left !important; + } + .text-lg-end { + text-align: right !important; + } + .text-lg-center { + text-align: center !important; + } +} +@media (min-width: 1200px) { + .float-xl-start { + float: left !important; + } + .float-xl-end { + float: right !important; + } + .float-xl-none { + float: none !important; + } + .object-fit-xl-contain { + object-fit: contain !important; + } + .object-fit-xl-cover { + object-fit: cover !important; + } + .object-fit-xl-fill { + object-fit: fill !important; + } + .object-fit-xl-scale { + object-fit: scale-down !important; + } + .object-fit-xl-none { + object-fit: none !important; + } + .d-xl-inline { + display: inline !important; + } + .d-xl-inline-block { + display: inline-block !important; + } + .d-xl-block { + display: block !important; + } + .d-xl-grid { + display: grid !important; + } + .d-xl-inline-grid { + display: inline-grid !important; + } + .d-xl-table { + display: table !important; + } + .d-xl-table-row { + display: table-row !important; + } + .d-xl-table-cell { + display: table-cell !important; + } + .d-xl-flex { + display: flex !important; + } + .d-xl-inline-flex { + display: inline-flex !important; + } + .d-xl-none { + display: none !important; + } + .flex-xl-fill { + flex: 1 1 auto !important; + } + .flex-xl-row { + flex-direction: row !important; + } + .flex-xl-column { + flex-direction: column !important; + } + .flex-xl-row-reverse { + flex-direction: row-reverse !important; + } + .flex-xl-column-reverse { + flex-direction: column-reverse !important; + } + .flex-xl-grow-0 { + flex-grow: 0 !important; + } + .flex-xl-grow-1 { + flex-grow: 1 !important; + } + .flex-xl-shrink-0 { + flex-shrink: 0 !important; + } + .flex-xl-shrink-1 { + flex-shrink: 1 !important; + } + .flex-xl-wrap { + flex-wrap: wrap !important; + } + .flex-xl-nowrap { + flex-wrap: nowrap !important; + } + .flex-xl-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .justify-content-xl-start { + justify-content: flex-start !important; + } + .justify-content-xl-end { + justify-content: flex-end !important; + } + .justify-content-xl-center { + justify-content: center !important; + } + .justify-content-xl-between { + justify-content: space-between !important; + } + .justify-content-xl-around { + justify-content: space-around !important; + } + .justify-content-xl-evenly { + justify-content: space-evenly !important; + } + .align-items-xl-start { + align-items: flex-start !important; + } + .align-items-xl-end { + align-items: flex-end !important; + } + .align-items-xl-center { + align-items: center !important; + } + .align-items-xl-baseline { + align-items: baseline !important; + } + .align-items-xl-stretch { + align-items: stretch !important; + } + .align-content-xl-start { + align-content: flex-start !important; + } + .align-content-xl-end { + align-content: flex-end !important; + } + .align-content-xl-center { + align-content: center !important; + } + .align-content-xl-between { + align-content: space-between !important; + } + .align-content-xl-around { + align-content: space-around !important; + } + .align-content-xl-stretch { + align-content: stretch !important; + } + .align-self-xl-auto { + align-self: auto !important; + } + .align-self-xl-start { + align-self: flex-start !important; + } + .align-self-xl-end { + align-self: flex-end !important; + } + .align-self-xl-center { + align-self: center !important; + } + .align-self-xl-baseline { + align-self: baseline !important; + } + .align-self-xl-stretch { + align-self: stretch !important; + } + .order-xl-first { + order: -1 !important; + } + .order-xl-0 { + order: 0 !important; + } + .order-xl-1 { + order: 1 !important; + } + .order-xl-2 { + order: 2 !important; + } + .order-xl-3 { + order: 3 !important; + } + .order-xl-4 { + order: 4 !important; + } + .order-xl-5 { + order: 5 !important; + } + .order-xl-last { + order: 6 !important; + } + .m-xl-0 { + margin: 0 !important; + } + .m-xl-1 { + margin: 0.25rem !important; + } + .m-xl-2 { + margin: 0.5rem !important; + } + .m-xl-3 { + margin: 1rem !important; + } + .m-xl-4 { + margin: 1.5rem !important; + } + .m-xl-5 { + margin: 3rem !important; + } + .m-xl-auto { + margin: auto !important; + } + .mx-xl-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } + .mx-xl-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } + .mx-xl-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } + .mx-xl-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } + .mx-xl-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } + .mx-xl-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } + .mx-xl-auto { + margin-right: auto !important; + margin-left: auto !important; + } + .my-xl-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-xl-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-xl-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-xl-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-xl-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-xl-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-xl-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-xl-0 { + margin-top: 0 !important; + } + .mt-xl-1 { + margin-top: 0.25rem !important; + } + .mt-xl-2 { + margin-top: 0.5rem !important; + } + .mt-xl-3 { + margin-top: 1rem !important; + } + .mt-xl-4 { + margin-top: 1.5rem !important; + } + .mt-xl-5 { + margin-top: 3rem !important; + } + .mt-xl-auto { + margin-top: auto !important; + } + .me-xl-0 { + margin-right: 0 !important; + } + .me-xl-1 { + margin-right: 0.25rem !important; + } + .me-xl-2 { + margin-right: 0.5rem !important; + } + .me-xl-3 { + margin-right: 1rem !important; + } + .me-xl-4 { + margin-right: 1.5rem !important; + } + .me-xl-5 { + margin-right: 3rem !important; + } + .me-xl-auto { + margin-right: auto !important; + } + .mb-xl-0 { + margin-bottom: 0 !important; + } + .mb-xl-1 { + margin-bottom: 0.25rem !important; + } + .mb-xl-2 { + margin-bottom: 0.5rem !important; + } + .mb-xl-3 { + margin-bottom: 1rem !important; + } + .mb-xl-4 { + margin-bottom: 1.5rem !important; + } + .mb-xl-5 { + margin-bottom: 3rem !important; + } + .mb-xl-auto { + margin-bottom: auto !important; + } + .ms-xl-0 { + margin-left: 0 !important; + } + .ms-xl-1 { + margin-left: 0.25rem !important; + } + .ms-xl-2 { + margin-left: 0.5rem !important; + } + .ms-xl-3 { + margin-left: 1rem !important; + } + .ms-xl-4 { + margin-left: 1.5rem !important; + } + .ms-xl-5 { + margin-left: 3rem !important; + } + .ms-xl-auto { + margin-left: auto !important; + } + .p-xl-0 { + padding: 0 !important; + } + .p-xl-1 { + padding: 0.25rem !important; + } + .p-xl-2 { + padding: 0.5rem !important; + } + .p-xl-3 { + padding: 1rem !important; + } + .p-xl-4 { + padding: 1.5rem !important; + } + .p-xl-5 { + padding: 3rem !important; + } + .px-xl-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } + .px-xl-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } + .px-xl-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } + .px-xl-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } + .px-xl-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } + .px-xl-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } + .py-xl-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-xl-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-xl-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-xl-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-xl-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-xl-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-xl-0 { + padding-top: 0 !important; + } + .pt-xl-1 { + padding-top: 0.25rem !important; + } + .pt-xl-2 { + padding-top: 0.5rem !important; + } + .pt-xl-3 { + padding-top: 1rem !important; + } + .pt-xl-4 { + padding-top: 1.5rem !important; + } + .pt-xl-5 { + padding-top: 3rem !important; + } + .pe-xl-0 { + padding-right: 0 !important; + } + .pe-xl-1 { + padding-right: 0.25rem !important; + } + .pe-xl-2 { + padding-right: 0.5rem !important; + } + .pe-xl-3 { + padding-right: 1rem !important; + } + .pe-xl-4 { + padding-right: 1.5rem !important; + } + .pe-xl-5 { + padding-right: 3rem !important; + } + .pb-xl-0 { + padding-bottom: 0 !important; + } + .pb-xl-1 { + padding-bottom: 0.25rem !important; + } + .pb-xl-2 { + padding-bottom: 0.5rem !important; + } + .pb-xl-3 { + padding-bottom: 1rem !important; + } + .pb-xl-4 { + padding-bottom: 1.5rem !important; + } + .pb-xl-5 { + padding-bottom: 3rem !important; + } + .ps-xl-0 { + padding-left: 0 !important; + } + .ps-xl-1 { + padding-left: 0.25rem !important; + } + .ps-xl-2 { + padding-left: 0.5rem !important; + } + .ps-xl-3 { + padding-left: 1rem !important; + } + .ps-xl-4 { + padding-left: 1.5rem !important; + } + .ps-xl-5 { + padding-left: 3rem !important; + } + .gap-xl-0 { + gap: 0 !important; + } + .gap-xl-1 { + gap: 0.25rem !important; + } + .gap-xl-2 { + gap: 0.5rem !important; + } + .gap-xl-3 { + gap: 1rem !important; + } + .gap-xl-4 { + gap: 1.5rem !important; + } + .gap-xl-5 { + gap: 3rem !important; + } + .row-gap-xl-0 { + row-gap: 0 !important; + } + .row-gap-xl-1 { + row-gap: 0.25rem !important; + } + .row-gap-xl-2 { + row-gap: 0.5rem !important; + } + .row-gap-xl-3 { + row-gap: 1rem !important; + } + .row-gap-xl-4 { + row-gap: 1.5rem !important; + } + .row-gap-xl-5 { + row-gap: 3rem !important; + } + .column-gap-xl-0 { + column-gap: 0 !important; + } + .column-gap-xl-1 { + column-gap: 0.25rem !important; + } + .column-gap-xl-2 { + column-gap: 0.5rem !important; + } + .column-gap-xl-3 { + column-gap: 1rem !important; + } + .column-gap-xl-4 { + column-gap: 1.5rem !important; + } + .column-gap-xl-5 { + column-gap: 3rem !important; + } + .text-xl-start { + text-align: left !important; + } + .text-xl-end { + text-align: right !important; + } + .text-xl-center { + text-align: center !important; + } +} +@media (min-width: 1400px) { + .float-xxl-start { + float: left !important; + } + .float-xxl-end { + float: right !important; + } + .float-xxl-none { + float: none !important; + } + .object-fit-xxl-contain { + object-fit: contain !important; + } + .object-fit-xxl-cover { + object-fit: cover !important; + } + .object-fit-xxl-fill { + object-fit: fill !important; + } + .object-fit-xxl-scale { + object-fit: scale-down !important; + } + .object-fit-xxl-none { + object-fit: none !important; + } + .d-xxl-inline { + display: inline !important; + } + .d-xxl-inline-block { + display: inline-block !important; + } + .d-xxl-block { + display: block !important; + } + .d-xxl-grid { + display: grid !important; + } + .d-xxl-inline-grid { + display: inline-grid !important; + } + .d-xxl-table { + display: table !important; + } + .d-xxl-table-row { + display: table-row !important; + } + .d-xxl-table-cell { + display: table-cell !important; + } + .d-xxl-flex { + display: flex !important; + } + .d-xxl-inline-flex { + display: inline-flex !important; + } + .d-xxl-none { + display: none !important; + } + .flex-xxl-fill { + flex: 1 1 auto !important; + } + .flex-xxl-row { + flex-direction: row !important; + } + .flex-xxl-column { + flex-direction: column !important; + } + .flex-xxl-row-reverse { + flex-direction: row-reverse !important; + } + .flex-xxl-column-reverse { + flex-direction: column-reverse !important; + } + .flex-xxl-grow-0 { + flex-grow: 0 !important; + } + .flex-xxl-grow-1 { + flex-grow: 1 !important; + } + .flex-xxl-shrink-0 { + flex-shrink: 0 !important; + } + .flex-xxl-shrink-1 { + flex-shrink: 1 !important; + } + .flex-xxl-wrap { + flex-wrap: wrap !important; + } + .flex-xxl-nowrap { + flex-wrap: nowrap !important; + } + .flex-xxl-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .justify-content-xxl-start { + justify-content: flex-start !important; + } + .justify-content-xxl-end { + justify-content: flex-end !important; + } + .justify-content-xxl-center { + justify-content: center !important; + } + .justify-content-xxl-between { + justify-content: space-between !important; + } + .justify-content-xxl-around { + justify-content: space-around !important; + } + .justify-content-xxl-evenly { + justify-content: space-evenly !important; + } + .align-items-xxl-start { + align-items: flex-start !important; + } + .align-items-xxl-end { + align-items: flex-end !important; + } + .align-items-xxl-center { + align-items: center !important; + } + .align-items-xxl-baseline { + align-items: baseline !important; + } + .align-items-xxl-stretch { + align-items: stretch !important; + } + .align-content-xxl-start { + align-content: flex-start !important; + } + .align-content-xxl-end { + align-content: flex-end !important; + } + .align-content-xxl-center { + align-content: center !important; + } + .align-content-xxl-between { + align-content: space-between !important; + } + .align-content-xxl-around { + align-content: space-around !important; + } + .align-content-xxl-stretch { + align-content: stretch !important; + } + .align-self-xxl-auto { + align-self: auto !important; + } + .align-self-xxl-start { + align-self: flex-start !important; + } + .align-self-xxl-end { + align-self: flex-end !important; + } + .align-self-xxl-center { + align-self: center !important; + } + .align-self-xxl-baseline { + align-self: baseline !important; + } + .align-self-xxl-stretch { + align-self: stretch !important; + } + .order-xxl-first { + order: -1 !important; + } + .order-xxl-0 { + order: 0 !important; + } + .order-xxl-1 { + order: 1 !important; + } + .order-xxl-2 { + order: 2 !important; + } + .order-xxl-3 { + order: 3 !important; + } + .order-xxl-4 { + order: 4 !important; + } + .order-xxl-5 { + order: 5 !important; + } + .order-xxl-last { + order: 6 !important; + } + .m-xxl-0 { + margin: 0 !important; + } + .m-xxl-1 { + margin: 0.25rem !important; + } + .m-xxl-2 { + margin: 0.5rem !important; + } + .m-xxl-3 { + margin: 1rem !important; + } + .m-xxl-4 { + margin: 1.5rem !important; + } + .m-xxl-5 { + margin: 3rem !important; + } + .m-xxl-auto { + margin: auto !important; + } + .mx-xxl-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } + .mx-xxl-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } + .mx-xxl-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } + .mx-xxl-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } + .mx-xxl-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } + .mx-xxl-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } + .mx-xxl-auto { + margin-right: auto !important; + margin-left: auto !important; + } + .my-xxl-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-xxl-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-xxl-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-xxl-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-xxl-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-xxl-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-xxl-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-xxl-0 { + margin-top: 0 !important; + } + .mt-xxl-1 { + margin-top: 0.25rem !important; + } + .mt-xxl-2 { + margin-top: 0.5rem !important; + } + .mt-xxl-3 { + margin-top: 1rem !important; + } + .mt-xxl-4 { + margin-top: 1.5rem !important; + } + .mt-xxl-5 { + margin-top: 3rem !important; + } + .mt-xxl-auto { + margin-top: auto !important; + } + .me-xxl-0 { + margin-right: 0 !important; + } + .me-xxl-1 { + margin-right: 0.25rem !important; + } + .me-xxl-2 { + margin-right: 0.5rem !important; + } + .me-xxl-3 { + margin-right: 1rem !important; + } + .me-xxl-4 { + margin-right: 1.5rem !important; + } + .me-xxl-5 { + margin-right: 3rem !important; + } + .me-xxl-auto { + margin-right: auto !important; + } + .mb-xxl-0 { + margin-bottom: 0 !important; + } + .mb-xxl-1 { + margin-bottom: 0.25rem !important; + } + .mb-xxl-2 { + margin-bottom: 0.5rem !important; + } + .mb-xxl-3 { + margin-bottom: 1rem !important; + } + .mb-xxl-4 { + margin-bottom: 1.5rem !important; + } + .mb-xxl-5 { + margin-bottom: 3rem !important; + } + .mb-xxl-auto { + margin-bottom: auto !important; + } + .ms-xxl-0 { + margin-left: 0 !important; + } + .ms-xxl-1 { + margin-left: 0.25rem !important; + } + .ms-xxl-2 { + margin-left: 0.5rem !important; + } + .ms-xxl-3 { + margin-left: 1rem !important; + } + .ms-xxl-4 { + margin-left: 1.5rem !important; + } + .ms-xxl-5 { + margin-left: 3rem !important; + } + .ms-xxl-auto { + margin-left: auto !important; + } + .p-xxl-0 { + padding: 0 !important; + } + .p-xxl-1 { + padding: 0.25rem !important; + } + .p-xxl-2 { + padding: 0.5rem !important; + } + .p-xxl-3 { + padding: 1rem !important; + } + .p-xxl-4 { + padding: 1.5rem !important; + } + .p-xxl-5 { + padding: 3rem !important; + } + .px-xxl-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } + .px-xxl-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } + .px-xxl-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } + .px-xxl-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } + .px-xxl-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } + .px-xxl-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } + .py-xxl-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-xxl-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-xxl-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-xxl-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-xxl-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-xxl-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-xxl-0 { + padding-top: 0 !important; + } + .pt-xxl-1 { + padding-top: 0.25rem !important; + } + .pt-xxl-2 { + padding-top: 0.5rem !important; + } + .pt-xxl-3 { + padding-top: 1rem !important; + } + .pt-xxl-4 { + padding-top: 1.5rem !important; + } + .pt-xxl-5 { + padding-top: 3rem !important; + } + .pe-xxl-0 { + padding-right: 0 !important; + } + .pe-xxl-1 { + padding-right: 0.25rem !important; + } + .pe-xxl-2 { + padding-right: 0.5rem !important; + } + .pe-xxl-3 { + padding-right: 1rem !important; + } + .pe-xxl-4 { + padding-right: 1.5rem !important; + } + .pe-xxl-5 { + padding-right: 3rem !important; + } + .pb-xxl-0 { + padding-bottom: 0 !important; + } + .pb-xxl-1 { + padding-bottom: 0.25rem !important; + } + .pb-xxl-2 { + padding-bottom: 0.5rem !important; + } + .pb-xxl-3 { + padding-bottom: 1rem !important; + } + .pb-xxl-4 { + padding-bottom: 1.5rem !important; + } + .pb-xxl-5 { + padding-bottom: 3rem !important; + } + .ps-xxl-0 { + padding-left: 0 !important; + } + .ps-xxl-1 { + padding-left: 0.25rem !important; + } + .ps-xxl-2 { + padding-left: 0.5rem !important; + } + .ps-xxl-3 { + padding-left: 1rem !important; + } + .ps-xxl-4 { + padding-left: 1.5rem !important; + } + .ps-xxl-5 { + padding-left: 3rem !important; + } + .gap-xxl-0 { + gap: 0 !important; + } + .gap-xxl-1 { + gap: 0.25rem !important; + } + .gap-xxl-2 { + gap: 0.5rem !important; + } + .gap-xxl-3 { + gap: 1rem !important; + } + .gap-xxl-4 { + gap: 1.5rem !important; + } + .gap-xxl-5 { + gap: 3rem !important; + } + .row-gap-xxl-0 { + row-gap: 0 !important; + } + .row-gap-xxl-1 { + row-gap: 0.25rem !important; + } + .row-gap-xxl-2 { + row-gap: 0.5rem !important; + } + .row-gap-xxl-3 { + row-gap: 1rem !important; + } + .row-gap-xxl-4 { + row-gap: 1.5rem !important; + } + .row-gap-xxl-5 { + row-gap: 3rem !important; + } + .column-gap-xxl-0 { + column-gap: 0 !important; + } + .column-gap-xxl-1 { + column-gap: 0.25rem !important; + } + .column-gap-xxl-2 { + column-gap: 0.5rem !important; + } + .column-gap-xxl-3 { + column-gap: 1rem !important; + } + .column-gap-xxl-4 { + column-gap: 1.5rem !important; + } + .column-gap-xxl-5 { + column-gap: 3rem !important; + } + .text-xxl-start { + text-align: left !important; + } + .text-xxl-end { + text-align: right !important; + } + .text-xxl-center { + text-align: center !important; + } +} +@media (min-width: 1200px) { + .fs-1 { + font-size: 1.8375rem !important; + } + .fs-2 { + font-size: 1.53125rem !important; + } + .fs-3 { + font-size: 1.3125rem !important; + } +} +@media print { + .d-print-inline { + display: inline !important; + } + .d-print-inline-block { + display: inline-block !important; + } + .d-print-block { + display: block !important; + } + .d-print-grid { + display: grid !important; + } + .d-print-inline-grid { + display: inline-grid !important; + } + .d-print-table { + display: table !important; + } + .d-print-table-row { + display: table-row !important; + } + .d-print-table-cell { + display: table-cell !important; + } + .d-print-flex { + display: flex !important; + } + .d-print-inline-flex { + display: inline-flex !important; + } + .d-print-none { + display: none !important; + } +} +.btn .feather, [data-bs-theme=dark] .pma_quick_warp .drop_button .feather { + width: 14px; + height: 14px; +} + +.btn-primary, [data-bs-theme=dark] .pma_quick_warp .drop_button, .btn-primary:focus, .btn-primary.focus, .btn-primary.disabled, .btn-primary:disabled, .show > .btn-primary.dropdown-toggle { + color: #fff; +} +.btn-primary:hover:not(:disabled):not(.disabled), [data-bs-theme=dark] .pma_quick_warp .drop_button:hover:not(:disabled):not(.disabled), .btn-primary.hover:not(:disabled):not(.disabled), [data-bs-theme=dark] .pma_quick_warp .hover.drop_button:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-secondary, .btn-secondary:focus, .btn-secondary.focus, .btn-secondary.disabled, .btn-secondary:disabled, .show > .btn-secondary.dropdown-toggle { + color: #fff; +} +.btn-secondary:hover:not(:disabled):not(.disabled), .btn-secondary.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-success, .btn-success:focus, .btn-success.focus, .btn-success.disabled, .btn-success:disabled, .show > .btn-success.dropdown-toggle { + color: #fff; +} +.btn-success:hover:not(:disabled):not(.disabled), .btn-success.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-info, .btn-info:focus, .btn-info.focus, .btn-info.disabled, .btn-info:disabled, .show > .btn-info.dropdown-toggle { + color: #fff; +} +.btn-info:hover:not(:disabled):not(.disabled), .btn-info.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-warning, .btn-warning:focus, .btn-warning.focus, .btn-warning.disabled, .btn-warning:disabled, .show > .btn-warning.dropdown-toggle { + color: #fff; +} +.btn-warning:hover:not(:disabled):not(.disabled), .btn-warning.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-danger, .btn-danger:focus, .btn-danger.focus, .btn-danger.disabled, .btn-danger:disabled, .show > .btn-danger.dropdown-toggle { + color: #fff; +} +.btn-danger:hover:not(:disabled):not(.disabled), .btn-danger.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-light, .btn-light:focus, .btn-light.focus, .btn-light.disabled, .btn-light:disabled, .show > .btn-light.dropdown-toggle { + color: #fff; +} +.btn-light:hover:not(:disabled):not(.disabled), .btn-light.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-dark, .btn-dark:focus, .btn-dark.focus, .btn-dark.disabled, .btn-dark:disabled, .show > .btn-dark.dropdown-toggle { + color: #fff; +} +.btn-dark:hover:not(:disabled):not(.disabled), .btn-dark.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-facebook { + --bs-btn-color: #fff; + --bs-btn-bg: #3b5998; + --bs-btn-border-color: #3b5998; + --bs-btn-hover-color: #fff; + --bs-btn-hover-bg: rgb(19.6666666667%, 29.6666666667%, 50.6666666667%); + --bs-btn-hover-border-color: rgb(18.5098039216%, 27.9215686275%, 47.6862745098%); + --bs-btn-focus-shadow-rgb: 88, 114, 167; + --bs-btn-active-color: #fff; + --bs-btn-active-bg: rgb(18.5098039216%, 27.9215686275%, 47.6862745098%); + --bs-btn-active-border-color: rgb(17.3529411765%, 26.1764705882%, 44.7058823529%); + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #fff; + --bs-btn-disabled-bg: #3b5998; + --bs-btn-disabled-border-color: #3b5998; +} +.btn-facebook, .btn-facebook:focus, .btn-facebook.focus, .btn-facebook.disabled, .btn-facebook:disabled, .show > .btn-facebook.dropdown-toggle { + color: #fff; +} +.btn-facebook:hover:not(:disabled):not(.disabled), .btn-facebook.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-twitter { + --bs-btn-color: #000; + --bs-btn-bg: #1da1f2; + --bs-btn-border-color: #1da1f2; + --bs-btn-hover-color: #000; + --bs-btn-hover-bg: rgb(24.6666666667%, 68.6666666667%, 95.6666666667%); + --bs-btn-hover-border-color: rgb(20.2352941176%, 66.8235294118%, 95.4117647059%); + --bs-btn-focus-shadow-rgb: 25, 137, 206; + --bs-btn-active-color: #000; + --bs-btn-active-bg: rgb(29.0980392157%, 70.5098039216%, 95.9215686275%); + --bs-btn-active-border-color: rgb(20.2352941176%, 66.8235294118%, 95.4117647059%); + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #000; + --bs-btn-disabled-bg: #1da1f2; + --bs-btn-disabled-border-color: #1da1f2; +} +.btn-twitter, .btn-twitter:focus, .btn-twitter.focus, .btn-twitter.disabled, .btn-twitter:disabled, .show > .btn-twitter.dropdown-toggle { + color: #fff; +} +.btn-twitter:hover:not(:disabled):not(.disabled), .btn-twitter.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-google { + --bs-btn-color: #000; + --bs-btn-bg: #dc4e41; + --bs-btn-border-color: #dc4e41; + --bs-btn-hover-color: #000; + --bs-btn-hover-bg: rgb(88.3333333333%, 41%, 36.6666666667%); + --bs-btn-hover-border-color: rgb(87.6470588235%, 37.5294117647%, 32.9411764706%); + --bs-btn-focus-shadow-rgb: 187, 66, 55; + --bs-btn-active-color: #000; + --bs-btn-active-bg: rgb(89.0196078431%, 44.4705882353%, 40.3921568627%); + --bs-btn-active-border-color: rgb(87.6470588235%, 37.5294117647%, 32.9411764706%); + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #000; + --bs-btn-disabled-bg: #dc4e41; + --bs-btn-disabled-border-color: #dc4e41; +} +.btn-google, .btn-google:focus, .btn-google.focus, .btn-google.disabled, .btn-google:disabled, .show > .btn-google.dropdown-toggle { + color: #fff; +} +.btn-google:hover:not(:disabled):not(.disabled), .btn-google.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-youtube { + --bs-btn-color: #000; + --bs-btn-bg: #f00; + --bs-btn-border-color: #f00; + --bs-btn-hover-color: #000; + --bs-btn-hover-bg: rgb(100%, 15%, 15%); + --bs-btn-hover-border-color: rgb(100%, 10%, 10%); + --bs-btn-focus-shadow-rgb: 217, 0, 0; + --bs-btn-active-color: #000; + --bs-btn-active-bg: #ff3333; + --bs-btn-active-border-color: rgb(100%, 10%, 10%); + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #000; + --bs-btn-disabled-bg: #f00; + --bs-btn-disabled-border-color: #f00; +} +.btn-youtube, .btn-youtube:focus, .btn-youtube.focus, .btn-youtube.disabled, .btn-youtube:disabled, .show > .btn-youtube.dropdown-toggle { + color: #fff; +} +.btn-youtube:hover:not(:disabled):not(.disabled), .btn-youtube.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-vimeo { + --bs-btn-color: #000; + --bs-btn-bg: #1ab7ea; + --bs-btn-border-color: #1ab7ea; + --bs-btn-hover-color: #000; + --bs-btn-hover-bg: rgb(23.6666666667%, 76%, 93%); + --bs-btn-hover-border-color: rgb(19.1764705882%, 74.5882352941%, 92.5882352941%); + --bs-btn-focus-shadow-rgb: 22, 156, 199; + --bs-btn-active-color: #000; + --bs-btn-active-bg: rgb(28.1568627451%, 77.4117647059%, 93.4117647059%); + --bs-btn-active-border-color: rgb(19.1764705882%, 74.5882352941%, 92.5882352941%); + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #000; + --bs-btn-disabled-bg: #1ab7ea; + --bs-btn-disabled-border-color: #1ab7ea; +} +.btn-vimeo, .btn-vimeo:focus, .btn-vimeo.focus, .btn-vimeo.disabled, .btn-vimeo:disabled, .show > .btn-vimeo.dropdown-toggle { + color: #fff; +} +.btn-vimeo:hover:not(:disabled):not(.disabled), .btn-vimeo.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-dribbble { + --bs-btn-color: #000; + --bs-btn-bg: #ea4c89; + --bs-btn-border-color: #ea4c89; + --bs-btn-hover-color: #000; + --bs-btn-hover-bg: rgb(93%, 40.3333333333%, 60.6666666667%); + --bs-btn-hover-border-color: rgb(92.5882352941%, 36.8235294118%, 58.3529411765%); + --bs-btn-focus-shadow-rgb: 199, 65, 116; + --bs-btn-active-color: #000; + --bs-btn-active-bg: rgb(93.4117647059%, 43.8431372549%, 62.9803921569%); + --bs-btn-active-border-color: rgb(92.5882352941%, 36.8235294118%, 58.3529411765%); + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #000; + --bs-btn-disabled-bg: #ea4c89; + --bs-btn-disabled-border-color: #ea4c89; +} +.btn-dribbble, .btn-dribbble:focus, .btn-dribbble.focus, .btn-dribbble.disabled, .btn-dribbble:disabled, .show > .btn-dribbble.dropdown-toggle { + color: #fff; +} +.btn-dribbble:hover:not(:disabled):not(.disabled), .btn-dribbble.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-github { + --bs-btn-color: #fff; + --bs-btn-bg: #181717; + --bs-btn-border-color: #181717; + --bs-btn-hover-color: #fff; + --bs-btn-hover-bg: rgb(8%, 7.6666666667%, 7.6666666667%); + --bs-btn-hover-border-color: rgb(7.5294117647%, 7.2156862745%, 7.2156862745%); + --bs-btn-focus-shadow-rgb: 59, 58, 58; + --bs-btn-active-color: #fff; + --bs-btn-active-bg: rgb(7.5294117647%, 7.2156862745%, 7.2156862745%); + --bs-btn-active-border-color: rgb(7.0588235294%, 6.7647058824%, 6.7647058824%); + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #fff; + --bs-btn-disabled-bg: #181717; + --bs-btn-disabled-border-color: #181717; +} +.btn-github, .btn-github:focus, .btn-github.focus, .btn-github.disabled, .btn-github:disabled, .show > .btn-github.dropdown-toggle { + color: #fff; +} +.btn-github:hover:not(:disabled):not(.disabled), .btn-github.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-instagram { + --bs-btn-color: #000; + --bs-btn-bg: #e4405f; + --bs-btn-border-color: #e4405f; + --bs-btn-hover-color: #000; + --bs-btn-hover-bg: rgb(91%, 36.3333333333%, 46.6666666667%); + --bs-btn-hover-border-color: rgb(90.4705882353%, 32.5882352941%, 43.5294117647%); + --bs-btn-focus-shadow-rgb: 194, 54, 81; + --bs-btn-active-color: #000; + --bs-btn-active-bg: rgb(91.5294117647%, 40.0784313725%, 49.8039215686%); + --bs-btn-active-border-color: rgb(90.4705882353%, 32.5882352941%, 43.5294117647%); + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #000; + --bs-btn-disabled-bg: #e4405f; + --bs-btn-disabled-border-color: #e4405f; +} +.btn-instagram, .btn-instagram:focus, .btn-instagram.focus, .btn-instagram.disabled, .btn-instagram:disabled, .show > .btn-instagram.dropdown-toggle { + color: #fff; +} +.btn-instagram:hover:not(:disabled):not(.disabled), .btn-instagram.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-pinterest { + --bs-btn-color: #fff; + --bs-btn-bg: #bd081c; + --bs-btn-border-color: #bd081c; + --bs-btn-hover-color: #fff; + --bs-btn-hover-bg: rgb(63%, 2.6666666667%, 9.3333333333%); + --bs-btn-hover-border-color: rgb(59.2941176471%, 2.5098039216%, 8.7843137255%); + --bs-btn-focus-shadow-rgb: 199, 45, 62; + --bs-btn-active-color: #fff; + --bs-btn-active-bg: rgb(59.2941176471%, 2.5098039216%, 8.7843137255%); + --bs-btn-active-border-color: rgb(55.5882352941%, 2.3529411765%, 8.2352941176%); + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #fff; + --bs-btn-disabled-bg: #bd081c; + --bs-btn-disabled-border-color: #bd081c; +} +.btn-pinterest, .btn-pinterest:focus, .btn-pinterest.focus, .btn-pinterest.disabled, .btn-pinterest:disabled, .show > .btn-pinterest.dropdown-toggle { + color: #fff; +} +.btn-pinterest:hover:not(:disabled):not(.disabled), .btn-pinterest.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-flickr { + --bs-btn-color: #fff; + --bs-btn-bg: #0063dc; + --bs-btn-border-color: #0063dc; + --bs-btn-hover-color: #fff; + --bs-btn-hover-bg: rgb(0%, 33%, 73.3333333333%); + --bs-btn-hover-border-color: rgb(0%, 31.0588235294%, 69.0196078431%); + --bs-btn-focus-shadow-rgb: 38, 122, 225; + --bs-btn-active-color: #fff; + --bs-btn-active-bg: rgb(0%, 31.0588235294%, 69.0196078431%); + --bs-btn-active-border-color: rgb(0%, 29.1176470588%, 64.7058823529%); + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #fff; + --bs-btn-disabled-bg: #0063dc; + --bs-btn-disabled-border-color: #0063dc; +} +.btn-flickr, .btn-flickr:focus, .btn-flickr.focus, .btn-flickr.disabled, .btn-flickr:disabled, .show > .btn-flickr.dropdown-toggle { + color: #fff; +} +.btn-flickr:hover:not(:disabled):not(.disabled), .btn-flickr.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-bitbucket { + --bs-btn-color: #fff; + --bs-btn-bg: #0052cc; + --bs-btn-border-color: #0052cc; + --bs-btn-hover-color: #fff; + --bs-btn-hover-bg: rgb(0%, 27.3333333333%, 68%); + --bs-btn-hover-border-color: rgb(0%, 25.7254901961%, 64%); + --bs-btn-focus-shadow-rgb: 38, 108, 212; + --bs-btn-active-color: #fff; + --bs-btn-active-bg: rgb(0%, 25.7254901961%, 64%); + --bs-btn-active-border-color: rgb(0%, 24.1176470588%, 60%); + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #fff; + --bs-btn-disabled-bg: #0052cc; + --bs-btn-disabled-border-color: #0052cc; +} +.btn-bitbucket, .btn-bitbucket:focus, .btn-bitbucket.focus, .btn-bitbucket.disabled, .btn-bitbucket:disabled, .show > .btn-bitbucket.dropdown-toggle { + color: #fff; +} +.btn-bitbucket:hover:not(:disabled):not(.disabled), .btn-bitbucket.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-light, .btn-light:focus, .btn-light.focus, .btn-light.disabled, .btn-light:disabled, .show > .btn-light.dropdown-toggle, +.btn-white, +.btn-white:focus, +.btn-white.focus, +.btn-white.disabled, +.btn-white:disabled, +.show > .btn-white.dropdown-toggle { + color: #343a40; +} +.btn-light:hover:not(:disabled):not(.disabled), .btn-light.hover:not(:disabled):not(.disabled), +.btn-white:hover:not(:disabled):not(.disabled), +.btn-white.hover:not(:disabled):not(.disabled) { + color: #343a40; +} + +.btn-outline-primary { + --bs-btn-color: #ff0055; + --bs-btn-border-color: #ff0055; + --bs-btn-hover-color: #000; + --bs-btn-hover-bg: #ff0055; + --bs-btn-hover-border-color: #ff0055; + --bs-btn-focus-shadow-rgb: 255, 0, 85; + --bs-btn-active-color: #000; + --bs-btn-active-bg: #ff0055; + --bs-btn-active-border-color: #ff0055; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #ff0055; + --bs-btn-disabled-bg: transparent; + --bs-btn-disabled-border-color: #ff0055; + --bs-gradient: none; +} +.btn-outline-primary:hover:not(:disabled):not(.disabled), .btn-outline-primary.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-outline-secondary { + --bs-btn-color: #6f42c1; + --bs-btn-border-color: #6f42c1; + --bs-btn-hover-color: #fff; + --bs-btn-hover-bg: #6f42c1; + --bs-btn-hover-border-color: #6f42c1; + --bs-btn-focus-shadow-rgb: 111, 66, 193; + --bs-btn-active-color: #fff; + --bs-btn-active-bg: #6f42c1; + --bs-btn-active-border-color: #6f42c1; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #6f42c1; + --bs-btn-disabled-bg: transparent; + --bs-btn-disabled-border-color: #6f42c1; + --bs-gradient: none; +} +.btn-outline-secondary:hover:not(:disabled):not(.disabled), .btn-outline-secondary.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-outline-success { + --bs-btn-color: #00ab55; + --bs-btn-border-color: #00ab55; + --bs-btn-hover-color: #000; + --bs-btn-hover-bg: #00ab55; + --bs-btn-hover-border-color: #00ab55; + --bs-btn-focus-shadow-rgb: 0, 171, 85; + --bs-btn-active-color: #000; + --bs-btn-active-bg: #00ab55; + --bs-btn-active-border-color: #00ab55; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #00ab55; + --bs-btn-disabled-bg: transparent; + --bs-btn-disabled-border-color: #00ab55; + --bs-gradient: none; +} +.btn-outline-success:hover:not(:disabled):not(.disabled), .btn-outline-success.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-outline-info { + --bs-btn-color: #2196f3; + --bs-btn-border-color: #2196f3; + --bs-btn-hover-color: #000; + --bs-btn-hover-bg: #2196f3; + --bs-btn-hover-border-color: #2196f3; + --bs-btn-focus-shadow-rgb: 33, 150, 243; + --bs-btn-active-color: #000; + --bs-btn-active-bg: #2196f3; + --bs-btn-active-border-color: #2196f3; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #2196f3; + --bs-btn-disabled-bg: transparent; + --bs-btn-disabled-border-color: #2196f3; + --bs-gradient: none; +} +.btn-outline-info:hover:not(:disabled):not(.disabled), .btn-outline-info.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-outline-warning { + --bs-btn-color: #ffc107; + --bs-btn-border-color: #ffc107; + --bs-btn-hover-color: #000; + --bs-btn-hover-bg: #ffc107; + --bs-btn-hover-border-color: #ffc107; + --bs-btn-focus-shadow-rgb: 255, 193, 7; + --bs-btn-active-color: #000; + --bs-btn-active-bg: #ffc107; + --bs-btn-active-border-color: #ffc107; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #ffc107; + --bs-btn-disabled-bg: transparent; + --bs-btn-disabled-border-color: #ffc107; + --bs-gradient: none; +} +.btn-outline-warning:hover:not(:disabled):not(.disabled), .btn-outline-warning.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-outline-danger { + --bs-btn-color: #de0e1c; + --bs-btn-border-color: #de0e1c; + --bs-btn-hover-color: #fff; + --bs-btn-hover-bg: #de0e1c; + --bs-btn-hover-border-color: #de0e1c; + --bs-btn-focus-shadow-rgb: 222, 14, 28; + --bs-btn-active-color: #fff; + --bs-btn-active-bg: #de0e1c; + --bs-btn-active-border-color: #de0e1c; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #de0e1c; + --bs-btn-disabled-bg: transparent; + --bs-btn-disabled-border-color: #de0e1c; + --bs-gradient: none; +} +.btn-outline-danger:hover:not(:disabled):not(.disabled), .btn-outline-danger.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-outline-light { + --bs-btn-color: #f8f9fa; + --bs-btn-border-color: #f8f9fa; + --bs-btn-hover-color: #000; + --bs-btn-hover-bg: #f8f9fa; + --bs-btn-hover-border-color: #f8f9fa; + --bs-btn-focus-shadow-rgb: 248, 249, 250; + --bs-btn-active-color: #000; + --bs-btn-active-bg: #f8f9fa; + --bs-btn-active-border-color: #f8f9fa; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #f8f9fa; + --bs-btn-disabled-bg: transparent; + --bs-btn-disabled-border-color: #f8f9fa; + --bs-gradient: none; +} +.btn-outline-light:hover:not(:disabled):not(.disabled), .btn-outline-light.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-outline-dark { + --bs-btn-color: #212529; + --bs-btn-border-color: #212529; + --bs-btn-hover-color: #fff; + --bs-btn-hover-bg: #212529; + --bs-btn-hover-border-color: #212529; + --bs-btn-focus-shadow-rgb: 33, 37, 41; + --bs-btn-active-color: #fff; + --bs-btn-active-bg: #212529; + --bs-btn-active-border-color: #212529; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #212529; + --bs-btn-disabled-bg: transparent; + --bs-btn-disabled-border-color: #212529; + --bs-gradient: none; +} +.btn-outline-dark:hover:not(:disabled):not(.disabled), .btn-outline-dark.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-outline-facebook { + --bs-btn-color: #3b5998; + --bs-btn-border-color: #3b5998; + --bs-btn-hover-color: #fff; + --bs-btn-hover-bg: #3b5998; + --bs-btn-hover-border-color: #3b5998; + --bs-btn-focus-shadow-rgb: 59, 89, 152; + --bs-btn-active-color: #fff; + --bs-btn-active-bg: #3b5998; + --bs-btn-active-border-color: #3b5998; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #3b5998; + --bs-btn-disabled-bg: transparent; + --bs-btn-disabled-border-color: #3b5998; + --bs-gradient: none; +} +.btn-outline-facebook:hover:not(:disabled):not(.disabled), .btn-outline-facebook.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-outline-twitter { + --bs-btn-color: #1da1f2; + --bs-btn-border-color: #1da1f2; + --bs-btn-hover-color: #000; + --bs-btn-hover-bg: #1da1f2; + --bs-btn-hover-border-color: #1da1f2; + --bs-btn-focus-shadow-rgb: 29, 161, 242; + --bs-btn-active-color: #000; + --bs-btn-active-bg: #1da1f2; + --bs-btn-active-border-color: #1da1f2; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #1da1f2; + --bs-btn-disabled-bg: transparent; + --bs-btn-disabled-border-color: #1da1f2; + --bs-gradient: none; +} +.btn-outline-twitter:hover:not(:disabled):not(.disabled), .btn-outline-twitter.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-outline-google { + --bs-btn-color: #dc4e41; + --bs-btn-border-color: #dc4e41; + --bs-btn-hover-color: #000; + --bs-btn-hover-bg: #dc4e41; + --bs-btn-hover-border-color: #dc4e41; + --bs-btn-focus-shadow-rgb: 220, 78, 65; + --bs-btn-active-color: #000; + --bs-btn-active-bg: #dc4e41; + --bs-btn-active-border-color: #dc4e41; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #dc4e41; + --bs-btn-disabled-bg: transparent; + --bs-btn-disabled-border-color: #dc4e41; + --bs-gradient: none; +} +.btn-outline-google:hover:not(:disabled):not(.disabled), .btn-outline-google.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-outline-youtube { + --bs-btn-color: #f00; + --bs-btn-border-color: #f00; + --bs-btn-hover-color: #000; + --bs-btn-hover-bg: #f00; + --bs-btn-hover-border-color: #f00; + --bs-btn-focus-shadow-rgb: 255, 0, 0; + --bs-btn-active-color: #000; + --bs-btn-active-bg: #f00; + --bs-btn-active-border-color: #f00; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #f00; + --bs-btn-disabled-bg: transparent; + --bs-btn-disabled-border-color: #f00; + --bs-gradient: none; +} +.btn-outline-youtube:hover:not(:disabled):not(.disabled), .btn-outline-youtube.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-outline-vimeo { + --bs-btn-color: #1ab7ea; + --bs-btn-border-color: #1ab7ea; + --bs-btn-hover-color: #000; + --bs-btn-hover-bg: #1ab7ea; + --bs-btn-hover-border-color: #1ab7ea; + --bs-btn-focus-shadow-rgb: 26, 183, 234; + --bs-btn-active-color: #000; + --bs-btn-active-bg: #1ab7ea; + --bs-btn-active-border-color: #1ab7ea; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #1ab7ea; + --bs-btn-disabled-bg: transparent; + --bs-btn-disabled-border-color: #1ab7ea; + --bs-gradient: none; +} +.btn-outline-vimeo:hover:not(:disabled):not(.disabled), .btn-outline-vimeo.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-outline-dribbble { + --bs-btn-color: #ea4c89; + --bs-btn-border-color: #ea4c89; + --bs-btn-hover-color: #000; + --bs-btn-hover-bg: #ea4c89; + --bs-btn-hover-border-color: #ea4c89; + --bs-btn-focus-shadow-rgb: 234, 76, 137; + --bs-btn-active-color: #000; + --bs-btn-active-bg: #ea4c89; + --bs-btn-active-border-color: #ea4c89; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #ea4c89; + --bs-btn-disabled-bg: transparent; + --bs-btn-disabled-border-color: #ea4c89; + --bs-gradient: none; +} +.btn-outline-dribbble:hover:not(:disabled):not(.disabled), .btn-outline-dribbble.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-outline-github { + --bs-btn-color: #181717; + --bs-btn-border-color: #181717; + --bs-btn-hover-color: #fff; + --bs-btn-hover-bg: #181717; + --bs-btn-hover-border-color: #181717; + --bs-btn-focus-shadow-rgb: 24, 23, 23; + --bs-btn-active-color: #fff; + --bs-btn-active-bg: #181717; + --bs-btn-active-border-color: #181717; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #181717; + --bs-btn-disabled-bg: transparent; + --bs-btn-disabled-border-color: #181717; + --bs-gradient: none; +} +.btn-outline-github:hover:not(:disabled):not(.disabled), .btn-outline-github.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-outline-instagram { + --bs-btn-color: #e4405f; + --bs-btn-border-color: #e4405f; + --bs-btn-hover-color: #000; + --bs-btn-hover-bg: #e4405f; + --bs-btn-hover-border-color: #e4405f; + --bs-btn-focus-shadow-rgb: 228, 64, 95; + --bs-btn-active-color: #000; + --bs-btn-active-bg: #e4405f; + --bs-btn-active-border-color: #e4405f; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #e4405f; + --bs-btn-disabled-bg: transparent; + --bs-btn-disabled-border-color: #e4405f; + --bs-gradient: none; +} +.btn-outline-instagram:hover:not(:disabled):not(.disabled), .btn-outline-instagram.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-outline-pinterest { + --bs-btn-color: #bd081c; + --bs-btn-border-color: #bd081c; + --bs-btn-hover-color: #fff; + --bs-btn-hover-bg: #bd081c; + --bs-btn-hover-border-color: #bd081c; + --bs-btn-focus-shadow-rgb: 189, 8, 28; + --bs-btn-active-color: #fff; + --bs-btn-active-bg: #bd081c; + --bs-btn-active-border-color: #bd081c; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #bd081c; + --bs-btn-disabled-bg: transparent; + --bs-btn-disabled-border-color: #bd081c; + --bs-gradient: none; +} +.btn-outline-pinterest:hover:not(:disabled):not(.disabled), .btn-outline-pinterest.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-outline-flickr { + --bs-btn-color: #0063dc; + --bs-btn-border-color: #0063dc; + --bs-btn-hover-color: #fff; + --bs-btn-hover-bg: #0063dc; + --bs-btn-hover-border-color: #0063dc; + --bs-btn-focus-shadow-rgb: 0, 99, 220; + --bs-btn-active-color: #fff; + --bs-btn-active-bg: #0063dc; + --bs-btn-active-border-color: #0063dc; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #0063dc; + --bs-btn-disabled-bg: transparent; + --bs-btn-disabled-border-color: #0063dc; + --bs-gradient: none; +} +.btn-outline-flickr:hover:not(:disabled):not(.disabled), .btn-outline-flickr.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.btn-outline-bitbucket { + --bs-btn-color: #0052cc; + --bs-btn-border-color: #0052cc; + --bs-btn-hover-color: #fff; + --bs-btn-hover-bg: #0052cc; + --bs-btn-hover-border-color: #0052cc; + --bs-btn-focus-shadow-rgb: 0, 82, 204; + --bs-btn-active-color: #fff; + --bs-btn-active-bg: #0052cc; + --bs-btn-active-border-color: #0052cc; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #0052cc; + --bs-btn-disabled-bg: transparent; + --bs-btn-disabled-border-color: #0052cc; + --bs-gradient: none; +} +.btn-outline-bitbucket:hover:not(:disabled):not(.disabled), .btn-outline-bitbucket.hover:not(:disabled):not(.disabled) { + color: #fff; +} + +.card { + border: 1px solid var(--bs-border-color); +} + +.card-header { + font-size: 1rem; + font-weight: bold; + border-bottom: 1px solid var(--bs-border-color); +} + +.dropdown-menu-lg { + min-width: 20rem; +} +.dropdown-menu-lg .list-group .list-group-item { + border-width: 0; + border-bottom-width: 1px; + margin-bottom: 0; +} +.dropdown-menu-lg .list-group .list-group-item:first-child, .dropdown-menu-lg .list-group .list-group-item:last-child { + border-radius: 0; +} +.dropdown-menu-lg .list-group .list-group-item:hover { + background: var(--bs-tertiary-bg); + text-decoration: none; +} + +.dropdown-menu-header { + padding: 0.75rem; + text-align: center; + font-weight: 700; + border-bottom: var(--bs-border-width) solid var(--bs-border-color); +} + +.dropdown-menu-footer { + padding: 0.5rem; + text-align: center; + display: block; + font-size: 0.74375rem; +} + +[data-bs-theme=dark] .dropdown .list-group .list-group-item:hover { + background: var(--bs-tertiary-bg); +} + +#page_content { + margin: 0 0.5em; +} + +.data { + margin: 0 0 12px; +} + +button.mult_submit, +.checkall_box + label { + text-decoration: none; + color: #235a81; + cursor: pointer; + outline: none; +} + +button.mult_submit:hover, button.mult_submit:focus { + text-decoration: underline; + color: #235a81; +} + +.checkall_box + label:hover { + text-decoration: underline; + color: #235a81; +} + +#navbarDropdown > img { + display: none; +} + +textarea.char { + margin: 6px; +} +textarea.charField { + width: 95%; +} + +.pma-fieldset { + margin-top: 1em; + border-radius: 4px 4px 0 0; + border: none; + padding: 0.5em; + background: #eee; +} + +.pma-fieldset .pma-fieldset { + margin: 0.8em; + border: none; + background: #e8e8e8; +} +.pma-fieldset legend { + float: none; + font-weight: bold; + color: #444; + padding: 5px 10px; + border-radius: 2px; + border: none; + background-color: #fff; + max-width: 100%; + box-shadow: 3px 3px 15px #bbb; + width: initial; + font-size: 0.95em; +} + +[data-bs-theme=dark] .pma-fieldset { + background: #171717; +} +[data-bs-theme=dark] .pma-fieldset .pma-fieldset { + background: #171717; +} +[data-bs-theme=dark] .pma-fieldset legend { + color: #ced4da; + background-color: #171717; + box-shadow: 3px 3px 15px #000; +} + +.datatable { + table-layout: fixed; +} + +/* classes */ +.clearfloat { + clear: both; +} + +.paddingtop { + padding-top: 1em; +} + +.separator { + color: #fff; + text-shadow: 0 1px 0 #000; +} + +div.tools { + padding: 0.2em; +} +div.tools a { + color: #3a7ead !important; +} +div.tools { + margin-top: 0; + margin-bottom: 0.5em; + border-top: 0; + text-align: right; + float: none; + clear: both; + border-radius: 0 0 4px 4px; +} + +.pma-fieldset.tblFooters { + margin-top: 0; + margin-bottom: 0.5em; + border-top: 0; + text-align: right; + float: none; + clear: both; + border-radius: 0 0 4px 4px; +} + +div.null_div { + height: 20px; + text-align: center; + font-style: normal; + min-width: 50px; +} + +.pma-fieldset .formelement { + float: left; + margin-right: 0.5em; + white-space: nowrap; +} +.pma-fieldset div[class=formelement] { + white-space: normal; +} + +button.mult_submit { + border: none; + background-color: transparent; +} + +/** + * marks table rows/cells if the db field is in a where condition + */ +.condition { + border-color: #000 !important; +} + +th.condition { + border-width: 1px 1px 0 1px; + border-style: solid; +} + +td.condition { + border-width: 0 1px 0 1px; + border-style: solid; +} + +tr:last-child td.condition { + border-width: 0 1px 1px 1px; +} + +/* rtl:begin:remove */ +.before-condition { + border-right: 1px solid #000; +} + +/* rtl:end:remove */ +/** + * cells with the value NULL + */ +td.null { + font-style: italic; + color: #7d7d7d !important; +} + +table .valueHeader, +table .value { + text-align: right; + white-space: normal; +} + +.value { + font-family: "Fira Code", monospace; +} + +img.lightbulb { + cursor: pointer; +} + +.pdflayout { + overflow: hidden; + clip: inherit; + background-color: #fff; + display: none; + border: 1px solid #000; + position: relative; +} + +.pdflayout_table { + background: #d3dce3; + color: #000; + overflow: hidden; + clip: inherit; + z-index: 2; + display: inline; + visibility: inherit; + cursor: move; + position: absolute; + font-size: 80%; + border: 1px dashed #000; +} + +.cm-sql-doc { + text-decoration: none; + border-bottom: 1px dotted #000; + color: inherit !important; +} + +td .icon { + image-rendering: pixelated; + margin: 0; +} + +.selectallarrow { + margin-right: 0.3em; + margin-left: 0.6em; +} + +.with-selected { + margin-left: 2em; +} + +#pma_errors, +#pma_demo, +#pma_footer { + position: relative; + padding: 0 0.5em; +} + +.confirmation { + color: #000; + background-color: pink; +} + +.new_central_col { + width: 100%; +} + +.tblcomment { + font-size: 70%; + font-weight: normal; + color: #009; +} + +.tblHeaders { + font-weight: bold; + color: #000; + background: #d3dce3; +} + +div.tools, +.tblFooters { + font-weight: normal; + color: #000; + background: #d3dce3; +} + +.tblHeaders a:link, .tblHeaders a:active, .tblHeaders a:visited { + color: #00f; +} + +div.tools a:link, div.tools a:visited, div.tools a:active { + color: #00f; +} + +.tblFooters a:link, .tblFooters a:active, .tblFooters a:visited { + color: #00f; +} + +.tblHeaders a:hover, +div.tools a:hover, +.tblFooters a:hover { + color: #f00; +} + +.error { + border: 1px solid maroon !important; + margin-left: 2px; + padding: 1px 2px; + color: #000; + background: pink; +} + +.disabled { + color: #666; +} +.disabled a:link, .disabled a:active, .disabled a:visited { + color: #666; +} +.disabled a:hover { + color: #666; + text-decoration: none; +} + +tr.disabled td, +td.disabled { + background-color: #f3f3f3; + color: #aaa; +} + +.pre_wrap { + white-space: pre-wrap; +} + +.pre_wrap br { + display: none; +} + +/** + * login form + */ +body#loginform { + margin: 1em 0 0 0; + text-align: center; +} +body#loginform h1, body#loginform .h1, +body#loginform a.logo { + display: block; + text-align: center; +} +body#loginform div.container { + text-align: left; + width: 30em; + margin: 0 auto; +} + +div.container.modal_form { + margin: 0 auto; + width: 30em; + text-align: center; + background: #fff; + z-index: 999; +} + +div#modalOverlay { + position: fixed; + top: 0; + left: 0; + height: 100%; + width: 100%; + background: #fff; + z-index: 900; +} + +label.col-3.d-flex.align-items-center { + font-weight: bolder; +} + +.commented_column { + border-bottom: 1px dashed #000; +} + +.column_attribute { + font-size: 70%; +} + +.column_name { + font-size: 80%; + margin: 5px 2px; +} + +.central_columns_navigation { + padding: 1.5% 0 !important; +} + +.message_errors_found { + margin-top: 20px; +} + +.repl_gui_skip_err_cnt { + width: 30px; +} + +.color_gray { + color: gray; +} + +.max_height_400 { + max-height: 400px; +} + +li.last.database { + margin-bottom: 15px !important; +} + +div#dataDisplay input, +div#dataDisplay select { + margin: 0; + margin-right: 0.5em; +} +div#dataDisplay th { + line-height: 2em; +} + +img.calendar { + border: none; +} + +form.clock { + text-align: center; +} + +div#tablestatistics table { + float: left; + margin-bottom: 0.5em; + margin-right: 1.5em; + margin-top: 0.5em; + min-width: 16em; +} + +#topmenucontainer { + padding-right: 1em; + width: 100%; +} + +#page_nav_icons { + position: fixed; + top: 0; + right: 0; + z-index: 99; + padding: 0.5rem 0; +} + +#page_settings_icon { + cursor: pointer; + display: none; +} + +#page_settings_modal, +#pma_navigation_settings { + display: none; +} + +#textSQLDUMP { + width: 95%; + height: 95%; + font-family: Consolas, "Courier New", Courier, monospace; + font-size: 110%; +} + +#TooltipContainer { + position: absolute; + z-index: 99; + width: 20em; + height: auto; + overflow: visible; + visibility: hidden; + background-color: #ffc; + color: #060; + border: 0.1em solid #000; + padding: 0.5em; +} + +#fieldset_add_user_login div.item { + display: flex; + align-items: center; + border-bottom: 1px solid silver; + padding-bottom: 0.3em; + margin-bottom: 0.3em; +} +#fieldset_add_user_login label { + float: left; + display: block; + width: 10em; + max-width: 100%; + text-align: right; + padding-right: 0.5em; + margin-bottom: 0; +} +#fieldset_add_user_login input { + width: 12em; + clear: right; + max-width: 100%; +} +#fieldset_add_user_login span.options { + float: left; + display: block; + width: 12em; + max-width: 100%; + padding-right: 0.5em; +} +#fieldset_add_user_login span.options #select_pred_username, +#fieldset_add_user_login span.options #select_pred_hostname, +#fieldset_add_user_login span.options #select_pred_password { + width: 100%; + max-width: 100%; +} +#fieldset_add_user_login span.options input { + width: auto; +} + +#fieldset_user_priv div.item { + float: left; + width: 9em; + max-width: 100%; +} +#fieldset_user_priv div.item div.item { + float: none; +} +#fieldset_user_priv div.item label { + white-space: nowrap; +} +#fieldset_user_priv div.item select { + width: 100%; +} + +#fieldset_user_global_rights .pma-fieldset, +#fieldset_user_group_rights .pma-fieldset { + float: left; +} + +#fieldset_user_global_rights > legend input { + margin-left: 2em; +} + +.linkElem:hover { + text-decoration: underline; + color: #235a81; + cursor: pointer; +} + +h3#serverstatusqueries span, #serverstatusqueries.h3 span { + font-size: 60%; + display: inline; +} + +div#serverStatusTabs { + margin-top: 1em; +} + +caption a.top { + float: right; +} + +div#serverstatusquerieschart { + float: left; + width: 500px; + height: 350px; + margin-right: 50px; +} + +div#serverstatus table tbody td.descr a, +div#serverstatus table .tblFooters a { + white-space: nowrap; +} +div.liveChart { + clear: both; + min-width: 500px; + height: 400px; + padding-bottom: 80px; +} + +div#chartVariableSettings { + border: 1px solid #ddd; + background-color: #e6e6e6; + margin-left: 10px; +} + +table#chartGrid td { + padding: 3px; + margin: 0; +} +table#chartGrid div.monitorChart { + background: #ebebeb; + border: none; + min-width: 1px; +} + +div.tabLinks { + float: left; + padding: 5px 0; +} +div.tabLinks a, +div.tabLinks label { + margin-right: 7px; +} +div.tabLinks .icon { + margin: -0.2em 0.3em 0 0; +} + +.popupContent { + display: none; + position: absolute; + border: 1px solid #ccc; + margin: 0; + padding: 3px; + background-color: #fff; + z-index: 2; + box-shadow: 2px 2px 3px #666; +} + +div#logTable { + padding-top: 10px; + clear: both; +} +div#logTable table { + width: 100%; +} +div#queryAnalyzerDialog { + min-width: 700px; +} +div#queryAnalyzerDialog div.CodeMirror-scroll { + height: auto; +} +div#queryAnalyzerDialog div#queryProfiling { + height: 300px; +} +div#queryAnalyzerDialog td.explain { + width: 250px; +} +div#queryAnalyzerDialog table.queryNums { + display: none; + border: 0; + text-align: left; +} + +.smallIndent { + padding-left: 7px; +} + +div#profilingchart { + width: 850px; + height: 370px; + float: left; +} + +#profilingchart .jqplot-highlighter-tooltip { + top: auto !important; + left: 11px; + bottom: 24px; +} + +#resizer { + border: 1px solid silver; +} + +#inner-resizer { + padding: 10px; +} + +#togglequerybox { + margin: 0 10px; +} + +#serverstatus h3, #serverstatus .h3 { + margin: 15px 0; + font-weight: normal; + color: #999; + font-size: 1.7em; +} + +textarea#sqlquery { + width: 100%; + border-radius: 4px; + border: 1px solid #aaa; + padding: 5px; + font-family: inherit; +} +textarea#sql_query_edit { + height: 7em; + width: 95%; + display: block; +} + +#mysqlmaininformation, +#pmamaininformation { + float: left; + width: 49%; +} + +#maincontainer ul { + list-style-type: disc; + vertical-align: middle; +} +#maincontainer li { + margin-bottom: 0.3em; +} + +#full_name_layer { + position: absolute; + padding: 2px; + margin-top: -3px; + z-index: 801; + border-radius: 3px; + border: solid 1px #888; + background: #fff; +} + +#body_browse_foreigners { + background: #f3f3f3; + margin: 0.5em 0.5em 0 0.5em; +} + +#bodythemes { + width: 500px; + margin: auto; + text-align: center; +} +#bodythemes img { + border: 0.1em solid #000; +} +#bodythemes a:hover img { + border: 0.1em solid red; +} + +#selflink { + clear: both; + display: block; + margin-top: 1em; + margin-bottom: 1em; + width: 98%; + margin-left: 1%; + text-align: right; + border-top: 0.1em solid silver; +} + +#qbe_div_table_list, +#qbe_div_sql_query { + float: left; +} + +code { + font-size: 1em; +} +code.php { + display: block; + padding-left: 1em; + margin-top: 0; + margin-bottom: 0; + max-height: 10em; + overflow: auto; + direction: ltr; +} +code.sql { + display: block; + padding: 1em; + margin-top: 0; + margin-bottom: 0; + max-height: 10em; + overflow: auto; + direction: ltr; +} + +div.sqlvalidate { + display: block; + padding: 1em; + margin-top: 0; + margin-bottom: 0; + max-height: 10em; + overflow: auto; + direction: ltr; +} + +.result_query div.sqlOuter { + background: var(--bs-tertiary-bg); + border: 1px solid var(--bs-border-color); + text-align: left; +} + +[data-bs-theme=dark] .result_query div.sqlOuter { + background: #222222; + border-color: #495057; +} + +#PMA_slidingMessage code.sql, +div.sqlvalidate { + background: var(--bs-tertiary-bg); + color: var(--bs-body-color); + border: 1px solid var(--bs-border-color); +} + +textarea#partitiondefinition { + height: 3em; +} + +.hide { + display: none; +} + +#list_server { + list-style-type: none; + padding: 0; +} + +/** + * Progress bar styles + */ +div.upload_progress { + width: 400px; + margin: 3em auto; + text-align: center; +} +div.upload_progress_bar_outer { + border: 1px solid #000; + width: 202px; + position: relative; + margin: 0 auto 1em; + color: #212529; +} +div.upload_progress_bar_outer div.percentage { + position: absolute; + top: 0; + left: 0; + width: 202px; +} +div.upload_progress_bar_inner { + background-color: #ddd; + width: 0; + height: 12px; + margin: 1px; + overflow: hidden; + color: #000; + position: relative; +} +div.upload_progress_bar_inner div.percentage { + top: -1px; + left: -1px; +} +div#statustext { + margin-top: 0.5em; +} + +table#serverconnection_src_remote, table#serverconnection_trg_remote, table#serverconnection_src_local, table#serverconnection_trg_local { + float: left; +} + +/** + * Validation error message styles + */ +input[type=text].invalid_value, input[type=password].invalid_value, input[type=number].invalid_value, input[type=date].invalid_value { + background: #fcc; +} + +select.invalid_value, +.invalid_value { + background: #fcc; +} + +/** + * Ajax notification styling + */ +.ajax_notification { + top: 0; + position: fixed; + margin-top: 200px; + margin-right: auto; + margin-bottom: 0; + margin-left: auto; + padding: 5px; + width: 350px; + z-index: 1100; + text-align: center; + display: inline; + left: 0; + right: 0; + background-image: url("../img/ajax_clock_small.gif"); + background-repeat: no-repeat; + background-position: 2%; + border: 1px solid #e2b709; + background-color: #ffe57e; + border-radius: 5px; + box-shadow: 0 5px 90px #888; +} + +[data-bs-theme=dark] .ajax_notification { + color: #000; + box-shadow: 0 5px 90px #000; +} + +#loading_parent { + /** Need this parent to properly center the notification division */ + position: relative; + width: 100%; +} + +#popup_background { + display: none; + position: fixed; + width: 100%; + height: 100%; + top: 0; + left: 0; + background: #000; + z-index: 1000; + overflow: hidden; +} + +#structure-action-links a { + margin-right: 1em; +} + +#addColumns input[type=radio] { + margin: 3px 0 0; + margin-left: 1em; +} + +/** + * Indexes + */ +#index_frm .index_info input[type=text], +#index_frm .index_info select { + width: 100%; + margin: 0; + box-sizing: border-box; +} +#index_frm .index_info div { + padding: 0.2em 0; +} +#index_frm .index_info .label { + float: left; + min-width: 12em; +} +#index_frm .slider { + width: 10em; + margin: 0.6em; + float: left; +} +#index_frm .add_fields { + float: left; +} +#index_frm .add_fields input { + margin-left: 1em; +} +#index_frm input { + margin: 0; +} +#index_frm td { + vertical-align: middle; +} + +table#index_columns { + width: 100%; +} +table#index_columns select { + width: 85%; + float: left; +} + +#move_columns_dialog div { + padding: 1em; +} +#move_columns_dialog ul { + list-style: none; + margin: 0; + padding: 0; +} +#move_columns_dialog li { + background: #d3dce3; + border: 1px solid #aaa; + color: #000; + font-weight: bold; + margin: 0.4em; + padding: 0.2em; + border-radius: 2px; +} + +.config-form fieldset { + margin-top: 0; + padding: 0; + clear: both; + border-radius: 0; +} +.config-form fieldset p { + margin: 0; + padding: 0.5em; + background: #fff; + border-top: 0; +} +.config-form fieldset .errors { + margin: 0 -2px 1em; + padding: 0.5em 1.5em; + background: #fbead9; + border-color: #c83838; + border-style: solid; + border-width: 1px 0; + list-style: none; + font-family: var(--bs-font-sans-serif); + font-size: small; +} +.config-form fieldset .inline_errors { + margin: 0.3em 0.3em 0.3em; + margin-left: 0; + padding: 0; + list-style: none; + color: #9a0000; + font-size: small; +} +.config-form fieldset .doc { + margin-left: 1em; +} +.config-form fieldset .disabled-notice { + margin-left: 1em; + font-size: 80%; + text-transform: uppercase; + color: #e00; + cursor: help; +} +.config-form fieldset th { + padding: 0.3em 0.3em 0.3em; + padding-left: 0.5em; + text-align: left; + vertical-align: top; + background: transparent; + filter: none; + border-top: 1px #d5d5d5 solid; + border-right: none; +} +.config-form fieldset th small, .config-form fieldset th .small { + display: block; + font-weight: normal; + font-family: var(--bs-font-sans-serif); + font-size: x-small; + color: #444; +} +.config-form fieldset td { + padding-top: 0.3em; + padding-bottom: 0.3em; + vertical-align: top; + border-top: 1px #d5d5d5 solid; + border-right: none; +} +.config-form legend { + display: none; +} +.config-form span.checkbox { + padding: 2px; + display: inline-block; +} +.config-form span.checkbox.custom { + padding: 1px; + border: 1px #edec90 solid; + background: #ffc; +} +.config-form .custom { + background: #ffc; +} +.config-form .field-error { + border-color: #a11 !important; +} +.config-form input[type=text], .config-form input[type=password], .config-form input[type=number] { + border: 1px #a7a6aa solid; + height: auto; +} +.config-form input[type=text]:focus, .config-form input[type=password]:focus, .config-form input[type=number]:focus { + border: 1px #6676ff solid; + background: #f7fbff; +} +.config-form select, +.config-form textarea { + border: 1px #a7a6aa solid; + height: auto; +} +.config-form select:focus, +.config-form textarea:focus { + border: 1px #6676ff solid; + background: #f7fbff; +} +.config-form .field-comment-mark { + font-family: serif; + color: #007; + cursor: help; + padding: 0 0.2em; + font-weight: bold; + font-style: italic; +} +.config-form .field-comment-warning { + color: #a00; +} +.config-form dd { + margin-left: 0.5em; +} +.config-form dd::before { + content: "▸ "; +} + +fieldset .group-header th { + background: #d5d5d5; +} +fieldset .group-header + tr th { + padding-top: 0.6em; +} +fieldset .group-field-1 th, +fieldset .group-header-2 th { + padding-left: 1.5em; +} +fieldset .group-field-2 th, +fieldset .group-header-3 th { + padding-left: 3em; +} +fieldset .group-field-3 th { + padding-left: 4.5em; +} +fieldset .disabled-field th { + color: #666; + background-color: #ddd; +} +fieldset .disabled-field th small, fieldset .disabled-field th .small { + color: #666; + background-color: #ddd; +} +fieldset .disabled-field td { + color: #666; + background-color: #ddd; +} + +.click-hide-message { + cursor: pointer; +} + +.prefsmanage_opts { + margin-left: 2em; +} + +#prefs_autoload { + margin-bottom: 0.5em; + margin-left: 0.5em; +} + +input#auto_increment_opt { + width: min-content; +} + +#placeholder { + position: relative; + border: 1px solid #aaa; + float: right; + overflow: hidden; + width: 450px; + height: 300px; +} +#placeholder .button { + position: absolute; + cursor: pointer; +} +#placeholder div.button { + font-size: smaller; + color: #999; + background-color: #eee; + padding: 2px; +} + +.wrapper { + float: left; + margin-bottom: 1.5em; +} + +.toggleButton { + position: relative; + cursor: pointer; + font-size: 0.8em; + text-align: center; + line-height: 1.4em; + height: 1.55em; + overflow: hidden; + border-right: 0.1em solid #888; + border-left: 0.1em solid #888; + border-radius: 0.3em; +} +.toggleButton table, +.toggleButton td, +.toggleButton img { + padding: 0; + position: relative; +} +.toggleButton .container { + position: absolute; +} +.toggleButton .container td, +.toggleButton .container tr { + background: none !important; +} +.toggleButton .toggleOn { + color: #fff; + padding: 0 1em; + text-shadow: 0 0 0.2em #000; +} +.toggleButton .toggleOff { + padding: 0 1em; +} + +.doubleFieldset .pma-fieldset { + width: 48%; + float: left; + padding: 0; +} +.doubleFieldset legend { + margin-left: 1.5em; +} +.doubleFieldset div.wrap { + padding: 1.5em; +} + +#table_name_col_no_outer { + margin-top: 45px; +} + +#table_name_col_no { + position: fixed; + top: 100px !important; + width: 100%; + background: #fff; +} + +#table_columns { + display: block; + overflow: auto; +} +#table_columns input[type=text], #table_columns input[type=password], #table_columns input[type=number] { + width: 10em; + box-sizing: border-box; +} +#table_columns select { + width: 10em; + box-sizing: border-box; +} + +#openlayersmap { + width: 450px; + height: 300px; +} + +.placeholderDrag { + cursor: move; +} + +#left_arrow { + left: 8px; + top: 26px; +} + +#right_arrow { + left: 26px; + top: 26px; +} + +#up_arrow { + left: 17px; + top: 8px; +} + +#down_arrow { + left: 17px; + top: 44px; +} + +#zoom_in { + left: 17px; + top: 67px; +} + +#zoom_world { + left: 17px; + top: 85px; +} + +#zoom_out { + left: 17px; + top: 103px; +} + +.colborder { + cursor: col-resize; + height: 100%; + margin-left: -6px; + position: absolute; + width: 5px; +} + +.colborder_active { + border-right: 2px solid #a44; +} + +.pma_table th.draggable span { + display: block; + overflow: hidden; +} + +.pma_table td { + position: static; +} +.pma_table tbody td span { + display: block; + overflow: hidden; +} +.pma_table tbody td span code span { + display: inline; +} +.pma_table th.draggable span { + margin-right: 10px; +} + +.modal-copy input { + display: block; + width: 100%; + margin-top: 1.5em; + padding: 0.3em 0; +} + +.cRsz { + position: absolute; +} + +.cCpy { + background: #333; + color: #fff; + font-weight: bold; + margin: 0.1em; + padding: 0.3em; + position: absolute; + text-shadow: -1px -1px #000; + box-shadow: 0 0 0.7em #000; + border-radius: 0.3em; +} + +.cPointer { + height: 20px; + width: 10px; + margin-top: -10px; + margin-left: -5px; + background: url("../img/col_pointer.png"); + position: absolute; +} + +.tooltip { + background: #333 !important; + opacity: 0.8 !important; + z-index: 9999; + border: 1px solid #000 !important; + border-radius: 0.3em !important; + text-shadow: -1px -1px #000 !important; + font-size: 0.8em !important; + font-weight: bold !important; + padding: 1px 3px !important; +} +.tooltip * { + background: none !important; + color: #fff !important; +} + +.cDrop { + right: 0; + position: absolute; + top: 0; +} + +.coldrop { + background: url("../img/col_drop.png"); + cursor: pointer; + height: 16px; + margin-top: 0.3em; + width: 16px; +} +.coldrop:hover { + background-color: #999; +} + +.coldrop-hover { + background-color: #999; +} + +.cList { + background: #eee; + border: solid 1px #999; + position: absolute; + box-shadow: 0 0.2em 0.5em #333; + margin-left: 75%; + right: 0; + max-width: 100%; + overflow-wrap: break-word; +} +.cList .lDiv div { + padding: 0.2em 0.5em 0.2em; + padding-left: 0.2em; + white-space: nowrap; +} +.cList .lDiv div:hover { + background: #ddd; + cursor: pointer; +} +.cList .lDiv div input { + cursor: pointer; +} + +.showAllColBtn { + border-bottom: solid 1px #999; + border-top: solid 1px #999; + cursor: pointer; + font-size: 0.9em; + font-weight: bold; + padding: 0.35em 1em; + text-align: center; +} +.showAllColBtn:hover { + background: #ddd; +} + +.turnOffSelect { + user-select: none; +} + +.navigation { + margin: 0.8em 0; + border-radius: 5px; + background: linear-gradient(#eee, #ccc); +} +.navigation td { + margin: 0; + padding: 0; + vertical-align: middle; + white-space: nowrap; +} +.navigation input[type=submit] { + background: none; + border: 0; + filter: none; + margin: 0; + padding: 0.8em 0.5em; + border-radius: 0; +} +.navigation input[type=submit]:hover { + color: #fff; + cursor: pointer; + text-shadow: none; + background: linear-gradient(#333, #555); +} +.navigation input.edit_mode_active { + color: #fff; + cursor: pointer; + text-shadow: none; + background: linear-gradient(#333, #555); +} +.navigation .btn-link { + color: #212529; +} +.navigation .btn-link:hover { + color: #fff; + background-image: linear-gradient(#333, #555); + text-decoration: none; +} +.navigation select { + margin: 0 0.8em; +} + +[data-bs-theme=dark] .navigation { + background: #171717; +} + +.navigation_separator { + color: #999; + display: inline-block; + font-size: 1.5em; + text-align: center; + height: 1.4em; + width: 1.2em; + text-shadow: 1px 0 #fff; +} + +.cEdit { + margin: 0; + padding: 0; + position: absolute; +} +.cEdit input[type=text] { + background: #fff; + height: 100%; + margin: 0; + padding: 0; +} +.cEdit .edit_area { + background: #fff; + border: 1px solid #999; + min-width: 10em; + padding: 0.3em 0.5em; +} +.cEdit .edit_area select, +.cEdit .edit_area textarea { + width: 97%; +} +.cEdit .cell_edit_hint { + color: #555; + font-size: 0.8em; + margin: 0.3em 0.2em; +} +.cEdit .edit_box { + overflow-x: hidden; + overflow-y: scroll; + padding: 0; + margin: 0; +} +.cEdit .edit_box_posting { + background: #fff url("../img/ajax_clock_small.gif") no-repeat right center; + padding-right: 1.5em; +} +.cEdit .edit_area_loading { + background: #fff url("../img/ajax_clock_small.gif") no-repeat center; + height: 10em; +} +.cEdit .goto_link { + background: #eee; + color: #555; + padding: 0.2em 0.3em; +} + +.saving_edited_data { + background: url("../img/ajax_clock_small.gif") no-repeat left; + padding-left: 20px; +} + +.relationalTable td { + vertical-align: top; +} +.relationalTable select { + width: 125px; + margin-right: 5px; +} + +.ui-timepicker-div .ui-widget-header { + margin-bottom: 8px; +} +.ui-timepicker-div dl { + text-align: left; +} +.ui-timepicker-div dl dt { + height: 25px; + margin-bottom: -25px; +} +.ui-timepicker-div dl dd { + margin: 0 10px 10px 85px; +} +.ui-timepicker-div td { + font-size: 90%; +} + +.ui-tpicker-grid-label { + background: none; + border: none; + margin: 0; + padding: 0; +} + +.ui-timepicker-rtl { + direction: rtl; +} +.ui-timepicker-rtl dl { + text-align: right; +} +.ui-timepicker-rtl dl dd { + margin: 0 65px 10px 10px; +} + +body .ui-widget { + font-size: 1em; +} + +.ui-dialog .pma-fieldset legend a { + color: #235a81; +} + +.ui-draggable { + z-index: 801; +} + +.jqplot-yaxis { + left: 0 !important; + min-width: 25px; + width: auto; +} + +.jqplot-axis { + overflow: hidden; +} + +div#page_content div#tableslistcontainer { + margin-top: 1em; +} +div#page_content div#tableslistcontainer table.data { + border-top: 0.1px solid #eee; +} +div#page_content div.result_query { + margin-top: 1em; +} + +table.show_create { + margin-top: 1em; +} +table.show_create td { + border-right: 1px solid #bbb; +} + +#alias_modal table { + width: 100%; +} +#alias_modal label { + font-weight: bold; +} + +.ui-dialog { + position: fixed; +} + +.small_font { + font-size: smaller; +} + +#pma_console_container { + width: 100%; + position: fixed; + bottom: 0; + left: 0; + z-index: 100; +} + +#pma_console { + position: relative; + margin-left: 240px; +} +#pma_console .templates { + display: none; +} +#pma_console .mid_text { + vertical-align: middle; +} +#pma_console .toolbar { + position: relative; + background: #ccc; + border-top: solid 1px #aaa; + cursor: n-resize; +} +#pma_console .toolbar span { + vertical-align: middle; +} +#pma_console .toolbar.collapsed { + cursor: default; +} +#pma_console .toolbar.collapsed:not(:hover) { + display: inline-block; + border-top-right-radius: 3px; + border-right: solid 1px #aaa; +} +#pma_console .toolbar.collapsed > .button { + display: none; +} +#pma_console .message span.text, #pma_console .message span.action { + padding: 0 3px; + display: inline-block; +} +#pma_console .toolbar .button, +#pma_console .toolbar .text { + padding: 0 3px; + display: inline-block; +} +#pma_console .switch_button { + padding: 0 3px; + display: inline-block; +} +#pma_console .message span.action, +#pma_console .toolbar .button, +#pma_console .switch_button { + cursor: pointer; +} +#pma_console .message span.action:hover, +#pma_console .toolbar .button:hover, +#pma_console .switch_button:hover { + background: #ddd; +} +#pma_console .toolbar .button.active { + background: #ddd; +} +#pma_console .toolbar .text { + font-weight: bold; +} +#pma_console .toolbar .button, +#pma_console .toolbar .text { + margin-right: 0.4em; +} +#pma_console .toolbar .button, +#pma_console .toolbar .text { + float: right; +} +#pma_console .content { + overflow-x: hidden; + overflow-y: auto; + margin-bottom: -65px; + border-top: solid 1px #aaa; + background: #fff; + padding-top: 0.4em; +} +#pma_console .content.console_dark_theme { + background: #000; + color: #fff; +} +#pma_console .content.console_dark_theme .CodeMirror-wrap { + background: #000; + color: #fff; +} +#pma_console .content.console_dark_theme .action_content { + color: #000; +} +#pma_console .content.console_dark_theme .message { + border-color: #373b41; +} +#pma_console .content.console_dark_theme .CodeMirror-cursor { + border-color: #fff; +} +#pma_console .content.console_dark_theme .cm-keyword { + color: #de935f; +} +#pma_console .message, +#pma_console .query_input { + position: relative; + font-family: Monaco, Consolas, monospace; + cursor: text; + margin: 0 10px 0.2em 1.4em; +} +#pma_console .message { + border-bottom: solid 1px #ccc; + padding-bottom: 0.2em; +} +#pma_console .message.expanded > .action_content { + position: relative; +} +#pma_console .message::before { + left: -0.7em; + position: absolute; + content: ">"; +} +#pma_console .query_input::before { + left: -0.7em; + position: absolute; + content: ">"; + top: -2px; +} +#pma_console .query_input textarea { + width: 100%; + height: 4em; + resize: vertical; +} +#pma_console .message:hover::before { + color: #7cf; + font-weight: bold; +} +#pma_console .message.expanded::before { + content: "]"; +} +#pma_console .message.welcome::before { + display: none; +} +#pma_console .message.failed::before, #pma_console .message.failed.expanded::before, #pma_console .message.failed:hover::before { + content: "="; + color: #944; +} +#pma_console .message.pending::before { + opacity: 0.3; +} +#pma_console .message.collapsed > .query { + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; +} +#pma_console .message.expanded > .query { + display: block; + white-space: pre; + word-wrap: break-word; +} +#pma_console .message .text.targetdb, #pma_console .message.collapsed .action.collapse, #pma_console .message.expanded .action.expand { + display: none; +} +#pma_console .message .action.requery, #pma_console .message .action.profiling, #pma_console .message .action.explain, #pma_console .message .action.bookmark { + display: none; +} +#pma_console .message.select .action.profiling, #pma_console .message.select .action.explain { + display: inline-block; +} +#pma_console .message.history .text.targetdb, #pma_console .message.successed .text.targetdb { + display: inline-block; +} +#pma_console .message.history .action.requery, #pma_console .message.history .action.bookmark { + display: inline-block; +} +#pma_console .message.bookmark .action.requery, #pma_console .message.bookmark .action.bookmark { + display: inline-block; +} +#pma_console .message.successed .action.requery, #pma_console .message.successed .action.bookmark { + display: inline-block; +} +#pma_console .message .action_content { + position: absolute; + bottom: 100%; + background: #ccc; + border: solid 1px #aaa; + border-top-left-radius: 3px; +} +#pma_console .message.bookmark .text.targetdb, +#pma_console .message .text.query_time { + margin: 0; + display: inline-block; +} +#pma_console .message.failed .text.query_time, +#pma_console .message .text.failed { + display: none; +} +#pma_console .message.failed .text.failed { + display: inline-block; +} +#pma_console .message .text { + background: #fff; +} +#pma_console .message.collapsed > .action_content { + display: none; +} +#pma_console .message.collapsed:hover > .action_content { + display: block; +} +#pma_console .message .bookmark_label { + padding: 0 4px; + top: 0; + background: #369; + color: #fff; + border-radius: 3px; +} +#pma_console .message .bookmark_label.shared { + background: #396; +} +#pma_console .message.expanded .bookmark_label { + border-top-left-radius: 0; + border-top-right-radius: 0; +} +#pma_console .query_input { + position: relative; +} +#pma_console .mid_layer { + height: 100%; + width: 100%; + position: absolute; + top: 0; + background: #666; + display: none; + cursor: pointer; + z-index: 200; +} +#pma_console .card { + position: absolute; + width: 94%; + height: 100%; + min-height: 48px; + left: 100%; + top: 0; + border-left: solid 1px #999; + z-index: 300; + transition: left 0.2s; +} +#pma_console .card.show { + left: 6%; + box-shadow: -2px 1px 4px -1px #999; +} +#pma_console .button.hide, +#pma_console .message span.text.hide { + display: none; +} + +[data-bs-theme=dark] #pma_console .toolbar { + border-top: none; +} +[data-bs-theme=dark] #pma_console .toolbar.collapsed:not(:hover) { + border-right: solid 1px #aaa; +} +[data-bs-theme=dark] #pma_console .message span.action:hover, +[data-bs-theme=dark] #pma_console .toolbar .button:hover, +[data-bs-theme=dark] #pma_console .switch_button:hover { + background: #2b2b2b; + color: #fff; +} +[data-bs-theme=dark] #pma_console .toolbar .button.active { + background: #222222; + color: #ff6699; +} +[data-bs-theme=dark] #pma_console .content { + border-top: none; + background: #171717; +} +[data-bs-theme=dark] #pma_console .content.console_dark_theme { + background: #111317; + color: #fff; +} +[data-bs-theme=dark] #pma_console .content.console_dark_theme .CodeMirror-wrap { + background: #111317; + color: #fff; +} +[data-bs-theme=dark] #pma_console .content.console_dark_theme .action_content { + color: #ced4da; +} +[data-bs-theme=dark] #pma_console .content.console_dark_theme .message { + border-color: #2e333d; +} +[data-bs-theme=dark] #pma_console .content.console_dark_theme .CodeMirror-cursor { + border-color: #fff; +} +[data-bs-theme=dark] #pma_console .content.console_dark_theme .cm-keyword { + color: #de935f; +} +[data-bs-theme=dark] #pma_console .message { + border-bottom: solid 1px #ccc; +} +[data-bs-theme=dark] #pma_console .message .action_content { + background: #ccc; + border: solid 1px #aaa; +} +[data-bs-theme=dark] #pma_console .message .text { + background: #fff; +} +[data-bs-theme=dark] #pma_console .message .bookmark_label { + color: #fff; +} +[data-bs-theme=dark] #pma_console .mid_layer { + background: #666; +} +[data-bs-theme=dark] #pma_console .card { + border-left: solid 1px #999; +} +[data-bs-theme=dark] #pma_console .card.show { + box-shadow: -2px 1px 4px -1px #999; +} + +#pma_bookmarks .content.add_bookmark, +#pma_console_options .content { + padding: 4px 6px; +} + +#pma_bookmarks .content.add_bookmark .options { + margin-left: 1.4em; + padding-bottom: 0.4em; + margin-bottom: 0.4em; + border-bottom: solid 1px #ccc; +} +#pma_bookmarks .content.add_bookmark .options button { + margin: 0 7px; + vertical-align: bottom; +} +#pma_bookmarks .content.add_bookmark input[type=text] { + margin: 0; + padding: 2px 4px; +} + +#debug_console.grouped .ungroup_queries { + display: inline-block; +} +#debug_console.ungrouped .group_queries { + display: inline-block; +} +#debug_console.ungrouped .ungroup_queries, +#debug_console.ungrouped .sort_count { + display: none; +} +#debug_console.grouped .group_queries { + display: none; +} +#debug_console .count { + margin-right: 8px; +} +#debug_console .show_trace .trace, +#debug_console .show_args .args { + display: block; +} +#debug_console .hide_trace .trace, +#debug_console .hide_args .args, +#debug_console .show_trace .action.dbg_show_trace, +#debug_console .hide_trace .action.dbg_hide_trace { + display: none; +} +#debug_console .traceStep.hide_args .action.dbg_hide_args, #debug_console .traceStep.show_args .action.dbg_show_args { + display: none; +} +#debug_console .traceStep::after { + content: ""; + display: table; + clear: both; +} +#debug_console .trace.welcome::after, +#debug_console .debug > .welcome::after { + content: ""; + display: table; + clear: both; +} +#debug_console .debug_summary { + float: left; +} +#debug_console .trace.welcome .time, +#debug_console .traceStep .file, +#debug_console .script_name { + float: right; +} +#debug_console .traceStep .args pre { + margin: 0; +} + +.cm-s-pma .CodeMirror-code { + font-family: Monaco, Consolas, monospace; +} +.cm-s-pma .CodeMirror-code pre { + font-family: Monaco, Consolas, monospace; +} +.cm-s-pma .CodeMirror-measure > pre, +.cm-s-pma .CodeMirror-code > pre, +.cm-s-pma .CodeMirror-lines { + padding: 0; +} +.cm-s-pma.CodeMirror { + resize: none; + height: auto; + width: 100%; + min-height: initial; + max-height: initial; +} +.cm-s-pma .CodeMirror-scroll { + cursor: text; +} + +.pma_drop_handler { + display: none; + position: fixed; + top: 0; + left: 0; + width: 100%; + background: rgba(0, 0, 0, 0.6); + height: 100%; + z-index: 999; + color: white; + font-size: 30pt; + text-align: center; + padding-top: 20%; +} + +.pma_sql_import_status { + display: none; + position: fixed; + bottom: 0; + right: 25px; + width: 400px; + border: 1px solid #999; + background: #f3f3f3; + border-radius: 4px; + box-shadow: 2px 2px 5px #ccc; +} +.pma_sql_import_status h2, .pma_sql_import_status .h2 { + background-color: #bbb; + padding: 0.1em 0.3em; + margin-top: 0; + margin-bottom: 0; + color: #fff; + font-size: 1.6em; + font-weight: normal; + text-shadow: 0 1px 0 #777; + box-shadow: 1px 1px 15px #999 inset; +} + +.pma_drop_result h2, .pma_drop_result .h2 { + background-color: #bbb; + padding: 0.1em 0.3em; + margin-top: 0; + margin-bottom: 0; + color: #fff; + font-size: 1.6em; + font-weight: normal; + text-shadow: 0 1px 0 #777; + box-shadow: 1px 1px 15px #999 inset; +} + +.pma_sql_import_status div { + height: 270px; + overflow-y: auto; + overflow-x: hidden; + list-style-type: none; +} +.pma_sql_import_status div li { + padding: 8px 10px; + border-bottom: 1px solid #bbb; + color: rgb(148, 14, 14); + background: white; +} +.pma_sql_import_status div li .filesize { + float: right; +} +.pma_sql_import_status h2 .minimize, .pma_sql_import_status .h2 .minimize { + float: right; + margin-right: 5px; + padding: 0 10px; +} +.pma_sql_import_status h2 .close, .pma_sql_import_status .h2 .close { + float: right; + margin-right: 5px; + padding: 0 10px; + display: none; +} +.pma_sql_import_status h2 .minimize:hover, .pma_sql_import_status .h2 .minimize:hover, +.pma_sql_import_status h2 .close:hover, +.pma_sql_import_status .h2 .close:hover { + background: rgba(155, 149, 149, 0.78); + cursor: pointer; +} + +.pma_drop_result h2 .close:hover, .pma_drop_result .h2 .close:hover { + background: rgba(155, 149, 149, 0.78); + cursor: pointer; +} + +.pma_drop_file_status { + color: #235a81; +} +.pma_drop_file_status span.underline:hover { + cursor: pointer; + text-decoration: underline; +} + +.pma_drop_result { + position: fixed; + top: 10%; + left: 20%; + width: 60%; + background: white; + min-height: 300px; + z-index: 800; + box-shadow: 0 0 15px #999; + border-radius: 10px; + cursor: move; +} +.pma_drop_result h2 .close, .pma_drop_result .h2 .close { + float: right; + margin-right: 5px; + padding: 0 10px; +} + +.dependencies_box { + background-color: white; + border: 3px ridge black; +} + +#composite_index_list { + list-style-type: none; + list-style-position: inside; +} + +span.drag_icon { + display: inline-block; + background-image: url("../img/s_sortable.png"); + background-position: center center; + background-repeat: no-repeat; + width: 1em; + height: 3em; + cursor: move; +} + +.topmargin { + margin-top: 1em; +} + +meter[value="1"]::-webkit-meter-optimum-value { + background: linear-gradient(white 3%, #e32929 5%, transparent 10%, #e32929); +} +meter[value="2"]::-webkit-meter-optimum-value { + background: linear-gradient(white 3%, #f60 5%, transparent 10%, #f60); +} +meter[value="3"]::-webkit-meter-optimum-value { + background: linear-gradient(white 3%, #ffd700 5%, transparent 10%, #ffd700); +} + +th.header { + cursor: pointer; + color: #235a81; +} +th.header:hover { + text-decoration: underline; +} +th.header .sorticon { + width: 16px; + height: 16px; + background-repeat: no-repeat; + background-position: right center; + display: inline-table; + vertical-align: middle; + float: right; +} +th.headerSortUp .sorticon { + background-image: url("../img/sort-desc.svg"); +} +th.headerSortDown:hover .sorticon { + background-image: url("../img/sort-desc.svg"); +} +th.headerSortDown .sorticon { + background-image: url("../img/sort-asc.svg"); +} +th.headerSortUp:hover .sorticon { + background-image: url("../img/sort-asc.svg"); +} + +body .ui-dialog .ui-dialog-titlebar-close { + right: 0.3em; + left: initial; +} +body .ui-dialog .ui-dialog-title { + float: left; +} +body .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { + float: right; +} +body .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset button { + color: #fff; + background: none; + background-color: #6c757d !important; + border-color: #6c757d; +} +body .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset button:hover { + background-color: #5a6268 !important; +} + +/* templates/database/multi_table_query */ +.multi_table_query_form .query-form__tr--hide { + display: none; +} +.multi_table_query_form .query-form__fieldset--inline, +.multi_table_query_form .query-form__select--inline { + display: inline; +} +.multi_table_query_form .query-form__tr--bg-none { + background: none; +} +.multi_table_query_form .query-form__input--wide { + width: 91%; +} +.multi_table_query_form .query-form__multi-sql-query { + float: left; +} + +#name-panel { + overflow: hidden; +} + +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; +} + +@media only screen and (max-width: 768px) { + .responsivetable { + overflow-x: auto; + } + body#loginform div.container { + width: 100%; + } + .largescreenonly { + display: none; + } + .width96 { + width: 96% !important; + } + #page_nav_icons { + display: none; + } + #table_name_col_no { + top: 62px; + } + .tdblock tr td { + display: block; + } + #table_columns { + margin-top: 60px; + } + #table_columns .tablesorter { + min-width: 100%; + } + .doubleFieldset .pma-fieldset { + width: 98%; + } + div#serverstatusquerieschart { + width: 100%; + height: 450px; + } + .ui-dialog { + margin: 1%; + width: 95% !important; + } +} +#tooltip_editor { + font-size: 12px; + background-color: #fff; + opacity: 0.95; + filter: alpha(opacity=95); + padding: 5px; +} + +#tooltip_font { + font-weight: bold; +} + +#selection_box { + z-index: 1000; + height: 205px; + position: absolute; + background-color: #87ceeb; + opacity: 0.4; + filter: alpha(opacity=40); + pointer-events: none; +} + +#filterQueryText { + vertical-align: baseline; +} + +.ui_tpicker_hour_slider, +.ui_tpicker_minute_slider, +.ui_tpicker_second_slider, +.ui_tpicker_millisec_slider, +.ui_tpicker_microsec_slider { + margin-left: 40px; + margin-top: 4px; + height: 0.75rem; +} + +.ui-timepicker-div dl .ui_tpicker_timezone select { + margin-left: 50px; +} + +.ui_tpicker_time_input { + width: 100%; +} + +@media (min-width: 1200px) { + div.tools { + text-align: left; + } + .pma-fieldset.tblFooters, + .tblFooters { + text-align: left; + } +} +.resize-vertical { + resize: vertical; +} + +.table-responsive-md .data { + z-index: 9; +} + +/** + * ENUM/SET editor styles + */ +p.enum_notice { + margin: 5px 2px; + font-size: 80%; +} + +#enum_editor p { + margin-top: 0; + font-style: italic; +} +#enum_editor .values { + width: 100%; +} +#enum_editor .add { + width: 100%; +} +#enum_editor .add td { + vertical-align: middle; + width: 50%; + padding: 0 0 0; + padding-left: 1em; +} +#enum_editor .values td.drop { + width: 1.8em; + cursor: pointer; + vertical-align: middle; +} +#enum_editor .values input { + margin: 0.1em 0; + padding-right: 2em; + width: 100%; +} +#enum_editor .values img { + vertical-align: middle; +} +#enum_editor input.add_value { + margin: 0; + margin-right: 0.4em; +} + +#enum_editor_output textarea { + width: 100%; + float: right; + margin: 1em 0 0 0; +} + +/** + * ENUM/SET editor integration for the routines editor + */ +.enum_hint { + position: relative; +} +.enum_hint a { + position: absolute; + left: 81%; + bottom: 0.35em; +} + +/** + * GIS data editor styles + */ +a.close_gis_editor { + float: right; +} + +#gis_editor { + display: none; + position: fixed; + z-index: 1001; + overflow-y: auto; + overflow-x: hidden; +} + +#gis_data { + min-height: 230px; +} + +#gis_data_textarea { + height: 6em; +} + +#gis_data_editor { + background: var(--bs-tertiary-bg); + border: 1px solid var(--bs-border-color); + border-radius: 4px; + color: var(--bs-body-color); + padding: 15px; + min-height: 500px; +} +#gis_data_editor .choice { + display: none; +} +#gis_data_editor input[type=text] { + width: 75px; +} + +#pma_navigation { + width: 240px; + position: fixed; + top: 0; + left: 0; + height: 100vh; + background-color: var(--bs-tertiary-bg); + border-right: 1px solid var(--bs-border-color); + z-index: 800; +} +#pma_navigation ul { + margin: 0; +} +#pma_navigation form { + margin: 0; + padding: 0; + display: inline; +} +#pma_navigation select#select_server, #pma_navigation select#lightm_db { + width: 100%; +} +#pma_navigation div.pageselector { + text-align: center; + margin: 0; + margin-left: 0.75em; + border-left: 1px solid rgba(var(--bs-body-color-rgb), 0.25); +} +#pma_navigation #pmalogo, +#pma_navigation #serverChoice, +#pma_navigation #navipanellinks, +#pma_navigation #recentTableList, +#pma_navigation #favoriteTableList, +#pma_navigation #databaseList, +#pma_navigation div.pageselector.dbselector { + text-align: center; + padding: 5px 10px 0; + border: 0; +} +#pma_navigation #pmalogo { + background-color: transparent; + padding: 6px 10px; + border-bottom: 1px solid var(--bs-border-color); +} +#pma_navigation #navipanellinks { + padding: 8px 10px; + background-color: rgba(var(--bs-body-color-rgb), 0.03); + border-bottom: 1px solid var(--bs-border-color); +} +#pma_navigation #navipanellinks a { + display: inline-block; + padding: 8px; +} +#pma_navigation #navipanellinks .icon { + margin: 0; +} +#pma_navigation #recentTable, +#pma_navigation #favoriteTable { + width: 200px; +} +#pma_navigation #favoriteTableList select, +#pma_navigation #serverChoice select { + width: 80%; +} + +#pma_navigation_header { + overflow: hidden; +} + +#pma_navigation_content { + width: 100%; + height: 100%; + position: absolute; + top: 0; + left: 0; + z-index: 0; +} +#pma_navigation_content > img.throbber { + display: none; + margin: 0.3em auto 0; +} + +#pma_navigation_select_database { + text-align: left; + padding: 0 0 0; + border: 0; + margin: 0; +} + +#pma_navigation_db_select { + margin-top: 0.5em; + margin-left: 0.75em; +} +#pma_navigation_db_select select { + background: var(--bs-body-bg); + -webkit-border-radius: 4px; + border-radius: 4px; + border: 1px solid var(--bs-border-color); + color: var(--bs-body-color); + padding: 4px 6px; + margin: 0 0 0; + width: 92%; + font-size: 0.875rem; +} + +#pma_navigation_tree_content { + width: 100%; + overflow: hidden; + overflow-y: auto; + position: absolute; + height: 100%; +} +#pma_navigation_tree_content a.hover_show_full { + position: relative; + z-index: 100; + vertical-align: sub; +} + +#pma_navigation_tree { + margin: 0; + margin-left: 5px; + overflow: hidden; + color: var(--bs-body-color); + height: 74%; + position: relative; + font-size: 0.875rem; +} +#pma_navigation_tree a { + color: var(--bs-body-color); + padding-left: 0; +} +#pma_navigation_tree a:hover { + color: var(--bs-primary); + text-decoration: none; +} +#pma_navigation_tree ul { + clear: both; + padding: 0; + list-style-type: none; + margin: 0; +} +#pma_navigation_tree ul ul { + position: relative; +} +#pma_navigation_tree li { + margin-bottom: 0; +} +#pma_navigation_tree li.activePointer, #pma_navigation_tree li.selected { + color: var(--bs-body-color); + background-color: rgba(var(--bs-primary-rgb), 0.15); + border-radius: 3px; +} +#pma_navigation_tree li .dbItemControls { + padding-right: 4px; + float: right; +} +#pma_navigation_tree li .navItemControls { + display: none; + padding-right: 4px; + float: right; +} +#pma_navigation_tree li.activePointer .navItemControls { + display: block; + opacity: 0.5; +} +#pma_navigation_tree li.activePointer .navItemControls:hover { + opacity: 1; +} +#pma_navigation_tree li { + white-space: nowrap; + clear: both; + min-height: 16px; +} +#pma_navigation_tree li.fast_filter { + white-space: nowrap; + clear: both; + min-height: 16px; +} +#pma_navigation_tree img { + margin: 0; +} +#pma_navigation_tree i { + display: block; +} +#pma_navigation_tree div.block { + position: relative; + width: 1.5em; + height: 1.5em; + min-width: 16px; + min-height: 16px; + float: left; +} +#pma_navigation_tree div.block.double { + width: 2.5em; +} +#pma_navigation_tree div.block i, +#pma_navigation_tree div.block b { + width: 1.5em; + height: 1.7em; + min-width: 16px; + min-height: 8px; + position: absolute; + bottom: 0.7em; + left: 0.75em; + z-index: 0; +} +#pma_navigation_tree div.block i { + display: block; + border-left: 1px solid #666; + border-bottom: 1px solid #666; + position: relative; + z-index: 0; +} +#pma_navigation_tree div.block i.first { + border-left: 0; +} +#pma_navigation_tree div.block b { + display: block; + height: 0.75em; + bottom: -0.5rem; + left: 0.75em; + border-left: 1px solid #666; +} +#pma_navigation_tree div.block a, +#pma_navigation_tree div.block u { + position: absolute; + left: 50%; + top: 50%; + z-index: 10; +} +#pma_navigation_tree div.block a + a { + left: 100%; +} +#pma_navigation_tree div.block.double a, +#pma_navigation_tree div.block.double u { + left: 33%; +} +#pma_navigation_tree div.block.double a + a { + left: 85%; +} +#pma_navigation_tree div.block img { + position: relative; + top: -0.6em; + left: 0; + margin-left: -7px; +} +#pma_navigation_tree div.throbber img { + top: 2px; + left: 2px; +} +#pma_navigation_tree li.last > ul { + background: none; +} +#pma_navigation_tree li > a, +#pma_navigation_tree li > i { + line-height: 1.5em; + height: 1.5em; + padding-left: 0.3em; +} +#pma_navigation_tree .list_container { + border-left: 1px solid #666; + margin-left: 0.75em; + padding-left: 0.75em; +} +#pma_navigation_tree .list_container li.last.database { + margin-bottom: 0 !important; +} +#pma_navigation_tree .last > .list_container { + border-left: 0 solid #666; +} + +li.fast_filter { + padding-left: 0.75em; + margin-left: 0.75em; + padding-right: 35px; + border-left: 1px solid #666; + list-style: none; +} +li.fast_filter input { + font-size: 0.7em; +} +li.fast_filter .searchClauseClear { + font-weight: bold; + color: #800; + font-size: 0.7em; +} +li.fast_filter.db_fast_filter { + border: 0; + margin-left: 0; +} + +#navigation_controls_outer { + min-height: 21px !important; +} +#navigation_controls_outer.activePointer { + background-color: transparent !important; +} + +#navigation_controls { + float: right; + padding-right: 23px; +} + +#pma_navigation_resizer { + width: 1px !important; + height: 100%; + background-color: rgba(0, 0, 0, 0.125); + cursor: col-resize; + position: fixed; + top: 0; + left: 240px; + z-index: 801; +} + +#pma_navigation_collapser { + width: 20px; + height: 22px; + line-height: 22px; + background: var(--bs-tertiary-bg); + color: var(--bs-body-color); + font-weight: bold; + position: fixed; + top: 0; + left: 240px; + text-align: center; + cursor: pointer; + z-index: 800; + border: 1px solid var(--bs-border-color); +} + +.pma_quick_warp { + margin-top: 5px; + margin-left: 2px; + position: relative; +} +.pma_quick_warp .drop_list { + float: left; + margin-left: 3px; + padding: 2px 0; +} +.pma_quick_warp .drop_list:hover .drop_button { + background: var(--bs-primary); + color: #fff; +} +.pma_quick_warp .drop_list:hover ul { + display: block; +} +.pma_quick_warp .drop_list ul { + position: absolute; + margin: 0; + padding: 0; + overflow: hidden; + overflow-y: auto; + list-style: none; + background: var(--bs-body-bg); + border: 1px solid var(--bs-border-color); + border-radius: 0.3em; + border-top-right-radius: 0; + border-bottom-right-radius: 0; + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); + top: 100%; + left: 3px; + right: 0; + display: none; + z-index: 802; +} +.pma_quick_warp .drop_list li { + white-space: nowrap; + padding: 0; + border-radius: 0; +} +.pma_quick_warp .drop_list li a { + line-height: 1.5em; + padding-left: 0.3em; + color: var(--bs-body-color); +} +.pma_quick_warp .drop_list li img { + vertical-align: sub; +} +.pma_quick_warp .drop_list li:hover { + background: var(--bs-tertiary-bg); +} +.pma_quick_warp .drop_list a { + display: block; + padding: 0.2em 0.3em; +} +.pma_quick_warp .drop_list a.favorite_table_anchor { + clear: left; + float: left; + padding: 0.1em 0.3em 0; +} +.pma_quick_warp .drop_button { + padding: 0.3em; + border: 1px solid var(--bs-border-color); + border-radius: 0.3em; + background: var(--bs-tertiary-bg); + color: var(--bs-body-color); + cursor: pointer; +} + +[data-bs-theme=dark] #pma_navigation { + background: #171717; + border-right: 1px solid var(--bs-border-color); +} +[data-bs-theme=dark] #pma_navigation #pmalogo { + background-color: transparent; +} +[data-bs-theme=dark] #pma_navigation_tree { + color: #ced4da; +} +[data-bs-theme=dark] #pma_navigation_tree a { + color: #ced4da; +} +[data-bs-theme=dark] #pma_navigation_tree a:hover { + color: #ff6699; +} +[data-bs-theme=dark] #pma_navigation_tree li.activePointer, [data-bs-theme=dark] #pma_navigation_tree li.selected { + color: #fff; + background-color: rgba(var(--bs-primary-rgb), 0.25); +} +[data-bs-theme=dark] #pma_navigation_tree div.block i { + border-left: 1px solid rgba(255, 255, 255, 0.2); + border-bottom: 1px solid rgba(255, 255, 255, 0.2); +} +[data-bs-theme=dark] #pma_navigation_tree div.block b { + border-left: 1px solid rgba(255, 255, 255, 0.2); +} +[data-bs-theme=dark] #pma_navigation_tree .list_container { + border-left: 1px solid rgba(255, 255, 255, 0.2); +} +[data-bs-theme=dark] #pma_navigation_tree .last > .list_container { + border-left: 0 solid transparent; +} +[data-bs-theme=dark] .pma_quick_warp .drop_list:hover .drop_button { + background: #ff0055; + color: #fff; +} +[data-bs-theme=dark] .pma_quick_warp .drop_list ul { + background: #171717; + border: 1px solid #495057; + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4); +} +[data-bs-theme=dark] .pma_quick_warp .drop_list li:hover { + background: #2b2b2b; +} +#floating_menubar { + z-index: 99; +} + +/* Designer */ +.input_tab { + background-color: #a6c7e1; + color: #000; +} + +.content_fullscreen { + position: relative; + overflow: auto; +} + +#canvas_outer { + position: relative; + width: 100%; + display: block; +} + +#canvas { + background-color: #fff; + color: #000; +} + +canvas.designer { + display: inline-block; + overflow: hidden; + text-align: left; +} +canvas.designer * { + behavior: url(#default#VML); +} + +.designer_tab { + background-color: #fff; + color: #000; + border-collapse: collapse; + border: 1px solid #aaa; + z-index: 1; + user-select: none; +} +.designer_tab .header { + background: linear-gradient(#b8e6fa, #b8e6fa 6%, #cdf5fd 10%, #dbffff 10%, #9bd2f6 50%, #9bd2f6 100%); +} + +.tab_zag { + text-align: center; + cursor: move; + padding: 1px; + font-weight: bold; +} + +.tab_zag_2 { + background: linear-gradient(#fffa96 0%, #fffa96 39%, #ffe796 40%, #ffe796 100%); + text-align: center; + cursor: move; + padding: 1px; + font-weight: bold; +} + +.tab_field { + background: #fff; + color: #000; + cursor: default; +} +.tab_field:hover { + background-color: #cfc; + color: #000; + background-repeat: repeat-x; + cursor: default; +} + +.tab_field_3 { + background-color: #ffe6e6; + color: #000; + cursor: default; +} +.tab_field_3:hover { + background-color: #cfc; + color: #000; + background-repeat: repeat-x; + cursor: default; +} + +#designer_hint { + white-space: nowrap; + position: absolute; + background-color: #9f9; + color: #000; + z-index: 3; + border: #0c6 solid 1px; + display: none; +} + +#designer_body #page_content { + margin: 0; +} + +.scroll_tab { + overflow: auto; + width: 100%; + height: 500px; +} + +.designer_Tabs { + cursor: default; + color: #05b; + white-space: nowrap; + text-decoration: none; + text-indent: 3px; + font-weight: bold; + margin-left: 2px; + text-align: left; + background: linear-gradient(#fff, #dfe5e7 70%, #fff 70%, #fff 100%); + border: #ccc solid 1px; +} +.designer_Tabs:hover { + cursor: default; + color: #05b; + background: #fe9; + text-indent: 3px; + font-weight: bold; + white-space: nowrap; + text-decoration: none; + border: #99f solid 1px; + text-align: left; +} + +.owner { + font-weight: normal; + color: #888; +} + +.option_tab { + padding-left: 2px; + padding-right: 2px; + width: 5px; +} + +.select_all { + vertical-align: top; + padding-left: 2px; + padding-right: 2px; + cursor: default; + width: 1px; + color: #000; + background: linear-gradient(#b8e6fa, #b8e6fa 6%, #cdf5fd 10%, #dbffff 10%, #9bd2f6 50%, #9bd2f6 100%); +} + +.small_tab { + vertical-align: top; + background-color: #0064ea; + color: #fff; + background-image: url("../img/designer/small_tab.png"); + cursor: default; + text-align: center; + font-weight: bold; + padding-left: 2px; + padding-right: 2px; + width: 1px; + text-decoration: none; +} +.small_tab:hover { + vertical-align: top; + color: #fff; + background-color: #f96; + cursor: default; + padding-left: 2px; + padding-right: 2px; + text-align: center; + font-weight: bold; + width: 1px; + text-decoration: none; +} + +.small_tab_pref { + background: linear-gradient(#b8e6fa, #b8e6fa 6%, #cdf5fd 10%, #dbffff 10%, #9bd2f6 50%, #9bd2f6 100%); + text-align: center; + width: 1px; +} +.small_tab_pref:hover { + vertical-align: top; + color: #fff; + background-color: #f96; + cursor: default; + text-align: center; + font-weight: bold; + width: 1px; + text-decoration: none; +} + +.butt { + border: #47a solid 1px; + font-weight: bold; + background-color: #fff; + color: #000; + vertical-align: baseline; +} + +.L_butt2_1 { + padding: 1px; + text-decoration: none; + vertical-align: middle; + cursor: default; +} +.L_butt2_1:hover { + padding: 0; + border: #09c solid 1px; + background: #fe9; + color: #000; + text-decoration: none; + vertical-align: middle; + cursor: default; +} + +/* --------------------------------------------------------------------------- */ +.bor { + width: 10px; + height: 10px; +} + +.frams1 { + background: url("../img/designer/1.png") no-repeat right bottom; +} + +.frams2 { + background: url("../img/designer/2.png") no-repeat left bottom; +} + +.frams3 { + background: url("../img/designer/3.png") no-repeat left top; +} + +.frams4 { + background: url("../img/designer/4.png") no-repeat right top; +} + +.frams5 { + background: url("../img/designer/5.png") repeat-x center bottom; +} + +.frams6 { + background: url("../img/designer/6.png") repeat-y left; +} + +.frams7 { + background: url("../img/designer/7.png") repeat-x top; +} + +.frams8 { + background: url("../img/designer/8.png") repeat-y right; +} + +#osn_tab { + position: absolute; + background-color: #fff; + color: #000; +} + +.designer_header { + background-color: #eaeef0; + color: #000; + text-align: center; + font-weight: bold; + margin: 0; + padding: 0; + background-image: url("../img/designer/top_panel.png"); + background-position: top; + background-repeat: repeat-x; + border-right: #999 solid 1px; + border-left: #999 solid 1px; + height: 28px; + z-index: 101; + width: 100%; + position: fixed; +} +.designer_header a, +.designer_header span { + display: block; + float: left; + margin: 3px 1px 4px; + height: 20px; + border: 1px dotted #fff; +} +.designer_header .M_bord { + display: block; + float: left; + margin: 4px; + height: 20px; + width: 2px; +} +.designer_header a.first { + margin-right: 1em; +} +.designer_header a.last { + margin-left: 1em; +} + +a.M_butt_Selected_down_IE, a.M_butt_Selected_down { + border: 1px solid #c0c0bb; + background-color: #9f9; + color: #000; +} +a.M_butt_Selected_down_IE:hover, a.M_butt_Selected_down:hover { + border: 1px solid #09c; + background-color: #fe9; + color: #000; +} +a.M_butt:hover { + border: 1px solid #09c; + background-color: #fe9; + color: #000; +} + +#layer_menu { + z-index: 98; + position: relative; + float: right; + background-color: #eaeef0; + border: #999 solid 1px; +} + +#layer_upd_relation { + position: absolute; + left: 637px; + top: 224px; + z-index: 100; +} + +#layer_new_relation, +#designer_optionse { + position: absolute; + left: 636px; + top: 85px; + z-index: 100; + width: 153px; +} + +#layer_menu_sizer { + background-image: url("../img/designer/resize.png"); + cursor: ew-resize; +} +#layer_menu_sizer .icon { + margin: 0; +} + +.panel { + position: fixed; + top: 60px; + right: 0; + width: 350px; + max-height: 500px; + display: none; + overflow: auto; + padding-top: 34px; + z-index: 102; +} + +a.trigger { + position: fixed; + text-decoration: none; + top: 60px; + right: 0; + color: #fff; + padding: 10px 40px 10px 15px; + background: #333 url("../img/designer/plus.png") 85% 55% no-repeat; + border: 1px solid #444; + display: block; + z-index: 102; +} +a.trigger:hover { + color: #080808; + background: #fff696 url("../img/designer/plus.png") 85% 55% no-repeat; + border: 1px solid #999; +} +a.active.trigger { + background: #222 url("../img/designer/minus.png") 85% 55% no-repeat; + z-index: 999; +} +a.active.trigger:hover { + background: #fff696 url("../img/designer/minus.png") 85% 55% no-repeat; +} + +.toggle_container .block { + background-color: #dbe4e8; + border-top: 1px solid #999; +} + +.history_table { + text-align: center; + cursor: pointer; + background-color: #dbe4e8; +} +.history_table:hover { + background-color: #99c; +} + +#ab { + min-width: 300px; +} +#ab .ui-accordion-content { + padding: 0; +} + +#foreignkeychk { + text-align: left; + cursor: pointer; +} + +.side-menu { + float: left; + position: fixed; + width: auto; + height: auto; + background: #efefef; + border: 1px solid grey; + overflow: hidden; + z-index: 50; + padding: 2px; +} +.side-menu.right { + float: right; + right: 0; +} +.side-menu .hide { + display: none; +} +.side-menu a { + display: block; + float: none; + overflow: hidden; + line-height: 1em; +} +.side-menu img, +.side-menu .text { + float: left; +} + +#name-panel { + border-bottom: 1px solid var(--bs-border-color); + text-align: center; + background: var(--bs-tertiary-bg); + color: var(--bs-body-color); + width: 100%; + font-size: 1.1em; + padding: 5px; + font-weight: bold; +} + +#container-form { + width: 100%; + position: absolute; + left: 0; +} + +.CodeMirror { + height: 20rem; + direction: ltr; + border: 1px solid var(--bs-border-color-translucent); + background-color: #1e1e1e; + border-radius: var(--bs-border-radius); +} + +.CodeMirror.cm-s-default div.CodeMirror-scroll { + margin-right: 0; + padding-bottom: 0; +} + +#inline_editor_outer .CodeMirror { + height: 6em; +} + +.insertRowTable .CodeMirror { + min-height: 9em; + min-width: 24em; + border: 1px solid #a9a9a9; +} + +#pma_console .CodeMirror-gutters { + background-color: initial; + border: none; +} + +.CodeMirror-gutters { + border-right: solid 1px #2b2b2b; + background-color: #202020; +} + +.CodeMirror-cursor { + border-left: 1px solid #ced4da; +} + +span.cm-meta { + color: #569cd6; +} +span.cm-keyword, span.cm-statement-verb { + color: #569cd6; +} +span.cm-def { + color: #9cdcfe; +} +span.cm-variable { + color: #ddd6a3; +} +span.cm-variable-2 { + color: #9cdcfe; +} +span.cm-variable-3, span.cm-type { + color: #a9b7c6; +} +span.cm-property { + color: #9cdcfe; +} +span.cm-operator { + color: #d4d4d4; +} +span.cm-string { + color: #ce9178; +} +span.cm-string-2 { + color: #6a8759; +} +span.cm-mysql-string { + color: #008000; +} +span.cm-mysql-word { + color: white; +} +span.cm-comment { + color: #6a9955; +} +span.cm-link { + color: #287bde; +} +span.cm-atom { + color: #569cd6; +} +span.cm-error { + color: #bc3f3c; +} +span.cm-tag { + color: #569cd6; +} +span.cm-attribute { + color: #9cdcfe; +} +span.cm-qualifier { + color: #d7ba7d; +} +span.cm-bracket { + color: #d4d4d4; +} +span.cm-number { + color: #b5cea8; +} +span.cm-builtin { + color: #569cd6; +} +span.cm-separator { + color: fuchsia; +} + +.autocomplete-column-name { + display: inline-block; +} + +.autocomplete-column-hint { + display: inline-block; + float: right; + color: #666; + margin-left: 1em; +} + +.CodeMirror-hints { + z-index: 1999; +} + +.CodeMirror-lint-tooltip { + z-index: 200; + font-family: inherit; +} +.CodeMirror-lint-tooltip code { + font-family: monospace; + font-weight: bold; +} + +/* jqPlot */ +.jqplot-target { + position: relative; + color: #222; + font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; + font-size: 1em; +} + +.jqplot-axis { + font-size: 0.75em; +} + +.jqplot-xaxis { + margin-top: 10px; +} + +.jqplot-x2axis { + margin-bottom: 10px; +} + +.jqplot-yaxis { + margin-right: 10px; +} + +.jqplot-y2axis, +.jqplot-y3axis, +.jqplot-y4axis, +.jqplot-y5axis, +.jqplot-y6axis, +.jqplot-y7axis, +.jqplot-y8axis, +.jqplot-y9axis, +.jqplot-yMidAxis { + margin-left: 10px; + margin-right: 10px; +} + +.jqplot-axis-tick, +.jqplot-xaxis-tick, +.jqplot-yaxis-tick, +.jqplot-x2axis-tick, +.jqplot-y2axis-tick, +.jqplot-y3axis-tick, +.jqplot-y4axis-tick, +.jqplot-y5axis-tick, +.jqplot-y6axis-tick, +.jqplot-y7axis-tick, +.jqplot-y8axis-tick, +.jqplot-y9axis-tick, +.jqplot-yMidAxis-tick { + position: absolute; + white-space: pre; +} + +.jqplot-xaxis-tick { + top: 0; + left: 15px; + vertical-align: top; +} + +.jqplot-x2axis-tick { + bottom: 0; + left: 15px; + vertical-align: bottom; +} + +.jqplot-yaxis-tick { + right: 0; + top: 15px; + text-align: right; +} +.jqplot-yaxis-tick.jqplot-breakTick { + right: -20px; + margin-right: 0; + padding: 1px 5px 1px; + z-index: 2; + font-size: 1.5em; +} + +.jqplot-y2axis-tick, +.jqplot-y3axis-tick, +.jqplot-y4axis-tick, +.jqplot-y5axis-tick, +.jqplot-y6axis-tick, +.jqplot-y7axis-tick, +.jqplot-y8axis-tick, +.jqplot-y9axis-tick { + left: 0; + top: 15px; + text-align: left; +} + +.jqplot-yMidAxis-tick { + text-align: center; + white-space: nowrap; +} + +.jqplot-xaxis-label { + margin-top: 10px; + font-size: 11pt; + position: absolute; +} + +.jqplot-x2axis-label { + margin-bottom: 10px; + font-size: 11pt; + position: absolute; +} + +.jqplot-yaxis-label { + margin-right: 10px; + font-size: 11pt; + position: absolute; +} + +.jqplot-yMidAxis-label { + font-size: 11pt; + position: absolute; +} + +.jqplot-y2axis-label, +.jqplot-y3axis-label, +.jqplot-y4axis-label, +.jqplot-y5axis-label, +.jqplot-y6axis-label, +.jqplot-y7axis-label, +.jqplot-y8axis-label, +.jqplot-y9axis-label { + font-size: 11pt; + margin-left: 10px; + position: absolute; +} + +.jqplot-meterGauge-tick { + font-size: 0.75em; + color: #999; +} + +.jqplot-meterGauge-label { + font-size: 1em; + color: #999; +} + +table.jqplot-table-legend { + margin-top: 12px; + margin-bottom: 12px; + margin-left: 12px; + margin-right: 12px; + background-color: rgba(255, 255, 255, 0.6); + border: 1px solid #ccc; + position: absolute; + font-size: 0.75em; +} +table.jqplot-cursor-legend { + background-color: rgba(255, 255, 255, 0.6); + border: 1px solid #ccc; + position: absolute; + font-size: 0.75em; +} + +td.jqplot-table-legend { + vertical-align: middle; +} +td.jqplot-seriesToggle:hover, td.jqplot-seriesToggle:active { + cursor: pointer; +} + +.jqplot-table-legend .jqplot-series-hidden { + text-decoration: line-through; +} + +div.jqplot-table-legend-swatch-outline { + border: 1px solid #ccc; + padding: 1px; +} +div.jqplot-table-legend-swatch { + width: 0; + height: 0; + border-top-width: 5px; + border-bottom-width: 5px; + border-left-width: 6px; + border-right-width: 6px; + border-top-style: solid; + border-bottom-style: solid; + border-left-style: solid; + border-right-style: solid; +} + +.jqplot-title { + top: 0; + left: 0; + padding-bottom: 0.5em; + font-size: 1.2em; +} + +table.jqplot-cursor-tooltip { + border: 1px solid #ccc; + font-size: 0.75em; +} + +.jqplot-cursor-tooltip, +.jqplot-highlighter-tooltip, +.jqplot-canvasOverlay-tooltip { + border: 1px solid #ccc; + font-size: 1em; + white-space: nowrap; + background: rgba(208, 208, 208, 0.8); + padding: 1px; +} + +.jqplot-point-label { + font-size: 0.75em; + z-index: 2; +} + +td.jqplot-cursor-legend-swatch { + vertical-align: middle; + text-align: center; +} + +div.jqplot-cursor-legend-swatch { + width: 1.2em; + height: 0.7em; +} + +.jqplot-error { + text-align: center; +} + +.jqplot-error-message { + position: relative; + top: 46%; + display: inline-block; +} + +div.jqplot-bubble-label { + font-size: 0.8em; + padding-left: 2px; + padding-right: 2px; + color: rgb(51, 51, 51); +} +div.jqplot-bubble-label.jqplot-bubble-label-highlight { + background: rgba(90%, 90%, 90%, 0.7); +} +div.jqplot-noData-container { + text-align: center; + background-color: rgba(96%, 96%, 96%, 0.3); +} + +.icon { + margin: 0; + margin-left: 0.3em; + padding: 0 !important; + width: 16px; + height: 16px; +} + +.icon_fulltext { + width: 50px; + height: 19px; +} + +.ic_asc_order { + background-image: url("../img/asc_order.png"); +} + +.ic_b_bookmark { + background-image: url("../img/bookmark-plus.svg"); +} + +.ic_b_browse, +.ic_b_sbrowse { + background-image: url("../img/table-browse.svg"); +} + +.ic_b_calendar { + background-image: url("../img/b_calendar.png"); +} + +.ic_b_chart { + background-image: url("../img/chart.svg"); +} + +.ic_b_close { + background-image: url("../img/close.svg"); +} + +.ic_b_column_add { + background-image: url("../img/col-plus.svg"); +} + +.ic_b_comment { + background-image: url("../img/comment.svg"); +} + +.ic_b_dbstatistics { + background-image: url("../img/b_dbstatistics.png"); +} + +.ic_b_deltbl { + background-image: url("../img/table-minus.svg"); +} + +.ic_b_docs { + background-image: url("../img/help.svg"); +} + +.ic_b_docsql { + background-image: url("../img/b_docsql.png"); +} + +.ic_b_drop { + background-image: url("../img/minus.svg"); +} + +.ic_b_edit { + background-image: url("../img/edit.svg"); +} + +.ic_b_empty { + background-image: url("../img/shredder.svg"); +} + +.ic_b_engine { + background-image: url("../img/database-engine.svg"); +} + +.ic_b_event_add { + background-image: url("../img/event-plus.svg"); +} + +.ic_b_events { + background-image: url("../img/event.svg"); +} + +.ic_b_export, +.ic_b_tblexport { + background-image: url("../img/export.svg"); +} + +.ic_b_favorite { + background-image: url("../img/favorite.svg"); +} + +.ic_b_find_replace { + background-image: url("../img/search-replace.svg"); +} + +.ic_b_firstpage { + background-image: url("../img/b_firstpage.png"); +} + +.ic_b_ftext { + background-image: url("../img/field-index-text.svg"); +} + +.ic_b_globe { + background-image: url("../img/globe-alt.svg"); +} + +.ic_b_group { + background-image: url("../img/databases.svg"); +} + +.ic_b_help { + background-image: url("../img/help-alt.svg"); +} + +.ic_b_home { + background-image: url("../img/home.svg"); +} + +.ic_b_import, +.ic_b_tblimport { + background-image: url("../img/import.svg"); +} + +.ic_b_index { + background-image: url("../img/field-index.svg"); +} + +.ic_b_index_add { + background-image: url("../img/index-plus.svg"); +} + +.ic_b_inline_edit { + background-image: url("../img/b_inline_edit.png"); +} + +.ic_b_insrow { + background-image: url("../img/row-plus.svg"); +} + +.ic_b_lastpage { + background-image: url("../img/b_lastpage.png"); +} + +.ic_b_minus { + background-image: url("../img/tree-collapse.svg"); +} + +.ic_b_more { + background-image: url("../img/triangle-down-1.svg"); +} + +.ic_b_move { + background-image: url("../img/col-move.svg"); +} + +.ic_b_newdb { + background-image: url("../img/database-plus.svg"); +} + +.ic_db_drop { + background-image: url("../img/database-minus.svg"); +} + +.ic_b_newtbl { + background-image: url("../img/b_newtbl.png"); +} + +.ic_b_nextpage { + background-image: url("../img/b_nextpage.png"); +} + +.ic_b_no_favorite { + background-image: url("../img/favorite-alt.svg"); +} + +.ic_b_pdfdoc { + background-image: url("../img/b_pdfdoc.png"); +} + +.ic_b_plugin { + background-image: url("../img/plugin.svg"); +} + +.ic_b_plus { + background-image: url("../img/tree-expand.svg"); +} + +.ic_b_prevpage { + background-image: url("../img/b_prevpage.png"); +} + +.ic_b_primary { + background-image: url("../img/key-primary.svg"); +} + +.ic_b_print { + background-image: url("../img/print.svg"); +} + +.ic_b_props { + background-image: url("../img/table-engine.svg"); +} + +.ic_b_relations { + background-image: url("../img/designer.svg"); +} + +.ic_b_report { + background-image: url("../img/report.svg"); +} + +.ic_b_rename { + background-image: url("../img/b_rename.svg"); +} + +.ic_b_routine_add { + background-image: url("../img/routine-plus.svg"); +} + +.ic_b_routines { + background-image: url("../img/routine.svg"); +} + +.ic_b_save, +.ic_b_saveimage { + background-image: url("../img/save.svg"); +} + +.ic_b_sdb { + background-image: url("../img/b_sdb.png"); + width: 10px; + height: 10px; +} + +.ic_b_search { + background-image: url("../img/search.svg"); +} + +.ic_b_select { + background-image: url("../img/search-across.svg"); +} + +.ic_b_snewtbl { + background-image: url("../img/b_snewtbl.png"); +} + +.ic_b_spatial { + background-image: url("../img/field-spatial.svg"); +} + +.ic_b_sql { + background-image: url("../img/sql.svg"); +} + +.ic_b_sqldoc { + background-image: url("../img/b_sqldoc.png"); +} + +.ic_b_sqlhelp { + background-image: url("../img/manual.svg"); +} + +.ic_b_table_add { + background-image: url("../img/table-plus.svg"); +} + +.ic_b_tblanalyse { + background-image: url("../img/table-analyse.svg"); +} + +.ic_b_tblops { + background-image: url("../img/preferences.svg"); +} + +.ic_b_tbloptimize { + background-image: url("../img/optimize.svg"); +} + +.ic_b_tipp { + background-image: url("../img/b_tipp.png"); +} + +.ic_b_trigger_add { + background-image: url("../img/flag-plus.svg"); +} + +.ic_b_triggers { + background-image: url("../img/flag.svg"); +} + +.ic_b_undo { + background-image: url("../img/b_undo.png"); +} + +.ic_b_unique { + background-image: url("../img/field-index-uinique.svg"); +} + +.ic_b_usradd { + background-image: url("../img/user-plus.svg"); +} + +.ic_b_usrdrop { + background-image: url("../img/user-minus.svg"); +} + +.ic_b_usredit, +.ic_b_usrcheck { + background-image: url("../img/user.svg"); +} + +.ic_b_usrlist { + background-image: url("../img/users.svg"); +} + +.ic_b_versions { + background-image: url("../img/version.svg"); +} + +.ic_b_view { + background-image: url("../img/b_view.png"); +} + +.ic_b_view_add { + background-image: url("../img/table-view-plus.svg"); +} + +.ic_b_views { + background-image: url("../img/table-view.svg"); +} + +.ic_b_left { + background-image: url("../img/b_left.png"); +} + +.ic_b_right { + background-image: url("../img/b_right.png"); +} + +.ic_bd_browse { + background-image: url("../img/bd_browse.png"); +} + +.ic_bd_deltbl { + background-image: url("../img/bd_deltbl.png"); +} + +.ic_bd_drop { + background-image: url("../img/bd_drop.png"); +} + +.ic_bd_edit { + background-image: url("../img/bd_edit.png"); +} + +.ic_bd_empty { + background-image: url("../img/bd_empty.png"); +} + +.ic_bd_export { + background-image: url("../img/bd_export.png"); +} + +.ic_bd_firstpage { + background-image: url("../img/bd_firstpage.png"); +} + +.ic_bd_ftext { + background-image: url("../img/bd_ftext.png"); +} + +.ic_bd_index { + background-image: url("../img/bd_index.png"); +} + +.ic_bd_insrow { + background-image: url("../img/bd_insrow.png"); +} + +.ic_bd_lastpage { + background-image: url("../img/bd_lastpage.png"); +} + +.ic_bd_nextpage { + background-image: url("../img/bd_nextpage.png"); +} + +.ic_bd_prevpage { + background-image: url("../img/bd_prevpage.png"); +} + +.ic_bd_primary { + background-image: url("../img/key.svg"); +} + +.ic_bd_routine_add { + background-image: url("../img/bd_routine_add.png"); +} + +.ic_bd_sbrowse { + background-image: url("../img/bd_sbrowse.png"); +} + +.ic_bd_select { + background-image: url("../img/bd_select.png"); +} + +.ic_bd_spatial { + background-image: url("../img/bd_spatial.png"); +} + +.ic_bd_unique { + background-image: url("../img/bd_unique.png"); +} + +.ic_centralColumns { + background-image: url("../img/col.svg"); +} + +.ic_centralColumns_add { + background-image: url("../img/col-plus.svg"); +} + +.ic_centralColumns_delete { + background-image: url("../img/col-minus.svg"); +} + +.ic_col_drop { + background-image: url("../img/col_drop.png"); +} + +.ic_console { + background-image: url("../img/console.svg"); +} + +.ic_database, +.ic_s_db { + background-image: url("../img/database.svg"); +} + +.ic_eye { + background-image: url("../img/glasses.svg"); +} + +.ic_eye_grey { + background-image: url("../img/eye_grey.png"); +} + +.ic_hide { + background-image: url("../img/visibility-hidden.svg"); +} + +.ic_item { + background-image: url("../img/item.png"); + width: 9px; + height: 9px; +} + +.ic_lightbulb { + background-image: url("../img/lightbulb.png"); +} + +.ic_lightbulb_off { + background-image: url("../img/lightbulb_off.png"); +} + +.ic_more { + background-image: url("../img/more.png"); + width: 13px; +} + +.ic_new_data { + background-image: url("../img/new_data.png"); +} + +.ic_new_data_hovered { + background-image: url("../img/new_data_hovered.png"); +} + +.ic_new_data_selected { + background-image: url("../img/new_data_selected.png"); +} + +.ic_new_data_selected_hovered { + background-image: url("../img/new_data_selected_hovered.png"); +} + +.ic_new_struct { + background-image: url("../img/new_struct.png"); +} + +.ic_new_struct_hovered { + background-image: url("../img/new_struct_hovered.png"); +} + +.ic_new_struct_selected { + background-image: url("../img/new_struct_selected.png"); +} + +.ic_new_struct_selected_hovered { + background-image: url("../img/new_struct_selected_hovered.png"); +} + +.ic_normalize { + background-image: url("../img/wizard.svg"); +} + +.ic_pause { + background-image: url("../img/pause.svg"); +} + +.ic_php_sym { + background-image: url("../img/php_sym.png"); +} + +.ic_play { + background-image: url("../img/triangle-right-1.svg"); +} + +.ic_s_asc { + background-image: url("../img/sort-asc.svg"); +} + +.ic_s_asci { + background-image: url("../img/charset.svg"); +} + +.ic_s_attention { + background-image: url("../img/s_attention.png"); +} + +.ic_s_cancel { + background-image: url("../img/s_cancel.png"); +} + +.ic_s_cancel2 { + background-image: url("../img/s_cancel2.png"); +} + +.ic_s_cog { + background-image: url("../img/gear.svg"); +} + +.ic_s_collapseall { + background-image: url("../img/s_collapseall.png"); + background-position: center; +} + +.ic_s_desc { + background-image: url("../img/sort-desc.svg"); +} + +.ic_s_error { + background-image: url("../img/error.svg"); +} + +.ic_s_host { + background-image: url("../img/host.svg"); +} + +.ic_s_info { + background-image: url("../img/s_info.png"); +} + +.ic_s_lang { + background-image: url("../img/language.svg"); +} + +.ic_s_link { + background-image: url("../img/link.svg"); +} + +.ic_s_lock { + background-image: url("../img/lock.svg"); +} + +.ic_s_unlock { + background-image: url("../img/lock-open.svg"); +} + +.ic_s_loggoff { + background-image: url("../img/sign-out.svg"); +} + +.ic_s_notice { + background-image: url("../img/notice.svg"); +} + +.ic_s_okay { + background-image: url("../img/check.svg"); +} + +.ic_s_passwd { + background-image: url("../img/password.svg"); +} + +.ic_s_process { + background-image: url("../img/s_process.png"); +} + +.ic_s_really { + background-image: url("../img/s_really.png"); + width: 11px; + height: 11px; +} + +.ic_s_reload { + background-image: url("../img/reload.svg"); +} + +.ic_s_replication { + background-image: url("../img/replication.svg"); +} + +.ic_s_rights { + background-image: url("../img/user-props.svg"); +} + +.ic_s_sortable { + background-image: url("../img/s_sortable.png"); +} + +.ic_s_status { + background-image: url("../img/server.svg"); +} + +.ic_s_success { + background-image: url("../img/success.svg"); +} + +.ic_s_sync { + background-image: url("../img/s_sync.png"); +} + +.ic_s_tbl { + background-image: url("../img/table.svg"); +} + +.ic_s_theme { + background-image: url("../img/theme.svg"); +} + +.ic_s_top { + background-image: url("../img/caret-up-stop.svg"); +} + +.ic_s_unlink { + background-image: url("../img/link-broken.svg"); +} + +.ic_s_vars { + background-image: url("../img/database-vars.svg"); +} + +.ic_s_views { + background-image: url("../img/s_views.png"); +} + +.ic_show { + background-image: url("../img/visibility.svg"); +} + +.ic_window-new { + background-image: url("../img/windows.svg"); +} + +.ic_ajax_clock_small { + background-image: url("../img/ajax_clock_small.gif"); +} + +.ic_s_partialtext { + background-image: url("../img/s_partialtext.png"); +} + +.ic_s_fulltext { + background-image: url("../img/s_fulltext.png"); +} + +.ic_user { + background-image: url(../img/user.svg); +} + +[data-bs-theme=dark] .ic_user { + background-image: url(../img/dark/user.svg); +} + +body { + text-align: left; + font-size: 0.875rem; +} + +@media only screen and (min-width: 768px) { + .table th.position-sticky { + top: 96px; + } +} +select#fieldsSelect, +textarea#sqlquery { + height: 20rem; +} + +.breadcrumb-navbar { + padding: 0.5rem 1.8rem; + margin-bottom: 0; + background-color: var(--bs-tertiary-bg); + border-bottom: 1px solid var(--bs-border-color); +} +.breadcrumb-navbar .breadcrumb-item { + font-size: 0.875rem; +} +.breadcrumb-navbar .breadcrumb-item + .breadcrumb-comment { + padding-left: 0.5rem; +} +.breadcrumb-navbar .breadcrumb-item .icon { + margin: 0; +} + +[data-bs-theme=dark] .breadcrumb-navbar { + background-color: var(--bs-tertiary-bg); + border-bottom: 1px solid var(--bs-border-color); +} + +@media print { + .hide { + display: none; + } + body, + table, + th, + td { + color: #000; + background-color: #fff; + } + a:link { + color: #000; + text-decoration: none; + } + img { + border: 0; + } + table, + th, + td { + border: 0.1em solid #000; + background-color: #fff; + } + table { + border-collapse: collapse; + border-spacing: 0.2em; + } + thead { + border-collapse: collapse; + border-spacing: 0.2em; + border: 0.1em solid #000; + font-weight: 900; + } + th, + td { + padding: 0.2em; + } + thead th { + font-weight: bold; + background-color: #e5e5e5; + border: 0.1em solid #000; + } + #page_content { + position: absolute; + left: 0; + top: 0; + width: 95%; + float: none; + } + .sqlOuter { + color: black; + background-color: #000; + } + .cDrop, + .cEdit, + .cList, + .cCpy, + .cPointer { + display: none; + } + table tbody:first-of-type tr:nth-child(odd) { + background: #fff; + } + table tbody:first-of-type tr:nth-child(odd) th { + background: #fff; + } + table tbody:first-of-type tr:nth-child(even) { + background: #dfdfdf; + } + table tbody:first-of-type tr:nth-child(even) th { + background: #dfdfdf; + } + .column_attribute { + font-size: 100%; + } +} +body { + background: rgb(97%, 97%, 97%); + color: #212529; + font-size: 0.875rem; +} + +[data-bs-theme=dark] body { + background: rgb(1.8039215686%, 1.8039215686%, 1.8039215686%); + color: #ced4da; +} + +.active .pr-check { + display: block !important; +} + +.icon { + margin: 0; + padding: 0 !important; + width: 16px; + height: 16px; + background-size: contain; + vertical-align: middle; +} + +.icon_fulltext { + width: 50px; + height: 19px; +} + +.ic_asc_order { + background-image: url("../img/asc_order.png"); +} + +.ic_b_bookmark { + background-image: url("../img/b_bookmark.png"); +} + +.ic_b_browse { + background-image: url("../img/b_browse.png"); +} + +.ic_b_calendar { + background-image: url("../img/b_calendar.png"); +} + +.ic_b_chart { + background-image: url("../img/b_chart.png"); +} + +.ic_b_close { + background-image: url("../img/b_close.png"); +} + +.ic_b_column_add { + background-image: url("../img/b_column_add.png"); +} + +.ic_b_comment { + background-image: url("../img/b_comment.png"); +} + +.ic_b_dbstatistics { + background-image: url("../img/b_dbstatistics.png"); +} + +.ic_b_deltbl { + background-image: url("../img/b_deltbl.png"); +} + +.ic_b_docs { + background-image: url("../img/b_docs.png"); +} + +.ic_b_docsql { + background-image: url("../img/b_docsql.png"); +} + +.ic_b_drop { + background-image: url("../img/b_drop.png"); +} + +.ic_b_edit { + background-image: url("../img/b_edit.png"); +} + +.ic_b_empty { + background-image: url("../img/b_empty.png"); +} + +.ic_b_engine { + background-image: url("../img/b_engine.png"); +} + +.ic_b_event_add { + background-image: url("../img/b_event_add.png"); +} + +.ic_b_events { + background-image: url("../img/b_events.png"); +} + +.ic_b_export { + background-image: url("../img/b_export.png"); +} + +.ic_b_favorite { + background-image: url("../img/b_favorite.png"); +} + +.ic_b_find_replace { + background-image: url("../img/b_find_replace.png"); +} + +.ic_b_firstpage { + background-image: url("../img/b_firstpage.png"); +} + +.ic_b_ftext { + background-image: url("../img/b_ftext.png"); +} + +.ic_b_globe { + background-image: url("../img/b_globe.png"); +} + +.ic_b_group { + background-image: url("../img/b_group.png"); +} + +.ic_b_help { + background-image: url("../img/b_help.png"); +} + +.ic_b_home { + background-image: url("../img/b_home.png"); +} + +.ic_b_import { + background-image: url("../img/b_import.png"); +} + +.ic_b_index { + background-image: url("../img/b_index.png"); +} + +.ic_b_index_add { + background-image: url("../img/b_index_add.png"); +} + +.ic_b_inline_edit { + background-image: url("../img/b_inline_edit.png"); +} + +.ic_b_insrow { + background-image: url("../img/b_insrow.png"); +} + +.ic_b_lastpage { + background-image: url("../img/b_lastpage.png"); +} + +.ic_b_minus { + background-image: url("../img/b_minus.png"); +} + +.ic_b_more { + background-image: url("../img/b_more.png"); +} + +.ic_b_move { + background-image: url("../img/b_move.png"); +} + +.ic_b_newdb { + background-image: url("../img/b_newdb.png"); +} + +.ic_b_newtbl { + background-image: url("../img/b_newtbl.png"); +} + +.ic_b_nextpage { + background-image: url("../img/b_nextpage.png"); +} + +.ic_b_no_favorite { + background-image: url("../img/b_no_favorite.png"); +} + +.ic_b_pdfdoc { + background-image: url("../img/b_pdfdoc.png"); +} + +.ic_b_plugin { + background-image: url("../img/b_plugin.png"); +} + +.ic_b_plus { + background-image: url("../img/b_plus.png"); +} + +.ic_b_prevpage { + background-image: url("../img/b_prevpage.png"); +} + +.ic_b_primary { + background-image: url("../img/b_primary.png"); +} + +.ic_b_print { + background-image: url("../img/b_print.png"); +} + +.ic_b_props { + background-image: url("../img/b_props.png"); +} + +.ic_b_relations { + background-image: url("../img/b_relations.png"); +} + +.ic_b_report { + background-image: url("../img/b_report.png"); +} + +.ic_b_rename { + background-image: url("../img/b_rename.png"); +} + +.ic_b_routine_add { + background-image: url("../img/b_routine_add.png"); +} + +.ic_b_routines { + background-image: url("../img/b_routines.png"); +} + +.ic_b_save { + background-image: url("../img/b_save.png"); +} + +.ic_b_saveimage { + background-image: url("../img/b_saveimage.png"); +} + +.ic_b_sbrowse { + background-image: url("../img/b_sbrowse.png"); +} + +.ic_b_sdb { + background-image: url("../img/b_sdb.png"); + width: 10px; + height: 10px; +} + +.ic_b_search { + background-image: url("../img/b_search.png"); +} + +.ic_b_select { + background-image: url("../img/b_select.png"); +} + +.ic_b_snewtbl { + background-image: url("../img/b_snewtbl.png"); +} + +.ic_b_spatial { + background-image: url("../img/b_spatial.png"); +} + +.ic_b_sql { + background-image: url("../img/b_sql.png"); +} + +.ic_b_sqldoc { + background-image: url("../img/b_sqldoc.png"); +} + +.ic_b_sqlhelp { + background-image: url("../img/b_sqlhelp.png"); +} + +.ic_b_table_add { + background-image: url("../img/b_table_add.png"); +} + +.ic_b_tblanalyse { + background-image: url("../img/b_tblanalyse.png"); +} + +.ic_b_tblexport { + background-image: url("../img/b_tblexport.png"); +} + +.ic_b_tblimport { + background-image: url("../img/b_tblimport.png"); +} + +.ic_b_tblops { + background-image: url("../img/b_tblops.png"); +} + +.ic_b_tbloptimize { + background-image: url("../img/b_tbloptimize.png"); +} + +.ic_b_tipp { + background-image: url("../img/b_tipp.png"); +} + +.ic_b_trigger_add { + background-image: url("../img/b_trigger_add.png"); +} + +.ic_b_triggers { + background-image: url("../img/b_triggers.png"); +} + +.ic_b_undo { + background-image: url("../img/b_undo.png"); +} + +.ic_b_unique { + background-image: url("../img/b_unique.png"); +} + +.ic_b_usradd { + background-image: url("../img/b_usradd.png"); +} + +.ic_b_usrcheck { + background-image: url("../img/b_usrcheck.png"); +} + +.ic_b_usrdrop { + background-image: url("../img/b_usrdrop.png"); +} + +.ic_b_usredit { + background-image: url("../img/b_usredit.png"); +} + +.ic_b_usrlist { + background-image: url("../img/b_usrlist.png"); +} + +.ic_b_versions { + background-image: url("../img/b_versions.png"); +} + +.ic_b_view { + background-image: url("../img/b_view.png"); +} + +.ic_b_view_add { + background-image: url("../img/b_view_add.png"); +} + +.ic_b_views { + background-image: url("../img/b_views.png"); +} + +.ic_b_left { + background-image: url("../img/b_left.png"); +} + +.ic_b_right { + background-image: url("../img/b_right.png"); +} + +.ic_bd_browse { + background-image: url("../img/bd_browse.png"); +} + +.ic_bd_deltbl { + background-image: url("../img/bd_deltbl.png"); +} + +.ic_bd_drop { + background-image: url("../img/bd_drop.png"); +} + +.ic_bd_edit { + background-image: url("../img/bd_edit.png"); +} + +.ic_bd_empty { + background-image: url("../img/bd_empty.png"); +} + +.ic_bd_export { + background-image: url("../img/bd_export.png"); +} + +.ic_bd_firstpage { + background-image: url("../img/bd_firstpage.png"); +} + +.ic_bd_ftext { + background-image: url("../img/bd_ftext.png"); +} + +.ic_bd_index { + background-image: url("../img/bd_index.png"); +} + +.ic_bd_insrow { + background-image: url("../img/bd_insrow.png"); +} + +.ic_bd_lastpage { + background-image: url("../img/bd_lastpage.png"); +} + +.ic_bd_nextpage { + background-image: url("../img/bd_nextpage.png"); +} + +.ic_bd_prevpage { + background-image: url("../img/bd_prevpage.png"); +} + +.ic_bd_primary { + background-image: url("../img/bd_primary.png"); +} + +.ic_bd_routine_add { + background-image: url("../img/bd_routine_add.png"); +} + +.ic_bd_sbrowse { + background-image: url("../img/bd_sbrowse.png"); +} + +.ic_bd_select { + background-image: url("../img/bd_select.png"); +} + +.ic_bd_spatial { + background-image: url("../img/bd_spatial.png"); +} + +.ic_bd_unique { + background-image: url("../img/bd_unique.png"); +} + +.ic_centralColumns { + background-image: url("../img/centralColumns.png"); +} + +.ic_centralColumns_add { + background-image: url("../img/centralColumns_add.png"); +} + +.ic_centralColumns_delete { + background-image: url("../img/centralColumns_delete.png"); +} + +.ic_col_drop { + background-image: url("../img/col_drop.png"); +} + +.ic_console { + background-image: url("../img/console.png"); +} + +.ic_database { + background-image: url("../img/database.png"); +} + +.ic_eye { + background-image: url("../img/eye.png"); +} + +.ic_eye_grey { + background-image: url("../img/eye_grey.png"); +} + +.ic_hide { + background-image: url("../img/hide.png"); +} + +.ic_item { + background-image: url("../img/item.png"); + width: 9px; + height: 9px; +} + +.ic_lightbulb { + background-image: url("../img/lightbulb.png"); +} + +.ic_lightbulb_off { + background-image: url("../img/lightbulb_off.png"); +} + +.ic_more { + background-image: url("../img/more.png"); + width: 13px; +} + +.ic_new_data { + background-image: url("../img/new_data.png"); +} + +.ic_new_data_hovered { + background-image: url("../img/new_data_hovered.png"); +} + +.ic_new_data_selected { + background-image: url("../img/new_data_selected.png"); +} + +.ic_new_data_selected_hovered { + background-image: url("../img/new_data_selected_hovered.png"); +} + +.ic_new_struct { + background-image: url("../img/new_struct.png"); +} + +.ic_new_struct_hovered { + background-image: url("../img/new_struct_hovered.png"); +} + +.ic_new_struct_selected { + background-image: url("../img/new_struct_selected.png"); +} + +.ic_new_struct_selected_hovered { + background-image: url("../img/new_struct_selected_hovered.png"); +} + +.ic_normalize { + background-image: url("../img/normalize.png"); +} + +.ic_pause { + background-image: url("../img/pause.png"); +} + +.ic_php_sym { + background-image: url("../img/php_sym.png"); +} + +.ic_play { + background-image: url("../img/play.png"); +} + +.ic_s_asc { + background-image: url("../img/s_asc.png"); +} + +.ic_s_asci { + background-image: url("../img/s_asci.png"); +} + +.ic_s_attention { + background-image: url("../img/s_attention.png"); +} + +.ic_s_cancel { + background-image: url("../img/s_cancel.png"); +} + +.ic_s_cancel2 { + background-image: url("../img/s_cancel2.png"); +} + +.ic_s_cog { + background-image: url("../img/s_cog.png"); +} + +.ic_s_db { + background-image: url("../img/s_db.png"); +} + +.ic_s_desc { + background-image: url("../img/s_desc.png"); +} + +.ic_s_error { + background-image: url("../img/s_error.png"); +} + +.ic_s_host { + background-image: url("../img/s_host.png"); +} + +.ic_s_info { + background-image: url("../img/s_info.png"); +} + +.ic_s_lang { + background-image: url("../img/s_lang.png"); +} + +.ic_s_link { + background-image: url("../img/s_link.png"); +} + +.ic_s_lock { + background-image: url("../img/s_lock.png"); +} + +.ic_s_loggoff { + background-image: url("../img/s_loggoff.png"); +} + +.ic_s_notice { + background-image: url("../img/s_notice.png"); +} + +.ic_s_okay { + background-image: url("../img/s_okay.png"); +} + +.ic_s_passwd { + background-image: url("../img/s_passwd.png"); +} + +.ic_s_process { + background-image: url("../img/s_process.png"); +} + +.ic_s_really { + background-image: url("../img/s_really.png"); + width: 11px; + height: 11px; +} + +.ic_s_reload { + background-image: url("../img/s_reload.png"); +} + +.ic_s_replication { + background-image: url("../img/s_replication.png"); +} + +.ic_s_rights { + background-image: url("../img/s_rights.png"); +} + +.ic_s_sortable { + background-image: url("../img/s_sortable.png"); +} + +.ic_s_status { + background-image: url("../img/s_status.png"); +} + +.ic_s_success { + background-image: url("../img/s_success.png"); +} + +.ic_s_sync { + background-image: url("../img/s_sync.png"); +} + +.ic_s_tbl { + background-image: url("../img/s_tbl.png"); +} + +.ic_s_theme { + background-image: url("../img/s_theme.png"); +} + +.ic_s_top { + background-image: url("../img/s_top.png"); +} + +.ic_s_unlink { + background-image: url("../img/s_unlink.png"); +} + +.ic_s_vars { + background-image: url("../img/s_vars.png"); +} + +.ic_s_views { + background-image: url("../img/s_views.png"); +} + +.ic_show { + background-image: url("../img/show.png"); +} + +.ic_window-new { + background-image: url("../img/window-new.png"); +} + +.ic_ajax_clock_small { + background-image: url("../img/loading.svg"); +} + +.ic_s_partialtext { + background-image: url("../img/s_partialtext.png"); +} + +.ic_s_fulltext { + background-image: url("../img/s_fulltext.png"); +} + +/*# sourceMappingURL=theme.css.map */ diff --git a/pirulug/css/theme.css.map b/pirulug/css/theme.css.map new file mode 100644 index 0000000000..72c0037ed0 --- /dev/null +++ b/pirulug/css/theme.css.map @@ -0,0 +1 @@ +{"version":3,"sourceRoot":"","sources":["../node_modules/bootstrap/scss/mixins/_banner.scss","../node_modules/bootstrap/scss/_root.scss","../node_modules/bootstrap/scss/vendor/_rfs.scss","../node_modules/bootstrap/scss/mixins/_color-mode.scss","../node_modules/bootstrap/scss/_reboot.scss","../scss/1-variables/_variables.scss","../node_modules/bootstrap/scss/_variables.scss","../node_modules/bootstrap/scss/mixins/_border-radius.scss","../node_modules/bootstrap/scss/_type.scss","../node_modules/bootstrap/scss/mixins/_lists.scss","../node_modules/bootstrap/scss/_images.scss","../node_modules/bootstrap/scss/mixins/_image.scss","../node_modules/bootstrap/scss/_containers.scss","../node_modules/bootstrap/scss/mixins/_container.scss","../node_modules/bootstrap/scss/mixins/_breakpoints.scss","../node_modules/bootstrap/scss/_grid.scss","../node_modules/bootstrap/scss/mixins/_grid.scss","../node_modules/bootstrap/scss/_tables.scss","../node_modules/bootstrap/scss/mixins/_table-variants.scss","../node_modules/bootstrap/scss/forms/_labels.scss","../node_modules/bootstrap/scss/forms/_form-text.scss","../node_modules/bootstrap/scss/forms/_form-control.scss","../node_modules/bootstrap/scss/mixins/_transition.scss","../node_modules/bootstrap/scss/mixins/_gradients.scss","../node_modules/bootstrap/scss/forms/_form-select.scss","../node_modules/bootstrap/scss/forms/_form-check.scss","../node_modules/bootstrap/scss/forms/_form-range.scss","../node_modules/bootstrap/scss/forms/_floating-labels.scss","../node_modules/bootstrap/scss/forms/_input-group.scss","../node_modules/bootstrap/scss/mixins/_forms.scss","../node_modules/bootstrap/scss/_buttons.scss","../node_modules/bootstrap/scss/mixins/_buttons.scss","../node_modules/bootstrap/scss/_transitions.scss","../node_modules/bootstrap/scss/_dropdown.scss","../node_modules/bootstrap/scss/mixins/_caret.scss","../node_modules/bootstrap/scss/_button-group.scss","../node_modules/bootstrap/scss/_nav.scss","../node_modules/bootstrap/scss/_navbar.scss","../node_modules/bootstrap/scss/_card.scss","../node_modules/bootstrap/scss/_accordion.scss","../node_modules/bootstrap/scss/_breadcrumb.scss","../node_modules/bootstrap/scss/_pagination.scss","../node_modules/bootstrap/scss/mixins/_pagination.scss","../node_modules/bootstrap/scss/_badge.scss","../node_modules/bootstrap/scss/_alert.scss","../node_modules/bootstrap/scss/_progress.scss","../node_modules/bootstrap/scss/_list-group.scss","../node_modules/bootstrap/scss/_close.scss","../node_modules/bootstrap/scss/_toasts.scss","../node_modules/bootstrap/scss/_modal.scss","../node_modules/bootstrap/scss/mixins/_backdrop.scss","../node_modules/bootstrap/scss/_tooltip.scss","../node_modules/bootstrap/scss/mixins/_reset-text.scss","../node_modules/bootstrap/scss/_popover.scss","../node_modules/bootstrap/scss/_carousel.scss","../node_modules/bootstrap/scss/mixins/_clearfix.scss","../node_modules/bootstrap/scss/_spinners.scss","../node_modules/bootstrap/scss/_offcanvas.scss","../node_modules/bootstrap/scss/_placeholders.scss","../node_modules/bootstrap/scss/helpers/_color-bg.scss","../node_modules/bootstrap/scss/helpers/_colored-links.scss","../node_modules/bootstrap/scss/helpers/_focus-ring.scss","../node_modules/bootstrap/scss/helpers/_icon-link.scss","../node_modules/bootstrap/scss/helpers/_ratio.scss","../node_modules/bootstrap/scss/helpers/_position.scss","../node_modules/bootstrap/scss/helpers/_stacks.scss","../node_modules/bootstrap/scss/helpers/_visually-hidden.scss","../node_modules/bootstrap/scss/mixins/_visually-hidden.scss","../node_modules/bootstrap/scss/helpers/_stretched-link.scss","../node_modules/bootstrap/scss/helpers/_text-truncation.scss","../node_modules/bootstrap/scss/mixins/_text-truncate.scss","../node_modules/bootstrap/scss/helpers/_vr.scss","../node_modules/bootstrap/scss/mixins/_utilities.scss","../node_modules/bootstrap/scss/utilities/_api.scss","../scss/3-components/_buttons.scss","../scss/2-mixins/_button.scss","../scss/3-components/_card.scss","../scss/3-components/_dropdown.scss","../scss/4-layout/_common.scss","../scss/1-variables/_variables-dark.scss","../scss/4-layout/_enum-editor.scss","../scss/4-layout/_gis.scss","../scss/4-layout/_navigation.scss","../scss/4-layout/_designer.scss","../scss/4-layout/_codemirror.scss","../scss/4-layout/_jqplot.scss","../scss/4-layout/_icons.scss","../scss/4-layout/_reboot.scss","../scss/4-layout/_tables.scss","../scss/4-layout/_forms.scss","../scss/4-layout/_breadcrumb.scss","../scss/4-layout/_print.scss","../scss/7-hacks/_hack.scss","../scss/7-hacks/_icons.scss"],"names":[],"mappings":";AACE;AAAA;AAAA;AAAA;AAAA;ACDF;AAAA;EASI;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAIA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAIA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAIA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAIA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAIA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAIA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAGF;EACA;EAMA;EACA;EACA;EAOA;EC2OI,qBALI;EDpOR;EACA;EAKA;EACA;EACA;EACA;EAEA;EACA;EAEA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EAGA;EAEA;EACA;EACA;EAEA;EACA;EAGE;EAGF;EACA;EACA;EAGA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EAGA;EACA;EACA;EACA;EAIA;EACA;EACA;EAIA;EACA;EACA;EACA;;;AEhHE;EFsHA;EAGA;EACA;EACA;EACA;EAEA;EACA;EAEA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EAGE;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAIA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAIA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAGF;EAEA;EACA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EAEA;EACA;EACA;EACA;;;AGxKJ;AAAA;AAAA;EAGE;;;AAeE;EANJ;IAOM;;;;AAcN;EACE;EACA;EF6OI,WALI;EEtOR;EACA;EACA;EACA;EACA;EACA;EACA;;;AASF;EACE;EACA,OCukBS;EDtkBT;EACA;EACA,SCwkBW;;;AD9jBb;EACE;EACA,eC8gBuB;ED3gBvB,aC8gBqB;ED7gBrB,aC8gBqB;ED7gBrB;;;AAGF;EFuMQ;;AA5JJ;EE3CJ;IF8MQ;;;;AEzMR;EFkMQ;;AA5JJ;EEtCJ;IFyMQ;;;;AEpMR;EF6LQ;;AA5JJ;EEjCJ;IFoMQ;;;;AE/LR;EFoLM,WALI;;;AE1KV;EF+KM,WALI;;;AErKV;EF0KM,WALI;;;AE1JV;EACE;EACA,eEwV0B;;;AF9U5B;EACE;EACA;EACA;;;AAMF;EACE;EACA;EACA;;;AAMF;AAAA;EAEE;;;AAGF;AAAA;AAAA;EAGE;EACA;;;AAGF;AAAA;AAAA;AAAA;EAIE;;;AAGF;EACE,aCmZiB;;;AD9YnB;EACE;EACA;;;AAMF;EACE;;;AAQF;AAAA;EAEE,aC4XmB;;;ADpXrB;EF6EM,WALI;;;AEjEV;EACE,SCgca;ED/bb;EACA;;;AASF;AAAA;EAEE;EFwDI,WALI;EEjDR;EACA;;;AAGF;EAAM;;;AACN;EAAM;;;AAKN;EACE;EACA,iBCgPgB;;AD9OhB;EACE;EACA,iBC6OoB;;;ADnOtB;EAEE;EACA;;;AAOJ;AAAA;AAAA;AAAA;EAIE,aCsSiB;EHxRb,WALI;;;AEDV;EACE;EACA;EACA;EACA;EFEI,WALI;;AEQR;EFHI,WALI;EEUN;EACA;;;AAIJ;EFVM,WALI;EEiBR;EACA;;AAGA;EACE;;;AAIJ;EACE;EFtBI,WALI;EE6BR,OCidU;EDhdV,kBCidO;EEtvBL;;AHwSF;EACE;EF7BE,WALI;;;AE6CV;EACE;;;AAMF;AAAA;EAEE;;;AAQF;EACE;EACA;;;AAGF;EACE,aCiUqB;EDhUrB,gBCgUqB;ED/TrB,OCiWoB;EDhWpB;;;AAOF;EAEE;EACA;;;AAGF;AAAA;AAAA;AAAA;AAAA;AAAA;EAME;EACA;EACA;;;AAQF;EACE;;;AAMF;EAEE;;;AAQF;EACE;;;AAKF;AAAA;AAAA;AAAA;AAAA;EAKE;EACA;EF5HI,WALI;EEmIR;;;AAIF;AAAA;EAEE;;;AAKF;EACE;;;AAGF;EAGE;;AAGA;EACE;;;AAOJ;EACE;;;AAQF;AAAA;AAAA;AAAA;EAIE;;AAGE;AAAA;AAAA;AAAA;EACE;;;AAON;EACE;EACA;;;AAKF;EACE;;;AAUF;EACE;EACA;EACA;EACA;;;AAQF;EACE;EACA;EACA;EACA,eC8JqB;ED5JrB;EFnNM;;AA5JJ;EEyWJ;IFtMQ;;;AE+MN;EACE;;;AAOJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAOE;;;AAGF;EACE;;;AASF;EACE;EACA;;AAGA;EACE;EACA;;;AASJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAWA;EACE;;;AAKF;EACE;;;AAOF;EACE;EACA;;;AAKF;EACE;;;AAKF;EACE;;;AAOF;EACE;EACA;;;AAQF;EACE;;;AAQF;EACE;;;AI3kBF;ENmQM,WALI;EM5PR,aH8lBiB;;;AGzlBjB;EAGE,aHglBkB;EG/kBlB,aH+jBmB;EHnUf;;AA5JJ;EMpGF;INuQM;;;;AMvQN;EAGE,aHglBkB;EG/kBlB,aH+jBmB;EHnUf;;AA5JJ;EMpGF;INuQM;;;;AMvQN;EAGE,aHglBkB;EG/kBlB,aH+jBmB;EHnUf;;AA5JJ;EMpGF;INuQM;;;;AMvQN;EAGE,aHglBkB;EG/kBlB,aH+jBmB;EHnUf;;AA5JJ;EMpGF;INuQM;;;;AMvQN;EAGE,aHglBkB;EG/kBlB,aH+jBmB;EHnUf;;AA5JJ;EMpGF;INuQM;;;;AMvQN;EAGE,aHglBkB;EG/kBlB,aH+jBmB;EHnUf;;AA5JJ;EMpGF;INuQM;;;;AM/OR;ECvDE;EACA;;;AD2DF;EC5DE;EACA;;;AD8DF;EACE;;AAEA;EACE,cHilBkB;;;AGvkBtB;EN8MM,WALI;EMvMR;;;AAIF;EACE,eHqVO;EH9IH,WALI;;AM/LR;EACE;;;AAIJ;EACE;EACA,eH2UO;EH9IH,WALI;EMtLR,OH5FS;;AG8FT;EACE;;;AEhGJ;ECIE;EAGA;;;ADDF;EACE,SJ+jDkC;EI9jDlC,kBJ+jDkC;EI9jDlC;EHGE;EIRF;EAGA;;;ADcF;EAEE;;;AAGF;EACE;EACA;;;AAGF;ERyPM,WALI;EQlPR,OJkjDkC;;;AMplDlC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ECHA;EACA;EACA;EACA;EACA;EACA;EACA;;;ACsDE;EF5CE;IACE,WNkee;;;AQvbnB;EF5CE;IACE,WNkee;;;AQvbnB;EF5CE;IACE,WNkee;;;AQvbnB;EF5CE;IACE,WNkee;;;AQvbnB;EF5CE;IACE,WNkee;;;ASlfvB;EAEI;EAAA;EAAA;EAAA;EAAA;EAAA;;;AAKF;ECNA;EACA;EACA;EACA;EAEA;EACA;EACA;;ADEE;ECOF;EACA;EACA;EACA;EACA;EACA;;;AA+CI;EACE;;;AAGF;EApCJ;EACA;;;AAcA;EACE;EACA;;;AAFF;EACE;EACA;;;AAFF;EACE;EACA;;;AAFF;EACE;EACA;;;AAFF;EACE;EACA;;;AAFF;EACE;EACA;;;AA+BE;EAhDJ;EACA;;;AAqDQ;EAhEN;EACA;;;AA+DM;EAhEN;EACA;;;AA+DM;EAhEN;EACA;;;AA+DM;EAhEN;EACA;;;AA+DM;EAhEN;EACA;;;AA+DM;EAhEN;EACA;;;AA+DM;EAhEN;EACA;;;AA+DM;EAhEN;EACA;;;AA+DM;EAhEN;EACA;;;AA+DM;EAhEN;EACA;;;AA+DM;EAhEN;EACA;;;AA+DM;EAhEN;EACA;;;AAuEQ;EAxDV;;;AAwDU;EAxDV;;;AAwDU;EAxDV;;;AAwDU;EAxDV;;;AAwDU;EAxDV;;;AAwDU;EAxDV;;;AAwDU;EAxDV;;;AAwDU;EAxDV;;;AAwDU;EAxDV;;;AAwDU;EAxDV;;;AAwDU;EAxDV;;;AAmEM;AAAA;EAEE;;;AAGF;AAAA;EAEE;;;AAPF;AAAA;EAEE;;;AAGF;AAAA;EAEE;;;AAPF;AAAA;EAEE;;;AAGF;AAAA;EAEE;;;AAPF;AAAA;EAEE;;;AAGF;AAAA;EAEE;;;AAPF;AAAA;EAEE;;;AAGF;AAAA;EAEE;;;AAPF;AAAA;EAEE;;;AAGF;AAAA;EAEE;;;AF1DN;EEUE;IACE;;EAGF;IApCJ;IACA;;EAcA;IACE;IACA;;EAFF;IACE;IACA;;EAFF;IACE;IACA;;EAFF;IACE;IACA;;EAFF;IACE;IACA;;EAFF;IACE;IACA;;EA+BE;IAhDJ;IACA;;EAqDQ;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EAuEQ;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAmEM;AAAA;IAEE;;EAGF;AAAA;IAEE;;EAPF;AAAA;IAEE;;EAGF;AAAA;IAEE;;EAPF;AAAA;IAEE;;EAGF;AAAA;IAEE;;EAPF;AAAA;IAEE;;EAGF;AAAA;IAEE;;EAPF;AAAA;IAEE;;EAGF;AAAA;IAEE;;EAPF;AAAA;IAEE;;EAGF;AAAA;IAEE;;;AF1DN;EEUE;IACE;;EAGF;IApCJ;IACA;;EAcA;IACE;IACA;;EAFF;IACE;IACA;;EAFF;IACE;IACA;;EAFF;IACE;IACA;;EAFF;IACE;IACA;;EAFF;IACE;IACA;;EA+BE;IAhDJ;IACA;;EAqDQ;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EAuEQ;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAmEM;AAAA;IAEE;;EAGF;AAAA;IAEE;;EAPF;AAAA;IAEE;;EAGF;AAAA;IAEE;;EAPF;AAAA;IAEE;;EAGF;AAAA;IAEE;;EAPF;AAAA;IAEE;;EAGF;AAAA;IAEE;;EAPF;AAAA;IAEE;;EAGF;AAAA;IAEE;;EAPF;AAAA;IAEE;;EAGF;AAAA;IAEE;;;AF1DN;EEUE;IACE;;EAGF;IApCJ;IACA;;EAcA;IACE;IACA;;EAFF;IACE;IACA;;EAFF;IACE;IACA;;EAFF;IACE;IACA;;EAFF;IACE;IACA;;EAFF;IACE;IACA;;EA+BE;IAhDJ;IACA;;EAqDQ;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EAuEQ;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAmEM;AAAA;IAEE;;EAGF;AAAA;IAEE;;EAPF;AAAA;IAEE;;EAGF;AAAA;IAEE;;EAPF;AAAA;IAEE;;EAGF;AAAA;IAEE;;EAPF;AAAA;IAEE;;EAGF;AAAA;IAEE;;EAPF;AAAA;IAEE;;EAGF;AAAA;IAEE;;EAPF;AAAA;IAEE;;EAGF;AAAA;IAEE;;;AF1DN;EEUE;IACE;;EAGF;IApCJ;IACA;;EAcA;IACE;IACA;;EAFF;IACE;IACA;;EAFF;IACE;IACA;;EAFF;IACE;IACA;;EAFF;IACE;IACA;;EAFF;IACE;IACA;;EA+BE;IAhDJ;IACA;;EAqDQ;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EAuEQ;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAmEM;AAAA;IAEE;;EAGF;AAAA;IAEE;;EAPF;AAAA;IAEE;;EAGF;AAAA;IAEE;;EAPF;AAAA;IAEE;;EAGF;AAAA;IAEE;;EAPF;AAAA;IAEE;;EAGF;AAAA;IAEE;;EAPF;AAAA;IAEE;;EAGF;AAAA;IAEE;;EAPF;AAAA;IAEE;;EAGF;AAAA;IAEE;;;AF1DN;EEUE;IACE;;EAGF;IApCJ;IACA;;EAcA;IACE;IACA;;EAFF;IACE;IACA;;EAFF;IACE;IACA;;EAFF;IACE;IACA;;EAFF;IACE;IACA;;EAFF;IACE;IACA;;EA+BE;IAhDJ;IACA;;EAqDQ;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EA+DM;IAhEN;IACA;;EAuEQ;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAwDU;IAxDV;;EAmEM;AAAA;IAEE;;EAGF;AAAA;IAEE;;EAPF;AAAA;IAEE;;EAGF;AAAA;IAEE;;EAPF;AAAA;IAEE;;EAGF;AAAA;IAEE;;EAPF;AAAA;IAEE;;EAGF;AAAA;IAEE;;EAPF;AAAA;IAEE;;EAGF;AAAA;IAEE;;EAPF;AAAA;IAEE;;EAGF;AAAA;IAEE;;;ACrHV;EAEE;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA,eZsZO;EYrZP,gBZ4oB0B;EY3oB1B;;AAOA;EACE;EAEA;EACA;EACA,qBZopBiB;EYnpBjB;;AAGF;EACE;;AAGF;EACE;;;AAIJ;EACE;;;AAOF;EACE;;;AAUA;EACE;;;AAeF;EACE;;AAGA;EACE;;;AAOJ;EACE;;AAGF;EACE;;;AAUF;EACE;EACA;;;AAMF;EACE;EACA;;;AAQJ;EACE;EACA;;;AAQA;EACE;EACA;;;AC5IF;EAOE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;;;AAlBF;EAOE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;;;AAlBF;EAOE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;;;AAlBF;EAOE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;;;AAlBF;EAOE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;;;AAlBF;EAOE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;;;AAlBF;EAOE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;;;AAlBF;EAOE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;;;ADiJA;EACE;EACA;;;AH3FF;EGyFA;IACE;IACA;;;AH3FF;EGyFA;IACE;IACA;;;AH3FF;EGyFA;IACE;IACA;;;AH3FF;EGyFA;IACE;IACA;;;AH3FF;EGyFA;IACE;IACA;;;AEnKN;EACE,ebu2BsC;;;Aa91BxC;EACE;EACA;EACA;EjB8QI,WALI;EiBrQR,adqjBiB;;;AcjjBnB;EACE;EACA;EjBoQI,WALI;;;AiB3PV;EACE;EACA;EjB8PI,WALI;;;AkBtRV;EACE,Yd+1BsC;EJrkBlC,WALI;EkBjRR,Od+1BsC;;;Aep2BxC;EACE;EACA;EACA;EnBwRI,WALI;EmBhRR,ahBwjBmB;EgBvjBnB,ahB+jBiB;EgB9jBjB,Of43BsC;Ee33BtC;EACA,kBfq3BsC;Eep3BtC;EACA;EdGE;EeHE,YDMJ;;ACFI;EDhBN;ICiBQ;;;ADGN;EACE;;AAEA;EACE;;AAKJ;EACE,Ofs2BoC;Eer2BpC,kBfg2BoC;Ee/1BpC,cf82BoC;Ee72BpC;EAKE,YfkhBkB;;Ae9gBtB;EAME;EAMA;EAKA;;AAKF;EACE;EACA;;AAIF;EACE,Of40BoC;Ee10BpC;;AAQF;EAEE,kBf8yBoC;Ee3yBpC;;AAIF;EACE;EACA;EACA,mBforB0B;EenrB1B,OfsyBoC;EiBp4BtC,kBjBqiCgC;Eer8B9B;EACA;EACA;EACA;EACA,yBfgsB0B;Ee/rB1B;ECzFE,YD0FF;;ACtFE;ED0EJ;ICzEM;;;ADwFN;EACE,kBf47B8B;;;Aen7BlC;EACE;EACA;EACA;EACA;EACA,ahB8ciB;EgB7cjB,Of2xBsC;Ee1xBtC;EACA;EACA;;AAEA;EACE;;AAGF;EAEE;EACA;;;AAWJ;EACE,Yf4wBsC;Ee3wBtC;EnByII,WALI;EKvQN;;AcuIF;EACE;EACA;EACA,mBfooB0B;;;AehoB9B;EACE,YfgwBsC;Ee/vBtC;EnB4HI,WALI;EKvQN;;AcoJF;EACE;EACA;EACA,mBf2nB0B;;;AennB5B;EACE,Yf6uBoC;;Ae1uBtC;EACE,Yf0uBoC;;AevuBtC;EACE,YfuuBoC;;;AeluBxC;EACE,OfquBsC;EepuBtC,Qf8tBsC;Ee7tBtC,SfilB4B;;Ae/kB5B;EACE;;AAGF;EACE;EdvLA;;Ac2LF;EACE;Ed5LA;;AcgMF;EAAoB,Qf8sBkB;;Ae7sBtC;EAAoB,Qf8sBkB;;;AkB75BxC;EACE;EAEA;EACA;EACA;EtBqRI,WALI;EsB7QR,anBqjBmB;EmBpjBnB,anB4jBiB;EmB3jBjB,OlBy3BsC;EkBx3BtC;EACA,kBlBk3BsC;EkBj3BtC;EACA;EACA,qBlB+9BkC;EkB99BlC,iBlB+9BkC;EkB99BlC;EjBHE;EeHE,YESJ;;AFLI;EEfN;IFgBQ;;;AEMN;EACE,clBs3BoC;EkBr3BpC;EAKE,YlBi+B4B;;AkB79BhC;EAEE,elB6uB0B;EkB5uB1B;;AAGF;EAEE,kBlBu1BoC;;AkBl1BtC;EACE;EACA;;;AAIJ;EACE,alBsuB4B;EkBruB5B,gBlBquB4B;EkBpuB5B,clBquB4B;EJlgBxB,WALI;EKvQN;;;AiB8CJ;EACE,alBkuB4B;EkBjuB5B,gBlBiuB4B;EkBhuB5B,clBiuB4B;EJtgBxB,WALI;EKvQN;;;AiBwDA;EACE;;;ACxEN;EACE;EACA,YnBq6BwC;EmBp6BxC,cnBq6BwC;EmBp6BxC,enBq6BwC;;AmBn6BxC;EACE;EACA;;;AAIJ;EACE,enB25BwC;EmB15BxC;EACA;;AAEA;EACE;EACA;EACA;;;AAIJ;EACE;EAEA;EACA,OnB04BwC;EmBz4BxC,QnBy4BwC;EmBx4BxC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,QnB24BwC;EmB14BxC;;AAGA;ElB3BE;;AkB+BF;EAEE,enBm4BsC;;AmBh4BxC;EACE,QnB03BsC;;AmBv3BxC;EACE,cnBs1BoC;EmBr1BpC;EACA,YnB8foB;;AmB3ftB;EACE,kBpBrCG;EoBsCH,cpBtCG;;AoBwCH;EAII;;AAIJ;EAII;;AAKN;EACE,kBpB1DG;EoB2DH,cpB3DG;EoBgED;;AAIJ;EACE;EACA;EACA,SnBk2BuC;;AmB31BvC;EACE;EACA,SnBy1BqC;;;AmB30B3C;EACE,cnBo1BgC;;AmBl1BhC;EACE;EAEA,OnB80B8B;EmB70B9B;EACA;EACA;ElBjHA;EeHE,YGsHF;;AHlHE;EG0GJ;IHzGM;;;AGmHJ;EACE;;AAGF;EACE,qBnB60B4B;EmBx0B1B;;AAKN;EACE,enBwzB8B;EmBvzB9B;;AAEA;EACE;EACA;;;AAKN;EACE;EACA,cnBsyBgC;;;AmBnyBlC;EACE;EACA;EACA;;AAIE;EACE;EACA;EACA,SnBspBwB;;;AmB/oB1B;EACE;;;ACnLN;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAIA;EAA0B,YpB8gCa;;AoB7gCvC;EAA0B,YpB6gCa;;AoB1gCzC;EACE;;AAGF;EACE,OpB+/BuC;EoB9/BvC,QpB8/BuC;EoB7/BvC;EACA;EH1BF,kBlByBK;EqBGH,QpB6/BuC;EC1gCvC;EeHE,YImBF;;AJfE;EIMJ;IJLM;;;AIgBJ;EHjCF,kBjB8hCyC;;AoBx/BzC;EACE,OpBw+B8B;EoBv+B9B,QpBw+B8B;EoBv+B9B;EACA,QpBu+B8B;EoBt+B9B,kBpBu+B8B;EoBt+B9B;EnB7BA;;AmBkCF;EACE,OpBo+BuC;EoBn+BvC,QpBm+BuC;EoBl+BvC;EHpDF,kBlByBK;EqB6BH,QpBm+BuC;EC1gCvC;EeHE,YI6CF;;AJzCE;EIiCJ;IJhCM;;;AI0CJ;EH3DF,kBjB8hCyC;;AoB99BzC;EACE,OpB88B8B;EoB78B9B,QpB88B8B;EoB78B9B;EACA,QpB68B8B;EoB58B9B,kBpB68B8B;EoB58B9B;EnBvDA;;AmB4DF;EACE;;AAEA;EACE,kBpBg9BqC;;AoB78BvC;EACE,kBpB48BqC;;;AqBniC3C;EACE;;AAEA;AAAA;AAAA;EAGE,QrBwiCoC;EqBviCpC,YrBuiCoC;EqBtiCpC,arBuiCoC;;AqBpiCtC;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ELVE,YKWF;;ALPE;EKTJ;ILUM;;;AKSN;AAAA;EAEE;;AAEA;AAAA;EACE;;AAGF;AAAA;AAAA;EAEE,arB0gCkC;EqBzgClC,gBrB0gCkC;;AqBvgCpC;AAAA;EACE,arBqgCkC;EqBpgClC,gBrBqgCkC;;AqBjgCtC;EACE,arB+/BoC;EqB9/BpC,gBrB+/BoC;EqB9/BpC,crBguB0B;;AqBztB1B;AAAA;AAAA;AAAA;EACE,WrBy/BkC;;AqBp/BpC;EACE,WrBm/BkC;;AqB9+BpC;AAAA;EACE;EACA;EACA;EACA,QrBw+BkC;EqBv+BlC;EACA,kBrBqzBkC;ECh3BpC;;AoB+DF;EACE,kBrBkzBoC;;AqB9yBpC;EACE;;AAIJ;AAAA;EAEE,OtBtFO;;;AuBJX;EACE;EACA;EACA;EACA;EACA;;AAEA;AAAA;AAAA;EAGE;EACA;EACA;EACA;;AAIF;AAAA;AAAA;EAGE;;AAMF;EACE;EACA;;AAEA;EACE;;;AAWN;EACE;EACA;EACA;E1B8OI,WALI;E0BvOR,avB+gBmB;EuB9gBnB,avBshBiB;EuBrhBjB,OtBm1BsC;EsBl1BtC;EACA;EACA,kBtB06BsC;EsBz6BtC;ErBtCE;;;AqBgDJ;AAAA;AAAA;AAAA;AAAA;EAIE;E1BwNI,WALI;EKvQN;;;AqByDJ;AAAA;AAAA;AAAA;AAAA;EAIE;E1B+MI,WALI;EKvQN;;;AqBkEJ;AAAA;EAEE;;;AAaE;AAAA;AAAA;AAAA;ErBjEA;EACA;;AqByEA;AAAA;AAAA;AAAA;ErB1EA;EACA;;AqBsFF;EACE;ErB1EA;EACA;;AqB6EF;AAAA;ErB9EE;EACA;;;AsBxBF;EACE;EACA;EACA,YvBu0BoC;EJrkBlC,WALI;E2B1PN,OvBkjCqB;;;AuB/iCvB;EACE;EACA;EACA;EACA;EACA;EACA;EACA;E3BqPE,WALI;E2B7ON,OvBqiCqB;EuBpiCrB,kBvBoiCqB;EC/jCrB;;;AsBgCA;AAAA;AAAA;AAAA;EAEE;;;AA/CF;EAqDE,cvBuhCmB;EuBphCjB,evB81BgC;EuB71BhC;EACA;EACA;EACA;;AAGF;EACE,cvB4gCiB;EuBvgCf,YvBugCe;;;AuB5kCrB;EA+EI,evBu0BgC;EuBt0BhC;;;AAhFJ;EAuFE,cvBq/BmB;;AuBl/BjB;EAEE;EACA,evBq5B8B;EuBp5B9B;EACA;;AAIJ;EACE,cvBw+BiB;EuBn+Bf,YvBm+Be;;;AuB5kCrB;EAkHI;;;AAlHJ;EAyHE,cvBm9BmB;;AuBj9BnB;EACE,kBvBg9BiB;;AuB78BnB;EACE,YvB48BiB;;AuBz8BnB;EACE,OvBw8BiB;;;AuBn8BrB;EACE;;;AA1IF;AAAA;AAAA;AAAA;AAAA;EAoJM;;;AAhIR;EACE;EACA;EACA,YvBu0BoC;EJrkBlC,WALI;E2B1PN,OvBkjCqB;;;AuB/iCvB;EACE;EACA;EACA;EACA;EACA;EACA;EACA;E3BqPE,WALI;E2B7ON,OvBqiCqB;EuBpiCrB,kBvBoiCqB;EC/jCrB;;;AsBgCA;AAAA;AAAA;AAAA;EAEE;;;AA/CF;EAqDE,cvBuhCmB;EuBphCjB,evB81BgC;EuB71BhC;EACA;EACA;EACA;;AAGF;EACE,cvB4gCiB;EuBvgCf,YvBugCe;;;AuB5kCrB;EA+EI,evBu0BgC;EuBt0BhC;;;AAhFJ;EAuFE,cvBq/BmB;;AuBl/BjB;EAEE;EACA,evBq5B8B;EuBp5B9B;EACA;;AAIJ;EACE,cvBw+BiB;EuBn+Bf,YvBm+Be;;;AuB5kCrB;EAkHI;;;AAlHJ;EAyHE,cvBm9BmB;;AuBj9BnB;EACE,kBvBg9BiB;;AuB78BnB;EACE,YvB48BiB;;AuBz8BnB;EACE,OvBw8BiB;;;AuBn8BrB;EACE;;;AA1IF;AAAA;AAAA;AAAA;AAAA;EAsJM;;;ACxJV;EAEE;EACA;EACA;E5BuRI,oBALI;E4BhRR;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAGA;EACA;EACA;E5BsQI,WALI;E4B/PR;EACA;EACA;EACA;EAGA;EACA;EACA;EACA;EvBjBE;EgBfF,kBOkCqB;ERtBjB,YQwBJ;;ARpBI;EQhBN;IRiBQ;;;AQqBN;EACE;EACA;EACA;EACA;;AAGF;EAEE;EACA;EACA;;AAGF;EACE;EPrDF,kBOsDuB;EACrB;EACA;EAKE;;AAIJ;EACE;EACA;EAKE;;AAIJ;EAKE;EACA;EAGA;;AAGA;EAKI;;AAKN;EAKI;;AAIJ;EAGE;EACA;EACA;EAEA;EACA;;;AAYF;EC/GA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;ADkGA;EC/GA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;ADkGA;EC/GA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;ADkGA;EC/GA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;ADkGA;EC/GA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;ADkGA;EC/GA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;ADkGA;EC/GA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;ADkGA;EC/GA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AD4HA;EChHA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;ADmGA;EChHA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;ADmGA;EChHA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;ADmGA;EChHA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;ADmGA;EChHA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;ADmGA;EChHA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;ADmGA;EChHA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;ADmGA;EChHA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AD+GF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA,iBzB8SgB;;AyBzShB;EAEE,iBzBwSoB;;AyBrStB;EACE;;AAGF;EACE;;;AAWJ;ECjJE;EACA;E7B8NI,oBALI;E6BvNR;;;ADkJF;ECrJE;EACA;E7B8NI,oBALI;E6BvNR;;;ACnEF;EVgBM,YUfJ;;AVmBI;EUpBN;IVqBQ;;;AUlBN;EACE;;;AAMF;EACE;;;AAIJ;EACE;EACA;EVDI,YUEJ;;AVEI;EULN;IVMQ;;;AUDN;EACE;EACA;EVNE,YUOF;;AVHE;EUAJ;IVCM;;;;AWpBR;AAAA;AAAA;AAAA;AAAA;AAAA;EAME;;;AAGF;EACE;;ACwBE;EACE;EACA,a7BmfU;E6BlfV,gB7BifiB;E6BhfjB;EArCJ;EACA;EACA;EACA;;AA0DE;EACE;;;AD9CN;EAEE;EACA;EACA;EACA;EACA;E/BuQI,yBALI;E+BhQR;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAGA;EACA;EACA;EACA;EACA;EACA;E/B0OI,WALI;E+BnOR;EACA;EACA;EACA;EACA;EACA;E1BzCE;;A0B6CF;EACE;EACA;EACA;;;AAwBA;EACE;;AAEA;EACE;EACA;;;AAIJ;EACE;;AAEA;EACE;EACA;;;AnB1CJ;EmB4BA;IACE;;EAEA;IACE;IACA;;EAIJ;IACE;;EAEA;IACE;IACA;;;AnB1CJ;EmB4BA;IACE;;EAEA;IACE;IACA;;EAIJ;IACE;;EAEA;IACE;IACA;;;AnB1CJ;EmB4BA;IACE;;EAEA;IACE;IACA;;EAIJ;IACE;;EAEA;IACE;IACA;;;AnB1CJ;EmB4BA;IACE;;EAEA;IACE;IACA;;EAIJ;IACE;;EAEA;IACE;IACA;;;AnB1CJ;EmB4BA;IACE;;EAEA;IACE;IACA;;EAIJ;IACE;;EAEA;IACE;IACA;;;AAUN;EACE;EACA;EACA;EACA;;ACpFA;EACE;EACA,a7BmfU;E6BlfV,gB7BifiB;E6BhfjB;EA9BJ;EACA;EACA;EACA;;AAmDE;EACE;;;ADgEJ;EACE;EACA;EACA;EACA;EACA;;AClGA;EACE;EACA,a7BmfU;E6BlfV,gB7BifiB;E6BhfjB;EAvBJ;EACA;EACA;EACA;;AA4CE;EACE;;AD0EF;EACE;;;AAMJ;EACE;EACA;EACA;EACA;EACA;;ACnHA;EACE;EACA,a7BmfU;E6BlfV,gB7BifiB;E6BhfjB;;AAWA;EACE;;AAGF;EACE;EACA,c7BgeQ;E6B/dR,gB7B8de;E6B7df;EAnCN;EACA;EACA;;AAsCE;EACE;;AD2FF;EACE;;;AAON;EACE;EACA;EACA;EACA;EACA;;;AAMF;EACE;EACA;EACA;EACA;EACA,a5B+YmB;E4B9YnB;EACA;EAEA;EACA;EACA;E1BtKE;;A0ByKF;EAEE;EACA;EV3LF,kBU4LuB;;AAGvB;EAEE;EACA;EVlMF,kBUmMuB;;AAGvB;EAEE;EACA;EACA;;;AAMJ;EACE;;;AAIF;EACE;EACA;EACA;E/BmEI,WALI;E+B5DR;EACA;;;AAIF;EACE;EACA;EACA;;;AAIF;EAEE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AEtPF;AAAA;EAEE;EACA;EACA;;AAEA;AAAA;AAAA;EACE;EACA;;AAKF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAME;;;AAKJ;EACE;EACA;EACA;;AAEA;EACE;;;AAIJ;E5BhBI;;A4BoBF;AAAA;EAEE;;AAIF;AAAA;AAAA;AAAA;AAAA;E5BVE;EACA;;A4BmBF;AAAA;AAAA;AAAA;AAAA;E5BNE;EACA;;;A4BwBJ;EACE;EACA;;AAEA;EAGE;;AAGF;EACE;;;AAIJ;EACE;EACA;;;AAGF;EACE;EACA;;;AAoBF;EACE;EACA;EACA;;AAEA;AAAA;EAEE;;AAGF;AAAA;EAEE;;AAIF;AAAA;AAAA;E5B1FE;EACA;;A4BkGF;AAAA;AAAA;AAAA;AAAA;E5BjHE;EACA;;;A6BxBJ;EAEE;EACA;EAEA;EACA;EACA;EACA;EAGA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;ElCsQI,WALI;EkC/PR;EACA;EAEA;EACA;EdfI,YcgBJ;;AdZI;EcGN;IdFQ;;;AcaN;EAEE;EACA;;AAGF;EACE;EACA,Y9BkhBoB;;A8B9gBtB;EAEE;EACA;EACA;;;AAQJ;EAEE;EACA;EACA;EACA;EACA;EACA;EACA;EAGA;;AAEA;EACE;EACA;E7B7CA;EACA;;A6B+CA;EAGE;EACA;;AAIJ;AAAA;EAEE;EACA;EACA;;AAGF;EAEE;E7BjEA;EACA;;;A6B2EJ;EAEE;EACA;EACA;;AAGA;E7B5FE;;A6BgGF;AAAA;EAEE;EbjHF,kBakHuB;;;AASzB;EAEE;EACA;EACA;EAGA;;AAEA;EACE;EACA;EACA;;AAEA;EAEE;;AAIJ;AAAA;EAEE,a/Bgbe;E+B/af;EACA;;;AAUF;AAAA;EAEE;EACA;;;AAKF;AAAA;EAEE;EACA;EACA;;;AAMF;AAAA;EACE;;;AAUF;EACE;;AAEF;EACE;;;AC7LJ;EAEE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAGA;EACA;EACA;EACA;EACA;EACA;;AAMA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EACE;EACA;EACA;EACA;;AAoBJ;EACE;EACA;EACA;EnC4NI,WALI;EmCrNR;EAEA;;AAEA;EAEE;EACA;;;AASJ;EAEE;EACA;EAEA;EACA;EACA;EACA;EAGA;EACA;EACA;EACA;EACA;;AAGE;EAEE;;AAIJ;EACE;;;AASJ;EACE,a/B8gCkC;E+B7gClC,gB/B6gCkC;E+B5gClC;;AAEA;AAAA;AAAA;EAGE;;;AAaJ;EACE;EACA;EAGA;;;AAIF;EACE;EnCyII,WALI;EmClIR;EACA;EACA;EACA;E9BxIE;EeHE,Ye6IJ;;AfzII;EeiIN;IfhIQ;;;Ae0IN;EACE;;AAGF;EACE;EACA;EACA;;;AAMJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;;;AvB1HE;EuBsIA;IAEI;IACA;;EAEA;IACE;;EAEA;IACE;;EAGF;IACE;IACA;;EAIJ;IACE;;EAGF;IACE;IACA;;EAGF;IACE;;EAGF;IAEE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;If9NJ,YegOI;;EAGA;IACE;;EAGF;IACE;IACA;IACA;IACA;;;AvB5LR;EuBsIA;IAEI;IACA;;EAEA;IACE;;EAEA;IACE;;EAGF;IACE;IACA;;EAIJ;IACE;;EAGF;IACE;IACA;;EAGF;IACE;;EAGF;IAEE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;If9NJ,YegOI;;EAGA;IACE;;EAGF;IACE;IACA;IACA;IACA;;;AvB5LR;EuBsIA;IAEI;IACA;;EAEA;IACE;;EAEA;IACE;;EAGF;IACE;IACA;;EAIJ;IACE;;EAGF;IACE;IACA;;EAGF;IACE;;EAGF;IAEE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;If9NJ,YegOI;;EAGA;IACE;;EAGF;IACE;IACA;IACA;IACA;;;AvB5LR;EuBsIA;IAEI;IACA;;EAEA;IACE;;EAEA;IACE;;EAGF;IACE;IACA;;EAIJ;IACE;;EAGF;IACE;IACA;;EAGF;IACE;;EAGF;IAEE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;If9NJ,YegOI;;EAGA;IACE;;EAGF;IACE;IACA;IACA;IACA;;;AvB5LR;EuBsIA;IAEI;IACA;;EAEA;IACE;;EAEA;IACE;;EAGF;IACE;IACA;;EAIJ;IACE;;EAGF;IACE;IACA;;EAGF;IACE;;EAGF;IAEE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;If9NJ,YegOI;;EAGA;IACE;;EAGF;IACE;IACA;IACA;IACA;;;AAtDR;EAEI;EACA;;AAEA;EACE;;AAEA;EACE;;AAGF;EACE;EACA;;AAIJ;EACE;;AAGF;EACE;EACA;;AAGF;EACE;;AAGF;EAEE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;Ef9NJ,YegOI;;AAGA;EACE;;AAGF;EACE;EACA;EACA;EACA;;;AAiBZ;AAAA;EAGE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAME;EACE;;;ACzRN;EAEE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAGA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;E/BjBE;;A+BqBF;EACE;EACA;;AAGF;EACE;EACA;;AAEA;EACE;E/BtBF;EACA;;A+ByBA;EACE;E/BbF;EACA;;A+BmBF;AAAA;EAEE;;;AAIJ;EAGE;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;;;AAIA;EACE;;AAGF;EACE;;;AAQJ;EACE;EACA;EACA;EACA;EACA;;AAEA;E/B7FE;;;A+BkGJ;EACE;EACA;EACA;EACA;;AAEA;E/BxGE;;;A+BkHJ;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;;;AAIJ;EACE;EACA;;;AAIF;EACE;EACA;EACA;EACA;EACA;EACA;E/B1IE;;;A+B8IJ;AAAA;AAAA;EAGE;;;AAGF;AAAA;E/B3II;EACA;;;A+B+IJ;AAAA;E/BlII;EACA;;;A+B8IF;EACE;;AxB3HA;EwBuHJ;IAQI;IACA;;EAGA;IACE;IACA;;EAEA;IACE;IACA;;EAKA;I/B1KJ;IACA;;E+B4KM;AAAA;IAGE;;EAEF;AAAA;IAGE;;EAIJ;I/B3KJ;IACA;;E+B6KM;AAAA;IAGE;;EAEF;AAAA;IAGE;;;;ACnOZ;EAEE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAIF;EACE;EACA;EACA;EACA;EACA;ErC4PI,WALI;EqCrPR;EACA;EACA;EACA;EhCrBE;EgCuBF;EjB1BI,YiB2BJ;;AjBvBI;EiBUN;IjBTQ;;;AiBwBN;EACE;EACA;EACA;;AAEA;EACE;EACA;;AAKJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EjBjDE,YiBkDF;;AjB9CE;EiBqCJ;IjBpCM;;;AiBgDN;EACE;;AAGF;EACE;EACA;EACA;;;AAIJ;EACE;;;AAGF;EACE;EACA;EACA;;AAEA;EhC7DE;EACA;;AgC+DA;EhChEA;EACA;;AgCoEF;EACE;;AAIF;EhC5DE;EACA;;AgC+DE;EhChEF;EACA;;AgCoEA;EhCrEA;EACA;;;AgC0EJ;EACE;;;AASA;EACE;EACA;EhC9GA;;AgCiHA;EAAgB;;AAChB;EAAe;;AAGf;AAAA;AAAA;EhCrHA;;;AgCgIA;EACE;EACA;;;ACrJN;EAEE;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EAGA;EACA;EACA;EACA;EtC+QI,WALI;EsCxQR;EACA;EjCAE;;;AiCMF;EACE;;AAEA;EACE;EACA;EACA;EACA;;AAIJ;EACE;;;ACrCJ;EAEE;EACA;EvC4RI,2BALI;EuCrRR;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAGA;EhCpBA;EACA;;;AgCuBF;EACE;EACA;EACA;EvCgQI,WALI;EuCzPR;EAEA;EACA;EnBpBI,YmBqBJ;;AnBjBI;EmBQN;InBPQ;;;AmBkBN;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA,SnC2uCgC;EmC1uChC;;AAGF;EAEE;EACA;ElBtDF,kBkBuDuB;EACrB;;AAGF;EAEE;EACA;EACA;EACA;;;AAKF;EACE,anC8sCgC;;AmCzsC9B;ElC9BF;EACA;;AkCmCE;ElClDF;EACA;;;AkCkEJ;EClGE;EACA;ExC0RI,2BALI;EwCnRR;;;ADmGF;ECtGE;EACA;ExC0RI,2BALI;EwCnRR;;;ACFF;EAEE;EACA;EzCuRI,sBALI;EyChRR;EACA;EACA;EAGA;EACA;EzC+QI,WALI;EyCxQR;EACA;EACA;EACA;EACA;EACA;EpCJE;;AoCSF;EACE;;;AAKJ;EACE;EACA;;;AChCF;EAEE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAGA;EACA;EACA;EACA;EACA;EACA;ErCHE;;;AqCQJ;EAEE;;;AAIF;EACE,avCmiBiB;EuCliBjB;;;AAQF;EACE,etCs+C8B;;AsCn+C9B;EACE;EACA;EACA;EACA;EACA;;;AAQF;EACE;EACA;EACA;EACA;;;AAJF;EACE;EACA;EACA;EACA;;;AAJF;EACE;EACA;EACA;EACA;;;AAJF;EACE;EACA;EACA;EACA;;;AAJF;EACE;EACA;EACA;EACA;;;AAJF;EACE;EACA;EACA;EACA;;;AAJF;EACE;EACA;EACA;EACA;;;AAJF;EACE;EACA;EACA;EACA;;;AC5DF;EACE;IAAK;;;AAKT;AAAA;EAGE;E3CkRI,yBALI;E2C3QR;EACA;EACA;EACA;EACA;EACA;EAGA;EACA;EACA;E3CsQI,WALI;E2C/PR;EtCRE;;;AsCaJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EvBxBI,YuByBJ;;AvBrBI;EuBYN;IvBXQ;;;;AuBuBR;EtBAE;EsBEA;;;AAGF;EACE;;;AAGF;EACE;;;AAIA;EACE;;AAGE;EAJJ;IAKM;;;;AC3DR;EAEE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAGA;EACA;EAGA;EACA;EvCXE;;;AuCeJ;EACE;EACA;;AAEA;EAEE;EACA;;;AAQJ;EACE;EACA;EACA;EACA;EAEA;EACA;;AAEA;EvC9BE;EACA;;AuCiCF;EvCpBE;EACA;;AuCuBF;EAEE;EACA;EACA;;AAIF;EACE;EACA;EACA;EACA;;AAIF;EACE;;AAEA;EACE;EACA;;;AAUN;EACE;EACA;EACA;;AAIE;EAEE;EACA;EACA;EACA;;AAGF;EACE;EACA;;;AAaF;EACE;;AAGE;EvCzDJ;EAZA;;AuC0EI;EvC1EJ;EAYA;;AuCmEI;EACE;;AAGF;EACE;EACA;;AAEA;EACE;EACA;;;AhCxFR;EgCgEA;IACE;;EAGE;IvCzDJ;IAZA;;EuC0EI;IvC1EJ;IAYA;;EuCmEI;IACE;;EAGF;IACE;IACA;;EAEA;IACE;IACA;;;AhCxFR;EgCgEA;IACE;;EAGE;IvCzDJ;IAZA;;EuC0EI;IvC1EJ;IAYA;;EuCmEI;IACE;;EAGF;IACE;IACA;;EAEA;IACE;IACA;;;AhCxFR;EgCgEA;IACE;;EAGE;IvCzDJ;IAZA;;EuC0EI;IvC1EJ;IAYA;;EuCmEI;IACE;;EAGF;IACE;IACA;;EAEA;IACE;IACA;;;AhCxFR;EgCgEA;IACE;;EAGE;IvCzDJ;IAZA;;EuC0EI;IvC1EJ;IAYA;;EuCmEI;IACE;;EAGF;IACE;IACA;;EAEA;IACE;IACA;;;AhCxFR;EgCgEA;IACE;;EAGE;IvCzDJ;IAZA;;EuC0EI;IvC1EJ;IAYA;;EuCmEI;IACE;;EAGF;IACE;IACA;;EAEA;IACE;IACA;;;AAcZ;EvClJI;;AuCqJF;EACE;;AAEA;EACE;;;AAaJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAVF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAVF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAVF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAVF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAVF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAVF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAVF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AC9LJ;EAEE;EACA;EACA;EACA;EACA;EACA;EACA;EAGA;EACA,OzCupD2B;EyCtpD3B,QzCspD2B;EyCrpD3B;EACA;EACA;EACA;EACA;ExCJE;EwCMF;;AAGA;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EAEE;EACA;EACA;;;AAQJ;EAHE;;;AAOF;AAAA;EAEE;;;A5C3CE;E4CkCF;;;ACjDF;EAEE;EACA;EACA;EACA;EACA;E9CyRI,sBALI;E8ClRR;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAGA;EACA;E9C2QI,WALI;E8CpQR;EACA;EACA;EACA;EACA;EACA;EzCRE;;AyCWF;EACE;;AAGF;EACE;;;AAIJ;EACE;EAEA;EACA;EACA;EACA;EACA;;AAEA;EACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EzChCE;EACA;;AyCkCF;EACE;EACA;;;AAIJ;EACE;EACA;;;AC9DF;EAEE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAGA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAGA;;;AAOF;EACE;EACA;EACA;EAEA;;AAGA;EACE,W3Cm8CgC;EgBh/C9B,Y2B8CF;;A3B1CE;E2BwCJ;I3BvCM;;;A2B2CN;EACE,W3Cg8CgC;;A2C57ClC;EACE,W3C67CgC;;;A2Cz7CpC;EACE;;AAEA;EACE;EACA;;AAGF;EACE;;;AAIJ;EACE;EACA;EACA;;;AAIF;EACE;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;E1CrFE;E0CyFF;;;AAIF;EAEE;EACA;EACA;EClHA;EACA;EACA;EACA,SDkH0B;ECjH1B;EACA;EACA,kBD+G4D;;AC5G5D;EAAS;;AACT;EAAS,SD2GiF;;;AAK5F;EACE;EACA;EACA;EACA;EACA;E1CrGE;EACA;;A0CuGF;EACE;EAEA;EACA;EACA;EACA;;;AAKJ;EACE;EACA;;;AAKF;EACE;EAGA;EACA;;;AAIF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;E1C7HE;EACA;;A0CkIF;EACE;;;AnC/GA;EmCqHF;IACE;IACA;;EAIF;IACE;IACA;IACA;;EAGF;IACE;;;AnClIA;EmCuIF;AAAA;IAEE;;;AnCzIA;EmC8IF;IACE;;;AAUA;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;E1C7MJ;;A0CiNE;AAAA;E1CjNF;;A0CsNE;EACE;;;AnC9JJ;EmC4IA;IACE;IACA;IACA;IACA;;EAEA;IACE;IACA;I1C7MJ;;E0CiNE;AAAA;I1CjNF;;E0CsNE;IACE;;;AnC9JJ;EmC4IA;IACE;IACA;IACA;IACA;;EAEA;IACE;IACA;I1C7MJ;;E0CiNE;AAAA;I1CjNF;;E0CsNE;IACE;;;AnC9JJ;EmC4IA;IACE;IACA;IACA;IACA;;EAEA;IACE;IACA;I1C7MJ;;E0CiNE;AAAA;I1CjNF;;E0CsNE;IACE;;;AnC9JJ;EmC4IA;IACE;IACA;IACA;IACA;;EAEA;IACE;IACA;I1C7MJ;;E0CiNE;AAAA;I1CjNF;;E0CsNE;IACE;;;AnC9JJ;EmC4IA;IACE;IACA;IACA;IACA;;EAEA;IACE;IACA;I1C7MJ;;E0CiNE;AAAA;I1CjNF;;E0CsNE;IACE;;;AEzOR;EAEE;EACA;EACA;EACA;EACA;EjDwRI,wBALI;EiDjRR;EACA;EACA;EACA;EACA;EACA;EAGA;EACA;EACA;EClBA,a/CqjBiB;E+CnjBjB;EACA,a/C8jBmB;E+C7jBnB,a/CqkBiB;E+CpkBjB;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ElDgRI,WALI;EiDhQR;EACA;;AAEA;EAAS;;AAET;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;;AAKN;EACE;;AAEA;EACE;EACA;EACA;;;AAIJ;AACA;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;;;AAIJ;AAEA;EACE;;AAEA;EACE;EACA;EACA;;;AAIJ;AACA;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;;;AAIJ;AAkBA;EACE;EACA;EACA;EACA;EACA;E5CjGE;;;A8CnBJ;EAEE;EACA;EnD4RI,wBALI;EmDrRR;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EnDmRI,+BALI;EmD5QR;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAGA;EACA;EACA;EDzBA,a/CqjBiB;E+CnjBjB;EACA,a/C8jBmB;E+C7jBnB,a/CqkBiB;E+CpkBjB;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ElDgRI,WALI;EmD1PR;EACA;EACA;EACA;E9ChBE;;A8CoBF;EACE;EACA;EACA;;AAEA;EAEE;EACA;EACA;EACA;EACA;EACA;;;AAMJ;EACE;;AAEA;EAEE;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;;AAKN;AAEE;EACE;EACA;EACA;;AAEA;EAEE;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;;AAKN;AAGE;EACE;;AAEA;EAEE;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAKJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAIJ;AAEE;EACE;EACA;EACA;;AAEA;EAEE;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;;AAKN;AAkBA;EACE;EACA;EnD2GI,WALI;EmDpGR;EACA;EACA;E9C5JE;EACA;;A8C8JF;EACE;;;AAIJ;EACE;EACA;;;ACrLF;EACE;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;;ACtBA;EACE;EACA;EACA;;;ADuBJ;EACE;EACA;EACA;EACA;EACA;EACA;EhClBI,YgCmBJ;;AhCfI;EgCQN;IhCPQ;;;;AgCiBR;AAAA;AAAA;EAGE;;;AAGF;AAAA;EAEE;;;AAGF;AAAA;EAEE;;;AASA;EACE;EACA;EACA;;AAGF;AAAA;AAAA;EAGE;EACA;;AAGF;AAAA;EAEE;EACA;EhC5DE,YgC6DF;;AhCzDE;EgCqDJ;AAAA;IhCpDM;;;;AgCiER;AAAA;EAEE;EACA;EACA;EACA;EAEA;EACA;EACA;EACA,OhDkhDmC;EgDjhDnC;EACA,OjDhGM;EiDiGN;EACA;EACA;EACA;EACA,ShD4gDmC;EgBnmD/B,YgCwFJ;;AhCpFI;EgCkEN;AAAA;IhCjEQ;;;AgCsFN;AAAA;AAAA;EAEE,OjD3GI;EiD4GJ;EACA;EACA,ShDogDiC;;;AgDjgDrC;EACE;;;AAGF;EACE;;;AAKF;AAAA;EAEE;EACA,OhDsgDmC;EgDrgDnC,QhDqgDmC;EgDpgDnC;EACA;EACA;;;AAGF;EACE;;;AAEF;EACE;;;AAQF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA,chDq9CmC;EgDp9CnC;EACA,ahDm9CmC;;AgDj9CnC;EACE;EACA;EACA,OhDo9CiC;EgDn9CjC,QhDo9CiC;EgDn9CjC;EACA,chDo9CiC;EgDn9CjC,ahDm9CiC;EgDl9CjC;EACA;EACA;EACA;EACA;EAEA;EACA;EACA,ShD28CiC;EgB5mD/B,YgCkKF;;AhC9JE;EgC6IJ;IhC5IM;;;AgCgKN;EACE,ShDw8CiC;;;AgD/7CrC;EACE;EACA;EACA,QhDk8CmC;EgDj8CnC;EACA,ahD+7CmC;EgD97CnC,gBhD87CmC;EgD77CnC;EACA;;;AAWF;EALE;EACA;EACA;;;AAOF;AAAA;EAEE;EACA;EACA;;;AnD3ME;EmD8LF;EACA;EACA;;;AE3MF;AAAA;EAEE;EACA;EACA;EACA;EACA;EAEA;EACA;;;AAIF;EACE;IAAK;;;AAIP;EAEE;EACA;EACA;EACA;EACA;EACA;EAGA;EACA;;;AAGF;EAEE;EACA;EACA;;;AASF;EACE;IACE;;EAEF;IACE;IACA;;;AAKJ;EAEE;EACA;EACA;EACA;EACA;EAGA;EACA;;;AAGF;EACE;EACA;;;AAIA;EACE;AAAA;IAEE;;;AChFN;EAEE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;A3C6DE;E2C5CF;IAEI;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;InC5BA,YmC8BA;;;AnC1BA;EmCYJ;InCXM;;;ARuDJ;E2C5BE;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;;EAGF;IAEE;;EAGF;IAGE;;;A3C5BJ;E2C/BF;IAiEM;IACA;IACA;;EAEA;IACE;;EAGF;IACE;IACA;IACA;IACA;IAEA;;;;A3CnCN;E2C5CF;IAEI;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;InC5BA,YmC8BA;;;AnC1BA;EmCYJ;InCXM;;;ARuDJ;E2C5BE;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;;EAGF;IAEE;;EAGF;IAGE;;;A3C5BJ;E2C/BF;IAiEM;IACA;IACA;;EAEA;IACE;;EAGF;IACE;IACA;IACA;IACA;IAEA;;;;A3CnCN;E2C5CF;IAEI;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;InC5BA,YmC8BA;;;AnC1BA;EmCYJ;InCXM;;;ARuDJ;E2C5BE;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;;EAGF;IAEE;;EAGF;IAGE;;;A3C5BJ;E2C/BF;IAiEM;IACA;IACA;;EAEA;IACE;;EAGF;IACE;IACA;IACA;IACA;IAEA;;;;A3CnCN;E2C5CF;IAEI;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;InC5BA,YmC8BA;;;AnC1BA;EmCYJ;InCXM;;;ARuDJ;E2C5BE;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;;EAGF;IAEE;;EAGF;IAGE;;;A3C5BJ;E2C/BF;IAiEM;IACA;IACA;;EAEA;IACE;;EAGF;IACE;IACA;IACA;IACA;IAEA;;;;A3CnCN;E2C5CF;IAEI;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;InC5BA,YmC8BA;;;AnC1BA;EmCYJ;InCXM;;;ARuDJ;E2C5BE;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;;EAGF;IAEE;;EAGF;IAGE;;;A3C5BJ;E2C/BF;IAiEM;IACA;IACA;;EAEA;IACE;;EAGF;IACE;IACA;IACA;IACA;IAEA;;;;AA/ER;EAEI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EnC5BA,YmC8BA;;AnC1BA;EmCYJ;InCXM;;;AmC2BF;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EAEE;;AAGF;EAGE;;;AA2BR;EPpHE;EACA;EACA;EACA,S5C0mCkC;E4CzmClC;EACA;EACA,kB7CIM;;A6CDN;EAAS;;AACT;EAAS,S5Cm+CyB;;;AmDr3CpC;EACE;EACA;EACA;;AAEA;EACE;EAEA;EACA;EACA;EACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;EACA;EACA;;;ACjJF;EACE;EACA;EACA;EACA;EACA;EACA,SrDotBwB;;AqDltBxB;EACE;EACA;;;AAKJ;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAKA;EACE;;;AAIJ;EACE;IACE,SrDurBsB;;;AqDnrB1B;EACE;EACA;EACA;;;AAGF;EACE;IACE;;;AH9CF;EACE;EACA;EACA;;;AIHF;EACE;EACA;;;AAFF;EACE;EACA;;;AAFF;EACE;EACA;;;AAFF;EACE;EACA;;;AAFF;EACE;EACA;;;AAFF;EACE;EACA;;;AAFF;EACE;EACA;;;AAFF;EACE;EACA;;;ACFF;EACE;EACA;;AAGE;EAGE;EACA;;;AATN;EACE;EACA;;AAGE;EAGE;EACA;;;AATN;EACE;EACA;;AAGE;EAGE;EACA;;;AATN;EACE;EACA;;AAGE;EAGE;EACA;;;AATN;EACE;EACA;;AAGE;EAGE;EACA;;;AATN;EACE;EACA;;AAGE;EAGE;EACA;;;AATN;EACE;EACA;;AAGE;EAGE;EACA;;;AATN;EACE;EACA;;AAGE;EAGE;EACA;;;AAOR;EACE;EACA;;AAGE;EAEE;EACA;;;AC1BN;EACE;EAEA;;;ACHF;EACE;EACA,KxD6c4B;EwD5c5B;EACA;EACA,uBxD2c4B;EwD1c5B;;AAEA;EACE;EACA,OxDuc0B;EwDtc1B,QxDsc0B;EwDrc1B;ExCIE,YwCHF;;AxCOE;EwCZJ;IxCaM;;;;AwCDJ;EACE;;;ACnBN;EACE;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;;AAKF;EACE;;;AADF;EACE;;;AADF;EACE;;;AADF;EACE;;;ACrBJ;EACE;EACA;EACA;EACA;EACA,S1DumCkC;;;A0DpmCpC;EACE;EACA;EACA;EACA;EACA,S1D+lCkC;;;A0DvlChC;EACE;EACA;EACA,S1DmlC8B;;;A0DhlChC;EACE;EACA;EACA,S1D6kC8B;;;AQ9iChC;EkDxCA;IACE;IACA;IACA,S1DmlC8B;;E0DhlChC;IACE;IACA;IACA,S1D6kC8B;;;AQ9iChC;EkDxCA;IACE;IACA;IACA,S1DmlC8B;;E0DhlChC;IACE;IACA;IACA,S1D6kC8B;;;AQ9iChC;EkDxCA;IACE;IACA;IACA,S1DmlC8B;;E0DhlChC;IACE;IACA;IACA,S1D6kC8B;;;AQ9iChC;EkDxCA;IACE;IACA;IACA,S1DmlC8B;;E0DhlChC;IACE;IACA;IACA,S1D6kC8B;;;AQ9iChC;EkDxCA;IACE;IACA;IACA,S1DmlC8B;;E0DhlChC;IACE;IACA;IACA,S1D6kC8B;;;A2D5mCpC;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;ACRF;AAAA;ECIE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;AAAA;EACE;;AAIF;AAAA;EACE;;;ACnBF;EACE;EACA;EACA;EACA;EACA;EACA,S9DgcsC;E8D/btC;;;ACRJ;ECAE;EACA;EACA;;;ACNF;EACE;EACA;EACA,OjEisB4B;EiEhsB5B;EACA;EACA,SlE0oBW;;;AmE9kBL;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAjBJ;EACE;;;AADF;EACE;;;AADF;EACE;;;AADF;EACE;;;AADF;EACE;;;AADF;EACE;;;AADF;EACE;;;AADF;EACE;;;AASF;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAjBJ;EACE;;;AADF;EACE;;;AADF;EACE;;;AADF;EACE;;;AADF;EACE;;;AASF;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AArBJ;AAcA;EAOI;EAAA;;;AAmBJ;AA1BA;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAjBJ;EACE;;;AADF;EACE;;;AADF;EACE;;;AADF;EACE;;;AASF;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAjBJ;EACE;;;AAIA;EACE;;;AANJ;EACE;;;AAIA;EACE;;;AANJ;EACE;;;AAIA;EACE;;;AANJ;EACE;;;AAIA;EACE;;;AANJ;EACE;;;AAIA;EACE;;;AAIJ;EAOI;;;AAKF;EAOI;;;AAnBN;EAOI;;;AAKF;EAOI;;;AAnBN;EAOI;;;AAKF;EAOI;;;AAnBN;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAjBJ;EACE;;;AAIA;EACE;;;AANJ;EACE;;;AAIA;EACE;;;AANJ;EACE;;;AAIA;EACE;;;AANJ;EACE;;;AAIA;EACE;;;AANJ;EACE;;;AAIA;EACE;;;AANJ;EACE;;;AAIA;EACE;;;AAIJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAPJ;EAIQ;EAGJ;;;AAjBJ;EACE;;;AADF;EACE;;;AADF;EACE;;;AADF;EACE;;;AADF;EACE;;;AASF;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;EAAA;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;AAPJ;EAOI;;;A1DVR;E0DGI;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;;A1DVR;E0DGI;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;;A1DVR;E0DGI;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;;A1DVR;E0DGI;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;;A1DVR;E0DGI;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;IAAA;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;;ACtDZ;ED+CQ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;;ACnCZ;ED4BQ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;EAPJ;IAOI;;;AEhEV;EACE;EACA;;;ACVF;EAME,OtELI;;AsEUN;EAEE,OtEZI;;;AsEDN;EAME,OtELI;;AsEUN;EAEE,OtEZI;;;AsEDN;EAME,OtELI;;AsEUN;EAEE,OtEZI;;;AsEDN;EAME,OtELI;;AsEUN;EAEE,OtEZI;;;AsEDN;EAME,OtELI;;AsEUN;EAEE,OtEZI;;;AsEDN;EAME,OtELI;;AsEUN;EAEE,OtEZI;;;AsEDN;EAME,OtELI;;AsEUN;EAEE,OtEZI;;;AsEDN;EAME,OtELI;;AsEUN;EAEE,OtEZI;;;AqEsBN;E3CJA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;A4ChCA;EAME,OtELI;;AsEUN;EAEE,OtEZI;;;AqEsBN;E3CJA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;A4ChCA;EAME,OtELI;;AsEUN;EAEE,OtEZI;;;AqEsBN;E3CJA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;A4ChCA;EAME,OtELI;;AsEUN;EAEE,OtEZI;;;AqEsBN;E3CJA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;A4ChCA;EAME,OtELI;;AsEUN;EAEE,OtEZI;;;AqEsBN;E3CJA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;A4ChCA;EAME,OtELI;;AsEUN;EAEE,OtEZI;;;AqEsBN;E3CJA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;A4ChCA;EAME,OtELI;;AsEUN;EAEE,OtEZI;;;AqEsBN;E3CJA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;A4ChCA;EAME,OtELI;;AsEUN;EAEE,OtEZI;;;AqEsBN;E3CJA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;A4ChCA;EAME,OtELI;;AsEUN;EAEE,OtEZI;;;AqEsBN;E3CJA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;A4ChCA;EAME,OtELI;;AsEUN;EAEE,OtEZI;;;AqEsBN;E3CJA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;A4ChCA;EAME,OtELI;;AsEUN;EAEE,OtEZI;;;AqEsBN;E3CJA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;A4ChCA;EAME,OtELI;;AsEUN;EAEE,OtEZI;;;AsEDN;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAME,OtEGO;;AsEET;AAAA;AAAA;EAEE,OtEJO;;;AqE6BT;E3CMA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;A4C9CA;EAEE,OtEZI;;;AqEqCN;E3CMA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;A4C9CA;EAEE,OtEZI;;;AqEqCN;E3CMA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;A4C9CA;EAEE,OtEZI;;;AqEqCN;E3CMA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;A4C9CA;EAEE,OtEZI;;;AqEqCN;E3CMA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;A4C9CA;EAEE,OtEZI;;;AqEqCN;E3CMA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;A4C9CA;EAEE,OtEZI;;;AqEqCN;E3CMA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;A4C9CA;EAEE,OtEZI;;;AqEqCN;E3CMA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;A4C9CA;EAEE,OtEZI;;;AqE4CN;E3CDA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;A4C9CA;EAEE,OtEZI;;;AqE4CN;E3CDA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;A4C9CA;EAEE,OtEZI;;;AqE4CN;E3CDA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;A4C9CA;EAEE,OtEZI;;;AqE4CN;E3CDA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;A4C9CA;EAEE,OtEZI;;;AqE4CN;E3CDA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;A4C9CA;EAEE,OtEZI;;;AqE4CN;E3CDA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;A4C9CA;EAEE,OtEZI;;;AqE4CN;E3CDA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;A4C9CA;EAEE,OtEZI;;;AqE4CN;E3CDA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;A4C9CA;EAEE,OtEZI;;;AqE4CN;E3CDA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;A4C9CA;EAEE,OtEZI;;;AqE4CN;E3CDA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;A4C9CA;EAEE,OtEZI;;;AqE4CN;E3CDA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;A4C9CA;EAEE,OtEZI;;;AuEFR;EAEE;;;AAGF;EACE;EACA;EACA;;;ACRF;EACE;;AAEA;EACE;EACA;EACA;;AAEA;EAEE;;AAGF;EACE;EACA;;;AAKN;EACE;EACA;EACA,axE8iBiB;EwE7iBjB;;;AAGF;EACE;EACA;EACA;EACA,WxE8hBa;;;AwExhBT;EACE;;;ACtCR;EACE;;;AAGF;EACE;;;AAGF;AAAA;EAEE;EACA;EACA;EACA;;;AAIA;EAEE;EACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;;;AAIA;EACE;;AAGF;EACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;;;AAIA;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA,kBzE/DI;EyEgEJ;EACA;EACA;EACA;;;AAOA;EACE,YC7DS;;AD8DT;EACE,YC/DO;;ADkET;EACE,OzE7EG;EyE8EH,kBCpEO;EDqEP;;;AAOR;EACE;;;AAGF;AACA;EACE;;;AAGF;EACE;;;AAGF;EACE,OzExGM;EyEyGN;;;AAGF;EACE;;AAEA;EACE;;AAJJ;EAOE;EACA;EAEA;EACA;EACA;EACA;EACA;;;AAYF;EACE;EACA;EAEA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;AAIA;EACE;EACA;EAEA;;AAIF;EACE;;;AAIJ;EACE;EACA;;;AAGF;AAAA;AAAA;AAGA;EACE;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;;;AAGF;AACA;EAEE;;;AAGF;AAEA;AAAA;AAAA;AAGA;EACE;EACA;;;AAIA;AAAA;EAEE;EACA;;;AAIJ;EACE,azEyVsB;;;AyEtVxB;EACE;;;AAGF;EACE;EACA;EACA,kBzEnOM;EyEoON;EACA;EACA;;;AAGF;EACE;EACA,OzEjOM;EyEkON;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAIF;EACE;EACA;EACA;;;AAIF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;;;AAIF;AAAA;AAAA;EAGE;EACA;;;AAGF;EACE,OzE5QM;EyE6QN;;;AAKF;EACE;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA,OzE9RM;EyE+RN;;;AAGF;AAAA;EAEE;EACA,OzErSM;EyEsSN;;;AAIA;EAGE;;;AAKF;EAGE;;;AAKF;EAGE;;;AAIJ;AAAA;AAAA;EAGE;;;AAGF;EACE;EACA;EACA;EACA,OzE3UM;EyE4UN;;;AAIF;EACE;;AAGE;EAGE;;AAGF;EACE;EACA;;;AAKN;AAAA;EAEE;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;AAAA;AAAA;AAGA;EACE;EACA;;AAEA;AAAA;EAEE;EACA;;AAGF;EACE;EACA;EACA;;;AAIJ;EACE;EACA;EACA;EACA,YzEjZM;EyEkZN;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA,YzE3ZM;EyE4ZN;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EAEE;;;AAKA;AAAA;EAEE;EACA;;AAGF;EACE;;;AAIJ;EACE;;;AAGF;EACE;;;AAIF;EACE;EACA;EACA;EACA;EACA;;;AAMF;EACE;EACA;;;AAcF;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;AAAA;EAEE;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAKA;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAEA;AAAA;AAAA;EAGE;EACA;;AAGF;EACE;;;AAKN;EACE;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;AAGF;EACE;;;AAIJ;AAAA;EAEE;;;AAGF;EACE;;;AAMF;EACE;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;;;AAKE;AAAA;EAEE;;AAIJ;EACE;EACA;EACA;EACA;;;AAIJ;EACE;EACA;EACA;;;AAIA;EACE;EACA;;AAGF;EACE;EACA;EACA;;;AAIJ;EACE;EACA;;AAEA;AAAA;EAEE;;AAGF;EACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA,kBzE7rBM;EyE8rBN;EACA;;;AAIA;EACE;EACA;;AAEA;EACE;;AAIJ;EACE;;AAGE;EACE;;AAGF;EACE;;AAIJ;EACE;;AAGF;EACE;EACA;EACA;;;AAKN;EACE;;;AAOF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;AAMF;EACE;;;AAIF;EACE;;;AAKF;EACE;;;AAGF;EACE;EACA;EACA;EACA;;;AAIA;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;;AAQJ;AAAA;EAEE;EACA;;;AAIA;EACE;EACA;;AAGF;EACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA,YzE9zBM;;;AyEi0BR;EACE;EACA;;;AAGF;EACE;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;AAAA;EAEE;;;AAGF;EACE;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAIA;EACE;EACA;EACA;;;AAQE;EACE,YCj4BiB;EDk4BjB,czE74BG;;;AyEm5BX;AAAA;EAEE;EACA;EACA;;;AAGF;EACE;;;AAIF;EACE;;;AAGF;EACE;EACA;;;AAGF;AAAA;AAAA;AAKE;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA,OzEt7BO;;AyEw7BP;EACE;EACA;EACA;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA,OzEr8BI;EyEs8BJ;;AAEA;EACE;EACA;;AAIJ;EACE;;;AAKF;EAIE;;;AAIJ;AAAA;AAAA;AAIE;EAIE;;;AAIJ;AAAA;EAEE;;;AAGF;AAAA;AAAA;AAGA;EAEE;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAME;EACE;EACA;;;AAKN;AACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA,YzEjiCM;EyEkiCN;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;;;AAGF;AAAA;AAAA;AAKI;AAAA;EAEE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;;AAIJ;EACE;EACA;EACA;;AAGF;EACE;;AAEA;EACE;;AAIJ;EACE;;AAGF;EACE;;;AAIJ;EACE;;AAEA;EACE;EACA;;;AAKF;EACE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA,OzEnnCI;EyEonCJ;EACA;EACA;EACA;;;AAMF;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA,YzEhpCE;EyEipCF;;AAIF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA,azEzmBa;EyE0mBb;;AAIF;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA,azEhpBW;EyEipBX;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;;AAIJ;EACE;;AAGF;EACE;EACA;;AAEA;EACE;EACA;EACA;;AAKJ;EACE;;AAGF;EACE;;AAIA;EAGE;EACA;;AAEA;EACE;EACA;;AAKN;AAAA;EAEE;EACA;;AAEA;AAAA;EACE;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;;AAIF;EACE;;AAEA;EACE;;;AAOF;EACE;;AAGF;EACE;;AAIJ;AAAA;EAEE;;AAGF;AAAA;EAEE;;AAGF;EACE;;AAIA;EACE;EACA;;AAEA;EACE;EACA;;AAIJ;EACE;EACA;;;AAKN;EACE;;;AAGF;EACE;;;AAGF;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;AAAA;AAAA;EAGE;EACA;;AAGF;EACE;;AAEA;AAAA;EAEE;;AAIJ;EACE,OzE94CI;EyE+4CJ;EACA;;AAGF;EACE;;;AAKF;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;;;AAIJ;EACE;;;AAGF;EACE;EACA;EACA;EACA,YzEh7CM;;;AyEm7CR;EACE;EACA;;AAGE;EAGE;EACA;;AAIJ;EACE;EACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAIA;EACE;EACA;;;AAKF;EACE;;AAGF;EACE;EACA;;AAEA;EACE;;AAKF;EACE;;;AAKN;EACE;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA,OzEviDM;EyEwiDN;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EAIE,QAHS;EAIT,OAHQ;EAIR;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;;AAIJ;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;;;AAIJ;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;;;AAKN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;;AAIJ;EACE;;;AAGF;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAIA;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE,OzEtqDA;EyEuqDA;EACA;EACA;;AAIJ;EACE,OzE9qDE;EyE+qDF;EACA;EACA;;AAIJ;EACE,OzE7qDO;;AyE+qDP;EACE,OzEzrDE;EyE0rDF;EACA;;AAIJ;EACE;;;AAOA;EACE,YC1rDS;;;AD+rDf;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;;AAEA;EACE,YzE7tDI;EyE8tDJ;EACA;EACA;;AAGF;EACE,YzEpuDI;EyEquDJ;EACA;EACA;;AAEA;AAAA;EAEE;;AAIJ;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;;;AAIJ;EACE;EACA;;;AAIA;EACE;;AAGF;EACE;EACA;;;AAMF;EACE;;AAGF;EACE;;AAEA;EACE;EACA;;AAGF;EACE;;AAIJ;EACE;;;AAIJ;EACE;EACA;EACA;EACA;;;AAGF;EACE;;AAEA;EACE;;AAEA;EACE;;;AAKN;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAIF;EACE;EACA;EACA;;;AAGF;EACE;;;AAIA;EACE;;AAEA;EACE;;AAIJ;EACE;;;AAIJ;EACE;;AAEA;EACE;;;AAKF;EACE;;AAGF;EACE;;;AAIJ;EACE;;;AAGF;EACE;;;AAIF;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA,azE7nCiB;;AyE+nCjB;EACE;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;AAEA;EACE;EACA;EACA;;AAGF;EACE;;AAMJ;EAEE;EACA;;AAKF;AAAA;EAEE;EACA;;AAIJ;EACE;EACA;;AAGF;AAAA;AAAA;EAGE;;AAGF;AAAA;AAAA;EAGE;;AAIA;EACE;;AAGF;EACE;;AAGF;AAAA;EAEE;;AAGF;AAAA;EAEE;;AAIJ;EACE;EACA;EACA;EACA;EACA,YzE/+DI;EyEg/DJ;;AAEA;EACE,YzEz+DE;EyE0+DF,OzEp/DE;;AyEs/DF;EACE,YzE7+DA;EyE8+DA,OzEx/DA;;AyE2/DF;EACE,OzEl/DA;;AyEq/DF;EACE;;AAGF;EACE,czEpgEA;;AyEugEF;EACE;;AAKN;AAAA;EAEE;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAEA;EACE;;AAGF;EACE;EACA;EACA;;AAKF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAKF;EACE;EACA;;AAGF;EACE;;AAGF;EACE;;AAIA;EAGE;EACA;;AAIJ;EACE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EAGE;;AAIA;EAIE;;AAKF;EAEE;;AAIJ;EAEE;;AAIA;EAEE;;AAKF;EAEE;;AAKF;EAEE;;AAIJ;EACE;EACA;EACA;EACA;EACA;;AAGF;AAAA;EAEE;EACA;;AAGF;AAAA;EAEE;;AAGF;EACE;;AAGF;EACE,YzElqEE;;AyEsqEF;EACE;;AAGF;EACE;;AAIJ;EACE;EACA;EACA;EACA,OzEnrEE;EyEorEF;;AAEA;EACE;;AAIJ;EACE;EACA;;AAIJ;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAIJ;AAAA;EAEE;;;AAQE;EAGE;;AAGE;EACE;;AAKN;AAAA;AAAA;EAGE,YCruEgB;EDsuEhB,OzE3vEA;;AyE+vEA;EACE,YC9uEe;ED+uEf,OzE97DI;;AyEk8DR;EACE;EACA,YCzvEO;;AD2vEP;EACE;EACA,OzE3wEF;;AyE6wEE;EACE;EACA,OzE/wEJ;;AyEkxEE;EACE,OzE/wED;;AyEkxED;EACE;;AAGF;EACE,czE3xEJ;;AyE8xEE;EACE;;AAKN;EACE;;AAIA;EACE;EACA;;AAGF;EACE,YzE/yEF;;AyEkzEA;EACE,OzEnzEF;;AyEuzEF;EACE;;AAGF;EACE;;AAEA;EACE;;;AAOV;AAAA;EAEE;;;AAIA;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAIJ;EACE;EACA;;;AAKF;EACE;;AAIA;EACE;;AAGF;AAAA;EAEE;;AAIJ;EACE;;AAGF;EACE;;AAGF;AAAA;EAEE;;AAGF;AAAA;AAAA;AAAA;EAIE;;AAIA;EAEE;;AAGF;EACE;EACA;EACA;;AAIJ;AAAA;EAEE;EACA;EACA;;AAGF;EACE;;AAGF;AAAA;AAAA;EAGE;;AAGF;EACE;;;AAMF;EACE;;AAEA;EACE;;AAIJ;AAAA;AAAA;EAGE;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;;;AAMJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA,OzEn+EI;EyEo+EJ;EACA;EACA;EACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA,OzEh/EM;EyEi/EN;EACA;EACA;EACA;;;AAIA;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAEA;EACE;;AAMJ;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;AAAA;AAAA;EAEE;EACA;;;AAKN;EACE;EACA;;;AAGF;EACE;;AAEA;EACE;EACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAIA;EACE;;AAGF;EACE;;AAGF;EACE;;;AAMF;EACE;EACA;;AAEA;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAIJ;EACE;;AAIA;EACE;;AAGF;EACE;;AAIJ;EACE;;;AAQF;EACE;EACA;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE,OzEjqFI;EyEkqFJ;EACA;EACA;;AAGF;EACE;;;AAKJ;AAGE;EACE;;AAGF;AAAA;EAEE;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;;;AAMJ;EACE;;;AAIF;EACE;EACA;;;AAGF;EACE;IACE;;EAGF;IACE;;EAGF;IACE;;EAGF;IACE;;EAGF;IACE;;EAGF;IACE;;EAGF;IACE;;EAGF;IACE;;EAEA;IACE;;EAIJ;IACE;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;EACA,kBzExwFM;EyEywFN;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;AAAA;AAAA;AAAA;AAAA;EAKE;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AhElvFE;EgEuvFF;IACE;;EAGF;AAAA;IAEE;;;AAIJ;EACE;;;AAGF;EACE;;;AEr0FF;AAAA;AAAA;AAGA;EACE;EACA;;;AAIA;EACE;EACA;;AAGF;EACE;;AAGF;EACE;;AAEA;EACE;EACA;EACA;EACA;;AAKF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;;AAIJ;EACE;EACA;;;AAIJ;EACE;EACA;EACA;;;AAGF;AAAA;AAAA;AAGA;EACE;;AAEA;EACE;EACA;EACA;;;ACpEJ;AAAA;AAAA;AAGA;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;;ACnCJ;EACE,O7EqxBiB;E6EpxBjB;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;EACA;;AAKA;EAEE;;AAKF;EACE;EACA;EACA;EACA;;AAIJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAOE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAEA;EACE;EACA;;AAIJ;EACE;;AAGF;AAAA;EAEE;;AAGF;AAAA;EAEE;;;AAIJ;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;;AAIJ;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,W7Eoca;;;A6EhcjB;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA,W7E2ae;;A6Ezaf;EACE;EACA;;AAEA;EACE;EACA;;AAIJ;EACE;EACA;EACA;EACA;;AAEA;EACE;;AAIJ;EACE;;AAEA;EAEE;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;;AAEA;EACE;;AAKN;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAIJ;EACE;;AAGF;EACE;;AAIA;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;AAAA;EAEE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIF;EACE;EACA;EACA;EACA;EACA;;AAGA;EACE;;AAKJ;EACE;EACA;EACA;EACA;EACA;;AAGF;AAAA;EAEE;EACA;EACA;EACA;;AAGF;EACE;;AAKA;AAAA;EAEE;;AAGF;EACE;;AAIJ;EACE;EACA;EACA;EACA;;AAIJ;EACE;EACA;;AAKF;EACE;;AAKA;AAAA;EAEE;EACA;EACA;;AAKN;EACE;EACA;EACA;;AAEA;EAEE;;AAIJ;EACE;;;AAKJ;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;;;AAIJ;EACE;;AAEA;EACE;;;AAIJ;EACE;EACA;;;AAIF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,M7E4YiB;E6E3YjB;EACA;EACA;EACA;;;AAIF;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGE;EACE;EACA,O7E9ZA;;A6EiaF;EACE;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;;AAIJ;EACE;EACA;;AAEA;EACE;EACA;EACA;;AAKN;EACE;EACA;EACA;EACA;EACA;EACA;;;AAOA;EACE,YH1dS;EG2dT;;AAEA;EACE;;AAIJ;EACE,O7E7eK;;A6E+eL;EACE,O7EhfG;;A6EkfH;EACE,O7EpLI;;A6E0LN;EAEE,O7E/fF;E6EggBE;;AAMA;EACE;EACA;;AAGF;EACE;;AAKN;EACE;;AAGF;EACE;;AAOE;EACE,Y7EngBL;E6EogBK,O7E/hBJ;;A6EmiBA;EACE,YHthBK;EGuhBL;EACA;;AAIA;EACE,YHthBY;;AGoiBxB;EACE;;;AC9iBF;AACA;EACE;EACA,O9ELM;;;A8EQR;EACE;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE,kB9E9BM;E8E+BN,O9ErBM;;;A8EwBR;EACE;EACA;EACA;;AAEA;EACE;;;AAIJ;EACE,kB9E7CM;E8E8CN,O9EpCM;E8EqCN;EACA;EACA;EACA;;AAEA;EACE;;;AAIJ;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE,Y9EzEM;E8E0EN,O9EhEM;E8EiEN;;AAEA;EACE;EACA,O9ErEI;E8EsEJ;EACA;;;AAIJ;EACE;EACA,O9E7EM;E8E8EN;;AAEA;EACE;EACA,O9ElFI;E8EmFJ;EACA;;;AAIJ;EACE;EACA;EACA;EACA,O9E5FM;E8E6FN;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA,O9EtJM;E8EuJN;;;AAGF;EACE;EACA;EACA,O9EvKM;E8EwKN;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA,O9EnLI;E8EoLJ;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAIJ;EACE;EACA;EACA;;AAEA;EACE;EACA,O9EtMI;E8EuMJ;EACA;EACA;EACA;EACA;EACA;;;AAIJ;EACE;EACA;EACA,kB9EnNM;E8EoNN,O9E1MM;E8E2MN;;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA,O9ExNI;E8EyNJ;EACA;EACA;;;AAIJ;AACA;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;EACA,kB9EjRM;E8EkRN,O9ExQM;;;A8E2QR;EACE;EACA,O9E7QM;E8E8QN;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;AAAA;EAEE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAIA;EACE;;AAGF;EACE;;;AAMJ;EAEE;EACA;EACA,O9E7TI;;A8E+TJ;EACE;EACA;EACA,O9ElUE;;A8EsUN;EACE;EACA;EACA,O9EzUI;;;A8E6UR;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;AAAA;EAEE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;;AAEA;EACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAIA;EACE;EACA;EACA;EACA;EACA,O9E1YI;E8E2YJ;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAIJ;EACE;EACA;;AAEA;EACE;;;AAKN;EACE;EACA;;;AAGF;EACE;EACA;EACA;;AAEA;EACE;;;AAIJ;EACE;;AAEA;EACE;;;AAIJ;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;;AAGF;AAAA;EAEE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;AC5eF;EACE;EACA;EACA;EACA;E7EYE;;;A6EJF;EACE;EACA;;;AAIJ;EACE;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;;;AAIA;EACE;;AAEF;EAEE;;AAEF;EACE;;AAEF;EACE;;AAEF;EACE;;AAEF;EAEE;;AAEF;EACE;;AAEF;EACE;;AAEF;EACE;;AAEF;EACE;;AAEF;EACE;;AAEF;EACE;;AAEF;EACE;;AAEF;EACE;;AAEF;EACE;;AAEF;EACE;;AAEF;EACE;;AAEF;EACE;;AAEF;EACE;;AAEF;EACE;;AAEF;EACE;;AAEF;EACE;;AAEF;EACE;;;AAIJ;EACE;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;;AAEA;EACE;EACA;;;AC5IJ;AAGA;EACE;EACA;EACA;EACA;;;AAIF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EASE;EACA;;;AAIF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAaE;EACA;;;AAGF;EACE;EAEA;EACA;;;AAGF;EACE;EAEA;EACA;;;AAGF;EACE;EAEA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;;AAIJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAQE;EAEA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAQE;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAIA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;;AAKF;EACE;;AAIA;EAEE;;;AAKN;EACE;;;AAIA;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAIJ;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;AAAA;AAAA;EAGE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EAEE;;;AAGF;EAEE;EACA;EACA;;;AAIA;EACE;EACA;EACA;EACA;;AAEA;EACE;;AAIJ;EACE;EACA;;;AChRJ;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;AAAA;EAEE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;AAAA;EAEE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;AAAA;EAEE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;AAAA;EAEE;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;AAAA;EAEE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;AAAA;EAEE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AC9qBF;EACE;EACA,WlFwjBe;;;AmFxjBjB;EACE;IACE;;;ACNJ;AAAA;EAEE;;;ACFF;EACE;EACA,erF2xBgC;EqF1xBhC;EACA;;AAEA;EACE,WrFqjBa;;AqFnjBb;EACE,cpF0lD8B;;AoFvlDhC;EACE;;;AAQF;EACE;EACA;;;ACxBN;EACE;IACE;;EAIF;AAAA;AAAA;AAAA;IAIE;IACA;;EAIF;IACE;IACA;;EAIF;IACE;;EAIF;AAAA;AAAA;IAGE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;IACA;IACA;;EAGF;AAAA;IAEE;;EAGF;IACE;IACA;IACA;;EAIF;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;;EAKF;AAAA;AAAA;AAAA;AAAA;IAKE;;EAKA;IACE;;EAEA;IACE;;EAKJ;IACE;;EAEA;IACE;;EAKN;IACE;;;ACrGJ;EACE,YvFodY;EuFndZ,OvFSS;EuFRT,WvFyjBe;;;AuFpjBb;EACE,YbQa;EaPb,OvFJK;;;AuFSX;EACE;;;AChBF;EACE;EAEA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE,kBxF4GiB;;;AwFzGnB;EACE;;;AAGF;EACE","file":"theme.css"} \ No newline at end of file diff --git a/pirulug/img/ajax_clock_small.svg b/pirulug/img/ajax_clock_small.svg new file mode 100644 index 0000000000..0cce444ec0 --- /dev/null +++ b/pirulug/img/ajax_clock_small.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/pirulug/img/arrow_ltr.png b/pirulug/img/arrow_ltr.png new file mode 100644 index 0000000000..16bb98ed57 Binary files /dev/null and b/pirulug/img/arrow_ltr.png differ diff --git a/pirulug/img/arrow_rtl.png b/pirulug/img/arrow_rtl.png new file mode 100644 index 0000000000..b526c4ac96 Binary files /dev/null and b/pirulug/img/arrow_rtl.png differ diff --git a/pirulug/img/asc_order.png b/pirulug/img/asc_order.png new file mode 100644 index 0000000000..5a1eaac32f Binary files /dev/null and b/pirulug/img/asc_order.png differ diff --git a/pirulug/img/b_bookmark.png b/pirulug/img/b_bookmark.png new file mode 100644 index 0000000000..d302bdc330 Binary files /dev/null and b/pirulug/img/b_bookmark.png differ diff --git a/pirulug/img/b_browse.png b/pirulug/img/b_browse.png new file mode 100644 index 0000000000..94ac8b92ae Binary files /dev/null and b/pirulug/img/b_browse.png differ diff --git a/pirulug/img/b_calendar.png b/pirulug/img/b_calendar.png new file mode 100644 index 0000000000..fc51d731c6 Binary files /dev/null and b/pirulug/img/b_calendar.png differ diff --git a/pirulug/img/b_chart.png b/pirulug/img/b_chart.png new file mode 100644 index 0000000000..557d726244 Binary files /dev/null and b/pirulug/img/b_chart.png differ diff --git a/pirulug/img/b_close.png b/pirulug/img/b_close.png new file mode 100644 index 0000000000..477e7a62b4 Binary files /dev/null and b/pirulug/img/b_close.png differ diff --git a/pirulug/img/b_column_add.png b/pirulug/img/b_column_add.png new file mode 100644 index 0000000000..5c884f1e43 Binary files /dev/null and b/pirulug/img/b_column_add.png differ diff --git a/pirulug/img/b_comment.png b/pirulug/img/b_comment.png new file mode 100644 index 0000000000..bd6be5fb12 Binary files /dev/null and b/pirulug/img/b_comment.png differ diff --git a/pirulug/img/b_dbstatistics.png b/pirulug/img/b_dbstatistics.png new file mode 100644 index 0000000000..557d726244 Binary files /dev/null and b/pirulug/img/b_dbstatistics.png differ diff --git a/pirulug/img/b_deltbl.png b/pirulug/img/b_deltbl.png new file mode 100644 index 0000000000..feee038fee Binary files /dev/null and b/pirulug/img/b_deltbl.png differ diff --git a/pirulug/img/b_docs.png b/pirulug/img/b_docs.png new file mode 100644 index 0000000000..2a51cb7cf8 Binary files /dev/null and b/pirulug/img/b_docs.png differ diff --git a/pirulug/img/b_docsql.png b/pirulug/img/b_docsql.png new file mode 100644 index 0000000000..1d33afab4b Binary files /dev/null and b/pirulug/img/b_docsql.png differ diff --git a/pirulug/img/b_drop.png b/pirulug/img/b_drop.png new file mode 100644 index 0000000000..8f730574ac Binary files /dev/null and b/pirulug/img/b_drop.png differ diff --git a/pirulug/img/b_edit.png b/pirulug/img/b_edit.png new file mode 100644 index 0000000000..fc0e175f3f Binary files /dev/null and b/pirulug/img/b_edit.png differ diff --git a/pirulug/img/b_empty.png b/pirulug/img/b_empty.png new file mode 100644 index 0000000000..c9c42bf793 Binary files /dev/null and b/pirulug/img/b_empty.png differ diff --git a/pirulug/img/b_engine.png b/pirulug/img/b_engine.png new file mode 100644 index 0000000000..6f0d8ffd8e Binary files /dev/null and b/pirulug/img/b_engine.png differ diff --git a/pirulug/img/b_event_add.png b/pirulug/img/b_event_add.png new file mode 100644 index 0000000000..27e2edb5ea Binary files /dev/null and b/pirulug/img/b_event_add.png differ diff --git a/pirulug/img/b_events.png b/pirulug/img/b_events.png new file mode 100644 index 0000000000..ab3fc1192f Binary files /dev/null and b/pirulug/img/b_events.png differ diff --git a/pirulug/img/b_export.png b/pirulug/img/b_export.png new file mode 100644 index 0000000000..bc5087b2e0 Binary files /dev/null and b/pirulug/img/b_export.png differ diff --git a/pirulug/img/b_favorite.png b/pirulug/img/b_favorite.png new file mode 100644 index 0000000000..31c493fe03 Binary files /dev/null and b/pirulug/img/b_favorite.png differ diff --git a/pirulug/img/b_find_replace.png b/pirulug/img/b_find_replace.png new file mode 100644 index 0000000000..3668c366e2 Binary files /dev/null and b/pirulug/img/b_find_replace.png differ diff --git a/pirulug/img/b_firstpage.png b/pirulug/img/b_firstpage.png new file mode 100644 index 0000000000..86f3aa08a2 Binary files /dev/null and b/pirulug/img/b_firstpage.png differ diff --git a/pirulug/img/b_ftext.png b/pirulug/img/b_ftext.png new file mode 100644 index 0000000000..b8b2a25ee3 Binary files /dev/null and b/pirulug/img/b_ftext.png differ diff --git a/pirulug/img/b_globe.png b/pirulug/img/b_globe.png new file mode 100644 index 0000000000..5c9fd1bc9f Binary files /dev/null and b/pirulug/img/b_globe.png differ diff --git a/pirulug/img/b_group.png b/pirulug/img/b_group.png new file mode 100644 index 0000000000..1fda269043 Binary files /dev/null and b/pirulug/img/b_group.png differ diff --git a/pirulug/img/b_help.png b/pirulug/img/b_help.png new file mode 100644 index 0000000000..2a51cb7cf8 Binary files /dev/null and b/pirulug/img/b_help.png differ diff --git a/pirulug/img/b_home.png b/pirulug/img/b_home.png new file mode 100644 index 0000000000..89c55478bc Binary files /dev/null and b/pirulug/img/b_home.png differ diff --git a/pirulug/img/b_import.png b/pirulug/img/b_import.png new file mode 100644 index 0000000000..234400cea1 Binary files /dev/null and b/pirulug/img/b_import.png differ diff --git a/pirulug/img/b_index.png b/pirulug/img/b_index.png new file mode 100644 index 0000000000..601f9f8beb Binary files /dev/null and b/pirulug/img/b_index.png differ diff --git a/pirulug/img/b_index_add.png b/pirulug/img/b_index_add.png new file mode 100644 index 0000000000..8230f4e904 Binary files /dev/null and b/pirulug/img/b_index_add.png differ diff --git a/pirulug/img/b_inline_edit.png b/pirulug/img/b_inline_edit.png new file mode 100644 index 0000000000..09688cde73 Binary files /dev/null and b/pirulug/img/b_inline_edit.png differ diff --git a/pirulug/img/b_insrow.png b/pirulug/img/b_insrow.png new file mode 100644 index 0000000000..569b999d50 Binary files /dev/null and b/pirulug/img/b_insrow.png differ diff --git a/pirulug/img/b_key.png b/pirulug/img/b_key.png new file mode 100644 index 0000000000..dac3fed81e Binary files /dev/null and b/pirulug/img/b_key.png differ diff --git a/pirulug/img/b_lastpage.png b/pirulug/img/b_lastpage.png new file mode 100644 index 0000000000..86f3aa08a2 Binary files /dev/null and b/pirulug/img/b_lastpage.png differ diff --git a/pirulug/img/b_left.png b/pirulug/img/b_left.png new file mode 100644 index 0000000000..0e00e4acf2 Binary files /dev/null and b/pirulug/img/b_left.png differ diff --git a/pirulug/img/b_minus.png b/pirulug/img/b_minus.png new file mode 100644 index 0000000000..d5ba9121d7 Binary files /dev/null and b/pirulug/img/b_minus.png differ diff --git a/pirulug/img/b_more.png b/pirulug/img/b_more.png new file mode 100644 index 0000000000..5a1eaac32f Binary files /dev/null and b/pirulug/img/b_more.png differ diff --git a/pirulug/img/b_move.png b/pirulug/img/b_move.png new file mode 100644 index 0000000000..71b532f4f9 Binary files /dev/null and b/pirulug/img/b_move.png differ diff --git a/pirulug/img/b_newdb.png b/pirulug/img/b_newdb.png new file mode 100644 index 0000000000..ba347b34a8 Binary files /dev/null and b/pirulug/img/b_newdb.png differ diff --git a/pirulug/img/b_newtbl.png b/pirulug/img/b_newtbl.png new file mode 100644 index 0000000000..8b7089e84a Binary files /dev/null and b/pirulug/img/b_newtbl.png differ diff --git a/pirulug/img/b_nextpage.png b/pirulug/img/b_nextpage.png new file mode 100644 index 0000000000..c64890e1b0 Binary files /dev/null and b/pirulug/img/b_nextpage.png differ diff --git a/pirulug/img/b_no_favorite.png b/pirulug/img/b_no_favorite.png new file mode 100644 index 0000000000..e825e46d07 Binary files /dev/null and b/pirulug/img/b_no_favorite.png differ diff --git a/pirulug/img/b_pdfdoc.png b/pirulug/img/b_pdfdoc.png new file mode 100644 index 0000000000..01a7a9d5b3 Binary files /dev/null and b/pirulug/img/b_pdfdoc.png differ diff --git a/pirulug/img/b_plugin.png b/pirulug/img/b_plugin.png new file mode 100644 index 0000000000..1095a83d28 Binary files /dev/null and b/pirulug/img/b_plugin.png differ diff --git a/pirulug/img/b_plus.png b/pirulug/img/b_plus.png new file mode 100644 index 0000000000..0028786c45 Binary files /dev/null and b/pirulug/img/b_plus.png differ diff --git a/pirulug/img/b_prevpage.png b/pirulug/img/b_prevpage.png new file mode 100644 index 0000000000..5ee10af52d Binary files /dev/null and b/pirulug/img/b_prevpage.png differ diff --git a/pirulug/img/b_primary.png b/pirulug/img/b_primary.png new file mode 100644 index 0000000000..050b448ec5 Binary files /dev/null and b/pirulug/img/b_primary.png differ diff --git a/pirulug/img/b_print.png b/pirulug/img/b_print.png new file mode 100644 index 0000000000..e43850970d Binary files /dev/null and b/pirulug/img/b_print.png differ diff --git a/pirulug/img/b_props.png b/pirulug/img/b_props.png new file mode 100644 index 0000000000..072c543b47 Binary files /dev/null and b/pirulug/img/b_props.png differ diff --git a/pirulug/img/b_relations.png b/pirulug/img/b_relations.png new file mode 100644 index 0000000000..d03d3d54e0 Binary files /dev/null and b/pirulug/img/b_relations.png differ diff --git a/pirulug/img/b_rename.png b/pirulug/img/b_rename.png new file mode 100644 index 0000000000..c69838e25e Binary files /dev/null and b/pirulug/img/b_rename.png differ diff --git a/pirulug/img/b_report.png b/pirulug/img/b_report.png new file mode 100644 index 0000000000..40aecbbf3a Binary files /dev/null and b/pirulug/img/b_report.png differ diff --git a/pirulug/img/b_right.png b/pirulug/img/b_right.png new file mode 100644 index 0000000000..871b7989db Binary files /dev/null and b/pirulug/img/b_right.png differ diff --git a/pirulug/img/b_routine_add.png b/pirulug/img/b_routine_add.png new file mode 100644 index 0000000000..3ff3071a53 Binary files /dev/null and b/pirulug/img/b_routine_add.png differ diff --git a/pirulug/img/b_routines.png b/pirulug/img/b_routines.png new file mode 100644 index 0000000000..3edba1bce0 Binary files /dev/null and b/pirulug/img/b_routines.png differ diff --git a/pirulug/img/b_save.png b/pirulug/img/b_save.png new file mode 100644 index 0000000000..b46fd72b79 Binary files /dev/null and b/pirulug/img/b_save.png differ diff --git a/pirulug/img/b_saveimage.png b/pirulug/img/b_saveimage.png new file mode 100644 index 0000000000..b6e0e7c773 Binary files /dev/null and b/pirulug/img/b_saveimage.png differ diff --git a/pirulug/img/b_sbrowse.png b/pirulug/img/b_sbrowse.png new file mode 100644 index 0000000000..94ac8b92ae Binary files /dev/null and b/pirulug/img/b_sbrowse.png differ diff --git a/pirulug/img/b_sdb.png b/pirulug/img/b_sdb.png new file mode 100644 index 0000000000..ceb793495f Binary files /dev/null and b/pirulug/img/b_sdb.png differ diff --git a/pirulug/img/b_search.png b/pirulug/img/b_search.png new file mode 100644 index 0000000000..22278fe435 Binary files /dev/null and b/pirulug/img/b_search.png differ diff --git a/pirulug/img/b_select.png b/pirulug/img/b_select.png new file mode 100644 index 0000000000..6168b29cd6 Binary files /dev/null and b/pirulug/img/b_select.png differ diff --git a/pirulug/img/b_snewtbl.png b/pirulug/img/b_snewtbl.png new file mode 100644 index 0000000000..dc99034d42 Binary files /dev/null and b/pirulug/img/b_snewtbl.png differ diff --git a/pirulug/img/b_spatial.png b/pirulug/img/b_spatial.png new file mode 100644 index 0000000000..6498e45192 Binary files /dev/null and b/pirulug/img/b_spatial.png differ diff --git a/pirulug/img/b_sql.png b/pirulug/img/b_sql.png new file mode 100644 index 0000000000..952e469031 Binary files /dev/null and b/pirulug/img/b_sql.png differ diff --git a/pirulug/img/b_sqldoc.png b/pirulug/img/b_sqldoc.png new file mode 100644 index 0000000000..1d33afab4b Binary files /dev/null and b/pirulug/img/b_sqldoc.png differ diff --git a/pirulug/img/b_sqlhelp.png b/pirulug/img/b_sqlhelp.png new file mode 100644 index 0000000000..030a08db70 Binary files /dev/null and b/pirulug/img/b_sqlhelp.png differ diff --git a/pirulug/img/b_table_add.png b/pirulug/img/b_table_add.png new file mode 100644 index 0000000000..88d92b60ff Binary files /dev/null and b/pirulug/img/b_table_add.png differ diff --git a/pirulug/img/b_table_add2.png b/pirulug/img/b_table_add2.png new file mode 100644 index 0000000000..fac46882b6 Binary files /dev/null and b/pirulug/img/b_table_add2.png differ diff --git a/pirulug/img/b_tblanalyse.png b/pirulug/img/b_tblanalyse.png new file mode 100644 index 0000000000..2a78cbb6bf Binary files /dev/null and b/pirulug/img/b_tblanalyse.png differ diff --git a/pirulug/img/b_tblexport.png b/pirulug/img/b_tblexport.png new file mode 100644 index 0000000000..bc5087b2e0 Binary files /dev/null and b/pirulug/img/b_tblexport.png differ diff --git a/pirulug/img/b_tblimport.png b/pirulug/img/b_tblimport.png new file mode 100644 index 0000000000..234400cea1 Binary files /dev/null and b/pirulug/img/b_tblimport.png differ diff --git a/pirulug/img/b_tblops.png b/pirulug/img/b_tblops.png new file mode 100644 index 0000000000..ec15e659a0 Binary files /dev/null and b/pirulug/img/b_tblops.png differ diff --git a/pirulug/img/b_tbloptimize.png b/pirulug/img/b_tbloptimize.png new file mode 100644 index 0000000000..43bb7ceb3d Binary files /dev/null and b/pirulug/img/b_tbloptimize.png differ diff --git a/pirulug/img/b_tipp.png b/pirulug/img/b_tipp.png new file mode 100644 index 0000000000..b95d3404fe Binary files /dev/null and b/pirulug/img/b_tipp.png differ diff --git a/pirulug/img/b_trigger_add.png b/pirulug/img/b_trigger_add.png new file mode 100644 index 0000000000..378995d420 Binary files /dev/null and b/pirulug/img/b_trigger_add.png differ diff --git a/pirulug/img/b_triggers.png b/pirulug/img/b_triggers.png new file mode 100644 index 0000000000..5b972977ea Binary files /dev/null and b/pirulug/img/b_triggers.png differ diff --git a/pirulug/img/b_undo.png b/pirulug/img/b_undo.png new file mode 100644 index 0000000000..ac4bd8cc07 Binary files /dev/null and b/pirulug/img/b_undo.png differ diff --git a/pirulug/img/b_unique.png b/pirulug/img/b_unique.png new file mode 100644 index 0000000000..94a520f05e Binary files /dev/null and b/pirulug/img/b_unique.png differ diff --git a/pirulug/img/b_usradd.png b/pirulug/img/b_usradd.png new file mode 100644 index 0000000000..62c09aff50 Binary files /dev/null and b/pirulug/img/b_usradd.png differ diff --git a/pirulug/img/b_usrcheck.png b/pirulug/img/b_usrcheck.png new file mode 100644 index 0000000000..a7d33407d8 Binary files /dev/null and b/pirulug/img/b_usrcheck.png differ diff --git a/pirulug/img/b_usrdrop.png b/pirulug/img/b_usrdrop.png new file mode 100644 index 0000000000..3e22b954a8 Binary files /dev/null and b/pirulug/img/b_usrdrop.png differ diff --git a/pirulug/img/b_usredit.png b/pirulug/img/b_usredit.png new file mode 100644 index 0000000000..4926b740d4 Binary files /dev/null and b/pirulug/img/b_usredit.png differ diff --git a/pirulug/img/b_usrlist.png b/pirulug/img/b_usrlist.png new file mode 100644 index 0000000000..0b3e6b508b Binary files /dev/null and b/pirulug/img/b_usrlist.png differ diff --git a/pirulug/img/b_versions.png b/pirulug/img/b_versions.png new file mode 100644 index 0000000000..4ab7c63dc2 Binary files /dev/null and b/pirulug/img/b_versions.png differ diff --git a/pirulug/img/b_view.png b/pirulug/img/b_view.png new file mode 100644 index 0000000000..4191857edf Binary files /dev/null and b/pirulug/img/b_view.png differ diff --git a/pirulug/img/b_view_add.png b/pirulug/img/b_view_add.png new file mode 100644 index 0000000000..75eb64fa1d Binary files /dev/null and b/pirulug/img/b_view_add.png differ diff --git a/pirulug/img/b_views.png b/pirulug/img/b_views.png new file mode 100644 index 0000000000..c49713587a Binary files /dev/null and b/pirulug/img/b_views.png differ diff --git a/pirulug/img/bd_browse.png b/pirulug/img/bd_browse.png new file mode 100644 index 0000000000..295f53663f Binary files /dev/null and b/pirulug/img/bd_browse.png differ diff --git a/pirulug/img/bd_deltbl.png b/pirulug/img/bd_deltbl.png new file mode 100644 index 0000000000..7dafff6cfd Binary files /dev/null and b/pirulug/img/bd_deltbl.png differ diff --git a/pirulug/img/bd_drop.png b/pirulug/img/bd_drop.png new file mode 100644 index 0000000000..a634fcdfd2 Binary files /dev/null and b/pirulug/img/bd_drop.png differ diff --git a/pirulug/img/bd_edit.png b/pirulug/img/bd_edit.png new file mode 100644 index 0000000000..589c676fd6 Binary files /dev/null and b/pirulug/img/bd_edit.png differ diff --git a/pirulug/img/bd_empty.png b/pirulug/img/bd_empty.png new file mode 100644 index 0000000000..ebd7354c91 Binary files /dev/null and b/pirulug/img/bd_empty.png differ diff --git a/pirulug/img/bd_export.png b/pirulug/img/bd_export.png new file mode 100644 index 0000000000..59c40cafff Binary files /dev/null and b/pirulug/img/bd_export.png differ diff --git a/pirulug/img/bd_firstpage.png b/pirulug/img/bd_firstpage.png new file mode 100644 index 0000000000..4bd68961dc Binary files /dev/null and b/pirulug/img/bd_firstpage.png differ diff --git a/pirulug/img/bd_ftext.png b/pirulug/img/bd_ftext.png new file mode 100644 index 0000000000..e21b97ed22 Binary files /dev/null and b/pirulug/img/bd_ftext.png differ diff --git a/pirulug/img/bd_index.png b/pirulug/img/bd_index.png new file mode 100644 index 0000000000..b59d0225ff Binary files /dev/null and b/pirulug/img/bd_index.png differ diff --git a/pirulug/img/bd_insrow.png b/pirulug/img/bd_insrow.png new file mode 100644 index 0000000000..ecdf09ff23 Binary files /dev/null and b/pirulug/img/bd_insrow.png differ diff --git a/pirulug/img/bd_lastpage.png b/pirulug/img/bd_lastpage.png new file mode 100644 index 0000000000..06b57c395b Binary files /dev/null and b/pirulug/img/bd_lastpage.png differ diff --git a/pirulug/img/bd_nextpage.png b/pirulug/img/bd_nextpage.png new file mode 100644 index 0000000000..1b0deaf323 Binary files /dev/null and b/pirulug/img/bd_nextpage.png differ diff --git a/pirulug/img/bd_prevpage.png b/pirulug/img/bd_prevpage.png new file mode 100644 index 0000000000..caf8e43f76 Binary files /dev/null and b/pirulug/img/bd_prevpage.png differ diff --git a/pirulug/img/bd_primary.png b/pirulug/img/bd_primary.png new file mode 100644 index 0000000000..dac3fed81e Binary files /dev/null and b/pirulug/img/bd_primary.png differ diff --git a/pirulug/img/bd_routine_add.png b/pirulug/img/bd_routine_add.png new file mode 100644 index 0000000000..3aa33988a5 Binary files /dev/null and b/pirulug/img/bd_routine_add.png differ diff --git a/pirulug/img/bd_sbrowse.png b/pirulug/img/bd_sbrowse.png new file mode 100644 index 0000000000..295f53663f Binary files /dev/null and b/pirulug/img/bd_sbrowse.png differ diff --git a/pirulug/img/bd_select.png b/pirulug/img/bd_select.png new file mode 100644 index 0000000000..85c9e0ef0b Binary files /dev/null and b/pirulug/img/bd_select.png differ diff --git a/pirulug/img/bd_spatial.png b/pirulug/img/bd_spatial.png new file mode 100644 index 0000000000..ea16fedf15 Binary files /dev/null and b/pirulug/img/bd_spatial.png differ diff --git a/pirulug/img/bd_unique.png b/pirulug/img/bd_unique.png new file mode 100644 index 0000000000..ebacdf49bb Binary files /dev/null and b/pirulug/img/bd_unique.png differ diff --git a/pirulug/img/centralColumns.png b/pirulug/img/centralColumns.png new file mode 100644 index 0000000000..ae612a25ea Binary files /dev/null and b/pirulug/img/centralColumns.png differ diff --git a/pirulug/img/centralColumns_add.png b/pirulug/img/centralColumns_add.png new file mode 100644 index 0000000000..227d86cfa3 Binary files /dev/null and b/pirulug/img/centralColumns_add.png differ diff --git a/pirulug/img/centralColumns_delete.png b/pirulug/img/centralColumns_delete.png new file mode 100644 index 0000000000..ed170fafd0 Binary files /dev/null and b/pirulug/img/centralColumns_delete.png differ diff --git a/pirulug/img/col_drop.png b/pirulug/img/col_drop.png new file mode 100644 index 0000000000..5a1eaac32f Binary files /dev/null and b/pirulug/img/col_drop.png differ diff --git a/pirulug/img/col_pointer.png b/pirulug/img/col_pointer.png new file mode 100644 index 0000000000..00d78c7ca5 Binary files /dev/null and b/pirulug/img/col_pointer.png differ diff --git a/pirulug/img/console.png b/pirulug/img/console.png new file mode 100644 index 0000000000..1666ff6722 Binary files /dev/null and b/pirulug/img/console.png differ diff --git a/pirulug/img/dark/user.svg b/pirulug/img/dark/user.svg new file mode 100644 index 0000000000..7bb010c472 --- /dev/null +++ b/pirulug/img/dark/user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/pirulug/img/database.png b/pirulug/img/database.png new file mode 100644 index 0000000000..9a6515418b Binary files /dev/null and b/pirulug/img/database.png differ diff --git a/pirulug/img/east-mini.png b/pirulug/img/east-mini.png new file mode 100644 index 0000000000..871b7989db Binary files /dev/null and b/pirulug/img/east-mini.png differ diff --git a/pirulug/img/error.ico b/pirulug/img/error.ico new file mode 100644 index 0000000000..2c6cbcf602 Binary files /dev/null and b/pirulug/img/error.ico differ diff --git a/pirulug/img/eye.png b/pirulug/img/eye.png new file mode 100644 index 0000000000..f00b2d4503 Binary files /dev/null and b/pirulug/img/eye.png differ diff --git a/pirulug/img/eye_grey.png b/pirulug/img/eye_grey.png new file mode 100644 index 0000000000..8b9a481e06 Binary files /dev/null and b/pirulug/img/eye_grey.png differ diff --git a/pirulug/img/hide.png b/pirulug/img/hide.png new file mode 100644 index 0000000000..fdb9bc360f Binary files /dev/null and b/pirulug/img/hide.png differ diff --git a/pirulug/img/item.png b/pirulug/img/item.png new file mode 100644 index 0000000000..3bc672075b Binary files /dev/null and b/pirulug/img/item.png differ diff --git a/pirulug/img/left-square.png b/pirulug/img/left-square.png new file mode 100644 index 0000000000..305096009c Binary files /dev/null and b/pirulug/img/left-square.png differ diff --git a/pirulug/img/lightbulb.png b/pirulug/img/lightbulb.png new file mode 100644 index 0000000000..b95d3404fe Binary files /dev/null and b/pirulug/img/lightbulb.png differ diff --git a/pirulug/img/lightbulb_off.png b/pirulug/img/lightbulb_off.png new file mode 100644 index 0000000000..7000ebe1d1 Binary files /dev/null and b/pirulug/img/lightbulb_off.png differ diff --git a/pirulug/img/loading.svg b/pirulug/img/loading.svg new file mode 100644 index 0000000000..0cce444ec0 --- /dev/null +++ b/pirulug/img/loading.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/pirulug/img/logo_left.png b/pirulug/img/logo_left.png new file mode 100644 index 0000000000..004e7050fe Binary files /dev/null and b/pirulug/img/logo_left.png differ diff --git a/pirulug/img/logo_right.png b/pirulug/img/logo_right.png new file mode 100644 index 0000000000..a490289105 Binary files /dev/null and b/pirulug/img/logo_right.png differ diff --git a/pirulug/img/more.png b/pirulug/img/more.png new file mode 100644 index 0000000000..5a1eaac32f Binary files /dev/null and b/pirulug/img/more.png differ diff --git a/pirulug/img/new_data.png b/pirulug/img/new_data.png new file mode 100644 index 0000000000..c173bc0343 Binary files /dev/null and b/pirulug/img/new_data.png differ diff --git a/pirulug/img/new_data_hovered.png b/pirulug/img/new_data_hovered.png new file mode 100644 index 0000000000..73b09a6327 Binary files /dev/null and b/pirulug/img/new_data_hovered.png differ diff --git a/pirulug/img/new_data_selected.png b/pirulug/img/new_data_selected.png new file mode 100644 index 0000000000..a75abe347d Binary files /dev/null and b/pirulug/img/new_data_selected.png differ diff --git a/pirulug/img/new_data_selected_hovered.png b/pirulug/img/new_data_selected_hovered.png new file mode 100644 index 0000000000..7091ae36de Binary files /dev/null and b/pirulug/img/new_data_selected_hovered.png differ diff --git a/pirulug/img/new_struct.png b/pirulug/img/new_struct.png new file mode 100644 index 0000000000..79fe646c10 Binary files /dev/null and b/pirulug/img/new_struct.png differ diff --git a/pirulug/img/new_struct_hovered.png b/pirulug/img/new_struct_hovered.png new file mode 100644 index 0000000000..b29aaed324 Binary files /dev/null and b/pirulug/img/new_struct_hovered.png differ diff --git a/pirulug/img/new_struct_selected.png b/pirulug/img/new_struct_selected.png new file mode 100644 index 0000000000..bc61749afb Binary files /dev/null and b/pirulug/img/new_struct_selected.png differ diff --git a/pirulug/img/new_struct_selected_hovered.png b/pirulug/img/new_struct_selected_hovered.png new file mode 100644 index 0000000000..9a82bc4223 Binary files /dev/null and b/pirulug/img/new_struct_selected_hovered.png differ diff --git a/pirulug/img/normalize.png b/pirulug/img/normalize.png new file mode 100644 index 0000000000..b5706ce62e Binary files /dev/null and b/pirulug/img/normalize.png differ diff --git a/pirulug/img/north-mini.png b/pirulug/img/north-mini.png new file mode 100644 index 0000000000..fec859415a Binary files /dev/null and b/pirulug/img/north-mini.png differ diff --git a/pirulug/img/pause.png b/pirulug/img/pause.png new file mode 100644 index 0000000000..50ebf7e375 Binary files /dev/null and b/pirulug/img/pause.png differ diff --git a/pirulug/img/php_sym.png b/pirulug/img/php_sym.png new file mode 100644 index 0000000000..b541e3c195 Binary files /dev/null and b/pirulug/img/php_sym.png differ diff --git a/pirulug/img/play.png b/pirulug/img/play.png new file mode 100644 index 0000000000..5987ce896d Binary files /dev/null and b/pirulug/img/play.png differ diff --git a/pirulug/img/pma_logo2.png b/pirulug/img/pma_logo2.png new file mode 100644 index 0000000000..004e7050fe Binary files /dev/null and b/pirulug/img/pma_logo2.png differ diff --git a/pirulug/img/right-square.png b/pirulug/img/right-square.png new file mode 100644 index 0000000000..084970ca81 Binary files /dev/null and b/pirulug/img/right-square.png differ diff --git a/pirulug/img/s_asc.png b/pirulug/img/s_asc.png new file mode 100644 index 0000000000..fec859415a Binary files /dev/null and b/pirulug/img/s_asc.png differ diff --git a/pirulug/img/s_asci.png b/pirulug/img/s_asci.png new file mode 100644 index 0000000000..f98f04964e Binary files /dev/null and b/pirulug/img/s_asci.png differ diff --git a/pirulug/img/s_attention.png b/pirulug/img/s_attention.png new file mode 100644 index 0000000000..624013fe0b Binary files /dev/null and b/pirulug/img/s_attention.png differ diff --git a/pirulug/img/s_cancel.png b/pirulug/img/s_cancel.png new file mode 100644 index 0000000000..d7b0097cad Binary files /dev/null and b/pirulug/img/s_cancel.png differ diff --git a/pirulug/img/s_cancel2.png b/pirulug/img/s_cancel2.png new file mode 100644 index 0000000000..8f730574ac Binary files /dev/null and b/pirulug/img/s_cancel2.png differ diff --git a/pirulug/img/s_cog.png b/pirulug/img/s_cog.png new file mode 100644 index 0000000000..4857d8716d Binary files /dev/null and b/pirulug/img/s_cog.png differ diff --git a/pirulug/img/s_collapseall.png b/pirulug/img/s_collapseall.png new file mode 100644 index 0000000000..daf126ed9f Binary files /dev/null and b/pirulug/img/s_collapseall.png differ diff --git a/pirulug/img/s_db.png b/pirulug/img/s_db.png new file mode 100644 index 0000000000..9a6515418b Binary files /dev/null and b/pirulug/img/s_db.png differ diff --git a/pirulug/img/s_desc.png b/pirulug/img/s_desc.png new file mode 100644 index 0000000000..5a1eaac32f Binary files /dev/null and b/pirulug/img/s_desc.png differ diff --git a/pirulug/img/s_error.png b/pirulug/img/s_error.png new file mode 100644 index 0000000000..b6eaea777c Binary files /dev/null and b/pirulug/img/s_error.png differ diff --git a/pirulug/img/s_fulltext.png b/pirulug/img/s_fulltext.png new file mode 100644 index 0000000000..66d713a449 Binary files /dev/null and b/pirulug/img/s_fulltext.png differ diff --git a/pirulug/img/s_host.png b/pirulug/img/s_host.png new file mode 100644 index 0000000000..5b4db1cab7 Binary files /dev/null and b/pirulug/img/s_host.png differ diff --git a/pirulug/img/s_info.png b/pirulug/img/s_info.png new file mode 100644 index 0000000000..d829651a8c Binary files /dev/null and b/pirulug/img/s_info.png differ diff --git a/pirulug/img/s_lang.png b/pirulug/img/s_lang.png new file mode 100644 index 0000000000..de860be014 Binary files /dev/null and b/pirulug/img/s_lang.png differ diff --git a/pirulug/img/s_link.png b/pirulug/img/s_link.png new file mode 100644 index 0000000000..6610ab5679 Binary files /dev/null and b/pirulug/img/s_link.png differ diff --git a/pirulug/img/s_lock.png b/pirulug/img/s_lock.png new file mode 100644 index 0000000000..baa79acf05 Binary files /dev/null and b/pirulug/img/s_lock.png differ diff --git a/pirulug/img/s_loggoff.png b/pirulug/img/s_loggoff.png new file mode 100644 index 0000000000..234968f892 Binary files /dev/null and b/pirulug/img/s_loggoff.png differ diff --git a/pirulug/img/s_notice.png b/pirulug/img/s_notice.png new file mode 100644 index 0000000000..624013fe0b Binary files /dev/null and b/pirulug/img/s_notice.png differ diff --git a/pirulug/img/s_okay.png b/pirulug/img/s_okay.png new file mode 100644 index 0000000000..bb025b38a9 Binary files /dev/null and b/pirulug/img/s_okay.png differ diff --git a/pirulug/img/s_partialtext.png b/pirulug/img/s_partialtext.png new file mode 100644 index 0000000000..e7ae36c49c Binary files /dev/null and b/pirulug/img/s_partialtext.png differ diff --git a/pirulug/img/s_passwd.png b/pirulug/img/s_passwd.png new file mode 100644 index 0000000000..841149e9ab Binary files /dev/null and b/pirulug/img/s_passwd.png differ diff --git a/pirulug/img/s_process.png b/pirulug/img/s_process.png new file mode 100644 index 0000000000..4857d8716d Binary files /dev/null and b/pirulug/img/s_process.png differ diff --git a/pirulug/img/s_really.png b/pirulug/img/s_really.png new file mode 100644 index 0000000000..d9798a2d08 Binary files /dev/null and b/pirulug/img/s_really.png differ diff --git a/pirulug/img/s_reload.png b/pirulug/img/s_reload.png new file mode 100644 index 0000000000..961adbf9b7 Binary files /dev/null and b/pirulug/img/s_reload.png differ diff --git a/pirulug/img/s_replication.png b/pirulug/img/s_replication.png new file mode 100644 index 0000000000..c5c5a5c540 Binary files /dev/null and b/pirulug/img/s_replication.png differ diff --git a/pirulug/img/s_rights.png b/pirulug/img/s_rights.png new file mode 100644 index 0000000000..3b4dadd453 Binary files /dev/null and b/pirulug/img/s_rights.png differ diff --git a/pirulug/img/s_sortable.png b/pirulug/img/s_sortable.png new file mode 100644 index 0000000000..f6b886277b Binary files /dev/null and b/pirulug/img/s_sortable.png differ diff --git a/pirulug/img/s_status.png b/pirulug/img/s_status.png new file mode 100644 index 0000000000..b06b826589 Binary files /dev/null and b/pirulug/img/s_status.png differ diff --git a/pirulug/img/s_success.png b/pirulug/img/s_success.png new file mode 100644 index 0000000000..f249630491 Binary files /dev/null and b/pirulug/img/s_success.png differ diff --git a/pirulug/img/s_sync.png b/pirulug/img/s_sync.png new file mode 100644 index 0000000000..17cb6a7759 Binary files /dev/null and b/pirulug/img/s_sync.png differ diff --git a/pirulug/img/s_tbl.png b/pirulug/img/s_tbl.png new file mode 100644 index 0000000000..94ac8b92ae Binary files /dev/null and b/pirulug/img/s_tbl.png differ diff --git a/pirulug/img/s_theme.png b/pirulug/img/s_theme.png new file mode 100644 index 0000000000..e966d880ad Binary files /dev/null and b/pirulug/img/s_theme.png differ diff --git a/pirulug/img/s_top.png b/pirulug/img/s_top.png new file mode 100644 index 0000000000..eb1a6758d3 Binary files /dev/null and b/pirulug/img/s_top.png differ diff --git a/pirulug/img/s_unlink.png b/pirulug/img/s_unlink.png new file mode 100644 index 0000000000..957507b7c1 Binary files /dev/null and b/pirulug/img/s_unlink.png differ diff --git a/pirulug/img/s_vars.png b/pirulug/img/s_vars.png new file mode 100644 index 0000000000..9f7ecd22cb Binary files /dev/null and b/pirulug/img/s_vars.png differ diff --git a/pirulug/img/s_views.png b/pirulug/img/s_views.png new file mode 100644 index 0000000000..8badf8c5b6 Binary files /dev/null and b/pirulug/img/s_views.png differ diff --git a/pirulug/img/show.png b/pirulug/img/show.png new file mode 100644 index 0000000000..05b3773bc6 Binary files /dev/null and b/pirulug/img/show.png differ diff --git a/pirulug/img/south-mini.png b/pirulug/img/south-mini.png new file mode 100644 index 0000000000..5a1eaac32f Binary files /dev/null and b/pirulug/img/south-mini.png differ diff --git a/pirulug/img/spacer.png b/pirulug/img/spacer.png new file mode 100644 index 0000000000..240ca4f8d4 Binary files /dev/null and b/pirulug/img/spacer.png differ diff --git a/pirulug/img/toggle-ltr.png b/pirulug/img/toggle-ltr.png new file mode 100644 index 0000000000..2dd681f6cb Binary files /dev/null and b/pirulug/img/toggle-ltr.png differ diff --git a/pirulug/img/toggle-rtl.png b/pirulug/img/toggle-rtl.png new file mode 100644 index 0000000000..a50f5bb320 Binary files /dev/null and b/pirulug/img/toggle-rtl.png differ diff --git a/pirulug/img/user.svg b/pirulug/img/user.svg new file mode 100644 index 0000000000..4a82544e22 --- /dev/null +++ b/pirulug/img/user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/pirulug/img/west-mini.png b/pirulug/img/west-mini.png new file mode 100644 index 0000000000..0e00e4acf2 Binary files /dev/null and b/pirulug/img/west-mini.png differ diff --git a/pirulug/img/window-new.png b/pirulug/img/window-new.png new file mode 100644 index 0000000000..00d82e947d Binary files /dev/null and b/pirulug/img/window-new.png differ diff --git a/pirulug/img/zoom-minus-mini.png b/pirulug/img/zoom-minus-mini.png new file mode 100644 index 0000000000..d5ba9121d7 Binary files /dev/null and b/pirulug/img/zoom-minus-mini.png differ diff --git a/pirulug/img/zoom-plus-mini.png b/pirulug/img/zoom-plus-mini.png new file mode 100644 index 0000000000..0028786c45 Binary files /dev/null and b/pirulug/img/zoom-plus-mini.png differ diff --git a/pirulug/img/zoom-world-mini.png b/pirulug/img/zoom-world-mini.png new file mode 100644 index 0000000000..5c9fd1bc9f Binary files /dev/null and b/pirulug/img/zoom-world-mini.png differ diff --git a/pirulug/jquery/images/ui-bg_glass_55_fbf9ee_1x400.png b/pirulug/jquery/images/ui-bg_glass_55_fbf9ee_1x400.png new file mode 100644 index 0000000000..534c590f04 Binary files /dev/null and b/pirulug/jquery/images/ui-bg_glass_55_fbf9ee_1x400.png differ diff --git a/pirulug/jquery/images/ui-bg_glass_65_ffffff_1x400.png b/pirulug/jquery/images/ui-bg_glass_65_ffffff_1x400.png new file mode 100644 index 0000000000..3e56dbdca7 Binary files /dev/null and b/pirulug/jquery/images/ui-bg_glass_65_ffffff_1x400.png differ diff --git a/pirulug/jquery/images/ui-bg_glass_75_dadada_1x400.png b/pirulug/jquery/images/ui-bg_glass_75_dadada_1x400.png new file mode 100644 index 0000000000..6b8b33a180 Binary files /dev/null and b/pirulug/jquery/images/ui-bg_glass_75_dadada_1x400.png differ diff --git a/pirulug/jquery/images/ui-bg_glass_75_e6e6e6_1x400.png b/pirulug/jquery/images/ui-bg_glass_75_e6e6e6_1x400.png new file mode 100644 index 0000000000..81e2065be4 Binary files /dev/null and b/pirulug/jquery/images/ui-bg_glass_75_e6e6e6_1x400.png differ diff --git a/pirulug/jquery/images/ui-bg_glass_95_fef1ec_1x400.png b/pirulug/jquery/images/ui-bg_glass_95_fef1ec_1x400.png new file mode 100644 index 0000000000..7172755b8e Binary files /dev/null and b/pirulug/jquery/images/ui-bg_glass_95_fef1ec_1x400.png differ diff --git a/pirulug/jquery/images/ui-bg_highlight-soft_75_cccccc_1x100.png b/pirulug/jquery/images/ui-bg_highlight-soft_75_cccccc_1x100.png new file mode 100644 index 0000000000..ae3ccae06f Binary files /dev/null and b/pirulug/jquery/images/ui-bg_highlight-soft_75_cccccc_1x100.png differ diff --git a/pirulug/jquery/images/ui-icons_222222_256x240.png b/pirulug/jquery/images/ui-icons_222222_256x240.png new file mode 100644 index 0000000000..3201d9a1c8 Binary files /dev/null and b/pirulug/jquery/images/ui-icons_222222_256x240.png differ diff --git a/pirulug/jquery/images/ui-icons_2e83ff_256x240.png b/pirulug/jquery/images/ui-icons_2e83ff_256x240.png new file mode 100644 index 0000000000..1d920d7def Binary files /dev/null and b/pirulug/jquery/images/ui-icons_2e83ff_256x240.png differ diff --git a/pirulug/jquery/images/ui-icons_454545_256x240.png b/pirulug/jquery/images/ui-icons_454545_256x240.png new file mode 100644 index 0000000000..47da8e5dbd Binary files /dev/null and b/pirulug/jquery/images/ui-icons_454545_256x240.png differ diff --git a/pirulug/jquery/images/ui-icons_888888_256x240.png b/pirulug/jquery/images/ui-icons_888888_256x240.png new file mode 100644 index 0000000000..95e0c3ef2e Binary files /dev/null and b/pirulug/jquery/images/ui-icons_888888_256x240.png differ diff --git a/pirulug/jquery/images/ui-icons_cd0a0a_256x240.png b/pirulug/jquery/images/ui-icons_cd0a0a_256x240.png new file mode 100644 index 0000000000..0ea8a5a223 Binary files /dev/null and b/pirulug/jquery/images/ui-icons_cd0a0a_256x240.png differ diff --git a/pirulug/jquery/jquery-ui.css b/pirulug/jquery/jquery-ui.css new file mode 100644 index 0000000000..1ebcbc90e3 --- /dev/null +++ b/pirulug/jquery/jquery-ui.css @@ -0,0 +1,1312 @@ +/*! jQuery UI - v1.12.1 - 2016-12-21 +* http://jqueryui.com +* Includes: draggable.css, core.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css +* To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=smoothness&cornerRadiusShadow=8px&offsetLeftShadow=-8px&offsetTopShadow=-8px&thicknessShadow=8px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=aaaaaa&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cd0a0a&fcError=cd0a0a&borderColorError=cd0a0a&bgImgOpacityError=95&bgTextureError=glass&bgColorError=fef1ec&iconColorHighlight=2e83ff&fcHighlight=363636&borderColorHighlight=fcefa1&bgImgOpacityHighlight=55&bgTextureHighlight=glass&bgColorHighlight=fbf9ee&iconColorActive=454545&fcActive=212121&borderColorActive=aaaaaa&bgImgOpacityActive=65&bgTextureActive=glass&bgColorActive=ffffff&iconColorHover=454545&fcHover=212121&borderColorHover=999999&bgImgOpacityHover=75&bgTextureHover=glass&bgColorHover=dadada&iconColorDefault=888888&fcDefault=555555&borderColorDefault=d3d3d3&bgImgOpacityDefault=75&bgTextureDefault=glass&bgColorDefault=e6e6e6&iconColorContent=222222&fcContent=222222&borderColorContent=aaaaaa&bgImgOpacityContent=75&bgTextureContent=flat&bgColorContent=ffffff&iconColorHeader=222222&fcHeader=222222&borderColorHeader=aaaaaa&bgImgOpacityHeader=75&bgTextureHeader=highlight_soft&bgColorHeader=cccccc&cornerRadius=4px&fsDefault=1.1em&fwDefault=normal&ffDefault=Verdana%2CArial%2Csans-serif +* Copyright jQuery Foundation and other contributors; Licensed MIT */ + +.ui-draggable-handle { + -ms-touch-action: none; + touch-action: none; +} +/* Layout helpers +----------------------------------*/ +.ui-helper-hidden { + display: none; +} +.ui-helper-hidden-accessible { + border: 0; + clip: rect(0 0 0 0); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; +} +.ui-helper-reset { + margin: 0; + padding: 0; + border: 0; + outline: 0; + line-height: 1.3; + text-decoration: none; + font-size: 100%; + list-style: none; +} +.ui-helper-clearfix:before, +.ui-helper-clearfix:after { + content: ""; + display: table; + border-collapse: collapse; +} +.ui-helper-clearfix:after { + clear: both; +} +.ui-helper-zfix { + width: 100%; + height: 100%; + top: 0; + left: 0; + position: absolute; + opacity: 0; + filter:Alpha(Opacity=0); /* support: IE8 */ +} + +.ui-front { + z-index: 100; +} + + +/* Interaction Cues +----------------------------------*/ +.ui-state-disabled { + cursor: default !important; + pointer-events: none; +} + + +/* Icons +----------------------------------*/ +.ui-icon { + display: inline-block; + vertical-align: middle; + margin-top: -.25em; + position: relative; + text-indent: -99999px; + overflow: hidden; + background-repeat: no-repeat; +} + +.ui-widget-icon-block { + left: 50%; + margin-left: -8px; + display: block; +} + +/* Misc visuals +----------------------------------*/ + +/* Overlays */ +.ui-widget-overlay { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; +} +.ui-resizable { + position: relative; +} +.ui-resizable-handle { + position: absolute; + font-size: 0.1px; + display: block; + -ms-touch-action: none; + touch-action: none; +} +.ui-resizable-disabled .ui-resizable-handle, +.ui-resizable-autohide .ui-resizable-handle { + display: none; +} +.ui-resizable-n { + cursor: n-resize; + height: 7px; + width: 100%; + top: -5px; + left: 0; +} +.ui-resizable-s { + cursor: s-resize; + height: 7px; + width: 100%; + bottom: -5px; + left: 0; +} +.ui-resizable-e { + cursor: e-resize; + width: 7px; + right: -5px; + top: 0; + height: 100%; +} +.ui-resizable-w { + cursor: w-resize; + width: 7px; + left: -5px; + top: 0; + height: 100%; +} +.ui-resizable-se { + cursor: se-resize; + width: 12px; + height: 12px; + right: 1px; + bottom: 1px; +} +.ui-resizable-sw { + cursor: sw-resize; + width: 9px; + height: 9px; + left: -5px; + bottom: -5px; +} +.ui-resizable-nw { + cursor: nw-resize; + width: 9px; + height: 9px; + left: -5px; + top: -5px; +} +.ui-resizable-ne { + cursor: ne-resize; + width: 9px; + height: 9px; + right: -5px; + top: -5px; +} +.ui-selectable { + -ms-touch-action: none; + touch-action: none; +} +.ui-selectable-helper { + position: absolute; + z-index: 100; + border: 1px dotted black; +} +.ui-sortable-handle { + -ms-touch-action: none; + touch-action: none; +} +.ui-accordion .ui-accordion-header { + display: block; + cursor: pointer; + position: relative; + margin: 2px 0 0 0; + padding: .5em .5em .5em .7em; + font-size: 100%; +} +.ui-accordion .ui-accordion-content { + padding: 1em 2.2em; + border-top: 0; + overflow: auto; +} +.ui-autocomplete { + position: absolute; + top: 0; + left: 0; + cursor: default; +} +.ui-menu { + list-style: none; + padding: 0; + margin: 0; + display: block; + outline: 0; +} +.ui-menu .ui-menu { + position: absolute; +} +.ui-menu .ui-menu-item { + margin: 0; + cursor: pointer; + /* support: IE10, see #8844 */ + list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"); +} +.ui-menu .ui-menu-item-wrapper { + position: relative; + padding: 3px 1em 3px .4em; +} +.ui-menu .ui-menu-divider { + margin: 5px 0; + height: 0; + font-size: 0; + line-height: 0; + border-width: 1px 0 0 0; +} +.ui-menu .ui-state-focus, +.ui-menu .ui-state-active { + margin: -1px; +} + +/* icon support */ +.ui-menu-icons { + position: relative; +} +.ui-menu-icons .ui-menu-item-wrapper { + padding-left: 2em; +} + +/* left-aligned */ +.ui-menu .ui-icon { + position: absolute; + top: 0; + bottom: 0; + left: .2em; + margin: auto 0; +} + +/* right-aligned */ +.ui-menu .ui-menu-icon { + left: auto; + right: 0; +} +.ui-button { + padding: .4em 1em; + display: inline-block; + position: relative; + line-height: normal; + margin-right: .1em; + cursor: pointer; + vertical-align: middle; + text-align: center; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + + /* Support: IE <= 11 */ + overflow: visible; +} + +.ui-button, +.ui-button:link, +.ui-button:visited, +.ui-button:hover, +.ui-button:active { + text-decoration: none; +} + +/* to make room for the icon, a width needs to be set here */ +.ui-button-icon-only { + width: 2em; + box-sizing: border-box; + text-indent: -9999px; + white-space: nowrap; +} + +/* no icon support for input elements */ +input.ui-button.ui-button-icon-only { + text-indent: 0; +} + +/* button icon element(s) */ +.ui-button-icon-only .ui-icon { + position: absolute; + top: 50%; + left: 50%; + margin-top: -8px; + margin-left: -8px; +} + +.ui-button.ui-icon-notext .ui-icon { + padding: 0; + width: 2.1em; + height: 2.1em; + text-indent: -9999px; + white-space: nowrap; + +} + +input.ui-button.ui-icon-notext .ui-icon { + width: auto; + height: auto; + text-indent: 0; + white-space: normal; + padding: .4em 1em; +} + +/* workarounds */ +/* Support: Firefox 5 - 40 */ +input.ui-button::-moz-focus-inner, +button.ui-button::-moz-focus-inner { + border: 0; + padding: 0; +} +.ui-controlgroup { + vertical-align: middle; + display: inline-block; +} +.ui-controlgroup > .ui-controlgroup-item { + float: left; + margin-left: 0; + margin-right: 0; +} +.ui-controlgroup > .ui-controlgroup-item:focus, +.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus { + z-index: 9999; +} +.ui-controlgroup-vertical > .ui-controlgroup-item { + display: block; + float: none; + width: 100%; + margin-top: 0; + margin-bottom: 0; + text-align: left; +} +.ui-controlgroup-vertical .ui-controlgroup-item { + box-sizing: border-box; +} +.ui-controlgroup .ui-controlgroup-label { + padding: .4em 1em; +} +.ui-controlgroup .ui-controlgroup-label span { + font-size: 80%; +} +.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item { + border-left: none; +} +.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item { + border-top: none; +} +.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content { + border-right: none; +} +.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content { + border-bottom: none; +} + +/* Spinner specific style fixes */ +.ui-controlgroup-vertical .ui-spinner-input { + + /* Support: IE8 only, Android < 4.4 only */ + width: 75%; + width: calc( 100% - 2.4em ); +} +.ui-controlgroup-vertical .ui-spinner .ui-spinner-up { + border-top-style: solid; +} + +.ui-checkboxradio-label .ui-icon-background { + box-shadow: inset 1px 1px 1px #ccc; + border-radius: .12em; + border: none; +} +.ui-checkboxradio-radio-label .ui-icon-background { + width: 16px; + height: 16px; + border-radius: 1em; + overflow: visible; + border: none; +} +.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon, +.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon { + background-image: none; + width: 8px; + height: 8px; + border-width: 4px; + border-style: solid; +} +.ui-checkboxradio-disabled { + pointer-events: none; +} +.ui-datepicker { + width: 17em; + padding: .2em .2em 0; + display: none; +} +.ui-datepicker .ui-datepicker-header { + position: relative; + padding: .2em 0; +} +.ui-datepicker .ui-datepicker-prev, +.ui-datepicker .ui-datepicker-next { + position: absolute; + top: 2px; + width: 1.8em; + height: 1.8em; +} +.ui-datepicker .ui-datepicker-prev-hover, +.ui-datepicker .ui-datepicker-next-hover { + top: 1px; +} +.ui-datepicker .ui-datepicker-prev { + left: 2px; +} +.ui-datepicker .ui-datepicker-next { + right: 2px; +} +.ui-datepicker .ui-datepicker-prev-hover { + left: 1px; +} +.ui-datepicker .ui-datepicker-next-hover { + right: 1px; +} +.ui-datepicker .ui-datepicker-prev span, +.ui-datepicker .ui-datepicker-next span { + display: block; + position: absolute; + left: 50%; + margin-left: -8px; + top: 50%; + margin-top: -8px; +} +.ui-datepicker .ui-datepicker-title { + margin: 0 2.3em; + line-height: 1.8em; + text-align: center; +} +.ui-datepicker .ui-datepicker-title select { + font-size: 1em; + margin: 1px 0; +} +.ui-datepicker select.ui-datepicker-month, +.ui-datepicker select.ui-datepicker-year { + width: 45%; +} +.ui-datepicker table { + width: 100%; + font-size: .9em; + border-collapse: collapse; + margin: 0 0 .4em; +} +.ui-datepicker th { + padding: .7em .3em; + text-align: center; + font-weight: bold; + border: 0; +} +.ui-datepicker td { + border: 0; + padding: 1px; +} +.ui-datepicker td span, +.ui-datepicker td a { + display: block; + padding: .2em; + text-align: right; + text-decoration: none; +} +.ui-datepicker .ui-datepicker-buttonpane { + background-image: none; + margin: .7em 0 0 0; + padding: 0 .2em; + border-left: 0; + border-right: 0; + border-bottom: 0; +} +.ui-datepicker .ui-datepicker-buttonpane button { + float: right; + margin: .5em .2em .4em; + cursor: pointer; + padding: .2em .6em .3em .6em; + width: auto; + overflow: visible; +} +.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { + float: left; +} + +/* with multiple calendars */ +.ui-datepicker.ui-datepicker-multi { + width: auto; +} +.ui-datepicker-multi .ui-datepicker-group { + float: left; +} +.ui-datepicker-multi .ui-datepicker-group table { + width: 95%; + margin: 0 auto .4em; +} +.ui-datepicker-multi-2 .ui-datepicker-group { + width: 50%; +} +.ui-datepicker-multi-3 .ui-datepicker-group { + width: 33.3%; +} +.ui-datepicker-multi-4 .ui-datepicker-group { + width: 25%; +} +.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header, +.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { + border-left-width: 0; +} +.ui-datepicker-multi .ui-datepicker-buttonpane { + clear: left; +} +.ui-datepicker-row-break { + clear: both; + width: 100%; + font-size: 0; +} + +/* RTL support */ +.ui-datepicker-rtl { + direction: rtl; +} +.ui-datepicker-rtl .ui-datepicker-prev { + right: 2px; + left: auto; +} +.ui-datepicker-rtl .ui-datepicker-next { + left: 2px; + right: auto; +} +.ui-datepicker-rtl .ui-datepicker-prev:hover { + right: 1px; + left: auto; +} +.ui-datepicker-rtl .ui-datepicker-next:hover { + left: 1px; + right: auto; +} +.ui-datepicker-rtl .ui-datepicker-buttonpane { + clear: right; +} +.ui-datepicker-rtl .ui-datepicker-buttonpane button { + float: left; +} +.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current, +.ui-datepicker-rtl .ui-datepicker-group { + float: right; +} +.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header, +.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { + border-right-width: 0; + border-left-width: 1px; +} + +/* Icons */ +.ui-datepicker .ui-icon { + display: block; + text-indent: -99999px; + overflow: hidden; + background-repeat: no-repeat; + left: .5em; + top: .3em; +} +.ui-dialog { + position: absolute; + top: 0; + left: 0; + padding: .2em; + outline: 0; +} +.ui-dialog .ui-dialog-titlebar { + padding: .4em 1em; + position: relative; +} +.ui-dialog .ui-dialog-title { + float: left; + margin: .1em 0; + white-space: nowrap; + width: 90%; + overflow: hidden; + text-overflow: ellipsis; +} +.ui-dialog .ui-dialog-titlebar-close { + position: absolute; + right: .3em; + top: 50%; + width: 20px; + margin: -10px 0 0 0; + padding: 1px; + height: 20px; +} +.ui-dialog .ui-dialog-content { + position: relative; + border: 0; + padding: .5em 1em; + background: none; + overflow: auto; +} +.ui-dialog .ui-dialog-buttonpane { + text-align: left; + border-width: 1px 0 0 0; + background-image: none; + margin-top: .5em; + padding: .3em 1em .5em .4em; +} +.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { + float: right; +} +.ui-dialog .ui-dialog-buttonpane button { + margin: .5em .4em .5em 0; + cursor: pointer; +} +.ui-dialog .ui-resizable-n { + height: 2px; + top: 0; +} +.ui-dialog .ui-resizable-e { + width: 2px; + right: 0; +} +.ui-dialog .ui-resizable-s { + height: 2px; + bottom: 0; +} +.ui-dialog .ui-resizable-w { + width: 2px; + left: 0; +} +.ui-dialog .ui-resizable-se, +.ui-dialog .ui-resizable-sw, +.ui-dialog .ui-resizable-ne, +.ui-dialog .ui-resizable-nw { + width: 7px; + height: 7px; +} +.ui-dialog .ui-resizable-se { + right: 0; + bottom: 0; +} +.ui-dialog .ui-resizable-sw { + left: 0; + bottom: 0; +} +.ui-dialog .ui-resizable-ne { + right: 0; + top: 0; +} +.ui-dialog .ui-resizable-nw { + left: 0; + top: 0; +} +.ui-draggable .ui-dialog-titlebar { + cursor: move; +} +.ui-progressbar { + height: 2em; + text-align: left; + overflow: hidden; +} +.ui-progressbar .ui-progressbar-value { + margin: -1px; + height: 100%; +} +.ui-progressbar .ui-progressbar-overlay { + background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw=="); + height: 100%; + filter: alpha(opacity=25); /* support: IE8 */ + opacity: 0.25; +} +.ui-progressbar-indeterminate .ui-progressbar-value { + background-image: none; +} +.ui-selectmenu-menu { + padding: 0; + margin: 0; + position: absolute; + top: 0; + left: 0; + display: none; +} +.ui-selectmenu-menu .ui-menu { + overflow: auto; + overflow-x: hidden; + padding-bottom: 1px; +} +.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup { + font-size: 1em; + font-weight: bold; + line-height: 1.5; + padding: 2px 0.4em; + margin: 0.5em 0 0 0; + height: auto; + border: 0; +} +.ui-selectmenu-open { + display: block; +} +.ui-selectmenu-text { + display: block; + margin-right: 20px; + overflow: hidden; + text-overflow: ellipsis; +} +.ui-selectmenu-button.ui-button { + text-align: left; + white-space: nowrap; + width: 14em; +} +.ui-selectmenu-icon.ui-icon { + float: right; + margin-top: 0; +} +.ui-slider { + position: relative; + text-align: left; +} +.ui-slider .ui-slider-handle { + position: absolute; + z-index: 2; + width: 1.2em; + height: 1.2em; + cursor: default; + -ms-touch-action: none; + touch-action: none; +} +.ui-slider .ui-slider-range { + position: absolute; + z-index: 1; + font-size: .7em; + display: block; + border: 0; + background-position: 0 0; +} + +/* support: IE8 - See #6727 */ +.ui-slider.ui-state-disabled .ui-slider-handle, +.ui-slider.ui-state-disabled .ui-slider-range { + filter: inherit; +} + +.ui-slider-horizontal { + height: .8em; +} +.ui-slider-horizontal .ui-slider-handle { + top: -.3em; + margin-left: -.6em; +} +.ui-slider-horizontal .ui-slider-range { + top: 0; + height: 100%; +} +.ui-slider-horizontal .ui-slider-range-min { + left: 0; +} +.ui-slider-horizontal .ui-slider-range-max { + right: 0; +} + +.ui-slider-vertical { + width: .8em; + height: 100px; +} +.ui-slider-vertical .ui-slider-handle { + left: -.3em; + margin-left: 0; + margin-bottom: -.6em; +} +.ui-slider-vertical .ui-slider-range { + left: 0; + width: 100%; +} +.ui-slider-vertical .ui-slider-range-min { + bottom: 0; +} +.ui-slider-vertical .ui-slider-range-max { + top: 0; +} +.ui-spinner { + position: relative; + display: inline-block; + overflow: hidden; + padding: 0; + vertical-align: middle; +} +.ui-spinner-input { + border: none; + background: none; + color: inherit; + padding: .222em 0; + margin: .2em 0; + vertical-align: middle; + margin-left: .4em; + margin-right: 2em; +} +.ui-spinner-button { + width: 1.6em; + height: 50%; + font-size: .5em; + padding: 0; + margin: 0; + text-align: center; + position: absolute; + cursor: default; + display: block; + overflow: hidden; + right: 0; +} +/* more specificity required here to override default borders */ +.ui-spinner a.ui-spinner-button { + border-top-style: none; + border-bottom-style: none; + border-right-style: none; +} +.ui-spinner-up { + top: 0; +} +.ui-spinner-down { + bottom: 0; +} +.ui-tabs { + position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */ + padding: .2em; +} +.ui-tabs .ui-tabs-nav { + margin: 0; + padding: .2em .2em 0; +} +.ui-tabs .ui-tabs-nav li { + list-style: none; + float: left; + position: relative; + top: 0; + margin: 1px .2em 0 0; + border-bottom-width: 0; + padding: 0; + white-space: nowrap; +} +.ui-tabs .ui-tabs-nav .ui-tabs-anchor { + float: left; + padding: .5em 1em; + text-decoration: none; +} +.ui-tabs .ui-tabs-nav li.ui-tabs-active { + margin-bottom: -1px; + padding-bottom: 1px; +} +.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor, +.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor, +.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor { + cursor: text; +} +.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor { + cursor: pointer; +} +.ui-tabs .ui-tabs-panel { + display: block; + border-width: 0; + padding: 1em 1.4em; + background: none; +} +.ui-tooltip { + padding: 8px; + position: absolute; + z-index: 9999; + max-width: 300px; +} +body .ui-tooltip { + border-width: 2px; +} + +/* Component containers +----------------------------------*/ +.ui-widget { + font-family: Verdana,Arial,sans-serif; + font-size: 1.1em; +} +.ui-widget .ui-widget { + font-size: 1em; +} +.ui-widget input, +.ui-widget select, +.ui-widget textarea, +.ui-widget button { + font-family: Verdana,Arial,sans-serif; + font-size: 1em; +} +.ui-widget.ui-widget-content { + border: 1px solid #d3d3d3; +} +.ui-widget-content { + border: 1px solid #aaaaaa; + background: #ffffff; + color: #222222; +} +.ui-widget-content a { + color: #222222; +} +.ui-widget-header { + border: 1px solid #aaaaaa; + background: #cccccc url("images/ui-bg_highlight-soft_75_cccccc_1x100.png") 50% 50% repeat-x; + color: #222222; + font-weight: bold; +} +.ui-widget-header a { + color: #222222; +} + +/* Interaction states +----------------------------------*/ +.ui-state-default, +.ui-widget-content .ui-state-default, +.ui-widget-header .ui-state-default, +.ui-button, + +/* We use html here because we need a greater specificity to make sure disabled +works properly when clicked or hovered */ +html .ui-button.ui-state-disabled:hover, +html .ui-button.ui-state-disabled:active { + border: 1px solid #d3d3d3; + background: #e6e6e6 url("images/ui-bg_glass_75_e6e6e6_1x400.png") 50% 50% repeat-x; + font-weight: normal; + color: #555555; +} +.ui-state-default a, +.ui-state-default a:link, +.ui-state-default a:visited, +a.ui-button, +a:link.ui-button, +a:visited.ui-button, +.ui-button { + color: #555555; + text-decoration: none; +} +.ui-state-hover, +.ui-widget-content .ui-state-hover, +.ui-widget-header .ui-state-hover, +.ui-state-focus, +.ui-widget-content .ui-state-focus, +.ui-widget-header .ui-state-focus, +.ui-button:hover, +.ui-button:focus { + border: 1px solid #999999; + background: #dadada url("images/ui-bg_glass_75_dadada_1x400.png") 50% 50% repeat-x; + font-weight: normal; + color: #212121; +} +.ui-state-hover a, +.ui-state-hover a:hover, +.ui-state-hover a:link, +.ui-state-hover a:visited, +.ui-state-focus a, +.ui-state-focus a:hover, +.ui-state-focus a:link, +.ui-state-focus a:visited, +a.ui-button:hover, +a.ui-button:focus { + color: #212121; + text-decoration: none; +} + +.ui-visual-focus { + box-shadow: 0 0 3px 1px rgb(94, 158, 214); +} +.ui-state-active, +.ui-widget-content .ui-state-active, +.ui-widget-header .ui-state-active, +a.ui-button:active, +.ui-button:active, +.ui-button.ui-state-active:hover { + border: 1px solid #aaaaaa; + background: #ffffff url("images/ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x; + font-weight: normal; + color: #212121; +} +.ui-icon-background, +.ui-state-active .ui-icon-background { + border: #aaaaaa; + background-color: #212121; +} +.ui-state-active a, +.ui-state-active a:link, +.ui-state-active a:visited { + color: #212121; + text-decoration: none; +} + +/* Interaction Cues +----------------------------------*/ +.ui-state-highlight, +.ui-widget-content .ui-state-highlight, +.ui-widget-header .ui-state-highlight { + border: 1px solid #fcefa1; + background: #fbf9ee url("images/ui-bg_glass_55_fbf9ee_1x400.png") 50% 50% repeat-x; + color: #363636; +} +.ui-state-checked { + border: 1px solid #fcefa1; + background: #fbf9ee; +} +.ui-state-highlight a, +.ui-widget-content .ui-state-highlight a, +.ui-widget-header .ui-state-highlight a { + color: #363636; +} +.ui-state-error, +.ui-widget-content .ui-state-error, +.ui-widget-header .ui-state-error { + border: 1px solid #cd0a0a; + background: #fef1ec url("images/ui-bg_glass_95_fef1ec_1x400.png") 50% 50% repeat-x; + color: #cd0a0a; +} +.ui-state-error a, +.ui-widget-content .ui-state-error a, +.ui-widget-header .ui-state-error a { + color: #cd0a0a; +} +.ui-state-error-text, +.ui-widget-content .ui-state-error-text, +.ui-widget-header .ui-state-error-text { + color: #cd0a0a; +} +.ui-priority-primary, +.ui-widget-content .ui-priority-primary, +.ui-widget-header .ui-priority-primary { + font-weight: bold; +} +.ui-priority-secondary, +.ui-widget-content .ui-priority-secondary, +.ui-widget-header .ui-priority-secondary { + opacity: .7; + filter:Alpha(Opacity=70); /* support: IE8 */ + font-weight: normal; +} +.ui-state-disabled, +.ui-widget-content .ui-state-disabled, +.ui-widget-header .ui-state-disabled { + opacity: .35; + filter:Alpha(Opacity=35); /* support: IE8 */ + background-image: none; +} +.ui-state-disabled .ui-icon { + filter:Alpha(Opacity=35); /* support: IE8 - See #6059 */ +} + +/* Icons +----------------------------------*/ + +/* states and images */ +.ui-icon { + width: 16px; + height: 16px; +} +.ui-icon, +.ui-widget-content .ui-icon { + background-image: url("images/ui-icons_222222_256x240.png"); +} +.ui-widget-header .ui-icon { + background-image: url("images/ui-icons_222222_256x240.png"); +} +.ui-state-hover .ui-icon, +.ui-state-focus .ui-icon, +.ui-button:hover .ui-icon, +.ui-button:focus .ui-icon { + background-image: url("images/ui-icons_454545_256x240.png"); +} +.ui-state-active .ui-icon, +.ui-button:active .ui-icon { + background-image: url("images/ui-icons_454545_256x240.png"); +} +.ui-state-highlight .ui-icon, +.ui-button .ui-state-highlight.ui-icon { + background-image: url("images/ui-icons_2e83ff_256x240.png"); +} +.ui-state-error .ui-icon, +.ui-state-error-text .ui-icon { + background-image: url("images/ui-icons_cd0a0a_256x240.png"); +} +.ui-button .ui-icon { + background-image: url("images/ui-icons_888888_256x240.png"); +} + +/* positioning */ +.ui-icon-blank { background-position: 16px 16px; } +.ui-icon-caret-1-n { background-position: 0 0; } +.ui-icon-caret-1-ne { background-position: -16px 0; } +.ui-icon-caret-1-e { background-position: -32px 0; } +.ui-icon-caret-1-se { background-position: -48px 0; } +.ui-icon-caret-1-s { background-position: -65px 0; } +.ui-icon-caret-1-sw { background-position: -80px 0; } +.ui-icon-caret-1-w { background-position: -96px 0; } +.ui-icon-caret-1-nw { background-position: -112px 0; } +.ui-icon-caret-2-n-s { background-position: -128px 0; } +.ui-icon-caret-2-e-w { background-position: -144px 0; } +.ui-icon-triangle-1-n { background-position: 0 -16px; } +.ui-icon-triangle-1-ne { background-position: -16px -16px; } +.ui-icon-triangle-1-e { background-position: -32px -16px; } +.ui-icon-triangle-1-se { background-position: -48px -16px; } +.ui-icon-triangle-1-s { background-position: -65px -16px; } +.ui-icon-triangle-1-sw { background-position: -80px -16px; } +.ui-icon-triangle-1-w { background-position: -96px -16px; } +.ui-icon-triangle-1-nw { background-position: -112px -16px; } +.ui-icon-triangle-2-n-s { background-position: -128px -16px; } +.ui-icon-triangle-2-e-w { background-position: -144px -16px; } +.ui-icon-arrow-1-n { background-position: 0 -32px; } +.ui-icon-arrow-1-ne { background-position: -16px -32px; } +.ui-icon-arrow-1-e { background-position: -32px -32px; } +.ui-icon-arrow-1-se { background-position: -48px -32px; } +.ui-icon-arrow-1-s { background-position: -65px -32px; } +.ui-icon-arrow-1-sw { background-position: -80px -32px; } +.ui-icon-arrow-1-w { background-position: -96px -32px; } +.ui-icon-arrow-1-nw { background-position: -112px -32px; } +.ui-icon-arrow-2-n-s { background-position: -128px -32px; } +.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; } +.ui-icon-arrow-2-e-w { background-position: -160px -32px; } +.ui-icon-arrow-2-se-nw { background-position: -176px -32px; } +.ui-icon-arrowstop-1-n { background-position: -192px -32px; } +.ui-icon-arrowstop-1-e { background-position: -208px -32px; } +.ui-icon-arrowstop-1-s { background-position: -224px -32px; } +.ui-icon-arrowstop-1-w { background-position: -240px -32px; } +.ui-icon-arrowthick-1-n { background-position: 1px -48px; } +.ui-icon-arrowthick-1-ne { background-position: -16px -48px; } +.ui-icon-arrowthick-1-e { background-position: -32px -48px; } +.ui-icon-arrowthick-1-se { background-position: -48px -48px; } +.ui-icon-arrowthick-1-s { background-position: -64px -48px; } +.ui-icon-arrowthick-1-sw { background-position: -80px -48px; } +.ui-icon-arrowthick-1-w { background-position: -96px -48px; } +.ui-icon-arrowthick-1-nw { background-position: -112px -48px; } +.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; } +.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; } +.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; } +.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; } +.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; } +.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; } +.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; } +.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; } +.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; } +.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; } +.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; } +.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; } +.ui-icon-arrowreturn-1-w { background-position: -64px -64px; } +.ui-icon-arrowreturn-1-n { background-position: -80px -64px; } +.ui-icon-arrowreturn-1-e { background-position: -96px -64px; } +.ui-icon-arrowreturn-1-s { background-position: -112px -64px; } +.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; } +.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; } +.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; } +.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; } +.ui-icon-arrow-4 { background-position: 0 -80px; } +.ui-icon-arrow-4-diag { background-position: -16px -80px; } +.ui-icon-extlink { background-position: -32px -80px; } +.ui-icon-newwin { background-position: -48px -80px; } +.ui-icon-refresh { background-position: -64px -80px; } +.ui-icon-shuffle { background-position: -80px -80px; } +.ui-icon-transfer-e-w { background-position: -96px -80px; } +.ui-icon-transferthick-e-w { background-position: -112px -80px; } +.ui-icon-folder-collapsed { background-position: 0 -96px; } +.ui-icon-folder-open { background-position: -16px -96px; } +.ui-icon-document { background-position: -32px -96px; } +.ui-icon-document-b { background-position: -48px -96px; } +.ui-icon-note { background-position: -64px -96px; } +.ui-icon-mail-closed { background-position: -80px -96px; } +.ui-icon-mail-open { background-position: -96px -96px; } +.ui-icon-suitcase { background-position: -112px -96px; } +.ui-icon-comment { background-position: -128px -96px; } +.ui-icon-person { background-position: -144px -96px; } +.ui-icon-print { background-position: -160px -96px; } +.ui-icon-trash { background-position: -176px -96px; } +.ui-icon-locked { background-position: -192px -96px; } +.ui-icon-unlocked { background-position: -208px -96px; } +.ui-icon-bookmark { background-position: -224px -96px; } +.ui-icon-tag { background-position: -240px -96px; } +.ui-icon-home { background-position: 0 -112px; } +.ui-icon-flag { background-position: -16px -112px; } +.ui-icon-calendar { background-position: -32px -112px; } +.ui-icon-cart { background-position: -48px -112px; } +.ui-icon-pencil { background-position: -64px -112px; } +.ui-icon-clock { background-position: -80px -112px; } +.ui-icon-disk { background-position: -96px -112px; } +.ui-icon-calculator { background-position: -112px -112px; } +.ui-icon-zoomin { background-position: -128px -112px; } +.ui-icon-zoomout { background-position: -144px -112px; } +.ui-icon-search { background-position: -160px -112px; } +.ui-icon-wrench { background-position: -176px -112px; } +.ui-icon-gear { background-position: -192px -112px; } +.ui-icon-heart { background-position: -208px -112px; } +.ui-icon-star { background-position: -224px -112px; } +.ui-icon-link { background-position: -240px -112px; } +.ui-icon-cancel { background-position: 0 -128px; } +.ui-icon-plus { background-position: -16px -128px; } +.ui-icon-plusthick { background-position: -32px -128px; } +.ui-icon-minus { background-position: -48px -128px; } +.ui-icon-minusthick { background-position: -64px -128px; } +.ui-icon-close { background-position: -80px -128px; } +.ui-icon-closethick { background-position: -96px -128px; } +.ui-icon-key { background-position: -112px -128px; } +.ui-icon-lightbulb { background-position: -128px -128px; } +.ui-icon-scissors { background-position: -144px -128px; } +.ui-icon-clipboard { background-position: -160px -128px; } +.ui-icon-copy { background-position: -176px -128px; } +.ui-icon-contact { background-position: -192px -128px; } +.ui-icon-image { background-position: -208px -128px; } +.ui-icon-video { background-position: -224px -128px; } +.ui-icon-script { background-position: -240px -128px; } +.ui-icon-alert { background-position: 0 -144px; } +.ui-icon-info { background-position: -16px -144px; } +.ui-icon-notice { background-position: -32px -144px; } +.ui-icon-help { background-position: -48px -144px; } +.ui-icon-check { background-position: -64px -144px; } +.ui-icon-bullet { background-position: -80px -144px; } +.ui-icon-radio-on { background-position: -96px -144px; } +.ui-icon-radio-off { background-position: -112px -144px; } +.ui-icon-pin-w { background-position: -128px -144px; } +.ui-icon-pin-s { background-position: -144px -144px; } +.ui-icon-play { background-position: 0 -160px; } +.ui-icon-pause { background-position: -16px -160px; } +.ui-icon-seek-next { background-position: -32px -160px; } +.ui-icon-seek-prev { background-position: -48px -160px; } +.ui-icon-seek-end { background-position: -64px -160px; } +.ui-icon-seek-start { background-position: -80px -160px; } +/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */ +.ui-icon-seek-first { background-position: -80px -160px; } +.ui-icon-stop { background-position: -96px -160px; } +.ui-icon-eject { background-position: -112px -160px; } +.ui-icon-volume-off { background-position: -128px -160px; } +.ui-icon-volume-on { background-position: -144px -160px; } +.ui-icon-power { background-position: 0 -176px; } +.ui-icon-signal-diag { background-position: -16px -176px; } +.ui-icon-signal { background-position: -32px -176px; } +.ui-icon-battery-0 { background-position: -48px -176px; } +.ui-icon-battery-1 { background-position: -64px -176px; } +.ui-icon-battery-2 { background-position: -80px -176px; } +.ui-icon-battery-3 { background-position: -96px -176px; } +.ui-icon-circle-plus { background-position: 0 -192px; } +.ui-icon-circle-minus { background-position: -16px -192px; } +.ui-icon-circle-close { background-position: -32px -192px; } +.ui-icon-circle-triangle-e { background-position: -48px -192px; } +.ui-icon-circle-triangle-s { background-position: -64px -192px; } +.ui-icon-circle-triangle-w { background-position: -80px -192px; } +.ui-icon-circle-triangle-n { background-position: -96px -192px; } +.ui-icon-circle-arrow-e { background-position: -112px -192px; } +.ui-icon-circle-arrow-s { background-position: -128px -192px; } +.ui-icon-circle-arrow-w { background-position: -144px -192px; } +.ui-icon-circle-arrow-n { background-position: -160px -192px; } +.ui-icon-circle-zoomin { background-position: -176px -192px; } +.ui-icon-circle-zoomout { background-position: -192px -192px; } +.ui-icon-circle-check { background-position: -208px -192px; } +.ui-icon-circlesmall-plus { background-position: 0 -208px; } +.ui-icon-circlesmall-minus { background-position: -16px -208px; } +.ui-icon-circlesmall-close { background-position: -32px -208px; } +.ui-icon-squaresmall-plus { background-position: -48px -208px; } +.ui-icon-squaresmall-minus { background-position: -64px -208px; } +.ui-icon-squaresmall-close { background-position: -80px -208px; } +.ui-icon-grip-dotted-vertical { background-position: 0 -224px; } +.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; } +.ui-icon-grip-solid-vertical { background-position: -32px -224px; } +.ui-icon-grip-solid-horizontal { background-position: -48px -224px; } +.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; } +.ui-icon-grip-diagonal-se { background-position: -80px -224px; } + + +/* Misc visuals +----------------------------------*/ + +/* Corner radius */ +.ui-corner-all, +.ui-corner-top, +.ui-corner-left, +.ui-corner-tl { + border-top-left-radius: 4px; +} +.ui-corner-all, +.ui-corner-top, +.ui-corner-right, +.ui-corner-tr { + border-top-right-radius: 4px; +} +.ui-corner-all, +.ui-corner-bottom, +.ui-corner-left, +.ui-corner-bl { + border-bottom-left-radius: 4px; +} +.ui-corner-all, +.ui-corner-bottom, +.ui-corner-right, +.ui-corner-br { + border-bottom-right-radius: 4px; +} + +/* Overlays */ +.ui-widget-overlay { + background: #aaaaaa; + opacity: .3; + filter: Alpha(Opacity=30); /* support: IE8 */ +} +.ui-widget-shadow { + -webkit-box-shadow: -8px -8px 8px #aaaaaa; + box-shadow: -8px -8px 8px #aaaaaa; +} diff --git a/pirulug/package.json b/pirulug/package.json new file mode 100644 index 0000000000..7c7a1c1df7 --- /dev/null +++ b/pirulug/package.json @@ -0,0 +1,16 @@ +{ + "name": "pma-pirulug-theme", + "version": "0.0.2", + "description": "A modern dark and light theme for phpMyAdmin", + "author": "Pirulug", + "license": "MIT", + "scripts": { + "build": "sass scss:css && sass scss:../../public/themes/pma-pirulug-theme/css", + "build:compile": "sass scss:css --style=compressed && sass scss:../../public/themes/pma-pirulug-theme/css --style=compressed", + "watch": "sass --watch --style=compressed scss:css" + }, + "dependencies": { + "bootstrap": "^5.3.3", + "sass": "^1.80.2" + } +} \ No newline at end of file diff --git a/pirulug/screen.png b/pirulug/screen.png new file mode 100644 index 0000000000..abb545de1a Binary files /dev/null and b/pirulug/screen.png differ diff --git a/pirulug/scss/0-functions/_functions.scss b/pirulug/scss/0-functions/_functions.scss new file mode 100644 index 0000000000..e69de29bb2 diff --git a/pirulug/scss/1-variables/_variables-dark.scss b/pirulug/scss/1-variables/_variables-dark.scss new file mode 100644 index 0000000000..03dd857a28 --- /dev/null +++ b/pirulug/scss/1-variables/_variables-dark.scss @@ -0,0 +1,58 @@ +// Dark color mode variables + +// +// Global colors +// + +// scss-docs-start sass-dark-mode-vars +$primary-text-dark: $primary-300 !default; +$primary-text-emphasis-dark: $primary-300 !default; + +$primary-bg-subtle-dark: $primary-900 !default; + +$primary-border-subtle-dark: $primary-700 !default; + +$body-color-dark: $gray-400 !default; + +$body-bg-dark: #171717 !default; +$body-bg-alt-dark: shade-color($body-bg-dark, 80%) !default; + +$body-secondary-color-dark: rgba($body-color-dark, 0.75) !default; +$body-secondary-bg-dark: #222222 !default; + +$body-tertiary-color-dark: rgba($body-color-dark, 0.5) !default; +$body-tertiary-bg-dark: #2b2b2b !default; + +$link-color-dark: $primary-300 !default; +$link-hover-color-dark: $primary-200 !default; +$code-color-dark: $cyan-300 !default; + +// +// Forms +// + +// +// Accordion +// + +// ================= +// Variables +// ================= + +// Sidebar link +$sidebar-link-color-dark: $body-color-dark !default; +$sidebar-link-bg-dark: $body-bg-dark !default; + +$sidebar-link-hover-bg-dark: $body-bg-dark !default; + +// Sidebar brand +$sidebar-brand-color-dark: $body-color-dark !default; + +// Sidebar link icon +$sidebar-link-icon-color-dark: $body-color-dark !default; + +// NavTop +$navtop-bg-dark: $body-bg-dark !default; + +// Footer +$footer-bg-dark: $body-bg-dark !default; diff --git a/pirulug/scss/1-variables/_variables.scss b/pirulug/scss/1-variables/_variables.scss new file mode 100644 index 0000000000..9a85e808cf --- /dev/null +++ b/pirulug/scss/1-variables/_variables.scss @@ -0,0 +1,799 @@ +// Color system + +$white: #fff !default; +$gray-100: #f8f9fa !default; +$gray-200: #e9ecef !default; +$gray-300: #dee2e6 !default; +$gray-400: #ced4da !default; +$gray-500: #adb5bd !default; +$gray-600: #6c757d !default; +$gray-700: #495057 !default; +$gray-800: #343a40 !default; +$gray-900: #212529 !default; +$black: #000 !default; + +$grays: ( + "100": $gray-100, + "200": $gray-200, + "300": $gray-300, + "400": $gray-400, + "500": $gray-500, + "600": $gray-600, + "700": $gray-700, + "800": $gray-800, + "900": $gray-900, +) !default; + +$blue: #4361ee !default; +$indigo: #6610f2 !default; +$purple: #6f42c1 !default; +$pink: #ff0055 !default; +$red: #de0e1c !default; +$orange: #e2a03f !default; +$yellow: #ffc107 !default; +$green: #00ab55 !default; +$teal: #20c997 !default; +$cyan: #2196f3 !default; + +$colors: ( + "blue": $blue, + "indigo": $indigo, + "purple": $purple, + "pink": $pink, + "red": $red, + "orange": $orange, + "yellow": $yellow, + "green": $green, + "teal": $teal, + "cyan": $cyan, + "black": $black, + "white": $white, + "gray": $gray-600, + "gray-dark": $gray-800, +) !default; + +// Social colors +$social-colors: ( + "facebook": #3b5998, + "twitter": #1da1f2, + "google": #dc4e41, + "youtube": #f00, + "vimeo": #1ab7ea, + "dribbble": #ea4c89, + "github": #181717, + "instagram": #e4405f, + "pinterest": #bd081c, + "flickr": #0063dc, + "bitbucket": #0052cc, +) !default; + +// The contrast ratio to reach against white, to determine if color changes from "light" to "dark". Acceptable values for WCAG 2.0 are 3, 4.5 and 7. +// See https://www.w3.org/TR/WCAG20/#visual-audio-contrast-contrast +$min-contrast-ratio: 4.5 !default; + +// Customize the light and dark text colors for use in our color contrast function. +$color-contrast-dark: $black !default; +$color-contrast-light: $white !default; + +// fusv-disable +$blue-100: tint-color($blue, 80%) !default; +$blue-200: tint-color($blue, 60%) !default; +$blue-300: tint-color($blue, 40%) !default; +$blue-400: tint-color($blue, 20%) !default; +$blue-500: $blue !default; +$blue-600: shade-color($blue, 20%) !default; +$blue-700: shade-color($blue, 40%) !default; +$blue-800: shade-color($blue, 60%) !default; +$blue-900: shade-color($blue, 80%) !default; + +$indigo-100: tint-color($indigo, 80%) !default; +$indigo-200: tint-color($indigo, 60%) !default; +$indigo-300: tint-color($indigo, 40%) !default; +$indigo-400: tint-color($indigo, 20%) !default; +$indigo-500: $indigo !default; +$indigo-600: shade-color($indigo, 20%) !default; +$indigo-700: shade-color($indigo, 40%) !default; +$indigo-800: shade-color($indigo, 60%) !default; +$indigo-900: shade-color($indigo, 80%) !default; + +$purple-100: tint-color($purple, 80%) !default; +$purple-200: tint-color($purple, 60%) !default; +$purple-300: tint-color($purple, 40%) !default; +$purple-400: tint-color($purple, 20%) !default; +$purple-500: $purple !default; +$purple-600: shade-color($purple, 20%) !default; +$purple-700: shade-color($purple, 40%) !default; +$purple-800: shade-color($purple, 60%) !default; +$purple-900: shade-color($purple, 80%) !default; + +$pink-100: tint-color($pink, 80%) !default; +$pink-200: tint-color($pink, 60%) !default; +$pink-300: tint-color($pink, 40%) !default; +$pink-400: tint-color($pink, 20%) !default; +$pink-500: $pink !default; +$pink-600: shade-color($pink, 20%) !default; +$pink-700: shade-color($pink, 40%) !default; +$pink-800: shade-color($pink, 60%) !default; +$pink-900: shade-color($pink, 80%) !default; + +$red-100: tint-color($red, 80%) !default; +$red-200: tint-color($red, 60%) !default; +$red-300: tint-color($red, 40%) !default; +$red-400: tint-color($red, 20%) !default; +$red-500: $red !default; +$red-600: shade-color($red, 20%) !default; +$red-700: shade-color($red, 40%) !default; +$red-800: shade-color($red, 60%) !default; +$red-900: shade-color($red, 80%) !default; + +$orange-100: tint-color($orange, 80%) !default; +$orange-200: tint-color($orange, 60%) !default; +$orange-300: tint-color($orange, 40%) !default; +$orange-400: tint-color($orange, 20%) !default; +$orange-500: $orange !default; +$orange-600: shade-color($orange, 20%) !default; +$orange-700: shade-color($orange, 40%) !default; +$orange-800: shade-color($orange, 60%) !default; +$orange-900: shade-color($orange, 80%) !default; + +$yellow-100: tint-color($yellow, 80%) !default; +$yellow-200: tint-color($yellow, 60%) !default; +$yellow-300: tint-color($yellow, 40%) !default; +$yellow-400: tint-color($yellow, 20%) !default; +$yellow-500: $yellow !default; +$yellow-600: shade-color($yellow, 20%) !default; +$yellow-700: shade-color($yellow, 40%) !default; +$yellow-800: shade-color($yellow, 60%) !default; +$yellow-900: shade-color($yellow, 80%) !default; + +$green-100: tint-color($green, 80%) !default; +$green-200: tint-color($green, 60%) !default; +$green-300: tint-color($green, 40%) !default; +$green-400: tint-color($green, 20%) !default; +$green-500: $green !default; +$green-600: shade-color($green, 20%) !default; +$green-700: shade-color($green, 40%) !default; +$green-800: shade-color($green, 60%) !default; +$green-900: shade-color($green, 80%) !default; + +$teal-100: tint-color($teal, 80%) !default; +$teal-200: tint-color($teal, 60%) !default; +$teal-300: tint-color($teal, 40%) !default; +$teal-400: tint-color($teal, 20%) !default; +$teal-500: $teal !default; +$teal-600: shade-color($teal, 20%) !default; +$teal-700: shade-color($teal, 40%) !default; +$teal-800: shade-color($teal, 60%) !default; +$teal-900: shade-color($teal, 80%) !default; + +$cyan-100: tint-color($cyan, 80%) !default; +$cyan-200: tint-color($cyan, 60%) !default; +$cyan-300: tint-color($cyan, 40%) !default; +$cyan-400: tint-color($cyan, 20%) !default; +$cyan-500: $cyan !default; +$cyan-600: shade-color($cyan, 20%) !default; +$cyan-700: shade-color($cyan, 40%) !default; +$cyan-800: shade-color($cyan, 60%) !default; +$cyan-900: shade-color($cyan, 80%) !default; + +$blues: ( + "blue-100": $blue-100, + "blue-200": $blue-200, + "blue-300": $blue-300, + "blue-400": $blue-400, + "blue-500": $blue-500, + "blue-600": $blue-600, + "blue-700": $blue-700, + "blue-800": $blue-800, + "blue-900": $blue-900, +) !default; + +$indigos: ( + "indigo-100": $indigo-100, + "indigo-200": $indigo-200, + "indigo-300": $indigo-300, + "indigo-400": $indigo-400, + "indigo-500": $indigo-500, + "indigo-600": $indigo-600, + "indigo-700": $indigo-700, + "indigo-800": $indigo-800, + "indigo-900": $indigo-900, +) !default; + +$purples: ( + "purple-100": $purple-100, + "purple-200": $purple-200, + "purple-300": $purple-300, + "purple-400": $purple-400, + "purple-500": $purple-500, + "purple-600": $purple-600, + "purple-700": $purple-700, + "purple-800": $purple-800, + "purple-900": $purple-900, +) !default; + +$pinks: ( + "pink-100": $pink-100, + "pink-200": $pink-200, + "pink-300": $pink-300, + "pink-400": $pink-400, + "pink-500": $pink-500, + "pink-600": $pink-600, + "pink-700": $pink-700, + "pink-800": $pink-800, + "pink-900": $pink-900, +) !default; + +$reds: ( + "red-100": $red-100, + "red-200": $red-200, + "red-300": $red-300, + "red-400": $red-400, + "red-500": $red-500, + "red-600": $red-600, + "red-700": $red-700, + "red-800": $red-800, + "red-900": $red-900, +) !default; + +$oranges: ( + "orange-100": $orange-100, + "orange-200": $orange-200, + "orange-300": $orange-300, + "orange-400": $orange-400, + "orange-500": $orange-500, + "orange-600": $orange-600, + "orange-700": $orange-700, + "orange-800": $orange-800, + "orange-900": $orange-900, +) !default; + +$yellows: ( + "yellow-100": $yellow-100, + "yellow-200": $yellow-200, + "yellow-300": $yellow-300, + "yellow-400": $yellow-400, + "yellow-500": $yellow-500, + "yellow-600": $yellow-600, + "yellow-700": $yellow-700, + "yellow-800": $yellow-800, + "yellow-900": $yellow-900, +) !default; + +$greens: ( + "green-100": $green-100, + "green-200": $green-200, + "green-300": $green-300, + "green-400": $green-400, + "green-500": $green-500, + "green-600": $green-600, + "green-700": $green-700, + "green-800": $green-800, + "green-900": $green-900, +) !default; + +$teals: ( + "teal-100": $teal-100, + "teal-200": $teal-200, + "teal-300": $teal-300, + "teal-400": $teal-400, + "teal-500": $teal-500, + "teal-600": $teal-600, + "teal-700": $teal-700, + "teal-800": $teal-800, + "teal-900": $teal-900, +) !default; + +$cyans: ( + "cyan-100": $cyan-100, + "cyan-200": $cyan-200, + "cyan-300": $cyan-300, + "cyan-400": $cyan-400, + "cyan-500": $cyan-500, + "cyan-600": $cyan-600, + "cyan-700": $cyan-700, + "cyan-800": $cyan-800, + "cyan-900": $cyan-900, +) !default; +// fusv-enable + +// scss-docs-start theme-color-variables +$primary: $pink !default; +$secondary: $purple !default; +$success: $green !default; +$info: $cyan !default; +$warning: $yellow !default; +$danger: $red !default; +$light: $gray-100 !default; +$dark: $gray-900 !default; +// scss-docs-end theme-color-variables + +// scss-docs-start theme-colors-map +$theme-colors: ( + "primary": $primary, + "secondary": $secondary, + "success": $success, + "info": $info, + "warning": $warning, + "danger": $danger, + "light": $light, + "dark": $dark, +) !default; +// scss-docs-end theme-colors-map + +$primary-100: tint-color($primary, 80%) !default; +$primary-200: tint-color($primary, 60%) !default; +$primary-300: tint-color($primary, 40%) !default; +$blue-400: tint-color($primary, 20%) !default; +$primary-500: $primary !default; +$primary-600: shade-color($primary, 20%) !default; +$primary-700: shade-color($primary, 40%) !default; +$primary-800: shade-color($primary, 60%) !default; +$primary-900: shade-color($primary, 80%) !default; + +$cyans: ( + "primary-100": $primary-100, + "primary-200": $primary-200, + "primary-300": $primary-300, + "primary-400": $primary-400, + "primary-500": $primary-500, + "primary-600": $primary-600, + "primary-700": $primary-700, + "primary-800": $primary-800, + "primary-900": $primary-900, +) !default; + +$primary-text: $primary-600 !default; +$secondary-text: $gray-600 !default; +$success-text: $green-600 !default; +$info-text: $cyan-700 !default; +$warning-text: $yellow-700 !default; +$danger-text: $red-600 !default; +$light-text: $gray-600 !default; +$dark-text: $gray-700 !default; + +$primary-bg-subtle: $primary-100 !default; +$secondary-bg-subtle: $gray-100 !default; +$success-bg-subtle: $green-100 !default; +$info-bg-subtle: $cyan-100 !default; +$warning-bg-subtle: $yellow-100 !default; +$danger-bg-subtle: $red-100 !default; +$light-bg-subtle: mix($gray-100, $white) !default; +$dark-bg-subtle: $gray-400 !default; + +$primary-border-subtle: $primary-200 !default; +$secondary-border-subtle: $gray-200 !default; +$success-border-subtle: $green-200 !default; +$info-border-subtle: $cyan-200 !default; +$warning-border-subtle: $yellow-200 !default; +$danger-border-subtle: $red-200 !default; +$light-border-subtle: $gray-200 !default; +$dark-border-subtle: $gray-500 !default; + +// Characters which are escaped by the escape-svg function +$escaped-characters: ( + ("<", "%3c"), + (">", "%3e"), + ("#", "%23"), + ("(", "%28"), + (")", "%29") +) !default; + +// Options +// +// Quickly modify global styling by enabling or disabling optional features. + +$enable-caret: true !default; +$enable-rounded: true !default; +$enable-shadows: false !default; +$enable-gradients: false !default; +$enable-transitions: true !default; +$enable-reduced-motion: true !default; +$enable-smooth-scroll: true !default; +$enable-grid-classes: true !default; +$enable-container-classes: true !default; +$enable-cssgrid: false !default; +$enable-button-pointers: true !default; +$enable-rfs: true !default; +$enable-validation-icons: true !default; +$enable-negative-margins: false !default; +$enable-deprecation-messages: true !default; +$enable-important-utilities: true !default; + +$enable-dark-mode: true !default; +$color-mode-type: data !default; // `data` or `media-query` + +// Prefix for :root CSS variables + +$variable-prefix: bs- !default; // Deprecated in v5.2.0 for the shorter `$prefix` +$prefix: $variable-prefix !default; + +// Gradient +// +// The gradient which is added to components if `$enable-gradients` is `true` +// This gradient is also added to elements with `.bg-gradient` +// scss-docs-start variable-gradient +$gradient: linear-gradient( + 180deg, + rgba($white, 0.15), + rgba($white, 0) +) !default; +// scss-docs-end variable-gradient + +// Spacing +// +// Control the default styling of most Bootstrap elements by modifying these +// variables. Mostly focused on spacing. +// You can add more entries to the $spacers map, should you need more variation. + +// scss-docs-start spacer-variables-maps +$spacer: 1rem !default; +$spacers: ( + 0: 0, + 1: $spacer * 0.25, + 2: $spacer * 0.5, + 3: $spacer, + 4: $spacer * 1.5, + 5: $spacer * 3, +) !default; +// scss-docs-end spacer-variables-maps + +$zindex-levels: ( + n1: -1, + 0: 0, + 1: 1, + 2: 2, + 3: 3, + 99: 99, +); + +// Position +// +// Define the edge positioning anchors of the position utilities. + +// scss-docs-start position-map +$position-values: ( + 0: 0, + 50: 50%, + 100: 100%, +) !default; +// scss-docs-end position-map + +// Body +// + +$body-text-align: null !default; + +$body-color: $gray-900 !default; + +$body-bg: $white !default; +$body-bg-alt: shade-color($body-bg, 3%) !default; + +$body-emphasis-color: $black !default; + +$body-secondary-color: rgba($body-color, 0.75) !default; +$body-secondary-bg: $gray-200 !default; + +$body-tertiary-color: rgba($body-color, 0.5) !default; +$body-tertiary-bg: $gray-100 !default; + +$emphasis-color: $black !default; + +// Links +// +// Style anchor elements. + +$link-decoration: none !default; +$link-hover-decoration: underline !default; + +// Paragraphs + +// Grid breakpoints + +// Grid containers + +// Grid columns + +// Components +// +// Define common padding and border radius sizes and more. + +// scss-docs-start border-variables +$border-width: 1px !default; +$border-widths: ( + 1: 1px, + 2: 2px, + 3: 3px, + 4: 4px, + 5: 5px, +) !default; +$border-style: solid !default; +$border-color: $gray-300 !default; +$border-color-translucent: rgba($black, 0.175) !default; +// scss-docs-end border-variables + +// scss-docs-start border-radius-variables +$border-radius: 0.375rem !default; +$border-radius-sm: 0.25rem !default; +$border-radius-lg: 0.5rem !default; +$border-radius-xl: 1rem !default; +$border-radius-2xl: 2rem !default; +$border-radius-pill: 50rem !default; +// scss-docs-end border-radius-variables + +// scss-docs-start box-shadow-variables +$box-shadow: 0 0.5rem 1rem rgba(var(--#{$prefix}body-color-rgb), 0.15) !default; +$box-shadow-sm: 0 0.125rem 0.25rem rgba(var(--#{$prefix}body-color-rgb), 0.075) !default; +$box-shadow-lg: 0 1rem 3rem rgba(var(--#{$prefix}body-color-rgb), 0.175) !default; +$box-shadow-inset: inset 0 1px 2px rgba(var(--#{$prefix}body-color-rgb), 0.075) !default; +// scss-docs-end box-shadow-variables + +$component-active-color: $white !default; +$component-active-bg: $primary !default; + +// scss-docs-start caret-variables +$caret-width: 0.3em !default; +$caret-vertical-align: $caret-width * 0.85 !default; +$caret-spacing: $caret-width * 0.85 !default; +// scss-docs-end caret-variables + +$transition-base: all 0.2s ease-in-out !default; +$transition-fade: opacity 0.15s linear !default; +// scss-docs-start collapse-transition +$transition-collapse: height 0.35s ease !default; +$transition-collapse-width: width 0.35s ease !default; +// scss-docs-end collapse-transition + +// stylelint-disable function-disallowed-list +// scss-docs-start aspect-ratios +$aspect-ratios: ( + "1x1": 100%, + "4x3": calc(3 / 4 * 100%), + "16x9": calc(9 / 16 * 100%), + "21x9": calc(9 / 21 * 100%), +) !default; +// scss-docs-end aspect-ratios +// stylelint-enable function-disallowed-list + +// Typography +// +// Font, line-height, and color for body text, headings, and more. + +// scss-docs-start font-variables +// stylelint-disable value-keyword-case +$font-family-sans-serif: "Nunito", sans-serif !default; +$font-family-monospace: "Fira Code", monospace !default; +// stylelint-enable value-keyword-case +$font-family-base: var(--#{$prefix}font-sans-serif) !default; +$font-family-code: var(--#{$prefix}font-monospace) !default; + +// $font-size-root affects the value of `rem`, which is used for as well font sizes, paddings, and margins +// $font-size-base affects the font size of the body text +$font-size-root: null !default; +$font-size-base: 0.875rem !default; // Reduced for database UI density (~14px) +$font-size-sm: $font-size-base * 0.85 !default; +$font-size-lg: $font-size-base * 1.15 !default; + +$font-weight-lighter: lighter !default; +$font-weight-light: 300 !default; +$font-weight-normal: 400 !default; +$font-weight-medium: 500 !default; +$font-weight-semibold: 600 !default; +$font-weight-bold: 700 !default; +$font-weight-bolder: bolder !default; + +$font-weight-base: $font-weight-normal !default; + +$line-height-base: 1.5 !default; +$line-height-sm: 1.25 !default; +$line-height-lg: 2 !default; + +$h1-font-size: $font-size-base * 2.1 !default; +$h2-font-size: $font-size-base * 1.75 !default; +$h3-font-size: $font-size-base * 1.5 !default; +$h4-font-size: $font-size-base * 1.3 !default; +$h5-font-size: $font-size-base * 1.15 !default; +$h6-font-size: $font-size-base !default; +// scss-docs-end font-variables + +// scss-docs-start font-sizes +$font-sizes: ( + 1: $h1-font-size, + 2: $h2-font-size, + 3: $h3-font-size, + 4: $h4-font-size, + 5: $h5-font-size, + 6: $h6-font-size, +) !default; +// scss-docs-end font-sizes + +// scss-docs-start headings-variables +$headings-margin-bottom: $spacer * 0.5 !default; +$headings-font-family: null !default; +$headings-font-style: null !default; +$headings-font-weight: 500 !default; +$headings-line-height: 1.2 !default; +$headings-color: null !default; +// scss-docs-end headings-variables + +// scss-docs-start display-headings +$display-font-sizes: ( + 1: 5rem, + 2: 4.5rem, + 3: 4rem, + 4: 3.5rem, + 5: 3rem, + 6: 2.5rem, +) !default; + +$display-font-family: null !default; +$display-font-style: null !default; +$display-font-weight: 300 !default; +$display-line-height: $headings-line-height !default; +// scss-docs-end display-headings + +// scss-docs-start type-variables +$lead-font-size: $font-size-base * 1.25 !default; +$lead-font-weight: 300 !default; + +$small-font-size: 0.875em !default; + +$sub-sup-font-size: 0.75em !default; + +$text-muted: var(--#{$prefix}secondary-color) !default; + +$initialism-font-size: $small-font-size !default; + +$blockquote-margin-y: $spacer !default; +$blockquote-font-size: $font-size-base * 1.25 !default; +$blockquote-footer-color: $gray-600 !default; +$blockquote-footer-font-size: $small-font-size !default; + +$hr-margin-y: $spacer !default; +$hr-color: inherit !default; + +$hr-border-color: null !default; // Allows for inherited colors +$hr-border-width: var(--#{$prefix}border-width) !default; +$hr-opacity: 0.25 !default; + +$legend-margin-bottom: 0.5rem !default; +$legend-font-size: 1.5rem !default; +$legend-font-weight: null !default; + +$dt-font-weight: $font-weight-bold !default; + +$list-inline-padding: 0.5rem !default; + +$mark-padding: 0.1875em !default; +$mark-bg: $yellow-100 !default; +// scss-docs-end type-variables + +// Tables +$table-cell-padding-y: 0.5rem; +$table-cell-padding-x: 0.5rem; +$table-cell-padding-y-sm: 0.25rem; +$table-cell-padding-x-sm: 0.25rem; + +$table-cell-vertical-align: top; + +$table-color: var(--#{$prefix}body-color); +$table-bg: var(--#{$prefix}body-bg); +$table-accent-bg: var(--#{$prefix}body-bg); + +$table-th-font-weight: null; + +$table-striped-color: $table-color; +$table-striped-bg-factor: 0.05; +$table-striped-bg: rgba($primary, $table-striped-bg-factor); + +$table-active-color: $table-color; +$table-active-bg-factor: 0.1; +$table-active-bg: rgba($primary, $table-active-bg-factor); + +$table-hover-color: $table-color; +$table-hover-bg-factor: 0.075; +$table-hover-bg: rgba($primary, $table-hover-bg-factor); + +$table-border-factor: 0.1; +$table-border-width: var(--#{$prefix}border-width); +$table-border-color: var(--#{$prefix}border-color); + +$table-striped-order: odd; +$table-striped-columns-order: even; + +$table-group-separator-color: currentcolor; + +$table-caption-color: var(--#{$prefix}secondary-color); + +$table-bg-scale: -80%; + +// Buttons + Forms + +// Buttons + +// Forms + +// Form validation + +// Z-index master list + +// Navs + +// Navbar + +// Dropdowns + +// Pagination + +// Placeholders + +// scss-docs-start placeholders +$placeholder-opacity-max: 0.5 !default; +$placeholder-opacity-min: 0.2 !default; +// scss-docs-end placeholders + +// Cards +$card-border-width: $border-width !default; +$card-cap-bg: var(--#{$prefix}body-color-rgb) !default; + +// Accordion + +// Tooltips + +// Popovers + +// Toasts + +// Badges + +// Modals + +// Alerts + +// Progress bars + +// Image thumbnails + +// Figures + +// Breadcrumbs + +// Carousel + +// Spinners + +// Close + +// Offcanvas + +// Code + +$code-font-size: $small-font-size !default; +$code-color: $pink !default; + +$kbd-padding-y: 0.1875rem !default; +$kbd-padding-x: 0.375rem !default; +$kbd-font-size: $code-font-size !default; +$kbd-color: var(--#{$prefix}body-bg) !default; +$kbd-bg: var(--#{$prefix}body-color) !default; +$nested-kbd-font-weight: null !default; // Deprecated in v5.2.0, removing in v6 + +$pre-color: null !default; + +// ======================= +// Styles components +// ======================= + +// PMA +$loading-icon-url: url("../img/loading.svg"); + +// Variables + +$navigation-width: 240px !default; + +// Breadcrumbs + +$breadcrumb-navbar-padding-y: 0.5rem !default; +$breadcrumb-navbar-padding-x: 1.8rem !default; +$breadcrumb-navbar-margin-bottom: 0 !default; +$breadcrumb-navbar-bg: #e9ecef !default; // $gray-200 diff --git a/pirulug/scss/2-mixins/_button.scss b/pirulug/scss/2-mixins/_button.scss new file mode 100644 index 0000000000..5af76de3b6 --- /dev/null +++ b/pirulug/scss/2-mixins/_button.scss @@ -0,0 +1,24 @@ +@mixin button-color($color) { + &, + &:focus, + &.focus, + &.disabled, + &:disabled, + .show > &.dropdown-toggle { + color: $color; + } +} + +@mixin button-color-hover($color) { + &:hover:not(:disabled):not(.disabled), + &.hover:not(:disabled):not(.disabled) { + color: $color; + } +} + +@mixin button-color-active($color) { + &:not(:disabled):not(.disabled):active, + &:not(:disabled):not(.disabled).active { + color: $color; + } +} diff --git a/pirulug/scss/2-mixins/_tab.scss b/pirulug/scss/2-mixins/_tab.scss new file mode 100644 index 0000000000..0ae369c17b --- /dev/null +++ b/pirulug/scss/2-mixins/_tab.scss @@ -0,0 +1,8 @@ +@mixin tab-color($color) { + // --#{$prefix}tab-color: #{$white}; + --#{$prefix}tab-bg: #{$color}; + // --#{$prefix}tab-active-color: #{$color}; + --#{$prefix}tab-active-bg: #{$color}; + --#{$prefix}tab-hover-color: #{$color}; + // --#{$prefix}tab-hover-bg: #{$color}; +} diff --git a/pirulug/scss/3-components/_buttons.scss b/pirulug/scss/3-components/_buttons.scss new file mode 100644 index 0000000000..1e8116edfd --- /dev/null +++ b/pirulug/scss/3-components/_buttons.scss @@ -0,0 +1,52 @@ +.btn { + // box-shadow: 0px 5px 20px 0 rgba(0, 0, 0, 0.1); + //transition: all 0.3s ease-out; + + // &:hover { + // box-shadow: none; + // transform: translateY(-3px); + // } + + .feather { + width: 14px; + height: 14px; + } +} + +@each $color, $value in $theme-colors { + .btn-#{$color} { + @include button-color($white); + @include button-color-hover($white); + //box-shadow: 0 10px 20px -10px rgba($value, 0.59); + } +} + +@each $color, $value in $social-colors { + .btn-#{$color} { + @include button-variant($value, $value); + @include button-color($white); + @include button-color-hover($white); + //box-shadow: 0 10px 20px -10px rgba($value, 0.59); + } +} + +.btn-light, +.btn-white { + @include button-color($gray-800); + @include button-color-hover($gray-800); +} + +@each $color, $value in $theme-colors { + .btn-outline-#{$color} { + @include button-outline-variant($value); + @include button-color-hover($white); + //box-shadow: 0 10px 20px -10px rgba($value, 0.59); + } +} +@each $color, $value in $social-colors { + .btn-outline-#{$color} { + @include button-outline-variant($value); + @include button-color-hover($white); + //box-shadow: 0 10px 20px -10px rgba($value, 0.59); + } +} diff --git a/pirulug/scss/3-components/_card.scss b/pirulug/scss/3-components/_card.scss new file mode 100644 index 0000000000..da3a790584 --- /dev/null +++ b/pirulug/scss/3-components/_card.scss @@ -0,0 +1,10 @@ +.card { + @extend .mb-3; + border: $border-width solid var(--#{$prefix}border-color); +} + +.card-header { + font-size: 1rem; + font-weight: bold; + border-bottom: $border-width solid var(--#{$prefix}border-color); +} diff --git a/pirulug/scss/3-components/_dropdown.scss b/pirulug/scss/3-components/_dropdown.scss new file mode 100644 index 0000000000..f05d6afbee --- /dev/null +++ b/pirulug/scss/3-components/_dropdown.scss @@ -0,0 +1,43 @@ +.dropdown-menu-lg { + min-width: $dropdown-min-width * 2; + + .list-group .list-group-item { + border-width: 0; + border-bottom-width: 1px; + margin-bottom: 0; + + &:first-child, + &:last-child { + border-radius: 0; + } + + &:hover { + background: var(--#{$prefix}tertiary-bg); + text-decoration: none; + } + } +} + +.dropdown-menu-header { + padding: $spacer * 0.75; + text-align: center; + font-weight: $font-weight-bold; + border-bottom: $list-group-border-width solid var(--#{$prefix}border-color); +} + +.dropdown-menu-footer { + padding: $spacer * 0.5; + text-align: center; + display: block; + font-size: $font-size-sm; +} + +@if $enable-dark-mode { + @include color-mode(dark) { + .dropdown .list-group .list-group-item { + &:hover { + background: var(--#{$prefix}tertiary-bg); + } + } + } +} diff --git a/pirulug/scss/4-layout/_breadcrumb.scss b/pirulug/scss/4-layout/_breadcrumb.scss new file mode 100644 index 0000000000..61bd04cc10 --- /dev/null +++ b/pirulug/scss/4-layout/_breadcrumb.scss @@ -0,0 +1,28 @@ +.breadcrumb-navbar { + padding: $breadcrumb-navbar-padding-y $breadcrumb-navbar-padding-x; + margin-bottom: $breadcrumb-navbar-margin-bottom; + background-color: var(--#{$prefix}tertiary-bg); + border-bottom: 1px solid var(--#{$prefix}border-color); + + .breadcrumb-item { + font-size: $font-size-base; + + + .breadcrumb-comment { + padding-left: $breadcrumb-item-padding-x; + } + + .icon { + margin: 0; + } + } +} + +// Dark Mode +@if $enable-dark-mode { + @include color-mode(dark) { + .breadcrumb-navbar { + background-color: var(--#{$prefix}tertiary-bg); + border-bottom: 1px solid var(--#{$prefix}border-color); + } + } +} diff --git a/pirulug/scss/4-layout/_codemirror.scss b/pirulug/scss/4-layout/_codemirror.scss new file mode 100644 index 0000000000..236df5e471 --- /dev/null +++ b/pirulug/scss/4-layout/_codemirror.scss @@ -0,0 +1,143 @@ +$textarea-cols: 40; +$textarea-rows: 15; + +.CodeMirror { + height: 20rem; + direction: ltr; + border: $card-border-width solid $card-border-color; + background-color: #1e1e1e; + + @include border-radius($card-border-radius); +} + +// Code mirror default style (do not affect the console style) +.CodeMirror.cm-s-default { + // @see: issue #17705 + div.CodeMirror-scroll { + margin-right: 0; + padding-bottom: 0; + } +} + +#inline_editor_outer .CodeMirror { + height: ceil($textarea-rows * 0.4em); +} + +.insertRowTable .CodeMirror { + min-height: ceil($textarea-rows * 0.6em); + min-width: ceil($textarea-cols * 0.6em); + border: 1px solid #a9a9a9; +} + +#pma_console .CodeMirror-gutters { + background-color: initial; + border: none; +} + +.CodeMirror-gutters { + border-right: solid 1px #2b2b2b; + background-color: #202020; +} + +.CodeMirror-cursor { + border-left: 1px solid $body-color-dark; +} + +span { + &.cm-meta { + color: #569cd6; + } + &.cm-keyword, + &.cm-statement-verb { + color: #569cd6; + } + &.cm-def { + color: #9cdcfe; + } + &.cm-variable { + color: #ddd6a3; + } + &.cm-variable-2 { + color: #9cdcfe; + } + &.cm-variable-3, + &.cm-type { + color: #a9b7c6; + } + &.cm-property { + color: #9cdcfe; + } + &.cm-operator { + color: #d4d4d4; + } + &.cm-string { + color: #ce9178; + } + &.cm-string-2 { + color: #6a8759; + } + &.cm-mysql-string { + color: #008000; + } + &.cm-mysql-word { + color: white; + } + &.cm-comment { + color: #6a9955; + } + &.cm-link { + color: #287bde; + } + &.cm-atom { + color: #569cd6; + } + &.cm-error { + color: #bc3f3c; + } + &.cm-tag { + color: #569cd6; + } + &.cm-attribute { + color: #9cdcfe; + } + &.cm-qualifier { + color: #d7ba7d; + } + &.cm-bracket { + color: #d4d4d4; + } + &.cm-number { + color: #b5cea8; + } + &.cm-builtin { + color: #569cd6; + } + &.cm-separator { + color: fuchsia; + } +} + +.autocomplete-column-name { + display: inline-block; +} + +.autocomplete-column-hint { + display: inline-block; + float: right; + color: #666; + margin-left: 1em; +} + +.CodeMirror-hints { + z-index: 1999; +} + +.CodeMirror-lint-tooltip { + z-index: 200; + font-family: inherit; + + code { + font-family: monospace; + font-weight: bold; + } +} diff --git a/pirulug/scss/4-layout/_common.scss b/pirulug/scss/4-layout/_common.scss new file mode 100644 index 0000000000..e0646d93ee --- /dev/null +++ b/pirulug/scss/4-layout/_common.scss @@ -0,0 +1,2887 @@ +#page_content { + margin: 0 0.5em; +} + +.data { + margin: 0 0 12px; +} + +button.mult_submit, +.checkall_box + label { + text-decoration: none; + color: #235a81; + cursor: pointer; + outline: none; +} + +button.mult_submit { + &:hover, + &:focus { + text-decoration: underline; + color: #235a81; + } +} + +.checkall_box + label:hover { + text-decoration: underline; + color: #235a81; +} + +#navbarDropdown > img { + display: none; +} + +textarea { + &.char { + margin: 6px; + } + + &.charField { + width: 95%; + } +} + +.pma-fieldset { + margin-top: 1em; + border-radius: 4px 4px 0 0; + border: none; + padding: 0.5em; + background: #eee; +} + +.pma-fieldset { + .pma-fieldset { + margin: 0.8em; + border: none; + background: #e8e8e8; + } + + legend { + float: none; + font-weight: bold; + color: #444; + padding: 5px 10px; + border-radius: 2px; + border: none; + background-color: $white; + max-width: 100%; + box-shadow: 3px 3px 15px #bbb; + width: initial; + font-size: 0.95em; + } +} + +// Dark Mode +@if $enable-dark-mode { + @include color-mode(dark) { + .pma-fieldset { + background: $body-bg-dark; + .pma-fieldset { + background: $body-bg-dark; + } + + legend { + color: $body-color-dark; + background-color: $body-bg-dark; + box-shadow: 3px 3px 15px #000; + } + } + } +} + +// 3.4 +.datatable { + table-layout: fixed; +} + +/* classes */ +.clearfloat { + clear: both; +} + +.paddingtop { + padding-top: 1em; +} + +.separator { + color: $white; + text-shadow: 0 1px 0 $black; +} + +div.tools { + padding: 0.2em; + + a { + color: #3a7ead !important; + } + + margin-top: 0; + margin-bottom: 0.5em; + // avoid a thick line since this should be used under another fieldset + border-top: 0; + text-align: right; + float: none; + clear: both; + border-radius: 0 0 4px 4px; +} + +// Dark Mode +@if $enable-dark-mode { + @include color-mode(dark) { + div.tools { + @extend .bg-body-tertiary; + } + } +} + +.pma-fieldset.tblFooters { + margin-top: 0; + margin-bottom: 0.5em; + // avoid a thick line since this should be used under another fieldset + border-top: 0; + text-align: right; + float: none; + clear: both; + border-radius: 0 0 4px 4px; +} + +div.null_div { + height: 20px; + text-align: center; + font-style: normal; + min-width: 50px; +} + +.pma-fieldset { + .formelement { + float: left; + margin-right: 0.5em; + // IE + white-space: nowrap; + } + + // revert for Gecko + div[class="formelement"] { + white-space: normal; + } +} + +button.mult_submit { + border: none; + background-color: transparent; +} + +/** + * marks table rows/cells if the db field is in a where condition + */ +.condition { + border-color: $black !important; +} + +th.condition { + border-width: 1px 1px 0 1px; + border-style: solid; +} + +td.condition { + border-width: 0 1px 0 1px; + border-style: solid; +} + +tr:last-child td.condition { + border-width: 0 1px 1px 1px; +} + +/* rtl:begin:remove */ +.before-condition { + // for first th which must have right border set (ltr only) + border-right: 1px solid $black; +} + +/* rtl:end:remove */ + +/** + * cells with the value NULL + */ +td.null { + font-style: italic; + color: #7d7d7d !important; +} + +table { + .valueHeader, + .value { + text-align: right; + white-space: normal; + } +} + +.value { + font-family: $font-family-monospace; +} + +img.lightbulb { + cursor: pointer; +} + +.pdflayout { + overflow: hidden; + clip: inherit; + background-color: $white; + display: none; + border: 1px solid $black; + position: relative; +} + +.pdflayout_table { + background: #d3dce3; + color: $black; + overflow: hidden; + clip: inherit; + z-index: 2; + display: inline; + visibility: inherit; + cursor: move; + position: absolute; + font-size: 80%; + border: 1px dashed $black; +} + +// Doc links in SQL +.cm-sql-doc { + text-decoration: none; + border-bottom: 1px dotted $black; + color: inherit !important; +} + +// no extra space in table cells +td .icon { + image-rendering: pixelated; + margin: 0; +} + +.selectallarrow { + margin-right: 0.3em; + margin-left: 0.6em; +} + +.with-selected { + margin-left: 2em; +} + +// message boxes: error, confirmation +#pma_errors, +#pma_demo, +#pma_footer { + position: relative; + padding: 0 0.5em; +} + +.confirmation { + color: $black; + background-color: pink; +} + +// end messageboxes + +.new_central_col { + width: 100%; +} + +.tblcomment { + font-size: 70%; + font-weight: normal; + color: #009; +} + +.tblHeaders { + font-weight: bold; + color: $black; + background: #d3dce3; +} + +div.tools, +.tblFooters { + font-weight: normal; + color: $black; + background: #d3dce3; +} + +.tblHeaders a { + &:link, + &:active, + &:visited { + color: #00f; + } +} + +div.tools a { + &:link, + &:visited, + &:active { + color: #00f; + } +} + +.tblFooters a { + &:link, + &:active, + &:visited { + color: #00f; + } +} + +.tblHeaders a:hover, +div.tools a:hover, +.tblFooters a:hover { + color: #f00; +} + +.error { + border: 1px solid maroon !important; + margin-left: 2px; + padding: 1px 2px; + color: $black; + background: pink; +} + +// disabled text +.disabled { + color: #666; + + a { + &:link, + &:active, + &:visited { + color: #666; + } + + &:hover { + color: #666; + text-decoration: none; + } + } +} + +tr.disabled td, +td.disabled { + background-color: #f3f3f3; + color: #aaa; +} + +.pre_wrap { + white-space: pre-wrap; +} + +.pre_wrap br { + display: none; +} + +/** + * login form + */ +body#loginform { + margin: 1em 0 0 0; + text-align: center; + + h1, + a.logo { + display: block; + text-align: center; + } + + div.container { + text-align: left; + width: 30em; + margin: 0 auto; + } +} + +div.container.modal_form { + margin: 0 auto; + width: 30em; + text-align: center; + background: $white; + z-index: 999; +} + +div#modalOverlay { + position: fixed; + top: 0; + left: 0; + height: 100%; + width: 100%; + background: $white; + z-index: 900; +} + +label.col-3.d-flex.align-items-center { + font-weight: bolder; +} + +.commented_column { + border-bottom: 1px dashed $black; +} + +.column_attribute { + font-size: 70%; +} + +.column_name { + font-size: 80%; + margin: 5px 2px; +} + +.central_columns_navigation { + padding: 1.5% 0 !important; +} + +.message_errors_found { + margin-top: 20px; +} + +.repl_gui_skip_err_cnt { + width: 30px; +} + +.color_gray { + color: gray; +} + +.max_height_400 { + max-height: 400px; +} + +li.last.database { + // Avoid having the last item of the tree hidden behind the scroll bar + margin-bottom: 15px !important; +} + +// zoom search +div#dataDisplay { + input, + select { + margin: 0; + margin-right: 0.5em; + } + + th { + line-height: 2em; + } +} + +img.calendar { + border: none; +} + +form.clock { + text-align: center; +} + +// table stats +div#tablestatistics table { + float: left; + margin-bottom: 0.5em; + margin-right: 1.5em; + margin-top: 0.5em; + min-width: 16em; +} + +// end table stats + +// Heading +#topmenucontainer { + padding-right: 1em; + width: 100%; +} + +// Dark Mode +@if $enable-dark-mode { + @include color-mode(dark) { + #topmenucontainer { + nav { + @extend .bg-body; + } + } + } +} + +#page_nav_icons { + position: fixed; + top: 0; + right: 0; + z-index: 99; + padding: $breadcrumb-navbar-padding-y $breadcrumb-padding-x; +} + +#page_settings_icon { + cursor: pointer; + display: none; +} + +#page_settings_modal, +#pma_navigation_settings { + display: none; +} + +#textSQLDUMP { + width: 95%; + height: 95%; + font-family: Consolas, "Courier New", Courier, monospace; + font-size: 110%; +} + +#TooltipContainer { + position: absolute; + z-index: 99; + width: 20em; + height: auto; + overflow: visible; + visibility: hidden; + background-color: #ffc; + color: #060; + border: 0.1em solid $black; + padding: 0.5em; +} + +// user privileges +#fieldset_add_user_login { + div.item { + display: flex; + align-items: center; + border-bottom: 1px solid silver; + padding-bottom: 0.3em; + margin-bottom: 0.3em; + } + + label { + float: left; + display: block; + width: 10em; + max-width: 100%; + text-align: right; + padding-right: 0.5em; + margin-bottom: 0; + } + + input { + width: 12em; + clear: right; + max-width: 100%; + } + + span.options { + float: left; + display: block; + width: 12em; + max-width: 100%; + padding-right: 0.5em; + + #select_pred_username, + #select_pred_hostname, + #select_pred_password { + width: 100%; + max-width: 100%; + } + + input { + width: auto; + } + } +} + +#fieldset_user_priv div.item { + float: left; + width: 9em; + max-width: 100%; + + div.item { + float: none; + } + + label { + white-space: nowrap; + } + + select { + width: 100%; + } +} + +#fieldset_user_global_rights .pma-fieldset, +#fieldset_user_group_rights .pma-fieldset { + float: left; +} + +#fieldset_user_global_rights > legend input { + margin-left: 2em; +} +// end user privileges + +// serverstatus + +.linkElem:hover { + text-decoration: underline; + color: #235a81; + cursor: pointer; +} + +h3#serverstatusqueries span { + font-size: 60%; + display: inline; +} + +div#serverStatusTabs { + margin-top: 1em; +} + +caption a.top { + float: right; +} + +div#serverstatusquerieschart { + float: left; + width: 500px; + height: 350px; + margin-right: 50px; +} + +div { + &#serverstatus table { + tbody td.descr a, + .tblFooters a { + white-space: nowrap; + } + } + + &.liveChart { + clear: both; + min-width: 500px; + height: 400px; + padding-bottom: 80px; + } +} + +div#chartVariableSettings { + border: 1px solid #ddd; + background-color: #e6e6e6; + margin-left: 10px; +} + +table#chartGrid { + td { + padding: 3px; + margin: 0; + } + + div.monitorChart { + background: #ebebeb; + border: none; + min-width: 1px; + } +} + +div.tabLinks { + float: left; + padding: 5px 0; + + a, + label { + margin-right: 7px; + } + + .icon { + margin: -0.2em 0.3em 0 0; + } +} + +.popupContent { + display: none; + position: absolute; + border: 1px solid #ccc; + margin: 0; + padding: 3px; + background-color: $white; + z-index: 2; + box-shadow: 2px 2px 3px #666; +} + +div { + &#logTable { + padding-top: 10px; + clear: both; + + table { + width: 100%; + } + } + + &#queryAnalyzerDialog { + min-width: 700px; + + div { + &.CodeMirror-scroll { + height: auto; + } + + &#queryProfiling { + height: 300px; + } + } + + td.explain { + width: 250px; + } + + table.queryNums { + display: none; + border: 0; + text-align: left; + } + } +} + +.smallIndent { + padding-left: 7px; +} + +// end serverstatus + +// profiling + +div#profilingchart { + width: 850px; + height: 370px; + float: left; +} + +#profilingchart .jqplot-highlighter-tooltip { + top: auto !important; + left: 11px; + bottom: 24px; +} + +// end profiling + +// table charting +#resizer { + border: 1px solid silver; +} + +// make room for the resize handle +#inner-resizer { + padding: 10px; +} + +// querybox + +#togglequerybox { + margin: 0 10px; +} + +#serverstatus h3 { + margin: 15px 0; + font-weight: normal; + color: #999; + font-size: 1.7em; +} + +textarea { + &#sqlquery { + width: 100%; + border-radius: 4px; + border: 1px solid #aaa; + padding: 5px; + font-family: inherit; + } + + &#sql_query_edit { + height: 7em; + width: 95%; + display: block; + } +} + +// end querybox + +// main page + +#mysqlmaininformation, +#pmamaininformation { + float: left; + width: 49%; +} + +#maincontainer { + ul { + list-style-type: disc; + vertical-align: middle; + } + + li { + margin-bottom: 0.3em; + } +} + +#full_name_layer { + position: absolute; + padding: 2px; + margin-top: -3px; + z-index: 801; + border-radius: 3px; + border: solid 1px #888; + background: $white; +} + +#body_browse_foreigners { + background: #f3f3f3; + margin: 0.5em 0.5em 0 0.5em; +} + +#bodythemes { + width: 500px; + margin: auto; + text-align: center; + + img { + border: 0.1em solid $black; + } + + a:hover img { + border: 0.1em solid red; + } +} + +#selflink { + clear: both; + display: block; + margin-top: 1em; + margin-bottom: 1em; + width: 98%; + margin-left: 1%; + text-align: right; + border-top: 0.1em solid silver; +} + +#qbe_div_table_list, +#qbe_div_sql_query { + float: left; +} + +code { + font-size: 1em; + + &.php { + display: block; + padding-left: 1em; + margin-top: 0; + margin-bottom: 0; + max-height: 10em; + overflow: auto; + direction: ltr; + } + + &.sql { + display: block; + padding: 1em; + margin-top: 0; + margin-bottom: 0; + max-height: 10em; + overflow: auto; + direction: ltr; + } +} + +div.sqlvalidate { + display: block; + padding: 1em; + margin-top: 0; + margin-bottom: 0; + max-height: 10em; + overflow: auto; + direction: ltr; +} + +.result_query { + div.sqlOuter { + background: var(--#{$prefix}tertiary-bg); + border: 1px solid var(--#{$prefix}border-color); + text-align: left; + } +} + +// Dark Mode +@if $enable-dark-mode { + @include color-mode(dark) { + .result_query { + div.sqlOuter { + background: $body-secondary-bg-dark; + border-color: $border-color-dark; + } + } + } +} + +#PMA_slidingMessage code.sql, +div.sqlvalidate { + background: var(--#{$prefix}tertiary-bg); + color: var(--#{$prefix}body-color); + border: 1px solid var(--#{$prefix}border-color); +} + +textarea#partitiondefinition { + height: 3em; +} + +// for elements that should be revealed only via js +.hide { + display: none; +} + +#list_server { + list-style-type: none; + padding: 0; +} + +/** + * Progress bar styles + */ + +div { + &.upload_progress { + width: 400px; + margin: 3em auto; + text-align: center; + } + + &.upload_progress_bar_outer { + border: 1px solid $black; + width: 202px; + position: relative; + margin: 0 auto 1em; + color: $body-color; + + div.percentage { + position: absolute; + top: 0; + left: 0; + width: 202px; + } + } + + &.upload_progress_bar_inner { + background-color: #ddd; + width: 0; + height: 12px; + margin: 1px; + overflow: hidden; + color: $black; + position: relative; + + div.percentage { + top: -1px; + left: -1px; + } + } + + &#statustext { + margin-top: 0.5em; + } +} + +table { + &#serverconnection_src_remote, + &#serverconnection_trg_remote, + &#serverconnection_src_local, + &#serverconnection_trg_local { + float: left; + } +} + +/** + * Validation error message styles + */ +input { + &[type="text"].invalid_value, + &[type="password"].invalid_value, + &[type="number"].invalid_value, + &[type="date"].invalid_value { + background: #fcc; + } +} + +select.invalid_value, +.invalid_value { + background: #fcc; +} + +/** + * Ajax notification styling + */ +.ajax_notification { + // The notification needs to be shown on the top of the page + top: 0; + position: fixed; + margin-top: 200px; + margin-right: auto; + margin-bottom: 0; + margin-left: auto; + // Keep a little space on the sides of the text + padding: 5px; + width: 350px; + // If this is not kept at a high z-index, the jQueryUI modal dialogs (z-index: 1000) might hide this + z-index: 1100; + text-align: center; + display: inline; + left: 0; + right: 0; + background-image: url("../img/ajax_clock_small.gif"); + background-repeat: no-repeat; + background-position: 2%; + border: 1px solid #e2b709; + background-color: #ffe57e; + border-radius: 5px; + box-shadow: 0 5px 90px #888; +} + +// Dark Mode +@if $enable-dark-mode { + @include color-mode(dark) { + .ajax_notification { + color: #000; + box-shadow: 0 5px 90px #000; + } + } +} + +#loading_parent { + /** Need this parent to properly center the notification division */ + position: relative; + width: 100%; +} + +#popup_background { + display: none; + position: fixed; + width: 100%; + height: 100%; + top: 0; + left: 0; + background: $black; + z-index: 1000; + overflow: hidden; +} + +#structure-action-links a { + margin-right: 1em; +} + +#addColumns input[type="radio"] { + margin: 3px 0 0; + margin-left: 1em; +} + +/** + * Indexes + */ +#index_frm { + .index_info { + input[type="text"], + select { + width: 100%; + margin: 0; + box-sizing: border-box; + } + + div { + padding: 0.2em 0; + } + + .label { + float: left; + min-width: 12em; + } + } + + .slider { + width: 10em; + margin: 0.6em; + float: left; + } + + .add_fields { + float: left; + + input { + margin-left: 1em; + } + } + + input { + margin: 0; + } + + td { + vertical-align: middle; + } +} + +table#index_columns { + width: 100%; + + select { + width: 85%; + float: left; + } +} + +#move_columns_dialog { + div { + padding: 1em; + } + + ul { + list-style: none; + margin: 0; + padding: 0; + } + + li { + background: #d3dce3; + border: 1px solid #aaa; + color: $black; + font-weight: bold; + margin: 0.4em; + padding: 0.2em; + border-radius: 2px; + } +} + +// config forms +.config-form { + fieldset { + margin-top: 0; + padding: 0; + clear: both; + border-radius: 0; + + p { + margin: 0; + padding: 0.5em; + background: $white; + border-top: 0; + } + + // form error list + .errors { + margin: 0 -2px 1em; + padding: 0.5em 1.5em; + background: #fbead9; + border-color: #c83838; + border-style: solid; + border-width: 1px 0; + list-style: none; + font-family: $font-family-base; + font-size: small; + } + + // field error list + .inline_errors { + margin: 0.3em 0.3em 0.3em; + margin-left: 0; + padding: 0; + list-style: none; + color: #9a0000; + font-size: small; + } + + .doc { + margin-left: 1em; + } + + .disabled-notice { + margin-left: 1em; + font-size: 80%; + text-transform: uppercase; + color: #e00; + cursor: help; + } + + th { + padding: 0.3em 0.3em 0.3em; + padding-left: 0.5em; + text-align: left; + vertical-align: top; + background: transparent; + filter: none; + border-top: 1px #d5d5d5 solid; + border-right: none; + + small { + display: block; + font-weight: normal; + font-family: $font-family-base; + font-size: x-small; + color: #444; + } + } + + td { + padding-top: 0.3em; + padding-bottom: 0.3em; + vertical-align: top; + border-top: 1px #d5d5d5 solid; + border-right: none; + } + } + + legend { + display: none; + } + + span.checkbox { + padding: 2px; + display: inline-block; + + &.custom { + padding: 1px; + border: 1px #edec90 solid; + background: #ffc; + } + } + + // customized field + .custom { + background: #ffc; + } + + .field-error { + border-color: #a11 !important; + } + + input { + &[type="text"], + &[type="password"], + &[type="number"] { + border: 1px #a7a6aa solid; + height: auto; + + &:focus { + border: 1px #6676ff solid; + background: #f7fbff; + } + } + } + + select, + textarea { + border: 1px #a7a6aa solid; + height: auto; + + &:focus { + border: 1px #6676ff solid; + background: #f7fbff; + } + } + + .field-comment-mark { + font-family: serif; + color: #007; + cursor: help; + padding: 0 0.2em; + font-weight: bold; + font-style: italic; + } + + .field-comment-warning { + color: #a00; + } + + // error list + dd { + margin-left: 0.5em; + + &::before { + content: "\25B8 "; + } + } +} + +fieldset { + .group-header { + th { + background: #d5d5d5; + } + + + tr th { + padding-top: 0.6em; + } + } + + .group-field-1 th, + .group-header-2 th { + padding-left: 1.5em; + } + + .group-field-2 th, + .group-header-3 th { + padding-left: 3em; + } + + .group-field-3 th { + padding-left: 4.5em; + } + + .disabled-field { + th { + color: #666; + background-color: #ddd; + + small { + color: #666; + background-color: #ddd; + } + } + + td { + color: #666; + background-color: #ddd; + } + } +} + +.click-hide-message { + cursor: pointer; +} + +.prefsmanage_opts { + margin-left: 2em; +} + +#prefs_autoload { + margin-bottom: 0.5em; + margin-left: 0.5em; +} + +input#auto_increment_opt { + width: min-content; +} + +#placeholder { + position: relative; + border: 1px solid #aaa; + float: right; + overflow: hidden; + width: 450px; + height: 300px; + + .button { + position: absolute; + cursor: pointer; + } + + div.button { + font-size: smaller; + color: #999; + background-color: #eee; + padding: 2px; + } +} + +.wrapper { + float: left; + margin-bottom: 1.5em; +} + +.toggleButton { + position: relative; + cursor: pointer; + font-size: 0.8em; + text-align: center; + line-height: 1.4em; + height: 1.55em; + overflow: hidden; + border-right: 0.1em solid #888; + border-left: 0.1em solid #888; + border-radius: 0.3em; + + table, + td, + img { + padding: 0; + position: relative; + } + + .container { + position: absolute; + + td, + tr { + background: none !important; + } + } + + .toggleOn { + color: $white; + padding: 0 1em; + text-shadow: 0 0 0.2em $black; + } + + .toggleOff { + padding: 0 1em; + } +} + +.doubleFieldset { + .pma-fieldset { + width: 48%; + float: left; + padding: 0; + } + + legend { + margin-left: 1.5em; + } + + div.wrap { + padding: 1.5em; + } +} + +#table_name_col_no_outer { + margin-top: 45px; +} + +#table_name_col_no { + position: fixed; + top: 100px !important; + width: 100%; + background: $white; +} + +#table_columns { + display: block; + overflow: auto; + + input { + &[type="text"], + &[type="password"], + &[type="number"] { + width: 10em; + box-sizing: border-box; + } + } + + select { + width: 10em; + box-sizing: border-box; + } +} + +#openlayersmap { + width: 450px; + height: 300px; +} + +.placeholderDrag { + cursor: move; +} + +#left_arrow { + left: 8px; + top: 26px; +} + +#right_arrow { + left: 26px; + top: 26px; +} + +#up_arrow { + left: 17px; + top: 8px; +} + +#down_arrow { + left: 17px; + top: 44px; +} + +#zoom_in { + left: 17px; + top: 67px; +} + +#zoom_world { + left: 17px; + top: 85px; +} + +#zoom_out { + left: 17px; + top: 103px; +} + +.colborder { + cursor: col-resize; + height: 100%; + margin-left: -6px; + position: absolute; + width: 5px; +} + +.colborder_active { + border-right: 2px solid #a44; +} + +.pma_table { + th.draggable span { + display: block; + overflow: hidden; + } +} + +.pma_table { + td { + position: static; + } + + tbody td span { + display: block; + overflow: hidden; + + code span { + display: inline; + } + } + + th.draggable { + span { + margin-right: 10px; + } + } +} + +.modal-copy input { + display: block; + width: 100%; + margin-top: 1.5em; + padding: 0.3em 0; +} + +.cRsz { + position: absolute; +} + +.cCpy { + background: #333; + color: $white; + font-weight: bold; + margin: 0.1em; + padding: 0.3em; + position: absolute; + text-shadow: -1px -1px $black; + box-shadow: 0 0 0.7em $black; + border-radius: 0.3em; +} + +.cPointer { + $height: 20px; + $width: 10px; + + height: $height; + width: $width; + margin-top: $height * -0.5; + margin-left: $width * -0.5; + background: url("../img/col_pointer.png"); + position: absolute; +} + +.tooltip { + background: #333 !important; + opacity: 0.8 !important; + z-index: 9999; + border: 1px solid $black !important; + border-radius: 0.3em !important; + text-shadow: -1px -1px $black !important; + font-size: 0.8em !important; + font-weight: bold !important; + padding: 1px 3px !important; + + * { + background: none !important; + color: $white !important; + } +} + +.cDrop { + right: 0; + position: absolute; + top: 0; +} + +.coldrop { + background: url("../img/col_drop.png"); + cursor: pointer; + height: 16px; + margin-top: 0.3em; + width: 16px; + + &:hover { + background-color: #999; + } +} + +.coldrop-hover { + background-color: #999; +} + +.cList { + background: #eee; + border: solid 1px #999; + position: absolute; + box-shadow: 0 0.2em 0.5em #333; + margin-left: 75%; + right: 0; + max-width: 100%; + overflow-wrap: break-word; + + .lDiv div { + padding: 0.2em 0.5em 0.2em; + padding-left: 0.2em; + white-space: nowrap; + + &:hover { + background: #ddd; + cursor: pointer; + } + + input { + cursor: pointer; + } + } +} + +.showAllColBtn { + border-bottom: solid 1px #999; + border-top: solid 1px #999; + cursor: pointer; + font-size: 0.9em; + font-weight: bold; + padding: 0.35em 1em; + text-align: center; + + &:hover { + background: #ddd; + } +} + +.turnOffSelect { + user-select: none; +} + +.navigation { + margin: 0.8em 0; + border-radius: 5px; + background: linear-gradient(#eee, #ccc); + + td { + margin: 0; + padding: 0; + vertical-align: middle; + white-space: nowrap; + } + + input { + &[type="submit"] { + background: none; + border: 0; + filter: none; + margin: 0; + padding: 0.8em 0.5em; + border-radius: 0; + + &:hover { + color: $white; + cursor: pointer; + text-shadow: none; + background: linear-gradient(#333, #555); + } + } + + &.edit_mode_active { + color: $white; + cursor: pointer; + text-shadow: none; + background: linear-gradient(#333, #555); + } + } + + .btn-link { + color: $body-color; + + &:hover { + color: $white; + background-image: linear-gradient(#333, #555); + text-decoration: none; + } + } + + select { + margin: 0 0.8em; + } +} + +// Dark Mode +@if $enable-dark-mode { + @include color-mode(dark) { + .navigation { + background: $body-bg-dark; + } + } +} + +.navigation_separator { + color: #999; + display: inline-block; + font-size: 1.5em; + text-align: center; + height: 1.4em; + width: 1.2em; + text-shadow: 1px 0 $white; +} + +.cEdit { + margin: 0; + padding: 0; + position: absolute; + + input[type="text"] { + background: $white; + height: 100%; + margin: 0; + padding: 0; + } + + .edit_area { + background: $white; + border: 1px solid #999; + min-width: 10em; + padding: 0.3em 0.5em; + + select, + textarea { + width: 97%; + } + } + + .cell_edit_hint { + color: #555; + font-size: 0.8em; + margin: 0.3em 0.2em; + } + + .edit_box { + overflow-x: hidden; + overflow-y: scroll; + padding: 0; + margin: 0; + } + + .edit_box_posting { + background: $white url("../img/ajax_clock_small.gif") no-repeat right center; + padding-right: 1.5em; + } + + .edit_area_loading { + background: $white url("../img/ajax_clock_small.gif") no-repeat center; + height: 10em; + } + + .goto_link { + background: #eee; + color: #555; + padding: 0.2em 0.3em; + } +} + +.saving_edited_data { + background: url("../img/ajax_clock_small.gif") no-repeat left; + padding-left: 20px; +} + +.relationalTable { + td { + vertical-align: top; + } + + select { + width: 125px; + margin-right: 5px; + } +} + +// css for timepicker +.ui-timepicker-div { + .ui-widget-header { + margin-bottom: 8px; + } + + dl { + text-align: left; + + dt { + height: 25px; + margin-bottom: -25px; + } + + dd { + margin: 0 10px 10px 85px; + } + } + + td { + font-size: 90%; + } +} + +.ui-tpicker-grid-label { + background: none; + border: none; + margin: 0; + padding: 0; +} + +.ui-timepicker-rtl { + direction: rtl; + + dl { + text-align: right; + + dd { + margin: 0 65px 10px 10px; + } + } +} + +body .ui-widget { + font-size: 1em; +} + +.ui-dialog .pma-fieldset legend a { + color: #235a81; +} + +.ui-draggable { + z-index: 801; +} + +// over-riding jqplot-yaxis class +.jqplot-yaxis { + left: 0 !important; + min-width: 25px; + width: auto; +} + +.jqplot-axis { + overflow: hidden; +} + +div#page_content div { + &#tableslistcontainer { + margin-top: 1em; + + table.data { + border-top: 0.1px solid #eee; + } + } + + &.result_query { + margin-top: 1em; + } +} + +table.show_create { + margin-top: 1em; + + td { + border-right: 1px solid #bbb; + } +} + +#alias_modal { + table { + width: 100%; + } + + label { + font-weight: bold; + } +} + +.ui-dialog { + position: fixed; +} + +.small_font { + font-size: smaller; +} + +// Console styles +#pma_console_container { + width: 100%; + position: fixed; + bottom: 0; + left: 0; + z-index: 100; +} + +#pma_console { + position: relative; + margin-left: $navigation-width; + + .templates { + display: none; + } + + .mid_text { + vertical-align: middle; + } + + .toolbar { + position: relative; + background: #ccc; + border-top: solid 1px #aaa; + cursor: n-resize; + + span { + vertical-align: middle; + } + + &.collapsed { + cursor: default; + + &:not(:hover) { + display: inline-block; + border-top-right-radius: 3px; + border-right: solid 1px #aaa; + } + + > .button { + display: none; + } + } + } + + .message span { + &.text, + &.action { + padding: 0 3px; + display: inline-block; + } + } + + .toolbar { + .button, + .text { + padding: 0 3px; + display: inline-block; + } + } + + .switch_button { + padding: 0 3px; + display: inline-block; + } + + .message span.action, + .toolbar .button, + .switch_button { + cursor: pointer; + } + + .message span.action:hover, + .toolbar .button:hover, + .switch_button:hover { + background: #ddd; + } + + .toolbar { + .button.active { + background: #ddd; + } + + .text { + font-weight: bold; + } + + .button, + .text { + margin-right: 0.4em; + } + + .button, + .text { + float: right; + } + } + + .content { + overflow-x: hidden; + overflow-y: auto; + margin-bottom: -65px; + border-top: solid 1px #aaa; + background: $white; + padding-top: 0.4em; + + &.console_dark_theme { + background: $black; + color: $white; + + .CodeMirror-wrap { + background: $black; + color: $white; + } + + .action_content { + color: $black; + } + + .message { + border-color: #373b41; + } + + .CodeMirror-cursor { + border-color: $white; + } + + .cm-keyword { + color: #de935f; + } + } + } + + .message, + .query_input { + position: relative; + font-family: Monaco, Consolas, monospace; + cursor: text; + margin: 0 10px 0.2em 1.4em; + } + + .message { + border-bottom: solid 1px #ccc; + padding-bottom: 0.2em; + + &.expanded > .action_content { + position: relative; + } + + &::before { + left: -0.7em; + position: absolute; + content: ">"; + } + } + + .query_input { + &::before { + left: -0.7em; + position: absolute; + content: ">"; + top: -2px; + } + + textarea { + width: 100%; + height: 4em; + resize: vertical; + } + } + + .message { + &:hover::before { + color: #7cf; + font-weight: bold; + } + + &.expanded::before { + content: "]"; + } + + &.welcome::before { + display: none; + } + + &.failed { + &::before, + &.expanded::before, + &:hover::before { + content: "="; + color: #944; + } + } + + &.pending::before { + opacity: 0.3; + } + + &.collapsed > .query { + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; + } + + &.expanded > .query { + display: block; + white-space: pre; + word-wrap: break-word; + } + + .text.targetdb, + &.collapsed .action.collapse, + &.expanded .action.expand { + display: none; + } + + .action { + &.requery, + &.profiling, + &.explain, + &.bookmark { + display: none; + } + } + + &.select .action { + &.profiling, + &.explain { + display: inline-block; + } + } + + &.history .text.targetdb, + &.successed .text.targetdb { + display: inline-block; + } + + &.history .action { + &.requery, + &.bookmark { + display: inline-block; + } + } + + &.bookmark .action { + &.requery, + &.bookmark { + display: inline-block; + } + } + + &.successed .action { + &.requery, + &.bookmark { + display: inline-block; + } + } + + .action_content { + position: absolute; + bottom: 100%; + background: #ccc; + border: solid 1px #aaa; + border-top-left-radius: 3px; + } + + &.bookmark .text.targetdb, + .text.query_time { + margin: 0; + display: inline-block; + } + + &.failed .text.query_time, + .text.failed { + display: none; + } + + &.failed .text.failed { + display: inline-block; + } + + .text { + background: $white; + } + + &.collapsed { + > .action_content { + display: none; + } + + &:hover > .action_content { + display: block; + } + } + + .bookmark_label { + padding: 0 4px; + top: 0; + background: #369; + color: $white; + border-radius: 3px; + + &.shared { + background: #396; + } + } + + &.expanded .bookmark_label { + border-top-left-radius: 0; + border-top-right-radius: 0; + } + } + + .query_input { + position: relative; + } + + .mid_layer { + height: 100%; + width: 100%; + position: absolute; + top: 0; + background: #666; + display: none; + cursor: pointer; + z-index: 200; + } + + .card { + position: absolute; + width: 94%; + height: 100%; + min-height: 48px; + left: 100%; + top: 0; + border-left: solid 1px #999; + z-index: 300; + transition: left 0.2s; + + &.show { + left: 6%; + box-shadow: -2px 1px 4px -1px #999; + } + } + + .button.hide, + .message span.text.hide { + display: none; + } +} + +// Dark Mode +@if $enable-dark-mode { + @include color-mode(dark) { + #pma_console { + .toolbar { + // background: #ccc; + @extend .bg-body-tertiary; + border-top: none; + + &.collapsed { + &:not(:hover) { + border-right: solid 1px #aaa; + } + } + } + + .message span.action:hover, + .toolbar .button:hover, + .switch_button:hover { + background: $body-tertiary-bg-dark; + color: $body-emphasis-color-dark; + } + + .toolbar { + .button.active { + background: $body-secondary-bg-dark; + color: $primary-text-dark; + } + } + + .content { + border-top: none; + background: $body-bg-dark; + + &.console_dark_theme { + background: #111317; + color: $white; + + .CodeMirror-wrap { + background: #111317; + color: $white; + } + + .action_content { + color: $body-color-dark; + } + + .message { + border-color: #2e333d; + } + + .CodeMirror-cursor { + border-color: $white; + } + + .cm-keyword { + color: #de935f; + } + } + } + + .message { + border-bottom: solid 1px #ccc; + } + + .message { + .action_content { + background: #ccc; + border: solid 1px #aaa; + } + + .text { + background: $white; + } + + .bookmark_label { + color: $white; + } + } + + .mid_layer { + background: #666; + } + + .card { + border-left: solid 1px #999; + + &.show { + box-shadow: -2px 1px 4px -1px #999; + } + } + } + } +} + +#pma_bookmarks .content.add_bookmark, +#pma_console_options .content { + padding: 4px 6px; +} + +#pma_bookmarks .content.add_bookmark { + .options { + margin-left: 1.4em; + padding-bottom: 0.4em; + margin-bottom: 0.4em; + border-bottom: solid 1px #ccc; + + button { + margin: 0 7px; + vertical-align: bottom; + } + } + + input[type="text"] { + margin: 0; + padding: 2px 4px; + } +} + +#debug_console { + &.grouped .ungroup_queries { + display: inline-block; + } + + &.ungrouped { + .group_queries { + display: inline-block; + } + + .ungroup_queries, + .sort_count { + display: none; + } + } + + &.grouped .group_queries { + display: none; + } + + .count { + margin-right: 8px; + } + + .show_trace .trace, + .show_args .args { + display: block; + } + + .hide_trace .trace, + .hide_args .args, + .show_trace .action.dbg_show_trace, + .hide_trace .action.dbg_hide_trace { + display: none; + } + + .traceStep { + &.hide_args .action.dbg_hide_args, + &.show_args .action.dbg_show_args { + display: none; + } + + &::after { + content: ""; + display: table; + clear: both; + } + } + + .trace.welcome::after, + .debug > .welcome::after { + content: ""; + display: table; + clear: both; + } + + .debug_summary { + float: left; + } + + .trace.welcome .time, + .traceStep .file, + .script_name { + float: right; + } + + .traceStep .args pre { + margin: 0; + } +} + +// Code mirror console style +.cm-s-pma { + .CodeMirror-code { + font-family: Monaco, Consolas, monospace; + + pre { + font-family: Monaco, Consolas, monospace; + } + } + + .CodeMirror-measure > pre, + .CodeMirror-code > pre, + .CodeMirror-lines { + padding: 0; + } + + &.CodeMirror { + resize: none; + height: auto; + width: 100%; + min-height: initial; + max-height: initial; + } + + .CodeMirror-scroll { + cursor: text; + } +} + +// PMA drop-improt style + +.pma_drop_handler { + display: none; + position: fixed; + top: 0; + left: 0; + width: 100%; + background: rgba(0, 0, 0, 0.6); + height: 100%; + z-index: 999; + color: white; + font-size: 30pt; + text-align: center; + padding-top: 20%; +} + +.pma_sql_import_status { + display: none; + position: fixed; + bottom: 0; + right: 25px; + width: 400px; + border: 1px solid #999; + background: #f3f3f3; + border-radius: 4px; + box-shadow: 2px 2px 5px #ccc; + + h2 { + background-color: #bbb; + padding: 0.1em 0.3em; + margin-top: 0; + margin-bottom: 0; + color: $white; + font-size: 1.6em; + font-weight: normal; + text-shadow: 0 1px 0 #777; + box-shadow: 1px 1px 15px #999 inset; + } +} + +.pma_drop_result h2 { + background-color: #bbb; + padding: 0.1em 0.3em; + margin-top: 0; + margin-bottom: 0; + color: $white; + font-size: 1.6em; + font-weight: normal; + text-shadow: 0 1px 0 #777; + box-shadow: 1px 1px 15px #999 inset; +} + +.pma_sql_import_status { + div { + height: 270px; + overflow-y: auto; + overflow-x: hidden; + list-style-type: none; + + li { + padding: 8px 10px; + border-bottom: 1px solid #bbb; + color: rgb(148, 14, 14); + background: white; + + .filesize { + float: right; + } + } + } + + h2 { + .minimize { + float: right; + margin-right: 5px; + padding: 0 10px; + } + + .close { + float: right; + margin-right: 5px; + padding: 0 10px; + display: none; + } + + .minimize:hover, + .close:hover { + background: rgba(155, 149, 149, 0.78); + cursor: pointer; + } + } +} + +.pma_drop_result h2 .close:hover { + background: rgba(155, 149, 149, 0.78); + cursor: pointer; +} + +.pma_drop_file_status { + color: #235a81; + + span.underline:hover { + cursor: pointer; + text-decoration: underline; + } +} + +.pma_drop_result { + position: fixed; + top: 10%; + left: 20%; + width: 60%; + background: white; + min-height: 300px; + z-index: 800; + box-shadow: 0 0 15px #999; + border-radius: 10px; + cursor: move; + + h2 .close { + float: right; + margin-right: 5px; + padding: 0 10px; + } +} + +.dependencies_box { + background-color: white; + border: 3px ridge black; +} + +#composite_index_list { + list-style-type: none; + list-style-position: inside; +} + +span.drag_icon { + display: inline-block; + background-image: url("../img/s_sortable.png"); + background-position: center center; + background-repeat: no-repeat; + width: 1em; + height: 3em; + cursor: move; +} + +.topmargin { + margin-top: 1em; +} + +meter { + &[value="1"]::-webkit-meter-optimum-value { + background: linear-gradient(white 3%, #e32929 5%, transparent 10%, #e32929); + } + + &[value="2"]::-webkit-meter-optimum-value { + background: linear-gradient(white 3%, #f60 5%, transparent 10%, #f60); + } + + &[value="3"]::-webkit-meter-optimum-value { + background: linear-gradient(white 3%, #ffd700 5%, transparent 10%, #ffd700); + } +} + +// styles for sortable tables created with tablesorter jquery plugin +th { + &.header { + cursor: pointer; + color: #235a81; + + &:hover { + text-decoration: underline; + } + + .sorticon { + width: 16px; + height: 16px; + background-repeat: no-repeat; + background-position: right center; + display: inline-table; + vertical-align: middle; + float: right; + } + } + + &.headerSortUp .sorticon { + background-image: url("../img/sort-desc.svg"); + } + + &.headerSortDown { + &:hover .sorticon { + background-image: url("../img/sort-desc.svg"); + } + + .sorticon { + background-image: url("../img/sort-asc.svg"); + } + } + + &.headerSortUp:hover .sorticon { + background-image: url("../img/sort-asc.svg"); + } +} + +// end of styles of sortable tables + +// styles for jQuery-ui to support rtl languages +body .ui-dialog { + .ui-dialog-titlebar-close { + right: 0.3em; + left: initial; + } + + .ui-dialog-title { + float: left; + } + + .ui-dialog-buttonpane .ui-dialog-buttonset { + float: right; + } + + .ui-dialog-buttonpane .ui-dialog-buttonset button { + color: $white; + background: none; + background-color: #6c757d !important; + border-color: #6c757d; + } + + .ui-dialog-buttonpane .ui-dialog-buttonset button:hover { + background-color: #5a6268 !important; + } +} +// end of styles for jQuery-ui to support rtl languages + +/* templates/database/multi_table_query */ + +.multi_table_query_form { + .query-form__tr--hide { + display: none; + } + + .query-form__fieldset--inline, + .query-form__select--inline { + display: inline; + } + + .query-form__tr--bg-none { + background: none; + } + + .query-form__input--wide { + width: 91%; + } + + .query-form__multi-sql-query { + float: left; + } +} + +// templates/database/designer +// side menu +#name-panel { + overflow: hidden; +} + +// Enable scrollable blocks of code +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; +} + +@media only screen and (max-width: 768px) { + .responsivetable { + overflow-x: auto; + } + + body#loginform div.container { + width: 100%; + } + + .largescreenonly { + display: none; + } + + .width96 { + width: 96% !important; + } + + #page_nav_icons { + display: none; + } + + #table_name_col_no { + top: 62px; + } + + .tdblock tr td { + display: block; + } + + #table_columns { + margin-top: 60px; + + .tablesorter { + min-width: 100%; + } + } + + .doubleFieldset .pma-fieldset { + width: 98%; + } + + div#serverstatusquerieschart { + width: 100%; + height: 450px; + } + + .ui-dialog { + margin: 1%; + width: 95% !important; + } +} + +#tooltip_editor { + font-size: 12px; + background-color: $white; + opacity: 0.95; + filter: alpha(opacity=95); + padding: 5px; +} + +#tooltip_font { + font-weight: bold; +} + +#selection_box { + z-index: 1000; + height: 205px; + position: absolute; + background-color: #87ceeb; + opacity: 0.4; + filter: alpha(opacity=40); + pointer-events: none; +} + +#filterQueryText { + vertical-align: baseline; +} + +.ui_tpicker_hour_slider, +.ui_tpicker_minute_slider, +.ui_tpicker_second_slider, +.ui_tpicker_millisec_slider, +.ui_tpicker_microsec_slider { + margin-left: 40px; + margin-top: 4px; + height: 0.75rem; +} + +.ui-timepicker-div dl .ui_tpicker_timezone select { + margin-left: 50px; +} + +.ui_tpicker_time_input { + width: 100%; +} + +// Extra large devices (large desktops, 1200px and up) +@include media-breakpoint-up(xl) { + div.tools { + text-align: left; + } + + .pma-fieldset.tblFooters, + .tblFooters { + text-align: left; + } +} + +.resize-vertical { + resize: vertical; +} + +.table-responsive-md .data { + z-index: 9; +} diff --git a/pirulug/scss/4-layout/_designer.scss b/pirulug/scss/4-layout/_designer.scss new file mode 100644 index 0000000000..3c353b5b0f --- /dev/null +++ b/pirulug/scss/4-layout/_designer.scss @@ -0,0 +1,497 @@ +$minus-img: '../img/designer/minus.png'; +$plus-img: '../img/designer/plus.png'; +$top-panel-img: '../img/designer/top_panel.png'; +$small-tab-img: '../img/designer/small_tab.png'; +$frams1-img: '../img/designer/1.png'; +$frams2-img: '../img/designer/2.png'; +$frams3-img: '../img/designer/3.png'; +$frams4-img: '../img/designer/4.png'; +$frams5-img: '../img/designer/5.png'; +$frams6-img: '../img/designer/6.png'; +$frams7-img: '../img/designer/7.png'; +$frams8-img: '../img/designer/8.png'; +$resize-img: '../img/designer/resize.png'; + +/* Designer */ +.input_tab { + background-color: #a6c7e1; + color: $black; +} + +.content_fullscreen { + position: relative; + overflow: auto; +} + +#canvas_outer { + position: relative; + width: 100%; + display: block; +} + +#canvas { + background-color: $white; + color: $black; +} + +canvas.designer { + display: inline-block; + overflow: hidden; + text-align: left; + + * { + behavior: url(#default#VML); + } +} + +.designer_tab { + background-color: $white; + color: $black; + border-collapse: collapse; + border: 1px solid #aaa; + z-index: 1; + user-select: none; + + .header { + background: linear-gradient(#b8e6fa, #b8e6fa 6%, #cdf5fd 10%, #dbffff 10%, #9bd2f6 50%, #9bd2f6 100%); + } +} + +.tab_zag { + text-align: center; + cursor: move; + padding: 1px; + font-weight: bold; +} + +.tab_zag_2 { + background: linear-gradient(#fffa96 0%, #fffa96 39%, #ffe796 40%, #ffe796 100%); + text-align: center; + cursor: move; + padding: 1px; + font-weight: bold; +} + +.tab_field { + background: $white; + color: $black; + cursor: default; + + &:hover { + background-color: #cfc; + color: $black; + background-repeat: repeat-x; + cursor: default; + } +} + +.tab_field_3 { + background-color: #ffe6e6; + color: $black; + cursor: default; + + &:hover { + background-color: #cfc; + color: $black; + background-repeat: repeat-x; + cursor: default; + } +} + +#designer_hint { + white-space: nowrap; + position: absolute; + background-color: #9f9; + color: $black; + z-index: 3; + border: #0c6 solid 1px; + display: none; +} + +#designer_body #page_content { + margin: 0; +} + +.scroll_tab { + overflow: auto; + width: 100%; + height: 500px; +} + +.designer_Tabs { + cursor: default; + color: #05b; + white-space: nowrap; + text-decoration: none; + text-indent: 3px; + font-weight: bold; + margin-left: 2px; + text-align: left; + background: linear-gradient($white, #dfe5e7 70%, $white 70%, $white 100%); + border: #ccc solid 1px; + + &:hover { + cursor: default; + color: #05b; + background: #fe9; + text-indent: 3px; + font-weight: bold; + white-space: nowrap; + text-decoration: none; + border: #99f solid 1px; + text-align: left; + } +} + +.owner { + font-weight: normal; + color: #888; +} + +.option_tab { + padding-left: 2px; + padding-right: 2px; + width: 5px; +} + +.select_all { + vertical-align: top; + padding-left: 2px; + padding-right: 2px; + cursor: default; + width: 1px; + color: $black; + background: linear-gradient(#b8e6fa, #b8e6fa 6%, #cdf5fd 10%, #dbffff 10%, #9bd2f6 50%, #9bd2f6 100%); +} + +.small_tab { + vertical-align: top; + background-color: #0064ea; + color: $white; + background-image: url($small-tab-img); + cursor: default; + text-align: center; + font-weight: bold; + padding-left: 2px; + padding-right: 2px; + width: 1px; + text-decoration: none; + + &:hover { + vertical-align: top; + color: $white; + background-color: #f96; + cursor: default; + padding-left: 2px; + padding-right: 2px; + text-align: center; + font-weight: bold; + width: 1px; + text-decoration: none; + } +} + +.small_tab_pref { + background: linear-gradient(#b8e6fa, #b8e6fa 6%, #cdf5fd 10%, #dbffff 10%, #9bd2f6 50%, #9bd2f6 100%); + text-align: center; + width: 1px; + + &:hover { + vertical-align: top; + color: $white; + background-color: #f96; + cursor: default; + text-align: center; + font-weight: bold; + width: 1px; + text-decoration: none; + } +} + +.butt { + border: #47a solid 1px; + font-weight: bold; + background-color: $white; + color: $black; + vertical-align: baseline; +} + +.L_butt2_1 { + padding: 1px; + text-decoration: none; + vertical-align: middle; + cursor: default; + + &:hover { + padding: 0; + border: #09c solid 1px; + background: #fe9; + color: $black; + text-decoration: none; + vertical-align: middle; + cursor: default; + } +} + +/* --------------------------------------------------------------------------- */ +.bor { + width: 10px; + height: 10px; +} + +.frams1 { + background: url($frams1-img) no-repeat right bottom; +} + +.frams2 { + background: url($frams2-img) no-repeat left bottom; +} + +.frams3 { + background: url($frams3-img) no-repeat left top; +} + +.frams4 { + background: url($frams4-img) no-repeat right top; +} + +.frams5 { + background: url($frams5-img) repeat-x center bottom; +} + +.frams6 { + background: url($frams6-img) repeat-y left; +} + +.frams7 { + background: url($frams7-img) repeat-x top; +} + +.frams8 { + background: url($frams8-img) repeat-y right; +} + +#osn_tab { + position: absolute; + background-color: $white; + color: $black; +} + +.designer_header { + background-color: #eaeef0; + color: $black; + text-align: center; + font-weight: bold; + margin: 0; + padding: 0; + background-image: url($top-panel-img); + background-position: top; + background-repeat: repeat-x; + border-right: #999 solid 1px; + border-left: #999 solid 1px; + height: 28px; + z-index: 101; + width: 100%; + position: fixed; + + a, + span { + display: block; + float: left; + margin: 3px 1px 4px; + height: 20px; + border: 1px dotted $white; + } + + .M_bord { + display: block; + float: left; + margin: 4px; + height: 20px; + width: 2px; + } + + a { + &.first { + margin-right: 1em; + } + + &.last { + margin-left: 1em; + } + } +} + +a { + &.M_butt_Selected_down_IE, + &.M_butt_Selected_down { + border: 1px solid #c0c0bb; + background-color: #9f9; + color: $black; + + &:hover { + border: 1px solid #09c; + background-color: #fe9; + color: $black; + } + } + + &.M_butt:hover { + border: 1px solid #09c; + background-color: #fe9; + color: $black; + } +} + +#layer_menu { + z-index: 98; + position: relative; + float: right; + background-color: #eaeef0; + border: #999 solid 1px; +} + +#layer_upd_relation { + position: absolute; + left: 637px; + top: 224px; + z-index: 100; +} + +#layer_new_relation, +#designer_optionse { + position: absolute; + left: 636px; + top: 85px; + z-index: 100; + width: 153px; +} + +#layer_menu_sizer { + background-image: url($resize-img); + cursor: ew-resize; + + .icon { + margin: 0; + } +} + +.panel { + position: fixed; + top: 60px; + right: 0; + width: 350px; + max-height: 500px; + display: none; + overflow: auto; + padding-top: 34px; + z-index: 102; +} + +a { + &.trigger { + position: fixed; + text-decoration: none; + top: 60px; + right: 0; + color: $white; + padding: 10px 40px 10px 15px; + background: #333 url($plus-img) 85% 55% no-repeat; + border: 1px solid #444; + display: block; + z-index: 102; + + &:hover { + color: #080808; + background: #fff696 url($plus-img) 85% 55% no-repeat; + border: 1px solid #999; + } + } + + &.active.trigger { + background: #222 url($minus-img) 85% 55% no-repeat; + z-index: 999; + + &:hover { + background: #fff696 url($minus-img) 85% 55% no-repeat; + } + } +} + +.toggle_container .block { + background-color: #dbe4e8; + border-top: 1px solid #999; +} + +.history_table { + text-align: center; + cursor: pointer; + background-color: #dbe4e8; + + &:hover { + background-color: #99c; + } +} + +#ab { + min-width: 300px; + + .ui-accordion-content { + padding: 0; + } +} + +#foreignkeychk { + text-align: left; + cursor: pointer; +} + +.side-menu { + float: left; + position: fixed; + width: auto; + height: auto; + background: #efefef; + border: 1px solid grey; + overflow: hidden; + z-index: 50; + padding: 2px; + + &.right { + float: right; + right: 0; + } + + .hide { + display: none; + } + + a { + display: block; + float: none; + overflow: hidden; + line-height: 1em; + } + + img, + .text { + float: left; + } +} + +#name-panel { + border-bottom: 1px solid var(--#{$prefix}border-color); + text-align: center; + background: var(--#{$prefix}tertiary-bg); + color: var(--#{$prefix}body-color); + width: 100%; + font-size: 1.1em; + padding: 5px; + font-weight: bold; +} + +#container-form { + width: 100%; + position: absolute; + left: 0; +} diff --git a/pirulug/scss/4-layout/_enum-editor.scss b/pirulug/scss/4-layout/_enum-editor.scss new file mode 100644 index 0000000000..03dd1589e4 --- /dev/null +++ b/pirulug/scss/4-layout/_enum-editor.scss @@ -0,0 +1,71 @@ +/** + * ENUM/SET editor styles + */ +p.enum_notice { + margin: 5px 2px; + font-size: 80%; +} + +#enum_editor { + p { + margin-top: 0; + font-style: italic; + } + + .values { + width: 100%; + } + + .add { + width: 100%; + + td { + vertical-align: middle; + width: 50%; + padding: 0 0 0; + padding-left: 1em; + } + } + + .values { + td.drop { + width: 1.8em; + cursor: pointer; + vertical-align: middle; + } + + input { + margin: 0.1em 0; + padding-right: 2em; + width: 100%; + } + + img { + vertical-align: middle; + } + } + + input.add_value { + margin: 0; + margin-right: 0.4em; + } +} + +#enum_editor_output textarea { + width: 100%; + float: right; + margin: 1em 0 0 0; +} + +/** + * ENUM/SET editor integration for the routines editor + */ +.enum_hint { + position: relative; + + a { + position: absolute; + left: 81%; + bottom: 0.35em; + } +} diff --git a/pirulug/scss/4-layout/_forms.scss b/pirulug/scss/4-layout/_forms.scss new file mode 100644 index 0000000000..81d8a9c09c --- /dev/null +++ b/pirulug/scss/4-layout/_forms.scss @@ -0,0 +1,4 @@ +select#fieldsSelect, +textarea#sqlquery { + height: 20rem; +} diff --git a/pirulug/scss/4-layout/_gis.scss b/pirulug/scss/4-layout/_gis.scss new file mode 100644 index 0000000000..b2832106e4 --- /dev/null +++ b/pirulug/scss/4-layout/_gis.scss @@ -0,0 +1,39 @@ +/** + * GIS data editor styles + */ +a.close_gis_editor { + float: right; +} + +#gis_editor { + display: none; + position: fixed; + z-index: 1001; + overflow-y: auto; + overflow-x: hidden; +} + +#gis_data { + min-height: 230px; +} + +#gis_data_textarea { + height: 6em; +} + +#gis_data_editor { + background: var(--#{$prefix}tertiary-bg); + border: 1px solid var(--#{$prefix}border-color); + border-radius: 4px; + color: var(--#{$prefix}body-color); + padding: 15px; + min-height: 500px; + + .choice { + display: none; + } + + input[type="text"] { + width: 75px; + } +} diff --git a/pirulug/scss/4-layout/_icons.scss b/pirulug/scss/4-layout/_icons.scss new file mode 100644 index 0000000000..7f54a61047 --- /dev/null +++ b/pirulug/scss/4-layout/_icons.scss @@ -0,0 +1,690 @@ +.icon { + margin: 0; + margin-left: 0.3em; + padding: 0 !important; + width: 16px; + height: 16px; +} + +.icon_fulltext { + width: 50px; + height: 19px; +} + +.ic_asc_order { + background-image: url('../img/asc_order.png'); +} + +.ic_b_bookmark { + background-image: url('../img/bookmark-plus.svg'); +} + +.ic_b_browse, +.ic_b_sbrowse { + background-image: url('../img/table-browse.svg'); +} + +.ic_b_calendar { + background-image: url('../img/b_calendar.png'); +} + +.ic_b_chart { + background-image: url('../img/chart.svg'); +} + +.ic_b_close { + background-image: url('../img/close.svg'); +} + +.ic_b_column_add { + background-image: url('../img/col-plus.svg'); +} + +.ic_b_comment { + background-image: url('../img/comment.svg'); +} + +.ic_b_dbstatistics { + background-image: url('../img/b_dbstatistics.png'); +} + +.ic_b_deltbl { + background-image: url('../img/table-minus.svg'); +} + +.ic_b_docs { + background-image: url('../img/help.svg'); +} + +.ic_b_docsql { + background-image: url('../img/b_docsql.png'); +} + +.ic_b_drop { + background-image: url('../img/minus.svg'); +} + +.ic_b_edit { + background-image: url('../img/edit.svg'); +} + +.ic_b_empty { + background-image: url('../img/shredder.svg'); +} + +.ic_b_engine { + background-image: url('../img/database-engine.svg'); +} + +.ic_b_event_add { + background-image: url('../img/event-plus.svg'); +} + +.ic_b_events { + background-image: url('../img/event.svg'); +} + +.ic_b_export, +.ic_b_tblexport { + background-image: url('../img/export.svg'); +} + +.ic_b_favorite { + background-image: url('../img/favorite.svg'); +} + +.ic_b_find_replace { + background-image: url('../img/search-replace.svg'); +} + +.ic_b_firstpage { + background-image: url('../img/b_firstpage.png'); +} + +.ic_b_ftext { + background-image: url('../img/field-index-text.svg'); +} + +.ic_b_globe { + background-image: url('../img/globe-alt.svg'); +} + +.ic_b_group { + background-image: url('../img/databases.svg'); +} + +.ic_b_help { + background-image: url('../img/help-alt.svg'); +} + +.ic_b_home { + background-image: url('../img/home.svg'); +} + +.ic_b_import, +.ic_b_tblimport { + background-image: url('../img/import.svg'); +} + +.ic_b_index { + background-image: url('../img/field-index.svg'); +} + +.ic_b_index_add { + background-image: url('../img/index-plus.svg'); +} + +.ic_b_inline_edit { + background-image: url('../img/b_inline_edit.png'); +} + +.ic_b_insrow { + background-image: url('../img/row-plus.svg'); +} + +.ic_b_lastpage { + background-image: url('../img/b_lastpage.png'); +} + +.ic_b_minus { + background-image: url('../img/tree-collapse.svg'); +} + +.ic_b_more { + background-image: url('../img/triangle-down-1.svg'); +} + +.ic_b_move { + background-image: url('../img/col-move.svg'); +} + +.ic_b_newdb { + background-image: url('../img/database-plus.svg'); +} + +.ic_db_drop { + background-image: url('../img/database-minus.svg'); +} + +.ic_b_newtbl { + background-image: url('../img/b_newtbl.png'); +} + +.ic_b_nextpage { + background-image: url('../img/b_nextpage.png'); +} + +.ic_b_no_favorite { + background-image: url('../img/favorite-alt.svg'); +} + +.ic_b_pdfdoc { + background-image: url('../img/b_pdfdoc.png'); +} + +.ic_b_plugin { + background-image: url('../img/plugin.svg'); +} + +.ic_b_plus { + background-image: url('../img/tree-expand.svg'); +} + +.ic_b_prevpage { + background-image: url('../img/b_prevpage.png'); +} + +.ic_b_primary { + background-image: url('../img/key-primary.svg'); +} + +.ic_b_print { + background-image: url('../img/print.svg'); +} + +.ic_b_props { + background-image: url('../img/table-engine.svg'); +} + +.ic_b_relations { + background-image: url('../img/designer.svg'); +} + +.ic_b_report { + background-image: url('../img/report.svg'); +} + +.ic_b_rename { + background-image: url('../img/b_rename.svg'); +} + +.ic_b_routine_add { + background-image: url('../img/routine-plus.svg'); +} + +.ic_b_routines { + background-image: url('../img/routine.svg'); +} + +.ic_b_save, +.ic_b_saveimage { + background-image: url('../img/save.svg'); +} + +.ic_b_sdb { + background-image: url('../img/b_sdb.png'); + width: 10px; + height: 10px; +} + +.ic_b_search { + background-image: url('../img/search.svg'); +} + +.ic_b_select { + background-image: url('../img/search-across.svg'); +} + +.ic_b_snewtbl { + background-image: url('../img/b_snewtbl.png'); +} + +.ic_b_spatial { + background-image: url('../img/field-spatial.svg'); +} + +.ic_b_sql { + background-image: url('../img/sql.svg'); +} + +.ic_b_sqldoc { + background-image: url('../img/b_sqldoc.png'); +} + +.ic_b_sqlhelp { + background-image: url('../img/manual.svg'); +} + +.ic_b_table_add { + background-image: url('../img/table-plus.svg'); +} + +.ic_b_tblanalyse { + background-image: url('../img/table-analyse.svg'); +} + +.ic_b_tblops { + background-image: url('../img/preferences.svg'); +} + +.ic_b_tbloptimize { + background-image: url('../img/optimize.svg'); +} + +.ic_b_tipp { + background-image: url('../img/b_tipp.png'); +} + +.ic_b_trigger_add { + background-image: url('../img/flag-plus.svg'); +} + +.ic_b_triggers { + background-image: url('../img/flag.svg'); +} + +.ic_b_undo { + background-image: url('../img/b_undo.png'); +} + +.ic_b_unique { + background-image: url('../img/field-index-uinique.svg'); +} + +.ic_b_usradd { + background-image: url('../img/user-plus.svg'); +} + +.ic_b_usrdrop { + background-image: url('../img/user-minus.svg'); +} + +.ic_b_usredit, +.ic_b_usrcheck { + background-image: url('../img/user.svg'); +} + +.ic_b_usrlist { + background-image: url('../img/users.svg'); +} + +.ic_b_versions { + background-image: url('../img/version.svg'); +} + +.ic_b_view { + background-image: url('../img/b_view.png'); +} + +.ic_b_view_add { + background-image: url('../img/table-view-plus.svg'); +} + +.ic_b_views { + background-image: url('../img/table-view.svg'); +} + +.ic_b_left { + background-image: url('../img/b_left.png'); +} + +.ic_b_right { + background-image: url('../img/b_right.png'); +} + +.ic_bd_browse { + background-image: url('../img/bd_browse.png'); +} + +.ic_bd_deltbl { + background-image: url('../img/bd_deltbl.png'); +} + +.ic_bd_drop { + background-image: url('../img/bd_drop.png'); +} + +.ic_bd_edit { + background-image: url('../img/bd_edit.png'); +} + +.ic_bd_empty { + background-image: url('../img/bd_empty.png'); +} + +.ic_bd_export { + background-image: url('../img/bd_export.png'); +} + +.ic_bd_firstpage { + background-image: url('../img/bd_firstpage.png'); +} + +.ic_bd_ftext { + background-image: url('../img/bd_ftext.png'); +} + +.ic_bd_index { + background-image: url('../img/bd_index.png'); +} + +.ic_bd_insrow { + background-image: url('../img/bd_insrow.png'); +} + +.ic_bd_lastpage { + background-image: url('../img/bd_lastpage.png'); +} + +.ic_bd_nextpage { + background-image: url('../img/bd_nextpage.png'); +} + +.ic_bd_prevpage { + background-image: url('../img/bd_prevpage.png'); +} + +.ic_bd_primary { + background-image: url('../img/key.svg'); +} + +.ic_bd_routine_add { + background-image: url('../img/bd_routine_add.png'); +} + +.ic_bd_sbrowse { + background-image: url('../img/bd_sbrowse.png'); +} + +.ic_bd_select { + background-image: url('../img/bd_select.png'); +} + +.ic_bd_spatial { + background-image: url('../img/bd_spatial.png'); +} + +.ic_bd_unique { + background-image: url('../img/bd_unique.png'); +} + +.ic_centralColumns { + background-image: url('../img/col.svg'); +} + +.ic_centralColumns_add { + background-image: url('../img/col-plus.svg'); +} + +.ic_centralColumns_delete { + background-image: url('../img/col-minus.svg'); +} + +.ic_col_drop { + background-image: url('../img/col_drop.png'); +} + +.ic_console { + background-image: url('../img/console.svg'); +} + +.ic_database, +.ic_s_db { + background-image: url('../img/database.svg'); +} + +.ic_eye { + background-image: url('../img/glasses.svg'); +} + +.ic_eye_grey { + background-image: url('../img/eye_grey.png'); +} + +.ic_hide { + background-image: url('../img/visibility-hidden.svg'); +} + +.ic_item { + background-image: url('../img/item.png'); + width: 9px; + height: 9px; +} + +.ic_lightbulb { + background-image: url('../img/lightbulb.png'); +} + +.ic_lightbulb_off { + background-image: url('../img/lightbulb_off.png'); +} + +.ic_more { + background-image: url('../img/more.png'); + width: 13px; +} + +.ic_new_data { + background-image: url('../img/new_data.png'); +} + +.ic_new_data_hovered { + background-image: url('../img/new_data_hovered.png'); +} + +.ic_new_data_selected { + background-image: url('../img/new_data_selected.png'); +} + +.ic_new_data_selected_hovered { + background-image: url('../img/new_data_selected_hovered.png'); +} + +.ic_new_struct { + background-image: url('../img/new_struct.png'); +} + +.ic_new_struct_hovered { + background-image: url('../img/new_struct_hovered.png'); +} + +.ic_new_struct_selected { + background-image: url('../img/new_struct_selected.png'); +} + +.ic_new_struct_selected_hovered { + background-image: url('../img/new_struct_selected_hovered.png'); +} + +.ic_normalize { + background-image: url('../img/wizard.svg'); +} + +.ic_pause { + background-image: url('../img/pause.svg'); +} + +.ic_php_sym { + background-image: url('../img/php_sym.png'); +} + +.ic_play { + background-image: url('../img/triangle-right-1.svg'); +} + +.ic_s_asc { + background-image: url('../img/sort-asc.svg'); +} + +.ic_s_asci { + background-image: url('../img/charset.svg'); +} + +.ic_s_attention { + background-image: url('../img/s_attention.png'); +} + +.ic_s_cancel { + background-image: url('../img/s_cancel.png'); +} + +.ic_s_cancel2 { + background-image: url('../img/s_cancel2.png'); +} + +.ic_s_cog { + background-image: url('../img/gear.svg'); +} + +.ic_s_collapseall { + background-image: url('../img/s_collapseall.png'); + background-position: center; +} + +.ic_s_desc { + background-image: url('../img/sort-desc.svg'); +} + +.ic_s_error { + background-image: url('../img/error.svg'); +} + +.ic_s_host { + background-image: url('../img/host.svg'); +} + +.ic_s_info { + background-image: url('../img/s_info.png'); +} + +.ic_s_lang { + background-image: url('../img/language.svg'); +} + +.ic_s_link { + background-image: url('../img/link.svg'); +} + +.ic_s_lock { + background-image: url('../img/lock.svg'); +} + +.ic_s_unlock { + background-image: url('../img/lock-open.svg'); +} + +.ic_s_loggoff { + background-image: url('../img/sign-out.svg'); +} + +.ic_s_notice { + background-image: url('../img/notice.svg'); +} + +.ic_s_okay { + background-image: url('../img/check.svg'); +} + +.ic_s_passwd { + background-image: url('../img/password.svg'); +} + +.ic_s_process { + background-image: url('../img/s_process.png'); +} + +.ic_s_really { + background-image: url('../img/s_really.png'); + width: 11px; + height: 11px; +} + +.ic_s_reload { + background-image: url('../img/reload.svg'); +} + +.ic_s_replication { + background-image: url('../img/replication.svg'); +} + +.ic_s_rights { + background-image: url('../img/user-props.svg'); +} + +.ic_s_sortable { + background-image: url('../img/s_sortable.png'); +} + +.ic_s_status { + background-image: url('../img/server.svg'); +} + +.ic_s_success { + background-image: url('../img/success.svg'); +} + +.ic_s_sync { + background-image: url('../img/s_sync.png'); +} + +.ic_s_tbl { + background-image: url('../img/table.svg'); +} + +.ic_s_theme { + background-image: url('../img/theme.svg'); +} + +.ic_s_top { + background-image: url('../img/caret-up-stop.svg'); +} + +.ic_s_unlink { + background-image: url('../img/link-broken.svg'); +} + +.ic_s_vars { + background-image: url('../img/database-vars.svg'); +} + +.ic_s_views { + background-image: url('../img/s_views.png'); +} + +.ic_show { + background-image: url('../img/visibility.svg'); +} + +.ic_window-new { + background-image: url('../img/windows.svg'); +} + +.ic_ajax_clock_small { + background-image: url('../img/ajax_clock_small.gif'); +} + +.ic_s_partialtext { + background-image: url('../img/s_partialtext.png'); +} + +.ic_s_fulltext { + background-image: url('../img/s_fulltext.png'); +} + +.ic_user { + background-image: url("../img/user.svg"); +} + +[data-bs-theme="dark"] .ic_user { + background-image: url("../img/dark/user.svg"); +} \ No newline at end of file diff --git a/pirulug/scss/4-layout/_jqplot.scss b/pirulug/scss/4-layout/_jqplot.scss new file mode 100644 index 0000000000..f3d92f879b --- /dev/null +++ b/pirulug/scss/4-layout/_jqplot.scss @@ -0,0 +1,275 @@ +/* jqPlot */ + +// rules for the plot target div. These will be cascaded down to all plot elements according to css rules +.jqplot-target { + position: relative; + color: #222; + font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; + font-size: 1em; +} + +// rules applied to all axes +.jqplot-axis { + font-size: 0.75em; +} + +.jqplot-xaxis { + margin-top: 10px; +} + +.jqplot-x2axis { + margin-bottom: 10px; +} + +.jqplot-yaxis { + margin-right: 10px; +} + +.jqplot-y2axis, +.jqplot-y3axis, +.jqplot-y4axis, +.jqplot-y5axis, +.jqplot-y6axis, +.jqplot-y7axis, +.jqplot-y8axis, +.jqplot-y9axis, +.jqplot-yMidAxis { + margin-left: 10px; + margin-right: 10px; +} + +// rules applied to all axis tick divs +.jqplot-axis-tick, +.jqplot-xaxis-tick, +.jqplot-yaxis-tick, +.jqplot-x2axis-tick, +.jqplot-y2axis-tick, +.jqplot-y3axis-tick, +.jqplot-y4axis-tick, +.jqplot-y5axis-tick, +.jqplot-y6axis-tick, +.jqplot-y7axis-tick, +.jqplot-y8axis-tick, +.jqplot-y9axis-tick, +.jqplot-yMidAxis-tick { + position: absolute; + white-space: pre; +} + +.jqplot-xaxis-tick { + top: 0; + // initial position untill tick is drawn in proper place + left: 15px; + vertical-align: top; +} + +.jqplot-x2axis-tick { + bottom: 0; + // initial position untill tick is drawn in proper place + left: 15px; + vertical-align: bottom; +} + +.jqplot-yaxis-tick { + right: 0; + // initial position untill tick is drawn in proper place + top: 15px; + text-align: right; + + &.jqplot-breakTick { + right: -20px; + margin-right: 0; + padding: 1px 5px 1px; + z-index: 2; + font-size: 1.5em; + } +} + +.jqplot-y2axis-tick, +.jqplot-y3axis-tick, +.jqplot-y4axis-tick, +.jqplot-y5axis-tick, +.jqplot-y6axis-tick, +.jqplot-y7axis-tick, +.jqplot-y8axis-tick, +.jqplot-y9axis-tick { + left: 0; + // initial position untill tick is drawn in proper place + top: 15px; + text-align: left; +} + +.jqplot-yMidAxis-tick { + text-align: center; + white-space: nowrap; +} + +.jqplot-xaxis-label { + margin-top: 10px; + font-size: 11pt; + position: absolute; +} + +.jqplot-x2axis-label { + margin-bottom: 10px; + font-size: 11pt; + position: absolute; +} + +.jqplot-yaxis-label { + margin-right: 10px; + font-size: 11pt; + position: absolute; +} + +.jqplot-yMidAxis-label { + font-size: 11pt; + position: absolute; +} + +.jqplot-y2axis-label, +.jqplot-y3axis-label, +.jqplot-y4axis-label, +.jqplot-y5axis-label, +.jqplot-y6axis-label, +.jqplot-y7axis-label, +.jqplot-y8axis-label, +.jqplot-y9axis-label { + font-size: 11pt; + margin-left: 10px; + position: absolute; +} + +.jqplot-meterGauge-tick { + font-size: 0.75em; + color: #999; +} + +.jqplot-meterGauge-label { + font-size: 1em; + color: #999; +} + +table { + &.jqplot-table-legend { + margin-top: 12px; + margin-bottom: 12px; + margin-left: 12px; + margin-right: 12px; + background-color: rgba(255, 255, 255, 0.6); + border: 1px solid #ccc; + position: absolute; + font-size: 0.75em; + } + + &.jqplot-cursor-legend { + background-color: rgba(255, 255, 255, 0.6); + border: 1px solid #ccc; + position: absolute; + font-size: 0.75em; + } +} + +td { + &.jqplot-table-legend { + vertical-align: middle; + } + + &.jqplot-seriesToggle { + &:hover, + &:active { + cursor: pointer; + } + } +} + +.jqplot-table-legend .jqplot-series-hidden { + text-decoration: line-through; +} + +div { + &.jqplot-table-legend-swatch-outline { + border: 1px solid #ccc; + padding: 1px; + } + + &.jqplot-table-legend-swatch { + width: 0; + height: 0; + border-top-width: 5px; + border-bottom-width: 5px; + border-left-width: 6px; + border-right-width: 6px; + border-top-style: solid; + border-bottom-style: solid; + border-left-style: solid; + border-right-style: solid; + } +} + +.jqplot-title { + top: 0; + left: 0; + padding-bottom: 0.5em; + font-size: 1.2em; +} + +table.jqplot-cursor-tooltip { + border: 1px solid #ccc; + font-size: 0.75em; +} + +.jqplot-cursor-tooltip, +.jqplot-highlighter-tooltip, +.jqplot-canvasOverlay-tooltip { + border: 1px solid #ccc; + font-size: 1em; + white-space: nowrap; + background: rgba(208, 208, 208, 0.8); + padding: 1px; +} + +.jqplot-point-label { + font-size: 0.75em; + z-index: 2; +} + +td.jqplot-cursor-legend-swatch { + vertical-align: middle; + text-align: center; +} + +div.jqplot-cursor-legend-swatch { + width: 1.2em; + height: 0.7em; +} + +.jqplot-error { + // Styles added to the plot target container when there is an error go here. + text-align: center; +} + +.jqplot-error-message { + // Styling of the custom error message div goes here. + position: relative; + top: 46%; + display: inline-block; +} + +div { + &.jqplot-bubble-label { + font-size: 0.8em; + padding-left: 2px; + padding-right: 2px; + color: rgb(20%, 20%, 20%); + + &.jqplot-bubble-label-highlight { + background: rgba(90%, 90%, 90%, 0.7); + } + } + + &.jqplot-noData-container { + text-align: center; + background-color: rgba(96%, 96%, 96%, 0.3); + } +} diff --git a/pirulug/scss/4-layout/_navigation.scss b/pirulug/scss/4-layout/_navigation.scss new file mode 100644 index 0000000000..e0b79f5581 --- /dev/null +++ b/pirulug/scss/4-layout/_navigation.scss @@ -0,0 +1,574 @@ +// Navigation styles for the pmahomme theme +#pma_navigation { + width: $navigation-width; + position: fixed; + top: 0; + left: 0; + height: 100vh; + background-color: var(--#{$prefix}tertiary-bg); + border-right: 1px solid var(--#{$prefix}border-color); + z-index: 800; + + ul { + margin: 0; + } + + form { + margin: 0; + padding: 0; + display: inline; + } + + select { + + &#select_server, + &#lightm_db { + width: 100%; + } + } + + div { + &.pageselector { + text-align: center; + margin: 0; + margin-left: 0.75em; + border-left: 1px solid rgba(var(--#{$prefix}body-color-rgb), 0.25); + } + } + + #pmalogo, + #serverChoice, + #navipanellinks, + #recentTableList, + #favoriteTableList, + #databaseList, + div.pageselector.dbselector { + text-align: center; + padding: 5px 10px 0; + border: 0; + } + + #pmalogo { + background-color: transparent; + padding: 6px 10px; + border-bottom: 1px solid var(--#{$prefix}border-color); + } + + #navipanellinks { + padding: 8px 10px; + background-color: rgba(var(--#{$prefix}body-color-rgb), 0.03); + border-bottom: 1px solid var(--#{$prefix}border-color); + + a { + display: inline-block; + padding: 8px; + } + } + + #navipanellinks .icon { + margin: 0; + } + + #recentTable, + #favoriteTable { + width: 200px; + } + + #favoriteTableList select, + #serverChoice select { + width: 80%; + } +} + +#pma_navigation_header { + overflow: hidden; +} + +#pma_navigation_content { + width: 100%; + height: 100%; + position: absolute; + top: 0; + left: 0; + z-index: 0; + + >img.throbber { + display: none; + margin: 0.3em auto 0; + } +} + +#pma_navigation_select_database { + text-align: left; + padding: 0 0 0; + border: 0; + margin: 0; +} + +#pma_navigation_db_select { + margin-top: 0.5em; + margin-left: 0.75em; + + select { + background: var(--#{$prefix}body-bg); + -webkit-border-radius: 4px; + border-radius: 4px; + border: 1px solid var(--#{$prefix}border-color); + color: var(--#{$prefix}body-color); + padding: 4px 6px; + margin: 0 0 0; + width: 92%; + font-size: $font-size-base; + } +} + +#pma_navigation_tree_content { + width: 100%; + overflow: hidden; + overflow-y: auto; + position: absolute; + height: 100%; + + a.hover_show_full { + position: relative; + z-index: 100; + vertical-align: sub; + } +} + +#pma_navigation_tree { + margin: 0; + margin-left: 5px; + overflow: hidden; + color: var(--#{$prefix}body-color); + height: 74%; + position: relative; + font-size: $font-size-base; + + a { + color: var(--#{$prefix}body-color); + padding-left: 0; + + &:hover { + color: var(--#{$prefix}primary); + text-decoration: none; + } + } + + ul { + clear: both; + padding: 0; + list-style-type: none; + margin: 0; + + ul { + position: relative; + } + } + + li { + margin-bottom: 0; + + &.activePointer, + &.selected { + color: var(--#{$prefix}body-color); + background-color: rgba(var(--#{$prefix}primary-rgb), 0.15); + border-radius: 3px; + } + + .dbItemControls { + padding-right: 4px; + float: right; + } + + .navItemControls { + display: none; + padding-right: 4px; + float: right; + } + + &.activePointer .navItemControls { + display: block; + opacity: 0.5; + + &:hover { + opacity: 1; + } + } + } + + li { + white-space: nowrap; + clear: both; + min-height: 16px; + + &.fast_filter { + white-space: nowrap; + clear: both; + min-height: 16px; + } + } + + img { + margin: 0; + } + + i { + display: block; + } + + div { + &.block { + position: relative; + width: 1.5em; + height: 1.5em; + min-width: 16px; + min-height: 16px; + float: left; + + &.double { + width: 2.5em; + } + + i, + b { + width: 1.5em; + height: 1.7em; + min-width: 16px; + min-height: 8px; + position: absolute; + bottom: 0.7em; + left: 0.75em; + z-index: 0; + } + + // Top and right segments for the tree element connections + i { + display: block; + border-left: 1px solid #666; + border-bottom: 1px solid #666; + position: relative; + z-index: 0; + + // Removes top segment + &.first { + border-left: 0; + } + } + + // Bottom segment for the tree element connections + b { + display: block; + height: 0.75em; + bottom: -0.5rem; // Compensate for vertical-align: sub; of hover_show_full + left: 0.75em; + border-left: 1px solid #666; + } + + a, + u { + position: absolute; + left: 50%; + top: 50%; + z-index: 10; + } + + a+a { + left: 100%; + } + + &.double { + + a, + u { + left: 33%; + } + + a+a { + left: 85%; + } + } + + img { + position: relative; + top: -0.6em; + left: 0; + margin-left: -7px; + } + } + + &.throbber img { + top: 2px; + left: 2px; + } + } + + li { + &.last>ul { + background: none; + } + + > { + + a, + i { + line-height: 1.5em; + height: 1.5em; + padding-left: 0.3em; + } + } + } + + .list_container { + border-left: 1px solid #666; + margin-left: 0.75em; + padding-left: 0.75em; + + li.last.database { + // Revert the effect of the rule that is applied on all the tree + margin-bottom: 0 !important; + } + } + + .last>.list_container { + border-left: 0 solid #666; + } +} + +// Fast filter +li.fast_filter { + padding-left: 0.75em; + margin-left: 0.75em; + padding-right: 35px; + border-left: 1px solid #666; + list-style: none; + + input { + font-size: 0.7em; + } + + .searchClauseClear { + font-weight: bold; + color: #800; + font-size: 0.7em; + } + + &.db_fast_filter { + border: 0; + margin-left: 0; + } +} + +#navigation_controls_outer { + min-height: 21px !important; + + &.activePointer { + background-color: transparent !important; + } +} + +#navigation_controls { + float: right; + padding-right: 23px; +} + +// Resize handler +#pma_navigation_resizer { + width: 1px !important; + height: 100%; + background-color: rgba($black, 0.125); + cursor: col-resize; + position: fixed; + top: 0; + left: 240px; + z-index: 801; +} + +#pma_navigation_collapser { + width: 20px; + height: 22px; + line-height: 22px; + background: var(--#{$prefix}tertiary-bg); + color: var(--#{$prefix}body-color); + font-weight: bold; + position: fixed; + top: 0; + left: $navigation-width; + text-align: center; + cursor: pointer; + z-index: 800; + border: 1px solid var(--#{$prefix}border-color); +} + +// Quick warp links +.pma_quick_warp { + margin-top: 5px; + margin-left: 2px; + position: relative; + + .drop_list { + float: left; + margin-left: 3px; + padding: 2px 0; + + &:hover { + .drop_button { + background: var(--#{$prefix}primary); + color: $white; + } + + ul { + display: block; + } + } + + ul { + position: absolute; + margin: 0; + padding: 0; + overflow: hidden; + overflow-y: auto; + list-style: none; + background: var(--#{$prefix}body-bg); + border: 1px solid var(--#{$prefix}border-color); + border-radius: 0.3em; + border-top-right-radius: 0; + border-bottom-right-radius: 0; + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); + top: 100%; + left: 3px; + right: 0; + display: none; + z-index: 802; + } + + li { + white-space: nowrap; + padding: 0; + border-radius: 0; + + a { + line-height: 1.5em; + padding-left: 0.3em; + color: var(--#{$prefix}body-color); + } + + img { + vertical-align: sub; + } + + &:hover { + background: var(--#{$prefix}tertiary-bg); + } + } + + a { + display: block; + padding: 0.2em 0.3em; + + &.favorite_table_anchor { + clear: left; + float: left; + padding: 0.1em 0.3em 0; + } + } + } + + .drop_button { + padding: 0.3em; + border: 1px solid var(--#{$prefix}border-color); + border-radius: 0.3em; + background: var(--#{$prefix}tertiary-bg); + color: var(--#{$prefix}body-color); + cursor: pointer; + } +} + +// Dark Mode +@if $enable-dark-mode { + @include color-mode(dark) { + #pma_navigation { + background: $body-bg-dark; + border-right: 1px solid var(--#{$prefix}border-color); + + #pmalogo { + background-color: transparent; + } + } + + #pma_navigation_tree { + color: $body-color-dark; + + a { + color: $body-color-dark; + + &:hover { + color: $primary-text-dark; + } + } + + li { + + &.activePointer, + &.selected { + color: $body-emphasis-color-dark; + background-color: rgba(var(--#{$prefix}primary-rgb), 0.25); + } + } + + div { + &.block { + i { + border-left: 1px solid rgba(255, 255, 255, 0.2); + border-bottom: 1px solid rgba(255, 255, 255, 0.2); + } + + b { + border-left: 1px solid rgba(255, 255, 255, 0.2); + } + } + } + + .list_container { + border-left: 1px solid rgba(255, 255, 255, 0.2); + } + + .last>.list_container { + border-left: 0 solid transparent; + } + } + + .pma_quick_warp { + .drop_list { + &:hover { + .drop_button { + background: $primary; + color: $white; + } + } + + ul { + background: $body-bg-dark; + border: 1px solid $border-color-dark; + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4); + } + + li { + &:hover { + background: $body-tertiary-bg-dark; + } + } + } + + .drop_button { + @extend .btn; + @extend .btn-primary; + } + } + } +} + + +#floating_menubar { + z-index: 99; +} \ No newline at end of file diff --git a/pirulug/scss/4-layout/_print.scss b/pirulug/scss/4-layout/_print.scss new file mode 100644 index 0000000000..a2b47f33e7 --- /dev/null +++ b/pirulug/scss/4-layout/_print.scss @@ -0,0 +1,104 @@ +@media print { + .hide { + display: none; + } + + // Standard CSS + body, + table, + th, + td { + color: #000; + background-color: #fff; + } + + // To remove link text decoration + a:link { + color: #000; + text-decoration: none; + } + + // To remove any image borders + img { + border: 0; + } + + // Table specific + table, + th, + td { + border: 0.1em solid #000; + background-color: #fff; + } + + table { + border-collapse: collapse; + border-spacing: 0.2em; + } + + thead { + border-collapse: collapse; + border-spacing: 0.2em; + border: 0.1em solid #000; + font-weight: 900; + } + + th, + td { + padding: 0.2em; + } + + thead th { + font-weight: bold; + background-color: #e5e5e5; + border: 0.1em solid #000; + } + + // Position the main content + #page_content { + position: absolute; + left: 0; + top: 0; + width: 95%; + float: none; + } + + .sqlOuter { + color: black; + background-color: #000; + } + + // For hiding 'Open a New phpMyAdmin Window' button + // Hide extra menu on /table/structure + .cDrop, + .cEdit, + .cList, + .cCpy, + .cPointer { + display: none; + } + + table tbody:first-of-type tr { + // odd items 1,3,5,7... + &:nth-child(odd) { + background: #fff; + + th { + background: #fff; + } + } + + // even items 2,4,6,8... + &:nth-child(even) { + background: #dfdfdf; + + th { + background: #dfdfdf; + } + } + } + + .column_attribute { + font-size: 100%; + } +} diff --git a/pirulug/scss/4-layout/_reboot.scss b/pirulug/scss/4-layout/_reboot.scss new file mode 100644 index 0000000000..e6a24ea5e5 --- /dev/null +++ b/pirulug/scss/4-layout/_reboot.scss @@ -0,0 +1,6 @@ +// Body + +body { + text-align: left; + font-size: $font-size-base; +} diff --git a/pirulug/scss/4-layout/_tables.scss b/pirulug/scss/4-layout/_tables.scss new file mode 100644 index 0000000000..c576d7c2d7 --- /dev/null +++ b/pirulug/scss/4-layout/_tables.scss @@ -0,0 +1,18 @@ +// table { +// background-color: $body-bg; +// } + +@media only screen and (min-width: 768px) { + .table th.position-sticky { + top: 96px; + } +} + +// Dark Mode +// @if $enable-dark-mode { +// @include color-mode(dark) { +// table { +// background-color: $body-bg-dark; +// } +// } +// } diff --git a/pirulug/scss/4-layout/_variables.scss b/pirulug/scss/4-layout/_variables.scss new file mode 100644 index 0000000000..57ee6c047d --- /dev/null +++ b/pirulug/scss/4-layout/_variables.scss @@ -0,0 +1,10 @@ +// Variables + +$navigation-width: 240px !default; + +// Breadcrumbs + +$breadcrumb-navbar-padding-y: 0.5rem !default; +$breadcrumb-navbar-padding-x: 1.8rem !default; +$breadcrumb-navbar-margin-bottom: 0 !default; +$breadcrumb-navbar-bg: #e9ecef !default; // $gray-200 diff --git a/pirulug/scss/6-vendor/_flatpickr.scss b/pirulug/scss/6-vendor/_flatpickr.scss new file mode 100644 index 0000000000..96a986b228 --- /dev/null +++ b/pirulug/scss/6-vendor/_flatpickr.scss @@ -0,0 +1,104 @@ +$flatpickr-tile-height: 45px; + +.flatpickr-calendar.inline { + background: transparent; + box-shadow: none; + width: 100%; + + .flatpickr-days { + width: 100%; + } + + .dayContainer { + width: 100%; + min-width: 100%; + max-width: 100%; + } + + .flatpickr-day { + border-radius: $border-radius; + max-width: inherit; + height: $flatpickr-tile-height; + line-height: $flatpickr-tile-height; + + &.today { + border: 0; + + &:before { + content: ""; + display: inline-block; + border-color: rgba(0,0,0,.2) transparent $primary; + border-style: solid; + border-width: 0 0 7px 7px; + position: absolute; + bottom: 4px; + right: 4px; + } + + &.selected:before { + border-color: rgba(0,0,0,.2) transparent $white; + } + + &:hover { + background: #e6e6e6; + color: $black; + } + } + + &.selected { + &, + &:hover, + &:focus { + border-radius: $border-radius; + background: $primary; + color: $white; + } + } + } + + .flatpickr-weekdays { + height: $flatpickr-tile-height; + } + .flatpickr-weekday { + height: $flatpickr-tile-height; + line-height: $flatpickr-tile-height; + } + + .flatpickr-months { + .flatpickr-month { + height: $flatpickr-tile-height; + } + + .flatpickr-prev-month, + .flatpickr-next-month { + height: $flatpickr-tile-height; + } + } + + .flatpickr-current-month { + padding-top: 0; + line-height: $flatpickr-tile-height; + height: $flatpickr-tile-height; + + .flatpickr-monthDropdown-months { + appearance: none; + } + + .flatpickr-monthDropdown-months, + input.cur-year { + font-weight: $font-weight-normal; + font-size: $h4-font-size; + } + } + + .flatpickr-prev-month, + .flatpickr-next-month { + width: 45px; + border-radius: $border-radius; + + &:hover { + background: #e6e6e6; + color: $black; + } + } +} \ No newline at end of file diff --git a/pirulug/scss/6-vendor/_simplebar.scss b/pirulug/scss/6-vendor/_simplebar.scss new file mode 100644 index 0000000000..5552439617 --- /dev/null +++ b/pirulug/scss/6-vendor/_simplebar.scss @@ -0,0 +1,17 @@ +.simplebar-scrollbar:before { + background: $simplebar-scrollbar-bg; +} + +.simplebar-content { + display: flex; + flex-direction: column; + height: 100vh; + padding-bottom: 0 !important; +} + +[data-simplebar] { + position: sticky; + top: 0; + left: 0; + width: $sidebar-width; +} \ No newline at end of file diff --git a/pirulug/scss/7-hacks/_hack.scss b/pirulug/scss/7-hacks/_hack.scss new file mode 100644 index 0000000000..8dabe25812 --- /dev/null +++ b/pirulug/scss/7-hacks/_hack.scss @@ -0,0 +1,18 @@ +body { + background: $body-bg-alt; + color: $body-color; + font-size: $font-size-base; +} + +@if $enable-dark-mode { + @include color-mode(dark) { + body { + background: $body-bg-alt-dark; + color: $body-color-dark; + } + } +} + +.active .pr-check { + display: block !important; +} diff --git a/pirulug/scss/7-hacks/_icons.scss b/pirulug/scss/7-hacks/_icons.scss new file mode 100644 index 0000000000..b04e4d7755 --- /dev/null +++ b/pirulug/scss/7-hacks/_icons.scss @@ -0,0 +1,689 @@ +.icon { + margin: 0; + // margin-#{$direction-start}: 0.3em; + padding: 0 !important; + width: 16px; + height: 16px; + background-size: contain; + vertical-align: middle; +} + +.icon_fulltext { + width: 50px; + height: 19px; +} + +.ic_asc_order { + background-image: url("../img/asc_order.png"); +} + +.ic_b_bookmark { + background-image: url("../img/b_bookmark.png"); +} + +.ic_b_browse { + background-image: url("../img/b_browse.png"); +} + +.ic_b_calendar { + background-image: url("../img/b_calendar.png"); +} + +.ic_b_chart { + background-image: url("../img/b_chart.png"); +} + +.ic_b_close { + background-image: url("../img/b_close.png"); +} + +.ic_b_column_add { + background-image: url("../img/b_column_add.png"); +} + +.ic_b_comment { + background-image: url("../img/b_comment.png"); +} + +.ic_b_dbstatistics { + background-image: url("../img/b_dbstatistics.png"); +} + +.ic_b_deltbl { + background-image: url("../img/b_deltbl.png"); +} + +.ic_b_docs { + background-image: url("../img/b_docs.png"); +} + +.ic_b_docsql { + background-image: url("../img/b_docsql.png"); +} + +.ic_b_drop { + background-image: url("../img/b_drop.png"); +} + +.ic_b_edit { + background-image: url("../img/b_edit.png"); +} + +.ic_b_empty { + background-image: url("../img/b_empty.png"); +} + +.ic_b_engine { + background-image: url("../img/b_engine.png"); +} + +.ic_b_event_add { + background-image: url("../img/b_event_add.png"); +} + +.ic_b_events { + background-image: url("../img/b_events.png"); +} + +.ic_b_export { + background-image: url("../img/b_export.png"); +} + +.ic_b_favorite { + background-image: url("../img/b_favorite.png"); +} + +.ic_b_find_replace { + background-image: url("../img/b_find_replace.png"); +} + +.ic_b_firstpage { + background-image: url("../img/b_firstpage.png"); +} + +.ic_b_ftext { + background-image: url("../img/b_ftext.png"); +} + +.ic_b_globe { + background-image: url("../img/b_globe.png"); +} + +.ic_b_group { + background-image: url("../img/b_group.png"); +} + +.ic_b_help { + background-image: url("../img/b_help.png"); +} + +.ic_b_home { + background-image: url("../img/b_home.png"); +} + +.ic_b_import { + background-image: url("../img/b_import.png"); +} + +.ic_b_index { + background-image: url("../img/b_index.png"); +} + +.ic_b_index_add { + background-image: url("../img/b_index_add.png"); +} + +.ic_b_inline_edit { + background-image: url("../img/b_inline_edit.png"); +} + +.ic_b_insrow { + background-image: url("../img/b_insrow.png"); +} + +.ic_b_lastpage { + background-image: url("../img/b_lastpage.png"); +} + +.ic_b_minus { + background-image: url("../img/b_minus.png"); +} + +.ic_b_more { + background-image: url("../img/b_more.png"); +} + +.ic_b_move { + background-image: url("../img/b_move.png"); +} + +.ic_b_newdb { + background-image: url("../img/b_newdb.png"); +} + +.ic_b_newtbl { + background-image: url("../img/b_newtbl.png"); +} + +.ic_b_nextpage { + background-image: url("../img/b_nextpage.png"); +} + +.ic_b_no_favorite { + background-image: url("../img/b_no_favorite.png"); +} + +.ic_b_pdfdoc { + background-image: url("../img/b_pdfdoc.png"); +} + +.ic_b_plugin { + background-image: url("../img/b_plugin.png"); +} + +.ic_b_plus { + background-image: url("../img/b_plus.png"); +} + +.ic_b_prevpage { + background-image: url("../img/b_prevpage.png"); +} + +.ic_b_primary { + background-image: url("../img/b_primary.png"); +} + +.ic_b_print { + background-image: url("../img/b_print.png"); +} + +.ic_b_props { + background-image: url("../img/b_props.png"); +} + +.ic_b_relations { + background-image: url("../img/b_relations.png"); +} + +.ic_b_report { + background-image: url("../img/b_report.png"); +} + +.ic_b_rename { + background-image: url("../img/b_rename.png"); +} + +.ic_b_routine_add { + background-image: url("../img/b_routine_add.png"); +} + +.ic_b_routines { + background-image: url("../img/b_routines.png"); +} + +.ic_b_save { + background-image: url("../img/b_save.png"); +} + +.ic_b_saveimage { + background-image: url("../img/b_saveimage.png"); +} + +.ic_b_sbrowse { + background-image: url("../img/b_sbrowse.png"); +} + +.ic_b_sdb { + background-image: url("../img/b_sdb.png"); + width: 10px; + height: 10px; +} + +.ic_b_search { + background-image: url("../img/b_search.png"); +} + +.ic_b_select { + background-image: url("../img/b_select.png"); +} + +.ic_b_snewtbl { + background-image: url("../img/b_snewtbl.png"); +} + +.ic_b_spatial { + background-image: url("../img/b_spatial.png"); +} + +.ic_b_sql { + background-image: url("../img/b_sql.png"); +} + +.ic_b_sqldoc { + background-image: url("../img/b_sqldoc.png"); +} + +.ic_b_sqlhelp { + background-image: url("../img/b_sqlhelp.png"); +} + +.ic_b_table_add { + background-image: url("../img/b_table_add.png"); +} + +.ic_b_tblanalyse { + background-image: url("../img/b_tblanalyse.png"); +} + +.ic_b_tblexport { + background-image: url("../img/b_tblexport.png"); +} + +.ic_b_tblimport { + background-image: url("../img/b_tblimport.png"); +} + +.ic_b_tblops { + background-image: url("../img/b_tblops.png"); +} + +.ic_b_tbloptimize { + background-image: url("../img/b_tbloptimize.png"); +} + +.ic_b_tipp { + background-image: url("../img/b_tipp.png"); +} + +.ic_b_trigger_add { + background-image: url("../img/b_trigger_add.png"); +} + +.ic_b_triggers { + background-image: url("../img/b_triggers.png"); +} + +.ic_b_undo { + background-image: url("../img/b_undo.png"); +} + +.ic_b_unique { + background-image: url("../img/b_unique.png"); +} + +.ic_b_usradd { + background-image: url("../img/b_usradd.png"); +} + +.ic_b_usrcheck { + background-image: url("../img/b_usrcheck.png"); +} + +.ic_b_usrdrop { + background-image: url("../img/b_usrdrop.png"); +} + +.ic_b_usredit { + background-image: url("../img/b_usredit.png"); +} + +.ic_b_usrlist { + background-image: url("../img/b_usrlist.png"); +} + +.ic_b_versions { + background-image: url("../img/b_versions.png"); +} + +.ic_b_view { + background-image: url("../img/b_view.png"); +} + +.ic_b_view_add { + background-image: url("../img/b_view_add.png"); +} + +.ic_b_views { + background-image: url("../img/b_views.png"); +} + +.ic_b_left { + background-image: url("../img/b_left.png"); +} + +.ic_b_right { + background-image: url("../img/b_right.png"); +} + +.ic_bd_browse { + background-image: url("../img/bd_browse.png"); +} + +.ic_bd_deltbl { + background-image: url("../img/bd_deltbl.png"); +} + +.ic_bd_drop { + background-image: url("../img/bd_drop.png"); +} + +.ic_bd_edit { + background-image: url("../img/bd_edit.png"); +} + +.ic_bd_empty { + background-image: url("../img/bd_empty.png"); +} + +.ic_bd_export { + background-image: url("../img/bd_export.png"); +} + +.ic_bd_firstpage { + background-image: url("../img/bd_firstpage.png"); +} + +.ic_bd_ftext { + background-image: url("../img/bd_ftext.png"); +} + +.ic_bd_index { + background-image: url("../img/bd_index.png"); +} + +.ic_bd_insrow { + background-image: url("../img/bd_insrow.png"); +} + +.ic_bd_lastpage { + background-image: url("../img/bd_lastpage.png"); +} + +.ic_bd_nextpage { + background-image: url("../img/bd_nextpage.png"); +} + +.ic_bd_prevpage { + background-image: url("../img/bd_prevpage.png"); +} + +.ic_bd_primary { + background-image: url("../img/bd_primary.png"); +} + +.ic_bd_routine_add { + background-image: url("../img/bd_routine_add.png"); +} + +.ic_bd_sbrowse { + background-image: url("../img/bd_sbrowse.png"); +} + +.ic_bd_select { + background-image: url("../img/bd_select.png"); +} + +.ic_bd_spatial { + background-image: url("../img/bd_spatial.png"); +} + +.ic_bd_unique { + background-image: url("../img/bd_unique.png"); +} + +.ic_centralColumns { + background-image: url("../img/centralColumns.png"); +} + +.ic_centralColumns_add { + background-image: url("../img/centralColumns_add.png"); +} + +.ic_centralColumns_delete { + background-image: url("../img/centralColumns_delete.png"); +} + +.ic_col_drop { + background-image: url("../img/col_drop.png"); +} + +.ic_console { + background-image: url("../img/console.png"); +} + +.ic_database { + background-image: url("../img/database.png"); +} + +.ic_eye { + background-image: url("../img/eye.png"); +} + +.ic_eye_grey { + background-image: url("../img/eye_grey.png"); +} + +.ic_hide { + background-image: url("../img/hide.png"); +} + +.ic_item { + background-image: url("../img/item.png"); + width: 9px; + height: 9px; +} + +.ic_lightbulb { + background-image: url("../img/lightbulb.png"); +} + +.ic_lightbulb_off { + background-image: url("../img/lightbulb_off.png"); +} + +.ic_more { + background-image: url("../img/more.png"); + width: 13px; +} + +.ic_new_data { + background-image: url("../img/new_data.png"); +} + +.ic_new_data_hovered { + background-image: url("../img/new_data_hovered.png"); +} + +.ic_new_data_selected { + background-image: url("../img/new_data_selected.png"); +} + +.ic_new_data_selected_hovered { + background-image: url("../img/new_data_selected_hovered.png"); +} + +.ic_new_struct { + background-image: url("../img/new_struct.png"); +} + +.ic_new_struct_hovered { + background-image: url("../img/new_struct_hovered.png"); +} + +.ic_new_struct_selected { + background-image: url("../img/new_struct_selected.png"); +} + +.ic_new_struct_selected_hovered { + background-image: url("../img/new_struct_selected_hovered.png"); +} + +.ic_normalize { + background-image: url("../img/normalize.png"); +} + +.ic_pause { + background-image: url("../img/pause.png"); +} + +.ic_php_sym { + background-image: url("../img/php_sym.png"); +} + +.ic_play { + background-image: url("../img/play.png"); +} + +.ic_s_asc { + background-image: url("../img/s_asc.png"); +} + +.ic_s_asci { + background-image: url("../img/s_asci.png"); +} + +.ic_s_attention { + background-image: url("../img/s_attention.png"); +} + +.ic_s_cancel { + background-image: url("../img/s_cancel.png"); +} + +.ic_s_cancel2 { + background-image: url("../img/s_cancel2.png"); +} + +.ic_s_cog { + background-image: url("../img/s_cog.png"); +} + +.ic_s_db { + background-image: url("../img/s_db.png"); +} + +.ic_s_desc { + background-image: url("../img/s_desc.png"); +} + +.ic_s_error { + background-image: url("../img/s_error.png"); +} + +.ic_s_host { + background-image: url("../img/s_host.png"); +} + +.ic_s_info { + background-image: url("../img/s_info.png"); +} + +.ic_s_lang { + background-image: url("../img/s_lang.png"); +} + +.ic_s_link { + background-image: url("../img/s_link.png"); +} + +.ic_s_lock { + background-image: url("../img/s_lock.png"); +} + +.ic_s_loggoff { + background-image: url("../img/s_loggoff.png"); +} + +.ic_s_notice { + background-image: url("../img/s_notice.png"); +} + +.ic_s_okay { + background-image: url("../img/s_okay.png"); +} + +.ic_s_passwd { + background-image: url("../img/s_passwd.png"); +} + +.ic_s_process { + background-image: url("../img/s_process.png"); +} + +.ic_s_really { + background-image: url("../img/s_really.png"); + width: 11px; + height: 11px; +} + +.ic_s_reload { + background-image: url("../img/s_reload.png"); +} + +.ic_s_replication { + background-image: url("../img/s_replication.png"); +} + +.ic_s_rights { + background-image: url("../img/s_rights.png"); +} + +.ic_s_sortable { + background-image: url("../img/s_sortable.png"); +} + +.ic_s_status { + background-image: url("../img/s_status.png"); +} + +.ic_s_success { + background-image: url("../img/s_success.png"); +} + +.ic_s_sync { + background-image: url("../img/s_sync.png"); +} + +.ic_s_tbl { + background-image: url("../img/s_tbl.png"); +} + +.ic_s_theme { + background-image: url("../img/s_theme.png"); +} + +.ic_s_top { + background-image: url("../img/s_top.png"); +} + +.ic_s_unlink { + background-image: url("../img/s_unlink.png"); +} + +.ic_s_vars { + background-image: url("../img/s_vars.png"); +} + +.ic_s_views { + background-image: url("../img/s_views.png"); +} + +.ic_show { + background-image: url("../img/show.png"); +} + +.ic_window-new { + background-image: url("../img/window-new.png"); +} + +.ic_ajax_clock_small { + background-image: $loading-icon-url; +} + +.ic_s_partialtext { + background-image: url("../img/s_partialtext.png"); +} + +.ic_s_fulltext { + background-image: url("../img/s_fulltext.png"); +} diff --git a/pirulug/scss/theme.scss b/pirulug/scss/theme.scss new file mode 100644 index 0000000000..dca70e111d --- /dev/null +++ b/pirulug/scss/theme.scss @@ -0,0 +1,38 @@ +// Functions +// @import "0-functions/functions"; +@import "../node_modules/bootstrap/scss/_functions"; + +// Variables +@import "1-variables/variables"; +@import "1-variables/variables-dark"; + +// Bootstrap +@import "../node_modules/bootstrap/scss/bootstrap.scss"; + +// Theme mixins +@import "2-mixins/button"; +@import "2-mixins/tab"; + +// Theme components +@import "3-components/buttons"; +@import "3-components/card"; +@import "3-components/dropdown"; + +// Theme layout +@import "4-layout/common"; +@import "4-layout/enum-editor"; +@import "4-layout/gis"; +@import "4-layout/navigation"; +@import "4-layout/designer"; +@import "4-layout/codemirror"; +@import "4-layout/jqplot"; +@import "4-layout/icons"; +@import "4-layout/reboot"; +@import "4-layout/tables"; +@import "4-layout/forms"; +@import "4-layout/breadcrumb"; +@import "4-layout/print"; + +// Theme styles +@import "7-hacks/hack"; +@import "7-hacks/icons"; diff --git a/pirulug/theme.json b/pirulug/theme.json new file mode 100644 index 0000000000..841b9eab63 --- /dev/null +++ b/pirulug/theme.json @@ -0,0 +1,10 @@ +{ + "name": "Pirulug", + "version": "1.0.0", + "description": "A modern dark and light theme for phpMyAdmin", + "author": "Pirulug", + "url": "https://github.com/pirulug", + "supports": ["5.0", "5.1", "5.2", "6.0"], + "colorModes": ["dark", "light"] +} +