@charset "UTF-8";
/**
 * Configuration du thème par défaut et personnalisé
 * -----------------------------------------------
 * Ce fichier gère la fusion entre les paramètres par défaut du thème
 * et les paramètres externes personnalisés
 */
/**
 * COULEURS PAR DÉFAUT
 * ------------------
 * Définition des couleurs de base du thème
 */
/**
 * CONFIGURATION PAR DÉFAUT DU THÈME
 * -------------------------------
 * Structure:
 * - primary-color: Couleur principale du thème
 * - secondary-color: Couleur secondaire du thème
 * - body-font: Police pour le texte courant (Lato)
 * - heading-font: Police pour les titres (Roboto)
 *
 * Exemple d'utilisation dans external-settings.scss:
 * $external-settings: (
 *   "primary-color": "#FF0000",
 *   "body-font": "Arial"
 * );
 */
/**
 * GESTION DES PARAMÈTRES EXTERNES
 * -----------------------------
 * Si aucun paramètre externe n'est défini,
 * utilise les paramètres par défaut
 */
/**
 * FUSION DES PARAMÈTRES
 * -------------------
 * Combine les paramètres par défaut avec les paramètres externes
 * en utilisant une fusion récursive qui permet:
 * - De conserver les valeurs par défaut non écrasées
 * - De fusionner les listes plutôt que de les remplacer
 * - D'écraser les valeurs spécifiques définies dans external-settings
 */
/**
 * CONVERSION DES COULEURS
 * ---------------------
 * Convertit les chaînes hexadécimales en valeurs de couleur utilisables
 * Exemple: "#FF0000" -> rgb(255, 0, 0)
 */
/**
 * SECTION 3: CONFIGURATION DES NIVEAUX DE LUMINANCE
 * ----------------------------------------------
 * Utilisé pour générer des variantes de couleurs
 * Exemple de classes générées pour chaque couleur:
 * - primary-7: Très sombre (14%)
 * - primary-6: Sombre (30%)
 * - primary-5: Moyen (50%)
 * - primary-4: Clair (80%)
 * - primary-3: Très clair (88%)
 * - primary-2: Ultra clair (94%)
 * - primary-1: Presque blanc (97%)
 */
/**
 * SECTION 4: COULEURS PERSONNALISÉES
 * --------------------------------
 * Classes générées:
 * - .text-primary, .bg-primary, .border-primary
 * - .text-secondary, .bg-secondary, .border-secondary
 * - .text-primary-tone, .bg-primary-tone, .border-primary-tone
 * - .text-secondary-tone, .bg-secondary-tone, .border-secondary-tone
 * - .text-neutral, .bg-neutral, .border-neutral
 * - .text-swizy-primary, .bg-swizy-primary, .border-swizy-primary
 * - .text-swizy-secondary, .bg-swizy-secondary, .border-swizy-secondary
 * - .text-swizy-primary-tone, .bg-swizy-primary-tone, .border-swizy-primary-tone
 * - .text-swizy-secondary-tone, .bg-swizy-secondary-tone, .border-swizy-secondary-tone
 */
.border-swizy-gradient-primary, :where(theme-provider[data-theme=swizy-v3x]) .section-swizy {
  position: relative;
}
.border-swizy-gradient-primary::before, :where(theme-provider[data-theme=swizy-v3x]) .section-swizy::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(91.38deg, #f76ea1 0%, #c082ca 25%, #00b8af 50%, #00a3eb 75%, #4c6dff 100%);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/**
 * Configuration des thèmes et utilitaires Bootstrap
 * -----------------------------------------------
 * Ce fichier étend les fonctionnalités de Bootstrap avec des couleurs et utilitaires personnalisés
 */
/**
 * SECTION 1: IMPORTS ET CONFIGURATIONS DE BASE
 * ------------------------------------------
 */
/**
 * Configuration du thème par défaut et personnalisé
 * -----------------------------------------------
 * Ce fichier gère la fusion entre les paramètres par défaut du thème
 * et les paramètres externes personnalisés
 */
/**
 * COULEURS PAR DÉFAUT
 * ------------------
 * Définition des couleurs de base du thème
 */
/**
 * CONFIGURATION PAR DÉFAUT DU THÈME
 * -------------------------------
 * Structure:
 * - primary-color: Couleur principale du thème
 * - secondary-color: Couleur secondaire du thème
 * - body-font: Police pour le texte courant (Lato)
 * - heading-font: Police pour les titres (Roboto)
 *
 * Exemple d'utilisation dans external-settings.scss:
 * $external-settings: (
 *   "primary-color": "#FF0000",
 *   "body-font": "Arial"
 * );
 */
/**
 * GESTION DES PARAMÈTRES EXTERNES
 * -----------------------------
 * Si aucun paramètre externe n'est défini,
 * utilise les paramètres par défaut
 */
/**
 * FUSION DES PARAMÈTRES
 * -------------------
 * Combine les paramètres par défaut avec les paramètres externes
 * en utilisant une fusion récursive qui permet:
 * - De conserver les valeurs par défaut non écrasées
 * - De fusionner les listes plutôt que de les remplacer
 * - D'écraser les valeurs spécifiques définies dans external-settings
 */
/**
 * SECTION 2: DÉFINITION DES COULEURS
 * ---------------------------------
 */
/**
 * SECTION 5: CONFIGURATION DES UTILITAIRES
 * -------------------------------------
 */
/**
 * Personnalisation des modes de couleur Bootstrap
 * Référence: https://getbootstrap.com/docs/5.3/customize/color-modes/#adding-theme-colors
 *
 * Ce code étend le système de thème de Bootstrap en ajoutant des variations
 * pour chaque couleur de la palette personnalisée.
 */
/**
 * Boucle à travers chaque couleur de la palette définie
 * @param {string} $state - Clé de la couleur (ex: primary, secondary, etc.)
 * @param {map} $value - Map contenant les variations de la couleur (main, dark, contrast-text)
 */
/**
 * Fusion des variations personnalisées avec les variables Bootstrap existantes
 * Ces variables seront utilisées par Bootstrap pour générer les classes utilitaires
 */
/**
 * CONFIGURATION DES UTILITAIRES BOOTSTRAP
 * ------------------------------------
 * Extension des utilitaires Bootstrap avec des classes personnalisées
 */
:root,
[data-bs-theme=light] {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --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: rgb(0, 112, 188);
  --bs-secondary: rgb(9, 37, 93);
  --bs-success: #009e60;
  --bs-info: #005dd1;
  --bs-warning: #fa5300;
  --bs-danger: #e0000f;
  --bs-light: #f8f9fa;
  --bs-dark: #18191A;
  --bs-remise: #e1003c;
  --bs-primary-tone: rgba(0, 112, 188, 0.16);
  --bs-secondary-tone: rgba(9, 37, 93, 0.16);
  --bs-info-tone: rgba(0, 93, 209, 0.16);
  --bs-success-tone: rgba(0, 158, 96, 0.16);
  --bs-warning-tone: rgba(250, 83, 0, 0.16);
  --bs-danger-tone: rgba(224, 0, 15, 0.16);
  --bs-neutral: rgba(37, 38, 40, 0.06);
  --bs-swizy-primary: #ef426f;
  --bs-swizy-secondary: #09255d;
  --bs-swizy-primary-tone: rgba(239, 66, 111, 0.16);
  --bs-swizy-secondary-tone: rgba(9, 37, 93, 0.16);
  --bs-primary-7: rgb(0, 42.5361702128, 71.4);
  --bs-primary-6: rgb(0, 91.1489361702, 153);
  --bs-primary-5: rgb(0, 151.914893617, 255);
  --bs-primary-4: rgb(153, 213.7659574468, 255);
  --bs-primary-3: rgb(193.8, 230.2595744681, 255);
  --bs-primary-2: rgb(224.4, 242.629787234, 255);
  --bs-primary-1: rgb(239.7, 248.814893617, 255);
  --bs-secondary-7: rgb(6.3, 25.9, 65.1);
  --bs-secondary-6: rgb(13.5, 55.5, 139.5);
  --bs-secondary-5: rgb(22.5, 92.5, 232.5);
  --bs-secondary-4: #a2bef6;
  --bs-secondary-3: rgb(199.2, 216, 249.6);
  --bs-secondary-2: rgb(227.1, 235.5, 252.3);
  --bs-secondary-1: rgb(241.05, 245.25, 253.65);
  --bs-primary-rgb: 0, 112, 188;
  --bs-secondary-rgb: 9, 37, 93;
  --bs-success-rgb: 0, 158, 96;
  --bs-info-rgb: 0, 93, 209;
  --bs-warning-rgb: 250, 83, 0;
  --bs-danger-rgb: 224, 0, 15;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 24, 25, 26;
  --bs-remise-rgb: 225, 0, 60;
  --bs-primary-tone-rgb: 0, 112, 188;
  --bs-secondary-tone-rgb: 9, 37, 93;
  --bs-info-tone-rgb: 0, 93, 209;
  --bs-success-tone-rgb: 0, 158, 96;
  --bs-warning-tone-rgb: 250, 83, 0;
  --bs-danger-tone-rgb: 224, 0, 15;
  --bs-neutral-rgb: 37, 38, 40;
  --bs-swizy-primary-rgb: 239, 66, 111;
  --bs-swizy-secondary-rgb: 9, 37, 93;
  --bs-swizy-primary-tone-rgb: 239, 66, 111;
  --bs-swizy-secondary-tone-rgb: 9, 37, 93;
  --bs-primary-7-rgb: 0, 43, 71;
  --bs-primary-6-rgb: 0, 91, 153;
  --bs-primary-5-rgb: 0, 152, 255;
  --bs-primary-4-rgb: 153, 214, 255;
  --bs-primary-3-rgb: 194, 230, 255;
  --bs-primary-2-rgb: 224, 243, 255;
  --bs-primary-1-rgb: 240, 249, 255;
  --bs-secondary-7-rgb: 6, 26, 65;
  --bs-secondary-6-rgb: 14, 55, 139;
  --bs-secondary-5-rgb: 23, 92, 233;
  --bs-secondary-4-rgb: 162, 190, 246;
  --bs-secondary-3-rgb: 199, 216, 250;
  --bs-secondary-2-rgb: 227, 235, 252;
  --bs-secondary-1-rgb: 241, 245, 254;
  --bs-primary-text-emphasis: rgb(5.2, 44, 101.2);
  --bs-secondary-text-emphasis: rgb(43.2, 46.8, 50);
  --bs-success-text-emphasis: rgb(10, 54, 33.6);
  --bs-info-text-emphasis: rgb(5.2, 80.8, 96);
  --bs-warning-text-emphasis: rgb(102, 77.2, 2.8);
  --bs-danger-text-emphasis: rgb(88, 21.2, 27.6);
  --bs-light-text-emphasis: #495057;
  --bs-dark-text-emphasis: #495057;
  --bs-primary-bg-subtle: rgb(0, 112, 188);
  --bs-secondary-bg-subtle: rgb(9, 37, 93);
  --bs-success-bg-subtle: #009e60;
  --bs-info-bg-subtle: #005dd1;
  --bs-warning-bg-subtle: #fa5300;
  --bs-danger-bg-subtle: #e0000f;
  --bs-light-bg-subtle: rgb(251.5, 252, 252.5);
  --bs-dark-bg-subtle: #18191A;
  --bs-neutral-bg-subtle: rgba(37, 38, 40, 0.06);
  --bs-primary-tone-bg-subtle: rgba(0, 112, 188, 0.16);
  --bs-secondary-tone-bg-subtle: rgba(9, 37, 93, 0.16);
  --bs-danger-tone-bg-subtle: rgba(224, 0, 15, 0.16);
  --bs-info-tone-bg-subtle: rgba(0, 93, 209, 0.16);
  --bs-success-tone-bg-subtle: rgba(0, 158, 96, 0.16);
  --bs-warning-tone-bg-subtle: rgba(250, 83, 0, 0.16);
  --bs-remise-palette-bg-subtle: #e1003c;
  --bs-swizy-primary-bg-subtle: #ef426f;
  --bs-swizy-secondary-bg-subtle: #09255d;
  --bs-swizy-primary-tone-bg-subtle: rgba(239, 66, 111, 0.16);
  --bs-swizy-secondary-tone-bg-subtle: rgba(9, 37, 93, 0.16);
  --bs-primary-border-subtle: rgb(0, 51.2340425532, 86);
  --bs-secondary-border-subtle: black;
  --bs-success-border-subtle: #007b4b;
  --bs-info-border-subtle: #004ba8;
  --bs-warning-border-subtle: #d24600;
  --bs-danger-border-subtle: #b6000c;
  --bs-light-border-subtle: #e9ecef;
  --bs-dark-border-subtle: rgb(9.312, 9.7, 10.088);
  --bs-neutral-border-subtle: rgba(37, 38, 40, 0.15);
  --bs-primary-tone-border-subtle: rgba(0, 112, 188, 0.26);
  --bs-secondary-tone-border-subtle: rgba(9, 37, 93, 0.26);
  --bs-danger-tone-border-subtle: rgba(224, 0, 15, 0.26);
  --bs-info-tone-border-subtle: rgba(0, 93, 209, 0.26);
  --bs-success-tone-border-subtle: rgba(0, 158, 96, 0.26);
  --bs-warning-tone-border-subtle: rgba(250, 83, 0, 0.26);
  --bs-remise-palette-border-subtle: #7a0021;
  --bs-swizy-primary-border-subtle: #eb144c;
  --bs-swizy-secondary-border-subtle: #071d49;
  --bs-swizy-primary-tone-border-subtle: rgba(239, 66, 111, 0.26);
  --bs-swizy-secondary-tone-border-subtle: rgba(9, 37, 93, 0.26);
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-font-sans-serif: "Satoshi", sans-serif;
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-root-font-size: 16px;
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212121;
  --bs-body-color-rgb: 33, 33, 33;
  --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: #0d6efd;
  --bs-link-color-rgb: 13, 110, 253;
  --bs-link-decoration: underline;
  --bs-link-hover-color: rgb(10.4, 88, 202.4);
  --bs-link-hover-color-rgb: 10, 88, 202;
  --bs-code-color: #d63384;
  --bs-highlight-color: #212529;
  --bs-highlight-bg: rgb(255, 242.6, 205.4);
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: rgba(37, 38, 40, 0.16);
  --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(0, 0, 0, 0.15);
  --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --bs-focus-ring-width: 0.25rem;
  --bs-focus-ring-opacity: 0.25;
  --bs-focus-ring-color: rgba(13, 110, 253, 0.25);
  --bs-form-valid-color: #198754;
  --bs-form-valid-border-color: #198754;
  --bs-form-invalid-color: #dc3545;
  --bs-form-invalid-border-color: #dc3545;
}

[data-bs-theme=dark] {
  color-scheme: dark;
  --bs-body-color: #dee2e6;
  --bs-body-color-rgb: 222, 226, 230;
  --bs-body-bg: #212529;
  --bs-body-bg-rgb: 33, 37, 41;
  --bs-emphasis-color: #fff;
  --bs-emphasis-color-rgb: 255, 255, 255;
  --bs-secondary-color: rgba(222, 226, 230, 0.75);
  --bs-secondary-color-rgb: 222, 226, 230;
  --bs-secondary-bg: #343a40;
  --bs-secondary-bg-rgb: 52, 58, 64;
  --bs-tertiary-color: rgba(222, 226, 230, 0.5);
  --bs-tertiary-color-rgb: 222, 226, 230;
  --bs-tertiary-bg: rgb(42.5, 47.5, 52.5);
  --bs-tertiary-bg-rgb: 43, 48, 53;
  --bs-primary-text-emphasis: rgb(109.8, 168, 253.8);
  --bs-secondary-text-emphasis: rgb(166.8, 172.2, 177);
  --bs-success-text-emphasis: rgb(117, 183, 152.4);
  --bs-info-text-emphasis: rgb(109.8, 223.2, 246);
  --bs-warning-text-emphasis: rgb(255, 217.8, 106.2);
  --bs-danger-text-emphasis: rgb(234, 133.8, 143.4);
  --bs-light-text-emphasis: #f8f9fa;
  --bs-dark-text-emphasis: #dee2e6;
  --bs-primary-bg-subtle: rgb(2.6, 22, 50.6);
  --bs-secondary-bg-subtle: rgb(21.6, 23.4, 25);
  --bs-success-bg-subtle: rgb(5, 27, 16.8);
  --bs-info-bg-subtle: rgb(2.6, 40.4, 48);
  --bs-warning-bg-subtle: rgb(51, 38.6, 1.4);
  --bs-danger-bg-subtle: rgb(44, 10.6, 13.8);
  --bs-light-bg-subtle: #343a40;
  --bs-dark-bg-subtle: #1a1d20;
  --bs-primary-border-subtle: rgb(7.8, 66, 151.8);
  --bs-secondary-border-subtle: rgb(64.8, 70.2, 75);
  --bs-success-border-subtle: rgb(15, 81, 50.4);
  --bs-info-border-subtle: rgb(7.8, 121.2, 144);
  --bs-warning-border-subtle: rgb(153, 115.8, 4.2);
  --bs-danger-border-subtle: rgb(132, 31.8, 41.4);
  --bs-light-border-subtle: #495057;
  --bs-dark-border-subtle: #343a40;
  --bs-heading-color: inherit;
  --bs-link-color: rgb(109.8, 168, 253.8);
  --bs-link-hover-color: rgb(138.84, 185.4, 254.04);
  --bs-link-color-rgb: 110, 168, 254;
  --bs-link-hover-color-rgb: 139, 185, 254;
  --bs-code-color: rgb(230.4, 132.6, 181.2);
  --bs-highlight-color: #dee2e6;
  --bs-highlight-bg: rgb(102, 77.2, 2.8);
  --bs-border-color: #495057;
  --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
  --bs-form-valid-color: rgb(117, 183, 152.4);
  --bs-form-valid-border-color: rgb(117, 183, 152.4);
  --bs-form-invalid-color: rgb(234, 133.8, 143.4);
  --bs-form-invalid-border-color: rgb(234, 133.8, 143.4);
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  font-size: var(--bs-root-font-size);
}
@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;
}

:where(theme-provider[data-theme=swizy-v3x]) h6, :where(theme-provider[data-theme=swizy-v3x]) h5, :where(theme-provider[data-theme=swizy-v3x]) h4, :where(theme-provider[data-theme=swizy-v3x]) h3, :where(theme-provider[data-theme=swizy-v3x]) h2, :where(theme-provider[data-theme=swizy-v3x]) h1, h6, :where(theme-provider[data-theme=swizy-v3x]) .h6, :where(theme-provider[data-theme=swizy-v3x]) .wallet__nom, :where(theme-provider[data-theme=swizy-v3x]) .empty-view__label, h5, :where(theme-provider[data-theme=swizy-v3x]) .h5, :where(theme-provider[data-theme=swizy-v3x]) .popover__title, h4, :where(theme-provider[data-theme=swizy-v3x]) .h4, h3, :where(theme-provider[data-theme=swizy-v3x]) .h3, h2, :where(theme-provider[data-theme=swizy-v3x]) .h2, h1, :where(theme-provider[data-theme=swizy-v3x]) .h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--bs-heading-color);
}

h1, :where(theme-provider[data-theme=swizy-v3x]) .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, :where(theme-provider[data-theme=swizy-v3x]) .h1 {
    font-size: 2.5rem;
  }
}

h2, :where(theme-provider[data-theme=swizy-v3x]) .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, :where(theme-provider[data-theme=swizy-v3x]) .h2 {
    font-size: 2rem;
  }
}

h3, :where(theme-provider[data-theme=swizy-v3x]) .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, :where(theme-provider[data-theme=swizy-v3x]) .h3 {
    font-size: 1.75rem;
  }
}

h4, :where(theme-provider[data-theme=swizy-v3x]) .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, :where(theme-provider[data-theme=swizy-v3x]) .h4 {
    font-size: 1.5rem;
  }
}

h5, :where(theme-provider[data-theme=swizy-v3x]) .h5, :where(theme-provider[data-theme=swizy-v3x]) .popover__title {
  font-size: 1.25rem;
}

h6, :where(theme-provider[data-theme=swizy-v3x]) .h6, :where(theme-provider[data-theme=swizy-v3x]) .wallet__nom, :where(theme-provider[data-theme=swizy-v3x]) .empty-view__label {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
  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, :where(theme-provider[data-theme=swizy-v3x]) .small {
  font-size: 0.875em;
}

mark, :where(theme-provider[data-theme=swizy-v3x]) .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: underline;
}
a:hover {
  --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}

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;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

::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;
}

body.is-mobile .nav-pills--scrollable {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  overflow-x: scroll;
}
body.is-mobile .nav-pills--scrollable::-webkit-scrollbar {
  display: none;
}
body.is-mobile .nav-pills {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

:where(theme-provider[data-theme=swizy-v3x]) {
  font-family: "Satoshi", sans-serif, "sans-serif";
  /*!
   * Bootstrap  v5.3.7 (https://getbootstrap.com/)
   * Copyright 2011-2025 The Bootstrap Authors
   * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
   */
}
:where(theme-provider[data-theme=swizy-v3x]) :root,
:where(theme-provider[data-theme=swizy-v3x]) [data-bs-theme=light] {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --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: rgb(0, 112, 188);
  --bs-secondary: rgb(9, 37, 93);
  --bs-success: #009e60;
  --bs-info: #005dd1;
  --bs-warning: #fa5300;
  --bs-danger: #e0000f;
  --bs-light: #f8f9fa;
  --bs-dark: #18191A;
  --bs-remise: #e1003c;
  --bs-primary-tone: rgba(0, 112, 188, 0.16);
  --bs-secondary-tone: rgba(9, 37, 93, 0.16);
  --bs-info-tone: rgba(0, 93, 209, 0.16);
  --bs-success-tone: rgba(0, 158, 96, 0.16);
  --bs-warning-tone: rgba(250, 83, 0, 0.16);
  --bs-danger-tone: rgba(224, 0, 15, 0.16);
  --bs-neutral: rgba(37, 38, 40, 0.06);
  --bs-swizy-primary: #ef426f;
  --bs-swizy-secondary: #09255d;
  --bs-swizy-primary-tone: rgba(239, 66, 111, 0.16);
  --bs-swizy-secondary-tone: rgba(9, 37, 93, 0.16);
  --bs-primary-7: rgb(0, 42.5361702128, 71.4);
  --bs-primary-6: rgb(0, 91.1489361702, 153);
  --bs-primary-5: rgb(0, 151.914893617, 255);
  --bs-primary-4: rgb(153, 213.7659574468, 255);
  --bs-primary-3: rgb(193.8, 230.2595744681, 255);
  --bs-primary-2: rgb(224.4, 242.629787234, 255);
  --bs-primary-1: rgb(239.7, 248.814893617, 255);
  --bs-secondary-7: rgb(6.3, 25.9, 65.1);
  --bs-secondary-6: rgb(13.5, 55.5, 139.5);
  --bs-secondary-5: rgb(22.5, 92.5, 232.5);
  --bs-secondary-4: #a2bef6;
  --bs-secondary-3: rgb(199.2, 216, 249.6);
  --bs-secondary-2: rgb(227.1, 235.5, 252.3);
  --bs-secondary-1: rgb(241.05, 245.25, 253.65);
  --bs-primary-rgb: 0, 112, 188;
  --bs-secondary-rgb: 9, 37, 93;
  --bs-success-rgb: 0, 158, 96;
  --bs-info-rgb: 0, 93, 209;
  --bs-warning-rgb: 250, 83, 0;
  --bs-danger-rgb: 224, 0, 15;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 24, 25, 26;
  --bs-remise-rgb: 225, 0, 60;
  --bs-primary-tone-rgb: 0, 112, 188;
  --bs-secondary-tone-rgb: 9, 37, 93;
  --bs-info-tone-rgb: 0, 93, 209;
  --bs-success-tone-rgb: 0, 158, 96;
  --bs-warning-tone-rgb: 250, 83, 0;
  --bs-danger-tone-rgb: 224, 0, 15;
  --bs-neutral-rgb: 37, 38, 40;
  --bs-swizy-primary-rgb: 239, 66, 111;
  --bs-swizy-secondary-rgb: 9, 37, 93;
  --bs-swizy-primary-tone-rgb: 239, 66, 111;
  --bs-swizy-secondary-tone-rgb: 9, 37, 93;
  --bs-primary-7-rgb: 0, 43, 71;
  --bs-primary-6-rgb: 0, 91, 153;
  --bs-primary-5-rgb: 0, 152, 255;
  --bs-primary-4-rgb: 153, 214, 255;
  --bs-primary-3-rgb: 194, 230, 255;
  --bs-primary-2-rgb: 224, 243, 255;
  --bs-primary-1-rgb: 240, 249, 255;
  --bs-secondary-7-rgb: 6, 26, 65;
  --bs-secondary-6-rgb: 14, 55, 139;
  --bs-secondary-5-rgb: 23, 92, 233;
  --bs-secondary-4-rgb: 162, 190, 246;
  --bs-secondary-3-rgb: 199, 216, 250;
  --bs-secondary-2-rgb: 227, 235, 252;
  --bs-secondary-1-rgb: 241, 245, 254;
  --bs-primary-text-emphasis: rgb(5.2, 44, 101.2);
  --bs-secondary-text-emphasis: rgb(43.2, 46.8, 50);
  --bs-success-text-emphasis: rgb(10, 54, 33.6);
  --bs-info-text-emphasis: rgb(5.2, 80.8, 96);
  --bs-warning-text-emphasis: rgb(102, 77.2, 2.8);
  --bs-danger-text-emphasis: rgb(88, 21.2, 27.6);
  --bs-light-text-emphasis: #495057;
  --bs-dark-text-emphasis: #495057;
  --bs-primary-bg-subtle: rgb(0, 112, 188);
  --bs-secondary-bg-subtle: rgb(9, 37, 93);
  --bs-success-bg-subtle: #009e60;
  --bs-info-bg-subtle: #005dd1;
  --bs-warning-bg-subtle: #fa5300;
  --bs-danger-bg-subtle: #e0000f;
  --bs-light-bg-subtle: rgb(251.5, 252, 252.5);
  --bs-dark-bg-subtle: #18191A;
  --bs-neutral-bg-subtle: rgba(37, 38, 40, 0.06);
  --bs-primary-tone-bg-subtle: rgba(0, 112, 188, 0.16);
  --bs-secondary-tone-bg-subtle: rgba(9, 37, 93, 0.16);
  --bs-danger-tone-bg-subtle: rgba(224, 0, 15, 0.16);
  --bs-info-tone-bg-subtle: rgba(0, 93, 209, 0.16);
  --bs-success-tone-bg-subtle: rgba(0, 158, 96, 0.16);
  --bs-warning-tone-bg-subtle: rgba(250, 83, 0, 0.16);
  --bs-remise-palette-bg-subtle: #e1003c;
  --bs-swizy-primary-bg-subtle: #ef426f;
  --bs-swizy-secondary-bg-subtle: #09255d;
  --bs-swizy-primary-tone-bg-subtle: rgba(239, 66, 111, 0.16);
  --bs-swizy-secondary-tone-bg-subtle: rgba(9, 37, 93, 0.16);
  --bs-primary-border-subtle: rgb(0, 51.2340425532, 86);
  --bs-secondary-border-subtle: black;
  --bs-success-border-subtle: #007b4b;
  --bs-info-border-subtle: #004ba8;
  --bs-warning-border-subtle: #d24600;
  --bs-danger-border-subtle: #b6000c;
  --bs-light-border-subtle: #e9ecef;
  --bs-dark-border-subtle: rgb(9.312, 9.7, 10.088);
  --bs-neutral-border-subtle: rgba(37, 38, 40, 0.15);
  --bs-primary-tone-border-subtle: rgba(0, 112, 188, 0.26);
  --bs-secondary-tone-border-subtle: rgba(9, 37, 93, 0.26);
  --bs-danger-tone-border-subtle: rgba(224, 0, 15, 0.26);
  --bs-info-tone-border-subtle: rgba(0, 93, 209, 0.26);
  --bs-success-tone-border-subtle: rgba(0, 158, 96, 0.26);
  --bs-warning-tone-border-subtle: rgba(250, 83, 0, 0.26);
  --bs-remise-palette-border-subtle: #7a0021;
  --bs-swizy-primary-border-subtle: #eb144c;
  --bs-swizy-secondary-border-subtle: #071d49;
  --bs-swizy-primary-tone-border-subtle: rgba(239, 66, 111, 0.26);
  --bs-swizy-secondary-tone-border-subtle: rgba(9, 37, 93, 0.26);
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-font-sans-serif: "Satoshi", sans-serif;
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-root-font-size: 16px;
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212121;
  --bs-body-color-rgb: 33, 33, 33;
  --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: #0d6efd;
  --bs-link-color-rgb: 13, 110, 253;
  --bs-link-decoration: underline;
  --bs-link-hover-color: rgb(10.4, 88, 202.4);
  --bs-link-hover-color-rgb: 10, 88, 202;
  --bs-code-color: #d63384;
  --bs-highlight-color: #212529;
  --bs-highlight-bg: rgb(255, 242.6, 205.4);
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: rgba(37, 38, 40, 0.16);
  --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(0, 0, 0, 0.15);
  --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --bs-focus-ring-width: 0.25rem;
  --bs-focus-ring-opacity: 0.25;
  --bs-focus-ring-color: rgba(13, 110, 253, 0.25);
  --bs-form-valid-color: #198754;
  --bs-form-valid-border-color: #198754;
  --bs-form-invalid-color: #dc3545;
  --bs-form-invalid-border-color: #dc3545;
}
:where(theme-provider[data-theme=swizy-v3x]) [data-bs-theme=dark] {
  color-scheme: dark;
  --bs-body-color: #dee2e6;
  --bs-body-color-rgb: 222, 226, 230;
  --bs-body-bg: #212529;
  --bs-body-bg-rgb: 33, 37, 41;
  --bs-emphasis-color: #fff;
  --bs-emphasis-color-rgb: 255, 255, 255;
  --bs-secondary-color: rgba(222, 226, 230, 0.75);
  --bs-secondary-color-rgb: 222, 226, 230;
  --bs-secondary-bg: #343a40;
  --bs-secondary-bg-rgb: 52, 58, 64;
  --bs-tertiary-color: rgba(222, 226, 230, 0.5);
  --bs-tertiary-color-rgb: 222, 226, 230;
  --bs-tertiary-bg: rgb(42.5, 47.5, 52.5);
  --bs-tertiary-bg-rgb: 43, 48, 53;
  --bs-primary-text-emphasis: rgb(109.8, 168, 253.8);
  --bs-secondary-text-emphasis: rgb(166.8, 172.2, 177);
  --bs-success-text-emphasis: rgb(117, 183, 152.4);
  --bs-info-text-emphasis: rgb(109.8, 223.2, 246);
  --bs-warning-text-emphasis: rgb(255, 217.8, 106.2);
  --bs-danger-text-emphasis: rgb(234, 133.8, 143.4);
  --bs-light-text-emphasis: #f8f9fa;
  --bs-dark-text-emphasis: #dee2e6;
  --bs-primary-bg-subtle: rgb(2.6, 22, 50.6);
  --bs-secondary-bg-subtle: rgb(21.6, 23.4, 25);
  --bs-success-bg-subtle: rgb(5, 27, 16.8);
  --bs-info-bg-subtle: rgb(2.6, 40.4, 48);
  --bs-warning-bg-subtle: rgb(51, 38.6, 1.4);
  --bs-danger-bg-subtle: rgb(44, 10.6, 13.8);
  --bs-light-bg-subtle: #343a40;
  --bs-dark-bg-subtle: #1a1d20;
  --bs-primary-border-subtle: rgb(7.8, 66, 151.8);
  --bs-secondary-border-subtle: rgb(64.8, 70.2, 75);
  --bs-success-border-subtle: rgb(15, 81, 50.4);
  --bs-info-border-subtle: rgb(7.8, 121.2, 144);
  --bs-warning-border-subtle: rgb(153, 115.8, 4.2);
  --bs-danger-border-subtle: rgb(132, 31.8, 41.4);
  --bs-light-border-subtle: #495057;
  --bs-dark-border-subtle: #343a40;
  --bs-heading-color: inherit;
  --bs-link-color: rgb(109.8, 168, 253.8);
  --bs-link-hover-color: rgb(138.84, 185.4, 254.04);
  --bs-link-color-rgb: 110, 168, 254;
  --bs-link-hover-color-rgb: 139, 185, 254;
  --bs-code-color: rgb(230.4, 132.6, 181.2);
  --bs-highlight-color: #dee2e6;
  --bs-highlight-bg: rgb(102, 77.2, 2.8);
  --bs-border-color: #495057;
  --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
  --bs-form-valid-color: rgb(117, 183, 152.4);
  --bs-form-valid-border-color: rgb(117, 183, 152.4);
  --bs-form-invalid-color: rgb(234, 133.8, 143.4);
  --bs-form-invalid-border-color: rgb(234, 133.8, 143.4);
}
:where(theme-provider[data-theme=swizy-v3x]) *,
:where(theme-provider[data-theme=swizy-v3x]) *::before,
:where(theme-provider[data-theme=swizy-v3x]) *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
:where(theme-provider[data-theme=swizy-v3x]) :root {
  font-size: var(--bs-root-font-size);
}
@media (prefers-reduced-motion: no-preference) {
  :where(theme-provider[data-theme=swizy-v3x]) :root {
    scroll-behavior: smooth;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) 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);
}
:where(theme-provider[data-theme=swizy-v3x]) hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: var(--bs-border-width) solid;
  opacity: 0.25;
}
:where(theme-provider[data-theme=swizy-v3x]) h6, :where(theme-provider[data-theme=swizy-v3x]) .h6, :where(theme-provider[data-theme=swizy-v3x]) .wallet__nom, :where(theme-provider[data-theme=swizy-v3x]) .empty-view__label, :where(theme-provider[data-theme=swizy-v3x]) h5, :where(theme-provider[data-theme=swizy-v3x]) .h5, :where(theme-provider[data-theme=swizy-v3x]) .popover__title, :where(theme-provider[data-theme=swizy-v3x]) h4, :where(theme-provider[data-theme=swizy-v3x]) .h4, :where(theme-provider[data-theme=swizy-v3x]) h3, :where(theme-provider[data-theme=swizy-v3x]) .h3, :where(theme-provider[data-theme=swizy-v3x]) h2, :where(theme-provider[data-theme=swizy-v3x]) .h2, :where(theme-provider[data-theme=swizy-v3x]) h1, :where(theme-provider[data-theme=swizy-v3x]) .h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--bs-heading-color);
}
:where(theme-provider[data-theme=swizy-v3x]) h1, :where(theme-provider[data-theme=swizy-v3x]) .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) h1, :where(theme-provider[data-theme=swizy-v3x]) .h1 {
    font-size: 2.5rem;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) h2, :where(theme-provider[data-theme=swizy-v3x]) .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) h2, :where(theme-provider[data-theme=swizy-v3x]) .h2 {
    font-size: 2rem;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) h3, :where(theme-provider[data-theme=swizy-v3x]) .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) h3, :where(theme-provider[data-theme=swizy-v3x]) .h3 {
    font-size: 1.75rem;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) h4, :where(theme-provider[data-theme=swizy-v3x]) .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) h4, :where(theme-provider[data-theme=swizy-v3x]) .h4 {
    font-size: 1.5rem;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) h5, :where(theme-provider[data-theme=swizy-v3x]) .h5, :where(theme-provider[data-theme=swizy-v3x]) .popover__title {
  font-size: 1.25rem;
}
:where(theme-provider[data-theme=swizy-v3x]) h6, :where(theme-provider[data-theme=swizy-v3x]) .h6, :where(theme-provider[data-theme=swizy-v3x]) .wallet__nom, :where(theme-provider[data-theme=swizy-v3x]) .empty-view__label {
  font-size: 1rem;
}
:where(theme-provider[data-theme=swizy-v3x]) p {
  margin-top: 0;
  margin-bottom: 1rem;
}
:where(theme-provider[data-theme=swizy-v3x]) abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}
:where(theme-provider[data-theme=swizy-v3x]) address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}
:where(theme-provider[data-theme=swizy-v3x]) ol,
:where(theme-provider[data-theme=swizy-v3x]) ul {
  padding-left: 2rem;
}
:where(theme-provider[data-theme=swizy-v3x]) ol,
:where(theme-provider[data-theme=swizy-v3x]) ul,
:where(theme-provider[data-theme=swizy-v3x]) dl {
  margin-top: 0;
  margin-bottom: 1rem;
}
:where(theme-provider[data-theme=swizy-v3x]) ol ol,
:where(theme-provider[data-theme=swizy-v3x]) ul ul,
:where(theme-provider[data-theme=swizy-v3x]) ol ul,
:where(theme-provider[data-theme=swizy-v3x]) ul ol {
  margin-bottom: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) dt {
  font-weight: 700;
}
:where(theme-provider[data-theme=swizy-v3x]) dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) blockquote {
  margin: 0 0 1rem;
}
:where(theme-provider[data-theme=swizy-v3x]) b,
:where(theme-provider[data-theme=swizy-v3x]) strong {
  font-weight: bolder;
}
:where(theme-provider[data-theme=swizy-v3x]) small, :where(theme-provider[data-theme=swizy-v3x]) .small {
  font-size: 0.875em;
}
:where(theme-provider[data-theme=swizy-v3x]) mark, :where(theme-provider[data-theme=swizy-v3x]) .mark {
  padding: 0.1875em;
  color: var(--bs-highlight-color);
  background-color: var(--bs-highlight-bg);
}
:where(theme-provider[data-theme=swizy-v3x]) sub,
:where(theme-provider[data-theme=swizy-v3x]) sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}
:where(theme-provider[data-theme=swizy-v3x]) sub {
  bottom: -0.25em;
}
:where(theme-provider[data-theme=swizy-v3x]) sup {
  top: -0.5em;
}
:where(theme-provider[data-theme=swizy-v3x]) a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: underline;
}
:where(theme-provider[data-theme=swizy-v3x]) a:hover {
  --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}
:where(theme-provider[data-theme=swizy-v3x]) a:not([href]):not([class]), :where(theme-provider[data-theme=swizy-v3x]) a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}
:where(theme-provider[data-theme=swizy-v3x]) pre,
:where(theme-provider[data-theme=swizy-v3x]) code,
:where(theme-provider[data-theme=swizy-v3x]) kbd,
:where(theme-provider[data-theme=swizy-v3x]) samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
}
:where(theme-provider[data-theme=swizy-v3x]) pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
:where(theme-provider[data-theme=swizy-v3x]) pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}
:where(theme-provider[data-theme=swizy-v3x]) code {
  font-size: 0.875em;
  color: var(--bs-code-color);
  word-wrap: break-word;
}
a > :where(theme-provider[data-theme=swizy-v3x]) code {
  color: inherit;
}
:where(theme-provider[data-theme=swizy-v3x]) 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;
}
:where(theme-provider[data-theme=swizy-v3x]) kbd kbd {
  padding: 0;
  font-size: 1em;
}
:where(theme-provider[data-theme=swizy-v3x]) figure {
  margin: 0 0 1rem;
}
:where(theme-provider[data-theme=swizy-v3x]) img,
:where(theme-provider[data-theme=swizy-v3x]) svg {
  vertical-align: middle;
}
:where(theme-provider[data-theme=swizy-v3x]) table {
  caption-side: bottom;
  border-collapse: collapse;
}
:where(theme-provider[data-theme=swizy-v3x]) caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-secondary-color);
  text-align: left;
}
:where(theme-provider[data-theme=swizy-v3x]) th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}
:where(theme-provider[data-theme=swizy-v3x]) thead,
:where(theme-provider[data-theme=swizy-v3x]) tbody,
:where(theme-provider[data-theme=swizy-v3x]) tfoot,
:where(theme-provider[data-theme=swizy-v3x]) tr,
:where(theme-provider[data-theme=swizy-v3x]) td,
:where(theme-provider[data-theme=swizy-v3x]) th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) label {
  display: inline-block;
}
:where(theme-provider[data-theme=swizy-v3x]) button {
  border-radius: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) button:focus:not(:focus-visible) {
  outline: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) input,
:where(theme-provider[data-theme=swizy-v3x]) button,
:where(theme-provider[data-theme=swizy-v3x]) select,
:where(theme-provider[data-theme=swizy-v3x]) optgroup,
:where(theme-provider[data-theme=swizy-v3x]) textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
:where(theme-provider[data-theme=swizy-v3x]) button,
:where(theme-provider[data-theme=swizy-v3x]) select {
  text-transform: none;
}
:where(theme-provider[data-theme=swizy-v3x]) [role=button] {
  cursor: pointer;
}
:where(theme-provider[data-theme=swizy-v3x]) select {
  word-wrap: normal;
}
:where(theme-provider[data-theme=swizy-v3x]) select:disabled {
  opacity: 1;
}
:where(theme-provider[data-theme=swizy-v3x]) [list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) button,
:where(theme-provider[data-theme=swizy-v3x]) [type=button],
:where(theme-provider[data-theme=swizy-v3x]) [type=reset],
:where(theme-provider[data-theme=swizy-v3x]) [type=submit] {
  -webkit-appearance: button;
}
:where(theme-provider[data-theme=swizy-v3x]) button:not(:disabled),
:where(theme-provider[data-theme=swizy-v3x]) [type=button]:not(:disabled),
:where(theme-provider[data-theme=swizy-v3x]) [type=reset]:not(:disabled),
:where(theme-provider[data-theme=swizy-v3x]) [type=submit]:not(:disabled) {
  cursor: pointer;
}
:where(theme-provider[data-theme=swizy-v3x]) ::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
:where(theme-provider[data-theme=swizy-v3x]) textarea {
  resize: vertical;
}
:where(theme-provider[data-theme=swizy-v3x]) fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) 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) {
  :where(theme-provider[data-theme=swizy-v3x]) legend {
    font-size: 1.5rem;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) legend + * {
  clear: left;
}
:where(theme-provider[data-theme=swizy-v3x]) ::-webkit-datetime-edit-fields-wrapper,
:where(theme-provider[data-theme=swizy-v3x]) ::-webkit-datetime-edit-text,
:where(theme-provider[data-theme=swizy-v3x]) ::-webkit-datetime-edit-minute,
:where(theme-provider[data-theme=swizy-v3x]) ::-webkit-datetime-edit-hour-field,
:where(theme-provider[data-theme=swizy-v3x]) ::-webkit-datetime-edit-day-field,
:where(theme-provider[data-theme=swizy-v3x]) ::-webkit-datetime-edit-month-field,
:where(theme-provider[data-theme=swizy-v3x]) ::-webkit-datetime-edit-year-field {
  padding: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) ::-webkit-inner-spin-button {
  height: auto;
}
:where(theme-provider[data-theme=swizy-v3x]) [type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /* rtl:raw:
  [type="tel"],
  [type="url"],
  [type="email"],
  [type="number"] {
    direction: ltr;
  }
  */
}
:where(theme-provider[data-theme=swizy-v3x]) ::-webkit-search-decoration {
  -webkit-appearance: none;
}
:where(theme-provider[data-theme=swizy-v3x]) ::-webkit-color-swatch-wrapper {
  padding: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) ::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
:where(theme-provider[data-theme=swizy-v3x]) ::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}
:where(theme-provider[data-theme=swizy-v3x]) output {
  display: inline-block;
}
:where(theme-provider[data-theme=swizy-v3x]) iframe {
  border: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) summary {
  display: list-item;
  cursor: pointer;
}
:where(theme-provider[data-theme=swizy-v3x]) progress {
  vertical-align: baseline;
}
:where(theme-provider[data-theme=swizy-v3x]) [hidden] {
  display: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .lead {
  font-size: 1.25rem;
  font-weight: 300;
}
:where(theme-provider[data-theme=swizy-v3x]) .display-1 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.625rem + 4.5vw);
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .display-1 {
    font-size: 5rem;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .display-2 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.575rem + 3.9vw);
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .display-2 {
    font-size: 4.5rem;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .display-3 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.525rem + 3.3vw);
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .display-3 {
    font-size: 4rem;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .display-4 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.475rem + 2.7vw);
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .display-4 {
    font-size: 3.5rem;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .display-5 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.425rem + 2.1vw);
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .display-5 {
    font-size: 3rem;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .display-6 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .display-6 {
    font-size: 2.5rem;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .list-unstyled, :where(theme-provider[data-theme=swizy-v3x]) .footer__column__list {
  padding-left: 0;
  list-style: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .list-inline {
  padding-left: 0;
  list-style: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .list-inline-item {
  display: inline-block;
}
:where(theme-provider[data-theme=swizy-v3x]) .list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}
:where(theme-provider[data-theme=swizy-v3x]) .blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .blockquote > :last-child {
  margin-bottom: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d;
}
:where(theme-provider[data-theme=swizy-v3x]) .blockquote-footer::before {
  content: "— ";
}
:where(theme-provider[data-theme=swizy-v3x]) .img-fluid {
  max-width: 100%;
  height: auto;
}
:where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .figure {
  display: inline-block;
}
:where(theme-provider[data-theme=swizy-v3x]) .figure-img {
  margin-bottom: 0.25rem;
  line-height: 1;
}
:where(theme-provider[data-theme=swizy-v3x]) .figure-caption {
  font-size: 0.875em;
  color: var(--bs-secondary-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .container,
:where(theme-provider[data-theme=swizy-v3x]) .container-fluid,
:where(theme-provider[data-theme=swizy-v3x]) .container-xxl,
:where(theme-provider[data-theme=swizy-v3x]) .container-xl,
:where(theme-provider[data-theme=swizy-v3x]) .container-lg,
:where(theme-provider[data-theme=swizy-v3x]) .container-md,
:where(theme-provider[data-theme=swizy-v3x]) .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: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .container-sm, :where(theme-provider[data-theme=swizy-v3x]) .container {
    max-width: 540px;
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .container-md, :where(theme-provider[data-theme=swizy-v3x]) .container-sm, :where(theme-provider[data-theme=swizy-v3x]) .container {
    max-width: 720px;
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .container-lg, :where(theme-provider[data-theme=swizy-v3x]) .container-md, :where(theme-provider[data-theme=swizy-v3x]) .container-sm, :where(theme-provider[data-theme=swizy-v3x]) .container {
    max-width: 960px;
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .container-xl, :where(theme-provider[data-theme=swizy-v3x]) .container-lg, :where(theme-provider[data-theme=swizy-v3x]) .container-md, :where(theme-provider[data-theme=swizy-v3x]) .container-sm, :where(theme-provider[data-theme=swizy-v3x]) .container {
    max-width: 1140px;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .container-xl, :where(theme-provider[data-theme=swizy-v3x]) .container-lg, :where(theme-provider[data-theme=swizy-v3x]) .container-md, :where(theme-provider[data-theme=swizy-v3x]) .container-sm, :where(theme-provider[data-theme=swizy-v3x]) .container {
  max-width: 1320px;
}
:where(theme-provider[data-theme=swizy-v3x]) :root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 600px;
  --bs-breakpoint-md: 900px;
  --bs-breakpoint-lg: 1200px;
  --bs-breakpoint-xl: 1536px;
}
:where(theme-provider[data-theme=swizy-v3x]) .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  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));
}
:where(theme-provider[data-theme=swizy-v3x]) .row > * {
  -ms-flex-negative: 0;
  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);
}
:where(theme-provider[data-theme=swizy-v3x]) .col {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .row-cols-auto > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}
:where(theme-provider[data-theme=swizy-v3x]) .row-cols-1 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
}
:where(theme-provider[data-theme=swizy-v3x]) .row-cols-2 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50%;
}
:where(theme-provider[data-theme=swizy-v3x]) .row-cols-3 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 33.33333333%;
}
:where(theme-provider[data-theme=swizy-v3x]) .row-cols-4 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 25%;
}
:where(theme-provider[data-theme=swizy-v3x]) .row-cols-5 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 20%;
}
:where(theme-provider[data-theme=swizy-v3x]) .row-cols-6 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 16.66666667%;
}
:where(theme-provider[data-theme=swizy-v3x]) .col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}
:where(theme-provider[data-theme=swizy-v3x]) .col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 8.33333333%;
}
:where(theme-provider[data-theme=swizy-v3x]) .col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 16.66666667%;
}
:where(theme-provider[data-theme=swizy-v3x]) .col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 25%;
}
:where(theme-provider[data-theme=swizy-v3x]) .col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 33.33333333%;
}
:where(theme-provider[data-theme=swizy-v3x]) .col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 41.66666667%;
}
:where(theme-provider[data-theme=swizy-v3x]) .col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50%;
}
:where(theme-provider[data-theme=swizy-v3x]) .col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 58.33333333%;
}
:where(theme-provider[data-theme=swizy-v3x]) .col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 66.66666667%;
}
:where(theme-provider[data-theme=swizy-v3x]) .col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 75%;
}
:where(theme-provider[data-theme=swizy-v3x]) .col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 83.33333333%;
}
:where(theme-provider[data-theme=swizy-v3x]) .col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 91.66666667%;
}
:where(theme-provider[data-theme=swizy-v3x]) .col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
}
:where(theme-provider[data-theme=swizy-v3x]) .offset-1 {
  margin-left: 8.33333333%;
}
:where(theme-provider[data-theme=swizy-v3x]) .offset-2 {
  margin-left: 16.66666667%;
}
:where(theme-provider[data-theme=swizy-v3x]) .offset-3 {
  margin-left: 25%;
}
:where(theme-provider[data-theme=swizy-v3x]) .offset-4 {
  margin-left: 33.33333333%;
}
:where(theme-provider[data-theme=swizy-v3x]) .offset-5 {
  margin-left: 41.66666667%;
}
:where(theme-provider[data-theme=swizy-v3x]) .offset-6 {
  margin-left: 50%;
}
:where(theme-provider[data-theme=swizy-v3x]) .offset-7 {
  margin-left: 58.33333333%;
}
:where(theme-provider[data-theme=swizy-v3x]) .offset-8 {
  margin-left: 66.66666667%;
}
:where(theme-provider[data-theme=swizy-v3x]) .offset-9 {
  margin-left: 75%;
}
:where(theme-provider[data-theme=swizy-v3x]) .offset-10 {
  margin-left: 83.33333333%;
}
:where(theme-provider[data-theme=swizy-v3x]) .offset-11 {
  margin-left: 91.66666667%;
}
:where(theme-provider[data-theme=swizy-v3x]) .g-0,
:where(theme-provider[data-theme=swizy-v3x]) .gx-0 {
  --bs-gutter-x: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .g-0,
:where(theme-provider[data-theme=swizy-v3x]) .gy-0 {
  --bs-gutter-y: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .g-05,
:where(theme-provider[data-theme=swizy-v3x]) .gx-05 {
  --bs-gutter-x: 0.25rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .g-05,
:where(theme-provider[data-theme=swizy-v3x]) .gy-05 {
  --bs-gutter-y: 0.25rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .g-1,
:where(theme-provider[data-theme=swizy-v3x]) .gx-1 {
  --bs-gutter-x: 0.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .g-1,
:where(theme-provider[data-theme=swizy-v3x]) .gy-1 {
  --bs-gutter-y: 0.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .g-2,
:where(theme-provider[data-theme=swizy-v3x]) .gx-2 {
  --bs-gutter-x: 1rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .g-2,
:where(theme-provider[data-theme=swizy-v3x]) .gy-2 {
  --bs-gutter-y: 1rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .g-3,
:where(theme-provider[data-theme=swizy-v3x]) .gx-3 {
  --bs-gutter-x: 1.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .g-3,
:where(theme-provider[data-theme=swizy-v3x]) .gy-3 {
  --bs-gutter-y: 1.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .g-4,
:where(theme-provider[data-theme=swizy-v3x]) .gx-4 {
  --bs-gutter-x: 2rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .g-4,
:where(theme-provider[data-theme=swizy-v3x]) .gy-4 {
  --bs-gutter-y: 2rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .g-5,
:where(theme-provider[data-theme=swizy-v3x]) .gx-5 {
  --bs-gutter-x: 2.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .g-5,
:where(theme-provider[data-theme=swizy-v3x]) .gy-5 {
  --bs-gutter-y: 2.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .g-6,
:where(theme-provider[data-theme=swizy-v3x]) .gx-6 {
  --bs-gutter-x: 3rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .g-6,
:where(theme-provider[data-theme=swizy-v3x]) .gy-6 {
  --bs-gutter-y: 3rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .g-7,
:where(theme-provider[data-theme=swizy-v3x]) .gx-7 {
  --bs-gutter-x: 3.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .g-7,
:where(theme-provider[data-theme=swizy-v3x]) .gy-7 {
  --bs-gutter-y: 3.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .g-8,
:where(theme-provider[data-theme=swizy-v3x]) .gx-8 {
  --bs-gutter-x: 4rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .g-8,
:where(theme-provider[data-theme=swizy-v3x]) .gy-8 {
  --bs-gutter-y: 4rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .g-9,
:where(theme-provider[data-theme=swizy-v3x]) .gx-9 {
  --bs-gutter-x: 4.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .g-9,
:where(theme-provider[data-theme=swizy-v3x]) .gy-9 {
  --bs-gutter-y: 4.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .g-10,
:where(theme-provider[data-theme=swizy-v3x]) .gx-10 {
  --bs-gutter-x: 5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .g-10,
:where(theme-provider[data-theme=swizy-v3x]) .gy-10 {
  --bs-gutter-y: 5rem;
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .col-sm {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-cols-sm-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-sm-0 {
    margin-left: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-sm-3 {
    margin-left: 25%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-sm-6 {
    margin-left: 50%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-sm-9 {
    margin-left: 75%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-sm-0,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-sm-0,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-sm-05,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-sm-05 {
    --bs-gutter-x: 0.25rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-sm-05,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-sm-05 {
    --bs-gutter-y: 0.25rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-sm-1,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-sm-1 {
    --bs-gutter-x: 0.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-sm-1,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-sm-1 {
    --bs-gutter-y: 0.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-sm-2,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-sm-2 {
    --bs-gutter-x: 1rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-sm-2,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-sm-2 {
    --bs-gutter-y: 1rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-sm-3,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-sm-3 {
    --bs-gutter-x: 1.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-sm-3,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-sm-3 {
    --bs-gutter-y: 1.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-sm-4,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-sm-4 {
    --bs-gutter-x: 2rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-sm-4,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-sm-4 {
    --bs-gutter-y: 2rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-sm-5,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-sm-5 {
    --bs-gutter-x: 2.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-sm-5,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-sm-5 {
    --bs-gutter-y: 2.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-sm-6,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-sm-6 {
    --bs-gutter-x: 3rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-sm-6,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-sm-6 {
    --bs-gutter-y: 3rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-sm-7,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-sm-7 {
    --bs-gutter-x: 3.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-sm-7,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-sm-7 {
    --bs-gutter-y: 3.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-sm-8,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-sm-8 {
    --bs-gutter-x: 4rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-sm-8,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-sm-8 {
    --bs-gutter-y: 4rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-sm-9,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-sm-9 {
    --bs-gutter-x: 4.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-sm-9,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-sm-9 {
    --bs-gutter-y: 4.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-sm-10,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-sm-10 {
    --bs-gutter-x: 5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-sm-10,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-sm-10 {
    --bs-gutter-y: 5rem;
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .col-md {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-cols-md-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-cols-md-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-cols-md-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-cols-md-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-cols-md-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-cols-md-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-cols-md-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-md-0 {
    margin-left: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-md-1 {
    margin-left: 8.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-md-2 {
    margin-left: 16.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-md-3 {
    margin-left: 25%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-md-4 {
    margin-left: 33.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-md-5 {
    margin-left: 41.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-md-6 {
    margin-left: 50%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-md-7 {
    margin-left: 58.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-md-8 {
    margin-left: 66.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-md-9 {
    margin-left: 75%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-md-10 {
    margin-left: 83.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-md-11 {
    margin-left: 91.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-md-0,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-md-0 {
    --bs-gutter-x: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-md-0,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-md-0 {
    --bs-gutter-y: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-md-05,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-md-05 {
    --bs-gutter-x: 0.25rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-md-05,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-md-05 {
    --bs-gutter-y: 0.25rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-md-1,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-md-1 {
    --bs-gutter-x: 0.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-md-1,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-md-1 {
    --bs-gutter-y: 0.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-md-2,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-md-2 {
    --bs-gutter-x: 1rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-md-2,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-md-2 {
    --bs-gutter-y: 1rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-md-3,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-md-3 {
    --bs-gutter-x: 1.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-md-3,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-md-3 {
    --bs-gutter-y: 1.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-md-4,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-md-4 {
    --bs-gutter-x: 2rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-md-4,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-md-4 {
    --bs-gutter-y: 2rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-md-5,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-md-5 {
    --bs-gutter-x: 2.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-md-5,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-md-5 {
    --bs-gutter-y: 2.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-md-6,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-md-6 {
    --bs-gutter-x: 3rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-md-6,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-md-6 {
    --bs-gutter-y: 3rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-md-7,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-md-7 {
    --bs-gutter-x: 3.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-md-7,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-md-7 {
    --bs-gutter-y: 3.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-md-8,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-md-8 {
    --bs-gutter-x: 4rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-md-8,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-md-8 {
    --bs-gutter-y: 4rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-md-9,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-md-9 {
    --bs-gutter-x: 4.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-md-9,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-md-9 {
    --bs-gutter-y: 4.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-md-10,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-md-10 {
    --bs-gutter-x: 5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-md-10,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-md-10 {
    --bs-gutter-y: 5rem;
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .col-lg {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-cols-lg-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-lg-0 {
    margin-left: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-lg-3 {
    margin-left: 25%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-lg-6 {
    margin-left: 50%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-lg-9 {
    margin-left: 75%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-lg-0,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-lg-0,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-lg-05,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-lg-05 {
    --bs-gutter-x: 0.25rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-lg-05,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-lg-05 {
    --bs-gutter-y: 0.25rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-lg-1,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-lg-1 {
    --bs-gutter-x: 0.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-lg-1,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-lg-1 {
    --bs-gutter-y: 0.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-lg-2,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-lg-2 {
    --bs-gutter-x: 1rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-lg-2,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-lg-2 {
    --bs-gutter-y: 1rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-lg-3,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-lg-3 {
    --bs-gutter-x: 1.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-lg-3,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-lg-3 {
    --bs-gutter-y: 1.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-lg-4,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-lg-4 {
    --bs-gutter-x: 2rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-lg-4,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-lg-4 {
    --bs-gutter-y: 2rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-lg-5,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-lg-5 {
    --bs-gutter-x: 2.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-lg-5,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-lg-5 {
    --bs-gutter-y: 2.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-lg-6,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-lg-6 {
    --bs-gutter-x: 3rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-lg-6,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-lg-6 {
    --bs-gutter-y: 3rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-lg-7,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-lg-7 {
    --bs-gutter-x: 3.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-lg-7,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-lg-7 {
    --bs-gutter-y: 3.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-lg-8,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-lg-8 {
    --bs-gutter-x: 4rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-lg-8,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-lg-8 {
    --bs-gutter-y: 4rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-lg-9,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-lg-9 {
    --bs-gutter-x: 4.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-lg-9,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-lg-9 {
    --bs-gutter-y: 4.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-lg-10,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-lg-10 {
    --bs-gutter-x: 5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-lg-10,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-lg-10 {
    --bs-gutter-y: 5rem;
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .col-xl {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-cols-xl-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-xl-0 {
    margin-left: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-xl-3 {
    margin-left: 25%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-xl-6 {
    margin-left: 50%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-xl-9 {
    margin-left: 75%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-xl-0,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-xl-0,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-xl-05,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-xl-05 {
    --bs-gutter-x: 0.25rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-xl-05,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-xl-05 {
    --bs-gutter-y: 0.25rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-xl-1,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-xl-1 {
    --bs-gutter-x: 0.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-xl-1,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-xl-1 {
    --bs-gutter-y: 0.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-xl-2,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-xl-2 {
    --bs-gutter-x: 1rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-xl-2,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-xl-2 {
    --bs-gutter-y: 1rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-xl-3,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-xl-3 {
    --bs-gutter-x: 1.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-xl-3,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-xl-3 {
    --bs-gutter-y: 1.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-xl-4,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-xl-4 {
    --bs-gutter-x: 2rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-xl-4,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-xl-4 {
    --bs-gutter-y: 2rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-xl-5,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-xl-5 {
    --bs-gutter-x: 2.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-xl-5,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-xl-5 {
    --bs-gutter-y: 2.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-xl-6,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-xl-6 {
    --bs-gutter-x: 3rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-xl-6,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-xl-6 {
    --bs-gutter-y: 3rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-xl-7,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-xl-7 {
    --bs-gutter-x: 3.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-xl-7,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-xl-7 {
    --bs-gutter-y: 3.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-xl-8,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-xl-8 {
    --bs-gutter-x: 4rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-xl-8,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-xl-8 {
    --bs-gutter-y: 4rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-xl-9,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-xl-9 {
    --bs-gutter-x: 4.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-xl-9,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-xl-9 {
    --bs-gutter-y: 4.5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-xl-10,
  :where(theme-provider[data-theme=swizy-v3x]) .gx-xl-10 {
    --bs-gutter-x: 5rem;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .g-xl-10,
  :where(theme-provider[data-theme=swizy-v3x]) .gy-xl-10 {
    --bs-gutter-y: 5rem;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .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-emphasis-color);
  --bs-table-bg: var(--bs-body-bg);
  --bs-table-border-color: var(--bs-border-color);
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-emphasis-color);
  --bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 0.05);
  --bs-table-active-color: var(--bs-emphasis-color);
  --bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), 0.1);
  --bs-table-hover-color: var(--bs-emphasis-color);
  --bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), 0.075);
  width: 100%;
  margin-bottom: 0.5rem;
  vertical-align: top;
  border-color: var(--bs-table-border-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
  -webkit-box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
  box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
}
:where(theme-provider[data-theme=swizy-v3x]) .table > tbody {
  vertical-align: inherit;
}
:where(theme-provider[data-theme=swizy-v3x]) .table > thead {
  vertical-align: bottom;
}
:where(theme-provider[data-theme=swizy-v3x]) .table-group-divider {
  border-top: calc(var(--bs-border-width) * 2) solid currentcolor;
}
:where(theme-provider[data-theme=swizy-v3x]) .caption-top {
  caption-side: top;
}
:where(theme-provider[data-theme=swizy-v3x]) .table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .table-bordered > :not(caption) > * {
  border-width: var(--bs-border-width) 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .table-bordered > :not(caption) > * > * {
  border-width: 0 var(--bs-border-width);
}
:where(theme-provider[data-theme=swizy-v3x]) .table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .table-borderless > :not(:first-child) {
  border-top-width: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .table-active {
  --bs-table-color-state: var(--bs-table-active-color);
  --bs-table-bg-state: var(--bs-table-active-bg);
}
:where(theme-provider[data-theme=swizy-v3x]) .table-hover > tbody > tr:hover > * {
  --bs-table-color-state: var(--bs-table-hover-color);
  --bs-table-bg-state: var(--bs-table-hover-bg);
}
:where(theme-provider[data-theme=swizy-v3x]) .table-primary {
  --bs-table-color: #000;
  --bs-table-bg: rgb(206.6, 226, 254.6);
  --bs-table-border-color: rgb(165.28, 180.8, 203.68);
  --bs-table-striped-bg: rgb(196.27, 214.7, 241.87);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(185.94, 203.4, 229.14);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(191.105, 209.05, 235.505);
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .table-secondary {
  --bs-table-color: #000;
  --bs-table-bg: rgb(225.6, 227.4, 229);
  --bs-table-border-color: rgb(180.48, 181.92, 183.2);
  --bs-table-striped-bg: rgb(214.32, 216.03, 217.55);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(203.04, 204.66, 206.1);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(208.68, 210.345, 211.825);
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .table-success {
  --bs-table-color: #000;
  --bs-table-bg: rgb(209, 231, 220.8);
  --bs-table-border-color: rgb(167.2, 184.8, 176.64);
  --bs-table-striped-bg: rgb(198.55, 219.45, 209.76);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(188.1, 207.9, 198.72);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(193.325, 213.675, 204.24);
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .table-info {
  --bs-table-color: #000;
  --bs-table-bg: rgb(206.6, 244.4, 252);
  --bs-table-border-color: rgb(165.28, 195.52, 201.6);
  --bs-table-striped-bg: rgb(196.27, 232.18, 239.4);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(185.94, 219.96, 226.8);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(191.105, 226.07, 233.1);
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .table-warning {
  --bs-table-color: #000;
  --bs-table-bg: rgb(255, 242.6, 205.4);
  --bs-table-border-color: rgb(204, 194.08, 164.32);
  --bs-table-striped-bg: rgb(242.25, 230.47, 195.13);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(229.5, 218.34, 184.86);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(235.875, 224.405, 189.995);
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .table-danger {
  --bs-table-color: #000;
  --bs-table-bg: rgb(248, 214.6, 217.8);
  --bs-table-border-color: rgb(198.4, 171.68, 174.24);
  --bs-table-striped-bg: rgb(235.6, 203.87, 206.91);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(223.2, 193.14, 196.02);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(229.4, 198.505, 201.465);
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .table-light {
  --bs-table-color: #000;
  --bs-table-bg: #f8f9fa;
  --bs-table-border-color: rgb(198.4, 199.2, 200);
  --bs-table-striped-bg: rgb(235.6, 236.55, 237.5);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(223.2, 224.1, 225);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(229.4, 230.325, 231.25);
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .table-dark {
  --bs-table-color: #fff;
  --bs-table-bg: #212529;
  --bs-table-border-color: rgb(77.4, 80.6, 83.8);
  --bs-table-striped-bg: rgb(44.1, 47.9, 51.7);
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: rgb(55.2, 58.8, 62.4);
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: rgb(49.65, 53.35, 57.05);
  --bs-table-hover-color: #fff;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 599.98px) {
  :where(theme-provider[data-theme=swizy-v3x]) .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 899.98px) {
  :where(theme-provider[data-theme=swizy-v3x]) .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98px) {
  :where(theme-provider[data-theme=swizy-v3x]) .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1535.98px) {
  :where(theme-provider[data-theme=swizy-v3x]) .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .form-label {
  margin-bottom: 0.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .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.25rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .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.875rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-secondary-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  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);
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  :where(theme-provider[data-theme=swizy-v3x]) .form-control {
    -webkit-transition: none;
    transition: none;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .form-control[type=file] {
  overflow: hidden;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: rgb(134, 182.5, 254);
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
:where(theme-provider[data-theme=swizy-v3x]) .form-control::-webkit-date-and-time-value {
  min-width: 85px;
  height: 1.5em;
  margin: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-control::-webkit-datetime-edit {
  display: block;
  padding: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-control::-webkit-input-placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-control::-moz-placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-control:-ms-input-placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-control::-ms-input-placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-control::placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-control:disabled {
  background-color: var(--bs-secondary-bg);
  opacity: 1;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-control::-webkit-file-upload-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 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;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  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;
  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, -webkit-box-shadow 0.15s ease-in-out;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 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;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  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;
  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, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  :where(theme-provider[data-theme=swizy-v3x]) .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .form-control::file-selector-button {
    -webkit-transition: none;
    transition: none;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: var(--bs-secondary-bg);
}
:where(theme-provider[data-theme=swizy-v3x]) .form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: var(--bs-secondary-bg);
}
:where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-control-plaintext:focus {
  outline: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-control-plaintext.form-control-sm, :where(theme-provider[data-theme=swizy-v3x]) .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-control-sm {
  min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}
:where(theme-provider[data-theme=swizy-v3x]) .form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
  margin-inline-end: 0.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
  margin-inline-end: 0.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-control-lg {
  min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: var(--bs-border-radius-lg);
}
:where(theme-provider[data-theme=swizy-v3x]) .form-control-lg::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
  margin-inline-end: 1rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
  margin-inline-end: 1rem;
}
:where(theme-provider[data-theme=swizy-v3x]) textarea.form-control {
  min-height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
}
:where(theme-provider[data-theme=swizy-v3x]) textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
}
:where(theme-provider[data-theme=swizy-v3x]) textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
}
:where(theme-provider[data-theme=swizy-v3x]) .form-control-color {
  width: 3rem;
  height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
  padding: 0.375rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-control-color::-moz-color-swatch {
  border: 0 !important;
  border-radius: var(--bs-border-radius);
}
:where(theme-provider[data-theme=swizy-v3x]) .form-control-color::-webkit-color-swatch {
  border: 0 !important;
  border-radius: var(--bs-border-radius);
}
:where(theme-provider[data-theme=swizy-v3x]) .form-control-color.form-control-sm {
  height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
}
:where(theme-provider[data-theme=swizy-v3x]) .form-control-color.form-control-lg {
  height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
}
:where(theme-provider[data-theme=swizy-v3x]) .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: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  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);
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  :where(theme-provider[data-theme=swizy-v3x]) .form-select {
    -webkit-transition: none;
    transition: none;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .form-select:focus {
  border-color: rgb(134, 182.5, 254);
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
:where(theme-provider[data-theme=swizy-v3x]) .form-select[multiple], :where(theme-provider[data-theme=swizy-v3x]) .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-select:disabled {
  background-color: var(--bs-secondary-bg);
}
:where(theme-provider[data-theme=swizy-v3x]) .form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 var(--bs-body-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}
:where(theme-provider[data-theme=swizy-v3x]) .form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
  border-radius: var(--bs-border-radius-lg);
}
:where(theme-provider[data-theme=swizy-v3x]) [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='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}
:where(theme-provider[data-theme=swizy-v3x]) .form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-check-reverse {
  padding-right: 1.5em;
  padding-left: 0;
  text-align: right;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-check-reverse .form-check-input {
  float: right;
  margin-right: -1.5em;
  margin-left: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-check-input {
  --bs-form-check-bg: var(--bs-body-bg);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  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: 1px solid #252628;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-check-input[type=radio] {
  border-radius: 50%;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-check-input:active {
  -webkit-filter: brightness(90%);
  filter: brightness(90%);
}
:where(theme-provider[data-theme=swizy-v3x]) .form-check-input:focus {
  border-color: rgb(134, 182.5, 254);
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
:where(theme-provider[data-theme=swizy-v3x]) .form-check-input:checked {
  background-color: rgb(0, 112, 188);
  border-color: #0d6efd;
}
:where(theme-provider[data-theme=swizy-v3x]) .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");
}
:where(theme-provider[data-theme=swizy-v3x]) .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");
}
:where(theme-provider[data-theme=swizy-v3x]) .form-check-input[type=checkbox]:indeterminate {
  background-color: #0d6efd;
  border-color: #0d6efd;
  --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");
}
:where(theme-provider[data-theme=swizy-v3x]) .form-check-input:disabled {
  pointer-events: none;
  -webkit-filter: none;
  filter: none;
  opacity: 0.5;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-check-input[disabled] ~ .form-check-label, :where(theme-provider[data-theme=swizy-v3x]) .form-check-input:disabled ~ .form-check-label {
  cursor: default;
  opacity: 0.5;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-switch {
  padding-left: 2.5em;
}
:where(theme-provider[data-theme=swizy-v3x]) .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='rgb%28255, 255, 255%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;
  -webkit-transition: background-position 0.15s ease-in-out;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  :where(theme-provider[data-theme=swizy-v3x]) .form-switch .form-check-input {
    -webkit-transition: none;
    transition: none;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .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%28134, 182.5, 254%29'/%3e%3c/svg%3e");
}
:where(theme-provider[data-theme=swizy-v3x]) .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");
}
:where(theme-provider[data-theme=swizy-v3x]) .form-switch.form-check-reverse {
  padding-right: 2.5em;
  padding-left: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-switch.form-check-reverse .form-check-input {
  margin-right: -2.5em;
  margin-left: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-check[disabled] + .btn, :where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-check[disabled] + .btn-close, :where(theme-provider[data-theme=swizy-v3x]) .btn-check[disabled] + .popover__btn-close, :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .btn-check[disabled] + .nav-link, :where(theme-provider[data-theme=swizy-v3x]) .btn-check:disabled + .btn, :where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-check:disabled + .btn-close, :where(theme-provider[data-theme=swizy-v3x]) .btn-check:disabled + .popover__btn-close, :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .btn-check:disabled + .nav-link {
  pointer-events: none;
  -webkit-filter: none;
  filter: none;
  opacity: 0.65;
}
:where(theme-provider[data-theme=swizy-v3x]) [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");
}
:where(theme-provider[data-theme=swizy-v3x]) .form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-range:focus {
  outline: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-range:focus::-webkit-slider-thumb {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
:where(theme-provider[data-theme=swizy-v3x]) .form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
:where(theme-provider[data-theme=swizy-v3x]) .form-range::-moz-focus-outer {
  border: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  -webkit-appearance: none;
  appearance: none;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  :where(theme-provider[data-theme=swizy-v3x]) .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .form-range::-webkit-slider-thumb:active {
  background-color: rgb(182.4, 211.5, 254.4);
}
:where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  -moz-appearance: none;
  appearance: none;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  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) {
  :where(theme-provider[data-theme=swizy-v3x]) .form-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .form-range::-moz-range-thumb:active {
  background-color: rgb(182.4, 211.5, 254.4);
}
:where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-range:disabled {
  pointer-events: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-range:disabled::-webkit-slider-thumb {
  background-color: var(--bs-secondary-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .form-range:disabled::-moz-range-thumb {
  background-color: var(--bs-secondary-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .form-floating {
  position: relative;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-floating > .form-control,
:where(theme-provider[data-theme=swizy-v3x]) .form-floating > .form-control-plaintext,
:where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .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;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  :where(theme-provider[data-theme=swizy-v3x]) .form-floating > label {
    -webkit-transition: none;
    transition: none;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .form-floating > .form-control,
:where(theme-provider[data-theme=swizy-v3x]) .form-floating > .form-control-plaintext {
  padding: 1rem 0.75rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-floating > .form-control::-webkit-input-placeholder, :where(theme-provider[data-theme=swizy-v3x]) .form-floating > .form-control-plaintext::-webkit-input-placeholder {
  color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-floating > .form-control::-moz-placeholder, :where(theme-provider[data-theme=swizy-v3x]) .form-floating > .form-control-plaintext::-moz-placeholder {
  color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-floating > .form-control:-ms-input-placeholder, :where(theme-provider[data-theme=swizy-v3x]) .form-floating > .form-control-plaintext:-ms-input-placeholder {
  color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-floating > .form-control::-ms-input-placeholder, :where(theme-provider[data-theme=swizy-v3x]) .form-floating > .form-control-plaintext::-ms-input-placeholder {
  color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-floating > .form-control::placeholder,
:where(theme-provider[data-theme=swizy-v3x]) .form-floating > .form-control-plaintext::placeholder {
  color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-floating > .form-control:not(:-moz-placeholder), :where(theme-provider[data-theme=swizy-v3x]) .form-floating > .form-control-plaintext:not(:-moz-placeholder) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-floating > .form-control:not(:-ms-input-placeholder), :where(theme-provider[data-theme=swizy-v3x]) .form-floating > .form-control-plaintext:not(:-ms-input-placeholder) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-floating > .form-control:focus, :where(theme-provider[data-theme=swizy-v3x]) .form-floating > .form-control:not(:placeholder-shown),
:where(theme-provider[data-theme=swizy-v3x]) .form-floating > .form-control-plaintext:focus,
:where(theme-provider[data-theme=swizy-v3x]) .form-floating > .form-control-plaintext:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-floating > .form-control:-webkit-autofill,
:where(theme-provider[data-theme=swizy-v3x]) .form-floating > .form-control-plaintext:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
  padding-left: 0.75rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-floating > .form-control:not(:-moz-placeholder) ~ label {
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
:where(theme-provider[data-theme=swizy-v3x]) .form-floating > .form-control:not(:-ms-input-placeholder) ~ label {
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
:where(theme-provider[data-theme=swizy-v3x]) .form-floating > .form-control:focus ~ label,
:where(theme-provider[data-theme=swizy-v3x]) .form-floating > .form-control:not(:placeholder-shown) ~ label,
:where(theme-provider[data-theme=swizy-v3x]) .form-floating > .form-control-plaintext ~ label,
:where(theme-provider[data-theme=swizy-v3x]) .form-floating > .form-select ~ label {
  -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
:where(theme-provider[data-theme=swizy-v3x]) .form-floating > .form-control:-webkit-autofill ~ label {
  -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
:where(theme-provider[data-theme=swizy-v3x]) .form-floating > textarea:not(:-moz-placeholder) ~ 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);
}
:where(theme-provider[data-theme=swizy-v3x]) .form-floating > textarea:not(:-ms-input-placeholder) ~ 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);
}
:where(theme-provider[data-theme=swizy-v3x]) .form-floating > textarea:focus ~ label::after,
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .form-floating > textarea:disabled ~ label::after {
  background-color: var(--bs-secondary-bg);
}
:where(theme-provider[data-theme=swizy-v3x]) .form-floating > .form-control-plaintext ~ label {
  border-width: var(--bs-border-width) 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-floating > :disabled ~ label,
:where(theme-provider[data-theme=swizy-v3x]) .form-floating > .form-control:disabled ~ label {
  color: #6c757d;
}
:where(theme-provider[data-theme=swizy-v3x]) .input-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}
:where(theme-provider[data-theme=swizy-v3x]) .input-group > .form-control,
:where(theme-provider[data-theme=swizy-v3x]) .input-group > .form-select,
:where(theme-provider[data-theme=swizy-v3x]) .input-group > .form-floating {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .input-group > .form-control:focus,
:where(theme-provider[data-theme=swizy-v3x]) .input-group > .form-select:focus,
:where(theme-provider[data-theme=swizy-v3x]) .input-group > .form-floating:focus-within {
  z-index: 5;
}
:where(theme-provider[data-theme=swizy-v3x]) .input-group .btn, :where(theme-provider[data-theme=swizy-v3x]) .input-group .modal-header .btn-close, :where(theme-provider[data-theme=swizy-v3x]) .modal-header .input-group .btn-close, :where(theme-provider[data-theme=swizy-v3x]) .input-group .popover__btn-close, :where(theme-provider[data-theme=swizy-v3x]) .input-group .nav-pills .nav-link, :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .input-group .nav-link {
  position: relative;
  z-index: 2;
}
:where(theme-provider[data-theme=swizy-v3x]) .input-group .btn:focus, :where(theme-provider[data-theme=swizy-v3x]) .input-group .modal-header .btn-close:focus, :where(theme-provider[data-theme=swizy-v3x]) .modal-header .input-group .btn-close:focus, :where(theme-provider[data-theme=swizy-v3x]) .input-group .popover__btn-close:focus, :where(theme-provider[data-theme=swizy-v3x]) .input-group .nav-pills .nav-link:focus, :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .input-group .nav-link:focus {
  z-index: 5;
}
:where(theme-provider[data-theme=swizy-v3x]) .input-group-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  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);
}
:where(theme-provider[data-theme=swizy-v3x]) .input-group-lg > .form-control,
:where(theme-provider[data-theme=swizy-v3x]) .input-group-lg > .form-select,
:where(theme-provider[data-theme=swizy-v3x]) .input-group-lg > .input-group-text,
:where(theme-provider[data-theme=swizy-v3x]) .input-group-lg > .btn,
:where(theme-provider[data-theme=swizy-v3x]) .modal-header .input-group-lg > .btn-close,
:where(theme-provider[data-theme=swizy-v3x]) .input-group-lg > .popover__btn-close,
:where(theme-provider[data-theme=swizy-v3x]) .nav-pills .input-group-lg > .nav-link {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: var(--bs-border-radius-lg);
}
:where(theme-provider[data-theme=swizy-v3x]) .input-group-sm > .form-control,
:where(theme-provider[data-theme=swizy-v3x]) .input-group-sm > .form-select,
:where(theme-provider[data-theme=swizy-v3x]) .input-group-sm > .input-group-text,
:where(theme-provider[data-theme=swizy-v3x]) .input-group-sm > .btn,
:where(theme-provider[data-theme=swizy-v3x]) .modal-header .input-group-sm > .btn-close,
:where(theme-provider[data-theme=swizy-v3x]) .input-group-sm > .popover__btn-close,
:where(theme-provider[data-theme=swizy-v3x]) .nav-pills .input-group-sm > .nav-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}
:where(theme-provider[data-theme=swizy-v3x]) .input-group-lg > .form-select,
:where(theme-provider[data-theme=swizy-v3x]) .input-group-sm > .form-select {
  padding-right: 3rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
:where(theme-provider[data-theme=swizy-v3x]) .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3),
:where(theme-provider[data-theme=swizy-v3x]) .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control,
:where(theme-provider[data-theme=swizy-v3x]) .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
:where(theme-provider[data-theme=swizy-v3x]) .input-group.has-validation > .dropdown-toggle:nth-last-child(n+4),
:where(theme-provider[data-theme=swizy-v3x]) .input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control,
:where(theme-provider[data-theme=swizy-v3x]) .input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .input-group > .form-floating:not(:first-child) > .form-control,
:where(theme-provider[data-theme=swizy-v3x]) .input-group > .form-floating:not(:first-child) > .form-select {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-form-valid-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .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.875rem;
  color: #fff;
  background-color: var(--bs-success);
  border-radius: var(--bs-border-radius);
}
.was-validated :where(theme-provider[data-theme=swizy-v3x]):valid ~ .valid-feedback,
.was-validated :where(theme-provider[data-theme=swizy-v3x]):valid ~ .valid-tooltip, :where(theme-provider[data-theme=swizy-v3x]).is-valid ~ .valid-feedback,
:where(theme-provider[data-theme=swizy-v3x]).is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated :where(theme-provider[data-theme=swizy-v3x]) .form-control:valid, :where(theme-provider[data-theme=swizy-v3x]) .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='%23198754' 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 :where(theme-provider[data-theme=swizy-v3x]) .form-control:valid:focus, :where(theme-provider[data-theme=swizy-v3x]) .form-control.is-valid:focus {
  border-color: var(--bs-form-valid-border-color);
  -webkit-box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}
.was-validated :where(theme-provider[data-theme=swizy-v3x]) textarea.form-control:valid, :where(theme-provider[data-theme=swizy-v3x]) 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 :where(theme-provider[data-theme=swizy-v3x]) .form-select:valid, :where(theme-provider[data-theme=swizy-v3x]) .form-select.is-valid {
  border-color: var(--bs-form-valid-border-color);
}
.was-validated :where(theme-provider[data-theme=swizy-v3x]) .form-select:valid:not([multiple]):not([size]), .was-validated :where(theme-provider[data-theme=swizy-v3x]) .form-select:valid:not([multiple])[size="1"], :where(theme-provider[data-theme=swizy-v3x]) .form-select.is-valid:not([multiple]):not([size]), :where(theme-provider[data-theme=swizy-v3x]) .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='%23198754' 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 :where(theme-provider[data-theme=swizy-v3x]) .form-select:valid:focus, :where(theme-provider[data-theme=swizy-v3x]) .form-select.is-valid:focus {
  border-color: var(--bs-form-valid-border-color);
  -webkit-box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}
.was-validated :where(theme-provider[data-theme=swizy-v3x]) .form-control-color:valid, :where(theme-provider[data-theme=swizy-v3x]) .form-control-color.is-valid {
  width: calc(3rem + calc(1.5em + 0.75rem));
}
.was-validated :where(theme-provider[data-theme=swizy-v3x]) .form-check-input:valid, :where(theme-provider[data-theme=swizy-v3x]) .form-check-input.is-valid {
  border-color: var(--bs-form-valid-border-color);
}
.was-validated :where(theme-provider[data-theme=swizy-v3x]) .form-check-input:valid:checked, :where(theme-provider[data-theme=swizy-v3x]) .form-check-input.is-valid:checked {
  background-color: var(--bs-form-valid-color);
}
.was-validated :where(theme-provider[data-theme=swizy-v3x]) .form-check-input:valid:focus, :where(theme-provider[data-theme=swizy-v3x]) .form-check-input.is-valid:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}
.was-validated :where(theme-provider[data-theme=swizy-v3x]) .form-check-input:valid ~ .form-check-label, :where(theme-provider[data-theme=swizy-v3x]) .form-check-input.is-valid ~ .form-check-label {
  color: var(--bs-form-valid-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}
.was-validated :where(theme-provider[data-theme=swizy-v3x]) .input-group > .form-control:not(:focus):valid, :where(theme-provider[data-theme=swizy-v3x]) .input-group > .form-control:not(:focus).is-valid,
.was-validated :where(theme-provider[data-theme=swizy-v3x]) .input-group > .form-select:not(:focus):valid,
:where(theme-provider[data-theme=swizy-v3x]) .input-group > .form-select:not(:focus).is-valid,
.was-validated :where(theme-provider[data-theme=swizy-v3x]) .input-group > .form-floating:not(:focus-within):valid,
:where(theme-provider[data-theme=swizy-v3x]) .input-group > .form-floating:not(:focus-within).is-valid {
  z-index: 3;
}
:where(theme-provider[data-theme=swizy-v3x]) .invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-form-invalid-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .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.875rem;
  color: #fff;
  background-color: var(--bs-danger);
  border-radius: var(--bs-border-radius);
}
.was-validated :where(theme-provider[data-theme=swizy-v3x]):invalid ~ .invalid-feedback,
.was-validated :where(theme-provider[data-theme=swizy-v3x]):invalid ~ .invalid-tooltip, :where(theme-provider[data-theme=swizy-v3x]).is-invalid ~ .invalid-feedback,
:where(theme-provider[data-theme=swizy-v3x]).is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated :where(theme-provider[data-theme=swizy-v3x]) .form-control:invalid, :where(theme-provider[data-theme=swizy-v3x]) .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='%23dc3545'%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='%23dc3545' 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 :where(theme-provider[data-theme=swizy-v3x]) .form-control:invalid:focus, :where(theme-provider[data-theme=swizy-v3x]) .form-control.is-invalid:focus {
  border-color: var(--bs-form-invalid-border-color);
  -webkit-box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}
.was-validated :where(theme-provider[data-theme=swizy-v3x]) textarea.form-control:invalid, :where(theme-provider[data-theme=swizy-v3x]) 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 :where(theme-provider[data-theme=swizy-v3x]) .form-select:invalid, :where(theme-provider[data-theme=swizy-v3x]) .form-select.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
}
.was-validated :where(theme-provider[data-theme=swizy-v3x]) .form-select:invalid:not([multiple]):not([size]), .was-validated :where(theme-provider[data-theme=swizy-v3x]) .form-select:invalid:not([multiple])[size="1"], :where(theme-provider[data-theme=swizy-v3x]) .form-select.is-invalid:not([multiple]):not([size]), :where(theme-provider[data-theme=swizy-v3x]) .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='%23dc3545'%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='%23dc3545' 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 :where(theme-provider[data-theme=swizy-v3x]) .form-select:invalid:focus, :where(theme-provider[data-theme=swizy-v3x]) .form-select.is-invalid:focus {
  border-color: var(--bs-form-invalid-border-color);
  -webkit-box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}
.was-validated :where(theme-provider[data-theme=swizy-v3x]) .form-control-color:invalid, :where(theme-provider[data-theme=swizy-v3x]) .form-control-color.is-invalid {
  width: calc(3rem + calc(1.5em + 0.75rem));
}
.was-validated :where(theme-provider[data-theme=swizy-v3x]) .form-check-input:invalid, :where(theme-provider[data-theme=swizy-v3x]) .form-check-input.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
}
.was-validated :where(theme-provider[data-theme=swizy-v3x]) .form-check-input:invalid:checked, :where(theme-provider[data-theme=swizy-v3x]) .form-check-input.is-invalid:checked {
  background-color: var(--bs-form-invalid-color);
}
.was-validated :where(theme-provider[data-theme=swizy-v3x]) .form-check-input:invalid:focus, :where(theme-provider[data-theme=swizy-v3x]) .form-check-input.is-invalid:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}
.was-validated :where(theme-provider[data-theme=swizy-v3x]) .form-check-input:invalid ~ .form-check-label, :where(theme-provider[data-theme=swizy-v3x]) .form-check-input.is-invalid ~ .form-check-label {
  color: var(--bs-form-invalid-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}
.was-validated :where(theme-provider[data-theme=swizy-v3x]) .input-group > .form-control:not(:focus):invalid, :where(theme-provider[data-theme=swizy-v3x]) .input-group > .form-control:not(:focus).is-invalid,
.was-validated :where(theme-provider[data-theme=swizy-v3x]) .input-group > .form-select:not(:focus):invalid,
:where(theme-provider[data-theme=swizy-v3x]) .input-group > .form-select:not(:focus).is-invalid,
.was-validated :where(theme-provider[data-theme=swizy-v3x]) .input-group > .form-floating:not(:focus-within):invalid,
:where(theme-provider[data-theme=swizy-v3x]) .input-group > .form-floating:not(:focus-within).is-invalid {
  z-index: 4;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn, :where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-close, :where(theme-provider[data-theme=swizy-v3x]) .popover__btn-close, :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .nav-link.active, :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .nav-link {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.53125rem;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 0.875rem;
  --bs-btn-font-weight: 500;
  --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;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  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);
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  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;
  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, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  :where(theme-provider[data-theme=swizy-v3x]) .btn, :where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-close, :where(theme-provider[data-theme=swizy-v3x]) .popover__btn-close, :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .nav-link.active, :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .nav-link {
    -webkit-transition: none;
    transition: none;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .btn:hover, :where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-close:hover, :where(theme-provider[data-theme=swizy-v3x]) .popover__btn-close:hover, :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .nav-link:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}
.btn-check + :where(theme-provider[data-theme=swizy-v3x]) .btn:hover, .btn-check + :where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-close:hover, .btn-check + :where(theme-provider[data-theme=swizy-v3x]) .popover__btn-close:hover, .btn-check + :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .nav-link:hover {
  color: var(--bs-btn-color);
  background-color: var(--bs-btn-bg);
  border-color: var(--bs-btn-border-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .btn:focus-visible, :where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-close:focus-visible, :where(theme-provider[data-theme=swizy-v3x]) .popover__btn-close:focus-visible, :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .nav-link: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;
  -webkit-box-shadow: var(--bs-btn-focus-box-shadow);
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:focus-visible + :where(theme-provider[data-theme=swizy-v3x]) .btn, .btn-check:focus-visible + :where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-close, .btn-check:focus-visible + :where(theme-provider[data-theme=swizy-v3x]) .popover__btn-close, .btn-check:focus-visible + :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .nav-link {
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  -webkit-box-shadow: var(--bs-btn-focus-box-shadow);
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:checked + :where(theme-provider[data-theme=swizy-v3x]) .btn, .btn-check:checked + :where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-close, .btn-check:checked + :where(theme-provider[data-theme=swizy-v3x]) .popover__btn-close, .btn-check:checked + :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .nav-link, :not(.btn-check) + :where(theme-provider[data-theme=swizy-v3x]) .btn:active, :not(.btn-check) + :where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-close:active, :not(.btn-check) + :where(theme-provider[data-theme=swizy-v3x]) .popover__btn-close:active, :not(.btn-check) + :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .nav-link:active, :where(theme-provider[data-theme=swizy-v3x]) .btn:first-child:active, :where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-close:first-child:active, :where(theme-provider[data-theme=swizy-v3x]) .popover__btn-close:first-child:active, :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .nav-link:first-child:active, :where(theme-provider[data-theme=swizy-v3x]) .btn.active, :where(theme-provider[data-theme=swizy-v3x]) .modal-header .active.btn-close, :where(theme-provider[data-theme=swizy-v3x]) .active.popover__btn-close, :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .active.nav-link, :where(theme-provider[data-theme=swizy-v3x]) .btn.show, :where(theme-provider[data-theme=swizy-v3x]) .modal-header .show.btn-close, :where(theme-provider[data-theme=swizy-v3x]) .show.popover__btn-close, :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .show.nav-link {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
}
.btn-check:checked + :where(theme-provider[data-theme=swizy-v3x]) .btn:focus-visible, .btn-check:checked + :where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-close:focus-visible, .btn-check:checked + :where(theme-provider[data-theme=swizy-v3x]) .popover__btn-close:focus-visible, .btn-check:checked + :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .nav-link:focus-visible, :not(.btn-check) + :where(theme-provider[data-theme=swizy-v3x]) .btn:active:focus-visible, :not(.btn-check) + :where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-close:active:focus-visible, :not(.btn-check) + :where(theme-provider[data-theme=swizy-v3x]) .popover__btn-close:active:focus-visible, :not(.btn-check) + :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .nav-link:active:focus-visible, :where(theme-provider[data-theme=swizy-v3x]) .btn:first-child:active:focus-visible, :where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-close:first-child:active:focus-visible, :where(theme-provider[data-theme=swizy-v3x]) .popover__btn-close:first-child:active:focus-visible, :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .nav-link:first-child:active:focus-visible, :where(theme-provider[data-theme=swizy-v3x]) .btn.active:focus-visible, :where(theme-provider[data-theme=swizy-v3x]) .modal-header .active.btn-close:focus-visible, :where(theme-provider[data-theme=swizy-v3x]) .active.popover__btn-close:focus-visible, :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .active.nav-link:focus-visible, :where(theme-provider[data-theme=swizy-v3x]) .btn.show:focus-visible, :where(theme-provider[data-theme=swizy-v3x]) .modal-header .show.btn-close:focus-visible, :where(theme-provider[data-theme=swizy-v3x]) .show.popover__btn-close:focus-visible, :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .show.nav-link:focus-visible {
  -webkit-box-shadow: var(--bs-btn-focus-box-shadow);
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:checked:focus-visible + :where(theme-provider[data-theme=swizy-v3x]) .btn, .btn-check:checked:focus-visible + :where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-close, .btn-check:checked:focus-visible + :where(theme-provider[data-theme=swizy-v3x]) .popover__btn-close, .btn-check:checked:focus-visible + :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .nav-link {
  -webkit-box-shadow: var(--bs-btn-focus-box-shadow);
  box-shadow: var(--bs-btn-focus-box-shadow);
}
:where(theme-provider[data-theme=swizy-v3x]) .btn:disabled, :where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-close:disabled, :where(theme-provider[data-theme=swizy-v3x]) .popover__btn-close:disabled, :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .nav-link:disabled, :where(theme-provider[data-theme=swizy-v3x]) .btn.disabled, :where(theme-provider[data-theme=swizy-v3x]) .modal-header .disabled.btn-close, :where(theme-provider[data-theme=swizy-v3x]) .disabled.popover__btn-close, :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .disabled.nav-link, fieldset:disabled :where(theme-provider[data-theme=swizy-v3x]) .btn, fieldset:disabled :where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-close, fieldset:disabled :where(theme-provider[data-theme=swizy-v3x]) .popover__btn-close, fieldset:disabled :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .nav-link {
  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);
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-primary, :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .nav-link.active {
  --bs-btn-color: #fff;
  --bs-btn-bg: rgb(0, 112, 188);
  --bs-btn-border-color: rgb(0, 112, 188);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(0, 95.2, 159.8);
  --bs-btn-hover-border-color: rgb(0, 89.6, 150.4);
  --bs-btn-focus-shadow-rgb: 38, 133, 198;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(0, 89.6, 150.4);
  --bs-btn-active-border-color: #00548d;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: rgb(0, 112, 188);
  --bs-btn-disabled-border-color: rgb(0, 112, 188);
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: rgb(9, 37, 93);
  --bs-btn-border-color: rgb(9, 37, 93);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(7.65, 31.45, 79.05);
  --bs-btn-hover-border-color: rgb(7.2, 29.6, 74.4);
  --bs-btn-focus-shadow-rgb: 46, 70, 117;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(7.2, 29.6, 74.4);
  --bs-btn-active-border-color: rgb(6.75, 27.75, 69.75);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: rgb(9, 37, 93);
  --bs-btn-disabled-border-color: rgb(9, 37, 93);
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-success {
  --bs-btn-color: #000;
  --bs-btn-bg: #009e60;
  --bs-btn-border-color: #009e60;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(38.25, 172.55, 119.85);
  --bs-btn-hover-border-color: rgb(25.5, 167.7, 111.9);
  --bs-btn-focus-shadow-rgb: 0, 134, 82;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(51, 177.4, 127.8);
  --bs-btn-active-border-color: rgb(25.5, 167.7, 111.9);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #009e60;
  --bs-btn-disabled-border-color: #009e60;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-info {
  --bs-btn-color: #fff;
  --bs-btn-bg: #005dd1;
  --bs-btn-border-color: #005dd1;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(0, 79.05, 177.65);
  --bs-btn-hover-border-color: rgb(0, 74.4, 167.2);
  --bs-btn-focus-shadow-rgb: 38, 117, 216;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(0, 74.4, 167.2);
  --bs-btn-active-border-color: rgb(0, 69.75, 156.75);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #005dd1;
  --bs-btn-disabled-border-color: #005dd1;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-warning {
  --bs-btn-color: #000;
  --bs-btn-bg: #fa5300;
  --bs-btn-border-color: #fa5300;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(250.75, 108.8, 38.25);
  --bs-btn-hover-border-color: rgb(250.5, 100.2, 25.5);
  --bs-btn-focus-shadow-rgb: 213, 71, 0;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(251, 117.4, 51);
  --bs-btn-active-border-color: rgb(250.5, 100.2, 25.5);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #fa5300;
  --bs-btn-disabled-border-color: #fa5300;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-danger {
  --bs-btn-color: #fff;
  --bs-btn-bg: #e0000f;
  --bs-btn-border-color: #e0000f;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(190.4, 0, 12.75);
  --bs-btn-hover-border-color: rgb(179.2, 0, 12);
  --bs-btn-focus-shadow-rgb: 229, 38, 51;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(179.2, 0, 12);
  --bs-btn-active-border-color: rgb(168, 0, 11.25);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #e0000f;
  --bs-btn-disabled-border-color: #e0000f;
}
:where(theme-provider[data-theme=swizy-v3x]) .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(210.8, 211.65, 212.5);
  --bs-btn-hover-border-color: rgb(198.4, 199.2, 200);
  --bs-btn-focus-shadow-rgb: 211, 212, 213;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(198.4, 199.2, 200);
  --bs-btn-active-border-color: rgb(186, 186.75, 187.5);
  --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;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-dark {
  --bs-btn-color: #fff;
  --bs-btn-bg: #18191A;
  --bs-btn-border-color: #18191A;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(58.65, 59.5, 60.35);
  --bs-btn-hover-border-color: rgb(47.1, 48, 48.9);
  --bs-btn-focus-shadow-rgb: 59, 60, 60;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(70.2, 71, 71.8);
  --bs-btn-active-border-color: rgb(47.1, 48, 48.9);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #18191A;
  --bs-btn-disabled-border-color: #18191A;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-remise {
  --bs-btn-color: #fff;
  --bs-btn-bg: #e1003c;
  --bs-btn-border-color: #e1003c;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(191.25, 0, 51);
  --bs-btn-hover-border-color: #b40030;
  --bs-btn-focus-shadow-rgb: 230, 38, 89;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #b40030;
  --bs-btn-active-border-color: rgb(168.75, 0, 45);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #e1003c;
  --bs-btn-disabled-border-color: #e1003c;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-primary-tone {
  --bs-btn-color: #fff;
  --bs-btn-bg: rgba(0, 112, 188, 0.16);
  --bs-btn-border-color: rgba(0, 112, 188, 0.16);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgba(0, 36.9708737864, 62.0582524272, 0.286);
  --bs-btn-hover-border-color: rgba(0, 28.9032258065, 48.5161290323, 0.328);
  --bs-btn-focus-shadow-rgb: 171, 208, 233;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgba(0, 28.9032258065, 48.5161290323, 0.328);
  --bs-btn-active-border-color: rgba(0, 23.1724137931, 38.8965517241, 0.37);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: rgba(0, 112, 188, 0.16);
  --bs-btn-disabled-border-color: rgba(0, 112, 188, 0.16);
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-secondary-tone {
  --bs-btn-color: #fff;
  --bs-btn-bg: rgba(9, 37, 93, 0.16);
  --bs-btn-border-color: rgba(9, 37, 93, 0.16);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgba(2.9708737864, 12.213592233, 30.6990291262, 0.286);
  --bs-btn-hover-border-color: rgba(2.3225806452, 9.5483870968, 24, 0.328);
  --bs-btn-focus-shadow-rgb: 174, 183, 202;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgba(2.3225806452, 9.5483870968, 24, 0.328);
  --bs-btn-active-border-color: rgba(1.8620689655, 7.6551724138, 19.2413793103, 0.37);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: rgba(9, 37, 93, 0.16);
  --bs-btn-disabled-border-color: rgba(9, 37, 93, 0.16);
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-info-tone {
  --bs-btn-color: #fff;
  --bs-btn-bg: rgba(0, 93, 209, 0.16);
  --bs-btn-border-color: rgba(0, 93, 209, 0.16);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgba(0, 30.6990291262, 68.9902912621, 0.286);
  --bs-btn-hover-border-color: rgba(0, 24, 53.935483871, 0.328);
  --bs-btn-focus-shadow-rgb: 171, 202, 240;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgba(0, 24, 53.935483871, 0.328);
  --bs-btn-active-border-color: rgba(0, 19.2413793103, 43.2413793103, 0.37);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: rgba(0, 93, 209, 0.16);
  --bs-btn-disabled-border-color: rgba(0, 93, 209, 0.16);
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-success-tone {
  --bs-btn-color: #000;
  --bs-btn-bg: rgba(0, 158, 96, 0.16);
  --bs-btn-border-color: rgba(0, 158, 96, 0.16);
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgba(170.8252427184, 222.9805825243, 202.5145631068, 0.286);
  --bs-btn-hover-border-color: rgba(143.0487804878, 212.4146341463, 185.1951219512, 0.244);
  --bs-btn-focus-shadow-rgb: 0, 52, 32;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgba(189.1935483871, 229.9677419355, 213.9677419355, 0.328);
  --bs-btn-active-border-color: rgba(143.0487804878, 212.4146341463, 185.1951219512, 0.244);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: rgba(0, 158, 96, 0.16);
  --bs-btn-disabled-border-color: rgba(0, 158, 96, 0.16);
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-warning-tone {
  --bs-btn-color: #000;
  --bs-btn-bg: rgba(250, 83, 0, 0.16);
  --bs-btn-border-color: rgba(250, 83, 0, 0.16);
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgba(253.3495145631, 198.2233009709, 170.8252427184, 0.286);
  --bs-btn-hover-border-color: rgba(252.8048780488, 179.487804878, 143.0487804878, 0.244);
  --bs-btn-focus-shadow-rgb: 83, 27, 0;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgba(253.7096774194, 210.6129032258, 189.1935483871, 0.328);
  --bs-btn-active-border-color: rgba(252.8048780488, 179.487804878, 143.0487804878, 0.244);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: rgba(250, 83, 0, 0.16);
  --bs-btn-disabled-border-color: rgba(250, 83, 0, 0.16);
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-danger-tone {
  --bs-btn-color: #fff;
  --bs-btn-bg: rgba(224, 0, 15, 0.16);
  --bs-btn-border-color: rgba(224, 0, 15, 0.16);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgba(73.9417475728, 0, 4.9514563107, 0.286);
  --bs-btn-hover-border-color: rgba(57.8064516129, 0, 3.8709677419, 0.328);
  --bs-btn-focus-shadow-rgb: 245, 171, 176;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgba(57.8064516129, 0, 3.8709677419, 0.328);
  --bs-btn-active-border-color: rgba(46.3448275862, 0, 3.1034482759, 0.37);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: rgba(224, 0, 15, 0.16);
  --bs-btn-disabled-border-color: rgba(224, 0, 15, 0.16);
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-neutral, :where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-close, :where(theme-provider[data-theme=swizy-v3x]) .popover__btn-close {
  --bs-btn-color: #fff;
  --bs-btn-bg: rgba(37, 38, 40, 0.06);
  --bs-btn-border-color: rgba(37, 38, 40, 0.06);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgba(5.5175438596, 5.6666666667, 5.9649122807, 0.201);
  --bs-btn-hover-border-color: rgba(4.0733944954, 4.1834862385, 4.4036697248, 0.248);
  --bs-btn-focus-shadow-rgb: 222, 223, 223;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgba(4.0733944954, 4.1834862385, 4.4036697248, 0.248);
  --bs-btn-active-border-color: rgba(3.141509434, 3.2264150943, 3.3962264151, 0.295);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: rgba(37, 38, 40, 0.06);
  --bs-btn-disabled-border-color: rgba(37, 38, 40, 0.06);
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-swizy-primary {
  --bs-btn-color: #000;
  --bs-btn-bg: #ef426f;
  --bs-btn-border-color: #ef426f;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(241.4, 94.35, 132.6);
  --bs-btn-hover-border-color: rgb(240.6, 84.9, 125.4);
  --bs-btn-focus-shadow-rgb: 203, 56, 94;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(242.2, 103.8, 139.8);
  --bs-btn-active-border-color: rgb(240.6, 84.9, 125.4);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #ef426f;
  --bs-btn-disabled-border-color: #ef426f;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-swizy-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #09255d;
  --bs-btn-border-color: #09255d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(7.65, 31.45, 79.05);
  --bs-btn-hover-border-color: rgb(7.2, 29.6, 74.4);
  --bs-btn-focus-shadow-rgb: 46, 70, 117;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(7.2, 29.6, 74.4);
  --bs-btn-active-border-color: rgb(6.75, 27.75, 69.75);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #09255d;
  --bs-btn-disabled-border-color: #09255d;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-swizy-primary-tone {
  --bs-btn-color: #000;
  --bs-btn-bg: rgba(239, 66, 111, 0.16);
  --bs-btn-border-color: rgba(239, 66, 111, 0.16);
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgba(249.7184466019, 192.6116504854, 207.4660194175, 0.286);
  --bs-btn-hover-border-color: rgba(247.9756097561, 172.0243902439, 191.7804878049, 0.244);
  --bs-btn-focus-shadow-rgb: 79, 22, 37;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgba(250.8709677419, 206.2258064516, 217.8387096774, 0.328);
  --bs-btn-active-border-color: rgba(247.9756097561, 172.0243902439, 191.7804878049, 0.244);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: rgba(239, 66, 111, 0.16);
  --bs-btn-disabled-border-color: rgba(239, 66, 111, 0.16);
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-swizy-secondary-tone {
  --bs-btn-color: #fff;
  --bs-btn-bg: rgba(9, 37, 93, 0.16);
  --bs-btn-border-color: rgba(9, 37, 93, 0.16);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgba(2.9708737864, 12.213592233, 30.6990291262, 0.286);
  --bs-btn-hover-border-color: rgba(2.3225806452, 9.5483870968, 24, 0.328);
  --bs-btn-focus-shadow-rgb: 174, 183, 202;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgba(2.3225806452, 9.5483870968, 24, 0.328);
  --bs-btn-active-border-color: rgba(1.8620689655, 7.6551724138, 19.2413793103, 0.37);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: rgba(9, 37, 93, 0.16);
  --bs-btn-disabled-border-color: rgba(9, 37, 93, 0.16);
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-primary-7 {
  --bs-btn-color: #fff;
  --bs-btn-bg: rgb(0, 42.5361702128, 71.4);
  --bs-btn-border-color: rgb(0, 42.5361702128, 71.4);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(0, 36.1557446809, 60.69);
  --bs-btn-hover-border-color: rgb(0, 34.0289361702, 57.12);
  --bs-btn-focus-shadow-rgb: 38, 74, 99;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(0, 34.0289361702, 57.12);
  --bs-btn-active-border-color: rgb(0, 31.9021276596, 53.55);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: rgb(0, 42.5361702128, 71.4);
  --bs-btn-disabled-border-color: rgb(0, 42.5361702128, 71.4);
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-primary-6 {
  --bs-btn-color: #fff;
  --bs-btn-bg: rgb(0, 91.1489361702, 153);
  --bs-btn-border-color: rgb(0, 91.1489361702, 153);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(0, 77.4765957447, 130.05);
  --bs-btn-hover-border-color: rgb(0, 72.9191489362, 122.4);
  --bs-btn-focus-shadow-rgb: 38, 116, 168;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(0, 72.9191489362, 122.4);
  --bs-btn-active-border-color: rgb(0, 68.3617021277, 114.75);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: rgb(0, 91.1489361702, 153);
  --bs-btn-disabled-border-color: rgb(0, 91.1489361702, 153);
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-primary-5 {
  --bs-btn-color: #000;
  --bs-btn-bg: rgb(0, 151.914893617, 255);
  --bs-btn-border-color: rgb(0, 151.914893617, 255);
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(38.25, 167.3776595745, 255);
  --bs-btn-hover-border-color: rgb(25.5, 162.2234042553, 255);
  --bs-btn-focus-shadow-rgb: 0, 129, 217;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(51, 172.5319148936, 255);
  --bs-btn-active-border-color: rgb(25.5, 162.2234042553, 255);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: rgb(0, 151.914893617, 255);
  --bs-btn-disabled-border-color: rgb(0, 151.914893617, 255);
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-primary-4 {
  --bs-btn-color: #000;
  --bs-btn-bg: rgb(153, 213.7659574468, 255);
  --bs-btn-border-color: rgb(153, 213.7659574468, 255);
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(168.3, 219.9510638298, 255);
  --bs-btn-hover-border-color: rgb(163.2, 217.8893617021, 255);
  --bs-btn-focus-shadow-rgb: 130, 182, 217;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(173.4, 222.0127659574, 255);
  --bs-btn-active-border-color: rgb(163.2, 217.8893617021, 255);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: rgb(153, 213.7659574468, 255);
  --bs-btn-disabled-border-color: rgb(153, 213.7659574468, 255);
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-primary-3 {
  --bs-btn-color: #000;
  --bs-btn-bg: rgb(193.8, 230.2595744681, 255);
  --bs-btn-border-color: rgb(193.8, 230.2595744681, 255);
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(202.98, 233.9706382979, 255);
  --bs-btn-hover-border-color: rgb(199.92, 232.7336170213, 255);
  --bs-btn-focus-shadow-rgb: 165, 196, 217;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(206.04, 235.2076595745, 255);
  --bs-btn-active-border-color: rgb(199.92, 232.7336170213, 255);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: rgb(193.8, 230.2595744681, 255);
  --bs-btn-disabled-border-color: rgb(193.8, 230.2595744681, 255);
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-primary-2 {
  --bs-btn-color: #000;
  --bs-btn-bg: rgb(224.4, 242.629787234, 255);
  --bs-btn-border-color: rgb(224.4, 242.629787234, 255);
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(228.99, 244.4853191489, 255);
  --bs-btn-hover-border-color: rgb(227.46, 243.8668085106, 255);
  --bs-btn-focus-shadow-rgb: 191, 206, 217;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(230.52, 245.1038297872, 255);
  --bs-btn-active-border-color: rgb(227.46, 243.8668085106, 255);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: rgb(224.4, 242.629787234, 255);
  --bs-btn-disabled-border-color: rgb(224.4, 242.629787234, 255);
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-primary-1 {
  --bs-btn-color: #000;
  --bs-btn-bg: rgb(239.7, 248.814893617, 255);
  --bs-btn-border-color: rgb(239.7, 248.814893617, 255);
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(241.995, 249.7426595745, 255);
  --bs-btn-hover-border-color: rgb(241.23, 249.4334042553, 255);
  --bs-btn-focus-shadow-rgb: 204, 211, 217;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(242.76, 250.0519148936, 255);
  --bs-btn-active-border-color: rgb(241.23, 249.4334042553, 255);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: rgb(239.7, 248.814893617, 255);
  --bs-btn-disabled-border-color: rgb(239.7, 248.814893617, 255);
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-secondary-7 {
  --bs-btn-color: #fff;
  --bs-btn-bg: rgb(6.3, 25.9, 65.1);
  --bs-btn-border-color: rgb(6.3, 25.9, 65.1);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(5.355, 22.015, 55.335);
  --bs-btn-hover-border-color: rgb(5.04, 20.72, 52.08);
  --bs-btn-focus-shadow-rgb: 44, 60, 94;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(5.04, 20.72, 52.08);
  --bs-btn-active-border-color: rgb(4.725, 19.425, 48.825);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: rgb(6.3, 25.9, 65.1);
  --bs-btn-disabled-border-color: rgb(6.3, 25.9, 65.1);
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-secondary-6 {
  --bs-btn-color: #fff;
  --bs-btn-bg: rgb(13.5, 55.5, 139.5);
  --bs-btn-border-color: rgb(13.5, 55.5, 139.5);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(11.475, 47.175, 118.575);
  --bs-btn-hover-border-color: rgb(10.8, 44.4, 111.6);
  --bs-btn-focus-shadow-rgb: 50, 85, 157;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(10.8, 44.4, 111.6);
  --bs-btn-active-border-color: rgb(10.125, 41.625, 104.625);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: rgb(13.5, 55.5, 139.5);
  --bs-btn-disabled-border-color: rgb(13.5, 55.5, 139.5);
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-secondary-5 {
  --bs-btn-color: #fff;
  --bs-btn-bg: rgb(22.5, 92.5, 232.5);
  --bs-btn-border-color: rgb(22.5, 92.5, 232.5);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(19.125, 78.625, 197.625);
  --bs-btn-hover-border-color: #124aba;
  --bs-btn-focus-shadow-rgb: 57, 117, 236;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #124aba;
  --bs-btn-active-border-color: rgb(16.875, 69.375, 174.375);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: rgb(22.5, 92.5, 232.5);
  --bs-btn-disabled-border-color: rgb(22.5, 92.5, 232.5);
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-secondary-4 {
  --bs-btn-color: #000;
  --bs-btn-bg: #a2bef6;
  --bs-btn-border-color: #a2bef6;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(175.95, 199.75, 247.35);
  --bs-btn-hover-border-color: rgb(171.3, 196.5, 246.9);
  --bs-btn-focus-shadow-rgb: 138, 161, 209;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(180.6, 203, 247.8);
  --bs-btn-active-border-color: rgb(171.3, 196.5, 246.9);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #a2bef6;
  --bs-btn-disabled-border-color: #a2bef6;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-secondary-3 {
  --bs-btn-color: #000;
  --bs-btn-bg: rgb(199.2, 216, 249.6);
  --bs-btn-border-color: rgb(199.2, 216, 249.6);
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(207.57, 221.85, 250.41);
  --bs-btn-hover-border-color: rgb(204.78, 219.9, 250.14);
  --bs-btn-focus-shadow-rgb: 169, 184, 212;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(210.36, 223.8, 250.68);
  --bs-btn-active-border-color: rgb(204.78, 219.9, 250.14);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: rgb(199.2, 216, 249.6);
  --bs-btn-disabled-border-color: rgb(199.2, 216, 249.6);
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-secondary-2 {
  --bs-btn-color: #000;
  --bs-btn-bg: rgb(227.1, 235.5, 252.3);
  --bs-btn-border-color: rgb(227.1, 235.5, 252.3);
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(231.285, 238.425, 252.705);
  --bs-btn-hover-border-color: rgb(229.89, 237.45, 252.57);
  --bs-btn-focus-shadow-rgb: 193, 200, 214;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(232.68, 239.4, 252.84);
  --bs-btn-active-border-color: rgb(229.89, 237.45, 252.57);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: rgb(227.1, 235.5, 252.3);
  --bs-btn-disabled-border-color: rgb(227.1, 235.5, 252.3);
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-secondary-1 {
  --bs-btn-color: #000;
  --bs-btn-bg: rgb(241.05, 245.25, 253.65);
  --bs-btn-border-color: rgb(241.05, 245.25, 253.65);
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(243.1425, 246.7125, 253.8525);
  --bs-btn-hover-border-color: rgb(242.445, 246.225, 253.785);
  --bs-btn-focus-shadow-rgb: 205, 208, 216;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(243.84, 247.2, 253.92);
  --bs-btn-active-border-color: rgb(242.445, 246.225, 253.785);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: rgb(241.05, 245.25, 253.65);
  --bs-btn-disabled-border-color: rgb(241.05, 245.25, 253.65);
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outline-primary {
  --bs-btn-color: rgb(0, 112, 188);
  --bs-btn-border-color: rgb(0, 112, 188);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(0, 112, 188);
  --bs-btn-hover-border-color: rgb(0, 112, 188);
  --bs-btn-focus-shadow-rgb: 0, 112, 188;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(0, 112, 188);
  --bs-btn-active-border-color: rgb(0, 112, 188);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgb(0, 112, 188);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: rgb(0, 112, 188);
  --bs-gradient: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outline-secondary {
  --bs-btn-color: rgb(9, 37, 93);
  --bs-btn-border-color: rgb(9, 37, 93);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(9, 37, 93);
  --bs-btn-hover-border-color: rgb(9, 37, 93);
  --bs-btn-focus-shadow-rgb: 9, 37, 93;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(9, 37, 93);
  --bs-btn-active-border-color: rgb(9, 37, 93);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgb(9, 37, 93);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: rgb(9, 37, 93);
  --bs-gradient: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outline-success {
  --bs-btn-color: #009e60;
  --bs-btn-border-color: #009e60;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #009e60;
  --bs-btn-hover-border-color: #009e60;
  --bs-btn-focus-shadow-rgb: 0, 158, 96;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #009e60;
  --bs-btn-active-border-color: #009e60;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #009e60;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #009e60;
  --bs-gradient: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outline-info {
  --bs-btn-color: #005dd1;
  --bs-btn-border-color: #005dd1;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #005dd1;
  --bs-btn-hover-border-color: #005dd1;
  --bs-btn-focus-shadow-rgb: 0, 93, 209;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #005dd1;
  --bs-btn-active-border-color: #005dd1;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #005dd1;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #005dd1;
  --bs-gradient: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outline-warning {
  --bs-btn-color: #fa5300;
  --bs-btn-border-color: #fa5300;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #fa5300;
  --bs-btn-hover-border-color: #fa5300;
  --bs-btn-focus-shadow-rgb: 250, 83, 0;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #fa5300;
  --bs-btn-active-border-color: #fa5300;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fa5300;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #fa5300;
  --bs-gradient: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outline-danger {
  --bs-btn-color: #e0000f;
  --bs-btn-border-color: #e0000f;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #e0000f;
  --bs-btn-hover-border-color: #e0000f;
  --bs-btn-focus-shadow-rgb: 224, 0, 15;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #e0000f;
  --bs-btn-active-border-color: #e0000f;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #e0000f;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #e0000f;
  --bs-gradient: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outline-dark {
  --bs-btn-color: #18191A;
  --bs-btn-border-color: #18191A;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #18191A;
  --bs-btn-hover-border-color: #18191A;
  --bs-btn-focus-shadow-rgb: 24, 25, 26;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #18191A;
  --bs-btn-active-border-color: #18191A;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #18191A;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #18191A;
  --bs-gradient: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outline-remise {
  --bs-btn-color: #e1003c;
  --bs-btn-border-color: #e1003c;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #e1003c;
  --bs-btn-hover-border-color: #e1003c;
  --bs-btn-focus-shadow-rgb: 225, 0, 60;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #e1003c;
  --bs-btn-active-border-color: #e1003c;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #e1003c;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #e1003c;
  --bs-gradient: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outline-primary-tone {
  --bs-btn-color: rgba(0, 112, 188, 0.16);
  --bs-btn-border-color: rgba(0, 112, 188, 0.16);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgba(0, 112, 188, 0.16);
  --bs-btn-hover-border-color: rgba(0, 112, 188, 0.16);
  --bs-btn-focus-shadow-rgb: 0, 112, 188;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgba(0, 112, 188, 0.16);
  --bs-btn-active-border-color: rgba(0, 112, 188, 0.16);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(0, 112, 188, 0.16);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: rgba(0, 112, 188, 0.16);
  --bs-gradient: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outline-secondary-tone {
  --bs-btn-color: rgba(9, 37, 93, 0.16);
  --bs-btn-border-color: rgba(9, 37, 93, 0.16);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgba(9, 37, 93, 0.16);
  --bs-btn-hover-border-color: rgba(9, 37, 93, 0.16);
  --bs-btn-focus-shadow-rgb: 9, 37, 93;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgba(9, 37, 93, 0.16);
  --bs-btn-active-border-color: rgba(9, 37, 93, 0.16);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(9, 37, 93, 0.16);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: rgba(9, 37, 93, 0.16);
  --bs-gradient: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outline-info-tone {
  --bs-btn-color: rgba(0, 93, 209, 0.16);
  --bs-btn-border-color: rgba(0, 93, 209, 0.16);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgba(0, 93, 209, 0.16);
  --bs-btn-hover-border-color: rgba(0, 93, 209, 0.16);
  --bs-btn-focus-shadow-rgb: 0, 93, 209;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgba(0, 93, 209, 0.16);
  --bs-btn-active-border-color: rgba(0, 93, 209, 0.16);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(0, 93, 209, 0.16);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: rgba(0, 93, 209, 0.16);
  --bs-gradient: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outline-success-tone {
  --bs-btn-color: rgba(0, 158, 96, 0.16);
  --bs-btn-border-color: rgba(0, 158, 96, 0.16);
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgba(0, 158, 96, 0.16);
  --bs-btn-hover-border-color: rgba(0, 158, 96, 0.16);
  --bs-btn-focus-shadow-rgb: 0, 158, 96;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgba(0, 158, 96, 0.16);
  --bs-btn-active-border-color: rgba(0, 158, 96, 0.16);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(0, 158, 96, 0.16);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: rgba(0, 158, 96, 0.16);
  --bs-gradient: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outline-warning-tone {
  --bs-btn-color: rgba(250, 83, 0, 0.16);
  --bs-btn-border-color: rgba(250, 83, 0, 0.16);
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgba(250, 83, 0, 0.16);
  --bs-btn-hover-border-color: rgba(250, 83, 0, 0.16);
  --bs-btn-focus-shadow-rgb: 250, 83, 0;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgba(250, 83, 0, 0.16);
  --bs-btn-active-border-color: rgba(250, 83, 0, 0.16);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(250, 83, 0, 0.16);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: rgba(250, 83, 0, 0.16);
  --bs-gradient: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outline-danger-tone {
  --bs-btn-color: rgba(224, 0, 15, 0.16);
  --bs-btn-border-color: rgba(224, 0, 15, 0.16);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgba(224, 0, 15, 0.16);
  --bs-btn-hover-border-color: rgba(224, 0, 15, 0.16);
  --bs-btn-focus-shadow-rgb: 224, 0, 15;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgba(224, 0, 15, 0.16);
  --bs-btn-active-border-color: rgba(224, 0, 15, 0.16);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(224, 0, 15, 0.16);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: rgba(224, 0, 15, 0.16);
  --bs-gradient: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outline-neutral {
  --bs-btn-color: rgba(37, 38, 40, 0.06);
  --bs-btn-border-color: rgba(37, 38, 40, 0.06);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgba(37, 38, 40, 0.06);
  --bs-btn-hover-border-color: rgba(37, 38, 40, 0.06);
  --bs-btn-focus-shadow-rgb: 37, 38, 40;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgba(37, 38, 40, 0.06);
  --bs-btn-active-border-color: rgba(37, 38, 40, 0.06);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(37, 38, 40, 0.06);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: rgba(37, 38, 40, 0.06);
  --bs-gradient: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outline-swizy-primary {
  --bs-btn-color: #ef426f;
  --bs-btn-border-color: #ef426f;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ef426f;
  --bs-btn-hover-border-color: #ef426f;
  --bs-btn-focus-shadow-rgb: 239, 66, 111;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ef426f;
  --bs-btn-active-border-color: #ef426f;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #ef426f;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #ef426f;
  --bs-gradient: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outline-swizy-secondary {
  --bs-btn-color: #09255d;
  --bs-btn-border-color: #09255d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #09255d;
  --bs-btn-hover-border-color: #09255d;
  --bs-btn-focus-shadow-rgb: 9, 37, 93;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #09255d;
  --bs-btn-active-border-color: #09255d;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #09255d;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #09255d;
  --bs-gradient: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outline-swizy-primary-tone {
  --bs-btn-color: rgba(239, 66, 111, 0.16);
  --bs-btn-border-color: rgba(239, 66, 111, 0.16);
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgba(239, 66, 111, 0.16);
  --bs-btn-hover-border-color: rgba(239, 66, 111, 0.16);
  --bs-btn-focus-shadow-rgb: 239, 66, 111;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgba(239, 66, 111, 0.16);
  --bs-btn-active-border-color: rgba(239, 66, 111, 0.16);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(239, 66, 111, 0.16);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: rgba(239, 66, 111, 0.16);
  --bs-gradient: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outline-swizy-secondary-tone {
  --bs-btn-color: rgba(9, 37, 93, 0.16);
  --bs-btn-border-color: rgba(9, 37, 93, 0.16);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgba(9, 37, 93, 0.16);
  --bs-btn-hover-border-color: rgba(9, 37, 93, 0.16);
  --bs-btn-focus-shadow-rgb: 9, 37, 93;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgba(9, 37, 93, 0.16);
  --bs-btn-active-border-color: rgba(9, 37, 93, 0.16);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(9, 37, 93, 0.16);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: rgba(9, 37, 93, 0.16);
  --bs-gradient: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outline-primary-7 {
  --bs-btn-color: rgb(0, 42.5361702128, 71.4);
  --bs-btn-border-color: rgb(0, 42.5361702128, 71.4);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(0, 42.5361702128, 71.4);
  --bs-btn-hover-border-color: rgb(0, 42.5361702128, 71.4);
  --bs-btn-focus-shadow-rgb: 0, 43, 71;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(0, 42.5361702128, 71.4);
  --bs-btn-active-border-color: rgb(0, 42.5361702128, 71.4);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgb(0, 42.5361702128, 71.4);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: rgb(0, 42.5361702128, 71.4);
  --bs-gradient: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outline-primary-6 {
  --bs-btn-color: rgb(0, 91.1489361702, 153);
  --bs-btn-border-color: rgb(0, 91.1489361702, 153);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(0, 91.1489361702, 153);
  --bs-btn-hover-border-color: rgb(0, 91.1489361702, 153);
  --bs-btn-focus-shadow-rgb: 0, 91, 153;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(0, 91.1489361702, 153);
  --bs-btn-active-border-color: rgb(0, 91.1489361702, 153);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgb(0, 91.1489361702, 153);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: rgb(0, 91.1489361702, 153);
  --bs-gradient: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outline-primary-5 {
  --bs-btn-color: rgb(0, 151.914893617, 255);
  --bs-btn-border-color: rgb(0, 151.914893617, 255);
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(0, 151.914893617, 255);
  --bs-btn-hover-border-color: rgb(0, 151.914893617, 255);
  --bs-btn-focus-shadow-rgb: 0, 152, 255;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(0, 151.914893617, 255);
  --bs-btn-active-border-color: rgb(0, 151.914893617, 255);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgb(0, 151.914893617, 255);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: rgb(0, 151.914893617, 255);
  --bs-gradient: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outline-primary-4 {
  --bs-btn-color: rgb(153, 213.7659574468, 255);
  --bs-btn-border-color: rgb(153, 213.7659574468, 255);
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(153, 213.7659574468, 255);
  --bs-btn-hover-border-color: rgb(153, 213.7659574468, 255);
  --bs-btn-focus-shadow-rgb: 153, 214, 255;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(153, 213.7659574468, 255);
  --bs-btn-active-border-color: rgb(153, 213.7659574468, 255);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgb(153, 213.7659574468, 255);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: rgb(153, 213.7659574468, 255);
  --bs-gradient: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outline-primary-3 {
  --bs-btn-color: rgb(193.8, 230.2595744681, 255);
  --bs-btn-border-color: rgb(193.8, 230.2595744681, 255);
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(193.8, 230.2595744681, 255);
  --bs-btn-hover-border-color: rgb(193.8, 230.2595744681, 255);
  --bs-btn-focus-shadow-rgb: 194, 230, 255;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(193.8, 230.2595744681, 255);
  --bs-btn-active-border-color: rgb(193.8, 230.2595744681, 255);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgb(193.8, 230.2595744681, 255);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: rgb(193.8, 230.2595744681, 255);
  --bs-gradient: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outline-primary-2 {
  --bs-btn-color: rgb(224.4, 242.629787234, 255);
  --bs-btn-border-color: rgb(224.4, 242.629787234, 255);
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(224.4, 242.629787234, 255);
  --bs-btn-hover-border-color: rgb(224.4, 242.629787234, 255);
  --bs-btn-focus-shadow-rgb: 224, 243, 255;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(224.4, 242.629787234, 255);
  --bs-btn-active-border-color: rgb(224.4, 242.629787234, 255);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgb(224.4, 242.629787234, 255);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: rgb(224.4, 242.629787234, 255);
  --bs-gradient: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outline-primary-1 {
  --bs-btn-color: rgb(239.7, 248.814893617, 255);
  --bs-btn-border-color: rgb(239.7, 248.814893617, 255);
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(239.7, 248.814893617, 255);
  --bs-btn-hover-border-color: rgb(239.7, 248.814893617, 255);
  --bs-btn-focus-shadow-rgb: 240, 249, 255;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(239.7, 248.814893617, 255);
  --bs-btn-active-border-color: rgb(239.7, 248.814893617, 255);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgb(239.7, 248.814893617, 255);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: rgb(239.7, 248.814893617, 255);
  --bs-gradient: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outline-secondary-7 {
  --bs-btn-color: rgb(6.3, 25.9, 65.1);
  --bs-btn-border-color: rgb(6.3, 25.9, 65.1);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(6.3, 25.9, 65.1);
  --bs-btn-hover-border-color: rgb(6.3, 25.9, 65.1);
  --bs-btn-focus-shadow-rgb: 6, 26, 65;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(6.3, 25.9, 65.1);
  --bs-btn-active-border-color: rgb(6.3, 25.9, 65.1);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgb(6.3, 25.9, 65.1);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: rgb(6.3, 25.9, 65.1);
  --bs-gradient: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outline-secondary-6 {
  --bs-btn-color: rgb(13.5, 55.5, 139.5);
  --bs-btn-border-color: rgb(13.5, 55.5, 139.5);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(13.5, 55.5, 139.5);
  --bs-btn-hover-border-color: rgb(13.5, 55.5, 139.5);
  --bs-btn-focus-shadow-rgb: 14, 55, 139;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(13.5, 55.5, 139.5);
  --bs-btn-active-border-color: rgb(13.5, 55.5, 139.5);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgb(13.5, 55.5, 139.5);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: rgb(13.5, 55.5, 139.5);
  --bs-gradient: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outline-secondary-5 {
  --bs-btn-color: rgb(22.5, 92.5, 232.5);
  --bs-btn-border-color: rgb(22.5, 92.5, 232.5);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(22.5, 92.5, 232.5);
  --bs-btn-hover-border-color: rgb(22.5, 92.5, 232.5);
  --bs-btn-focus-shadow-rgb: 23, 92, 233;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(22.5, 92.5, 232.5);
  --bs-btn-active-border-color: rgb(22.5, 92.5, 232.5);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgb(22.5, 92.5, 232.5);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: rgb(22.5, 92.5, 232.5);
  --bs-gradient: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outline-secondary-4 {
  --bs-btn-color: #a2bef6;
  --bs-btn-border-color: #a2bef6;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #a2bef6;
  --bs-btn-hover-border-color: #a2bef6;
  --bs-btn-focus-shadow-rgb: 162, 190, 246;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #a2bef6;
  --bs-btn-active-border-color: #a2bef6;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #a2bef6;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #a2bef6;
  --bs-gradient: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outline-secondary-3 {
  --bs-btn-color: rgb(199.2, 216, 249.6);
  --bs-btn-border-color: rgb(199.2, 216, 249.6);
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(199.2, 216, 249.6);
  --bs-btn-hover-border-color: rgb(199.2, 216, 249.6);
  --bs-btn-focus-shadow-rgb: 199, 216, 250;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(199.2, 216, 249.6);
  --bs-btn-active-border-color: rgb(199.2, 216, 249.6);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgb(199.2, 216, 249.6);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: rgb(199.2, 216, 249.6);
  --bs-gradient: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outline-secondary-2 {
  --bs-btn-color: rgb(227.1, 235.5, 252.3);
  --bs-btn-border-color: rgb(227.1, 235.5, 252.3);
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(227.1, 235.5, 252.3);
  --bs-btn-hover-border-color: rgb(227.1, 235.5, 252.3);
  --bs-btn-focus-shadow-rgb: 227, 235, 252;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(227.1, 235.5, 252.3);
  --bs-btn-active-border-color: rgb(227.1, 235.5, 252.3);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgb(227.1, 235.5, 252.3);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: rgb(227.1, 235.5, 252.3);
  --bs-gradient: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outline-secondary-1 {
  --bs-btn-color: rgb(241.05, 245.25, 253.65);
  --bs-btn-border-color: rgb(241.05, 245.25, 253.65);
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(241.05, 245.25, 253.65);
  --bs-btn-hover-border-color: rgb(241.05, 245.25, 253.65);
  --bs-btn-focus-shadow-rgb: 241, 245, 254;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(241.05, 245.25, 253.65);
  --bs-btn-active-border-color: rgb(241.05, 245.25, 253.65);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgb(241.05, 245.25, 253.65);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: rgb(241.05, 245.25, 253.65);
  --bs-gradient: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .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: 49, 132, 253;
  text-decoration: underline;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-link:focus-visible {
  color: var(--bs-btn-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-link:hover {
  color: var(--bs-btn-hover-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-lg, :where(theme-provider[data-theme=swizy-v3x]) .btn-group-lg > .btn, :where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-group-lg > .btn-close, :where(theme-provider[data-theme=swizy-v3x]) .btn-group-lg > .popover__btn-close, :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .btn-group-lg > .nav-link {
  --bs-btn-padding-y: 0.6875rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 1rem;
  --bs-btn-border-radius: var(--bs-border-radius-lg);
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-sm, :where(theme-provider[data-theme=swizy-v3x]) .btn-group-sm > .btn, :where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-group-sm > .btn-close, :where(theme-provider[data-theme=swizy-v3x]) .btn-group-sm > .popover__btn-close, :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .btn-group-sm > .nav-link {
  --bs-btn-padding-y: 0.375rem;
  --bs-btn-padding-x: 0.5rem;
  --bs-btn-font-size: 0.75rem;
  --bs-btn-border-radius: var(--bs-border-radius-sm);
}
:where(theme-provider[data-theme=swizy-v3x]) .fade {
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  :where(theme-provider[data-theme=swizy-v3x]) .fade {
    -webkit-transition: none;
    transition: none;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .fade:not(.show) {
  opacity: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .collapse:not(.show) {
  display: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .collapsing {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  :where(theme-provider[data-theme=swizy-v3x]) .collapsing {
    -webkit-transition: none;
    transition: none;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  -webkit-transition: width 0.35s ease;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  :where(theme-provider[data-theme=swizy-v3x]) .collapsing.collapse-horizontal {
    -webkit-transition: none;
    transition: none;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .dropup,
:where(theme-provider[data-theme=swizy-v3x]) .dropend,
:where(theme-provider[data-theme=swizy-v3x]) .dropdown,
:where(theme-provider[data-theme=swizy-v3x]) .dropstart,
:where(theme-provider[data-theme=swizy-v3x]) .dropup-center,
:where(theme-provider[data-theme=swizy-v3x]) .dropdown-center {
  position: relative;
}
:where(theme-provider[data-theme=swizy-v3x]) .dropdown-toggle {
  white-space: nowrap;
}
:where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .dropdown-toggle:empty::after {
  margin-left: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .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: 1rem;
  --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: #0d6efd;
  --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);
}
:where(theme-provider[data-theme=swizy-v3x]) .dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: var(--bs-dropdown-spacer);
}
:where(theme-provider[data-theme=swizy-v3x]) .dropdown-menu-start {
  --bs-position: start;
}
:where(theme-provider[data-theme=swizy-v3x]) .dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .dropdown-menu-end {
  --bs-position: end;
}
:where(theme-provider[data-theme=swizy-v3x]) .dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .dropdown-menu-sm-start {
    --bs-position: start;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .dropdown-menu-sm-end {
    --bs-position: end;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .dropdown-menu-md-start {
    --bs-position: start;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .dropdown-menu-md-end {
    --bs-position: end;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .dropdown-menu-lg-start {
    --bs-position: start;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .dropdown-menu-lg-end {
    --bs-position: end;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .dropdown-menu-xl-start {
    --bs-position: start;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .dropdown-menu-xl-end {
    --bs-position: end;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: var(--bs-dropdown-spacer);
}
:where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: var(--bs-dropdown-spacer);
}
:where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .dropend .dropdown-toggle::after {
  vertical-align: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: var(--bs-dropdown-spacer);
}
:where(theme-provider[data-theme=swizy-v3x]) .dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
:where(theme-provider[data-theme=swizy-v3x]) .dropstart .dropdown-toggle::after {
  display: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .dropstart .dropdown-toggle::before {
  vertical-align: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .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;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  border-radius: var(--bs-dropdown-item-border-radius, 0);
}
:where(theme-provider[data-theme=swizy-v3x]) .dropdown-item:hover, :where(theme-provider[data-theme=swizy-v3x]) .dropdown-item:focus {
  color: var(--bs-dropdown-link-hover-color);
  background-color: var(--bs-dropdown-link-hover-bg);
}
:where(theme-provider[data-theme=swizy-v3x]) .dropdown-item.active, :where(theme-provider[data-theme=swizy-v3x]) .dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--bs-dropdown-link-active-bg);
}
:where(theme-provider[data-theme=swizy-v3x]) .dropdown-item.disabled, :where(theme-provider[data-theme=swizy-v3x]) .dropdown-item:disabled {
  color: var(--bs-dropdown-link-disabled-color);
  pointer-events: none;
  background-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) .dropdown-menu.show {
  display: block;
}
:where(theme-provider[data-theme=swizy-v3x]) .dropdown-header {
  display: block;
  padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--bs-dropdown-header-color);
  white-space: nowrap;
}
:where(theme-provider[data-theme=swizy-v3x]) .dropdown-item-text {
  display: block;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  color: var(--bs-dropdown-link-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .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: #0d6efd;
  --bs-dropdown-link-disabled-color: #adb5bd;
  --bs-dropdown-header-color: #adb5bd;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-group,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group-vertical {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-group > .btn, :where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-group > .btn-close, :where(theme-provider[data-theme=swizy-v3x]) .btn-group > .popover__btn-close, :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .btn-group > .nav-link,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group-vertical > .btn,
:where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-group-vertical > .btn-close,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group-vertical > .popover__btn-close,
:where(theme-provider[data-theme=swizy-v3x]) .nav-pills .btn-group-vertical > .nav-link {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-group > .btn-check:checked + .btn, :where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-group > .btn-check:checked + .btn-close, :where(theme-provider[data-theme=swizy-v3x]) .btn-group > .btn-check:checked + .popover__btn-close, :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .btn-group > .btn-check:checked + .nav-link,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group > .btn-check:focus + .btn,
:where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-group > .btn-check:focus + .btn-close,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group > .btn-check:focus + .popover__btn-close,
:where(theme-provider[data-theme=swizy-v3x]) .nav-pills .btn-group > .btn-check:focus + .nav-link,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group > .btn:hover,
:where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-group > .btn-close:hover,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group > .popover__btn-close:hover,
:where(theme-provider[data-theme=swizy-v3x]) .nav-pills .btn-group > .nav-link:hover,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group > .btn:focus,
:where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-group > .btn-close:focus,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group > .popover__btn-close:focus,
:where(theme-provider[data-theme=swizy-v3x]) .nav-pills .btn-group > .nav-link:focus,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group > .btn:active,
:where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-group > .btn-close:active,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group > .popover__btn-close:active,
:where(theme-provider[data-theme=swizy-v3x]) .nav-pills .btn-group > .nav-link:active,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group > .btn.active,
:where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-group > .active.btn-close,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group > .active.popover__btn-close,
:where(theme-provider[data-theme=swizy-v3x]) .nav-pills .btn-group > .active.nav-link,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group-vertical > .btn-check:checked + .btn,
:where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-group-vertical > .btn-check:checked + .btn-close,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group-vertical > .btn-check:checked + .popover__btn-close,
:where(theme-provider[data-theme=swizy-v3x]) .nav-pills .btn-group-vertical > .btn-check:checked + .nav-link,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group-vertical > .btn-check:focus + .btn,
:where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-group-vertical > .btn-check:focus + .btn-close,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group-vertical > .btn-check:focus + .popover__btn-close,
:where(theme-provider[data-theme=swizy-v3x]) .nav-pills .btn-group-vertical > .btn-check:focus + .nav-link,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group-vertical > .btn:hover,
:where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-group-vertical > .btn-close:hover,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group-vertical > .popover__btn-close:hover,
:where(theme-provider[data-theme=swizy-v3x]) .nav-pills .btn-group-vertical > .nav-link:hover,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group-vertical > .btn:focus,
:where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-group-vertical > .btn-close:focus,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group-vertical > .popover__btn-close:focus,
:where(theme-provider[data-theme=swizy-v3x]) .nav-pills .btn-group-vertical > .nav-link:focus,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group-vertical > .btn:active,
:where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-group-vertical > .btn-close:active,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group-vertical > .popover__btn-close:active,
:where(theme-provider[data-theme=swizy-v3x]) .nav-pills .btn-group-vertical > .nav-link:active,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group-vertical > .btn.active,
:where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-group-vertical > .active.btn-close,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group-vertical > .active.popover__btn-close,
:where(theme-provider[data-theme=swizy-v3x]) .nav-pills .btn-group-vertical > .active.nav-link {
  z-index: 1;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-toolbar .input-group {
  width: auto;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-group {
  border-radius: var(--bs-border-radius);
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-group > :not(.btn-check:first-child) + .btn, :where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-group > :not(.btn-check:first-child) + .btn-close, :where(theme-provider[data-theme=swizy-v3x]) .btn-group > :not(.btn-check:first-child) + .popover__btn-close, :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .btn-group > :not(.btn-check:first-child) + .nav-link,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group > .btn-group:not(:first-child) {
  margin-left: calc(-1 * var(--bs-border-width));
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-group > .btn:not(:last-child):not(.dropdown-toggle), :where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-group > .btn-close:not(:last-child):not(.dropdown-toggle), :where(theme-provider[data-theme=swizy-v3x]) .btn-group > .popover__btn-close:not(:last-child):not(.dropdown-toggle), :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .btn-group > .nav-link:not(:last-child):not(.dropdown-toggle),
:where(theme-provider[data-theme=swizy-v3x]) .btn-group > .btn.dropdown-toggle-split:first-child,
:where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-group > .dropdown-toggle-split.btn-close:first-child,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group > .dropdown-toggle-split.popover__btn-close:first-child,
:where(theme-provider[data-theme=swizy-v3x]) .nav-pills .btn-group > .dropdown-toggle-split.nav-link:first-child,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group > .btn-group:not(:last-child) > .btn,
:where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-group > .btn-group:not(:last-child) > .btn-close,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group > .btn-group:not(:last-child) > .popover__btn-close,
:where(theme-provider[data-theme=swizy-v3x]) .nav-pills .btn-group > .btn-group:not(:last-child) > .nav-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-group > .btn:nth-child(n+3), :where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-group > .btn-close:nth-child(n+3), :where(theme-provider[data-theme=swizy-v3x]) .btn-group > .popover__btn-close:nth-child(n+3), :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .btn-group > .nav-link:nth-child(n+3),
:where(theme-provider[data-theme=swizy-v3x]) .btn-group > :not(.btn-check) + .btn,
:where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-group > :not(.btn-check) + .btn-close,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group > :not(.btn-check) + .popover__btn-close,
:where(theme-provider[data-theme=swizy-v3x]) .nav-pills .btn-group > :not(.btn-check) + .nav-link,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group > .btn-group:not(:first-child) > .btn,
:where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-group > .btn-group:not(:first-child) > .btn-close,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group > .btn-group:not(:first-child) > .popover__btn-close,
:where(theme-provider[data-theme=swizy-v3x]) .nav-pills .btn-group > .btn-group:not(:first-child) > .nav-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .dropdown-toggle-split::after, .dropup :where(theme-provider[data-theme=swizy-v3x]) .dropdown-toggle-split::after, .dropend :where(theme-provider[data-theme=swizy-v3x]) .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropstart :where(theme-provider[data-theme=swizy-v3x]) .dropdown-toggle-split::before {
  margin-right: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-sm + .dropdown-toggle-split, :where(theme-provider[data-theme=swizy-v3x]) .btn-group-sm > .btn + .dropdown-toggle-split, :where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-group-sm > .btn-close + .dropdown-toggle-split, :where(theme-provider[data-theme=swizy-v3x]) .btn-group-sm > .popover__btn-close + .dropdown-toggle-split, :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .btn-group-sm > .nav-link + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-lg + .dropdown-toggle-split, :where(theme-provider[data-theme=swizy-v3x]) .btn-group-lg > .btn + .dropdown-toggle-split, :where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-group-lg > .btn-close + .dropdown-toggle-split, :where(theme-provider[data-theme=swizy-v3x]) .btn-group-lg > .popover__btn-close + .dropdown-toggle-split, :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .btn-group-lg > .nav-link + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-group-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-group-vertical > .btn, :where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-group-vertical > .btn-close, :where(theme-provider[data-theme=swizy-v3x]) .btn-group-vertical > .popover__btn-close, :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .btn-group-vertical > .nav-link,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group-vertical > .btn-group {
  width: 100%;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-group-vertical > .btn:not(:first-child), :where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-group-vertical > .btn-close:not(:first-child), :where(theme-provider[data-theme=swizy-v3x]) .btn-group-vertical > .popover__btn-close:not(:first-child), :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .btn-group-vertical > .nav-link:not(:first-child),
:where(theme-provider[data-theme=swizy-v3x]) .btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: calc(-1 * var(--bs-border-width));
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), :where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-group-vertical > .btn-close:not(:last-child):not(.dropdown-toggle), :where(theme-provider[data-theme=swizy-v3x]) .btn-group-vertical > .popover__btn-close:not(:last-child):not(.dropdown-toggle), :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .btn-group-vertical > .nav-link:not(:last-child):not(.dropdown-toggle),
:where(theme-provider[data-theme=swizy-v3x]) .btn-group-vertical > .btn-group:not(:last-child) > .btn,
:where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-group-vertical > .btn-group:not(:last-child) > .btn-close,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group-vertical > .btn-group:not(:last-child) > .popover__btn-close,
:where(theme-provider[data-theme=swizy-v3x]) .nav-pills .btn-group-vertical > .btn-group:not(:last-child) > .nav-link {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-group-vertical > .btn:nth-child(n+3), :where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-group-vertical > .btn-close:nth-child(n+3), :where(theme-provider[data-theme=swizy-v3x]) .btn-group-vertical > .popover__btn-close:nth-child(n+3), :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .btn-group-vertical > .nav-link:nth-child(n+3),
:where(theme-provider[data-theme=swizy-v3x]) .btn-group-vertical > :not(.btn-check) + .btn,
:where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-group-vertical > :not(.btn-check) + .btn-close,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group-vertical > :not(.btn-check) + .popover__btn-close,
:where(theme-provider[data-theme=swizy-v3x]) .nav-pills .btn-group-vertical > :not(.btn-check) + .nav-link,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group-vertical > .btn-group:not(:first-child) > .btn,
:where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-group-vertical > .btn-group:not(:first-child) > .btn-close,
:where(theme-provider[data-theme=swizy-v3x]) .btn-group-vertical > .btn-group:not(:first-child) > .popover__btn-close,
:where(theme-provider[data-theme=swizy-v3x]) .nav-pills .btn-group-vertical > .btn-group:not(:first-child) > .nav-link {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
  text-decoration: none;
  background: none;
  border: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  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) {
  :where(theme-provider[data-theme=swizy-v3x]) .nav-link {
    -webkit-transition: none;
    transition: none;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .nav-link:hover, :where(theme-provider[data-theme=swizy-v3x]) .nav-link:focus {
  color: var(--bs-nav-link-hover-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .nav-link:focus-visible {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
:where(theme-provider[data-theme=swizy-v3x]) .nav-link.disabled, :where(theme-provider[data-theme=swizy-v3x]) .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .nav-tabs .nav-link:hover, :where(theme-provider[data-theme=swizy-v3x]) .nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: var(--bs-nav-tabs-link-hover-border-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .nav-tabs .nav-link.active,
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .nav-tabs .dropdown-menu {
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .nav-pills {
  --bs-nav-pills-border-radius: var(--bs-border-radius);
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: #0d6efd;
}
:where(theme-provider[data-theme=swizy-v3x]) .nav-pills .nav-link {
  border-radius: var(--bs-nav-pills-border-radius);
}
:where(theme-provider[data-theme=swizy-v3x]) .nav-pills .nav-link.active,
:where(theme-provider[data-theme=swizy-v3x]) .nav-pills .show > .nav-link {
  color: var(--bs-nav-pills-link-active-color);
  background-color: var(--bs-nav-pills-link-active-bg);
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .nav-underline .nav-link {
  padding-right: 0;
  padding-left: 0;
  border-bottom: var(--bs-nav-underline-border-width) solid transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) .nav-underline .nav-link:hover, :where(theme-provider[data-theme=swizy-v3x]) .nav-underline .nav-link:focus {
  border-bottom-color: currentcolor;
}
:where(theme-provider[data-theme=swizy-v3x]) .nav-underline .nav-link.active,
:where(theme-provider[data-theme=swizy-v3x]) .nav-underline .show > .nav-link {
  font-weight: 700;
  color: var(--bs-nav-underline-link-active-color);
  border-bottom-color: currentcolor;
}
:where(theme-provider[data-theme=swizy-v3x]) .nav-fill > .nav-link,
:where(theme-provider[data-theme=swizy-v3x]) .nav-fill .nav-item {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;
}
:where(theme-provider[data-theme=swizy-v3x]) .nav-justified > .nav-link,
:where(theme-provider[data-theme=swizy-v3x]) .nav-justified .nav-item {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  text-align: center;
}
:where(theme-provider[data-theme=swizy-v3x]) .nav-fill .nav-item .nav-link,
:where(theme-provider[data-theme=swizy-v3x]) .nav-justified .nav-item .nav-link {
  width: 100%;
}
:where(theme-provider[data-theme=swizy-v3x]) .tab-content > .tab-pane {
  display: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .tab-content > .active {
  display: block;
}
:where(theme-provider[data-theme=swizy-v3x]) .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.3125rem;
  --bs-navbar-brand-margin-end: 1rem;
  --bs-navbar-brand-font-size: 1.25rem;
  --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.25rem;
  --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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
}
:where(theme-provider[data-theme=swizy-v3x]) .navbar > .container,
:where(theme-provider[data-theme=swizy-v3x]) .navbar > .container-fluid,
:where(theme-provider[data-theme=swizy-v3x]) .navbar > .container-sm,
:where(theme-provider[data-theme=swizy-v3x]) .navbar > .container-md,
:where(theme-provider[data-theme=swizy-v3x]) .navbar > .container-lg,
:where(theme-provider[data-theme=swizy-v3x]) .navbar > .container-xl,
:where(theme-provider[data-theme=swizy-v3x]) .navbar > .container-xxl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: inherit;
  flex-wrap: inherit;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
  text-decoration: none;
  white-space: nowrap;
}
:where(theme-provider[data-theme=swizy-v3x]) .navbar-brand:hover, :where(theme-provider[data-theme=swizy-v3x]) .navbar-brand:focus {
  color: var(--bs-navbar-brand-hover-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .navbar-nav .nav-link.active, :where(theme-provider[data-theme=swizy-v3x]) .navbar-nav .nav-link.show {
  color: var(--bs-navbar-active-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .navbar-nav .dropdown-menu {
  position: static;
}
:where(theme-provider[data-theme=swizy-v3x]) .navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-navbar-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .navbar-text a,
:where(theme-provider[data-theme=swizy-v3x]) .navbar-text a:hover,
:where(theme-provider[data-theme=swizy-v3x]) .navbar-text a:focus {
  color: var(--bs-navbar-active-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .navbar-collapse {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
  -webkit-transition: var(--bs-navbar-toggler-transition);
  transition: var(--bs-navbar-toggler-transition);
}
@media (prefers-reduced-motion: reduce) {
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-toggler {
    -webkit-transition: none;
    transition: none;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .navbar-toggler:hover {
  text-decoration: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  -webkit-box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
}
:where(theme-provider[data-theme=swizy-v3x]) .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%;
}
:where(theme-provider[data-theme=swizy-v3x]) .navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-sm {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-sm .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .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);
  }
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-sm .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-sm .navbar-toggler {
    display: none;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-sm .offcanvas {
    position: static;
    z-index: auto;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    -webkit-transform: none !important;
    transform: none !important;
    -webkit-transition: none;
    transition: none;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-sm .offcanvas .offcanvas-header {
    display: none;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-sm .offcanvas .offcanvas-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-md {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-md .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .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);
  }
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-md .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-md .navbar-toggler {
    display: none;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-md .offcanvas {
    position: static;
    z-index: auto;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    -webkit-transform: none !important;
    transform: none !important;
    -webkit-transition: none;
    transition: none;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-md .offcanvas .offcanvas-header {
    display: none;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-md .offcanvas .offcanvas-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-lg {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-lg .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .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);
  }
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-lg .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-lg .offcanvas {
    position: static;
    z-index: auto;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    -webkit-transform: none !important;
    transform: none !important;
    -webkit-transition: none;
    transition: none;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-lg .offcanvas .offcanvas-header {
    display: none;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-lg .offcanvas .offcanvas-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-xl {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-xl .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .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);
  }
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-xl .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-xl .navbar-toggler {
    display: none;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-xl .offcanvas {
    position: static;
    z-index: auto;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    -webkit-transform: none !important;
    transform: none !important;
    -webkit-transition: none;
    transition: none;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-xl .offcanvas .offcanvas-header {
    display: none;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .navbar-expand-xl .offcanvas .offcanvas-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .navbar-expand {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
:where(theme-provider[data-theme=swizy-v3x]) .navbar-expand .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
:where(theme-provider[data-theme=swizy-v3x]) .navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
:where(theme-provider[data-theme=swizy-v3x]) .navbar-expand .navbar-nav .nav-link {
  padding-right: var(--bs-navbar-nav-link-padding-x);
  padding-left: var(--bs-navbar-nav-link-padding-x);
}
:where(theme-provider[data-theme=swizy-v3x]) .navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
:where(theme-provider[data-theme=swizy-v3x]) .navbar-expand .navbar-collapse {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
:where(theme-provider[data-theme=swizy-v3x]) .navbar-expand .navbar-toggler {
  display: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .navbar-expand .offcanvas {
  position: static;
  z-index: auto;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
  background-color: transparent !important;
  border: 0 !important;
  -webkit-transform: none !important;
  transform: none !important;
  -webkit-transition: none;
  transition: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .navbar-expand .offcanvas .offcanvas-header {
  display: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .navbar-expand .offcanvas .offcanvas-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}
:where(theme-provider[data-theme=swizy-v3x]) .navbar-dark,
:where(theme-provider[data-theme=swizy-v3x]) .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");
}
:where(theme-provider[data-theme=swizy-v3x]) [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");
}
:where(theme-provider[data-theme=swizy-v3x]) .card, :where(theme-provider[data-theme=swizy-v3x]) .input_eazyce-media, :where(theme-provider[data-theme=swizy-v3x]) .section-swizy {
  --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: var(--bs-border-width);
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: 0.5rem;
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  --bs-card-cap-padding-y: 0.5rem;
  --bs-card-cap-padding-x: 1rem;
  --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
  --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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  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);
}
:where(theme-provider[data-theme=swizy-v3x]) .card > hr, :where(theme-provider[data-theme=swizy-v3x]) .input_eazyce-media > hr, :where(theme-provider[data-theme=swizy-v3x]) .section-swizy > hr {
  margin-right: 0;
  margin-left: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .card > .list-group, :where(theme-provider[data-theme=swizy-v3x]) .input_eazyce-media > .list-group, :where(theme-provider[data-theme=swizy-v3x]) .section-swizy > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
:where(theme-provider[data-theme=swizy-v3x]) .card > .list-group:first-child, :where(theme-provider[data-theme=swizy-v3x]) .input_eazyce-media > .list-group:first-child, :where(theme-provider[data-theme=swizy-v3x]) .section-swizy > .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .card > .list-group:last-child, :where(theme-provider[data-theme=swizy-v3x]) .input_eazyce-media > .list-group:last-child, :where(theme-provider[data-theme=swizy-v3x]) .section-swizy > .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .card > .card-header + .list-group, :where(theme-provider[data-theme=swizy-v3x]) .input_eazyce-media > .card-header + .list-group, :where(theme-provider[data-theme=swizy-v3x]) .section-swizy > .card-header + .list-group,
:where(theme-provider[data-theme=swizy-v3x]) .card > .list-group + .card-footer,
:where(theme-provider[data-theme=swizy-v3x]) .input_eazyce-media > .list-group + .card-footer,
:where(theme-provider[data-theme=swizy-v3x]) .section-swizy > .list-group + .card-footer {
  border-top: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .card-body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .card-title {
  margin-bottom: var(--bs-card-title-spacer-y);
  color: var(--bs-card-title-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .card-subtitle {
  margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
  margin-bottom: 0;
  color: var(--bs-card-subtitle-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .card-text:last-child {
  margin-bottom: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .card-link + .card-link {
  margin-left: var(--bs-card-spacer-x);
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .card-header:first-child {
  border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .card-footer:last-child {
  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
}
:where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .card-header-tabs .nav-link.active {
  background-color: var(--bs-card-bg);
  border-bottom-color: var(--bs-card-bg);
}
:where(theme-provider[data-theme=swizy-v3x]) .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));
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .card-img,
:where(theme-provider[data-theme=swizy-v3x]) .card-img-top,
:where(theme-provider[data-theme=swizy-v3x]) .card-img-bottom {
  width: 100%;
}
:where(theme-provider[data-theme=swizy-v3x]) .card-img,
:where(theme-provider[data-theme=swizy-v3x]) .card-img-top {
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}
:where(theme-provider[data-theme=swizy-v3x]) .card-img,
:where(theme-provider[data-theme=swizy-v3x]) .card-img-bottom {
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}
:where(theme-provider[data-theme=swizy-v3x]) .card-group > .card, :where(theme-provider[data-theme=swizy-v3x]) .card-group > .input_eazyce-media, :where(theme-provider[data-theme=swizy-v3x]) .card-group > .section-swizy {
  margin-bottom: var(--bs-card-group-margin);
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .card-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .card-group > .card, :where(theme-provider[data-theme=swizy-v3x]) .card-group > .input_eazyce-media, :where(theme-provider[data-theme=swizy-v3x]) .card-group > .section-swizy {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
    margin-bottom: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .card-group > .card + .card, :where(theme-provider[data-theme=swizy-v3x]) .card-group > .input_eazyce-media + .card, :where(theme-provider[data-theme=swizy-v3x]) .card-group > .card + .input_eazyce-media, :where(theme-provider[data-theme=swizy-v3x]) .card-group > .input_eazyce-media + .input_eazyce-media, :where(theme-provider[data-theme=swizy-v3x]) .card-group > .section-swizy + .card, :where(theme-provider[data-theme=swizy-v3x]) .card-group > .section-swizy + .input_eazyce-media, :where(theme-provider[data-theme=swizy-v3x]) .card-group > .card + .section-swizy, :where(theme-provider[data-theme=swizy-v3x]) .card-group > .input_eazyce-media + .section-swizy, :where(theme-provider[data-theme=swizy-v3x]) .card-group > .section-swizy + .section-swizy {
    margin-left: 0;
    border-left: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .card-group > .card:not(:last-child), :where(theme-provider[data-theme=swizy-v3x]) .card-group > .input_eazyce-media:not(:last-child), :where(theme-provider[data-theme=swizy-v3x]) .card-group > .section-swizy:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .card-group > .card:not(:last-child) > .card-img-top, :where(theme-provider[data-theme=swizy-v3x]) .card-group > .input_eazyce-media:not(:last-child) > .card-img-top, :where(theme-provider[data-theme=swizy-v3x]) .card-group > .section-swizy:not(:last-child) > .card-img-top,
  :where(theme-provider[data-theme=swizy-v3x]) .card-group > .card:not(:last-child) > .card-header,
  :where(theme-provider[data-theme=swizy-v3x]) .card-group > .input_eazyce-media:not(:last-child) > .card-header,
  :where(theme-provider[data-theme=swizy-v3x]) .card-group > .section-swizy:not(:last-child) > .card-header {
    border-top-right-radius: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .card-group > .card:not(:last-child) > .card-img-bottom, :where(theme-provider[data-theme=swizy-v3x]) .card-group > .input_eazyce-media:not(:last-child) > .card-img-bottom, :where(theme-provider[data-theme=swizy-v3x]) .card-group > .section-swizy:not(:last-child) > .card-img-bottom,
  :where(theme-provider[data-theme=swizy-v3x]) .card-group > .card:not(:last-child) > .card-footer,
  :where(theme-provider[data-theme=swizy-v3x]) .card-group > .input_eazyce-media:not(:last-child) > .card-footer,
  :where(theme-provider[data-theme=swizy-v3x]) .card-group > .section-swizy:not(:last-child) > .card-footer {
    border-bottom-right-radius: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .card-group > .card:not(:first-child), :where(theme-provider[data-theme=swizy-v3x]) .card-group > .input_eazyce-media:not(:first-child), :where(theme-provider[data-theme=swizy-v3x]) .card-group > .section-swizy:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .card-group > .card:not(:first-child) > .card-img-top, :where(theme-provider[data-theme=swizy-v3x]) .card-group > .input_eazyce-media:not(:first-child) > .card-img-top, :where(theme-provider[data-theme=swizy-v3x]) .card-group > .section-swizy:not(:first-child) > .card-img-top,
  :where(theme-provider[data-theme=swizy-v3x]) .card-group > .card:not(:first-child) > .card-header,
  :where(theme-provider[data-theme=swizy-v3x]) .card-group > .input_eazyce-media:not(:first-child) > .card-header,
  :where(theme-provider[data-theme=swizy-v3x]) .card-group > .section-swizy:not(:first-child) > .card-header {
    border-top-left-radius: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .card-group > .card:not(:first-child) > .card-img-bottom, :where(theme-provider[data-theme=swizy-v3x]) .card-group > .input_eazyce-media:not(:first-child) > .card-img-bottom, :where(theme-provider[data-theme=swizy-v3x]) .card-group > .section-swizy:not(:first-child) > .card-img-bottom,
  :where(theme-provider[data-theme=swizy-v3x]) .card-group > .card:not(:first-child) > .card-footer,
  :where(theme-provider[data-theme=swizy-v3x]) .card-group > .input_eazyce-media:not(:first-child) > .card-footer,
  :where(theme-provider[data-theme=swizy-v3x]) .card-group > .section-swizy:not(:first-child) > .card-footer {
    border-bottom-left-radius: 0;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .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='rgb%285.2, 44, 101.2%29' 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(13, 110, 253, 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);
}
:where(theme-provider[data-theme=swizy-v3x]) .accordion-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  -webkit-transition: var(--bs-accordion-transition);
  transition: var(--bs-accordion-transition);
}
@media (prefers-reduced-motion: reduce) {
  :where(theme-provider[data-theme=swizy-v3x]) .accordion-button {
    -webkit-transition: none;
    transition: none;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--bs-accordion-active-bg);
  -webkit-box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon);
  -webkit-transform: var(--bs-accordion-btn-icon-transform);
  transform: var(--bs-accordion-btn-icon-transform);
}
:where(theme-provider[data-theme=swizy-v3x]) .accordion-button::after {
  -ms-flex-negative: 0;
  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);
  -webkit-transition: var(--bs-accordion-btn-icon-transition);
  transition: var(--bs-accordion-btn-icon-transition);
}
@media (prefers-reduced-motion: reduce) {
  :where(theme-provider[data-theme=swizy-v3x]) .accordion-button::after {
    -webkit-transition: none;
    transition: none;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .accordion-button:hover {
  z-index: 2;
}
:where(theme-provider[data-theme=swizy-v3x]) .accordion-button:focus {
  z-index: 3;
  outline: 0;
  -webkit-box-shadow: var(--bs-accordion-btn-focus-box-shadow);
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}
:where(theme-provider[data-theme=swizy-v3x]) .accordion-header {
  margin-bottom: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .accordion-item:first-of-type {
  border-top-left-radius: var(--bs-accordion-border-radius);
  border-top-right-radius: var(--bs-accordion-border-radius);
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .accordion-item:not(:first-of-type) {
  border-top: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .accordion-item:last-of-type {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}
:where(theme-provider[data-theme=swizy-v3x]) .accordion-flush > .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .accordion-flush > .accordion-item:first-child {
  border-top: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .accordion-flush > .accordion-item:last-child {
  border-bottom: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .accordion-flush > .accordion-item > .accordion-collapse,
:where(theme-provider[data-theme=swizy-v3x]) .accordion-flush > .accordion-item > .accordion-header .accordion-button,
:where(theme-provider[data-theme=swizy-v3x]) .accordion-flush > .accordion-item > .accordion-header .accordion-button.collapsed {
  border-radius: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) [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='rgb%28109.8, 168, 253.8%29'%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='rgb%28109.8, 168, 253.8%29'%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");
}
:where(theme-provider[data-theme=swizy-v3x]) .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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  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);
}
:where(theme-provider[data-theme=swizy-v3x]) .breadcrumb-item + .breadcrumb-item {
  padding-left: var(--bs-breadcrumb-item-padding-x);
}
:where(theme-provider[data-theme=swizy-v3x]) .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, "/") */;
}
:where(theme-provider[data-theme=swizy-v3x]) .breadcrumb-item.active {
  color: var(--bs-breadcrumb-item-active-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .pagination {
  --bs-pagination-padding-x: 0.75rem;
  --bs-pagination-padding-y: 0.375rem;
  --bs-pagination-font-size: 1rem;
  --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(13, 110, 253, 0.25);
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: #0d6efd;
  --bs-pagination-active-border-color: #0d6efd;
  --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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
  text-decoration: none;
  background-color: var(--bs-pagination-bg);
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  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;
  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, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  :where(theme-provider[data-theme=swizy-v3x]) .page-link {
    -webkit-transition: none;
    transition: none;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .page-link:hover {
  z-index: 2;
  color: var(--bs-pagination-hover-color);
  background-color: var(--bs-pagination-hover-bg);
  border-color: var(--bs-pagination-hover-border-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .page-link:focus {
  z-index: 3;
  color: var(--bs-pagination-focus-color);
  background-color: var(--bs-pagination-focus-bg);
  outline: 0;
  -webkit-box-shadow: var(--bs-pagination-focus-box-shadow);
  box-shadow: var(--bs-pagination-focus-box-shadow);
}
:where(theme-provider[data-theme=swizy-v3x]) .page-link.active, .active > :where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .page-link.disabled, .disabled > :where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .page-item:not(:first-child) .page-link {
  margin-left: calc(-1 * var(--bs-border-width));
}
:where(theme-provider[data-theme=swizy-v3x]) .page-item:first-child .page-link {
  border-top-left-radius: var(--bs-pagination-border-radius);
  border-bottom-left-radius: var(--bs-pagination-border-radius);
}
:where(theme-provider[data-theme=swizy-v3x]) .page-item:last-child .page-link {
  border-top-right-radius: var(--bs-pagination-border-radius);
  border-bottom-right-radius: var(--bs-pagination-border-radius);
}
:where(theme-provider[data-theme=swizy-v3x]) .pagination-lg {
  --bs-pagination-padding-x: 1.5rem;
  --bs-pagination-padding-y: 0.75rem;
  --bs-pagination-font-size: 1.25rem;
  --bs-pagination-border-radius: var(--bs-border-radius-lg);
}
:where(theme-provider[data-theme=swizy-v3x]) .pagination-sm {
  --bs-pagination-padding-x: 0.5rem;
  --bs-pagination-padding-y: 0.25rem;
  --bs-pagination-font-size: 0.875rem;
  --bs-pagination-border-radius: var(--bs-border-radius-sm);
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .badge:empty {
  display: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn .badge, :where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-close .badge, :where(theme-provider[data-theme=swizy-v3x]) .popover__btn-close .badge, :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .nav-link .badge {
  position: relative;
  top: -1px;
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-heading {
  color: inherit;
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-link {
  font-weight: 700;
  color: var(--bs-alert-link-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-dismissible {
  padding-right: 3rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-remise {
  --bs-alert-color: var(--bs-remise-text-emphasis);
  --bs-alert-bg: var(--bs-remise-bg-subtle);
  --bs-alert-border-color: var(--bs-remise-border-subtle);
  --bs-alert-link-color: var(--bs-remise-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-primary-tone {
  --bs-alert-color: var(--bs-primary-tone-text-emphasis);
  --bs-alert-bg: var(--bs-primary-tone-bg-subtle);
  --bs-alert-border-color: var(--bs-primary-tone-border-subtle);
  --bs-alert-link-color: var(--bs-primary-tone-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-secondary-tone {
  --bs-alert-color: var(--bs-secondary-tone-text-emphasis);
  --bs-alert-bg: var(--bs-secondary-tone-bg-subtle);
  --bs-alert-border-color: var(--bs-secondary-tone-border-subtle);
  --bs-alert-link-color: var(--bs-secondary-tone-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-info-tone {
  --bs-alert-color: var(--bs-info-tone-text-emphasis);
  --bs-alert-bg: var(--bs-info-tone-bg-subtle);
  --bs-alert-border-color: var(--bs-info-tone-border-subtle);
  --bs-alert-link-color: var(--bs-info-tone-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-success-tone {
  --bs-alert-color: var(--bs-success-tone-text-emphasis);
  --bs-alert-bg: var(--bs-success-tone-bg-subtle);
  --bs-alert-border-color: var(--bs-success-tone-border-subtle);
  --bs-alert-link-color: var(--bs-success-tone-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-warning-tone {
  --bs-alert-color: var(--bs-warning-tone-text-emphasis);
  --bs-alert-bg: var(--bs-warning-tone-bg-subtle);
  --bs-alert-border-color: var(--bs-warning-tone-border-subtle);
  --bs-alert-link-color: var(--bs-warning-tone-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-danger-tone {
  --bs-alert-color: var(--bs-danger-tone-text-emphasis);
  --bs-alert-bg: var(--bs-danger-tone-bg-subtle);
  --bs-alert-border-color: var(--bs-danger-tone-border-subtle);
  --bs-alert-link-color: var(--bs-danger-tone-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-neutral {
  --bs-alert-color: var(--bs-neutral-text-emphasis);
  --bs-alert-bg: var(--bs-neutral-bg-subtle);
  --bs-alert-border-color: var(--bs-neutral-border-subtle);
  --bs-alert-link-color: var(--bs-neutral-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-swizy-primary {
  --bs-alert-color: var(--bs-swizy-primary-text-emphasis);
  --bs-alert-bg: var(--bs-swizy-primary-bg-subtle);
  --bs-alert-border-color: var(--bs-swizy-primary-border-subtle);
  --bs-alert-link-color: var(--bs-swizy-primary-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-swizy-secondary {
  --bs-alert-color: var(--bs-swizy-secondary-text-emphasis);
  --bs-alert-bg: var(--bs-swizy-secondary-bg-subtle);
  --bs-alert-border-color: var(--bs-swizy-secondary-border-subtle);
  --bs-alert-link-color: var(--bs-swizy-secondary-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-swizy-primary-tone {
  --bs-alert-color: var(--bs-swizy-primary-tone-text-emphasis);
  --bs-alert-bg: var(--bs-swizy-primary-tone-bg-subtle);
  --bs-alert-border-color: var(--bs-swizy-primary-tone-border-subtle);
  --bs-alert-link-color: var(--bs-swizy-primary-tone-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-swizy-secondary-tone {
  --bs-alert-color: var(--bs-swizy-secondary-tone-text-emphasis);
  --bs-alert-bg: var(--bs-swizy-secondary-tone-bg-subtle);
  --bs-alert-border-color: var(--bs-swizy-secondary-tone-border-subtle);
  --bs-alert-link-color: var(--bs-swizy-secondary-tone-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-primary-7 {
  --bs-alert-color: var(--bs-primary-7-text-emphasis);
  --bs-alert-bg: var(--bs-primary-7-bg-subtle);
  --bs-alert-border-color: var(--bs-primary-7-border-subtle);
  --bs-alert-link-color: var(--bs-primary-7-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-primary-6 {
  --bs-alert-color: var(--bs-primary-6-text-emphasis);
  --bs-alert-bg: var(--bs-primary-6-bg-subtle);
  --bs-alert-border-color: var(--bs-primary-6-border-subtle);
  --bs-alert-link-color: var(--bs-primary-6-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-primary-5 {
  --bs-alert-color: var(--bs-primary-5-text-emphasis);
  --bs-alert-bg: var(--bs-primary-5-bg-subtle);
  --bs-alert-border-color: var(--bs-primary-5-border-subtle);
  --bs-alert-link-color: var(--bs-primary-5-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-primary-4 {
  --bs-alert-color: var(--bs-primary-4-text-emphasis);
  --bs-alert-bg: var(--bs-primary-4-bg-subtle);
  --bs-alert-border-color: var(--bs-primary-4-border-subtle);
  --bs-alert-link-color: var(--bs-primary-4-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-primary-3 {
  --bs-alert-color: var(--bs-primary-3-text-emphasis);
  --bs-alert-bg: var(--bs-primary-3-bg-subtle);
  --bs-alert-border-color: var(--bs-primary-3-border-subtle);
  --bs-alert-link-color: var(--bs-primary-3-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-primary-2 {
  --bs-alert-color: var(--bs-primary-2-text-emphasis);
  --bs-alert-bg: var(--bs-primary-2-bg-subtle);
  --bs-alert-border-color: var(--bs-primary-2-border-subtle);
  --bs-alert-link-color: var(--bs-primary-2-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-primary-1 {
  --bs-alert-color: var(--bs-primary-1-text-emphasis);
  --bs-alert-bg: var(--bs-primary-1-bg-subtle);
  --bs-alert-border-color: var(--bs-primary-1-border-subtle);
  --bs-alert-link-color: var(--bs-primary-1-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-secondary-7 {
  --bs-alert-color: var(--bs-secondary-7-text-emphasis);
  --bs-alert-bg: var(--bs-secondary-7-bg-subtle);
  --bs-alert-border-color: var(--bs-secondary-7-border-subtle);
  --bs-alert-link-color: var(--bs-secondary-7-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-secondary-6 {
  --bs-alert-color: var(--bs-secondary-6-text-emphasis);
  --bs-alert-bg: var(--bs-secondary-6-bg-subtle);
  --bs-alert-border-color: var(--bs-secondary-6-border-subtle);
  --bs-alert-link-color: var(--bs-secondary-6-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-secondary-5 {
  --bs-alert-color: var(--bs-secondary-5-text-emphasis);
  --bs-alert-bg: var(--bs-secondary-5-bg-subtle);
  --bs-alert-border-color: var(--bs-secondary-5-border-subtle);
  --bs-alert-link-color: var(--bs-secondary-5-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-secondary-4 {
  --bs-alert-color: var(--bs-secondary-4-text-emphasis);
  --bs-alert-bg: var(--bs-secondary-4-bg-subtle);
  --bs-alert-border-color: var(--bs-secondary-4-border-subtle);
  --bs-alert-link-color: var(--bs-secondary-4-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-secondary-3 {
  --bs-alert-color: var(--bs-secondary-3-text-emphasis);
  --bs-alert-bg: var(--bs-secondary-3-bg-subtle);
  --bs-alert-border-color: var(--bs-secondary-3-border-subtle);
  --bs-alert-link-color: var(--bs-secondary-3-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-secondary-2 {
  --bs-alert-color: var(--bs-secondary-2-text-emphasis);
  --bs-alert-bg: var(--bs-secondary-2-bg-subtle);
  --bs-alert-border-color: var(--bs-secondary-2-border-subtle);
  --bs-alert-link-color: var(--bs-secondary-2-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-secondary-1 {
  --bs-alert-color: var(--bs-secondary-1-text-emphasis);
  --bs-alert-bg: var(--bs-secondary-1-bg-subtle);
  --bs-alert-border-color: var(--bs-secondary-1-border-subtle);
  --bs-alert-link-color: var(--bs-secondary-1-text-emphasis);
}
@-webkit-keyframes progress-bar-stripes {
  0% {
    background-position-x: var(--bs-progress-height);
  }
}
@keyframes progress-bar-stripes {
  0% {
    background-position-x: var(--bs-progress-height);
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .progress,
:where(theme-provider[data-theme=swizy-v3x]) .progress-stacked {
  --bs-progress-height: 1rem;
  --bs-progress-font-size: 0.75rem;
  --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: #0d6efd;
  --bs-progress-bar-transition: width 0.6s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  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);
}
:where(theme-provider[data-theme=swizy-v3x]) .progress-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  color: var(--bs-progress-bar-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-progress-bar-bg);
  -webkit-transition: var(--bs-progress-bar-transition);
  transition: var(--bs-progress-bar-transition);
}
@media (prefers-reduced-motion: reduce) {
  :where(theme-provider[data-theme=swizy-v3x]) .progress-bar {
    -webkit-transition: none;
    transition: none;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .progress-stacked > .progress {
  overflow: visible;
}
:where(theme-provider[data-theme=swizy-v3x]) .progress-stacked > .progress > .progress-bar {
  width: 100%;
}
:where(theme-provider[data-theme=swizy-v3x]) .progress-bar-animated {
  -webkit-animation: 1s linear infinite progress-bar-stripes;
  animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
  :where(theme-provider[data-theme=swizy-v3x]) .progress-bar-animated {
    -webkit-animation: none;
    animation: none;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group {
  --bs-list-group-color: var(--bs-body-color);
  --bs-list-group-bg: transparent;
  --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: 1rem;
  --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: rgba(0, 0, 0, 0.04);
  --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: #212121;
  --bs-list-group-active-bg: rgb(239.7, 248.814893617, 255);
  --bs-list-group-active-border-color: rgba(37, 38, 40, 0.16);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: var(--bs-list-group-border-radius);
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-numbered > .list-group-item::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
  text-decoration: none;
  background-color: var(--bs-list-group-bg);
  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item.disabled, :where(theme-provider[data-theme=swizy-v3x]) .list-group-item:disabled {
  color: var(--bs-list-group-disabled-color);
  pointer-events: none;
  background-color: var(--bs-list-group-disabled-bg);
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item + .list-group-item {
  border-top-width: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item-action {
  width: 100%;
  color: var(--bs-list-group-action-color);
  text-align: inherit;
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item-action:not(.active):hover, :where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item-action:not(.active):active {
  color: var(--bs-list-group-action-active-color);
  background-color: var(--bs-list-group-action-active-bg);
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-horizontal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
:where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: var(--bs-list-group-border-width);
  border-left-width: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .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: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .list-group-horizontal-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .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;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .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;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .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: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .list-group-horizontal-md {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .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;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .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;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .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: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .list-group-horizontal-lg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .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;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .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;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .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: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .list-group-horizontal-xl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .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;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .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;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .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);
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-flush {
  border-radius: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-flush > .list-group-item {
  border-width: 0 0 var(--bs-list-group-border-width);
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item-remise {
  --bs-list-group-color: var(--bs-remise-text-emphasis);
  --bs-list-group-bg: var(--bs-remise-bg-subtle);
  --bs-list-group-border-color: var(--bs-remise-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-remise-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-remise-border-subtle);
  --bs-list-group-active-color: var(--bs-remise-bg-subtle);
  --bs-list-group-active-bg: var(--bs-remise-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-remise-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item-primary-tone {
  --bs-list-group-color: var(--bs-primary-tone-text-emphasis);
  --bs-list-group-bg: var(--bs-primary-tone-bg-subtle);
  --bs-list-group-border-color: var(--bs-primary-tone-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-primary-tone-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-primary-tone-border-subtle);
  --bs-list-group-active-color: var(--bs-primary-tone-bg-subtle);
  --bs-list-group-active-bg: var(--bs-primary-tone-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-primary-tone-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item-secondary-tone {
  --bs-list-group-color: var(--bs-secondary-tone-text-emphasis);
  --bs-list-group-bg: var(--bs-secondary-tone-bg-subtle);
  --bs-list-group-border-color: var(--bs-secondary-tone-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-secondary-tone-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-secondary-tone-border-subtle);
  --bs-list-group-active-color: var(--bs-secondary-tone-bg-subtle);
  --bs-list-group-active-bg: var(--bs-secondary-tone-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-secondary-tone-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item-info-tone {
  --bs-list-group-color: var(--bs-info-tone-text-emphasis);
  --bs-list-group-bg: var(--bs-info-tone-bg-subtle);
  --bs-list-group-border-color: var(--bs-info-tone-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-info-tone-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-info-tone-border-subtle);
  --bs-list-group-active-color: var(--bs-info-tone-bg-subtle);
  --bs-list-group-active-bg: var(--bs-info-tone-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-info-tone-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item-success-tone {
  --bs-list-group-color: var(--bs-success-tone-text-emphasis);
  --bs-list-group-bg: var(--bs-success-tone-bg-subtle);
  --bs-list-group-border-color: var(--bs-success-tone-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-success-tone-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-success-tone-border-subtle);
  --bs-list-group-active-color: var(--bs-success-tone-bg-subtle);
  --bs-list-group-active-bg: var(--bs-success-tone-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-success-tone-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item-warning-tone {
  --bs-list-group-color: var(--bs-warning-tone-text-emphasis);
  --bs-list-group-bg: var(--bs-warning-tone-bg-subtle);
  --bs-list-group-border-color: var(--bs-warning-tone-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-warning-tone-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-warning-tone-border-subtle);
  --bs-list-group-active-color: var(--bs-warning-tone-bg-subtle);
  --bs-list-group-active-bg: var(--bs-warning-tone-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-warning-tone-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item-danger-tone {
  --bs-list-group-color: var(--bs-danger-tone-text-emphasis);
  --bs-list-group-bg: var(--bs-danger-tone-bg-subtle);
  --bs-list-group-border-color: var(--bs-danger-tone-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-danger-tone-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-danger-tone-border-subtle);
  --bs-list-group-active-color: var(--bs-danger-tone-bg-subtle);
  --bs-list-group-active-bg: var(--bs-danger-tone-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-danger-tone-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item-neutral {
  --bs-list-group-color: var(--bs-neutral-text-emphasis);
  --bs-list-group-bg: var(--bs-neutral-bg-subtle);
  --bs-list-group-border-color: var(--bs-neutral-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-neutral-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-neutral-border-subtle);
  --bs-list-group-active-color: var(--bs-neutral-bg-subtle);
  --bs-list-group-active-bg: var(--bs-neutral-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-neutral-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item-swizy-primary {
  --bs-list-group-color: var(--bs-swizy-primary-text-emphasis);
  --bs-list-group-bg: var(--bs-swizy-primary-bg-subtle);
  --bs-list-group-border-color: var(--bs-swizy-primary-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-swizy-primary-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-swizy-primary-border-subtle);
  --bs-list-group-active-color: var(--bs-swizy-primary-bg-subtle);
  --bs-list-group-active-bg: var(--bs-swizy-primary-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-swizy-primary-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item-swizy-secondary {
  --bs-list-group-color: var(--bs-swizy-secondary-text-emphasis);
  --bs-list-group-bg: var(--bs-swizy-secondary-bg-subtle);
  --bs-list-group-border-color: var(--bs-swizy-secondary-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-swizy-secondary-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-swizy-secondary-border-subtle);
  --bs-list-group-active-color: var(--bs-swizy-secondary-bg-subtle);
  --bs-list-group-active-bg: var(--bs-swizy-secondary-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-swizy-secondary-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item-swizy-primary-tone {
  --bs-list-group-color: var(--bs-swizy-primary-tone-text-emphasis);
  --bs-list-group-bg: var(--bs-swizy-primary-tone-bg-subtle);
  --bs-list-group-border-color: var(--bs-swizy-primary-tone-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-swizy-primary-tone-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-swizy-primary-tone-border-subtle);
  --bs-list-group-active-color: var(--bs-swizy-primary-tone-bg-subtle);
  --bs-list-group-active-bg: var(--bs-swizy-primary-tone-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-swizy-primary-tone-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item-swizy-secondary-tone {
  --bs-list-group-color: var(--bs-swizy-secondary-tone-text-emphasis);
  --bs-list-group-bg: var(--bs-swizy-secondary-tone-bg-subtle);
  --bs-list-group-border-color: var(--bs-swizy-secondary-tone-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-swizy-secondary-tone-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-swizy-secondary-tone-border-subtle);
  --bs-list-group-active-color: var(--bs-swizy-secondary-tone-bg-subtle);
  --bs-list-group-active-bg: var(--bs-swizy-secondary-tone-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-swizy-secondary-tone-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item-primary-7 {
  --bs-list-group-color: var(--bs-primary-7-text-emphasis);
  --bs-list-group-bg: var(--bs-primary-7-bg-subtle);
  --bs-list-group-border-color: var(--bs-primary-7-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-primary-7-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-primary-7-border-subtle);
  --bs-list-group-active-color: var(--bs-primary-7-bg-subtle);
  --bs-list-group-active-bg: var(--bs-primary-7-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-primary-7-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item-primary-6 {
  --bs-list-group-color: var(--bs-primary-6-text-emphasis);
  --bs-list-group-bg: var(--bs-primary-6-bg-subtle);
  --bs-list-group-border-color: var(--bs-primary-6-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-primary-6-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-primary-6-border-subtle);
  --bs-list-group-active-color: var(--bs-primary-6-bg-subtle);
  --bs-list-group-active-bg: var(--bs-primary-6-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-primary-6-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item-primary-5 {
  --bs-list-group-color: var(--bs-primary-5-text-emphasis);
  --bs-list-group-bg: var(--bs-primary-5-bg-subtle);
  --bs-list-group-border-color: var(--bs-primary-5-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-primary-5-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-primary-5-border-subtle);
  --bs-list-group-active-color: var(--bs-primary-5-bg-subtle);
  --bs-list-group-active-bg: var(--bs-primary-5-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-primary-5-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item-primary-4 {
  --bs-list-group-color: var(--bs-primary-4-text-emphasis);
  --bs-list-group-bg: var(--bs-primary-4-bg-subtle);
  --bs-list-group-border-color: var(--bs-primary-4-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-primary-4-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-primary-4-border-subtle);
  --bs-list-group-active-color: var(--bs-primary-4-bg-subtle);
  --bs-list-group-active-bg: var(--bs-primary-4-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-primary-4-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item-primary-3 {
  --bs-list-group-color: var(--bs-primary-3-text-emphasis);
  --bs-list-group-bg: var(--bs-primary-3-bg-subtle);
  --bs-list-group-border-color: var(--bs-primary-3-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-primary-3-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-primary-3-border-subtle);
  --bs-list-group-active-color: var(--bs-primary-3-bg-subtle);
  --bs-list-group-active-bg: var(--bs-primary-3-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-primary-3-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item-primary-2 {
  --bs-list-group-color: var(--bs-primary-2-text-emphasis);
  --bs-list-group-bg: var(--bs-primary-2-bg-subtle);
  --bs-list-group-border-color: var(--bs-primary-2-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-primary-2-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-primary-2-border-subtle);
  --bs-list-group-active-color: var(--bs-primary-2-bg-subtle);
  --bs-list-group-active-bg: var(--bs-primary-2-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-primary-2-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item-primary-1 {
  --bs-list-group-color: var(--bs-primary-1-text-emphasis);
  --bs-list-group-bg: var(--bs-primary-1-bg-subtle);
  --bs-list-group-border-color: var(--bs-primary-1-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-primary-1-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-primary-1-border-subtle);
  --bs-list-group-active-color: var(--bs-primary-1-bg-subtle);
  --bs-list-group-active-bg: var(--bs-primary-1-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-primary-1-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item-secondary-7 {
  --bs-list-group-color: var(--bs-secondary-7-text-emphasis);
  --bs-list-group-bg: var(--bs-secondary-7-bg-subtle);
  --bs-list-group-border-color: var(--bs-secondary-7-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-secondary-7-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-secondary-7-border-subtle);
  --bs-list-group-active-color: var(--bs-secondary-7-bg-subtle);
  --bs-list-group-active-bg: var(--bs-secondary-7-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-secondary-7-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item-secondary-6 {
  --bs-list-group-color: var(--bs-secondary-6-text-emphasis);
  --bs-list-group-bg: var(--bs-secondary-6-bg-subtle);
  --bs-list-group-border-color: var(--bs-secondary-6-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-secondary-6-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-secondary-6-border-subtle);
  --bs-list-group-active-color: var(--bs-secondary-6-bg-subtle);
  --bs-list-group-active-bg: var(--bs-secondary-6-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-secondary-6-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item-secondary-5 {
  --bs-list-group-color: var(--bs-secondary-5-text-emphasis);
  --bs-list-group-bg: var(--bs-secondary-5-bg-subtle);
  --bs-list-group-border-color: var(--bs-secondary-5-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-secondary-5-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-secondary-5-border-subtle);
  --bs-list-group-active-color: var(--bs-secondary-5-bg-subtle);
  --bs-list-group-active-bg: var(--bs-secondary-5-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-secondary-5-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item-secondary-4 {
  --bs-list-group-color: var(--bs-secondary-4-text-emphasis);
  --bs-list-group-bg: var(--bs-secondary-4-bg-subtle);
  --bs-list-group-border-color: var(--bs-secondary-4-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-secondary-4-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-secondary-4-border-subtle);
  --bs-list-group-active-color: var(--bs-secondary-4-bg-subtle);
  --bs-list-group-active-bg: var(--bs-secondary-4-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-secondary-4-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item-secondary-3 {
  --bs-list-group-color: var(--bs-secondary-3-text-emphasis);
  --bs-list-group-bg: var(--bs-secondary-3-bg-subtle);
  --bs-list-group-border-color: var(--bs-secondary-3-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-secondary-3-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-secondary-3-border-subtle);
  --bs-list-group-active-color: var(--bs-secondary-3-bg-subtle);
  --bs-list-group-active-bg: var(--bs-secondary-3-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-secondary-3-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item-secondary-2 {
  --bs-list-group-color: var(--bs-secondary-2-text-emphasis);
  --bs-list-group-bg: var(--bs-secondary-2-bg-subtle);
  --bs-list-group-border-color: var(--bs-secondary-2-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-secondary-2-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-secondary-2-border-subtle);
  --bs-list-group-active-color: var(--bs-secondary-2-bg-subtle);
  --bs-list-group-active-bg: var(--bs-secondary-2-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-secondary-2-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item-secondary-1 {
  --bs-list-group-color: var(--bs-secondary-1-text-emphasis);
  --bs-list-group-bg: var(--bs-secondary-1-bg-subtle);
  --bs-list-group-border-color: var(--bs-secondary-1-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-secondary-1-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-secondary-1-border-subtle);
  --bs-list-group-active-color: var(--bs-secondary-1-bg-subtle);
  --bs-list-group-active-bg: var(--bs-secondary-1-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-secondary-1-text-emphasis);
}
:where(theme-provider[data-theme=swizy-v3x]) .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(13, 110, 253, 0.25);
  --bs-btn-close-focus-opacity: 1;
  --bs-btn-close-disabled-opacity: 0.25;
  -webkit-box-sizing: content-box;
  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;
  -webkit-filter: var(--bs-btn-close-filter);
  filter: var(--bs-btn-close-filter);
  border: 0;
  border-radius: 0.375rem;
  opacity: var(--bs-btn-close-opacity);
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-close:hover {
  color: var(--bs-btn-close-color);
  text-decoration: none;
  opacity: var(--bs-btn-close-hover-opacity);
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-close:focus {
  outline: 0;
  -webkit-box-shadow: var(--bs-btn-close-focus-shadow);
  box-shadow: var(--bs-btn-close-focus-shadow);
  opacity: var(--bs-btn-close-focus-opacity);
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-close:disabled, :where(theme-provider[data-theme=swizy-v3x]) .btn-close.disabled {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: var(--bs-btn-close-disabled-opacity);
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-close-white {
  --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
}
:where(theme-provider[data-theme=swizy-v3x]) :root,
:where(theme-provider[data-theme=swizy-v3x]) [data-bs-theme=light] {
  --bs-btn-close-filter: ;
}
:where(theme-provider[data-theme=swizy-v3x]) [data-bs-theme=dark] {
  --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
  -webkit-box-shadow: var(--bs-toast-box-shadow);
  box-shadow: var(--bs-toast-box-shadow);
  border-radius: var(--bs-toast-border-radius);
}
:where(theme-provider[data-theme=swizy-v3x]) .toast.showing {
  opacity: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .toast:not(.show) {
  display: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .toast-container {
  --bs-toast-zindex: 1090;
  position: absolute;
  z-index: var(--bs-toast-zindex);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  pointer-events: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .toast-container > :not(:last-child) {
  margin-bottom: var(--bs-toast-spacing);
}
:where(theme-provider[data-theme=swizy-v3x]) .toast-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  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));
}
:where(theme-provider[data-theme=swizy-v3x]) .toast-header .btn-close {
  margin-right: calc(-0.5 * var(--bs-toast-padding-x));
  margin-left: var(--bs-toast-padding-x);
}
:where(theme-provider[data-theme=swizy-v3x]) .toast-body {
  padding: var(--bs-toast-padding-x);
  word-wrap: break-word;
}
:where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}
.modal.fade :where(theme-provider[data-theme=swizy-v3x]) .modal-dialog {
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade :where(theme-provider[data-theme=swizy-v3x]) .modal-dialog {
    -webkit-transition: none;
    transition: none;
  }
}
.modal.show :where(theme-provider[data-theme=swizy-v3x]) .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.modal.modal-static :where(theme-provider[data-theme=swizy-v3x]) .modal-dialog {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}
:where(theme-provider[data-theme=swizy-v3x]) .modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2);
}
:where(theme-provider[data-theme=swizy-v3x]) .modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
:where(theme-provider[data-theme=swizy-v3x]) .modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}
:where(theme-provider[data-theme=swizy-v3x]) .modal-dialog-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}
:where(theme-provider[data-theme=swizy-v3x]) .modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  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;
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .modal-backdrop.fade {
  opacity: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}
:where(theme-provider[data-theme=swizy-v3x]) .modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  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);
}
:where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height);
}
:where(theme-provider[data-theme=swizy-v3x]) .modal-body {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
}
:where(theme-provider[data-theme=swizy-v3x]) .modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  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);
}
:where(theme-provider[data-theme=swizy-v3x]) .modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: var(--bs-box-shadow);
  }
  :where(theme-provider[data-theme=swizy-v3x]) .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .modal-sm {
    --bs-modal-width: 300px;
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .modal-lg,
  :where(theme-provider[data-theme=swizy-v3x]) .modal-xl {
    --bs-modal-width: 800px;
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .modal-xl {
    --bs-modal-width: 1140px;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .modal-fullscreen .modal-header,
:where(theme-provider[data-theme=swizy-v3x]) .modal-fullscreen .modal-footer {
  border-radius: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .modal-fullscreen .modal-body {
  overflow-y: auto;
}
@media (max-width: 599.98px) {
  :where(theme-provider[data-theme=swizy-v3x]) .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .modal-fullscreen-sm-down .modal-header,
  :where(theme-provider[data-theme=swizy-v3x]) .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 899.98px) {
  :where(theme-provider[data-theme=swizy-v3x]) .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .modal-fullscreen-md-down .modal-header,
  :where(theme-provider[data-theme=swizy-v3x]) .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1199.98px) {
  :where(theme-provider[data-theme=swizy-v3x]) .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .modal-fullscreen-lg-down .modal-header,
  :where(theme-provider[data-theme=swizy-v3x]) .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1535.98px) {
  :where(theme-provider[data-theme=swizy-v3x]) .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .modal-fullscreen-xl-down .modal-header,
  :where(theme-provider[data-theme=swizy-v3x]) .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .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.875rem;
  --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;
}
:where(theme-provider[data-theme=swizy-v3x]) .tooltip.show {
  opacity: var(--bs-tooltip-opacity);
}
:where(theme-provider[data-theme=swizy-v3x]) .tooltip .tooltip-arrow {
  display: block;
  width: var(--bs-tooltip-arrow-width);
  height: var(--bs-tooltip-arrow-height);
}
:where(theme-provider[data-theme=swizy-v3x]) .tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}
:where(theme-provider[data-theme=swizy-v3x]) .bs-tooltip-top .tooltip-arrow, :where(theme-provider[data-theme=swizy-v3x]) .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  bottom: calc(-1 * var(--bs-tooltip-arrow-height));
}
:where(theme-provider[data-theme=swizy-v3x]) .bs-tooltip-top .tooltip-arrow::before, :where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /* rtl:begin:ignore */
}
:where(theme-provider[data-theme=swizy-v3x]) .bs-tooltip-end .tooltip-arrow, :where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .bs-tooltip-end .tooltip-arrow::before, :where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /* rtl:end:ignore */
}
:where(theme-provider[data-theme=swizy-v3x]) .bs-tooltip-bottom .tooltip-arrow, :where(theme-provider[data-theme=swizy-v3x]) .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  top: calc(-1 * var(--bs-tooltip-arrow-height));
}
:where(theme-provider[data-theme=swizy-v3x]) .bs-tooltip-bottom .tooltip-arrow::before, :where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /* rtl:begin:ignore */
}
:where(theme-provider[data-theme=swizy-v3x]) .bs-tooltip-start .tooltip-arrow, :where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .bs-tooltip-start .tooltip-arrow::before, :where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /* rtl:end:ignore */
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .popover {
  --bs-popover-zindex: 1070;
  --bs-popover-max-width: 276px;
  --bs-popover-font-size: 0.875rem;
  --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: 1rem;
  --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);
}
:where(theme-provider[data-theme=swizy-v3x]) .popover .popover-arrow {
  display: block;
  width: var(--bs-popover-arrow-width);
  height: var(--bs-popover-arrow-height);
}
:where(theme-provider[data-theme=swizy-v3x]) .popover .popover-arrow::before, :where(theme-provider[data-theme=swizy-v3x]) .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
  border-width: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .bs-popover-top > .popover-arrow, :where(theme-provider[data-theme=swizy-v3x]) .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}
:where(theme-provider[data-theme=swizy-v3x]) .bs-popover-top > .popover-arrow::before, :where(theme-provider[data-theme=swizy-v3x]) .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before, :where(theme-provider[data-theme=swizy-v3x]) .bs-popover-top > .popover-arrow::after, :where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .bs-popover-top > .popover-arrow::before, :where(theme-provider[data-theme=swizy-v3x]) .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  bottom: 0;
  border-top-color: var(--bs-popover-arrow-border);
}
:where(theme-provider[data-theme=swizy-v3x]) .bs-popover-top > .popover-arrow::after, :where(theme-provider[data-theme=swizy-v3x]) .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  bottom: var(--bs-popover-border-width);
  border-top-color: var(--bs-popover-bg);
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /* rtl:begin:ignore */
}
:where(theme-provider[data-theme=swizy-v3x]) .bs-popover-end > .popover-arrow, :where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .bs-popover-end > .popover-arrow::before, :where(theme-provider[data-theme=swizy-v3x]) .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before, :where(theme-provider[data-theme=swizy-v3x]) .bs-popover-end > .popover-arrow::after, :where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .bs-popover-end > .popover-arrow::before, :where(theme-provider[data-theme=swizy-v3x]) .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  left: 0;
  border-right-color: var(--bs-popover-arrow-border);
}
:where(theme-provider[data-theme=swizy-v3x]) .bs-popover-end > .popover-arrow::after, :where(theme-provider[data-theme=swizy-v3x]) .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  left: var(--bs-popover-border-width);
  border-right-color: var(--bs-popover-bg);
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /* rtl:end:ignore */
}
:where(theme-provider[data-theme=swizy-v3x]) .bs-popover-bottom > .popover-arrow, :where(theme-provider[data-theme=swizy-v3x]) .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}
:where(theme-provider[data-theme=swizy-v3x]) .bs-popover-bottom > .popover-arrow::before, :where(theme-provider[data-theme=swizy-v3x]) .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before, :where(theme-provider[data-theme=swizy-v3x]) .bs-popover-bottom > .popover-arrow::after, :where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .bs-popover-bottom > .popover-arrow::before, :where(theme-provider[data-theme=swizy-v3x]) .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  top: 0;
  border-bottom-color: var(--bs-popover-arrow-border);
}
:where(theme-provider[data-theme=swizy-v3x]) .bs-popover-bottom > .popover-arrow::after, :where(theme-provider[data-theme=swizy-v3x]) .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  top: var(--bs-popover-border-width);
  border-bottom-color: var(--bs-popover-bg);
}
:where(theme-provider[data-theme=swizy-v3x]) .bs-popover-bottom .popover-header::before, :where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /* rtl:begin:ignore */
}
:where(theme-provider[data-theme=swizy-v3x]) .bs-popover-start > .popover-arrow, :where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .bs-popover-start > .popover-arrow::before, :where(theme-provider[data-theme=swizy-v3x]) .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before, :where(theme-provider[data-theme=swizy-v3x]) .bs-popover-start > .popover-arrow::after, :where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .bs-popover-start > .popover-arrow::before, :where(theme-provider[data-theme=swizy-v3x]) .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  right: 0;
  border-left-color: var(--bs-popover-arrow-border);
}
:where(theme-provider[data-theme=swizy-v3x]) .bs-popover-start > .popover-arrow::after, :where(theme-provider[data-theme=swizy-v3x]) .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  right: var(--bs-popover-border-width);
  border-left-color: var(--bs-popover-bg);
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /* rtl:end:ignore */
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
}
:where(theme-provider[data-theme=swizy-v3x]) .popover-header:empty {
  display: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .popover-body {
  padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
  color: var(--bs-popover-body-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .carousel {
  position: relative;
}
:where(theme-provider[data-theme=swizy-v3x]) .carousel.pointer-event {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
:where(theme-provider[data-theme=swizy-v3x]) .carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
:where(theme-provider[data-theme=swizy-v3x]) .carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}
:where(theme-provider[data-theme=swizy-v3x]) .carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  :where(theme-provider[data-theme=swizy-v3x]) .carousel-item {
    -webkit-transition: none;
    transition: none;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .carousel-item.active,
:where(theme-provider[data-theme=swizy-v3x]) .carousel-item-next,
:where(theme-provider[data-theme=swizy-v3x]) .carousel-item-prev {
  display: block;
}
:where(theme-provider[data-theme=swizy-v3x]) .carousel-item-next:not(.carousel-item-start),
:where(theme-provider[data-theme=swizy-v3x]) .active.carousel-item-end {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
:where(theme-provider[data-theme=swizy-v3x]) .carousel-item-prev:not(.carousel-item-end),
:where(theme-provider[data-theme=swizy-v3x]) .active.carousel-item-start {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
:where(theme-provider[data-theme=swizy-v3x]) .carousel-fade .carousel-item {
  opacity: 0;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transform: none;
  transform: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .carousel-fade .carousel-item.active,
:where(theme-provider[data-theme=swizy-v3x]) .carousel-fade .carousel-item-next.carousel-item-start,
:where(theme-provider[data-theme=swizy-v3x]) .carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}
:where(theme-provider[data-theme=swizy-v3x]) .carousel-fade .active.carousel-item-start,
:where(theme-provider[data-theme=swizy-v3x]) .carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  -webkit-transition: opacity 0s 0.6s;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  :where(theme-provider[data-theme=swizy-v3x]) .carousel-fade .active.carousel-item-start,
  :where(theme-provider[data-theme=swizy-v3x]) .carousel-fade .active.carousel-item-end {
    -webkit-transition: none;
    transition: none;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .carousel-control-prev,
:where(theme-provider[data-theme=swizy-v3x]) .carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  -webkit-filter: var(--bs-carousel-control-icon-filter);
  filter: var(--bs-carousel-control-icon-filter);
  border: 0;
  opacity: 0.5;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  :where(theme-provider[data-theme=swizy-v3x]) .carousel-control-prev,
  :where(theme-provider[data-theme=swizy-v3x]) .carousel-control-next {
    -webkit-transition: none;
    transition: none;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .carousel-control-prev:hover, :where(theme-provider[data-theme=swizy-v3x]) .carousel-control-prev:focus,
:where(theme-provider[data-theme=swizy-v3x]) .carousel-control-next:hover,
:where(theme-provider[data-theme=swizy-v3x]) .carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}
:where(theme-provider[data-theme=swizy-v3x]) .carousel-control-prev {
  left: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .carousel-control-next {
  right: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .carousel-control-prev-icon,
:where(theme-provider[data-theme=swizy-v3x]) .carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}
:where(theme-provider[data-theme=swizy-v3x]) .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")*/;
}
:where(theme-provider[data-theme=swizy-v3x]) .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")*/;
}
:where(theme-provider[data-theme=swizy-v3x]) .carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
}
:where(theme-provider[data-theme=swizy-v3x]) .carousel-indicators [data-bs-target] {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  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;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  :where(theme-provider[data-theme=swizy-v3x]) .carousel-indicators [data-bs-target] {
    -webkit-transition: none;
    transition: none;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .carousel-indicators .active {
  opacity: 1;
}
:where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .carousel-dark {
  --bs-carousel-indicator-active-bg: #000;
  --bs-carousel-caption-color: #000;
  --bs-carousel-control-icon-filter: invert(1) grayscale(100);
}
:where(theme-provider[data-theme=swizy-v3x]) :root,
:where(theme-provider[data-theme=swizy-v3x]) [data-bs-theme=light] {
  --bs-carousel-indicator-active-bg: #fff;
  --bs-carousel-caption-color: #fff;
  --bs-carousel-control-icon-filter: ;
}
:where(theme-provider[data-theme=swizy-v3x]) [data-bs-theme=dark] {
  --bs-carousel-indicator-active-bg: #000;
  --bs-carousel-caption-color: #000;
  --bs-carousel-control-icon-filter: invert(1) grayscale(100);
}
:where(theme-provider[data-theme=swizy-v3x]) .spinner-grow,
:where(theme-provider[data-theme=swizy-v3x]) .spinner-border {
  display: inline-block;
  width: var(--bs-spinner-width);
  height: var(--bs-spinner-height);
  vertical-align: var(--bs-spinner-vertical-align);
  border-radius: 50%;
  -webkit-animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
  animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
}
@-webkit-keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg) /* rtl:ignore */;
    transform: rotate(360deg) /* rtl:ignore */;
  }
}
@keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg) /* rtl:ignore */;
    transform: rotate(360deg) /* rtl:ignore */;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .spinner-border-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
  --bs-spinner-border-width: 0.2em;
}
@-webkit-keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .spinner-grow-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
}
@media (prefers-reduced-motion: reduce) {
  :where(theme-provider[data-theme=swizy-v3x]) .spinner-border,
  :where(theme-provider[data-theme=swizy-v3x]) .spinner-grow {
    --bs-spinner-animation-speed: 1.5s;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .offcanvas, :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-xl, :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-lg, :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-md, :where(theme-provider[data-theme=swizy-v3x]) .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: 599.98px) {
  :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-sm {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    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;
    -webkit-transition: var(--bs-offcanvas-transition);
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 599.98px) and (prefers-reduced-motion: reduce) {
  :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-sm {
    -webkit-transition: none;
    transition: none;
  }
}
@media (max-width: 599.98px) {
  :where(theme-provider[data-theme=swizy-v3x]) .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);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  :where(theme-provider[data-theme=swizy-v3x]) .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);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  :where(theme-provider[data-theme=swizy-v3x]) .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);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  :where(theme-provider[data-theme=swizy-v3x]) .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);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-sm.showing, :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-sm.show:not(.hiding) {
    -webkit-transform: none;
    transform: none;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-sm.showing, :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-sm.hiding, :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-sm.show {
    visibility: visible;
  }
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-sm {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-sm .offcanvas-header {
    display: none;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-sm .offcanvas-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}
@media (max-width: 899.98px) {
  :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-md {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    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;
    -webkit-transition: var(--bs-offcanvas-transition);
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 899.98px) and (prefers-reduced-motion: reduce) {
  :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-md {
    -webkit-transition: none;
    transition: none;
  }
}
@media (max-width: 899.98px) {
  :where(theme-provider[data-theme=swizy-v3x]) .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);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  :where(theme-provider[data-theme=swizy-v3x]) .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);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  :where(theme-provider[data-theme=swizy-v3x]) .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);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  :where(theme-provider[data-theme=swizy-v3x]) .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);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-md.showing, :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-md.show:not(.hiding) {
    -webkit-transform: none;
    transform: none;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-md.showing, :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-md.hiding, :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-md.show {
    visibility: visible;
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-md {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-md .offcanvas-header {
    display: none;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-md .offcanvas-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}
@media (max-width: 1199.98px) {
  :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-lg {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    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;
    -webkit-transition: var(--bs-offcanvas-transition);
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
  :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-lg {
    -webkit-transition: none;
    transition: none;
  }
}
@media (max-width: 1199.98px) {
  :where(theme-provider[data-theme=swizy-v3x]) .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);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  :where(theme-provider[data-theme=swizy-v3x]) .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);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  :where(theme-provider[data-theme=swizy-v3x]) .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);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  :where(theme-provider[data-theme=swizy-v3x]) .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);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-lg.showing, :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-lg.show:not(.hiding) {
    -webkit-transform: none;
    transform: none;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-lg.showing, :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-lg.hiding, :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-lg.show {
    visibility: visible;
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-lg {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-lg .offcanvas-header {
    display: none;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-lg .offcanvas-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}
@media (max-width: 1535.98px) {
  :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-xl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    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;
    -webkit-transition: var(--bs-offcanvas-transition);
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 1535.98px) and (prefers-reduced-motion: reduce) {
  :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-xl {
    -webkit-transition: none;
    transition: none;
  }
}
@media (max-width: 1535.98px) {
  :where(theme-provider[data-theme=swizy-v3x]) .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);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  :where(theme-provider[data-theme=swizy-v3x]) .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);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  :where(theme-provider[data-theme=swizy-v3x]) .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);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  :where(theme-provider[data-theme=swizy-v3x]) .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);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-xl.showing, :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-xl.show:not(.hiding) {
    -webkit-transform: none;
    transform: none;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-xl.showing, :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-xl.hiding, :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-xl.show {
    visibility: visible;
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-xl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-xl .offcanvas-header {
    display: none;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .offcanvas-xl .offcanvas-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .offcanvas {
  position: fixed;
  bottom: 0;
  z-index: var(--bs-offcanvas-zindex);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  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;
  -webkit-transition: var(--bs-offcanvas-transition);
  transition: var(--bs-offcanvas-transition);
}
@media (prefers-reduced-motion: reduce) {
  :where(theme-provider[data-theme=swizy-v3x]) .offcanvas {
    -webkit-transition: none;
    transition: none;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
:where(theme-provider[data-theme=swizy-v3x]) .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);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
:where(theme-provider[data-theme=swizy-v3x]) .offcanvas.showing, :where(theme-provider[data-theme=swizy-v3x]) .offcanvas.show:not(.hiding) {
  -webkit-transform: none;
  transform: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .offcanvas.showing, :where(theme-provider[data-theme=swizy-v3x]) .offcanvas.hiding, :where(theme-provider[data-theme=swizy-v3x]) .offcanvas.show {
  visibility: visible;
}
:where(theme-provider[data-theme=swizy-v3x]) .offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
:where(theme-provider[data-theme=swizy-v3x]) .offcanvas-backdrop.fade {
  opacity: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .offcanvas-backdrop.show {
  opacity: 0.5;
}
:where(theme-provider[data-theme=swizy-v3x]) .offcanvas-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
}
:where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .offcanvas-title {
  margin-bottom: 0;
  line-height: var(--bs-offcanvas-title-line-height);
}
:where(theme-provider[data-theme=swizy-v3x]) .offcanvas-body {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  overflow-y: auto;
}
:where(theme-provider[data-theme=swizy-v3x]) .placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: currentcolor;
  opacity: 0.5;
}
:where(theme-provider[data-theme=swizy-v3x]) .placeholder.btn::before, :where(theme-provider[data-theme=swizy-v3x]) .modal-header .placeholder.btn-close::before, :where(theme-provider[data-theme=swizy-v3x]) .placeholder.popover__btn-close::before, :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .placeholder.nav-link::before {
  display: inline-block;
  content: "";
}
:where(theme-provider[data-theme=swizy-v3x]) .placeholder-xs {
  min-height: 0.6em;
}
:where(theme-provider[data-theme=swizy-v3x]) .placeholder-sm {
  min-height: 0.8em;
}
:where(theme-provider[data-theme=swizy-v3x]) .placeholder-lg {
  min-height: 1.2em;
}
:where(theme-provider[data-theme=swizy-v3x]) .placeholder-glow .placeholder {
  -webkit-animation: placeholder-glow 2s ease-in-out infinite;
  animation: placeholder-glow 2s ease-in-out infinite;
}
@-webkit-keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}
@keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .placeholder-wave {
  -webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  -webkit-mask-size: 200% 100%;
  mask-size: 200% 100%;
  -webkit-animation: placeholder-wave 2s linear infinite;
  animation: placeholder-wave 2s linear infinite;
}
@-webkit-keyframes placeholder-wave {
  100% {
    -webkit-mask-position: -200% 0%;
    mask-position: -200% 0%;
  }
}
@keyframes placeholder-wave {
  100% {
    -webkit-mask-position: -200% 0%;
    mask-position: -200% 0%;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .clearfix::after {
  display: block;
  clear: both;
  content: "";
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-primary {
  color: #fff !important;
  background-color: RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-secondary {
  color: #fff !important;
  background-color: RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-success {
  color: #000 !important;
  background-color: RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-info {
  color: #fff !important;
  background-color: RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-warning {
  color: #000 !important;
  background-color: RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-danger {
  color: #fff !important;
  background-color: RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-light {
  color: #000 !important;
  background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-dark {
  color: #fff !important;
  background-color: RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-remise {
  color: #fff !important;
  background-color: RGBA(var(--bs-remise-rgb), var(--bs-bg-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-primary-tone {
  color: #fff !important;
  background-color: RGBA(var(--bs-primary-tone-rgb), var(--bs-bg-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-secondary-tone {
  color: #fff !important;
  background-color: RGBA(var(--bs-secondary-tone-rgb), var(--bs-bg-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-info-tone {
  color: #fff !important;
  background-color: RGBA(var(--bs-info-tone-rgb), var(--bs-bg-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-success-tone {
  color: #000 !important;
  background-color: RGBA(var(--bs-success-tone-rgb), var(--bs-bg-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-warning-tone {
  color: #000 !important;
  background-color: RGBA(var(--bs-warning-tone-rgb), var(--bs-bg-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-danger-tone {
  color: #fff !important;
  background-color: RGBA(var(--bs-danger-tone-rgb), var(--bs-bg-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-neutral, :where(theme-provider[data-theme=swizy-v3x]) .wallet--ecc-cb .badge {
  color: #fff !important;
  background-color: RGBA(var(--bs-neutral-rgb), var(--bs-bg-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-swizy-primary {
  color: #000 !important;
  background-color: RGBA(var(--bs-swizy-primary-rgb), var(--bs-bg-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-swizy-secondary {
  color: #fff !important;
  background-color: RGBA(var(--bs-swizy-secondary-rgb), var(--bs-bg-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-swizy-primary-tone {
  color: #000 !important;
  background-color: RGBA(var(--bs-swizy-primary-tone-rgb), var(--bs-bg-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-swizy-secondary-tone {
  color: #fff !important;
  background-color: RGBA(var(--bs-swizy-secondary-tone-rgb), var(--bs-bg-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-primary-7 {
  color: #fff !important;
  background-color: RGBA(var(--bs-primary-7-rgb), var(--bs-bg-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-primary-6 {
  color: #fff !important;
  background-color: RGBA(var(--bs-primary-6-rgb), var(--bs-bg-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-primary-5 {
  color: #000 !important;
  background-color: RGBA(var(--bs-primary-5-rgb), var(--bs-bg-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-primary-4 {
  color: #000 !important;
  background-color: RGBA(var(--bs-primary-4-rgb), var(--bs-bg-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-primary-3 {
  color: #000 !important;
  background-color: RGBA(var(--bs-primary-3-rgb), var(--bs-bg-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-primary-2 {
  color: #000 !important;
  background-color: RGBA(var(--bs-primary-2-rgb), var(--bs-bg-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-primary-1 {
  color: #000 !important;
  background-color: RGBA(var(--bs-primary-1-rgb), var(--bs-bg-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-secondary-7 {
  color: #fff !important;
  background-color: RGBA(var(--bs-secondary-7-rgb), var(--bs-bg-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-secondary-6 {
  color: #fff !important;
  background-color: RGBA(var(--bs-secondary-6-rgb), var(--bs-bg-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-secondary-5 {
  color: #fff !important;
  background-color: RGBA(var(--bs-secondary-5-rgb), var(--bs-bg-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-secondary-4 {
  color: #000 !important;
  background-color: RGBA(var(--bs-secondary-4-rgb), var(--bs-bg-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-secondary-3 {
  color: #000 !important;
  background-color: RGBA(var(--bs-secondary-3-rgb), var(--bs-bg-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-secondary-2 {
  color: #000 !important;
  background-color: RGBA(var(--bs-secondary-2-rgb), var(--bs-bg-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-secondary-1 {
  color: #000 !important;
  background-color: RGBA(var(--bs-secondary-1-rgb), var(--bs-bg-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-primary:hover, :where(theme-provider[data-theme=swizy-v3x]) .link-primary:focus {
  color: RGBA(0, 90, 150, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(0, 90, 150, var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-secondary:hover, :where(theme-provider[data-theme=swizy-v3x]) .link-secondary:focus {
  color: RGBA(7, 30, 74, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(7, 30, 74, var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-success:hover, :where(theme-provider[data-theme=swizy-v3x]) .link-success:focus {
  color: RGBA(51, 177, 128, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(51, 177, 128, var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-info:hover, :where(theme-provider[data-theme=swizy-v3x]) .link-info:focus {
  color: RGBA(0, 74, 167, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(0, 74, 167, var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-warning:hover, :where(theme-provider[data-theme=swizy-v3x]) .link-warning:focus {
  color: RGBA(251, 117, 51, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(251, 117, 51, var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-danger:hover, :where(theme-provider[data-theme=swizy-v3x]) .link-danger:focus {
  color: RGBA(179, 0, 12, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(179, 0, 12, var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-light:hover, :where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-dark:hover, :where(theme-provider[data-theme=swizy-v3x]) .link-dark:focus {
  color: RGBA(19, 20, 21, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(19, 20, 21, var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-remise {
  color: RGBA(var(--bs-remise-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-remise-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-remise:hover, :where(theme-provider[data-theme=swizy-v3x]) .link-remise:focus {
  color: RGBA(180, 0, 48, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(180, 0, 48, var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-primary-tone {
  color: RGBA(var(--bs-primary-tone-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-primary-tone-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-primary-tone:hover, :where(theme-provider[data-theme=swizy-v3x]) .link-primary-tone:focus {
  color: RGBA(0, 29, 49, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(0, 29, 49, var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-secondary-tone {
  color: RGBA(var(--bs-secondary-tone-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-secondary-tone-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-secondary-tone:hover, :where(theme-provider[data-theme=swizy-v3x]) .link-secondary-tone:focus {
  color: RGBA(2, 10, 24, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(2, 10, 24, var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-info-tone {
  color: RGBA(var(--bs-info-tone-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-info-tone-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-info-tone:hover, :where(theme-provider[data-theme=swizy-v3x]) .link-info-tone:focus {
  color: RGBA(0, 24, 54, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(0, 24, 54, var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-success-tone {
  color: RGBA(var(--bs-success-tone-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-success-tone-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-success-tone:hover, :where(theme-provider[data-theme=swizy-v3x]) .link-success-tone:focus {
  color: RGBA(189, 230, 214, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(189, 230, 214, var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-warning-tone {
  color: RGBA(var(--bs-warning-tone-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-warning-tone-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-warning-tone:hover, :where(theme-provider[data-theme=swizy-v3x]) .link-warning-tone:focus {
  color: RGBA(254, 211, 189, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(254, 211, 189, var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-danger-tone {
  color: RGBA(var(--bs-danger-tone-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-danger-tone-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-danger-tone:hover, :where(theme-provider[data-theme=swizy-v3x]) .link-danger-tone:focus {
  color: RGBA(58, 0, 4, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(58, 0, 4, var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-neutral {
  color: RGBA(var(--bs-neutral-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-neutral-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-neutral:hover, :where(theme-provider[data-theme=swizy-v3x]) .link-neutral:focus {
  color: RGBA(4, 4, 4, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(4, 4, 4, var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-swizy-primary {
  color: RGBA(var(--bs-swizy-primary-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-swizy-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-swizy-primary:hover, :where(theme-provider[data-theme=swizy-v3x]) .link-swizy-primary:focus {
  color: RGBA(242, 104, 140, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(242, 104, 140, var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-swizy-secondary {
  color: RGBA(var(--bs-swizy-secondary-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-swizy-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-swizy-secondary:hover, :where(theme-provider[data-theme=swizy-v3x]) .link-swizy-secondary:focus {
  color: RGBA(7, 30, 74, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(7, 30, 74, var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-swizy-primary-tone {
  color: RGBA(var(--bs-swizy-primary-tone-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-swizy-primary-tone-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-swizy-primary-tone:hover, :where(theme-provider[data-theme=swizy-v3x]) .link-swizy-primary-tone:focus {
  color: RGBA(251, 206, 218, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(251, 206, 218, var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-swizy-secondary-tone {
  color: RGBA(var(--bs-swizy-secondary-tone-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-swizy-secondary-tone-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-swizy-secondary-tone:hover, :where(theme-provider[data-theme=swizy-v3x]) .link-swizy-secondary-tone:focus {
  color: RGBA(2, 10, 24, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(2, 10, 24, var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-primary-7 {
  color: RGBA(var(--bs-primary-7-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-primary-7-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-primary-7:hover, :where(theme-provider[data-theme=swizy-v3x]) .link-primary-7:focus {
  color: RGBA(0, 34, 57, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(0, 34, 57, var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-primary-6 {
  color: RGBA(var(--bs-primary-6-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-primary-6-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-primary-6:hover, :where(theme-provider[data-theme=swizy-v3x]) .link-primary-6:focus {
  color: RGBA(0, 73, 122, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(0, 73, 122, var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-primary-5 {
  color: RGBA(var(--bs-primary-5-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-primary-5-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-primary-5:hover, :where(theme-provider[data-theme=swizy-v3x]) .link-primary-5:focus {
  color: RGBA(51, 173, 255, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(51, 173, 255, var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-primary-4 {
  color: RGBA(var(--bs-primary-4-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-primary-4-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-primary-4:hover, :where(theme-provider[data-theme=swizy-v3x]) .link-primary-4:focus {
  color: RGBA(173, 222, 255, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(173, 222, 255, var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-primary-3 {
  color: RGBA(var(--bs-primary-3-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-primary-3-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-primary-3:hover, :where(theme-provider[data-theme=swizy-v3x]) .link-primary-3:focus {
  color: RGBA(206, 235, 255, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(206, 235, 255, var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-primary-2 {
  color: RGBA(var(--bs-primary-2-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-primary-2-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-primary-2:hover, :where(theme-provider[data-theme=swizy-v3x]) .link-primary-2:focus {
  color: RGBA(231, 245, 255, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(231, 245, 255, var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-primary-1 {
  color: RGBA(var(--bs-primary-1-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-primary-1-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-primary-1:hover, :where(theme-provider[data-theme=swizy-v3x]) .link-primary-1:focus {
  color: RGBA(243, 250, 255, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(243, 250, 255, var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-secondary-7 {
  color: RGBA(var(--bs-secondary-7-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-secondary-7-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-secondary-7:hover, :where(theme-provider[data-theme=swizy-v3x]) .link-secondary-7:focus {
  color: RGBA(5, 21, 52, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(5, 21, 52, var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-secondary-6 {
  color: RGBA(var(--bs-secondary-6-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-secondary-6-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-secondary-6:hover, :where(theme-provider[data-theme=swizy-v3x]) .link-secondary-6:focus {
  color: RGBA(11, 44, 112, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(11, 44, 112, var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-secondary-5 {
  color: RGBA(var(--bs-secondary-5-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-secondary-5-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-secondary-5:hover, :where(theme-provider[data-theme=swizy-v3x]) .link-secondary-5:focus {
  color: RGBA(18, 74, 186, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(18, 74, 186, var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-secondary-4 {
  color: RGBA(var(--bs-secondary-4-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-secondary-4-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-secondary-4:hover, :where(theme-provider[data-theme=swizy-v3x]) .link-secondary-4:focus {
  color: RGBA(181, 203, 248, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(181, 203, 248, var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-secondary-3 {
  color: RGBA(var(--bs-secondary-3-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-secondary-3-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-secondary-3:hover, :where(theme-provider[data-theme=swizy-v3x]) .link-secondary-3:focus {
  color: RGBA(210, 224, 251, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(210, 224, 251, var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-secondary-2 {
  color: RGBA(var(--bs-secondary-2-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-secondary-2-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-secondary-2:hover, :where(theme-provider[data-theme=swizy-v3x]) .link-secondary-2:focus {
  color: RGBA(233, 239, 253, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(233, 239, 253, var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-secondary-1 {
  color: RGBA(var(--bs-secondary-1-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-secondary-1-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-secondary-1:hover, :where(theme-provider[data-theme=swizy-v3x]) .link-secondary-1:focus {
  color: RGBA(244, 247, 254, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(244, 247, 254, var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-body-emphasis:hover, :where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .focus-ring:focus {
  outline: 0;
  -webkit-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);
  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);
}
:where(theme-provider[data-theme=swizy-v3x]) .icon-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.375rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
  text-underline-offset: 0.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
:where(theme-provider[data-theme=swizy-v3x]) .icon-link > .bi {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  fill: currentcolor;
  -webkit-transition: 0.2s ease-in-out transform;
  transition: 0.2s ease-in-out transform;
}
@media (prefers-reduced-motion: reduce) {
  :where(theme-provider[data-theme=swizy-v3x]) .icon-link > .bi {
    -webkit-transition: none;
    transition: none;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .icon-link-hover:hover > .bi, :where(theme-provider[data-theme=swizy-v3x]) .icon-link-hover:focus-visible > .bi {
  -webkit-transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0));
  transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0));
}
:where(theme-provider[data-theme=swizy-v3x]) .ratio, :where(theme-provider[data-theme=swizy-v3x]) .wallet {
  position: relative;
  width: 100%;
}
:where(theme-provider[data-theme=swizy-v3x]) .ratio::before, :where(theme-provider[data-theme=swizy-v3x]) .wallet::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
:where(theme-provider[data-theme=swizy-v3x]) .ratio > *, :where(theme-provider[data-theme=swizy-v3x]) .wallet > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
:where(theme-provider[data-theme=swizy-v3x]) .ratio-1x1 {
  --bs-aspect-ratio: 100%;
}
:where(theme-provider[data-theme=swizy-v3x]) .ratio-4x3 {
  --bs-aspect-ratio: 75%;
}
:where(theme-provider[data-theme=swizy-v3x]) .ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}
:where(theme-provider[data-theme=swizy-v3x]) .ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}
:where(theme-provider[data-theme=swizy-v3x]) .fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}
:where(theme-provider[data-theme=swizy-v3x]) .fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}
:where(theme-provider[data-theme=swizy-v3x]) .sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}
:where(theme-provider[data-theme=swizy-v3x]) .sticky-bottom {
  position: sticky;
  bottom: 0;
  z-index: 1020;
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .sticky-sm-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .sticky-md-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .sticky-lg-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .sticky-xl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .hstack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}
:where(theme-provider[data-theme=swizy-v3x]) .vstack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}
:where(theme-provider[data-theme=swizy-v3x]) .visually-hidden,
:where(theme-provider[data-theme=swizy-v3x]) .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;
}
:where(theme-provider[data-theme=swizy-v3x]) .visually-hidden:not(caption),
:where(theme-provider[data-theme=swizy-v3x]) .visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
  position: absolute !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .visually-hidden *,
:where(theme-provider[data-theme=swizy-v3x]) .visually-hidden-focusable:not(:focus):not(:focus-within) * {
  overflow: hidden !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}
:where(theme-provider[data-theme=swizy-v3x]) .text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
:where(theme-provider[data-theme=swizy-v3x]) .vr {
  display: inline-block;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  width: var(--bs-border-width);
  min-height: 1em;
  background-color: currentcolor;
  opacity: 0.25;
}
:where(theme-provider[data-theme=swizy-v3x]) .align-baseline {
  vertical-align: baseline !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .align-top {
  vertical-align: top !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .align-middle {
  vertical-align: middle !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .align-bottom {
  vertical-align: bottom !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .align-text-bottom {
  vertical-align: text-bottom !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .align-text-top {
  vertical-align: text-top !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .float-start {
  float: left !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .float-end {
  float: right !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .float-none {
  float: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .object-fit-contain {
  -o-object-fit: contain !important;
  object-fit: contain !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .object-fit-cover {
  -o-object-fit: cover !important;
  object-fit: cover !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .object-fit-fill {
  -o-object-fit: fill !important;
  object-fit: fill !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .object-fit-scale {
  -o-object-fit: scale-down !important;
  object-fit: scale-down !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .object-fit-none {
  -o-object-fit: none !important;
  object-fit: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .opacity-0 {
  opacity: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .opacity-25 {
  opacity: 0.25 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .opacity-50 {
  opacity: 0.5 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .opacity-75 {
  opacity: 0.75 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .opacity-100 {
  opacity: 1 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .overflow-auto {
  overflow: auto !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .overflow-hidden {
  overflow: hidden !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .overflow-visible {
  overflow: visible !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .overflow-scroll {
  overflow: scroll !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .overflow-x-auto {
  overflow-x: auto !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .overflow-x-hidden {
  overflow-x: hidden !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .overflow-x-visible {
  overflow-x: visible !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .overflow-x-scroll {
  overflow-x: scroll !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .overflow-y-auto {
  overflow-y: auto !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .overflow-y-hidden {
  overflow-y: hidden !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .overflow-y-visible {
  overflow-y: visible !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .overflow-y-scroll {
  overflow-y: scroll !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .d-inline {
  display: inline !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .d-inline-block {
  display: inline-block !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .d-block {
  display: block !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .d-grid {
  display: grid !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .d-inline-grid {
  display: inline-grid !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .d-table {
  display: table !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .d-table-row {
  display: table-row !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .d-table-cell {
  display: table-cell !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .d-flex, :where(theme-provider[data-theme=swizy-v3x]) .form-control-group__footer, :where(theme-provider[data-theme=swizy-v3x]) .popover__header, :where(theme-provider[data-theme=swizy-v3x]) .section__container, :where(theme-provider[data-theme=swizy-v3x]) .section-swizy__container {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .d-none, :where(theme-provider[data-theme=swizy-v3x]) .popover--arrow-hidden .popover-arrow {
  display: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .shadow-0 {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .shadow-1 {
  -webkit-box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .shadow-2 {
  -webkit-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .shadow-3, :where(theme-provider[data-theme=swizy-v3x]) .section-newsletter, :where(theme-provider[data-theme=swizy-v3x]) .popover {
  -webkit-box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .shadow-4, :where(theme-provider[data-theme=swizy-v3x]) .app-header {
  -webkit-box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .shadow-5 {
  -webkit-box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0, 0, 0, 0.12) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .shadow-6 {
  -webkit-box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .shadow-7 {
  -webkit-box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2), 0px 7px 10px 1px rgba(0, 0, 0, 0.14), 0px 2px 16px 1px rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2), 0px 7px 10px 1px rgba(0, 0, 0, 0.14), 0px 2px 16px 1px rgba(0, 0, 0, 0.12) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .shadow-8 {
  -webkit-box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .shadow-9 {
  -webkit-box-shadow: 0px 5px 6px -3px rgba(0, 0, 0, 0.2), 0px 9px 12px 1px rgba(0, 0, 0, 0.14), 0px 3px 16px 2px rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0px 5px 6px -3px rgba(0, 0, 0, 0.2), 0px 9px 12px 1px rgba(0, 0, 0, 0.14), 0px 3px 16px 2px rgba(0, 0, 0, 0.12) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .shadow-10, :where(theme-provider[data-theme=swizy-v3x]) .swiper-album .swiper-slide {
  -webkit-box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.2), 0px 10px 14px 1px rgba(0, 0, 0, 0.14), 0px 4px 18px 3px rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.2), 0px 10px 14px 1px rgba(0, 0, 0, 0.14), 0px 4px 18px 3px rgba(0, 0, 0, 0.12) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .shadow-11 {
  -webkit-box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.2), 0px 11px 15px 1px rgba(0, 0, 0, 0.14), 0px 4px 20px 3px rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.2), 0px 11px 15px 1px rgba(0, 0, 0, 0.14), 0px 4px 20px 3px rgba(0, 0, 0, 0.12) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .shadow-12 {
  -webkit-box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .shadow-13 {
  -webkit-box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 13px 19px 2px rgba(0, 0, 0, 0.14), 0px 5px 24px 4px rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 13px 19px 2px rgba(0, 0, 0, 0.14), 0px 5px 24px 4px rgba(0, 0, 0, 0.12) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .shadow-14 {
  -webkit-box-shadow: 0px 7px 9px -4px rgba(0, 0, 0, 0.2), 0px 14px 21px 2px rgba(0, 0, 0, 0.14), 0px 5px 26px 4px rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0px 7px 9px -4px rgba(0, 0, 0, 0.2), 0px 14px 21px 2px rgba(0, 0, 0, 0.14), 0px 5px 26px 4px rgba(0, 0, 0, 0.12) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .shadow-15 {
  -webkit-box-shadow: 0px 8px 9px -5px rgba(0, 0, 0, 0.2), 0px 15px 22px 2px rgba(0, 0, 0, 0.14), 0px 6px 28px 5px rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0px 8px 9px -5px rgba(0, 0, 0, 0.2), 0px 15px 22px 2px rgba(0, 0, 0, 0.14), 0px 6px 28px 5px rgba(0, 0, 0, 0.12) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .shadow-16 {
  -webkit-box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .shadow-17 {
  -webkit-box-shadow: 0px 8px 11px -5px rgba(0, 0, 0, 0.2), 0px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0px 8px 11px -5px rgba(0, 0, 0, 0.2), 0px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .shadow-18 {
  -webkit-box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .shadow-19 {
  -webkit-box-shadow: 0px 9px 12px -6px rgba(0, 0, 0, 0.2), 0px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0px 9px 12px -6px rgba(0, 0, 0, 0.2), 0px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .shadow-20 {
  -webkit-box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .shadow-21 {
  -webkit-box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .shadow-22 {
  -webkit-box-shadow: 0px 10px 14px -6px rgba(0, 0, 0, 0.2), 0px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0px 10px 14px -6px rgba(0, 0, 0, 0.2), 0px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .shadow-23 {
  -webkit-box-shadow: 0px 11px 14px -7px rgba(0, 0, 0, 0.2), 0px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0px 11px 14px -7px rgba(0, 0, 0, 0.2), 0px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .shadow-24 {
  -webkit-box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .focus-ring-primary {
  --bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity));
}
:where(theme-provider[data-theme=swizy-v3x]) .focus-ring-secondary {
  --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity));
}
:where(theme-provider[data-theme=swizy-v3x]) .focus-ring-success {
  --bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity));
}
:where(theme-provider[data-theme=swizy-v3x]) .focus-ring-info {
  --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity));
}
:where(theme-provider[data-theme=swizy-v3x]) .focus-ring-warning {
  --bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity));
}
:where(theme-provider[data-theme=swizy-v3x]) .focus-ring-danger {
  --bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity));
}
:where(theme-provider[data-theme=swizy-v3x]) .focus-ring-light {
  --bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity));
}
:where(theme-provider[data-theme=swizy-v3x]) .focus-ring-dark {
  --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity));
}
:where(theme-provider[data-theme=swizy-v3x]) .focus-ring-remise {
  --bs-focus-ring-color: rgba(var(--bs-remise-rgb), var(--bs-focus-ring-opacity));
}
:where(theme-provider[data-theme=swizy-v3x]) .focus-ring-primary-tone {
  --bs-focus-ring-color: rgba(var(--bs-primary-tone-rgb), var(--bs-focus-ring-opacity));
}
:where(theme-provider[data-theme=swizy-v3x]) .focus-ring-secondary-tone {
  --bs-focus-ring-color: rgba(var(--bs-secondary-tone-rgb), var(--bs-focus-ring-opacity));
}
:where(theme-provider[data-theme=swizy-v3x]) .focus-ring-info-tone {
  --bs-focus-ring-color: rgba(var(--bs-info-tone-rgb), var(--bs-focus-ring-opacity));
}
:where(theme-provider[data-theme=swizy-v3x]) .focus-ring-success-tone {
  --bs-focus-ring-color: rgba(var(--bs-success-tone-rgb), var(--bs-focus-ring-opacity));
}
:where(theme-provider[data-theme=swizy-v3x]) .focus-ring-warning-tone {
  --bs-focus-ring-color: rgba(var(--bs-warning-tone-rgb), var(--bs-focus-ring-opacity));
}
:where(theme-provider[data-theme=swizy-v3x]) .focus-ring-danger-tone {
  --bs-focus-ring-color: rgba(var(--bs-danger-tone-rgb), var(--bs-focus-ring-opacity));
}
:where(theme-provider[data-theme=swizy-v3x]) .focus-ring-neutral {
  --bs-focus-ring-color: rgba(var(--bs-neutral-rgb), var(--bs-focus-ring-opacity));
}
:where(theme-provider[data-theme=swizy-v3x]) .focus-ring-swizy-primary {
  --bs-focus-ring-color: rgba(var(--bs-swizy-primary-rgb), var(--bs-focus-ring-opacity));
}
:where(theme-provider[data-theme=swizy-v3x]) .focus-ring-swizy-secondary {
  --bs-focus-ring-color: rgba(var(--bs-swizy-secondary-rgb), var(--bs-focus-ring-opacity));
}
:where(theme-provider[data-theme=swizy-v3x]) .focus-ring-swizy-primary-tone {
  --bs-focus-ring-color: rgba(var(--bs-swizy-primary-tone-rgb), var(--bs-focus-ring-opacity));
}
:where(theme-provider[data-theme=swizy-v3x]) .focus-ring-swizy-secondary-tone {
  --bs-focus-ring-color: rgba(var(--bs-swizy-secondary-tone-rgb), var(--bs-focus-ring-opacity));
}
:where(theme-provider[data-theme=swizy-v3x]) .focus-ring-primary-7 {
  --bs-focus-ring-color: rgba(var(--bs-primary-7-rgb), var(--bs-focus-ring-opacity));
}
:where(theme-provider[data-theme=swizy-v3x]) .focus-ring-primary-6 {
  --bs-focus-ring-color: rgba(var(--bs-primary-6-rgb), var(--bs-focus-ring-opacity));
}
:where(theme-provider[data-theme=swizy-v3x]) .focus-ring-primary-5 {
  --bs-focus-ring-color: rgba(var(--bs-primary-5-rgb), var(--bs-focus-ring-opacity));
}
:where(theme-provider[data-theme=swizy-v3x]) .focus-ring-primary-4 {
  --bs-focus-ring-color: rgba(var(--bs-primary-4-rgb), var(--bs-focus-ring-opacity));
}
:where(theme-provider[data-theme=swizy-v3x]) .focus-ring-primary-3 {
  --bs-focus-ring-color: rgba(var(--bs-primary-3-rgb), var(--bs-focus-ring-opacity));
}
:where(theme-provider[data-theme=swizy-v3x]) .focus-ring-primary-2 {
  --bs-focus-ring-color: rgba(var(--bs-primary-2-rgb), var(--bs-focus-ring-opacity));
}
:where(theme-provider[data-theme=swizy-v3x]) .focus-ring-primary-1 {
  --bs-focus-ring-color: rgba(var(--bs-primary-1-rgb), var(--bs-focus-ring-opacity));
}
:where(theme-provider[data-theme=swizy-v3x]) .focus-ring-secondary-7 {
  --bs-focus-ring-color: rgba(var(--bs-secondary-7-rgb), var(--bs-focus-ring-opacity));
}
:where(theme-provider[data-theme=swizy-v3x]) .focus-ring-secondary-6 {
  --bs-focus-ring-color: rgba(var(--bs-secondary-6-rgb), var(--bs-focus-ring-opacity));
}
:where(theme-provider[data-theme=swizy-v3x]) .focus-ring-secondary-5 {
  --bs-focus-ring-color: rgba(var(--bs-secondary-5-rgb), var(--bs-focus-ring-opacity));
}
:where(theme-provider[data-theme=swizy-v3x]) .focus-ring-secondary-4 {
  --bs-focus-ring-color: rgba(var(--bs-secondary-4-rgb), var(--bs-focus-ring-opacity));
}
:where(theme-provider[data-theme=swizy-v3x]) .focus-ring-secondary-3 {
  --bs-focus-ring-color: rgba(var(--bs-secondary-3-rgb), var(--bs-focus-ring-opacity));
}
:where(theme-provider[data-theme=swizy-v3x]) .focus-ring-secondary-2 {
  --bs-focus-ring-color: rgba(var(--bs-secondary-2-rgb), var(--bs-focus-ring-opacity));
}
:where(theme-provider[data-theme=swizy-v3x]) .focus-ring-secondary-1 {
  --bs-focus-ring-color: rgba(var(--bs-secondary-1-rgb), var(--bs-focus-ring-opacity));
}
:where(theme-provider[data-theme=swizy-v3x]) .position-static {
  position: static !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .position-relative, :where(theme-provider[data-theme=swizy-v3x]) .swiper-pagination-bullets {
  position: relative !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .position-absolute {
  position: absolute !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .position-fixed {
  position: fixed !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .position-sticky {
  position: sticky !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .top-0 {
  top: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .top-50 {
  top: 50% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .top-100 {
  top: 100% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bottom-0 {
  bottom: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bottom-50 {
  bottom: 50% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bottom-100 {
  bottom: 100% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .start-0 {
  left: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .start-50 {
  left: 50% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .start-100 {
  left: 100% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .end-0 {
  right: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .end-50 {
  right: 50% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .end-100 {
  right: 100% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .translate-middle {
  -webkit-transform: translate(-50%, -50%) !important;
  transform: translate(-50%, -50%) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .translate-middle-x {
  -webkit-transform: translateX(-50%) !important;
  transform: translateX(-50%) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .translate-middle-y {
  -webkit-transform: translateY(-50%) !important;
  transform: translateY(-50%) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-0 {
  border: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-top-0 {
  border-top: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-end {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-end-0 {
  border-right: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-bottom-0 {
  border-bottom: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-start {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-start-0 {
  border-left: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-primary {
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-secondary {
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-success {
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-info {
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-warning {
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-danger {
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-light {
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-dark {
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-remise {
  border-color: rgba(var(--bs-remise-rgb), var(--bs-border-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-primary-tone {
  border-color: rgba(var(--bs-primary-tone-rgb), var(--bs-border-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-secondary-tone {
  border-color: rgba(var(--bs-secondary-tone-rgb), var(--bs-border-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-info-tone {
  border-color: rgba(var(--bs-info-tone-rgb), var(--bs-border-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-success-tone {
  border-color: rgba(var(--bs-success-tone-rgb), var(--bs-border-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-warning-tone {
  border-color: rgba(var(--bs-warning-tone-rgb), var(--bs-border-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-danger-tone {
  border-color: rgba(var(--bs-danger-tone-rgb), var(--bs-border-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-neutral, :where(theme-provider[data-theme=swizy-v3x]) .section-newsletter__container-cta__input {
  border-color: rgba(var(--bs-neutral-rgb), var(--bs-border-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-swizy-primary {
  border-color: rgba(var(--bs-swizy-primary-rgb), var(--bs-border-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-swizy-secondary {
  border-color: rgba(var(--bs-swizy-secondary-rgb), var(--bs-border-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-swizy-primary-tone {
  border-color: rgba(var(--bs-swizy-primary-tone-rgb), var(--bs-border-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-swizy-secondary-tone {
  border-color: rgba(var(--bs-swizy-secondary-tone-rgb), var(--bs-border-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-primary-7 {
  border-color: rgb(0, 42.5361702128, 71.4) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-primary-6 {
  border-color: rgb(0, 91.1489361702, 153) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-primary-5 {
  border-color: rgb(0, 151.914893617, 255) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-primary-4 {
  border-color: rgb(153, 213.7659574468, 255) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-primary-3, :where(theme-provider[data-theme=swizy-v3x]) .swiper-pagination-bullets .swiper-pagination-bullet-active {
  border-color: rgb(193.8, 230.2595744681, 255) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-primary-2 {
  border-color: rgb(224.4, 242.629787234, 255) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-primary-1 {
  border-color: rgb(239.7, 248.814893617, 255) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-secondary-7 {
  border-color: rgb(6.3, 25.9, 65.1) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-secondary-6 {
  border-color: rgb(13.5, 55.5, 139.5) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-secondary-5 {
  border-color: rgb(22.5, 92.5, 232.5) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-secondary-4 {
  border-color: #a2bef6 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-secondary-3, :where(theme-provider[data-theme=swizy-v3x]) .section-newsletter {
  border-color: rgb(199.2, 216, 249.6) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-secondary-2 {
  border-color: rgb(227.1, 235.5, 252.3) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-secondary-1 {
  border-color: rgb(241.05, 245.25, 253.65) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-black {
  border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-white {
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-primary-subtle {
  border-color: var(--bs-primary-border-subtle) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-secondary-subtle {
  border-color: var(--bs-secondary-border-subtle) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-success-subtle {
  border-color: var(--bs-success-border-subtle) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-info-subtle {
  border-color: var(--bs-info-border-subtle) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-warning-subtle {
  border-color: var(--bs-warning-border-subtle) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-danger-subtle {
  border-color: var(--bs-danger-border-subtle) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-light-subtle {
  border-color: var(--bs-light-border-subtle) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-dark-subtle {
  border-color: var(--bs-dark-border-subtle) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-1 {
  border-width: 1px !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-2 {
  border-width: 2px !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-3 {
  border-width: 3px !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-4 {
  border-width: 4px !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-5 {
  border-width: 5px !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-opacity-10 {
  --bs-border-opacity: 0.1;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-opacity-25 {
  --bs-border-opacity: 0.25;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-opacity-50 {
  --bs-border-opacity: 0.5;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-opacity-75 {
  --bs-border-opacity: 0.75;
}
:where(theme-provider[data-theme=swizy-v3x]) .border-opacity-100 {
  --bs-border-opacity: 1;
}
:where(theme-provider[data-theme=swizy-v3x]) .w-10 {
  width: 10% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .w-20 {
  width: 20% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .w-30 {
  width: 30% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .w-40 {
  width: 40% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .w-60 {
  width: 60% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .w-70 {
  width: 70% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .w-80 {
  width: 80% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .w-90 {
  width: 90% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .w-25 {
  width: 25% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .w-50 {
  width: 50% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .w-75 {
  width: 75% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .w-100 {
  width: 100% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .w-auto {
  width: auto !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .w-fit-content {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mw-100 {
  max-width: 100% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .vw-100 {
  width: 100vw !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .min-vw-100 {
  min-width: 100vw !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .h-25 {
  height: 25% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .h-50 {
  height: 50% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .h-75 {
  height: 75% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .h-100 {
  height: 100% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .h-auto {
  height: auto !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mh-100 {
  max-height: 100% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .vh-100 {
  height: 100vh !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .min-vh-100 {
  min-height: 100vh !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-1 {
  -webkit-box-flex: 1 !important;
  -ms-flex: 1 !important;
  flex: 1 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-2 {
  -webkit-box-flex: 2 !important;
  -ms-flex: 2 !important;
  flex: 2 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-3 {
  -webkit-box-flex: 3 !important;
  -ms-flex: 3 !important;
  flex: 3 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-row, :where(theme-provider[data-theme=swizy-v3x]) .page__title-container__header__toolbar, :where(theme-provider[data-theme=swizy-v3x]) .page__title-container__header {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-column, :where(theme-provider[data-theme=swizy-v3x]) .form-control-group__footer, :where(theme-provider[data-theme=swizy-v3x]) .section__head .section__toolbar, :where(theme-provider[data-theme=swizy-v3x]) .section__container, :where(theme-provider[data-theme=swizy-v3x]) .section-swizy__container {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-grow-0 {
  -webkit-box-flex: 0 !important;
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-grow-1, :where(theme-provider[data-theme=swizy-v3x]) .section__head .section__toolbar .btn, :where(theme-provider[data-theme=swizy-v3x]) .section__head .section__toolbar .modal-header .btn-close, :where(theme-provider[data-theme=swizy-v3x]) .modal-header .section__head .section__toolbar .btn-close, :where(theme-provider[data-theme=swizy-v3x]) .section__head .section__toolbar .popover__btn-close, :where(theme-provider[data-theme=swizy-v3x]) .section__head .section__toolbar .nav-pills .nav-link, :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .section__head .section__toolbar .nav-link {
  -webkit-box-flex: 1 !important;
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .justify-content-between, :where(theme-provider[data-theme=swizy-v3x]) .popover__header {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .justify-content-evenly {
  -webkit-box-pack: space-evenly !important;
  -ms-flex-pack: space-evenly !important;
  justify-content: space-evenly !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .align-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .align-items-center, :where(theme-provider[data-theme=swizy-v3x]) .page__title-container__header, :where(theme-provider[data-theme=swizy-v3x]) .popover__header {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .align-items-baseline {
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .align-items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .order-first {
  -webkit-box-ordinal-group: 0 !important;
  -ms-flex-order: -1 !important;
  order: -1 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .order-0 {
  -webkit-box-ordinal-group: 1 !important;
  -ms-flex-order: 0 !important;
  order: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .order-1, :where(theme-provider[data-theme=swizy-v3x]) .section-swizy__logo {
  -webkit-box-ordinal-group: 2 !important;
  -ms-flex-order: 1 !important;
  order: 1 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .order-2, :where(theme-provider[data-theme=swizy-v3x]) .section-swizy__head .section__title {
  -webkit-box-ordinal-group: 3 !important;
  -ms-flex-order: 2 !important;
  order: 2 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .order-3 {
  -webkit-box-ordinal-group: 4 !important;
  -ms-flex-order: 3 !important;
  order: 3 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .order-4 {
  -webkit-box-ordinal-group: 5 !important;
  -ms-flex-order: 4 !important;
  order: 4 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .order-5 {
  -webkit-box-ordinal-group: 6 !important;
  -ms-flex-order: 5 !important;
  order: 5 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .order-last {
  -webkit-box-ordinal-group: 7 !important;
  -ms-flex-order: 6 !important;
  order: 6 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .m-0 {
  margin: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .m-05 {
  margin: 0.25rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .m-1 {
  margin: 0.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .m-2 {
  margin: 1rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .m-3 {
  margin: 1.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .m-4 {
  margin: 2rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .m-5 {
  margin: 2.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .m-6 {
  margin: 3rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .m-7 {
  margin: 3.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .m-8 {
  margin: 4rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .m-9 {
  margin: 4.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .m-10 {
  margin: 5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .m-auto {
  margin: auto !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mx-05 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mx-1 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mx-2 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mx-3 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mx-4 {
  margin-right: 2rem !important;
  margin-left: 2rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mx-5 {
  margin-right: 2.5rem !important;
  margin-left: 2.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mx-6 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mx-7 {
  margin-right: 3.5rem !important;
  margin-left: 3.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mx-8 {
  margin-right: 4rem !important;
  margin-left: 4rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mx-9 {
  margin-right: 4.5rem !important;
  margin-left: 4.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mx-10 {
  margin-right: 5rem !important;
  margin-left: 5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mx-auto, :where(theme-provider[data-theme=swizy-v3x]) .section-newsletter, :where(theme-provider[data-theme=swizy-v3x]) .swiper-pagination-bullets {
  margin-right: auto !important;
  margin-left: auto !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .my-05 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .my-1 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .my-2 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .my-3 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .my-4 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .my-5 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .my-6 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .my-7 {
  margin-top: 3.5rem !important;
  margin-bottom: 3.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .my-8 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .my-9 {
  margin-top: 4.5rem !important;
  margin-bottom: 4.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .my-10 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mt-0 {
  margin-top: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mt-05 {
  margin-top: 0.25rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mt-1, :where(theme-provider[data-theme=swizy-v3x]) .form-control-group__footer {
  margin-top: 0.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mt-2 {
  margin-top: 1rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mt-3 {
  margin-top: 1.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mt-4, :where(theme-provider[data-theme=swizy-v3x]) .page {
  margin-top: 2rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mt-5 {
  margin-top: 2.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mt-6 {
  margin-top: 3rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mt-7 {
  margin-top: 3.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mt-8 {
  margin-top: 4rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mt-9 {
  margin-top: 4.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mt-10 {
  margin-top: 5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mt-auto {
  margin-top: auto !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .me-0 {
  margin-right: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .me-05 {
  margin-right: 0.25rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .me-1 {
  margin-right: 0.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .me-2 {
  margin-right: 1rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .me-3 {
  margin-right: 1.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .me-4 {
  margin-right: 2rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .me-5 {
  margin-right: 2.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .me-6 {
  margin-right: 3rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .me-7 {
  margin-right: 3.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .me-8 {
  margin-right: 4rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .me-9 {
  margin-right: 4.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .me-10 {
  margin-right: 5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .me-auto {
  margin-right: auto !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mb-0 {
  margin-bottom: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mb-05 {
  margin-bottom: 0.25rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mb-1, :where(theme-provider[data-theme=swizy-v3x]) .form-control-group__head {
  margin-bottom: 0.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mb-2 {
  margin-bottom: 1rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mb-3 {
  margin-bottom: 1.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mb-4 {
  margin-bottom: 2rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mb-5 {
  margin-bottom: 2.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mb-6 {
  margin-bottom: 3rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mb-7 {
  margin-bottom: 3.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mb-8 {
  margin-bottom: 4rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mb-9 {
  margin-bottom: 4.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mb-10 {
  margin-bottom: 5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .mb-auto {
  margin-bottom: auto !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ms-0, :where(theme-provider[data-theme=swizy-v3x]) .form-control-group__input-container .input-group-text {
  margin-left: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ms-05 {
  margin-left: 0.25rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ms-1 {
  margin-left: 0.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ms-2 {
  margin-left: 1rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ms-3 {
  margin-left: 1.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ms-4 {
  margin-left: 2rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ms-5 {
  margin-left: 2.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ms-6 {
  margin-left: 3rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ms-7 {
  margin-left: 3.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ms-8 {
  margin-left: 4rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ms-9 {
  margin-left: 4.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ms-10 {
  margin-left: 5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ms-auto {
  margin-left: auto !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .p-0, :where(theme-provider[data-theme=swizy-v3x]) .popover .popover-body {
  padding: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .p-05, :where(theme-provider[data-theme=swizy-v3x]) .wallet__image-container {
  padding: 0.25rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .p-1 {
  padding: 0.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .p-2, :where(theme-provider[data-theme=swizy-v3x]) .wallet__body, :where(theme-provider[data-theme=swizy-v3x]) .popover__footer, :where(theme-provider[data-theme=swizy-v3x]) .popover__header {
  padding: 1rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .p-3, :where(theme-provider[data-theme=swizy-v3x]) .modal-header {
  padding: 1.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .p-4, :where(theme-provider[data-theme=swizy-v3x]) .section-newsletter {
  padding: 2rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .p-5 {
  padding: 2.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .p-6 {
  padding: 3rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .p-7 {
  padding: 3.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .p-8 {
  padding: 4rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .p-9 {
  padding: 4.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .p-10 {
  padding: 5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .px-05 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .px-1 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .px-2 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .px-3 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .px-4, :where(theme-provider[data-theme=swizy-v3x]) ul.sf-menu.sf-vertical.sf-accordion ul a, :where(theme-provider[data-theme=swizy-v3x]) ul.sf-menu.sf-vertical.sf-accordion ul span {
  padding-right: 2rem !important;
  padding-left: 2rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .px-5 {
  padding-right: 2.5rem !important;
  padding-left: 2.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .px-6, :where(theme-provider[data-theme=swizy-v3x]) ul.sf-menu.sf-vertical.sf-accordion ul ul a {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .px-7 {
  padding-right: 3.5rem !important;
  padding-left: 3.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .px-8 {
  padding-right: 4rem !important;
  padding-left: 4rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .px-9 {
  padding-right: 4.5rem !important;
  padding-left: 4.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .px-10 {
  padding-right: 5rem !important;
  padding-left: 5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .py-05 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .py-1, :where(theme-provider[data-theme=swizy-v3x]) .footer__list-item {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .py-2 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .py-3, :where(theme-provider[data-theme=swizy-v3x]) .section {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .py-4 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .py-5 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .py-6, :where(theme-provider[data-theme=swizy-v3x]) .banner-wavy {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .py-7 {
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .py-8 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .py-9 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .py-10 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pt-0 {
  padding-top: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pt-05 {
  padding-top: 0.25rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pt-1 {
  padding-top: 0.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pt-2 {
  padding-top: 1rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pt-3 {
  padding-top: 1.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pt-4, :where(theme-provider[data-theme=swizy-v3x]) .footer {
  padding-top: 2rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pt-5 {
  padding-top: 2.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pt-6 {
  padding-top: 3rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pt-7 {
  padding-top: 3.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pt-8 {
  padding-top: 4rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pt-9 {
  padding-top: 4.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pt-10 {
  padding-top: 5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pe-0 {
  padding-right: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pe-05 {
  padding-right: 0.25rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pe-1 {
  padding-right: 0.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pe-2 {
  padding-right: 1rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pe-3 {
  padding-right: 1.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pe-4 {
  padding-right: 2rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pe-5 {
  padding-right: 2.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pe-6 {
  padding-right: 3rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pe-7 {
  padding-right: 3.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pe-8 {
  padding-right: 4rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pe-9 {
  padding-right: 4.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pe-10 {
  padding-right: 5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pb-0 {
  padding-bottom: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pb-05 {
  padding-bottom: 0.25rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pb-1, :where(theme-provider[data-theme=swizy-v3x]) .app-header .second-row .right-view {
  padding-bottom: 0.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pb-2 {
  padding-bottom: 1rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pb-3, :where(theme-provider[data-theme=swizy-v3x]) .activity-log__item__content {
  padding-bottom: 1.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pb-4, :where(theme-provider[data-theme=swizy-v3x]) .footer {
  padding-bottom: 2rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pb-5 {
  padding-bottom: 2.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pb-6 {
  padding-bottom: 3rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pb-7 {
  padding-bottom: 3.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pb-8 {
  padding-bottom: 4rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pb-9 {
  padding-bottom: 4.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pb-10 {
  padding-bottom: 5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ps-0 {
  padding-left: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ps-05 {
  padding-left: 0.25rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ps-1 {
  padding-left: 0.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ps-2 {
  padding-left: 1rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ps-3 {
  padding-left: 1.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ps-4 {
  padding-left: 2rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ps-5 {
  padding-left: 2.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ps-6 {
  padding-left: 3rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ps-7 {
  padding-left: 3.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ps-8 {
  padding-left: 4rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ps-9 {
  padding-left: 4.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ps-10 {
  padding-left: 5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .gap-0 {
  gap: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .gap-05, :where(theme-provider[data-theme=swizy-v3x]) .activity-log__item__metadata, :where(theme-provider[data-theme=swizy-v3x]) .activity-log__item__content, :where(theme-provider[data-theme=swizy-v3x]) .list-group-item__content-group {
  gap: 0.25rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .gap-1, :where(theme-provider[data-theme=swizy-v3x]) .app-header .second-row .right-view, :where(theme-provider[data-theme=swizy-v3x]) .footer__app-links, :where(theme-provider[data-theme=swizy-v3x]) .form-control-group__footer, :where(theme-provider[data-theme=swizy-v3x]) .wizard__progress-stepper, :where(theme-provider[data-theme=swizy-v3x]) .activity-log, :where(theme-provider[data-theme=swizy-v3x]) .banner-wavy__body, :where(theme-provider[data-theme=swizy-v3x]) .list-group-item__primary, :where(theme-provider[data-theme=swizy-v3x]) .list-group-item__content {
  gap: 0.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .gap-2, :where(theme-provider[data-theme=swizy-v3x]) .section-newsletter__container-cta, :where(theme-provider[data-theme=swizy-v3x]) .page__title-container__header__toolbar, :where(theme-provider[data-theme=swizy-v3x]) .page__title-container__header, :where(theme-provider[data-theme=swizy-v3x]) .section__head .section__toolbar, :where(theme-provider[data-theme=swizy-v3x]) .section__head, :where(theme-provider[data-theme=swizy-v3x]) .section__footer, :where(theme-provider[data-theme=swizy-v3x]) .section-swizy__head {
  gap: 1rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .gap-3, :where(theme-provider[data-theme=swizy-v3x]) .section-newsletter, :where(theme-provider[data-theme=swizy-v3x]) .footer__column, :where(theme-provider[data-theme=swizy-v3x]) .banner-wavy, :where(theme-provider[data-theme=swizy-v3x]) .empty-view, :where(theme-provider[data-theme=swizy-v3x]) .section-swizy__content {
  gap: 1.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .gap-4, :where(theme-provider[data-theme=swizy-v3x]) .section-swizy__container {
  gap: 2rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .gap-5 {
  gap: 2.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .gap-6 {
  gap: 3rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .gap-7 {
  gap: 3.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .gap-8 {
  gap: 4rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .gap-9 {
  gap: 4.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .gap-10, :where(theme-provider[data-theme=swizy-v3x]) .page {
  gap: 5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .row-gap-0 {
  row-gap: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .row-gap-05 {
  row-gap: 0.25rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .row-gap-1 {
  row-gap: 0.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .row-gap-2 {
  row-gap: 1rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .row-gap-3 {
  row-gap: 1.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .row-gap-4 {
  row-gap: 2rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .row-gap-5 {
  row-gap: 2.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .row-gap-6 {
  row-gap: 3rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .row-gap-7 {
  row-gap: 3.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .row-gap-8 {
  row-gap: 4rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .row-gap-9 {
  row-gap: 4.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .row-gap-10 {
  row-gap: 5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .column-gap-0 {
  -webkit-column-gap: 0 !important;
  -moz-column-gap: 0 !important;
  column-gap: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .column-gap-05 {
  -webkit-column-gap: 0.25rem !important;
  -moz-column-gap: 0.25rem !important;
  column-gap: 0.25rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .column-gap-1 {
  -webkit-column-gap: 0.5rem !important;
  -moz-column-gap: 0.5rem !important;
  column-gap: 0.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .column-gap-2 {
  -webkit-column-gap: 1rem !important;
  -moz-column-gap: 1rem !important;
  column-gap: 1rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .column-gap-3 {
  -webkit-column-gap: 1.5rem !important;
  -moz-column-gap: 1.5rem !important;
  column-gap: 1.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .column-gap-4 {
  -webkit-column-gap: 2rem !important;
  -moz-column-gap: 2rem !important;
  column-gap: 2rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .column-gap-5 {
  -webkit-column-gap: 2.5rem !important;
  -moz-column-gap: 2.5rem !important;
  column-gap: 2.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .column-gap-6 {
  -webkit-column-gap: 3rem !important;
  -moz-column-gap: 3rem !important;
  column-gap: 3rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .column-gap-7 {
  -webkit-column-gap: 3.5rem !important;
  -moz-column-gap: 3.5rem !important;
  column-gap: 3.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .column-gap-8 {
  -webkit-column-gap: 4rem !important;
  -moz-column-gap: 4rem !important;
  column-gap: 4rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .column-gap-9 {
  -webkit-column-gap: 4.5rem !important;
  -moz-column-gap: 4.5rem !important;
  column-gap: 4.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .column-gap-10 {
  -webkit-column-gap: 5rem !important;
  -moz-column-gap: 5rem !important;
  column-gap: 5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .font-monospace {
  font-family: var(--bs-font-monospace) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .fs-5 {
  font-size: 1.25rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .fs-6 {
  font-size: 1rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .fst-italic {
  font-style: italic !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .fst-normal {
  font-style: normal !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .fw-lighter {
  font-weight: lighter !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .fw-light {
  font-weight: 300 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .fw-normal {
  font-weight: 400 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .fw-medium, :where(theme-provider[data-theme=swizy-v3x]) .form-control-group__input-container .form-select,
:where(theme-provider[data-theme=swizy-v3x]) .form-control-group__input-container .form-control, :where(theme-provider[data-theme=swizy-v3x]) .form-control-group__label, :where(theme-provider[data-theme=swizy-v3x]) .list-group-item__secondary-text {
  font-weight: 500 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .fw-semibold {
  font-weight: 600 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .fw-bold, :where(theme-provider[data-theme=swizy-v3x]) .html-content strong, :where(theme-provider[data-theme=swizy-v3x]) .html-content h1, :where(theme-provider[data-theme=swizy-v3x]) .html-content .h1, :where(theme-provider[data-theme=swizy-v3x]) .html-content h2, :where(theme-provider[data-theme=swizy-v3x]) .html-content .h2, :where(theme-provider[data-theme=swizy-v3x]) .html-content h3, :where(theme-provider[data-theme=swizy-v3x]) .html-content .h3, :where(theme-provider[data-theme=swizy-v3x]) .html-content h4, :where(theme-provider[data-theme=swizy-v3x]) .html-content .h4, :where(theme-provider[data-theme=swizy-v3x]) .html-content h5, :where(theme-provider[data-theme=swizy-v3x]) .html-content .h5, :where(theme-provider[data-theme=swizy-v3x]) .html-content .popover__title, :where(theme-provider[data-theme=swizy-v3x]) .html-content h6, :where(theme-provider[data-theme=swizy-v3x]) .html-content .h6, :where(theme-provider[data-theme=swizy-v3x]) .html-content .empty-view__label, :where(theme-provider[data-theme=swizy-v3x]) .html-content .wallet__nom, :where(theme-provider[data-theme=swizy-v3x]) .section__head .section__title, :where(theme-provider[data-theme=swizy-v3x]) .section-swizy__head .section__title, :where(theme-provider[data-theme=swizy-v3x]) .list-group-item__primary-text {
  font-weight: 700 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .fw-bolder {
  font-weight: bolder !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .lh-1 {
  line-height: 1 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .lh-sm {
  line-height: 1.25 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .lh-base {
  line-height: 1.5 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .lh-lg {
  line-height: 2 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-start {
  text-align: left !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-end {
  text-align: right !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-center {
  text-align: center !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-decoration-none, :where(theme-provider[data-theme=swizy-v3x]) .footer__list-item a {
  text-decoration: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-decoration-underline {
  text-decoration: underline !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-decoration-line-through {
  text-decoration: line-through !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-lowercase {
  text-transform: lowercase !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-uppercase {
  text-transform: uppercase !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-capitalize {
  text-transform: capitalize !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-wrap {
  white-space: normal !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-nowrap {
  white-space: nowrap !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-preline {
  white-space: pre-line !important;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /* rtl:begin:remove */
}
:where(theme-provider[data-theme=swizy-v3x]) .text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /* rtl:end:remove */
}
:where(theme-provider[data-theme=swizy-v3x]) .text-primary, :where(theme-provider[data-theme=swizy-v3x]) .html-content strong, :where(theme-provider[data-theme=swizy-v3x]) .html-content h1, :where(theme-provider[data-theme=swizy-v3x]) .html-content .h1, :where(theme-provider[data-theme=swizy-v3x]) .html-content h2, :where(theme-provider[data-theme=swizy-v3x]) .html-content .h2, :where(theme-provider[data-theme=swizy-v3x]) .html-content h3, :where(theme-provider[data-theme=swizy-v3x]) .html-content .h3, :where(theme-provider[data-theme=swizy-v3x]) .html-content h4, :where(theme-provider[data-theme=swizy-v3x]) .html-content .h4, :where(theme-provider[data-theme=swizy-v3x]) .html-content h5, :where(theme-provider[data-theme=swizy-v3x]) .html-content .h5, :where(theme-provider[data-theme=swizy-v3x]) .html-content .popover__title, :where(theme-provider[data-theme=swizy-v3x]) .html-content h6, :where(theme-provider[data-theme=swizy-v3x]) .html-content .h6, :where(theme-provider[data-theme=swizy-v3x]) .html-content .empty-view__label, :where(theme-provider[data-theme=swizy-v3x]) .html-content .wallet__nom, :where(theme-provider[data-theme=swizy-v3x]) .page__title-container__title, :where(theme-provider[data-theme=swizy-v3x]) .notification-item--unread .list-group-item__primary-text, :where(theme-provider[data-theme=swizy-v3x]) .form-control-group__label--emphasized, :where(theme-provider[data-theme=swizy-v3x]) .banner-wavy--primary .banner__title {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-secondary, :where(theme-provider[data-theme=swizy-v3x]) .section-newsletter__title, :where(theme-provider[data-theme=swizy-v3x]) .section-newsletter__surtitle, :where(theme-provider[data-theme=swizy-v3x]) .html-content a {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-danger, :where(theme-provider[data-theme=swizy-v3x]) .form-control-group__error {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-remise {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-remise-rgb), var(--bs-text-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-primary-tone {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-tone-rgb), var(--bs-text-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-secondary-tone {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-tone-rgb), var(--bs-text-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-info-tone {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-tone-rgb), var(--bs-text-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-success-tone {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-tone-rgb), var(--bs-text-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-warning-tone {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-tone-rgb), var(--bs-text-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-danger-tone {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-tone-rgb), var(--bs-text-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-neutral {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-neutral-rgb), var(--bs-text-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-swizy-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-swizy-primary-rgb), var(--bs-text-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-swizy-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-swizy-secondary-rgb), var(--bs-text-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-swizy-primary-tone {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-swizy-primary-tone-rgb), var(--bs-text-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-swizy-secondary-tone {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-swizy-secondary-tone-rgb), var(--bs-text-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-primary-7 {
  --bs-text-opacity: 1;
  color: rgb(0, 42.5361702128, 71.4) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-primary-6, :where(theme-provider[data-theme=swizy-v3x]) .empty-view__label {
  --bs-text-opacity: 1;
  color: rgb(0, 91.1489361702, 153) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-primary-5 {
  --bs-text-opacity: 1;
  color: rgb(0, 151.914893617, 255) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-primary-4 {
  --bs-text-opacity: 1;
  color: rgb(153, 213.7659574468, 255) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-primary-3 {
  --bs-text-opacity: 1;
  color: rgb(193.8, 230.2595744681, 255) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-primary-2 {
  --bs-text-opacity: 1;
  color: rgb(224.4, 242.629787234, 255) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-primary-1 {
  --bs-text-opacity: 1;
  color: rgb(239.7, 248.814893617, 255) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-secondary-7 {
  --bs-text-opacity: 1;
  color: rgb(6.3, 25.9, 65.1) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-secondary-6 {
  --bs-text-opacity: 1;
  color: rgb(13.5, 55.5, 139.5) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-secondary-5 {
  --bs-text-opacity: 1;
  color: rgb(22.5, 92.5, 232.5) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-secondary-4 {
  --bs-text-opacity: 1;
  color: #a2bef6 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-secondary-3 {
  --bs-text-opacity: 1;
  color: rgb(199.2, 216, 249.6) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-secondary-2 {
  --bs-text-opacity: 1;
  color: rgb(227.1, 235.5, 252.3) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-secondary-1 {
  --bs-text-opacity: 1;
  color: rgb(241.05, 245.25, 253.65) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-opacity-25 {
  --bs-text-opacity: 0.25;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-opacity-50 {
  --bs-text-opacity: 0.5;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-opacity-75 {
  --bs-text-opacity: 0.75;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-opacity-100 {
  --bs-text-opacity: 1;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-primary-emphasis {
  color: var(--bs-primary-text-emphasis) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-secondary-emphasis {
  color: var(--bs-secondary-text-emphasis) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-success-emphasis {
  color: var(--bs-success-text-emphasis) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-info-emphasis {
  color: var(--bs-info-text-emphasis) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-warning-emphasis {
  color: var(--bs-warning-text-emphasis) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-danger-emphasis {
  color: var(--bs-danger-text-emphasis) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-light-emphasis {
  color: var(--bs-light-text-emphasis) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-dark-emphasis {
  color: var(--bs-dark-text-emphasis) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-opacity-10 {
  --bs-link-opacity: 0.1;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-opacity-10-hover:hover {
  --bs-link-opacity: 0.1;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-opacity-25 {
  --bs-link-opacity: 0.25;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-opacity-25-hover:hover {
  --bs-link-opacity: 0.25;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-opacity-50 {
  --bs-link-opacity: 0.5;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-opacity-50-hover:hover {
  --bs-link-opacity: 0.5;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-opacity-75 {
  --bs-link-opacity: 0.75;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-opacity-75-hover:hover {
  --bs-link-opacity: 0.75;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-opacity-100 {
  --bs-link-opacity: 1;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-opacity-100-hover:hover {
  --bs-link-opacity: 1;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-offset-1 {
  text-underline-offset: 0.125em !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-offset-1-hover:hover {
  text-underline-offset: 0.125em !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-offset-2 {
  text-underline-offset: 0.25em !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-offset-2-hover:hover {
  text-underline-offset: 0.25em !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-offset-3 {
  text-underline-offset: 0.375em !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-offset-3-hover:hover {
  text-underline-offset: 0.375em !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-primary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-secondary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-success {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-info {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-warning {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-danger {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-light {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-dark {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-remise {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-remise-rgb), var(--bs-link-underline-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-primary-tone {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-primary-tone-rgb), var(--bs-link-underline-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-secondary-tone {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-secondary-tone-rgb), var(--bs-link-underline-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-info-tone {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-info-tone-rgb), var(--bs-link-underline-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-success-tone {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-success-tone-rgb), var(--bs-link-underline-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-warning-tone {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-warning-tone-rgb), var(--bs-link-underline-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-danger-tone {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-danger-tone-rgb), var(--bs-link-underline-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-neutral {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-neutral-rgb), var(--bs-link-underline-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-swizy-primary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-swizy-primary-rgb), var(--bs-link-underline-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-swizy-secondary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-swizy-secondary-rgb), var(--bs-link-underline-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-swizy-primary-tone {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-swizy-primary-tone-rgb), var(--bs-link-underline-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-swizy-secondary-tone {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-swizy-secondary-tone-rgb), var(--bs-link-underline-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-primary-7 {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-primary-7-rgb), var(--bs-link-underline-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-primary-6 {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-primary-6-rgb), var(--bs-link-underline-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-primary-5 {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-primary-5-rgb), var(--bs-link-underline-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-primary-4 {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-primary-4-rgb), var(--bs-link-underline-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-primary-3 {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-primary-3-rgb), var(--bs-link-underline-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-primary-2 {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-primary-2-rgb), var(--bs-link-underline-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-primary-1 {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-primary-1-rgb), var(--bs-link-underline-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-secondary-7 {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-secondary-7-rgb), var(--bs-link-underline-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-secondary-6 {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-secondary-6-rgb), var(--bs-link-underline-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-secondary-5 {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-secondary-5-rgb), var(--bs-link-underline-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-secondary-4 {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-secondary-4-rgb), var(--bs-link-underline-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-secondary-3 {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-secondary-3-rgb), var(--bs-link-underline-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-secondary-2 {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-secondary-2-rgb), var(--bs-link-underline-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-secondary-1 {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-secondary-1-rgb), var(--bs-link-underline-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-opacity-0 {
  --bs-link-underline-opacity: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-opacity-0-hover:hover {
  --bs-link-underline-opacity: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-opacity-10 {
  --bs-link-underline-opacity: 0.1;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-opacity-10-hover:hover {
  --bs-link-underline-opacity: 0.1;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-opacity-25 {
  --bs-link-underline-opacity: 0.25;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-opacity-25-hover:hover {
  --bs-link-underline-opacity: 0.25;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-opacity-50 {
  --bs-link-underline-opacity: 0.5;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-opacity-50-hover:hover {
  --bs-link-underline-opacity: 0.5;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-opacity-75 {
  --bs-link-underline-opacity: 0.75;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-opacity-75-hover:hover {
  --bs-link-underline-opacity: 0.75;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-opacity-100 {
  --bs-link-underline-opacity: 1;
}
:where(theme-provider[data-theme=swizy-v3x]) .link-underline-opacity-100-hover:hover {
  --bs-link-underline-opacity: 1;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-secondary, :where(theme-provider[data-theme=swizy-v3x]) .wizard__progress-stepper > div.wizard__progress-step--filled {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-remise {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-remise-rgb), var(--bs-bg-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-primary-tone {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-tone-rgb), var(--bs-bg-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-secondary-tone {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-tone-rgb), var(--bs-bg-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-info-tone {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-tone-rgb), var(--bs-bg-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-success-tone {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-tone-rgb), var(--bs-bg-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-warning-tone {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-tone-rgb), var(--bs-bg-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-danger-tone {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-tone-rgb), var(--bs-bg-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-neutral, :where(theme-provider[data-theme=swizy-v3x]) .form-control-group__input-container .input-group-text, :where(theme-provider[data-theme=swizy-v3x]) .form-control-group__input-container .form-select,
:where(theme-provider[data-theme=swizy-v3x]) .form-control-group__input-container .form-control {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-neutral-rgb), var(--bs-bg-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-swizy-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-swizy-primary-rgb), var(--bs-bg-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-swizy-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-swizy-secondary-rgb), var(--bs-bg-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-swizy-primary-tone {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-swizy-primary-tone-rgb), var(--bs-bg-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-swizy-secondary-tone {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-swizy-secondary-tone-rgb), var(--bs-bg-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-primary-7 {
  --bs-bg-opacity: 1;
  background-color: rgb(0, 42.5361702128, 71.4) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-primary-6 {
  --bs-bg-opacity: 1;
  background-color: rgb(0, 91.1489361702, 153) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-primary-5 {
  --bs-bg-opacity: 1;
  background-color: rgb(0, 151.914893617, 255) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-primary-4 {
  --bs-bg-opacity: 1;
  background-color: rgb(153, 213.7659574468, 255) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-primary-3 {
  --bs-bg-opacity: 1;
  background-color: rgb(193.8, 230.2595744681, 255) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-primary-2 {
  --bs-bg-opacity: 1;
  background-color: rgb(224.4, 242.629787234, 255) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-primary-1, :where(theme-provider[data-theme=swizy-v3x]) .swiper-pagination-bullets .swiper-pagination-bullet-active, :where(theme-provider[data-theme=swizy-v3x]) .banner-wavy--primary {
  --bs-bg-opacity: 1;
  background-color: rgb(239.7, 248.814893617, 255) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-secondary-7 {
  --bs-bg-opacity: 1;
  background-color: rgb(6.3, 25.9, 65.1) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-secondary-6 {
  --bs-bg-opacity: 1;
  background-color: rgb(13.5, 55.5, 139.5) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-secondary-5 {
  --bs-bg-opacity: 1;
  background-color: rgb(22.5, 92.5, 232.5) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-secondary-4 {
  --bs-bg-opacity: 1;
  background-color: #a2bef6 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-secondary-3 {
  --bs-bg-opacity: 1;
  background-color: rgb(199.2, 216, 249.6) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-secondary-2 {
  --bs-bg-opacity: 1;
  background-color: rgb(227.1, 235.5, 252.3) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-secondary-1, :where(theme-provider[data-theme=swizy-v3x]) .section-newsletter {
  --bs-bg-opacity: 1;
  background-color: rgb(241.05, 245.25, 253.65) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-primary-tone-7 {
  --bs-bg-opacity: 1;
  background-color: rgb(0, 42.5361702128, 71.4) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-primary-tone-6 {
  --bs-bg-opacity: 1;
  background-color: rgb(0, 91.1489361702, 153) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-primary-tone-5 {
  --bs-bg-opacity: 1;
  background-color: rgb(0, 151.914893617, 255) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-primary-tone-4 {
  --bs-bg-opacity: 1;
  background-color: rgb(153, 213.7659574468, 255) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-primary-tone-3 {
  --bs-bg-opacity: 1;
  background-color: rgb(193.8, 230.2595744681, 255) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-primary-tone-2 {
  --bs-bg-opacity: 1;
  background-color: rgb(224.4, 242.629787234, 255) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-primary-tone-1 {
  --bs-bg-opacity: 1;
  background-color: rgb(239.7, 248.814893617, 255) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-secondary-tone-7 {
  --bs-bg-opacity: 1;
  background-color: rgb(6.3, 25.9, 65.1) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-secondary-tone-6 {
  --bs-bg-opacity: 1;
  background-color: rgb(13.5, 55.5, 139.5) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-secondary-tone-5 {
  --bs-bg-opacity: 1;
  background-color: rgb(22.5, 92.5, 232.5) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-secondary-tone-4 {
  --bs-bg-opacity: 1;
  background-color: #a2bef6 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-secondary-tone-3 {
  --bs-bg-opacity: 1;
  background-color: rgb(199.2, 216, 249.6) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-secondary-tone-2 {
  --bs-bg-opacity: 1;
  background-color: rgb(227.1, 235.5, 252.3) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-secondary-tone-1 {
  --bs-bg-opacity: 1;
  background-color: rgb(241.05, 245.25, 253.65) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-swizy-brand-1, :where(theme-provider[data-theme=swizy-v3x]) .section-swizy {
  --bs-bg-opacity: 1;
  background-color: #f6faff !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-swizy-brand-2 {
  --bs-bg-opacity: 1;
  background-color: #e0f4ff !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-swizy-brand-3 {
  --bs-bg-opacity: 1;
  background-color: #bbdaf2 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-swizy-brand-4 {
  --bs-bg-opacity: 1;
  background-color: #009790 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-swizy-brand-5 {
  --bs-bg-opacity: 1;
  background-color: #203ab4 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-swizy-brand-6 {
  --bs-bg-opacity: 1;
  background-color: #e83c7b !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-swizy-brand-7 {
  --bs-bg-opacity: 1;
  background-color: #6a4094 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-swizy-brand-15 {
  --bs-bg-opacity: 1;
  background-color: #f6faff !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-swizy-brand-16 {
  --bs-bg-opacity: 1;
  background-color: #fff7cc !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-1, :where(theme-provider[data-theme=swizy-v3x]) .footer, :where(theme-provider[data-theme=swizy-v3x]) .image-placeholder, :where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-game, :where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-movie, :where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-book, :where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-music, :where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-sondages, :where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-jeux_concours, :where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-evenements, :where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-equipes, :where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-enquetes, :where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-articles, :where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-annonces, :where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-albums, :where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-actualites {
  --bs-bg-opacity: 1;
  background-color: rgb(247.35, 247.35, 247.35) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-2, :where(theme-provider[data-theme=swizy-v3x]) .wizard__progress-stepper > div {
  --bs-bg-opacity: 1;
  background-color: rgb(239.7, 239.7, 239.7) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-3 {
  --bs-bg-opacity: 1;
  background-color: rgb(232.05, 232.05, 232.05) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-4 {
  --bs-bg-opacity: 1;
  background-color: rgb(224.4, 224.4, 224.4) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-5 {
  --bs-bg-opacity: 1;
  background-color: rgb(216.75, 216.75, 216.75) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-6 {
  --bs-bg-opacity: 1;
  background-color: rgb(209.1, 209.1, 209.1) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-7 {
  --bs-bg-opacity: 1;
  background-color: rgb(201.45, 201.45, 201.45) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-8 {
  --bs-bg-opacity: 1;
  background-color: rgb(193.8, 193.8, 193.8) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-9 {
  --bs-bg-opacity: 1;
  background-color: rgb(186.15, 186.15, 186.15) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-10 {
  --bs-bg-opacity: 1;
  background-color: rgb(178.5, 178.5, 178.5) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-11 {
  --bs-bg-opacity: 1;
  background-color: rgb(170.85, 170.85, 170.85) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-12 {
  --bs-bg-opacity: 1;
  background-color: rgb(163.2, 163.2, 163.2) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-13 {
  --bs-bg-opacity: 1;
  background-color: rgb(155.55, 155.55, 155.55) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-14 {
  --bs-bg-opacity: 1;
  background-color: rgb(147.9, 147.9, 147.9) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-15 {
  --bs-bg-opacity: 1;
  background-color: rgb(140.25, 140.25, 140.25) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-16 {
  --bs-bg-opacity: 1;
  background-color: rgb(132.6, 132.6, 132.6) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-17 {
  --bs-bg-opacity: 1;
  background-color: rgb(124.95, 124.95, 124.95) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-18 {
  --bs-bg-opacity: 1;
  background-color: rgb(117.3, 117.3, 117.3) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-19 {
  --bs-bg-opacity: 1;
  background-color: rgb(109.65, 109.65, 109.65) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-20 {
  --bs-bg-opacity: 1;
  background-color: #666666 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-21 {
  --bs-bg-opacity: 1;
  background-color: rgb(94.35, 94.35, 94.35) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-22 {
  --bs-bg-opacity: 1;
  background-color: rgb(86.7, 86.7, 86.7) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-23 {
  --bs-bg-opacity: 1;
  background-color: rgb(79.05, 79.05, 79.05) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-24 {
  --bs-bg-opacity: 1;
  background-color: rgb(71.4, 71.4, 71.4) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-dark-1 {
  --bs-bg-opacity: 1;
  background-color: rgb(16.656, 17.35, 18.044) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-dark-2 {
  --bs-bg-opacity: 1;
  background-color: rgb(9.312, 9.7, 10.088) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-dark-3 {
  --bs-bg-opacity: 1;
  background-color: rgb(1.968, 2.05, 2.132) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-dark-4 {
  --bs-bg-opacity: 1;
  background-color: black !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-dark-5 {
  --bs-bg-opacity: 1;
  background-color: black !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-dark-6 {
  --bs-bg-opacity: 1;
  background-color: black !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-dark-7 {
  --bs-bg-opacity: 1;
  background-color: black !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-dark-8 {
  --bs-bg-opacity: 1;
  background-color: black !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-dark-9 {
  --bs-bg-opacity: 1;
  background-color: black !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-dark-10 {
  --bs-bg-opacity: 1;
  background-color: black !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-dark-11 {
  --bs-bg-opacity: 1;
  background-color: black !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-dark-12 {
  --bs-bg-opacity: 1;
  background-color: black !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-dark-13 {
  --bs-bg-opacity: 1;
  background-color: black !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-dark-14 {
  --bs-bg-opacity: 1;
  background-color: black !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-dark-15 {
  --bs-bg-opacity: 1;
  background-color: black !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-dark-16 {
  --bs-bg-opacity: 1;
  background-color: black !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-dark-17 {
  --bs-bg-opacity: 1;
  background-color: black !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-dark-18 {
  --bs-bg-opacity: 1;
  background-color: black !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-dark-19 {
  --bs-bg-opacity: 1;
  background-color: black !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-dark-20 {
  --bs-bg-opacity: 1;
  background-color: black !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-dark-21 {
  --bs-bg-opacity: 1;
  background-color: black !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-dark-22 {
  --bs-bg-opacity: 1;
  background-color: black !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-dark-23 {
  --bs-bg-opacity: 1;
  background-color: black !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper-dark-24 {
  --bs-bg-opacity: 1;
  background-color: black !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-opacity-100 {
  --bs-bg-opacity: 1;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-primary-subtle {
  background-color: var(--bs-primary-bg-subtle) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-secondary-subtle {
  background-color: var(--bs-secondary-bg-subtle) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-success-subtle {
  background-color: var(--bs-success-bg-subtle) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-info-subtle {
  background-color: var(--bs-info-bg-subtle) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-warning-subtle {
  background-color: var(--bs-warning-bg-subtle) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-danger-subtle {
  background-color: var(--bs-danger-bg-subtle) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-light-subtle {
  background-color: var(--bs-light-bg-subtle) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-dark-subtle {
  background-color: var(--bs-dark-bg-subtle) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-gradient {
  background-image: var(--bs-gradient) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .user-select-all {
  -webkit-user-select: all !important;
  -moz-user-select: all !important;
  user-select: all !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .user-select-auto {
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
  user-select: auto !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .user-select-none {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pe-none {
  pointer-events: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pe-auto {
  pointer-events: auto !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded {
  border-radius: 0.375rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-0 {
  border-radius: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-1, :where(theme-provider[data-theme=swizy-v3x]) .swiper-hero, :where(theme-provider[data-theme=swizy-v3x]) .section-newsletter__container-cta__input {
  border-radius: 0.25rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-2 {
  border-radius: 0.375rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-3, :where(theme-provider[data-theme=swizy-v3x]) .page-image__image, :where(theme-provider[data-theme=swizy-v3x]) .section-newsletter {
  border-radius: 0.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-4 {
  border-radius: 1rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-5 {
  border-radius: 2rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-circle {
  border-radius: 50% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-pill {
  border-radius: 50rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-top {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-top-0 {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-top-1 {
  border-top-left-radius: var(--bs-border-radius-sm) !important;
  border-top-right-radius: var(--bs-border-radius-sm) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-top-2 {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-top-3 {
  border-top-left-radius: var(--bs-border-radius-lg) !important;
  border-top-right-radius: var(--bs-border-radius-lg) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-top-4 {
  border-top-left-radius: var(--bs-border-radius-xl) !important;
  border-top-right-radius: var(--bs-border-radius-xl) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-top-5 {
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-top-circle {
  border-top-left-radius: 50% !important;
  border-top-right-radius: 50% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-top-pill {
  border-top-left-radius: var(--bs-border-radius-pill) !important;
  border-top-right-radius: var(--bs-border-radius-pill) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-end {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-end-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-end-1 {
  border-top-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-end-2 {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-end-3 {
  border-top-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-end-4 {
  border-top-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-end-5 {
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-end-circle {
  border-top-right-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-end-pill {
  border-top-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-bottom {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-bottom-0 {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-bottom-1 {
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-bottom-2 {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-bottom-3 {
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-bottom-4 {
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-bottom-5 {
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-bottom-circle {
  border-bottom-right-radius: 50% !important;
  border-bottom-left-radius: 50% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-bottom-pill {
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-start {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-start-0 {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-start-1 {
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  border-top-left-radius: var(--bs-border-radius-sm) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-start-2 {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-start-3 {
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  border-top-left-radius: var(--bs-border-radius-lg) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-start-4 {
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  border-top-left-radius: var(--bs-border-radius-xl) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-start-5 {
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-start-circle {
  border-bottom-left-radius: 50% !important;
  border-top-left-radius: 50% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-start-pill {
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  border-top-left-radius: var(--bs-border-radius-pill) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .visible {
  visibility: visible !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .invisible {
  visibility: hidden !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .z-n1 {
  z-index: -1 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .z-0 {
  z-index: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .z-1 {
  z-index: 1 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .z-2 {
  z-index: 2 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .z-3 {
  z-index: 3 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .z-dropdown {
  z-index: 1000 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .z-sticky {
  z-index: 1020 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .z-fixed {
  z-index: 1030 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .z-modal {
  z-index: 1055 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .z-popover {
  z-index: 1070 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .z-tooltip {
  z-index: 1080 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .z-toast {
  z-index: 1090 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-primary {
  --bs-bg-opacity: 1;
  background: 0, 112, 188 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-secondary, :where(theme-provider[data-theme=swizy-v3x]) .wizard__progress-stepper > div.wizard__progress-step--filled {
  --bs-bg-opacity: 1;
  background: 9, 37, 93 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-success {
  --bs-bg-opacity: 1;
  background: 0, 158, 96 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-info {
  --bs-bg-opacity: 1;
  background: 0, 93, 209 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-warning {
  --bs-bg-opacity: 1;
  background: 250, 83, 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-danger {
  --bs-bg-opacity: 1;
  background: 224, 0, 15 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-light {
  --bs-bg-opacity: 1;
  background: 248, 249, 250 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-dark {
  --bs-bg-opacity: 1;
  background: 24, 25, 26 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-remise {
  --bs-bg-opacity: 1;
  background: 225, 0, 60 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-primary-tone {
  --bs-bg-opacity: 1;
  background: 0, 112, 188 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-secondary-tone {
  --bs-bg-opacity: 1;
  background: 9, 37, 93 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-info-tone {
  --bs-bg-opacity: 1;
  background: 0, 93, 209 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-success-tone {
  --bs-bg-opacity: 1;
  background: 0, 158, 96 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-warning-tone {
  --bs-bg-opacity: 1;
  background: 250, 83, 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-danger-tone {
  --bs-bg-opacity: 1;
  background: 224, 0, 15 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-neutral, :where(theme-provider[data-theme=swizy-v3x]) .form-control-group__input-container .input-group-text, :where(theme-provider[data-theme=swizy-v3x]) .form-control-group__input-container .form-select,
:where(theme-provider[data-theme=swizy-v3x]) .form-control-group__input-container .form-control {
  --bs-bg-opacity: 1;
  background: 37, 38, 40 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-swizy-primary {
  --bs-bg-opacity: 1;
  background: 239, 66, 111 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-swizy-secondary {
  --bs-bg-opacity: 1;
  background: 9, 37, 93 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-swizy-primary-tone {
  --bs-bg-opacity: 1;
  background: 239, 66, 111 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-swizy-secondary-tone {
  --bs-bg-opacity: 1;
  background: 9, 37, 93 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-primary-7 {
  --bs-bg-opacity: 1;
  background: 0, 43, 71 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-primary-6 {
  --bs-bg-opacity: 1;
  background: 0, 91, 153 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-primary-5 {
  --bs-bg-opacity: 1;
  background: 0, 152, 255 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-primary-4 {
  --bs-bg-opacity: 1;
  background: 153, 214, 255 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-primary-3 {
  --bs-bg-opacity: 1;
  background: 194, 230, 255 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-primary-2 {
  --bs-bg-opacity: 1;
  background: 224, 243, 255 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-primary-1, :where(theme-provider[data-theme=swizy-v3x]) .swiper-pagination-bullets .swiper-pagination-bullet-active, :where(theme-provider[data-theme=swizy-v3x]) .banner-wavy--primary {
  --bs-bg-opacity: 1;
  background: 240, 249, 255 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-secondary-7 {
  --bs-bg-opacity: 1;
  background: 6, 26, 65 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-secondary-6 {
  --bs-bg-opacity: 1;
  background: 14, 55, 139 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-secondary-5 {
  --bs-bg-opacity: 1;
  background: 23, 92, 233 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-secondary-4 {
  --bs-bg-opacity: 1;
  background: 162, 190, 246 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-secondary-3 {
  --bs-bg-opacity: 1;
  background: 199, 216, 250 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-secondary-2 {
  --bs-bg-opacity: 1;
  background: 227, 235, 252 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-secondary-1, :where(theme-provider[data-theme=swizy-v3x]) .section-newsletter {
  --bs-bg-opacity: 1;
  background: 241, 245, 254 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-black {
  --bs-bg-opacity: 1;
  background: 0, 0, 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-white {
  --bs-bg-opacity: 1;
  background: 255, 255, 255 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-body {
  --bs-bg-opacity: 1;
  background: 255, 255, 255 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-swizy-gradient-primary {
  --bs-bg-opacity: 1;
  background: linear-gradient(91.38deg, #f76ea1 0%, #c082ca 25%, #00b8af 50%, #00a3eb 75%, #4c6dff 100%) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-swizy-gradient-1 {
  --bs-bg-opacity: 1;
  background: linear-gradient(109.64deg, #009790 0%, #203ab4 99.47%) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-swizy-gradient-2 {
  --bs-bg-opacity: 1;
  background: linear-gradient(110.22deg, #e83c7b 8.8%, #6a4094 100%) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-swizy-gradient-brand1, :where(theme-provider[data-theme=swizy-v3x]) .wallet--sub {
  --bs-bg-opacity: 1;
  background: linear-gradient(109.64deg, #009790 0%, #203ab4 99.47%) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-swizy-gradient-brand2, :where(theme-provider[data-theme=swizy-v3x]) .wallet--ecc {
  --bs-bg-opacity: 1;
  background: linear-gradient(110.22deg, #e83c7b 8.8%, #6a4094 100%) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-swizy-gradient-15-16 {
  --bs-bg-opacity: 1;
  background: linear-gradient(110.22deg, #f6faff 8.8%, #fff7cc 100%) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ratio-1x1 {
  aspect-ratio: 100% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ratio-4x3 {
  aspect-ratio: 75% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ratio-16x9 {
  aspect-ratio: 56.25% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ratio-21x9 {
  aspect-ratio: 42.8571428571% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ratio-mediatheque {
  aspect-ratio: 0.8327 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ratio-credit-card, :where(theme-provider[data-theme=swizy-v3x]) .wallet {
  aspect-ratio: 1.586 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ratio-petite-annonce-item {
  aspect-ratio: 1.6965 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ratio-boutique-hero {
  aspect-ratio: 2.887 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ratio-page-image {
  aspect-ratio: 2.7826 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ratio-page-image-narrow {
  aspect-ratio: 2.1195 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .ratio-map-card-header {
  aspect-ratio: 2.5 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .min-width-0 {
  min-width: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .min-width-50 {
  min-width: 50% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .min-width-100 {
  min-width: 100% !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .min-height-fill-available {
  min-height: -webkit-fill-available !important;
  min-height: -moz-available !important;
  min-height: fill-available !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-basis-0 {
  -ms-flex-preferred-size: 0 !important;
  flex-basis: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-0 {
  border-top-left-radius: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-05 {
  border-top-left-radius: 0.25rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-1 {
  border-top-left-radius: 0.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-2 {
  border-top-left-radius: 1rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-3 {
  border-top-left-radius: 1.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-4 {
  border-top-left-radius: 2rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-5 {
  border-top-left-radius: 2.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-6 {
  border-top-left-radius: 3rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-7 {
  border-top-left-radius: 3.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-8 {
  border-top-left-radius: 4rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-9 {
  border-top-left-radius: 4.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-10 {
  border-top-left-radius: 5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-te-0 {
  border-top-right-radius: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-te-05 {
  border-top-right-radius: 0.25rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-te-1 {
  border-top-right-radius: 0.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-te-2 {
  border-top-right-radius: 1rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-te-3 {
  border-top-right-radius: 1.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-te-4 {
  border-top-right-radius: 2rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-te-5 {
  border-top-right-radius: 2.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-te-6 {
  border-top-right-radius: 3rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-te-7 {
  border-top-right-radius: 3.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-te-8 {
  border-top-right-radius: 4rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-te-9 {
  border-top-right-radius: 4.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-te-10 {
  border-top-right-radius: 5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-be-0 {
  border-bottom-right-radius: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-be-05 {
  border-bottom-right-radius: 0.25rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-be-1 {
  border-bottom-right-radius: 0.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-be-2 {
  border-bottom-right-radius: 1rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-be-3 {
  border-bottom-right-radius: 1.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-be-4 {
  border-bottom-right-radius: 2rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-be-5 {
  border-bottom-right-radius: 2.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-be-6 {
  border-bottom-right-radius: 3rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-be-7 {
  border-bottom-right-radius: 3.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-be-8 {
  border-bottom-right-radius: 4rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-be-9 {
  border-bottom-right-radius: 4.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-be-10 {
  border-bottom-right-radius: 5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-0 {
  border-bottom-left-radius: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-05 {
  border-bottom-left-radius: 0.25rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-1 {
  border-bottom-left-radius: 0.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-2 {
  border-bottom-left-radius: 1rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-3 {
  border-bottom-left-radius: 1.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-4 {
  border-bottom-left-radius: 2rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-5 {
  border-bottom-left-radius: 2.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-6 {
  border-bottom-left-radius: 3rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-7 {
  border-bottom-left-radius: 3.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-8 {
  border-bottom-left-radius: 4rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-9 {
  border-bottom-left-radius: 4.5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-10 {
  border-bottom-left-radius: 5rem !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bf-blur-7, :where(theme-provider[data-theme=swizy-v3x]) .pswp.pswp--open {
  backdrop-filter: blur(7px) !important;
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .float-sm-start {
    float: left !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .float-sm-end {
    float: right !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .float-sm-none {
    float: none !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .object-fit-sm-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .object-fit-sm-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .object-fit-sm-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .object-fit-sm-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .object-fit-sm-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-sm-inline {
    display: inline !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-sm-inline-block {
    display: inline-block !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-sm-block {
    display: block !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-sm-grid {
    display: grid !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-sm-inline-grid {
    display: inline-grid !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-sm-table {
    display: table !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-sm-table-row {
    display: table-row !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-sm-table-cell {
    display: table-cell !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-sm-none {
    display: none !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .border-top-sm {
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .border-top-sm-0 {
    border-top: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-sm-10 {
    width: 10% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-sm-20 {
    width: 20% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-sm-30 {
    width: 30% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-sm-40 {
    width: 40% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-sm-60 {
    width: 60% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-sm-70 {
    width: 70% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-sm-80 {
    width: 80% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-sm-90 {
    width: 90% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-sm-25 {
    width: 25% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-sm-50 {
    width: 50% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-sm-75 {
    width: 75% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-sm-100 {
    width: 100% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-sm-auto {
    width: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-sm-fit-content {
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-sm-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 !important;
    flex: 1 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-sm-2 {
    -webkit-box-flex: 2 !important;
    -ms-flex: 2 !important;
    flex: 2 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-sm-3 {
    -webkit-box-flex: 3 !important;
    -ms-flex: 3 !important;
    flex: 3 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-sm-row, :where(theme-provider[data-theme=swizy-v3x]) .section__head .section__toolbar {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .justify-content-sm-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .order-sm-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .order-sm-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .order-sm-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .order-sm-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .order-sm-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .order-sm-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .order-sm-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .order-sm-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-sm-0 {
    margin: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-sm-05 {
    margin: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-sm-1 {
    margin: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-sm-2 {
    margin: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-sm-3 {
    margin: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-sm-4 {
    margin: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-sm-5 {
    margin: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-sm-6 {
    margin: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-sm-7 {
    margin: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-sm-8 {
    margin: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-sm-9 {
    margin: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-sm-10 {
    margin: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-sm-auto {
    margin: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-sm-05 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-sm-1 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-sm-2 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-sm-3 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-sm-4 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-sm-5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-sm-6 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-sm-7 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-sm-8 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-sm-9 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-sm-10 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-sm-05 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-sm-1 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-sm-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-sm-3 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-sm-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-sm-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-sm-6 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-sm-7 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-sm-8 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-sm-9 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-sm-10 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-sm-0 {
    margin-top: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-sm-05 {
    margin-top: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-sm-1 {
    margin-top: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-sm-2 {
    margin-top: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-sm-3 {
    margin-top: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-sm-4 {
    margin-top: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-sm-5 {
    margin-top: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-sm-6 {
    margin-top: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-sm-7 {
    margin-top: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-sm-8 {
    margin-top: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-sm-9 {
    margin-top: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-sm-10 {
    margin-top: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-sm-auto {
    margin-top: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-sm-0 {
    margin-right: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-sm-05 {
    margin-right: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-sm-1 {
    margin-right: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-sm-2 {
    margin-right: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-sm-3 {
    margin-right: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-sm-4 {
    margin-right: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-sm-5 {
    margin-right: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-sm-6 {
    margin-right: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-sm-7 {
    margin-right: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-sm-8 {
    margin-right: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-sm-9 {
    margin-right: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-sm-10 {
    margin-right: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-sm-auto {
    margin-right: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-sm-05 {
    margin-bottom: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-sm-1 {
    margin-bottom: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-sm-2 {
    margin-bottom: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-sm-3 {
    margin-bottom: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-sm-4 {
    margin-bottom: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-sm-5 {
    margin-bottom: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-sm-6 {
    margin-bottom: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-sm-7 {
    margin-bottom: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-sm-8 {
    margin-bottom: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-sm-9 {
    margin-bottom: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-sm-10 {
    margin-bottom: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-sm-auto {
    margin-bottom: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-sm-0 {
    margin-left: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-sm-05 {
    margin-left: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-sm-1 {
    margin-left: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-sm-2 {
    margin-left: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-sm-3 {
    margin-left: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-sm-4 {
    margin-left: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-sm-5 {
    margin-left: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-sm-6 {
    margin-left: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-sm-7 {
    margin-left: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-sm-8 {
    margin-left: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-sm-9 {
    margin-left: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-sm-10 {
    margin-left: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-sm-auto {
    margin-left: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-sm-0 {
    padding: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-sm-05 {
    padding: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-sm-1 {
    padding: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-sm-2 {
    padding: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-sm-3 {
    padding: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-sm-4 {
    padding: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-sm-5 {
    padding: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-sm-6 {
    padding: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-sm-7 {
    padding: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-sm-8 {
    padding: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-sm-9 {
    padding: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-sm-10 {
    padding: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-sm-05 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-sm-1 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-sm-2 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-sm-3 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-sm-4 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-sm-5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-sm-6 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-sm-7 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-sm-8 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-sm-9 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-sm-10 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-sm-05 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-sm-1 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-sm-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-sm-3 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-sm-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-sm-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-sm-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-sm-7 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-sm-8 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-sm-9 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-sm-10 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-sm-0 {
    padding-top: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-sm-05 {
    padding-top: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-sm-1 {
    padding-top: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-sm-2 {
    padding-top: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-sm-3 {
    padding-top: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-sm-4 {
    padding-top: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-sm-5 {
    padding-top: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-sm-6 {
    padding-top: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-sm-7 {
    padding-top: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-sm-8 {
    padding-top: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-sm-9 {
    padding-top: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-sm-10 {
    padding-top: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-sm-0 {
    padding-right: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-sm-05 {
    padding-right: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-sm-1 {
    padding-right: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-sm-2 {
    padding-right: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-sm-3 {
    padding-right: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-sm-4 {
    padding-right: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-sm-5 {
    padding-right: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-sm-6 {
    padding-right: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-sm-7 {
    padding-right: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-sm-8 {
    padding-right: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-sm-9 {
    padding-right: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-sm-10 {
    padding-right: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-sm-05 {
    padding-bottom: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-sm-1 {
    padding-bottom: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-sm-2 {
    padding-bottom: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-sm-3 {
    padding-bottom: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-sm-4 {
    padding-bottom: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-sm-5 {
    padding-bottom: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-sm-6 {
    padding-bottom: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-sm-7 {
    padding-bottom: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-sm-8 {
    padding-bottom: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-sm-9 {
    padding-bottom: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-sm-10 {
    padding-bottom: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-sm-0 {
    padding-left: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-sm-05 {
    padding-left: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-sm-1 {
    padding-left: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-sm-2 {
    padding-left: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-sm-3 {
    padding-left: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-sm-4 {
    padding-left: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-sm-5 {
    padding-left: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-sm-6 {
    padding-left: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-sm-7 {
    padding-left: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-sm-8 {
    padding-left: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-sm-9 {
    padding-left: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-sm-10 {
    padding-left: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-sm-0 {
    gap: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-sm-05 {
    gap: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-sm-1 {
    gap: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-sm-2 {
    gap: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-sm-3 {
    gap: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-sm-4 {
    gap: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-sm-5 {
    gap: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-sm-6 {
    gap: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-sm-7 {
    gap: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-sm-8 {
    gap: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-sm-9 {
    gap: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-sm-10 {
    gap: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-sm-0 {
    row-gap: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-sm-05 {
    row-gap: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-sm-1 {
    row-gap: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-sm-2 {
    row-gap: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-sm-3 {
    row-gap: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-sm-4 {
    row-gap: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-sm-5 {
    row-gap: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-sm-6 {
    row-gap: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-sm-7 {
    row-gap: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-sm-8 {
    row-gap: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-sm-9 {
    row-gap: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-sm-10 {
    row-gap: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-sm-0 {
    -webkit-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-sm-05 {
    -webkit-column-gap: 0.25rem !important;
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-sm-1 {
    -webkit-column-gap: 0.5rem !important;
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-sm-2 {
    -webkit-column-gap: 1rem !important;
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-sm-3 {
    -webkit-column-gap: 1.5rem !important;
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-sm-4 {
    -webkit-column-gap: 2rem !important;
    -moz-column-gap: 2rem !important;
    column-gap: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-sm-5 {
    -webkit-column-gap: 2.5rem !important;
    -moz-column-gap: 2.5rem !important;
    column-gap: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-sm-6 {
    -webkit-column-gap: 3rem !important;
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-sm-7 {
    -webkit-column-gap: 3.5rem !important;
    -moz-column-gap: 3.5rem !important;
    column-gap: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-sm-8 {
    -webkit-column-gap: 4rem !important;
    -moz-column-gap: 4rem !important;
    column-gap: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-sm-9 {
    -webkit-column-gap: 4.5rem !important;
    -moz-column-gap: 4.5rem !important;
    column-gap: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-sm-10 {
    -webkit-column-gap: 5rem !important;
    -moz-column-gap: 5rem !important;
    column-gap: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .text-sm-start {
    text-align: left !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .text-sm-end {
    text-align: right !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .text-sm-center {
    text-align: center !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-sm {
    border-radius: 0.375rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-sm-0 {
    border-radius: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-sm-1 {
    border-radius: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-sm-2 {
    border-radius: 0.375rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-sm-3 {
    border-radius: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-sm-4 {
    border-radius: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-sm-5 {
    border-radius: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-sm-circle {
    border-radius: 50% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-sm-pill {
    border-radius: 50rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-basis-sm-0 {
    -ms-flex-preferred-size: 0 !important;
    flex-basis: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-sm-0 {
    border-top-left-radius: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-sm-05 {
    border-top-left-radius: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-sm-1 {
    border-top-left-radius: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-sm-2 {
    border-top-left-radius: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-sm-3 {
    border-top-left-radius: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-sm-4 {
    border-top-left-radius: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-sm-5 {
    border-top-left-radius: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-sm-6 {
    border-top-left-radius: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-sm-7 {
    border-top-left-radius: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-sm-8 {
    border-top-left-radius: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-sm-9 {
    border-top-left-radius: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-sm-10 {
    border-top-left-radius: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-sm-0 {
    border-top-right-radius: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-sm-05 {
    border-top-right-radius: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-sm-1 {
    border-top-right-radius: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-sm-2 {
    border-top-right-radius: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-sm-3 {
    border-top-right-radius: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-sm-4 {
    border-top-right-radius: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-sm-5 {
    border-top-right-radius: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-sm-6 {
    border-top-right-radius: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-sm-7 {
    border-top-right-radius: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-sm-8 {
    border-top-right-radius: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-sm-9 {
    border-top-right-radius: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-sm-10 {
    border-top-right-radius: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-sm-0 {
    border-bottom-right-radius: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-sm-05 {
    border-bottom-right-radius: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-sm-1 {
    border-bottom-right-radius: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-sm-2 {
    border-bottom-right-radius: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-sm-3 {
    border-bottom-right-radius: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-sm-4 {
    border-bottom-right-radius: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-sm-5 {
    border-bottom-right-radius: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-sm-6 {
    border-bottom-right-radius: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-sm-7 {
    border-bottom-right-radius: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-sm-8 {
    border-bottom-right-radius: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-sm-9 {
    border-bottom-right-radius: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-sm-10 {
    border-bottom-right-radius: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-sm-0 {
    border-bottom-left-radius: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-sm-05 {
    border-bottom-left-radius: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-sm-1 {
    border-bottom-left-radius: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-sm-2 {
    border-bottom-left-radius: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-sm-3 {
    border-bottom-left-radius: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-sm-4 {
    border-bottom-left-radius: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-sm-5 {
    border-bottom-left-radius: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-sm-6 {
    border-bottom-left-radius: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-sm-7 {
    border-bottom-left-radius: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-sm-8 {
    border-bottom-left-radius: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-sm-9 {
    border-bottom-left-radius: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-sm-10 {
    border-bottom-left-radius: 5rem !important;
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .float-md-start {
    float: left !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .float-md-end {
    float: right !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .float-md-none {
    float: none !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .object-fit-md-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .object-fit-md-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .object-fit-md-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .object-fit-md-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .object-fit-md-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-md-inline {
    display: inline !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-md-inline-block {
    display: inline-block !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-md-block {
    display: block !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-md-grid {
    display: grid !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-md-inline-grid {
    display: inline-grid !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-md-table {
    display: table !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-md-table-row {
    display: table-row !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-md-table-cell {
    display: table-cell !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-md-none {
    display: none !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .border-top-md {
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .border-top-md-0 {
    border-top: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-md-10 {
    width: 10% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-md-20 {
    width: 20% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-md-30 {
    width: 30% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-md-40 {
    width: 40% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-md-60 {
    width: 60% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-md-70 {
    width: 70% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-md-80 {
    width: 80% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-md-90 {
    width: 90% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-md-25 {
    width: 25% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-md-50 {
    width: 50% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-md-75 {
    width: 75% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-md-100 {
    width: 100% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-md-auto {
    width: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-md-fit-content {
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-md-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 !important;
    flex: 1 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-md-2 {
    -webkit-box-flex: 2 !important;
    -ms-flex: 2 !important;
    flex: 2 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-md-3 {
    -webkit-box-flex: 3 !important;
    -ms-flex: 3 !important;
    flex: 3 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-md-row, :where(theme-provider[data-theme=swizy-v3x]) .section-newsletter__container-cta, :where(theme-provider[data-theme=swizy-v3x]) .section__head, :where(theme-provider[data-theme=swizy-v3x]) .section-swizy__head {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .justify-content-md-between, :where(theme-provider[data-theme=swizy-v3x]) .section-swizy__head {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .justify-content-md-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-items-md-center, :where(theme-provider[data-theme=swizy-v3x]) .section__head, :where(theme-provider[data-theme=swizy-v3x]) .section-swizy__head {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .order-md-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .order-md-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .order-md-1, :where(theme-provider[data-theme=swizy-v3x]) .section-swizy__head .section__title {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .order-md-2, :where(theme-provider[data-theme=swizy-v3x]) .section-swizy__logo {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .order-md-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .order-md-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .order-md-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .order-md-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-md-0 {
    margin: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-md-05 {
    margin: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-md-1 {
    margin: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-md-2 {
    margin: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-md-3 {
    margin: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-md-4 {
    margin: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-md-5 {
    margin: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-md-6 {
    margin: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-md-7 {
    margin: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-md-8 {
    margin: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-md-9 {
    margin: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-md-10 {
    margin: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-md-auto {
    margin: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-md-05 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-md-1 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-md-2 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-md-3 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-md-4 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-md-5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-md-6 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-md-7 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-md-8 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-md-9 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-md-10 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-md-05 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-md-1 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-md-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-md-3 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-md-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-md-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-md-6 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-md-7 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-md-8 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-md-9 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-md-10 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-md-0 {
    margin-top: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-md-05 {
    margin-top: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-md-1 {
    margin-top: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-md-2 {
    margin-top: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-md-3 {
    margin-top: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-md-4 {
    margin-top: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-md-5 {
    margin-top: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-md-6 {
    margin-top: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-md-7 {
    margin-top: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-md-8 {
    margin-top: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-md-9 {
    margin-top: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-md-10 {
    margin-top: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-md-auto {
    margin-top: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-md-0 {
    margin-right: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-md-05 {
    margin-right: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-md-1 {
    margin-right: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-md-2 {
    margin-right: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-md-3 {
    margin-right: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-md-4 {
    margin-right: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-md-5 {
    margin-right: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-md-6 {
    margin-right: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-md-7 {
    margin-right: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-md-8 {
    margin-right: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-md-9 {
    margin-right: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-md-10 {
    margin-right: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-md-auto {
    margin-right: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-md-0 {
    margin-bottom: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-md-05 {
    margin-bottom: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-md-1 {
    margin-bottom: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-md-2 {
    margin-bottom: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-md-3 {
    margin-bottom: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-md-4 {
    margin-bottom: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-md-5 {
    margin-bottom: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-md-6 {
    margin-bottom: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-md-7 {
    margin-bottom: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-md-8 {
    margin-bottom: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-md-9 {
    margin-bottom: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-md-10 {
    margin-bottom: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-md-auto {
    margin-bottom: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-md-0 {
    margin-left: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-md-05 {
    margin-left: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-md-1 {
    margin-left: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-md-2 {
    margin-left: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-md-3 {
    margin-left: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-md-4 {
    margin-left: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-md-5 {
    margin-left: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-md-6 {
    margin-left: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-md-7 {
    margin-left: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-md-8 {
    margin-left: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-md-9 {
    margin-left: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-md-10 {
    margin-left: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-md-auto {
    margin-left: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-md-0 {
    padding: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-md-05 {
    padding: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-md-1 {
    padding: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-md-2 {
    padding: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-md-3 {
    padding: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-md-4 {
    padding: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-md-5 {
    padding: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-md-6 {
    padding: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-md-7 {
    padding: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-md-8 {
    padding: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-md-9 {
    padding: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-md-10 {
    padding: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-md-05 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-md-1 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-md-2 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-md-3 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-md-4 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-md-5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-md-6 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-md-7 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-md-8 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-md-9 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-md-10 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-md-05 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-md-1 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-md-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-md-3 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-md-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-md-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-md-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-md-7 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-md-8 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-md-9 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-md-10 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-md-0 {
    padding-top: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-md-05 {
    padding-top: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-md-1 {
    padding-top: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-md-2 {
    padding-top: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-md-3 {
    padding-top: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-md-4 {
    padding-top: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-md-5 {
    padding-top: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-md-6 {
    padding-top: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-md-7 {
    padding-top: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-md-8 {
    padding-top: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-md-9 {
    padding-top: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-md-10 {
    padding-top: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-md-0 {
    padding-right: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-md-05 {
    padding-right: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-md-1 {
    padding-right: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-md-2 {
    padding-right: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-md-3 {
    padding-right: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-md-4 {
    padding-right: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-md-5 {
    padding-right: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-md-6 {
    padding-right: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-md-7 {
    padding-right: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-md-8 {
    padding-right: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-md-9 {
    padding-right: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-md-10 {
    padding-right: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-md-0 {
    padding-bottom: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-md-05 {
    padding-bottom: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-md-1 {
    padding-bottom: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-md-2 {
    padding-bottom: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-md-3 {
    padding-bottom: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-md-4 {
    padding-bottom: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-md-5 {
    padding-bottom: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-md-6 {
    padding-bottom: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-md-7 {
    padding-bottom: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-md-8 {
    padding-bottom: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-md-9 {
    padding-bottom: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-md-10 {
    padding-bottom: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-md-0 {
    padding-left: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-md-05 {
    padding-left: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-md-1 {
    padding-left: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-md-2 {
    padding-left: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-md-3 {
    padding-left: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-md-4 {
    padding-left: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-md-5 {
    padding-left: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-md-6 {
    padding-left: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-md-7 {
    padding-left: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-md-8 {
    padding-left: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-md-9 {
    padding-left: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-md-10 {
    padding-left: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-md-0 {
    gap: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-md-05 {
    gap: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-md-1 {
    gap: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-md-2 {
    gap: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-md-3 {
    gap: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-md-4 {
    gap: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-md-5 {
    gap: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-md-6 {
    gap: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-md-7 {
    gap: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-md-8 {
    gap: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-md-9 {
    gap: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-md-10 {
    gap: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-md-0 {
    row-gap: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-md-05 {
    row-gap: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-md-1 {
    row-gap: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-md-2 {
    row-gap: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-md-3 {
    row-gap: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-md-4 {
    row-gap: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-md-5 {
    row-gap: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-md-6 {
    row-gap: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-md-7 {
    row-gap: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-md-8 {
    row-gap: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-md-9 {
    row-gap: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-md-10 {
    row-gap: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-md-0 {
    -webkit-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-md-05 {
    -webkit-column-gap: 0.25rem !important;
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-md-1 {
    -webkit-column-gap: 0.5rem !important;
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-md-2 {
    -webkit-column-gap: 1rem !important;
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-md-3 {
    -webkit-column-gap: 1.5rem !important;
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-md-4 {
    -webkit-column-gap: 2rem !important;
    -moz-column-gap: 2rem !important;
    column-gap: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-md-5 {
    -webkit-column-gap: 2.5rem !important;
    -moz-column-gap: 2.5rem !important;
    column-gap: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-md-6 {
    -webkit-column-gap: 3rem !important;
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-md-7 {
    -webkit-column-gap: 3.5rem !important;
    -moz-column-gap: 3.5rem !important;
    column-gap: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-md-8 {
    -webkit-column-gap: 4rem !important;
    -moz-column-gap: 4rem !important;
    column-gap: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-md-9 {
    -webkit-column-gap: 4.5rem !important;
    -moz-column-gap: 4.5rem !important;
    column-gap: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-md-10 {
    -webkit-column-gap: 5rem !important;
    -moz-column-gap: 5rem !important;
    column-gap: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .text-md-start {
    text-align: left !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .text-md-end {
    text-align: right !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .text-md-center {
    text-align: center !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-md {
    border-radius: 0.375rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-md-0 {
    border-radius: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-md-1 {
    border-radius: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-md-2 {
    border-radius: 0.375rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-md-3 {
    border-radius: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-md-4 {
    border-radius: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-md-5 {
    border-radius: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-md-circle {
    border-radius: 50% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-md-pill {
    border-radius: 50rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-basis-md-0 {
    -ms-flex-preferred-size: 0 !important;
    flex-basis: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-md-0 {
    border-top-left-radius: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-md-05 {
    border-top-left-radius: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-md-1 {
    border-top-left-radius: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-md-2 {
    border-top-left-radius: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-md-3 {
    border-top-left-radius: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-md-4 {
    border-top-left-radius: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-md-5 {
    border-top-left-radius: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-md-6 {
    border-top-left-radius: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-md-7 {
    border-top-left-radius: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-md-8 {
    border-top-left-radius: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-md-9 {
    border-top-left-radius: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-md-10 {
    border-top-left-radius: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-md-0 {
    border-top-right-radius: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-md-05 {
    border-top-right-radius: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-md-1 {
    border-top-right-radius: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-md-2 {
    border-top-right-radius: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-md-3 {
    border-top-right-radius: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-md-4 {
    border-top-right-radius: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-md-5 {
    border-top-right-radius: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-md-6 {
    border-top-right-radius: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-md-7 {
    border-top-right-radius: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-md-8 {
    border-top-right-radius: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-md-9 {
    border-top-right-radius: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-md-10 {
    border-top-right-radius: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-md-0 {
    border-bottom-right-radius: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-md-05 {
    border-bottom-right-radius: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-md-1 {
    border-bottom-right-radius: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-md-2 {
    border-bottom-right-radius: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-md-3 {
    border-bottom-right-radius: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-md-4 {
    border-bottom-right-radius: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-md-5 {
    border-bottom-right-radius: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-md-6 {
    border-bottom-right-radius: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-md-7 {
    border-bottom-right-radius: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-md-8 {
    border-bottom-right-radius: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-md-9 {
    border-bottom-right-radius: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-md-10 {
    border-bottom-right-radius: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-md-0 {
    border-bottom-left-radius: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-md-05 {
    border-bottom-left-radius: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-md-1 {
    border-bottom-left-radius: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-md-2 {
    border-bottom-left-radius: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-md-3 {
    border-bottom-left-radius: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-md-4 {
    border-bottom-left-radius: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-md-5 {
    border-bottom-left-radius: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-md-6 {
    border-bottom-left-radius: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-md-7 {
    border-bottom-left-radius: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-md-8 {
    border-bottom-left-radius: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-md-9 {
    border-bottom-left-radius: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-md-10 {
    border-bottom-left-radius: 5rem !important;
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .float-lg-start {
    float: left !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .float-lg-end {
    float: right !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .float-lg-none {
    float: none !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .object-fit-lg-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .object-fit-lg-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .object-fit-lg-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .object-fit-lg-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .object-fit-lg-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-lg-inline {
    display: inline !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-lg-inline-block {
    display: inline-block !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-lg-block {
    display: block !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-lg-grid {
    display: grid !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-lg-inline-grid {
    display: inline-grid !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-lg-table {
    display: table !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-lg-table-row {
    display: table-row !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-lg-table-cell {
    display: table-cell !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-lg-none {
    display: none !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .border-top-lg {
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .border-top-lg-0 {
    border-top: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-lg-10 {
    width: 10% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-lg-20 {
    width: 20% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-lg-30 {
    width: 30% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-lg-40 {
    width: 40% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-lg-60 {
    width: 60% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-lg-70 {
    width: 70% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-lg-80 {
    width: 80% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-lg-90 {
    width: 90% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-lg-25 {
    width: 25% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-lg-50 {
    width: 50% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-lg-75 {
    width: 75% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-lg-100 {
    width: 100% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-lg-auto {
    width: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-lg-fit-content {
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-lg-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 !important;
    flex: 1 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-lg-2 {
    -webkit-box-flex: 2 !important;
    -ms-flex: 2 !important;
    flex: 2 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-lg-3 {
    -webkit-box-flex: 3 !important;
    -ms-flex: 3 !important;
    flex: 3 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .justify-content-lg-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .order-lg-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .order-lg-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .order-lg-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .order-lg-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .order-lg-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .order-lg-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .order-lg-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .order-lg-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-lg-0 {
    margin: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-lg-05 {
    margin: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-lg-1 {
    margin: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-lg-2 {
    margin: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-lg-3 {
    margin: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-lg-4 {
    margin: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-lg-5 {
    margin: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-lg-6 {
    margin: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-lg-7 {
    margin: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-lg-8 {
    margin: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-lg-9 {
    margin: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-lg-10 {
    margin: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-lg-auto {
    margin: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-lg-05 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-lg-1 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-lg-2 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-lg-3 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-lg-4 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-lg-5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-lg-6 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-lg-7 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-lg-8 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-lg-9 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-lg-10 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-lg-05 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-lg-1 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-lg-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-lg-3 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-lg-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-lg-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-lg-6 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-lg-7 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-lg-8 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-lg-9 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-lg-10 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-lg-0 {
    margin-top: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-lg-05 {
    margin-top: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-lg-1 {
    margin-top: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-lg-2 {
    margin-top: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-lg-3 {
    margin-top: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-lg-4 {
    margin-top: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-lg-5 {
    margin-top: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-lg-6 {
    margin-top: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-lg-7 {
    margin-top: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-lg-8 {
    margin-top: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-lg-9 {
    margin-top: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-lg-10 {
    margin-top: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-lg-auto {
    margin-top: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-lg-0 {
    margin-right: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-lg-05 {
    margin-right: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-lg-1 {
    margin-right: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-lg-2 {
    margin-right: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-lg-3 {
    margin-right: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-lg-4 {
    margin-right: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-lg-5 {
    margin-right: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-lg-6 {
    margin-right: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-lg-7 {
    margin-right: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-lg-8 {
    margin-right: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-lg-9 {
    margin-right: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-lg-10 {
    margin-right: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-lg-auto {
    margin-right: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-lg-05 {
    margin-bottom: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-lg-1 {
    margin-bottom: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-lg-2 {
    margin-bottom: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-lg-3 {
    margin-bottom: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-lg-4 {
    margin-bottom: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-lg-5 {
    margin-bottom: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-lg-6 {
    margin-bottom: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-lg-7 {
    margin-bottom: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-lg-8 {
    margin-bottom: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-lg-9 {
    margin-bottom: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-lg-10 {
    margin-bottom: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-lg-auto {
    margin-bottom: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-lg-0 {
    margin-left: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-lg-05 {
    margin-left: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-lg-1 {
    margin-left: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-lg-2 {
    margin-left: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-lg-3 {
    margin-left: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-lg-4 {
    margin-left: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-lg-5 {
    margin-left: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-lg-6 {
    margin-left: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-lg-7 {
    margin-left: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-lg-8 {
    margin-left: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-lg-9 {
    margin-left: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-lg-10 {
    margin-left: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-lg-auto {
    margin-left: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-lg-0 {
    padding: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-lg-05 {
    padding: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-lg-1 {
    padding: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-lg-2 {
    padding: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-lg-3 {
    padding: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-lg-4 {
    padding: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-lg-5 {
    padding: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-lg-6 {
    padding: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-lg-7 {
    padding: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-lg-8 {
    padding: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-lg-9 {
    padding: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-lg-10 {
    padding: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-lg-05 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-lg-1 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-lg-2 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-lg-3 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-lg-4 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-lg-5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-lg-6 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-lg-7 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-lg-8 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-lg-9 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-lg-10 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-lg-05 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-lg-1 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-lg-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-lg-3 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-lg-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-lg-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-lg-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-lg-7 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-lg-8 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-lg-9 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-lg-10 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-lg-0 {
    padding-top: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-lg-05 {
    padding-top: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-lg-1 {
    padding-top: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-lg-2 {
    padding-top: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-lg-3 {
    padding-top: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-lg-4 {
    padding-top: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-lg-5 {
    padding-top: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-lg-6 {
    padding-top: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-lg-7 {
    padding-top: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-lg-8 {
    padding-top: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-lg-9 {
    padding-top: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-lg-10 {
    padding-top: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-lg-0 {
    padding-right: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-lg-05 {
    padding-right: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-lg-1 {
    padding-right: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-lg-2 {
    padding-right: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-lg-3 {
    padding-right: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-lg-4 {
    padding-right: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-lg-5 {
    padding-right: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-lg-6 {
    padding-right: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-lg-7 {
    padding-right: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-lg-8 {
    padding-right: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-lg-9 {
    padding-right: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-lg-10 {
    padding-right: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-lg-05 {
    padding-bottom: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-lg-1 {
    padding-bottom: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-lg-2 {
    padding-bottom: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-lg-3 {
    padding-bottom: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-lg-4 {
    padding-bottom: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-lg-5 {
    padding-bottom: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-lg-6 {
    padding-bottom: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-lg-7 {
    padding-bottom: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-lg-8 {
    padding-bottom: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-lg-9 {
    padding-bottom: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-lg-10 {
    padding-bottom: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-lg-0 {
    padding-left: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-lg-05 {
    padding-left: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-lg-1 {
    padding-left: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-lg-2 {
    padding-left: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-lg-3 {
    padding-left: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-lg-4 {
    padding-left: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-lg-5 {
    padding-left: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-lg-6 {
    padding-left: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-lg-7 {
    padding-left: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-lg-8 {
    padding-left: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-lg-9 {
    padding-left: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-lg-10 {
    padding-left: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-lg-0 {
    gap: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-lg-05 {
    gap: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-lg-1 {
    gap: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-lg-2 {
    gap: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-lg-3 {
    gap: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-lg-4 {
    gap: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-lg-5 {
    gap: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-lg-6 {
    gap: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-lg-7 {
    gap: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-lg-8 {
    gap: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-lg-9 {
    gap: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-lg-10 {
    gap: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-lg-0 {
    row-gap: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-lg-05 {
    row-gap: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-lg-1 {
    row-gap: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-lg-2 {
    row-gap: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-lg-3 {
    row-gap: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-lg-4 {
    row-gap: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-lg-5 {
    row-gap: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-lg-6 {
    row-gap: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-lg-7 {
    row-gap: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-lg-8 {
    row-gap: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-lg-9 {
    row-gap: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-lg-10 {
    row-gap: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-lg-0 {
    -webkit-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-lg-05 {
    -webkit-column-gap: 0.25rem !important;
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-lg-1 {
    -webkit-column-gap: 0.5rem !important;
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-lg-2 {
    -webkit-column-gap: 1rem !important;
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-lg-3 {
    -webkit-column-gap: 1.5rem !important;
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-lg-4 {
    -webkit-column-gap: 2rem !important;
    -moz-column-gap: 2rem !important;
    column-gap: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-lg-5 {
    -webkit-column-gap: 2.5rem !important;
    -moz-column-gap: 2.5rem !important;
    column-gap: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-lg-6 {
    -webkit-column-gap: 3rem !important;
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-lg-7 {
    -webkit-column-gap: 3.5rem !important;
    -moz-column-gap: 3.5rem !important;
    column-gap: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-lg-8 {
    -webkit-column-gap: 4rem !important;
    -moz-column-gap: 4rem !important;
    column-gap: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-lg-9 {
    -webkit-column-gap: 4.5rem !important;
    -moz-column-gap: 4.5rem !important;
    column-gap: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-lg-10 {
    -webkit-column-gap: 5rem !important;
    -moz-column-gap: 5rem !important;
    column-gap: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .text-lg-start {
    text-align: left !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .text-lg-end {
    text-align: right !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .text-lg-center {
    text-align: center !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-lg {
    border-radius: 0.375rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-lg-0 {
    border-radius: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-lg-1 {
    border-radius: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-lg-2 {
    border-radius: 0.375rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-lg-3 {
    border-radius: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-lg-4 {
    border-radius: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-lg-5 {
    border-radius: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-lg-circle {
    border-radius: 50% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-lg-pill {
    border-radius: 50rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-basis-lg-0 {
    -ms-flex-preferred-size: 0 !important;
    flex-basis: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-lg-0 {
    border-top-left-radius: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-lg-05 {
    border-top-left-radius: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-lg-1 {
    border-top-left-radius: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-lg-2 {
    border-top-left-radius: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-lg-3 {
    border-top-left-radius: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-lg-4 {
    border-top-left-radius: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-lg-5 {
    border-top-left-radius: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-lg-6 {
    border-top-left-radius: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-lg-7 {
    border-top-left-radius: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-lg-8 {
    border-top-left-radius: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-lg-9 {
    border-top-left-radius: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-lg-10 {
    border-top-left-radius: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-lg-0 {
    border-top-right-radius: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-lg-05 {
    border-top-right-radius: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-lg-1 {
    border-top-right-radius: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-lg-2 {
    border-top-right-radius: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-lg-3 {
    border-top-right-radius: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-lg-4 {
    border-top-right-radius: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-lg-5 {
    border-top-right-radius: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-lg-6 {
    border-top-right-radius: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-lg-7 {
    border-top-right-radius: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-lg-8 {
    border-top-right-radius: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-lg-9 {
    border-top-right-radius: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-lg-10 {
    border-top-right-radius: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-lg-0 {
    border-bottom-right-radius: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-lg-05 {
    border-bottom-right-radius: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-lg-1 {
    border-bottom-right-radius: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-lg-2 {
    border-bottom-right-radius: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-lg-3 {
    border-bottom-right-radius: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-lg-4 {
    border-bottom-right-radius: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-lg-5 {
    border-bottom-right-radius: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-lg-6 {
    border-bottom-right-radius: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-lg-7 {
    border-bottom-right-radius: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-lg-8 {
    border-bottom-right-radius: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-lg-9 {
    border-bottom-right-radius: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-lg-10 {
    border-bottom-right-radius: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-lg-0 {
    border-bottom-left-radius: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-lg-05 {
    border-bottom-left-radius: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-lg-1 {
    border-bottom-left-radius: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-lg-2 {
    border-bottom-left-radius: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-lg-3 {
    border-bottom-left-radius: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-lg-4 {
    border-bottom-left-radius: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-lg-5 {
    border-bottom-left-radius: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-lg-6 {
    border-bottom-left-radius: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-lg-7 {
    border-bottom-left-radius: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-lg-8 {
    border-bottom-left-radius: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-lg-9 {
    border-bottom-left-radius: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-lg-10 {
    border-bottom-left-radius: 5rem !important;
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .float-xl-start {
    float: left !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .float-xl-end {
    float: right !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .float-xl-none {
    float: none !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .object-fit-xl-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .object-fit-xl-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .object-fit-xl-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .object-fit-xl-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .object-fit-xl-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-xl-inline {
    display: inline !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-xl-inline-block {
    display: inline-block !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-xl-block {
    display: block !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-xl-grid {
    display: grid !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-xl-inline-grid {
    display: inline-grid !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-xl-table {
    display: table !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-xl-table-row {
    display: table-row !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-xl-table-cell {
    display: table-cell !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-xl-none {
    display: none !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .border-top-xl {
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .border-top-xl-0 {
    border-top: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-xl-10 {
    width: 10% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-xl-20 {
    width: 20% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-xl-30 {
    width: 30% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-xl-40 {
    width: 40% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-xl-60 {
    width: 60% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-xl-70 {
    width: 70% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-xl-80 {
    width: 80% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-xl-90 {
    width: 90% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-xl-25 {
    width: 25% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-xl-50 {
    width: 50% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-xl-75 {
    width: 75% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-xl-100 {
    width: 100% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-xl-auto {
    width: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .w-xl-fit-content {
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-xl-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 !important;
    flex: 1 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-xl-2 {
    -webkit-box-flex: 2 !important;
    -ms-flex: 2 !important;
    flex: 2 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-xl-3 {
    -webkit-box-flex: 3 !important;
    -ms-flex: 3 !important;
    flex: 3 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .justify-content-xl-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .order-xl-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .order-xl-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .order-xl-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .order-xl-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .order-xl-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .order-xl-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .order-xl-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .order-xl-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-xl-0 {
    margin: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-xl-05 {
    margin: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-xl-1 {
    margin: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-xl-2 {
    margin: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-xl-3 {
    margin: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-xl-4 {
    margin: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-xl-5 {
    margin: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-xl-6 {
    margin: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-xl-7 {
    margin: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-xl-8 {
    margin: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-xl-9 {
    margin: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-xl-10 {
    margin: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .m-xl-auto {
    margin: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-xl-05 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-xl-1 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-xl-2 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-xl-3 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-xl-4 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-xl-5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-xl-6 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-xl-7 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-xl-8 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-xl-9 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-xl-10 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-xl-05 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-xl-1 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-xl-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-xl-3 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-xl-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-xl-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-xl-6 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-xl-7 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-xl-8 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-xl-9 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-xl-10 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-xl-0 {
    margin-top: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-xl-05 {
    margin-top: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-xl-1 {
    margin-top: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-xl-2 {
    margin-top: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-xl-3 {
    margin-top: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-xl-4 {
    margin-top: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-xl-5 {
    margin-top: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-xl-6 {
    margin-top: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-xl-7 {
    margin-top: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-xl-8 {
    margin-top: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-xl-9 {
    margin-top: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-xl-10 {
    margin-top: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mt-xl-auto {
    margin-top: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-xl-0 {
    margin-right: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-xl-05 {
    margin-right: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-xl-1 {
    margin-right: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-xl-2 {
    margin-right: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-xl-3 {
    margin-right: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-xl-4 {
    margin-right: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-xl-5 {
    margin-right: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-xl-6 {
    margin-right: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-xl-7 {
    margin-right: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-xl-8 {
    margin-right: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-xl-9 {
    margin-right: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-xl-10 {
    margin-right: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .me-xl-auto {
    margin-right: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-xl-05 {
    margin-bottom: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-xl-1 {
    margin-bottom: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-xl-2 {
    margin-bottom: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-xl-3 {
    margin-bottom: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-xl-4 {
    margin-bottom: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-xl-5 {
    margin-bottom: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-xl-6 {
    margin-bottom: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-xl-7 {
    margin-bottom: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-xl-8 {
    margin-bottom: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-xl-9 {
    margin-bottom: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-xl-10 {
    margin-bottom: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .mb-xl-auto {
    margin-bottom: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-xl-0 {
    margin-left: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-xl-05 {
    margin-left: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-xl-1 {
    margin-left: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-xl-2 {
    margin-left: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-xl-3 {
    margin-left: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-xl-4 {
    margin-left: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-xl-5 {
    margin-left: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-xl-6 {
    margin-left: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-xl-7 {
    margin-left: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-xl-8 {
    margin-left: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-xl-9 {
    margin-left: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-xl-10 {
    margin-left: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ms-xl-auto {
    margin-left: auto !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-xl-0 {
    padding: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-xl-05 {
    padding: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-xl-1 {
    padding: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-xl-2 {
    padding: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-xl-3 {
    padding: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-xl-4 {
    padding: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-xl-5 {
    padding: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-xl-6 {
    padding: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-xl-7 {
    padding: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-xl-8 {
    padding: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-xl-9 {
    padding: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .p-xl-10 {
    padding: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-xl-05 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-xl-1 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-xl-2 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-xl-3 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-xl-4 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-xl-5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-xl-6 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-xl-7 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-xl-8 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-xl-9 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .px-xl-10 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-xl-05 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-xl-1 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-xl-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-xl-3 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-xl-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-xl-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-xl-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-xl-7 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-xl-8 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-xl-9 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .py-xl-10 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-xl-0 {
    padding-top: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-xl-05 {
    padding-top: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-xl-1 {
    padding-top: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-xl-2 {
    padding-top: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-xl-3 {
    padding-top: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-xl-4 {
    padding-top: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-xl-5 {
    padding-top: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-xl-6 {
    padding-top: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-xl-7 {
    padding-top: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-xl-8 {
    padding-top: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-xl-9 {
    padding-top: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pt-xl-10 {
    padding-top: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-xl-0 {
    padding-right: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-xl-05 {
    padding-right: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-xl-1 {
    padding-right: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-xl-2 {
    padding-right: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-xl-3 {
    padding-right: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-xl-4 {
    padding-right: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-xl-5 {
    padding-right: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-xl-6 {
    padding-right: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-xl-7 {
    padding-right: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-xl-8 {
    padding-right: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-xl-9 {
    padding-right: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pe-xl-10 {
    padding-right: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-xl-05 {
    padding-bottom: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-xl-1 {
    padding-bottom: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-xl-2 {
    padding-bottom: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-xl-3 {
    padding-bottom: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-xl-4 {
    padding-bottom: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-xl-5 {
    padding-bottom: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-xl-6 {
    padding-bottom: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-xl-7 {
    padding-bottom: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-xl-8 {
    padding-bottom: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-xl-9 {
    padding-bottom: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .pb-xl-10 {
    padding-bottom: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-xl-0 {
    padding-left: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-xl-05 {
    padding-left: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-xl-1 {
    padding-left: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-xl-2 {
    padding-left: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-xl-3 {
    padding-left: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-xl-4 {
    padding-left: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-xl-5 {
    padding-left: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-xl-6 {
    padding-left: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-xl-7 {
    padding-left: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-xl-8 {
    padding-left: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-xl-9 {
    padding-left: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .ps-xl-10 {
    padding-left: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-xl-0 {
    gap: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-xl-05 {
    gap: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-xl-1 {
    gap: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-xl-2 {
    gap: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-xl-3 {
    gap: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-xl-4 {
    gap: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-xl-5 {
    gap: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-xl-6 {
    gap: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-xl-7 {
    gap: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-xl-8 {
    gap: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-xl-9 {
    gap: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .gap-xl-10 {
    gap: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-xl-0 {
    row-gap: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-xl-05 {
    row-gap: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-xl-1 {
    row-gap: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-xl-2 {
    row-gap: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-xl-3 {
    row-gap: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-xl-4 {
    row-gap: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-xl-5 {
    row-gap: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-xl-6 {
    row-gap: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-xl-7 {
    row-gap: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-xl-8 {
    row-gap: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-xl-9 {
    row-gap: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .row-gap-xl-10 {
    row-gap: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-xl-0 {
    -webkit-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-xl-05 {
    -webkit-column-gap: 0.25rem !important;
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-xl-1 {
    -webkit-column-gap: 0.5rem !important;
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-xl-2 {
    -webkit-column-gap: 1rem !important;
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-xl-3 {
    -webkit-column-gap: 1.5rem !important;
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-xl-4 {
    -webkit-column-gap: 2rem !important;
    -moz-column-gap: 2rem !important;
    column-gap: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-xl-5 {
    -webkit-column-gap: 2.5rem !important;
    -moz-column-gap: 2.5rem !important;
    column-gap: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-xl-6 {
    -webkit-column-gap: 3rem !important;
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-xl-7 {
    -webkit-column-gap: 3.5rem !important;
    -moz-column-gap: 3.5rem !important;
    column-gap: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-xl-8 {
    -webkit-column-gap: 4rem !important;
    -moz-column-gap: 4rem !important;
    column-gap: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-xl-9 {
    -webkit-column-gap: 4.5rem !important;
    -moz-column-gap: 4.5rem !important;
    column-gap: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .column-gap-xl-10 {
    -webkit-column-gap: 5rem !important;
    -moz-column-gap: 5rem !important;
    column-gap: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .text-xl-start {
    text-align: left !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .text-xl-end {
    text-align: right !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .text-xl-center {
    text-align: center !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-xl {
    border-radius: 0.375rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-xl-0 {
    border-radius: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-xl-1 {
    border-radius: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-xl-2 {
    border-radius: 0.375rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-xl-3 {
    border-radius: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-xl-4 {
    border-radius: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-xl-5 {
    border-radius: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-xl-circle {
    border-radius: 50% !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-xl-pill {
    border-radius: 50rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .flex-basis-xl-0 {
    -ms-flex-preferred-size: 0 !important;
    flex-basis: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-xl-0 {
    border-top-left-radius: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-xl-05 {
    border-top-left-radius: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-xl-1 {
    border-top-left-radius: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-xl-2 {
    border-top-left-radius: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-xl-3 {
    border-top-left-radius: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-xl-4 {
    border-top-left-radius: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-xl-5 {
    border-top-left-radius: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-xl-6 {
    border-top-left-radius: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-xl-7 {
    border-top-left-radius: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-xl-8 {
    border-top-left-radius: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-xl-9 {
    border-top-left-radius: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-ts-xl-10 {
    border-top-left-radius: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-xl-0 {
    border-top-right-radius: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-xl-05 {
    border-top-right-radius: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-xl-1 {
    border-top-right-radius: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-xl-2 {
    border-top-right-radius: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-xl-3 {
    border-top-right-radius: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-xl-4 {
    border-top-right-radius: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-xl-5 {
    border-top-right-radius: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-xl-6 {
    border-top-right-radius: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-xl-7 {
    border-top-right-radius: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-xl-8 {
    border-top-right-radius: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-xl-9 {
    border-top-right-radius: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-te-xl-10 {
    border-top-right-radius: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-xl-0 {
    border-bottom-right-radius: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-xl-05 {
    border-bottom-right-radius: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-xl-1 {
    border-bottom-right-radius: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-xl-2 {
    border-bottom-right-radius: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-xl-3 {
    border-bottom-right-radius: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-xl-4 {
    border-bottom-right-radius: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-xl-5 {
    border-bottom-right-radius: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-xl-6 {
    border-bottom-right-radius: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-xl-7 {
    border-bottom-right-radius: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-xl-8 {
    border-bottom-right-radius: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-xl-9 {
    border-bottom-right-radius: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-be-xl-10 {
    border-bottom-right-radius: 5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-xl-0 {
    border-bottom-left-radius: 0 !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-xl-05 {
    border-bottom-left-radius: 0.25rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-xl-1 {
    border-bottom-left-radius: 0.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-xl-2 {
    border-bottom-left-radius: 1rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-xl-3 {
    border-bottom-left-radius: 1.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-xl-4 {
    border-bottom-left-radius: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-xl-5 {
    border-bottom-left-radius: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-xl-6 {
    border-bottom-left-radius: 3rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-xl-7 {
    border-bottom-left-radius: 3.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-xl-8 {
    border-bottom-left-radius: 4rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-xl-9 {
    border-bottom-left-radius: 4.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .rounded-bs-xl-10 {
    border-bottom-left-radius: 5rem !important;
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .fs-1 {
    font-size: 2.5rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .fs-2 {
    font-size: 2rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .fs-3 {
    font-size: 1.75rem !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .fs-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  :where(theme-provider[data-theme=swizy-v3x]) .d-print-inline {
    display: inline !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-print-inline-block {
    display: inline-block !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-print-block {
    display: block !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-print-grid {
    display: grid !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-print-inline-grid {
    display: inline-grid !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-print-table {
    display: table !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-print-table-row {
    display: table-row !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-print-table-cell {
    display: table-cell !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .d-print-none {
    display: none !important;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * UTILITAIRES COMBINÉS TEXTE-BACKGROUND
   * ----------------------------------
   * Génère des classes utilitaires combinant couleur de texte et couleur de fond
   * en se basant sur la palette de couleurs, avec gestion automatique du contraste
   *
   * Structure attendue de $palette:
   * $palette: (
   *   "primary": (
   *     "main": #color,
   *     "contrast-text": #color
   *   ),
   *   "secondary": ( ... ),
   *   etc.
   * )
   */
  /**
   * GÉNÉRATION DES CLASSES
   * --------------------
   * Pour chaque couleur de la palette, génère une classe .text-bg-{color}
   * qui applique :
   * - La couleur de fond principale
   * - La couleur de texte contrastée associée
   *
   * Classes générées:
   * - .text-bg-primary
   * - .text-bg-secondary
   * - .text-bg-success
   * - .text-bg-danger
   * - .text-bg-warning
   * - .text-bg-info
   * - .text-bg-neutral
   * - .text-bg-primary-tone
   * - .text-bg-secondary-tone
   * etc...
   *
   * Exemple d'utilisation:
   * <div class="text-bg-primary">Texte blanc sur fond primary</div>
   * <span class="badge text-bg-secondary">Badge</span>
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-primary {
  color: #fff !important;
  background-color: rgb(0, 112, 188) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-secondary {
  color: #fff !important;
  background-color: rgb(9, 37, 93) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-neutral, :where(theme-provider[data-theme=swizy-v3x]) .wallet--ecc-cb .badge {
  color: #252628 !important;
  background-color: rgba(37, 38, 40, 0.06) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-dark {
  color: #ffffff !important;
  background-color: #18191A !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-primary-tone {
  color: rgb(0, 51.2340425532, 86) !important;
  background-color: rgba(0, 112, 188, 0.16) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-secondary-tone {
  color: black !important;
  background-color: rgba(9, 37, 93, 0.16) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-danger {
  color: #ffffff !important;
  background-color: #e0000f !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-danger-tone {
  color: #b6000c !important;
  background-color: rgba(224, 0, 15, 0.16) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-info {
  color: #ffffff !important;
  background-color: #005dd1 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-info-tone {
  color: #004ba8 !important;
  background-color: rgba(0, 93, 209, 0.16) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-success {
  color: #ffffff !important;
  background-color: #009e60 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-success-tone {
  color: #007b4b !important;
  background-color: rgba(0, 158, 96, 0.16) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-warning {
  color: #ffffff !important;
  background-color: #fa5300 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-warning-tone {
  color: #d24600 !important;
  background-color: rgba(250, 83, 0, 0.16) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-remise-palette {
  color: #ffffff !important;
  background-color: #e1003c !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-swizy-primary {
  color: #ffffff !important;
  background-color: #ef426f !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-swizy-secondary {
  color: #ffffff !important;
  background-color: #09255d !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-swizy-primary-tone {
  color: #eb144c !important;
  background-color: rgba(239, 66, 111, 0.16) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-swizy-secondary-tone {
  color: #071d49 !important;
  background-color: rgba(9, 37, 93, 0.16) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-text-primary {
  color: #212121;
  background-color: #fff;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-text-secondary {
  color: rgba(0, 0, 0, 0.6);
  background-color: #fff;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-primary {
  background-color: rgb(0, 112, 188) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-secondary, :where(theme-provider[data-theme=swizy-v3x]) .wizard__progress-stepper > div.wizard__progress-step--filled {
  background-color: rgb(9, 37, 93) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-neutral, :where(theme-provider[data-theme=swizy-v3x]) .form-control-group__input-container .input-group-text, :where(theme-provider[data-theme=swizy-v3x]) .form-control-group__input-container .form-select,
:where(theme-provider[data-theme=swizy-v3x]) .form-control-group__input-container .form-control {
  background-color: rgba(37, 38, 40, 0.06) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-dark {
  background-color: #18191A !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-primary-tone {
  background-color: rgba(0, 112, 188, 0.16) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-secondary-tone {
  background-color: rgba(9, 37, 93, 0.16) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-danger {
  background-color: #e0000f !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-danger-tone {
  background-color: rgba(224, 0, 15, 0.16) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-info {
  background-color: #005dd1 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-info-tone {
  background-color: rgba(0, 93, 209, 0.16) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-success {
  background-color: #009e60 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-success-tone {
  background-color: rgba(0, 158, 96, 0.16) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-warning {
  background-color: #fa5300 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-warning-tone {
  background-color: rgba(250, 83, 0, 0.16) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-remise-palette {
  background-color: #e1003c !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-swizy-primary {
  background-color: #ef426f !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-swizy-secondary {
  background-color: #09255d !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-swizy-primary-tone {
  background-color: rgba(239, 66, 111, 0.16) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-swizy-secondary-tone {
  background-color: rgba(9, 37, 93, 0.16) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-primary-light {
  background-color: !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-secondary-light {
  background-color: !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-neutral-light {
  background-color: !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-dark-light {
  background-color: !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-primary-tone-light {
  background-color: rgba(0, 112, 188, 0.08) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-secondary-tone-light {
  background-color: rgba(9, 37, 93, 0.08) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-danger-light {
  background-color: #ff666f !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-danger-tone-light {
  background-color: rgba(224, 0, 15, 0.08) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-info-light {
  background-color: #66aaff !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-info-tone-light {
  background-color: rgba(0, 93, 209, 0.08) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-success-light {
  background-color: #66ffc3 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-success-tone-light {
  background-color: rgba(0, 158, 96, 0.08) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-warning-light {
  background-color: #ff9966 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-warning-tone-light {
  background-color: rgba(250, 83, 0, 0.08) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-remise-palette-light {
  background-color: #ff1457 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-swizy-primary-light {
  background-color: #ff668e !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-swizy-secondary-light {
  background-color: #80aaff !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-swizy-primary-tone-light {
  background-color: rgba(239, 66, 111, 0.08) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-swizy-secondary-tone-light {
  background-color: rgba(9, 37, 93, 0.08) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) :root {
  --bs-primary-bg-subtle: rgb(0, 112, 188);
  --bs-primary-text-emphasis: #fff;
  --bs-primary-border-subtle: rgb(0, 51.2340425532, 86);
  --bs-secondary-bg-subtle: rgb(9, 37, 93);
  --bs-secondary-text-emphasis: #fff;
  --bs-secondary-border-subtle: black;
  --bs-neutral-bg-subtle: rgba(37, 38, 40, 0.06);
  --bs-neutral-text-emphasis: #252628;
  --bs-neutral-border-subtle: rgba(37, 38, 40, 0.15);
  --bs-dark-bg-subtle: #18191A;
  --bs-dark-text-emphasis: #ffffff;
  --bs-dark-border-subtle: rgb(9.312, 9.7, 10.088);
  --bs-primary-tone-bg-subtle: rgba(0, 112, 188, 0.16);
  --bs-primary-tone-text-emphasis: rgb(0, 51.2340425532, 86);
  --bs-primary-tone-border-subtle: rgba(0, 112, 188, 0.26);
  --bs-secondary-tone-bg-subtle: rgba(9, 37, 93, 0.16);
  --bs-secondary-tone-text-emphasis: black;
  --bs-secondary-tone-border-subtle: rgba(9, 37, 93, 0.26);
  --bs-danger-bg-subtle: #e0000f;
  --bs-danger-text-emphasis: #ffffff;
  --bs-danger-border-subtle: #b6000c;
  --bs-danger-tone-bg-subtle: rgba(224, 0, 15, 0.16);
  --bs-danger-tone-text-emphasis: #b6000c;
  --bs-danger-tone-border-subtle: rgba(224, 0, 15, 0.26);
  --bs-info-bg-subtle: #005dd1;
  --bs-info-text-emphasis: #ffffff;
  --bs-info-border-subtle: #004ba8;
  --bs-info-tone-bg-subtle: rgba(0, 93, 209, 0.16);
  --bs-info-tone-text-emphasis: #004ba8;
  --bs-info-tone-border-subtle: rgba(0, 93, 209, 0.26);
  --bs-success-bg-subtle: #009e60;
  --bs-success-text-emphasis: #ffffff;
  --bs-success-border-subtle: #007b4b;
  --bs-success-tone-bg-subtle: rgba(0, 158, 96, 0.16);
  --bs-success-tone-text-emphasis: #007b4b;
  --bs-success-tone-border-subtle: rgba(0, 158, 96, 0.26);
  --bs-warning-bg-subtle: #fa5300;
  --bs-warning-text-emphasis: #ffffff;
  --bs-warning-border-subtle: #d24600;
  --bs-warning-tone-bg-subtle: rgba(250, 83, 0, 0.16);
  --bs-warning-tone-text-emphasis: #d24600;
  --bs-warning-tone-border-subtle: rgba(250, 83, 0, 0.26);
  --bs-remise-palette-bg-subtle: #e1003c;
  --bs-remise-palette-text-emphasis: #ffffff;
  --bs-remise-palette-border-subtle: #7a0021;
  --bs-swizy-primary-bg-subtle: #ef426f;
  --bs-swizy-primary-text-emphasis: #ffffff;
  --bs-swizy-primary-border-subtle: #eb144c;
  --bs-swizy-secondary-bg-subtle: #09255d;
  --bs-swizy-secondary-text-emphasis: #ffffff;
  --bs-swizy-secondary-border-subtle: #071d49;
  --bs-swizy-primary-tone-bg-subtle: rgba(239, 66, 111, 0.16);
  --bs-swizy-primary-tone-text-emphasis: #eb144c;
  --bs-swizy-primary-tone-border-subtle: rgba(239, 66, 111, 0.26);
  --bs-swizy-secondary-tone-bg-subtle: rgba(9, 37, 93, 0.16);
  --bs-swizy-secondary-tone-text-emphasis: #071d49;
  --bs-swizy-secondary-tone-border-subtle: rgba(9, 37, 93, 0.26);
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-neutral, :where(theme-provider[data-theme=swizy-v3x]) .form-control-group__input-container .input-group-text, :where(theme-provider[data-theme=swizy-v3x]) .form-control-group__input-container .form-select,
:where(theme-provider[data-theme=swizy-v3x]) .form-control-group__input-container .form-control {
  background-color: rgba(37, 38, 40, 0.06) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .bg-paper {
  background-color: #ffffff !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-paper-opacity-95 {
  background-color: rgba(255, 255, 255, 0.95) !important;
  color: #212121 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-paper-dark-opacity-50 {
  background-color: rgba(24, 25, 26, 0.5) !important;
  color: #fff !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-bg-paper-dark {
  background-color: #18191A !important;
  color: #fff !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-primary, :where(theme-provider[data-theme=swizy-v3x]) .html-content strong, :where(theme-provider[data-theme=swizy-v3x]) .html-content h1, :where(theme-provider[data-theme=swizy-v3x]) .html-content .h1, :where(theme-provider[data-theme=swizy-v3x]) .html-content h2, :where(theme-provider[data-theme=swizy-v3x]) .html-content .h2, :where(theme-provider[data-theme=swizy-v3x]) .html-content h3, :where(theme-provider[data-theme=swizy-v3x]) .html-content .h3, :where(theme-provider[data-theme=swizy-v3x]) .html-content h4, :where(theme-provider[data-theme=swizy-v3x]) .html-content .h4, :where(theme-provider[data-theme=swizy-v3x]) .html-content h5, :where(theme-provider[data-theme=swizy-v3x]) .html-content .h5, :where(theme-provider[data-theme=swizy-v3x]) .html-content .popover__title, :where(theme-provider[data-theme=swizy-v3x]) .html-content h6, :where(theme-provider[data-theme=swizy-v3x]) .html-content .h6, :where(theme-provider[data-theme=swizy-v3x]) .html-content .empty-view__label, :where(theme-provider[data-theme=swizy-v3x]) .html-content .wallet__nom, :where(theme-provider[data-theme=swizy-v3x]) .page__title-container__title, :where(theme-provider[data-theme=swizy-v3x]) .notification-item--unread .list-group-item__primary-text, :where(theme-provider[data-theme=swizy-v3x]) .form-control-group__label--emphasized, :where(theme-provider[data-theme=swizy-v3x]) .banner-wavy--primary .banner__title {
  color: rgb(0, 91.1489361702, 153) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-secondary, :where(theme-provider[data-theme=swizy-v3x]) .section-newsletter__title, :where(theme-provider[data-theme=swizy-v3x]) .section-newsletter__surtitle, :where(theme-provider[data-theme=swizy-v3x]) .html-content a {
  color: rgb(13.5, 55.5, 139.5) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-text-primary, :where(theme-provider[data-theme=swizy-v3x]) ul.sf-menu a, :where(theme-provider[data-theme=swizy-v3x]) ul.sf-menu span, :where(theme-provider[data-theme=swizy-v3x]) .form-control-group__input-container .form-select,
:where(theme-provider[data-theme=swizy-v3x]) .form-control-group__input-container .form-control {
  color: #212121 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-text-secondary, :where(theme-provider[data-theme=swizy-v3x]) .form-control-group__hint {
  color: rgba(0, 0, 0, 0.6) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .nav-pills {
  --bs-nav-pills-link-active-bg: rgb(0, 112, 188);
  --bs-nav-pills-link-active-color: #fff;
}
:where(theme-provider[data-theme=swizy-v3x]) .nav-tabs {
  --bs-link-color: black;
  --bs-link-hover-color: black;
}
:where(theme-provider[data-theme=swizy-v3x]) .nav-tabs .nav-item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
:where(theme-provider[data-theme=swizy-v3x]) .nav-tabs .nav-item .nav-link {
  margin-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border: 0;
  border-bottom-width: 1px;
}
:where(theme-provider[data-theme=swizy-v3x]) .nav-tabs .nav-item .nav-link.active {
  border: 0;
  -webkit-box-shadow: inset 0 -2px 0 0 black;
  box-shadow: inset 0 -2px 0 0 black;
}
:where(theme-provider[data-theme=swizy-v3x]) .nav-tabs {
  --bs-link-color: black;
  --bs-link-hover-color: black;
}
:where(theme-provider[data-theme=swizy-v3x]) .nav-tabs .nav-item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
:where(theme-provider[data-theme=swizy-v3x]) .nav-tabs .nav-item .nav-link {
  margin-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border: 0;
  border-bottom-width: 1px;
}
:where(theme-provider[data-theme=swizy-v3x]) .nav-tabs .nav-item .nav-link.active {
  border: 0;
  -webkit-box-shadow: inset 0 -2px 0 0 black;
  box-shadow: inset 0 -2px 0 0 black;
}
:where(theme-provider[data-theme=swizy-v3x]) .accordion {
  --bs-accordion-active-color: #212121;
  --bs-accordion-active-bg: rgb(224.4, 242.629787234, 255);
}
:where(theme-provider[data-theme=swizy-v3x]) .badge {
  height: 24px;
  font-size: 12pxrem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 24px;
  padding: 0 6px;
  font-weight: bold;
}
:where(theme-provider[data-theme=swizy-v3x]) .badge-xs {
  height: 20px;
  font-size: 12pxrem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 20px;
  padding: 0 5px;
}
:where(theme-provider[data-theme=swizy-v3x]) .badge-sm {
  height: 24px;
  font-size: 12pxrem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 24px;
  padding: 0 6px;
}
:where(theme-provider[data-theme=swizy-v3x]) .badge-md {
  height: 32px;
  font-size: 14pxrem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 32px;
  padding: 0 8px;
}
:where(theme-provider[data-theme=swizy-v3x]) .badge-outlined-primary {
  color: rgb(0, 112, 188);
  background-color: #fff;
  border: 1px solid rgba(37, 38, 40, 0.16);
}
:where(theme-provider[data-theme=swizy-v3x]) .badge-outlined-secondary {
  color: rgb(9, 37, 93);
  background-color: #fff;
  border: 1px solid rgba(37, 38, 40, 0.16);
}
:where(theme-provider[data-theme=swizy-v3x]) .badge-outlined-neutral {
  color: rgba(37, 38, 40, 0.06);
  background-color: #fff;
  border: 1px solid rgba(37, 38, 40, 0.16);
}
:where(theme-provider[data-theme=swizy-v3x]) .badge-outlined-dark {
  color: #18191A;
  background-color: #fff;
  border: 1px solid rgba(37, 38, 40, 0.16);
}
:where(theme-provider[data-theme=swizy-v3x]) .badge-outlined-primary-tone {
  color: rgba(0, 112, 188, 0.16);
  background-color: #fff;
  border: 1px solid rgba(37, 38, 40, 0.16);
}
:where(theme-provider[data-theme=swizy-v3x]) .badge-outlined-secondary-tone {
  color: rgba(9, 37, 93, 0.16);
  background-color: #fff;
  border: 1px solid rgba(37, 38, 40, 0.16);
}
:where(theme-provider[data-theme=swizy-v3x]) .badge-outlined-danger {
  color: #e0000f;
  background-color: #fff;
  border: 1px solid rgba(37, 38, 40, 0.16);
}
:where(theme-provider[data-theme=swizy-v3x]) .badge-outlined-danger-tone {
  color: rgba(224, 0, 15, 0.16);
  background-color: #fff;
  border: 1px solid rgba(37, 38, 40, 0.16);
}
:where(theme-provider[data-theme=swizy-v3x]) .badge-outlined-info {
  color: #005dd1;
  background-color: #fff;
  border: 1px solid rgba(37, 38, 40, 0.16);
}
:where(theme-provider[data-theme=swizy-v3x]) .badge-outlined-info-tone {
  color: rgba(0, 93, 209, 0.16);
  background-color: #fff;
  border: 1px solid rgba(37, 38, 40, 0.16);
}
:where(theme-provider[data-theme=swizy-v3x]) .badge-outlined-success {
  color: #009e60;
  background-color: #fff;
  border: 1px solid rgba(37, 38, 40, 0.16);
}
:where(theme-provider[data-theme=swizy-v3x]) .badge-outlined-success-tone {
  color: rgba(0, 158, 96, 0.16);
  background-color: #fff;
  border: 1px solid rgba(37, 38, 40, 0.16);
}
:where(theme-provider[data-theme=swizy-v3x]) .badge-outlined-warning {
  color: #fa5300;
  background-color: #fff;
  border: 1px solid rgba(37, 38, 40, 0.16);
}
:where(theme-provider[data-theme=swizy-v3x]) .badge-outlined-warning-tone {
  color: rgba(250, 83, 0, 0.16);
  background-color: #fff;
  border: 1px solid rgba(37, 38, 40, 0.16);
}
:where(theme-provider[data-theme=swizy-v3x]) .badge-outlined-remise-palette {
  color: #e1003c;
  background-color: #fff;
  border: 1px solid rgba(37, 38, 40, 0.16);
}
:where(theme-provider[data-theme=swizy-v3x]) .badge-outlined-swizy-primary {
  color: #ef426f;
  background-color: #fff;
  border: 1px solid rgba(37, 38, 40, 0.16);
}
:where(theme-provider[data-theme=swizy-v3x]) .badge-outlined-swizy-secondary {
  color: #09255d;
  background-color: #fff;
  border: 1px solid rgba(37, 38, 40, 0.16);
}
:where(theme-provider[data-theme=swizy-v3x]) .badge-outlined-swizy-primary-tone {
  color: rgba(239, 66, 111, 0.16);
  background-color: #fff;
  border: 1px solid rgba(37, 38, 40, 0.16);
}
:where(theme-provider[data-theme=swizy-v3x]) .badge-outlined-swizy-secondary-tone {
  color: rgba(9, 37, 93, 0.16);
  background-color: #fff;
  border: 1px solid rgba(37, 38, 40, 0.16);
}
:where(theme-provider[data-theme=swizy-v3x]) .badge-absolute-top-right {
  position: absolute !important;
  top: 0;
  right: 0;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}
:where(theme-provider[data-theme=swizy-v3x]) .badge_action {
  margin-left: 0.5rem;
  border: unset;
  padding: 0;
  width: 20px;
  height: 100%;
  background-color: transparent;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
:where(theme-provider[data-theme=swizy-v3x]) .badge_action:hover {
  opacity: 0.7;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * SYSTÈME DE BOUTONS PERSONNALISÉS
   * -----------------------------
   * Génère des variantes de boutons basées sur la palette de couleurs
   * avec support pour les versions pleines et outlined
   */
  /**
   * CONFIGURATION DES VARIANTES
   * ------------------------
   * Map des variantes de boutons avec leurs couleurs associées
   *
   * Structure de $palette attendue:
   * $palette: (
   *   "primary": (
   *     "main": #color,
   *     "dark": #color,
   *     "contrast-text": #color
   *   ),
   *   // etc...
   * )
   */
  /**
   * GÉNÉRATION DES CLASSES DE BOUTONS
   * ------------------------------
   * Pour chaque variante, génère :
   * 1. Une version pleine (.btn-{variant})
   * 2. Une version outlined (.btn-{variant}-outlined)
   *
   * Classes générées :
   * - .btn-primary, .btn-primary-outlined
   * - .btn-secondary, .btn-secondary-outlined
   * - etc...
   *
   * Exemple d'utilisation :
   * <button class="btn btn-primary">Bouton</button>
   * <button class="btn btn-primary-outlined">Bouton Outlined</button>
   */
  /**
   * Version pleine du bouton
   * ----------------------
   * Propriétés :
   * - Fond plein
   * - Bordure transparente
   * - Texte contrasté
   * - Hover plus sombre
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-primary, :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .nav-link.active {
  --bs-btn-color: #fff;
  --bs-btn-bg: rgb(0, 112, 188);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(0, 51.2340425532, 86);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 255, 255, 255;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(0, 51.2340425532, 86);
  --bs-btn-active-border-color: rgb(0, 51.2340425532, 86);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: rgb(0, 112, 188);
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version outlined du bouton
   * -----------------------
   * Propriétés :
   * - Fond coloré
   * - Bordure visible
   * - Texte contrasté
   * - Hover plus sombre avec bordure
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outlined-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: rgb(0, 112, 188);
  --bs-btn-border-color: rgb(0, 51.2340425532, 86);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(0, 51.2340425532, 86);
  --bs-btn-hover-border-color: rgb(0, 51.2340425532, 86);
  --bs-btn-focus-shadow-rgb: 38, 82, 111;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(0, 51.2340425532, 86);
  --bs-btn-active-border-color: rgb(0, 51.2340425532, 86);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: rgb(0, 112, 188);
  --bs-btn-disabled-border-color: rgb(0, 51.2340425532, 86);
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version text du bouton
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-text-primary {
  --bs-btn-color: rgb(0, 112, 188);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: rgb(0, 51.2340425532, 86);
  --bs-btn-hover-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 0, 112, 188;
  --bs-btn-active-color: rgb(0, 51.2340425532, 86);
  --bs-btn-active-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(0, 112, 188, 0.36);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version pleine du bouton
   * ----------------------
   * Propriétés :
   * - Fond plein
   * - Bordure transparente
   * - Texte contrasté
   * - Hover plus sombre
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: rgb(9, 37, 93);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: black;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 255, 255, 255;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: black;
  --bs-btn-active-border-color: black;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: rgb(9, 37, 93);
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version outlined du bouton
   * -----------------------
   * Propriétés :
   * - Fond coloré
   * - Bordure visible
   * - Texte contrasté
   * - Hover plus sombre avec bordure
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outlined-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: rgb(9, 37, 93);
  --bs-btn-border-color: black;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: black;
  --bs-btn-hover-border-color: black;
  --bs-btn-focus-shadow-rgb: 38, 38, 38;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: black;
  --bs-btn-active-border-color: black;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: rgb(9, 37, 93);
  --bs-btn-disabled-border-color: black;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version text du bouton
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-text-secondary {
  --bs-btn-color: rgb(9, 37, 93);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: black;
  --bs-btn-hover-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 9, 37, 93;
  --bs-btn-active-color: black;
  --bs-btn-active-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(9, 37, 93, 0.36);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version pleine du bouton
   * ----------------------
   * Propriétés :
   * - Fond plein
   * - Bordure transparente
   * - Texte contrasté
   * - Hover plus sombre
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-neutral, :where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-close, :where(theme-provider[data-theme=swizy-v3x]) .popover__btn-close {
  --bs-btn-color: #252628;
  --bs-btn-bg: rgba(37, 38, 40, 0.06);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #252628;
  --bs-btn-hover-bg: rgba(37, 38, 40, 0.15);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 37, 38, 40;
  --bs-btn-active-color: #252628;
  --bs-btn-active-bg: rgba(37, 38, 40, 0.15);
  --bs-btn-active-border-color: rgba(37, 38, 40, 0.15);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: rgba(37, 38, 40, 0.06);
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version outlined du bouton
   * -----------------------
   * Propriétés :
   * - Fond coloré
   * - Bordure visible
   * - Texte contrasté
   * - Hover plus sombre avec bordure
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outlined-neutral {
  --bs-btn-color: #252628;
  --bs-btn-bg: rgba(37, 38, 40, 0.06);
  --bs-btn-border-color: rgba(37, 38, 40, 0.15);
  --bs-btn-hover-color: #252628;
  --bs-btn-hover-bg: rgba(37, 38, 40, 0.15);
  --bs-btn-hover-border-color: rgba(37, 38, 40, 0.15);
  --bs-btn-focus-shadow-rgb: 37, 38, 40;
  --bs-btn-active-color: #252628;
  --bs-btn-active-bg: rgba(37, 38, 40, 0.15);
  --bs-btn-active-border-color: rgba(37, 38, 40, 0.15);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: rgba(37, 38, 40, 0.06);
  --bs-btn-disabled-border-color: rgba(37, 38, 40, 0.15);
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version text du bouton
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-text-neutral {
  --bs-btn-color: rgba(37, 38, 40, 0.06);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: rgba(37, 38, 40, 0.15);
  --bs-btn-hover-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 6, 6, 7;
  --bs-btn-active-color: rgba(37, 38, 40, 0.15);
  --bs-btn-active-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(37, 38, 40, 0.36);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version pleine du bouton
   * ----------------------
   * Propriétés :
   * - Fond plein
   * - Bordure transparente
   * - Texte contrasté
   * - Hover plus sombre
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-dark {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #18191A;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: rgb(9.312, 9.7, 10.088);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 255, 255, 255;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: rgb(9.312, 9.7, 10.088);
  --bs-btn-active-border-color: rgb(9.312, 9.7, 10.088);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #18191A;
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version outlined du bouton
   * -----------------------
   * Propriétés :
   * - Fond coloré
   * - Bordure visible
   * - Texte contrasté
   * - Hover plus sombre avec bordure
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outlined-dark {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #18191A;
  --bs-btn-border-color: rgb(9.312, 9.7, 10.088);
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: rgb(9.312, 9.7, 10.088);
  --bs-btn-hover-border-color: rgb(9.312, 9.7, 10.088);
  --bs-btn-focus-shadow-rgb: 46, 46, 47;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: rgb(9.312, 9.7, 10.088);
  --bs-btn-active-border-color: rgb(9.312, 9.7, 10.088);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #18191A;
  --bs-btn-disabled-border-color: rgb(9.312, 9.7, 10.088);
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version text du bouton
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-text-dark {
  --bs-btn-color: #18191A;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: rgb(9.312, 9.7, 10.088);
  --bs-btn-hover-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 24, 25, 26;
  --bs-btn-active-color: rgb(9.312, 9.7, 10.088);
  --bs-btn-active-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(24, 25, 26, 0.36);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version pleine du bouton
   * ----------------------
   * Propriétés :
   * - Fond plein
   * - Bordure transparente
   * - Texte contrasté
   * - Hover plus sombre
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-success {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #009e60;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #007b4b;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 255, 255, 255;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #007b4b;
  --bs-btn-active-border-color: #007b4b;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #009e60;
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version outlined du bouton
   * -----------------------
   * Propriétés :
   * - Fond coloré
   * - Bordure visible
   * - Texte contrasté
   * - Hover plus sombre avec bordure
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outlined-success {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #009e60;
  --bs-btn-border-color: #007b4b;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #007b4b;
  --bs-btn-hover-border-color: #007b4b;
  --bs-btn-focus-shadow-rgb: 38, 143, 102;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #007b4b;
  --bs-btn-active-border-color: #007b4b;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #009e60;
  --bs-btn-disabled-border-color: #007b4b;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version text du bouton
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-text-success {
  --bs-btn-color: #009e60;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #007b4b;
  --bs-btn-hover-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 0, 158, 96;
  --bs-btn-active-color: #007b4b;
  --bs-btn-active-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(0, 158, 96, 0.36);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version pleine du bouton
   * ----------------------
   * Propriétés :
   * - Fond plein
   * - Bordure transparente
   * - Texte contrasté
   * - Hover plus sombre
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-info {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #005dd1;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #004ba8;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 255, 255, 255;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #004ba8;
  --bs-btn-active-border-color: #004ba8;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #005dd1;
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version outlined du bouton
   * -----------------------
   * Propriétés :
   * - Fond coloré
   * - Bordure visible
   * - Texte contrasté
   * - Hover plus sombre avec bordure
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outlined-info {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #005dd1;
  --bs-btn-border-color: #004ba8;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #004ba8;
  --bs-btn-hover-border-color: #004ba8;
  --bs-btn-focus-shadow-rgb: 38, 102, 181;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #004ba8;
  --bs-btn-active-border-color: #004ba8;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #005dd1;
  --bs-btn-disabled-border-color: #004ba8;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version text du bouton
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-text-info {
  --bs-btn-color: #005dd1;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #004ba8;
  --bs-btn-hover-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 0, 93, 209;
  --bs-btn-active-color: #004ba8;
  --bs-btn-active-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(0, 93, 209, 0.36);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version pleine du bouton
   * ----------------------
   * Propriétés :
   * - Fond plein
   * - Bordure transparente
   * - Texte contrasté
   * - Hover plus sombre
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-warning {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #fa5300;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #d24600;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 255, 255, 255;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #d24600;
  --bs-btn-active-border-color: #d24600;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #fa5300;
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version outlined du bouton
   * -----------------------
   * Propriétés :
   * - Fond coloré
   * - Bordure visible
   * - Texte contrasté
   * - Hover plus sombre avec bordure
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outlined-warning {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #fa5300;
  --bs-btn-border-color: #d24600;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #d24600;
  --bs-btn-hover-border-color: #d24600;
  --bs-btn-focus-shadow-rgb: 217, 98, 38;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #d24600;
  --bs-btn-active-border-color: #d24600;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #fa5300;
  --bs-btn-disabled-border-color: #d24600;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version text du bouton
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-text-warning {
  --bs-btn-color: #fa5300;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #d24600;
  --bs-btn-hover-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 250, 83, 0;
  --bs-btn-active-color: #d24600;
  --bs-btn-active-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(250, 83, 0, 0.36);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version pleine du bouton
   * ----------------------
   * Propriétés :
   * - Fond plein
   * - Bordure transparente
   * - Texte contrasté
   * - Hover plus sombre
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-danger {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #e0000f;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #b6000c;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 255, 255, 255;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #b6000c;
  --bs-btn-active-border-color: #b6000c;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #e0000f;
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version outlined du bouton
   * -----------------------
   * Propriétés :
   * - Fond coloré
   * - Bordure visible
   * - Texte contrasté
   * - Hover plus sombre avec bordure
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outlined-danger {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #e0000f;
  --bs-btn-border-color: #b6000c;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #b6000c;
  --bs-btn-hover-border-color: #b6000c;
  --bs-btn-focus-shadow-rgb: 193, 38, 48;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #b6000c;
  --bs-btn-active-border-color: #b6000c;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #e0000f;
  --bs-btn-disabled-border-color: #b6000c;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version text du bouton
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-text-danger {
  --bs-btn-color: #e0000f;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #b6000c;
  --bs-btn-hover-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 224, 0, 15;
  --bs-btn-active-color: #b6000c;
  --bs-btn-active-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(224, 0, 15, 0.36);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version pleine du bouton
   * ----------------------
   * Propriétés :
   * - Fond plein
   * - Bordure transparente
   * - Texte contrasté
   * - Hover plus sombre
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-primary-tone {
  --bs-btn-color: rgb(0, 51.2340425532, 86);
  --bs-btn-bg: rgba(0, 112, 188, 0.16);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: rgb(0, 51.2340425532, 86);
  --bs-btn-hover-bg: rgba(0, 112, 188, 0.26);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 0, 51, 86;
  --bs-btn-active-color: rgb(0, 51.2340425532, 86);
  --bs-btn-active-bg: rgba(0, 112, 188, 0.26);
  --bs-btn-active-border-color: rgba(0, 112, 188, 0.26);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: rgba(0, 112, 188, 0.16);
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version outlined du bouton
   * -----------------------
   * Propriétés :
   * - Fond coloré
   * - Bordure visible
   * - Texte contrasté
   * - Hover plus sombre avec bordure
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outlined-primary-tone, :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .nav-link {
  --bs-btn-color: rgb(0, 51.2340425532, 86);
  --bs-btn-bg: rgba(0, 112, 188, 0.16);
  --bs-btn-border-color: rgba(0, 112, 188, 0.26);
  --bs-btn-hover-color: rgb(0, 51.2340425532, 86);
  --bs-btn-hover-bg: rgba(0, 112, 188, 0.26);
  --bs-btn-hover-border-color: rgba(0, 112, 188, 0.26);
  --bs-btn-focus-shadow-rgb: 0, 79, 133;
  --bs-btn-active-color: rgb(0, 51.2340425532, 86);
  --bs-btn-active-bg: rgba(0, 112, 188, 0.26);
  --bs-btn-active-border-color: rgba(0, 112, 188, 0.26);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: rgba(0, 112, 188, 0.16);
  --bs-btn-disabled-border-color: rgba(0, 112, 188, 0.26);
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version text du bouton
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-text-primary-tone {
  --bs-btn-color: rgba(0, 112, 188, 0.16);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: rgba(0, 112, 188, 0.26);
  --bs-btn-hover-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 0, 22, 37;
  --bs-btn-active-color: rgba(0, 112, 188, 0.26);
  --bs-btn-active-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(0, 112, 188, 0.36);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version pleine du bouton
   * ----------------------
   * Propriétés :
   * - Fond plein
   * - Bordure transparente
   * - Texte contrasté
   * - Hover plus sombre
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-secondary-tone {
  --bs-btn-color: black;
  --bs-btn-bg: rgba(9, 37, 93, 0.16);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: black;
  --bs-btn-hover-bg: rgba(9, 37, 93, 0.26);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 0, 0, 0;
  --bs-btn-active-color: black;
  --bs-btn-active-bg: rgba(9, 37, 93, 0.26);
  --bs-btn-active-border-color: rgba(9, 37, 93, 0.26);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: rgba(9, 37, 93, 0.16);
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version outlined du bouton
   * -----------------------
   * Propriétés :
   * - Fond coloré
   * - Bordure visible
   * - Texte contrasté
   * - Hover plus sombre avec bordure
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outlined-secondary-tone {
  --bs-btn-color: black;
  --bs-btn-bg: rgba(9, 37, 93, 0.16);
  --bs-btn-border-color: rgba(9, 37, 93, 0.26);
  --bs-btn-hover-color: black;
  --bs-btn-hover-bg: rgba(9, 37, 93, 0.26);
  --bs-btn-hover-border-color: rgba(9, 37, 93, 0.26);
  --bs-btn-focus-shadow-rgb: 4, 17, 43;
  --bs-btn-active-color: black;
  --bs-btn-active-bg: rgba(9, 37, 93, 0.26);
  --bs-btn-active-border-color: rgba(9, 37, 93, 0.26);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: rgba(9, 37, 93, 0.16);
  --bs-btn-disabled-border-color: rgba(9, 37, 93, 0.26);
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version text du bouton
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-text-secondary-tone {
  --bs-btn-color: rgba(9, 37, 93, 0.16);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: rgba(9, 37, 93, 0.26);
  --bs-btn-hover-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 2, 7, 18;
  --bs-btn-active-color: rgba(9, 37, 93, 0.26);
  --bs-btn-active-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(9, 37, 93, 0.36);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version pleine du bouton
   * ----------------------
   * Propriétés :
   * - Fond plein
   * - Bordure transparente
   * - Texte contrasté
   * - Hover plus sombre
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-success-tone {
  --bs-btn-color: #007b4b;
  --bs-btn-bg: rgba(0, 158, 96, 0.16);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #007b4b;
  --bs-btn-hover-bg: rgba(0, 158, 96, 0.26);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 0, 123, 75;
  --bs-btn-active-color: #007b4b;
  --bs-btn-active-bg: rgba(0, 158, 96, 0.26);
  --bs-btn-active-border-color: rgba(0, 158, 96, 0.26);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: rgba(0, 158, 96, 0.16);
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version outlined du bouton
   * -----------------------
   * Propriétés :
   * - Fond coloré
   * - Bordure visible
   * - Texte contrasté
   * - Hover plus sombre avec bordure
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outlined-success-tone {
  --bs-btn-color: #007b4b;
  --bs-btn-bg: rgba(0, 158, 96, 0.16);
  --bs-btn-border-color: rgba(0, 158, 96, 0.26);
  --bs-btn-hover-color: #007b4b;
  --bs-btn-hover-bg: rgba(0, 158, 96, 0.26);
  --bs-btn-hover-border-color: rgba(0, 158, 96, 0.26);
  --bs-btn-focus-shadow-rgb: 0, 139, 85;
  --bs-btn-active-color: #007b4b;
  --bs-btn-active-bg: rgba(0, 158, 96, 0.26);
  --bs-btn-active-border-color: rgba(0, 158, 96, 0.26);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: rgba(0, 158, 96, 0.16);
  --bs-btn-disabled-border-color: rgba(0, 158, 96, 0.26);
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version text du bouton
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-text-success-tone {
  --bs-btn-color: rgba(0, 158, 96, 0.16);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: rgba(0, 158, 96, 0.26);
  --bs-btn-hover-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 0, 31, 19;
  --bs-btn-active-color: rgba(0, 158, 96, 0.26);
  --bs-btn-active-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(0, 158, 96, 0.36);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version pleine du bouton
   * ----------------------
   * Propriétés :
   * - Fond plein
   * - Bordure transparente
   * - Texte contrasté
   * - Hover plus sombre
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-info-tone {
  --bs-btn-color: #004ba8;
  --bs-btn-bg: rgba(0, 93, 209, 0.16);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #004ba8;
  --bs-btn-hover-bg: rgba(0, 93, 209, 0.26);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 0, 75, 168;
  --bs-btn-active-color: #004ba8;
  --bs-btn-active-bg: rgba(0, 93, 209, 0.26);
  --bs-btn-active-border-color: rgba(0, 93, 209, 0.26);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: rgba(0, 93, 209, 0.16);
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version outlined du bouton
   * -----------------------
   * Propriétés :
   * - Fond coloré
   * - Bordure visible
   * - Texte contrasté
   * - Hover plus sombre avec bordure
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outlined-info-tone {
  --bs-btn-color: #004ba8;
  --bs-btn-bg: rgba(0, 93, 209, 0.16);
  --bs-btn-border-color: rgba(0, 93, 209, 0.26);
  --bs-btn-hover-color: #004ba8;
  --bs-btn-hover-bg: rgba(0, 93, 209, 0.26);
  --bs-btn-hover-border-color: rgba(0, 93, 209, 0.26);
  --bs-btn-focus-shadow-rgb: 0, 83, 187;
  --bs-btn-active-color: #004ba8;
  --bs-btn-active-bg: rgba(0, 93, 209, 0.26);
  --bs-btn-active-border-color: rgba(0, 93, 209, 0.26);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: rgba(0, 93, 209, 0.16);
  --bs-btn-disabled-border-color: rgba(0, 93, 209, 0.26);
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version text du bouton
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-text-info-tone {
  --bs-btn-color: rgba(0, 93, 209, 0.16);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: rgba(0, 93, 209, 0.26);
  --bs-btn-hover-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 0, 18, 41;
  --bs-btn-active-color: rgba(0, 93, 209, 0.26);
  --bs-btn-active-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(0, 93, 209, 0.36);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version pleine du bouton
   * ----------------------
   * Propriétés :
   * - Fond plein
   * - Bordure transparente
   * - Texte contrasté
   * - Hover plus sombre
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-warning-tone {
  --bs-btn-color: #d24600;
  --bs-btn-bg: rgba(250, 83, 0, 0.16);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #d24600;
  --bs-btn-hover-bg: rgba(250, 83, 0, 0.26);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 210, 70, 0;
  --bs-btn-active-color: #d24600;
  --bs-btn-active-bg: rgba(250, 83, 0, 0.26);
  --bs-btn-active-border-color: rgba(250, 83, 0, 0.26);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: rgba(250, 83, 0, 0.16);
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version outlined du bouton
   * -----------------------
   * Propriétés :
   * - Fond coloré
   * - Bordure visible
   * - Texte contrasté
   * - Hover plus sombre avec bordure
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outlined-warning-tone {
  --bs-btn-color: #d24600;
  --bs-btn-bg: rgba(250, 83, 0, 0.16);
  --bs-btn-border-color: rgba(250, 83, 0, 0.26);
  --bs-btn-hover-color: #d24600;
  --bs-btn-hover-bg: rgba(250, 83, 0, 0.26);
  --bs-btn-hover-border-color: rgba(250, 83, 0, 0.26);
  --bs-btn-focus-shadow-rgb: 228, 76, 0;
  --bs-btn-active-color: #d24600;
  --bs-btn-active-bg: rgba(250, 83, 0, 0.26);
  --bs-btn-active-border-color: rgba(250, 83, 0, 0.26);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: rgba(250, 83, 0, 0.16);
  --bs-btn-disabled-border-color: rgba(250, 83, 0, 0.26);
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version text du bouton
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-text-warning-tone {
  --bs-btn-color: rgba(250, 83, 0, 0.16);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: rgba(250, 83, 0, 0.26);
  --bs-btn-hover-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 49, 16, 0;
  --bs-btn-active-color: rgba(250, 83, 0, 0.26);
  --bs-btn-active-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(250, 83, 0, 0.36);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version pleine du bouton
   * ----------------------
   * Propriétés :
   * - Fond plein
   * - Bordure transparente
   * - Texte contrasté
   * - Hover plus sombre
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-danger-tone {
  --bs-btn-color: #b6000c;
  --bs-btn-bg: rgba(224, 0, 15, 0.16);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #b6000c;
  --bs-btn-hover-bg: rgba(224, 0, 15, 0.26);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 182, 0, 12;
  --bs-btn-active-color: #b6000c;
  --bs-btn-active-bg: rgba(224, 0, 15, 0.26);
  --bs-btn-active-border-color: rgba(224, 0, 15, 0.26);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: rgba(224, 0, 15, 0.16);
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version outlined du bouton
   * -----------------------
   * Propriétés :
   * - Fond coloré
   * - Bordure visible
   * - Texte contrasté
   * - Hover plus sombre avec bordure
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outlined-danger-tone {
  --bs-btn-color: #b6000c;
  --bs-btn-bg: rgba(224, 0, 15, 0.16);
  --bs-btn-border-color: rgba(224, 0, 15, 0.26);
  --bs-btn-hover-color: #b6000c;
  --bs-btn-hover-bg: rgba(224, 0, 15, 0.26);
  --bs-btn-hover-border-color: rgba(224, 0, 15, 0.26);
  --bs-btn-focus-shadow-rgb: 201, 0, 13;
  --bs-btn-active-color: #b6000c;
  --bs-btn-active-bg: rgba(224, 0, 15, 0.26);
  --bs-btn-active-border-color: rgba(224, 0, 15, 0.26);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: rgba(224, 0, 15, 0.16);
  --bs-btn-disabled-border-color: rgba(224, 0, 15, 0.26);
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version text du bouton
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-text-danger-tone {
  --bs-btn-color: rgba(224, 0, 15, 0.16);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: rgba(224, 0, 15, 0.26);
  --bs-btn-hover-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 44, 0, 3;
  --bs-btn-active-color: rgba(224, 0, 15, 0.26);
  --bs-btn-active-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(224, 0, 15, 0.36);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version pleine du bouton
   * ----------------------
   * Propriétés :
   * - Fond plein
   * - Bordure transparente
   * - Texte contrasté
   * - Hover plus sombre
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-swizy-primary {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #ef426f;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #eb144c;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 255, 255, 255;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #eb144c;
  --bs-btn-active-border-color: #eb144c;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #ef426f;
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version outlined du bouton
   * -----------------------
   * Propriétés :
   * - Fond coloré
   * - Bordure visible
   * - Texte contrasté
   * - Hover plus sombre avec bordure
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outlined-swizy-primary {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #ef426f;
  --bs-btn-border-color: #eb144c;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #eb144c;
  --bs-btn-hover-border-color: #eb144c;
  --bs-btn-focus-shadow-rgb: 238, 55, 103;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #eb144c;
  --bs-btn-active-border-color: #eb144c;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #ef426f;
  --bs-btn-disabled-border-color: #eb144c;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version text du bouton
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-text-swizy-primary {
  --bs-btn-color: #ef426f;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #eb144c;
  --bs-btn-hover-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 239, 66, 111;
  --bs-btn-active-color: #eb144c;
  --bs-btn-active-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(239, 66, 111, 0.36);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version pleine du bouton
   * ----------------------
   * Propriétés :
   * - Fond plein
   * - Bordure transparente
   * - Texte contrasté
   * - Hover plus sombre
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-swizy-secondary {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #09255d;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #071d49;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 255, 255, 255;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #071d49;
  --bs-btn-active-border-color: #071d49;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #09255d;
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version outlined du bouton
   * -----------------------
   * Propriétés :
   * - Fond coloré
   * - Bordure visible
   * - Texte contrasté
   * - Hover plus sombre avec bordure
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outlined-swizy-secondary {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #09255d;
  --bs-btn-border-color: #071d49;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #071d49;
  --bs-btn-hover-border-color: #071d49;
  --bs-btn-focus-shadow-rgb: 44, 63, 100;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #071d49;
  --bs-btn-active-border-color: #071d49;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #09255d;
  --bs-btn-disabled-border-color: #071d49;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version text du bouton
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-text-swizy-secondary {
  --bs-btn-color: #09255d;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #071d49;
  --bs-btn-hover-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 9, 37, 93;
  --bs-btn-active-color: #071d49;
  --bs-btn-active-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(9, 37, 93, 0.36);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version pleine du bouton
   * ----------------------
   * Propriétés :
   * - Fond plein
   * - Bordure transparente
   * - Texte contrasté
   * - Hover plus sombre
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-swizy-primary-tone {
  --bs-btn-color: #eb144c;
  --bs-btn-bg: rgba(239, 66, 111, 0.16);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #eb144c;
  --bs-btn-hover-bg: rgba(239, 66, 111, 0.26);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 235, 20, 76;
  --bs-btn-active-color: #eb144c;
  --bs-btn-active-bg: rgba(239, 66, 111, 0.26);
  --bs-btn-active-border-color: rgba(239, 66, 111, 0.26);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: rgba(239, 66, 111, 0.16);
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version outlined du bouton
   * -----------------------
   * Propriétés :
   * - Fond coloré
   * - Bordure visible
   * - Texte contrasté
   * - Hover plus sombre avec bordure
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outlined-swizy-primary-tone {
  --bs-btn-color: #eb144c;
  --bs-btn-bg: rgba(239, 66, 111, 0.16);
  --bs-btn-border-color: rgba(239, 66, 111, 0.26);
  --bs-btn-hover-color: #eb144c;
  --bs-btn-hover-bg: rgba(239, 66, 111, 0.26);
  --bs-btn-hover-border-color: rgba(239, 66, 111, 0.26);
  --bs-btn-focus-shadow-rgb: 237, 41, 92;
  --bs-btn-active-color: #eb144c;
  --bs-btn-active-bg: rgba(239, 66, 111, 0.26);
  --bs-btn-active-border-color: rgba(239, 66, 111, 0.26);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: rgba(239, 66, 111, 0.16);
  --bs-btn-disabled-border-color: rgba(239, 66, 111, 0.26);
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version text du bouton
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-text-swizy-primary-tone {
  --bs-btn-color: rgba(239, 66, 111, 0.16);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: rgba(239, 66, 111, 0.26);
  --bs-btn-hover-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 47, 13, 22;
  --bs-btn-active-color: rgba(239, 66, 111, 0.26);
  --bs-btn-active-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(239, 66, 111, 0.36);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version pleine du bouton
   * ----------------------
   * Propriétés :
   * - Fond plein
   * - Bordure transparente
   * - Texte contrasté
   * - Hover plus sombre
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-swizy-secondary-tone {
  --bs-btn-color: #071d49;
  --bs-btn-bg: rgba(9, 37, 93, 0.16);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #071d49;
  --bs-btn-hover-bg: rgba(9, 37, 93, 0.26);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 7, 29, 73;
  --bs-btn-active-color: #071d49;
  --bs-btn-active-bg: rgba(9, 37, 93, 0.26);
  --bs-btn-active-border-color: rgba(9, 37, 93, 0.26);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: rgba(9, 37, 93, 0.16);
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version outlined du bouton
   * -----------------------
   * Propriétés :
   * - Fond coloré
   * - Bordure visible
   * - Texte contrasté
   * - Hover plus sombre avec bordure
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-outlined-swizy-secondary-tone {
  --bs-btn-color: #071d49;
  --bs-btn-bg: rgba(9, 37, 93, 0.16);
  --bs-btn-border-color: rgba(9, 37, 93, 0.26);
  --bs-btn-hover-color: #071d49;
  --bs-btn-hover-bg: rgba(9, 37, 93, 0.26);
  --bs-btn-hover-border-color: rgba(9, 37, 93, 0.26);
  --bs-btn-focus-shadow-rgb: 8, 33, 82;
  --bs-btn-active-color: #071d49;
  --bs-btn-active-bg: rgba(9, 37, 93, 0.26);
  --bs-btn-active-border-color: rgba(9, 37, 93, 0.26);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: rgba(9, 37, 93, 0.16);
  --bs-btn-disabled-border-color: rgba(9, 37, 93, 0.26);
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Version text du bouton
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-text-swizy-secondary-tone {
  --bs-btn-color: rgba(9, 37, 93, 0.16);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: rgba(9, 37, 93, 0.26);
  --bs-btn-hover-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 2, 7, 18;
  --bs-btn-active-color: rgba(9, 37, 93, 0.26);
  --bs-btn-active-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(9, 37, 93, 0.36);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn__start-icon {
  margin-right: 0.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn__end-icon {
  margin-left: 0.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-text-neutral {
  --bs-btn-color: #252628;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #252628;
  --bs-btn-hover-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 37, 38, 40;
  --bs-btn-active-color: #252628;
  --bs-btn-active-bg: rgba(0, 0, 0, 0.04);
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(37, 38, 40, 0.36);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-square, :where(theme-provider[data-theme=swizy-v3x]) .modal-header .btn-close, :where(theme-provider[data-theme=swizy-v3x]) .popover__btn-close {
  aspect-ratio: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-show::after {
  font-family: "Font Awesome 6 pro";
  content: "\f107";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  display: inline-block;
}
:where(theme-provider[data-theme=swizy-v3x]) .btn-show.collapsed::after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
:where(theme-provider[data-theme=swizy-v3x]) .action-arrow {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(37, 38, 40, 0.06);
  border-radius: 50%;
  bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.75rem;
  height: 32px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  right: 1rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 32px;
}
:where(theme-provider[data-theme=swizy-v3x]) .action-arrow--center {
  bottom: 50%;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
:where(theme-provider[data-theme=swizy-v3x]) a:hover .action-arrow {
  background-color: rgb(0, 112, 188) !important;
  color: white;
  right: 0.375rem;
}
:where(theme-provider[data-theme=swizy-v3x]) a:hover .action-arrow i {
  color: white;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
:where(theme-provider[data-theme=swizy-v3x]) .card-action-area::after {
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  opacity: 0;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.04);
}
:where(theme-provider[data-theme=swizy-v3x]) .card-action-area:hover::after {
  opacity: 1;
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item-action:has(.action-arrow) {
  padding-right: 3.375rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .card-action-area .card-body:has(.action-arrow) {
  padding-right: 3.375rem;
}
:where(theme-provider[data-theme=swizy-v3x]) img[svg-transform-inline] {
  opacity: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary path[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary circle[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary rect[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary polygon[stroke]:not([fill]) {
  stroke: rgb(0, 112, 188) !important;
  fill: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary path,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary circle,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary rect,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary polygon {
  fill: rgb(0, 112, 188) !important;
  stroke: rgb(0, 112, 188) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary path[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary circle[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary rect[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary polygon[stroke]:not([fill]) {
  stroke: rgb(9, 37, 93) !important;
  fill: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary path,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary circle,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary rect,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary polygon {
  fill: rgb(9, 37, 93) !important;
  stroke: rgb(9, 37, 93) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-success path[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-success circle[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-success rect[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-success polygon[stroke]:not([fill]) {
  stroke: #009e60 !important;
  fill: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-success path,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-success circle,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-success rect,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-success polygon {
  fill: #009e60 !important;
  stroke: #009e60 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-info path[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-info circle[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-info rect[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-info polygon[stroke]:not([fill]) {
  stroke: #005dd1 !important;
  fill: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-info path,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-info circle,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-info rect,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-info polygon {
  fill: #005dd1 !important;
  stroke: #005dd1 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-warning path[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-warning circle[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-warning rect[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-warning polygon[stroke]:not([fill]) {
  stroke: #fa5300 !important;
  fill: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-warning path,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-warning circle,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-warning rect,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-warning polygon {
  fill: #fa5300 !important;
  stroke: #fa5300 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-danger path[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-danger circle[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-danger rect[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-danger polygon[stroke]:not([fill]) {
  stroke: #e0000f !important;
  fill: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-danger path,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-danger circle,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-danger rect,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-danger polygon {
  fill: #e0000f !important;
  stroke: #e0000f !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-light path[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-light circle[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-light rect[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-light polygon[stroke]:not([fill]) {
  stroke: #f8f9fa !important;
  fill: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-light path,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-light circle,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-light rect,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-light polygon {
  fill: #f8f9fa !important;
  stroke: #f8f9fa !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-dark path[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-dark circle[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-dark rect[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-dark polygon[stroke]:not([fill]) {
  stroke: #18191A !important;
  fill: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-dark path,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-dark circle,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-dark rect,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-dark polygon {
  fill: #18191A !important;
  stroke: #18191A !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-remise path[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-remise circle[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-remise rect[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-remise polygon[stroke]:not([fill]) {
  stroke: #e1003c !important;
  fill: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-remise path,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-remise circle,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-remise rect,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-remise polygon {
  fill: #e1003c !important;
  stroke: #e1003c !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-tone path[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-tone circle[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-tone rect[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-tone polygon[stroke]:not([fill]) {
  stroke: rgba(0, 112, 188, 0.16) !important;
  fill: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-tone path,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-tone circle,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-tone rect,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-tone polygon {
  fill: rgba(0, 112, 188, 0.16) !important;
  stroke: rgba(0, 112, 188, 0.16) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-tone path[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-tone circle[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-tone rect[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-tone polygon[stroke]:not([fill]) {
  stroke: rgba(9, 37, 93, 0.16) !important;
  fill: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-tone path,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-tone circle,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-tone rect,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-tone polygon {
  fill: rgba(9, 37, 93, 0.16) !important;
  stroke: rgba(9, 37, 93, 0.16) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-info-tone path[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-info-tone circle[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-info-tone rect[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-info-tone polygon[stroke]:not([fill]) {
  stroke: rgba(0, 93, 209, 0.16) !important;
  fill: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-info-tone path,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-info-tone circle,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-info-tone rect,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-info-tone polygon {
  fill: rgba(0, 93, 209, 0.16) !important;
  stroke: rgba(0, 93, 209, 0.16) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-success-tone path[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-success-tone circle[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-success-tone rect[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-success-tone polygon[stroke]:not([fill]) {
  stroke: rgba(0, 158, 96, 0.16) !important;
  fill: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-success-tone path,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-success-tone circle,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-success-tone rect,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-success-tone polygon {
  fill: rgba(0, 158, 96, 0.16) !important;
  stroke: rgba(0, 158, 96, 0.16) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-warning-tone path[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-warning-tone circle[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-warning-tone rect[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-warning-tone polygon[stroke]:not([fill]) {
  stroke: rgba(250, 83, 0, 0.16) !important;
  fill: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-warning-tone path,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-warning-tone circle,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-warning-tone rect,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-warning-tone polygon {
  fill: rgba(250, 83, 0, 0.16) !important;
  stroke: rgba(250, 83, 0, 0.16) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-danger-tone path[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-danger-tone circle[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-danger-tone rect[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-danger-tone polygon[stroke]:not([fill]) {
  stroke: rgba(224, 0, 15, 0.16) !important;
  fill: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-danger-tone path,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-danger-tone circle,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-danger-tone rect,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-danger-tone polygon {
  fill: rgba(224, 0, 15, 0.16) !important;
  stroke: rgba(224, 0, 15, 0.16) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-neutral path[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-neutral circle[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-neutral rect[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-neutral polygon[stroke]:not([fill]) {
  stroke: rgba(37, 38, 40, 0.06) !important;
  fill: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-neutral path,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-neutral circle,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-neutral rect,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-neutral polygon {
  fill: rgba(37, 38, 40, 0.06) !important;
  stroke: rgba(37, 38, 40, 0.06) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-swizy-primary path[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-swizy-primary circle[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-swizy-primary rect[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-swizy-primary polygon[stroke]:not([fill]) {
  stroke: #ef426f !important;
  fill: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-swizy-primary path,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-swizy-primary circle,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-swizy-primary rect,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-swizy-primary polygon {
  fill: #ef426f !important;
  stroke: #ef426f !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-swizy-secondary path[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-swizy-secondary circle[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-swizy-secondary rect[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-swizy-secondary polygon[stroke]:not([fill]) {
  stroke: #09255d !important;
  fill: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-swizy-secondary path,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-swizy-secondary circle,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-swizy-secondary rect,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-swizy-secondary polygon {
  fill: #09255d !important;
  stroke: #09255d !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-swizy-primary-tone path[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-swizy-primary-tone circle[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-swizy-primary-tone rect[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-swizy-primary-tone polygon[stroke]:not([fill]) {
  stroke: rgba(239, 66, 111, 0.16) !important;
  fill: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-swizy-primary-tone path,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-swizy-primary-tone circle,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-swizy-primary-tone rect,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-swizy-primary-tone polygon {
  fill: rgba(239, 66, 111, 0.16) !important;
  stroke: rgba(239, 66, 111, 0.16) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-swizy-secondary-tone path[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-swizy-secondary-tone circle[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-swizy-secondary-tone rect[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-swizy-secondary-tone polygon[stroke]:not([fill]) {
  stroke: rgba(9, 37, 93, 0.16) !important;
  fill: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-swizy-secondary-tone path,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-swizy-secondary-tone circle,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-swizy-secondary-tone rect,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-swizy-secondary-tone polygon {
  fill: rgba(9, 37, 93, 0.16) !important;
  stroke: rgba(9, 37, 93, 0.16) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-7 path[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-7 circle[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-7 rect[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-7 polygon[stroke]:not([fill]) {
  stroke: rgb(0, 42.5361702128, 71.4) !important;
  fill: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-7 path,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-7 circle,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-7 rect,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-7 polygon {
  fill: rgb(0, 42.5361702128, 71.4) !important;
  stroke: rgb(0, 42.5361702128, 71.4) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-6 path[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-6 circle[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-6 rect[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-6 polygon[stroke]:not([fill]) {
  stroke: rgb(0, 91.1489361702, 153) !important;
  fill: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-6 path,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-6 circle,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-6 rect,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-6 polygon {
  fill: rgb(0, 91.1489361702, 153) !important;
  stroke: rgb(0, 91.1489361702, 153) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-5 path[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-5 circle[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-5 rect[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-5 polygon[stroke]:not([fill]) {
  stroke: rgb(0, 151.914893617, 255) !important;
  fill: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-5 path,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-5 circle,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-5 rect,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-5 polygon {
  fill: rgb(0, 151.914893617, 255) !important;
  stroke: rgb(0, 151.914893617, 255) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-4 path[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-4 circle[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-4 rect[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-4 polygon[stroke]:not([fill]) {
  stroke: rgb(153, 213.7659574468, 255) !important;
  fill: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-4 path,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-4 circle,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-4 rect,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-4 polygon {
  fill: rgb(153, 213.7659574468, 255) !important;
  stroke: rgb(153, 213.7659574468, 255) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-3 path[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-3 circle[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-3 rect[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-3 polygon[stroke]:not([fill]) {
  stroke: rgb(193.8, 230.2595744681, 255) !important;
  fill: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-3 path,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-3 circle,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-3 rect,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-3 polygon {
  fill: rgb(193.8, 230.2595744681, 255) !important;
  stroke: rgb(193.8, 230.2595744681, 255) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-2 path[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-2 circle[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-2 rect[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-2 polygon[stroke]:not([fill]) {
  stroke: rgb(224.4, 242.629787234, 255) !important;
  fill: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-2 path,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-2 circle,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-2 rect,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-2 polygon {
  fill: rgb(224.4, 242.629787234, 255) !important;
  stroke: rgb(224.4, 242.629787234, 255) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-1 path[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-1 circle[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-1 rect[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-1 polygon[stroke]:not([fill]) {
  stroke: rgb(239.7, 248.814893617, 255) !important;
  fill: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-1 path,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-1 circle,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-1 rect,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-primary-1 polygon {
  fill: rgb(239.7, 248.814893617, 255) !important;
  stroke: rgb(239.7, 248.814893617, 255) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-7 path[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-7 circle[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-7 rect[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-7 polygon[stroke]:not([fill]) {
  stroke: rgb(6.3, 25.9, 65.1) !important;
  fill: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-7 path,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-7 circle,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-7 rect,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-7 polygon {
  fill: rgb(6.3, 25.9, 65.1) !important;
  stroke: rgb(6.3, 25.9, 65.1) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-6 path[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-6 circle[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-6 rect[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-6 polygon[stroke]:not([fill]) {
  stroke: rgb(13.5, 55.5, 139.5) !important;
  fill: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-6 path,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-6 circle,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-6 rect,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-6 polygon {
  fill: rgb(13.5, 55.5, 139.5) !important;
  stroke: rgb(13.5, 55.5, 139.5) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-5 path[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-5 circle[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-5 rect[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-5 polygon[stroke]:not([fill]) {
  stroke: rgb(22.5, 92.5, 232.5) !important;
  fill: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-5 path,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-5 circle,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-5 rect,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-5 polygon {
  fill: rgb(22.5, 92.5, 232.5) !important;
  stroke: rgb(22.5, 92.5, 232.5) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-4 path[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-4 circle[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-4 rect[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-4 polygon[stroke]:not([fill]) {
  stroke: #a2bef6 !important;
  fill: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-4 path,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-4 circle,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-4 rect,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-4 polygon {
  fill: #a2bef6 !important;
  stroke: #a2bef6 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-3 path[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-3 circle[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-3 rect[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-3 polygon[stroke]:not([fill]) {
  stroke: rgb(199.2, 216, 249.6) !important;
  fill: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-3 path,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-3 circle,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-3 rect,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-3 polygon {
  fill: rgb(199.2, 216, 249.6) !important;
  stroke: rgb(199.2, 216, 249.6) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-2 path[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-2 circle[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-2 rect[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-2 polygon[stroke]:not([fill]) {
  stroke: rgb(227.1, 235.5, 252.3) !important;
  fill: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-2 path,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-2 circle,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-2 rect,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-2 polygon {
  fill: rgb(227.1, 235.5, 252.3) !important;
  stroke: rgb(227.1, 235.5, 252.3) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-1 path[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-1 circle[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-1 rect[stroke]:not([fill]),
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-1 polygon[stroke]:not([fill]) {
  stroke: rgb(241.05, 245.25, 253.65) !important;
  fill: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-1 path,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-1 circle,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-1 rect,
:where(theme-provider[data-theme=swizy-v3x]) .svg-fill-secondary-1 polygon {
  fill: rgb(241.05, 245.25, 253.65) !important;
  stroke: rgb(241.05, 245.25, 253.65) !important;
}
:where(theme-provider[data-theme=swizy-v3x]) h1, :where(theme-provider[data-theme=swizy-v3x]) .h1,
:where(theme-provider[data-theme=swizy-v3x]) .text-h1 {
  font-family: "Nunito", sans-serif;
  line-height: 1.1;
  font-size: 2.125rem;
}
@media (min-width: 0) {
  :where(theme-provider[data-theme=swizy-v3x]) h1, :where(theme-provider[data-theme=swizy-v3x]) .h1,
  :where(theme-provider[data-theme=swizy-v3x]) .text-h1 {
    font-size: 1.7159090909rem;
  }
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) h1, :where(theme-provider[data-theme=swizy-v3x]) .h1,
  :where(theme-provider[data-theme=swizy-v3x]) .text-h1 {
    font-size: 2.4829545455rem;
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) h1, :where(theme-provider[data-theme=swizy-v3x]) .h1,
  :where(theme-provider[data-theme=swizy-v3x]) .text-h1 {
    font-size: 2.8664772727rem;
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) h1, :where(theme-provider[data-theme=swizy-v3x]) .h1,
  :where(theme-provider[data-theme=swizy-v3x]) .text-h1 {
    font-size: 3.25rem;
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) h1, :where(theme-provider[data-theme=swizy-v3x]) .h1,
  :where(theme-provider[data-theme=swizy-v3x]) .text-h1 {
    font-size: 3.25rem;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) h2, :where(theme-provider[data-theme=swizy-v3x]) .h2,
:where(theme-provider[data-theme=swizy-v3x]) .text-h2 {
  font-family: "Nunito", sans-serif;
  line-height: 1.2;
  font-size: 1.875rem;
}
@media (min-width: 0) {
  :where(theme-provider[data-theme=swizy-v3x]) h2, :where(theme-provider[data-theme=swizy-v3x]) .h2,
  :where(theme-provider[data-theme=swizy-v3x]) .text-h2 {
    font-size: 1.5568181818rem;
  }
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) h2, :where(theme-provider[data-theme=swizy-v3x]) .h2,
  :where(theme-provider[data-theme=swizy-v3x]) .text-h2 {
    font-size: 2.1534090909rem;
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) h2, :where(theme-provider[data-theme=swizy-v3x]) .h2,
  :where(theme-provider[data-theme=swizy-v3x]) .text-h2 {
    font-size: 2.4517045455rem;
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) h2, :where(theme-provider[data-theme=swizy-v3x]) .h2,
  :where(theme-provider[data-theme=swizy-v3x]) .text-h2 {
    font-size: 2.75rem;
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) h2, :where(theme-provider[data-theme=swizy-v3x]) .h2,
  :where(theme-provider[data-theme=swizy-v3x]) .text-h2 {
    font-size: 2.75rem;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) h3, :where(theme-provider[data-theme=swizy-v3x]) .h3,
:where(theme-provider[data-theme=swizy-v3x]) .text-h3 {
  font-family: "Nunito", sans-serif;
  line-height: 1.3;
  font-size: 1.5rem;
}
@media (min-width: 0) {
  :where(theme-provider[data-theme=swizy-v3x]) h3, :where(theme-provider[data-theme=swizy-v3x]) .h3,
  :where(theme-provider[data-theme=swizy-v3x]) .text-h3 {
    font-size: 1.3181818182rem;
  }
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) h3, :where(theme-provider[data-theme=swizy-v3x]) .h3,
  :where(theme-provider[data-theme=swizy-v3x]) .text-h3 {
    font-size: 1.6590909091rem;
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) h3, :where(theme-provider[data-theme=swizy-v3x]) .h3,
  :where(theme-provider[data-theme=swizy-v3x]) .text-h3 {
    font-size: 1.8295454545rem;
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) h3, :where(theme-provider[data-theme=swizy-v3x]) .h3,
  :where(theme-provider[data-theme=swizy-v3x]) .text-h3 {
    font-size: 2rem;
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) h3, :where(theme-provider[data-theme=swizy-v3x]) .h3,
  :where(theme-provider[data-theme=swizy-v3x]) .text-h3 {
    font-size: 2rem;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) h4, :where(theme-provider[data-theme=swizy-v3x]) .h4,
:where(theme-provider[data-theme=swizy-v3x]) .text-h4 {
  font-family: "Nunito", sans-serif;
  line-height: 1.3;
  font-size: 1.375rem;
}
@media (min-width: 0) {
  :where(theme-provider[data-theme=swizy-v3x]) h4, :where(theme-provider[data-theme=swizy-v3x]) .h4,
  :where(theme-provider[data-theme=swizy-v3x]) .text-h4 {
    font-size: 1.2386363636rem;
  }
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) h4, :where(theme-provider[data-theme=swizy-v3x]) .h4,
  :where(theme-provider[data-theme=swizy-v3x]) .text-h4 {
    font-size: 1.4943181818rem;
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) h4, :where(theme-provider[data-theme=swizy-v3x]) .h4,
  :where(theme-provider[data-theme=swizy-v3x]) .text-h4 {
    font-size: 1.6221590909rem;
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) h4, :where(theme-provider[data-theme=swizy-v3x]) .h4,
  :where(theme-provider[data-theme=swizy-v3x]) .text-h4 {
    font-size: 1.75rem;
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) h4, :where(theme-provider[data-theme=swizy-v3x]) .h4,
  :where(theme-provider[data-theme=swizy-v3x]) .text-h4 {
    font-size: 1.75rem;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) h5, :where(theme-provider[data-theme=swizy-v3x]) .h5, :where(theme-provider[data-theme=swizy-v3x]) .popover__title,
:where(theme-provider[data-theme=swizy-v3x]) .text-h5 {
  font-family: "Nunito", sans-serif;
  line-height: 1.1;
  font-size: 1.25rem;
}
@media (min-width: 0) {
  :where(theme-provider[data-theme=swizy-v3x]) h5, :where(theme-provider[data-theme=swizy-v3x]) .h5, :where(theme-provider[data-theme=swizy-v3x]) .popover__title,
  :where(theme-provider[data-theme=swizy-v3x]) .text-h5 {
    font-size: 1.1590909091rem;
  }
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) h5, :where(theme-provider[data-theme=swizy-v3x]) .h5, :where(theme-provider[data-theme=swizy-v3x]) .popover__title,
  :where(theme-provider[data-theme=swizy-v3x]) .text-h5 {
    font-size: 1.3295454545rem;
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) h5, :where(theme-provider[data-theme=swizy-v3x]) .h5, :where(theme-provider[data-theme=swizy-v3x]) .popover__title,
  :where(theme-provider[data-theme=swizy-v3x]) .text-h5 {
    font-size: 1.4147727273rem;
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) h5, :where(theme-provider[data-theme=swizy-v3x]) .h5, :where(theme-provider[data-theme=swizy-v3x]) .popover__title,
  :where(theme-provider[data-theme=swizy-v3x]) .text-h5 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) h5, :where(theme-provider[data-theme=swizy-v3x]) .h5, :where(theme-provider[data-theme=swizy-v3x]) .popover__title,
  :where(theme-provider[data-theme=swizy-v3x]) .text-h5 {
    font-size: 1.5rem;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) h6, :where(theme-provider[data-theme=swizy-v3x]) .h6, :where(theme-provider[data-theme=swizy-v3x]) .wallet__nom, :where(theme-provider[data-theme=swizy-v3x]) .empty-view__label,
:where(theme-provider[data-theme=swizy-v3x]) .text-h6 {
  font-family: "Nunito", sans-serif;
  line-height: 1.5;
  font-size: 1.125rem;
}
@media (min-width: 0) {
  :where(theme-provider[data-theme=swizy-v3x]) h6, :where(theme-provider[data-theme=swizy-v3x]) .h6, :where(theme-provider[data-theme=swizy-v3x]) .wallet__nom, :where(theme-provider[data-theme=swizy-v3x]) .empty-view__label,
  :where(theme-provider[data-theme=swizy-v3x]) .text-h6 {
    font-size: 1.0795454545rem;
  }
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) h6, :where(theme-provider[data-theme=swizy-v3x]) .h6, :where(theme-provider[data-theme=swizy-v3x]) .wallet__nom, :where(theme-provider[data-theme=swizy-v3x]) .empty-view__label,
  :where(theme-provider[data-theme=swizy-v3x]) .text-h6 {
    font-size: 1.1647727273rem;
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) h6, :where(theme-provider[data-theme=swizy-v3x]) .h6, :where(theme-provider[data-theme=swizy-v3x]) .wallet__nom, :where(theme-provider[data-theme=swizy-v3x]) .empty-view__label,
  :where(theme-provider[data-theme=swizy-v3x]) .text-h6 {
    font-size: 1.2073863636rem;
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) h6, :where(theme-provider[data-theme=swizy-v3x]) .h6, :where(theme-provider[data-theme=swizy-v3x]) .wallet__nom, :where(theme-provider[data-theme=swizy-v3x]) .empty-view__label,
  :where(theme-provider[data-theme=swizy-v3x]) .text-h6 {
    font-size: 1.25rem;
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) h6, :where(theme-provider[data-theme=swizy-v3x]) .h6, :where(theme-provider[data-theme=swizy-v3x]) .wallet__nom, :where(theme-provider[data-theme=swizy-v3x]) .empty-view__label,
  :where(theme-provider[data-theme=swizy-v3x]) .text-h6 {
    font-size: 1.25rem;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) body1,
:where(theme-provider[data-theme=swizy-v3x]) .text-body1,
:where(theme-provider[data-theme=swizy-v3x]) ul.sf-menu a,
:where(theme-provider[data-theme=swizy-v3x]) ul.sf-menu span,
:where(theme-provider[data-theme=swizy-v3x]) .page__title-container__description,
:where(theme-provider[data-theme=swizy-v3x]) .form-control-group__input-container .form-select,
:where(theme-provider[data-theme=swizy-v3x]) .form-control-group__input-container .form-control,
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item__primary-text,
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item-action {
  font-family: "Satoshi", sans-serif;
  line-height: 1.5;
  font-size: 1rem;
}
:where(theme-provider[data-theme=swizy-v3x]) body2,
:where(theme-provider[data-theme=swizy-v3x]) .text-body2,
:where(theme-provider[data-theme=swizy-v3x]) .form-control-group__description {
  font-family: "Satoshi", sans-serif;
  line-height: 1.3;
  font-size: 0.875rem;
}
:where(theme-provider[data-theme=swizy-v3x]) button,
:where(theme-provider[data-theme=swizy-v3x]) .text-button {
  font-family: "Satoshi", sans-serif;
  line-height: 1.5;
  font-weight: 500;
  text-transform: none;
  font-size: 1rem;
}
:where(theme-provider[data-theme=swizy-v3x]) caption,
:where(theme-provider[data-theme=swizy-v3x]) .text-caption,
:where(theme-provider[data-theme=swizy-v3x]) .section-newsletter__consent,
:where(theme-provider[data-theme=swizy-v3x]) .footer__list-item,
:where(theme-provider[data-theme=swizy-v3x]) .wallet__type-nom,
:where(theme-provider[data-theme=swizy-v3x]) .form-control-group__error,
:where(theme-provider[data-theme=swizy-v3x]) .form-control-group__hint,
:where(theme-provider[data-theme=swizy-v3x]) .agenda-date__top,
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item__secondary-text {
  font-family: "Satoshi", sans-serif;
  line-height: 1.3;
  font-size: 0.75rem;
}
:where(theme-provider[data-theme=swizy-v3x]) overline,
:where(theme-provider[data-theme=swizy-v3x]) .text-overline,
:where(theme-provider[data-theme=swizy-v3x]) .section-newsletter__surtitle,
:where(theme-provider[data-theme=swizy-v3x]) .footer__column__title,
:where(theme-provider[data-theme=swizy-v3x]) .wallet__amount__total {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 1.12px;
  font-size: 0.875rem;
}
:where(theme-provider[data-theme=swizy-v3x]) overline-small,
:where(theme-provider[data-theme=swizy-v3x]) .text-overline-small {
  font-family: "Satoshi", sans-serif;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 0.75rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-truncate-1 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-truncate-2 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-truncate-3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-truncate-4 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  text-overflow: ellipsis;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-truncate-5 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  text-overflow: ellipsis;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-truncate-6 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  text-overflow: ellipsis;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-truncate-7 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  text-overflow: ellipsis;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-truncate-8 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  text-overflow: ellipsis;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-truncate-9 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 9;
  text-overflow: ellipsis;
}
:where(theme-provider[data-theme=swizy-v3x]) .text-truncate-10 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 10;
  text-overflow: ellipsis;
}
:where(theme-provider[data-theme=swizy-v3x]) .alert {
  border: 0;
  margin-bottom: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .alert__icon {
  margin-right: 0.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-primary {
  --bs-alert-color: #fff;
  --bs-alert-bg: rgb(0, 112, 188);
  --bs-alert-border-color: rgb(0, 51.2340425532, 86);
  --bs-alert-link-color: #fff;
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-primary span {
  color: var(--bs-alert-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-secondary {
  --bs-alert-color: #fff;
  --bs-alert-bg: rgb(9, 37, 93);
  --bs-alert-border-color: black;
  --bs-alert-link-color: #fff;
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-secondary span {
  color: var(--bs-alert-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-neutral {
  --bs-alert-color: #252628;
  --bs-alert-bg: rgba(37, 38, 40, 0.06);
  --bs-alert-border-color: rgba(37, 38, 40, 0.15);
  --bs-alert-link-color: #252628;
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-neutral span {
  color: var(--bs-alert-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-dark {
  --bs-alert-color: #ffffff;
  --bs-alert-bg: #18191A;
  --bs-alert-border-color: rgb(9.312, 9.7, 10.088);
  --bs-alert-link-color: #ffffff;
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-dark span {
  color: var(--bs-alert-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-primary-tone {
  --bs-alert-color: rgb(0, 51.2340425532, 86);
  --bs-alert-bg: rgba(0, 112, 188, 0.16);
  --bs-alert-border-color: rgba(0, 112, 188, 0.26);
  --bs-alert-link-color: rgb(0, 51.2340425532, 86);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-primary-tone span {
  color: var(--bs-alert-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-secondary-tone {
  --bs-alert-color: black;
  --bs-alert-bg: rgba(9, 37, 93, 0.16);
  --bs-alert-border-color: rgba(9, 37, 93, 0.26);
  --bs-alert-link-color: black;
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-secondary-tone span {
  color: var(--bs-alert-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-danger {
  --bs-alert-color: #ffffff;
  --bs-alert-bg: #e0000f;
  --bs-alert-border-color: #b6000c;
  --bs-alert-link-color: #ffffff;
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-danger span {
  color: var(--bs-alert-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-danger-tone {
  --bs-alert-color: #b6000c;
  --bs-alert-bg: rgba(224, 0, 15, 0.16);
  --bs-alert-border-color: rgba(224, 0, 15, 0.26);
  --bs-alert-link-color: #b6000c;
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-danger-tone span {
  color: var(--bs-alert-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-info {
  --bs-alert-color: #ffffff;
  --bs-alert-bg: #005dd1;
  --bs-alert-border-color: #004ba8;
  --bs-alert-link-color: #ffffff;
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-info span {
  color: var(--bs-alert-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-info-tone {
  --bs-alert-color: #004ba8;
  --bs-alert-bg: rgba(0, 93, 209, 0.16);
  --bs-alert-border-color: rgba(0, 93, 209, 0.26);
  --bs-alert-link-color: #004ba8;
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-info-tone span {
  color: var(--bs-alert-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-success {
  --bs-alert-color: #ffffff;
  --bs-alert-bg: #009e60;
  --bs-alert-border-color: #007b4b;
  --bs-alert-link-color: #ffffff;
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-success span {
  color: var(--bs-alert-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-success-tone {
  --bs-alert-color: #007b4b;
  --bs-alert-bg: rgba(0, 158, 96, 0.16);
  --bs-alert-border-color: rgba(0, 158, 96, 0.26);
  --bs-alert-link-color: #007b4b;
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-success-tone span {
  color: var(--bs-alert-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-warning {
  --bs-alert-color: #ffffff;
  --bs-alert-bg: #fa5300;
  --bs-alert-border-color: #d24600;
  --bs-alert-link-color: #ffffff;
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-warning span {
  color: var(--bs-alert-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-warning-tone {
  --bs-alert-color: #d24600;
  --bs-alert-bg: rgba(250, 83, 0, 0.16);
  --bs-alert-border-color: rgba(250, 83, 0, 0.26);
  --bs-alert-link-color: #d24600;
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-warning-tone span {
  color: var(--bs-alert-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-remise-palette {
  --bs-alert-color: #ffffff;
  --bs-alert-bg: #e1003c;
  --bs-alert-border-color: #7a0021;
  --bs-alert-link-color: #ffffff;
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-remise-palette span {
  color: var(--bs-alert-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-swizy-primary {
  --bs-alert-color: #ffffff;
  --bs-alert-bg: #ef426f;
  --bs-alert-border-color: #eb144c;
  --bs-alert-link-color: #ffffff;
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-swizy-primary span {
  color: var(--bs-alert-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-swizy-secondary {
  --bs-alert-color: #ffffff;
  --bs-alert-bg: #09255d;
  --bs-alert-border-color: #071d49;
  --bs-alert-link-color: #ffffff;
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-swizy-secondary span {
  color: var(--bs-alert-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-swizy-primary-tone {
  --bs-alert-color: #eb144c;
  --bs-alert-bg: rgba(239, 66, 111, 0.16);
  --bs-alert-border-color: rgba(239, 66, 111, 0.26);
  --bs-alert-link-color: #eb144c;
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-swizy-primary-tone span {
  color: var(--bs-alert-color);
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-swizy-secondary-tone {
  --bs-alert-color: #071d49;
  --bs-alert-bg: rgba(9, 37, 93, 0.16);
  --bs-alert-border-color: rgba(9, 37, 93, 0.26);
  --bs-alert-link-color: #071d49;
}
:where(theme-provider[data-theme=swizy-v3x]) .alert-swizy-secondary-tone span {
  color: var(--bs-alert-color);
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * MIXINS UTILITAIRES
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-grid--center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-grid {
  /**
   * GÉNÉRATEUR DE COLONNES FIXES
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-grid--1 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: calc((100% - (1 - 1) * var(--gap, 0px)) / 1);
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-grid--2 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: calc((100% - (2 - 1) * var(--gap, 0px)) / 2);
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-grid--3 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: calc((100% - (3 - 1) * var(--gap, 0px)) / 3);
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-grid--4 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: calc((100% - (4 - 1) * var(--gap, 0px)) / 4);
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-grid--5 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: calc((100% - (5 - 1) * var(--gap, 0px)) / 5);
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-grid--6 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: calc((100% - (6 - 1) * var(--gap, 0px)) / 6);
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-grid--7 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: calc((100% - (7 - 1) * var(--gap, 0px)) / 7);
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-grid--8 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: calc((100% - (8 - 1) * var(--gap, 0px)) / 8);
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-grid--9 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: calc((100% - (9 - 1) * var(--gap, 0px)) / 9);
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-grid--10 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: calc((100% - (10 - 1) * var(--gap, 0px)) / 10);
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-grid--11 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: calc((100% - (11 - 1) * var(--gap, 0px)) / 11);
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-grid--12 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: calc((100% - (12 - 1) * var(--gap, 0px)) / 12);
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-grid {
  /**
   * GÉNÉRATEUR DE COLONNES RESPONSIVES
   */
}
@media (min-width: 0) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--xs-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (1 - 1) * var(--gap, 0px)) / 1) !important;
  }
}
@media (min-width: 0) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--xs-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (2 - 1) * var(--gap, 0px)) / 2) !important;
  }
}
@media (min-width: 0) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--xs-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (3 - 1) * var(--gap, 0px)) / 3) !important;
  }
}
@media (min-width: 0) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--xs-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (4 - 1) * var(--gap, 0px)) / 4) !important;
  }
}
@media (min-width: 0) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--xs-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (5 - 1) * var(--gap, 0px)) / 5) !important;
  }
}
@media (min-width: 0) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--xs-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (6 - 1) * var(--gap, 0px)) / 6) !important;
  }
}
@media (min-width: 0) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--xs-7 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (7 - 1) * var(--gap, 0px)) / 7) !important;
  }
}
@media (min-width: 0) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--xs-8 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (8 - 1) * var(--gap, 0px)) / 8) !important;
  }
}
@media (min-width: 0) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--xs-9 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (9 - 1) * var(--gap, 0px)) / 9) !important;
  }
}
@media (min-width: 0) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--xs-10 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (10 - 1) * var(--gap, 0px)) / 10) !important;
  }
}
@media (min-width: 0) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--xs-11 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (11 - 1) * var(--gap, 0px)) / 11) !important;
  }
}
@media (min-width: 0) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--xs-12 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (12 - 1) * var(--gap, 0px)) / 12) !important;
  }
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--sm-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (1 - 1) * var(--gap, 0px)) / 1) !important;
  }
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--sm-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (2 - 1) * var(--gap, 0px)) / 2) !important;
  }
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--sm-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (3 - 1) * var(--gap, 0px)) / 3) !important;
  }
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--sm-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (4 - 1) * var(--gap, 0px)) / 4) !important;
  }
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--sm-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (5 - 1) * var(--gap, 0px)) / 5) !important;
  }
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--sm-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (6 - 1) * var(--gap, 0px)) / 6) !important;
  }
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--sm-7 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (7 - 1) * var(--gap, 0px)) / 7) !important;
  }
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--sm-8 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (8 - 1) * var(--gap, 0px)) / 8) !important;
  }
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--sm-9 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (9 - 1) * var(--gap, 0px)) / 9) !important;
  }
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--sm-10 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (10 - 1) * var(--gap, 0px)) / 10) !important;
  }
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--sm-11 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (11 - 1) * var(--gap, 0px)) / 11) !important;
  }
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--sm-12 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (12 - 1) * var(--gap, 0px)) / 12) !important;
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--md-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (1 - 1) * var(--gap, 0px)) / 1) !important;
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--md-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (2 - 1) * var(--gap, 0px)) / 2) !important;
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--md-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (3 - 1) * var(--gap, 0px)) / 3) !important;
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--md-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (4 - 1) * var(--gap, 0px)) / 4) !important;
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--md-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (5 - 1) * var(--gap, 0px)) / 5) !important;
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--md-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (6 - 1) * var(--gap, 0px)) / 6) !important;
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--md-7 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (7 - 1) * var(--gap, 0px)) / 7) !important;
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--md-8 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (8 - 1) * var(--gap, 0px)) / 8) !important;
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--md-9 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (9 - 1) * var(--gap, 0px)) / 9) !important;
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--md-10 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (10 - 1) * var(--gap, 0px)) / 10) !important;
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--md-11 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (11 - 1) * var(--gap, 0px)) / 11) !important;
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--md-12 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (12 - 1) * var(--gap, 0px)) / 12) !important;
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--lg-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (1 - 1) * var(--gap, 0px)) / 1) !important;
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--lg-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (2 - 1) * var(--gap, 0px)) / 2) !important;
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--lg-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (3 - 1) * var(--gap, 0px)) / 3) !important;
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--lg-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (4 - 1) * var(--gap, 0px)) / 4) !important;
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--lg-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (5 - 1) * var(--gap, 0px)) / 5) !important;
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--lg-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (6 - 1) * var(--gap, 0px)) / 6) !important;
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--lg-7 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (7 - 1) * var(--gap, 0px)) / 7) !important;
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--lg-8 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (8 - 1) * var(--gap, 0px)) / 8) !important;
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--lg-9 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (9 - 1) * var(--gap, 0px)) / 9) !important;
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--lg-10 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (10 - 1) * var(--gap, 0px)) / 10) !important;
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--lg-11 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (11 - 1) * var(--gap, 0px)) / 11) !important;
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--lg-12 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (12 - 1) * var(--gap, 0px)) / 12) !important;
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--xl-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (1 - 1) * var(--gap, 0px)) / 1) !important;
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--xl-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (2 - 1) * var(--gap, 0px)) / 2) !important;
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--xl-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (3 - 1) * var(--gap, 0px)) / 3) !important;
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--xl-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (4 - 1) * var(--gap, 0px)) / 4) !important;
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--xl-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (5 - 1) * var(--gap, 0px)) / 5) !important;
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--xl-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (6 - 1) * var(--gap, 0px)) / 6) !important;
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--xl-7 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (7 - 1) * var(--gap, 0px)) / 7) !important;
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--xl-8 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (8 - 1) * var(--gap, 0px)) / 8) !important;
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--xl-9 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (9 - 1) * var(--gap, 0px)) / 9) !important;
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--xl-10 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (10 - 1) * var(--gap, 0px)) / 10) !important;
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--xl-11 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (11 - 1) * var(--gap, 0px)) / 11) !important;
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--xl-12 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (12 - 1) * var(--gap, 0px)) / 12) !important;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-grid {
  /**
   * GÉNÉRATEUR DE GAPS
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-0 {
  --gap: 0;
  gap: var(--gap);
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-05 {
  --gap: 0.25rem;
  gap: var(--gap);
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-1 {
  --gap: 0.5rem;
  gap: var(--gap);
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-2 {
  --gap: 1rem;
  gap: var(--gap);
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-3 {
  --gap: 1.5rem;
  gap: var(--gap);
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-4 {
  --gap: 2rem;
  gap: var(--gap);
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-5 {
  --gap: 2.5rem;
  gap: var(--gap);
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-6 {
  --gap: 3rem;
  gap: var(--gap);
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-7 {
  --gap: 3.5rem;
  gap: var(--gap);
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-8 {
  --gap: 4rem;
  gap: var(--gap);
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-9 {
  --gap: 4.5rem;
  gap: var(--gap);
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-10 {
  --gap: 5rem;
  gap: var(--gap);
}
:where(theme-provider[data-theme=swizy-v3x]) .flex-grid {
  /**
   * GÉNÉRATEUR DE GAPS RESPONSIFS
   */
}
@media (min-width: 0) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-xs-0 {
    --gap: 0;
    gap: var(--gap);
  }
}
@media (min-width: 0) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-xs-05 {
    --gap: 0.25rem;
    gap: var(--gap);
  }
}
@media (min-width: 0) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-xs-1 {
    --gap: 0.5rem;
    gap: var(--gap);
  }
}
@media (min-width: 0) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-xs-2 {
    --gap: 1rem;
    gap: var(--gap);
  }
}
@media (min-width: 0) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-xs-3 {
    --gap: 1.5rem;
    gap: var(--gap);
  }
}
@media (min-width: 0) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-xs-4 {
    --gap: 2rem;
    gap: var(--gap);
  }
}
@media (min-width: 0) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-xs-5 {
    --gap: 2.5rem;
    gap: var(--gap);
  }
}
@media (min-width: 0) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-xs-6 {
    --gap: 3rem;
    gap: var(--gap);
  }
}
@media (min-width: 0) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-xs-7 {
    --gap: 3.5rem;
    gap: var(--gap);
  }
}
@media (min-width: 0) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-xs-8 {
    --gap: 4rem;
    gap: var(--gap);
  }
}
@media (min-width: 0) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-xs-9 {
    --gap: 4.5rem;
    gap: var(--gap);
  }
}
@media (min-width: 0) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-xs-10 {
    --gap: 5rem;
    gap: var(--gap);
  }
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-sm-0 {
    --gap: 0;
    gap: var(--gap);
  }
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-sm-05 {
    --gap: 0.25rem;
    gap: var(--gap);
  }
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-sm-1 {
    --gap: 0.5rem;
    gap: var(--gap);
  }
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-sm-2 {
    --gap: 1rem;
    gap: var(--gap);
  }
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-sm-3 {
    --gap: 1.5rem;
    gap: var(--gap);
  }
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-sm-4 {
    --gap: 2rem;
    gap: var(--gap);
  }
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-sm-5 {
    --gap: 2.5rem;
    gap: var(--gap);
  }
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-sm-6 {
    --gap: 3rem;
    gap: var(--gap);
  }
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-sm-7 {
    --gap: 3.5rem;
    gap: var(--gap);
  }
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-sm-8 {
    --gap: 4rem;
    gap: var(--gap);
  }
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-sm-9 {
    --gap: 4.5rem;
    gap: var(--gap);
  }
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-sm-10 {
    --gap: 5rem;
    gap: var(--gap);
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-md-0 {
    --gap: 0;
    gap: var(--gap);
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-md-05 {
    --gap: 0.25rem;
    gap: var(--gap);
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-md-1 {
    --gap: 0.5rem;
    gap: var(--gap);
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-md-2 {
    --gap: 1rem;
    gap: var(--gap);
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-md-3 {
    --gap: 1.5rem;
    gap: var(--gap);
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-md-4 {
    --gap: 2rem;
    gap: var(--gap);
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-md-5 {
    --gap: 2.5rem;
    gap: var(--gap);
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-md-6 {
    --gap: 3rem;
    gap: var(--gap);
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-md-7 {
    --gap: 3.5rem;
    gap: var(--gap);
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-md-8 {
    --gap: 4rem;
    gap: var(--gap);
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-md-9 {
    --gap: 4.5rem;
    gap: var(--gap);
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-md-10 {
    --gap: 5rem;
    gap: var(--gap);
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-lg-0 {
    --gap: 0;
    gap: var(--gap);
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-lg-05 {
    --gap: 0.25rem;
    gap: var(--gap);
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-lg-1 {
    --gap: 0.5rem;
    gap: var(--gap);
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-lg-2 {
    --gap: 1rem;
    gap: var(--gap);
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-lg-3 {
    --gap: 1.5rem;
    gap: var(--gap);
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-lg-4 {
    --gap: 2rem;
    gap: var(--gap);
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-lg-5 {
    --gap: 2.5rem;
    gap: var(--gap);
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-lg-6 {
    --gap: 3rem;
    gap: var(--gap);
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-lg-7 {
    --gap: 3.5rem;
    gap: var(--gap);
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-lg-8 {
    --gap: 4rem;
    gap: var(--gap);
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-lg-9 {
    --gap: 4.5rem;
    gap: var(--gap);
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-lg-10 {
    --gap: 5rem;
    gap: var(--gap);
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-xl-0 {
    --gap: 0;
    gap: var(--gap);
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-xl-05 {
    --gap: 0.25rem;
    gap: var(--gap);
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-xl-1 {
    --gap: 0.5rem;
    gap: var(--gap);
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-xl-2 {
    --gap: 1rem;
    gap: var(--gap);
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-xl-3 {
    --gap: 1.5rem;
    gap: var(--gap);
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-xl-4 {
    --gap: 2rem;
    gap: var(--gap);
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-xl-5 {
    --gap: 2.5rem;
    gap: var(--gap);
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-xl-6 {
    --gap: 3rem;
    gap: var(--gap);
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-xl-7 {
    --gap: 3.5rem;
    gap: var(--gap);
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-xl-8 {
    --gap: 4rem;
    gap: var(--gap);
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-xl-9 {
    --gap: 4.5rem;
    gap: var(--gap);
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .flex-grid--gap-xl-10 {
    --gap: 5rem;
    gap: var(--gap);
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
:where(theme-provider[data-theme=swizy-v3x]) .amount__symbol-fraction-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
:where(theme-provider[data-theme=swizy-v3x]) .amount--positive {
  color: var(--bs-success);
}
:where(theme-provider[data-theme=swizy-v3x]) .amount--sm .amount__integer {
  font-size: 1.625rem;
  line-height: 0.7;
}
:where(theme-provider[data-theme=swizy-v3x]) .amount--sm .amount__symbol {
  font-size: 0.625rem;
  line-height: 0.7;
}
:where(theme-provider[data-theme=swizy-v3x]) .amount--sm .amount__fraction {
  font-size: 0.75rem;
  line-height: 0.6;
}
:where(theme-provider[data-theme=swizy-v3x]) .amount--md .amount__integer {
  font-size: 2rem;
  line-height: 0.7;
}
:where(theme-provider[data-theme=swizy-v3x]) .amount--md .amount__symbol {
  font-size: 0.625rem;
  line-height: 0.7;
}
:where(theme-provider[data-theme=swizy-v3x]) .amount--md .amount__fraction {
  font-size: 0.875rem;
  line-height: 0.7;
}
:where(theme-provider[data-theme=swizy-v3x]) .amount--lg .amount__integer {
  font-size: 2.75rem;
  line-height: 0.7;
}
:where(theme-provider[data-theme=swizy-v3x]) .amount--lg .amount__symbol {
  font-size: 0.875rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .amount--lg .amount__fraction {
  font-size: 1.125rem;
  line-height: 0.7;
}
:where(theme-provider[data-theme=swizy-v3x]) .amount--xl .amount__integer {
  font-size: 4.125rem;
  line-height: 0.7;
}
:where(theme-provider[data-theme=swizy-v3x]) .amount--xl .amount__symbol {
  font-size: 1rem;
  line-height: 0.7;
}
:where(theme-provider[data-theme=swizy-v3x]) .amount--xl .amount__fraction {
  font-size: 1.25rem;
  line-height: 0.8;
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group--dense .list-group-item {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item__content-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item__primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item__secondary-text {
  overflow-wrap: break-word;
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item__secondary-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 1rem;
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .list-group-item__secondary-action--hidden {
    visibility: hidden;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .list-group-item:hover .list-group-item__secondary-action--hidden {
  visibility: visible;
}
:where(theme-provider[data-theme=swizy-v3x]) .section-swizy {
  padding: 2rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .section-swizy--flush {
  padding: 2px !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .section-swizy__logo {
  width: 116px;
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .section-swizy__logo {
    width: 155px;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .section-swizy__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
:where(theme-provider[data-theme=swizy-v3x]) .section-swizy__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
:where(theme-provider[data-theme=swizy-v3x]) .section-swizy__head .section__title {
  text-align: center;
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .section-swizy__head .section__title {
    text-align: left;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .section-swizy__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
:where(theme-provider[data-theme=swizy-v3x]) .section--flush {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .section__container {
  gap: 1.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .section__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
:where(theme-provider[data-theme=swizy-v3x]) .section__footer--center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
:where(theme-provider[data-theme=swizy-v3x]) .section__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .section__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
:where(theme-provider[data-theme=swizy-v3x]) .section__head--center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
:where(theme-provider[data-theme=swizy-v3x]) .section__head--inline {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
:where(theme-provider[data-theme=swizy-v3x]) .section__head .section__toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
:where(theme-provider[data-theme=swizy-v3x]) .empty-view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
:where(theme-provider[data-theme=swizy-v3x]) .empty-view__label {
  font-weight: 700;
  text-align: center;
}
:where(theme-provider[data-theme=swizy-v3x]) .popover {
  border: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .popover--sm {
  width: 100%;
  max-width: 300px;
}
:where(theme-provider[data-theme=swizy-v3x]) .popover--md {
  width: 100%;
  max-width: 500px;
}
@media (max-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .popover--fs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    max-width: unset;
    max-height: unset;
    z-index: 1070;
    overflow-y: auto;
  }
}
@media (min-width: 0) {
  :where(theme-provider[data-theme=swizy-v3x]) .popover-xs--sm {
    width: 100%;
    max-width: 300px;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .popover-xs--md {
    width: 100%;
    max-width: 500px;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .popover-xs--fs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    max-width: unset;
    max-height: unset;
    z-index: 1070;
    overflow-y: auto;
  }
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .popover-sm--sm {
    width: 100%;
    max-width: 300px;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .popover-sm--md {
    width: 100%;
    max-width: 500px;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .popover-sm--fs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    max-width: unset;
    max-height: unset;
    z-index: 1070;
    overflow-y: auto;
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .popover-md--sm {
    width: 100%;
    max-width: 300px;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .popover-md--md {
    width: 100%;
    max-width: 500px;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .popover-md--fs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    max-width: unset;
    max-height: unset;
    z-index: 1070;
    overflow-y: auto;
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .popover-lg--sm {
    width: 100%;
    max-width: 300px;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .popover-lg--md {
    width: 100%;
    max-width: 500px;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .popover-lg--fs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    max-width: unset;
    max-height: unset;
    z-index: 1070;
    overflow-y: auto;
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .popover-xl--sm {
    width: 100%;
    max-width: 300px;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .popover-xl--md {
    width: 100%;
    max-width: 500px;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .popover-xl--fs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    max-width: unset;
    max-height: unset;
    z-index: 1070;
    overflow-y: auto;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .popover__title {
  font-weight: 700;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-aa {
  background-color: hsl(224, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ab {
  background-color: hsl(225, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ac {
  background-color: hsl(226, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ad {
  background-color: hsl(227, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ae {
  background-color: hsl(228, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-af {
  background-color: hsl(229, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ag {
  background-color: hsl(230, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ah {
  background-color: hsl(231, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ai {
  background-color: hsl(232, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-aj {
  background-color: hsl(233, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ak {
  background-color: hsl(234, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-al {
  background-color: hsl(235, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-am {
  background-color: hsl(236, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-an {
  background-color: hsl(237, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ao {
  background-color: hsl(238, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ap {
  background-color: hsl(239, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-aq {
  background-color: hsl(240, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ar {
  background-color: hsl(241, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-as {
  background-color: hsl(242, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-at {
  background-color: hsl(243, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-au {
  background-color: hsl(244, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-av {
  background-color: hsl(245, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-aw {
  background-color: hsl(246, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ax {
  background-color: hsl(247, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ay {
  background-color: hsl(248, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-az {
  background-color: hsl(249, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ba {
  background-color: hsl(255, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bb {
  background-color: hsl(256, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bc {
  background-color: hsl(257, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bd {
  background-color: hsl(258, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-be {
  background-color: hsl(259, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bf {
  background-color: hsl(260, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bg {
  background-color: hsl(261, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bh {
  background-color: hsl(262, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bi {
  background-color: hsl(263, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bj {
  background-color: hsl(264, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bk {
  background-color: hsl(265, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bl {
  background-color: hsl(266, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bm {
  background-color: hsl(267, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bn {
  background-color: hsl(268, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bo {
  background-color: hsl(269, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bp {
  background-color: hsl(270, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bq {
  background-color: hsl(271, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-br {
  background-color: hsl(272, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bs {
  background-color: hsl(273, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bt {
  background-color: hsl(274, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bu {
  background-color: hsl(275, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bv {
  background-color: hsl(276, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bw {
  background-color: hsl(277, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bx {
  background-color: hsl(278, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-by {
  background-color: hsl(279, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bz {
  background-color: hsl(280, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ca {
  background-color: hsl(286, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cb {
  background-color: hsl(287, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cc {
  background-color: hsl(288, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cd {
  background-color: hsl(289, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ce {
  background-color: hsl(290, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cf {
  background-color: hsl(291, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cg {
  background-color: hsl(292, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ch {
  background-color: hsl(293, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ci {
  background-color: hsl(294, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cj {
  background-color: hsl(295, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ck {
  background-color: hsl(296, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cl {
  background-color: hsl(297, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cm {
  background-color: hsl(298, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cn {
  background-color: hsl(299, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-co {
  background-color: hsl(300, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cp {
  background-color: hsl(301, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cq {
  background-color: hsl(302, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cr {
  background-color: hsl(303, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cs {
  background-color: hsl(304, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ct {
  background-color: hsl(305, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cu {
  background-color: hsl(306, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cv {
  background-color: hsl(307, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cw {
  background-color: hsl(308, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cx {
  background-color: hsl(309, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cy {
  background-color: hsl(310, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cz {
  background-color: hsl(311, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-da {
  background-color: hsl(317, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-db {
  background-color: hsl(318, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dc {
  background-color: hsl(319, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dd {
  background-color: hsl(320, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-de {
  background-color: hsl(321, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-df {
  background-color: hsl(322, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dg {
  background-color: hsl(323, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dh {
  background-color: hsl(324, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-di {
  background-color: hsl(325, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dj {
  background-color: hsl(326, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dk {
  background-color: hsl(327, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dl {
  background-color: hsl(328, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dm {
  background-color: hsl(329, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dn {
  background-color: hsl(330, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-do {
  background-color: hsl(331, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dp {
  background-color: hsl(332, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dq {
  background-color: hsl(333, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dr {
  background-color: hsl(334, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ds {
  background-color: hsl(335, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dt {
  background-color: hsl(336, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-du {
  background-color: hsl(337, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dv {
  background-color: hsl(338, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dw {
  background-color: hsl(339, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dx {
  background-color: hsl(340, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dy {
  background-color: hsl(341, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dz {
  background-color: hsl(342, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ea {
  background-color: hsl(348, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-eb {
  background-color: hsl(349, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ec {
  background-color: hsl(350, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ed {
  background-color: hsl(351, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ee {
  background-color: hsl(352, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ef {
  background-color: hsl(353, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-eg {
  background-color: hsl(354, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-eh {
  background-color: hsl(355, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ei {
  background-color: hsl(356, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ej {
  background-color: hsl(357, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ek {
  background-color: hsl(358, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-el {
  background-color: hsl(359, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-em {
  background-color: hsl(0, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-en {
  background-color: hsl(1, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-eo {
  background-color: hsl(2, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ep {
  background-color: hsl(3, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-eq {
  background-color: hsl(4, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-er {
  background-color: hsl(5, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-es {
  background-color: hsl(6, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-et {
  background-color: hsl(7, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-eu {
  background-color: hsl(8, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ev {
  background-color: hsl(9, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ew {
  background-color: hsl(10, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ex {
  background-color: hsl(11, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ey {
  background-color: hsl(12, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ez {
  background-color: hsl(13, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fa {
  background-color: hsl(19, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fb {
  background-color: hsl(20, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fc {
  background-color: hsl(21, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fd {
  background-color: hsl(22, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fe {
  background-color: hsl(23, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ff {
  background-color: hsl(24, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fg {
  background-color: hsl(25, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fh {
  background-color: hsl(26, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fi {
  background-color: hsl(27, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fj {
  background-color: hsl(28, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fk {
  background-color: hsl(29, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fl {
  background-color: hsl(30, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fm {
  background-color: hsl(31, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fn {
  background-color: hsl(32, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fo {
  background-color: hsl(33, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fp {
  background-color: hsl(34, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fq {
  background-color: hsl(35, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fr {
  background-color: hsl(36, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fs {
  background-color: hsl(37, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ft {
  background-color: hsl(38, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fu {
  background-color: hsl(39, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fv {
  background-color: hsl(40, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fw {
  background-color: hsl(41, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fx {
  background-color: hsl(42, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fy {
  background-color: hsl(43, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fz {
  background-color: hsl(44, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ga {
  background-color: hsl(50, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gb {
  background-color: hsl(51, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gc {
  background-color: hsl(52, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gd {
  background-color: hsl(53, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ge {
  background-color: hsl(54, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gf {
  background-color: hsl(55, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gg {
  background-color: hsl(56, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gh {
  background-color: hsl(57, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gi {
  background-color: hsl(58, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gj {
  background-color: hsl(59, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gk {
  background-color: hsl(60, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gl {
  background-color: hsl(61, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gm {
  background-color: hsl(62, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gn {
  background-color: hsl(63, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-go {
  background-color: hsl(64, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gp {
  background-color: hsl(65, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gq {
  background-color: hsl(66, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gr {
  background-color: hsl(67, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gs {
  background-color: hsl(68, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gt {
  background-color: hsl(69, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gu {
  background-color: hsl(70, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gv {
  background-color: hsl(71, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gw {
  background-color: hsl(72, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gx {
  background-color: hsl(73, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gy {
  background-color: hsl(74, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gz {
  background-color: hsl(75, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ha {
  background-color: hsl(81, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hb {
  background-color: hsl(82, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hc {
  background-color: hsl(83, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hd {
  background-color: hsl(84, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-he {
  background-color: hsl(85, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hf {
  background-color: hsl(86, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hg {
  background-color: hsl(87, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hh {
  background-color: hsl(88, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hi {
  background-color: hsl(89, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hj {
  background-color: hsl(90, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hk {
  background-color: hsl(91, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hl {
  background-color: hsl(92, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hm {
  background-color: hsl(93, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hn {
  background-color: hsl(94, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ho {
  background-color: hsl(95, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hp {
  background-color: hsl(96, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hq {
  background-color: hsl(97, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hr {
  background-color: hsl(98, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hs {
  background-color: hsl(99, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ht {
  background-color: hsl(100, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hu {
  background-color: hsl(101, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hv {
  background-color: hsl(102, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hw {
  background-color: hsl(103, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hx {
  background-color: hsl(104, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hy {
  background-color: hsl(105, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hz {
  background-color: hsl(106, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ia {
  background-color: hsl(112, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ib {
  background-color: hsl(113, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ic {
  background-color: hsl(114, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-id {
  background-color: hsl(115, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ie {
  background-color: hsl(116, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-if {
  background-color: hsl(117, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ig {
  background-color: hsl(118, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ih {
  background-color: hsl(119, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ii {
  background-color: hsl(120, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ij {
  background-color: hsl(121, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ik {
  background-color: hsl(122, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-il {
  background-color: hsl(123, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-im {
  background-color: hsl(124, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-in {
  background-color: hsl(125, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-io {
  background-color: hsl(126, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ip {
  background-color: hsl(127, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-iq {
  background-color: hsl(128, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ir {
  background-color: hsl(129, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-is {
  background-color: hsl(130, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-it {
  background-color: hsl(131, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-iu {
  background-color: hsl(132, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-iv {
  background-color: hsl(133, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-iw {
  background-color: hsl(134, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ix {
  background-color: hsl(135, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-iy {
  background-color: hsl(136, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-iz {
  background-color: hsl(137, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ja {
  background-color: hsl(143, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jb {
  background-color: hsl(144, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jc {
  background-color: hsl(145, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jd {
  background-color: hsl(146, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-je {
  background-color: hsl(147, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jf {
  background-color: hsl(148, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jg {
  background-color: hsl(149, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jh {
  background-color: hsl(150, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ji {
  background-color: hsl(151, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jj {
  background-color: hsl(152, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jk {
  background-color: hsl(153, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jl {
  background-color: hsl(154, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jm {
  background-color: hsl(155, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jn {
  background-color: hsl(156, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jo {
  background-color: hsl(157, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jp {
  background-color: hsl(158, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jq {
  background-color: hsl(159, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jr {
  background-color: hsl(160, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-js {
  background-color: hsl(161, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jt {
  background-color: hsl(162, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ju {
  background-color: hsl(163, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jv {
  background-color: hsl(164, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jw {
  background-color: hsl(165, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jx {
  background-color: hsl(166, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jy {
  background-color: hsl(167, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jz {
  background-color: hsl(168, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ka {
  background-color: hsl(174, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kb {
  background-color: hsl(175, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kc {
  background-color: hsl(176, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kd {
  background-color: hsl(177, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ke {
  background-color: hsl(178, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kf {
  background-color: hsl(179, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kg {
  background-color: hsl(180, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kh {
  background-color: hsl(181, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ki {
  background-color: hsl(182, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kj {
  background-color: hsl(183, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kk {
  background-color: hsl(184, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kl {
  background-color: hsl(185, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-km {
  background-color: hsl(186, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kn {
  background-color: hsl(187, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ko {
  background-color: hsl(188, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kp {
  background-color: hsl(189, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kq {
  background-color: hsl(190, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kr {
  background-color: hsl(191, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ks {
  background-color: hsl(192, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kt {
  background-color: hsl(193, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ku {
  background-color: hsl(194, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kv {
  background-color: hsl(195, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kw {
  background-color: hsl(196, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kx {
  background-color: hsl(197, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ky {
  background-color: hsl(198, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kz {
  background-color: hsl(199, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-la {
  background-color: hsl(205, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lb {
  background-color: hsl(206, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lc {
  background-color: hsl(207, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ld {
  background-color: hsl(208, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-le {
  background-color: hsl(209, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lf {
  background-color: hsl(210, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lg {
  background-color: hsl(211, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lh {
  background-color: hsl(212, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-li {
  background-color: hsl(213, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lj {
  background-color: hsl(214, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lk {
  background-color: hsl(215, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ll {
  background-color: hsl(216, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lm {
  background-color: hsl(217, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ln {
  background-color: hsl(218, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lo {
  background-color: hsl(219, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lp {
  background-color: hsl(220, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lq {
  background-color: hsl(221, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lr {
  background-color: hsl(222, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ls {
  background-color: hsl(223, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lt {
  background-color: hsl(224, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lu {
  background-color: hsl(225, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lv {
  background-color: hsl(226, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lw {
  background-color: hsl(227, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lx {
  background-color: hsl(228, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ly {
  background-color: hsl(229, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lz {
  background-color: hsl(230, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ma {
  background-color: hsl(236, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mb {
  background-color: hsl(237, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mc {
  background-color: hsl(238, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-md {
  background-color: hsl(239, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-me {
  background-color: hsl(240, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mf {
  background-color: hsl(241, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mg {
  background-color: hsl(242, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mh {
  background-color: hsl(243, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mi {
  background-color: hsl(244, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mj {
  background-color: hsl(245, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mk {
  background-color: hsl(246, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ml {
  background-color: hsl(247, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mm {
  background-color: hsl(248, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mn {
  background-color: hsl(249, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mo {
  background-color: hsl(250, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mp {
  background-color: hsl(251, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mq {
  background-color: hsl(252, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mr {
  background-color: hsl(253, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ms {
  background-color: hsl(254, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mt {
  background-color: hsl(255, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mu {
  background-color: hsl(256, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mv {
  background-color: hsl(257, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mw {
  background-color: hsl(258, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mx {
  background-color: hsl(259, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-my {
  background-color: hsl(260, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mz {
  background-color: hsl(261, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-na {
  background-color: hsl(267, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nb {
  background-color: hsl(268, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nc {
  background-color: hsl(269, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nd {
  background-color: hsl(270, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ne {
  background-color: hsl(271, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nf {
  background-color: hsl(272, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ng {
  background-color: hsl(273, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nh {
  background-color: hsl(274, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ni {
  background-color: hsl(275, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nj {
  background-color: hsl(276, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nk {
  background-color: hsl(277, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nl {
  background-color: hsl(278, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nm {
  background-color: hsl(279, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nn {
  background-color: hsl(280, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-no {
  background-color: hsl(281, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-np {
  background-color: hsl(282, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nq {
  background-color: hsl(283, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nr {
  background-color: hsl(284, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ns {
  background-color: hsl(285, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nt {
  background-color: hsl(286, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nu {
  background-color: hsl(287, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nv {
  background-color: hsl(288, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nw {
  background-color: hsl(289, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nx {
  background-color: hsl(290, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ny {
  background-color: hsl(291, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nz {
  background-color: hsl(292, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-oa {
  background-color: hsl(298, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ob {
  background-color: hsl(299, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-oc {
  background-color: hsl(300, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-od {
  background-color: hsl(301, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-oe {
  background-color: hsl(302, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-of {
  background-color: hsl(303, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-og {
  background-color: hsl(304, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-oh {
  background-color: hsl(305, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-oi {
  background-color: hsl(306, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-oj {
  background-color: hsl(307, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ok {
  background-color: hsl(308, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ol {
  background-color: hsl(309, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-om {
  background-color: hsl(310, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-on {
  background-color: hsl(311, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-oo {
  background-color: hsl(312, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-op {
  background-color: hsl(313, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-oq {
  background-color: hsl(314, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-or {
  background-color: hsl(315, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-os {
  background-color: hsl(316, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ot {
  background-color: hsl(317, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ou {
  background-color: hsl(318, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ov {
  background-color: hsl(319, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ow {
  background-color: hsl(320, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ox {
  background-color: hsl(321, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-oy {
  background-color: hsl(322, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-oz {
  background-color: hsl(323, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pa {
  background-color: hsl(329, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pb {
  background-color: hsl(330, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pc {
  background-color: hsl(331, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pd {
  background-color: hsl(332, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pe {
  background-color: hsl(333, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pf {
  background-color: hsl(334, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pg {
  background-color: hsl(335, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ph {
  background-color: hsl(336, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pi {
  background-color: hsl(337, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pj {
  background-color: hsl(338, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pk {
  background-color: hsl(339, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pl {
  background-color: hsl(340, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pm {
  background-color: hsl(341, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pn {
  background-color: hsl(342, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-po {
  background-color: hsl(343, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pp {
  background-color: hsl(344, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pq {
  background-color: hsl(345, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pr {
  background-color: hsl(346, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ps {
  background-color: hsl(347, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pt {
  background-color: hsl(348, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pu {
  background-color: hsl(349, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pv {
  background-color: hsl(350, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pw {
  background-color: hsl(351, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-px {
  background-color: hsl(352, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-py {
  background-color: hsl(353, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pz {
  background-color: hsl(354, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qa {
  background-color: hsl(0, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qb {
  background-color: hsl(1, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qc {
  background-color: hsl(2, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qd {
  background-color: hsl(3, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qe {
  background-color: hsl(4, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qf {
  background-color: hsl(5, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qg {
  background-color: hsl(6, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qh {
  background-color: hsl(7, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qi {
  background-color: hsl(8, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qj {
  background-color: hsl(9, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qk {
  background-color: hsl(10, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ql {
  background-color: hsl(11, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qm {
  background-color: hsl(12, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qn {
  background-color: hsl(13, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qo {
  background-color: hsl(14, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qp {
  background-color: hsl(15, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qq {
  background-color: hsl(16, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qr {
  background-color: hsl(17, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qs {
  background-color: hsl(18, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qt {
  background-color: hsl(19, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qu {
  background-color: hsl(20, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qv {
  background-color: hsl(21, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qw {
  background-color: hsl(22, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qx {
  background-color: hsl(23, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qy {
  background-color: hsl(24, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qz {
  background-color: hsl(25, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ra {
  background-color: hsl(31, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rb {
  background-color: hsl(32, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rc {
  background-color: hsl(33, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rd {
  background-color: hsl(34, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-re {
  background-color: hsl(35, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rf {
  background-color: hsl(36, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rg {
  background-color: hsl(37, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rh {
  background-color: hsl(38, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ri {
  background-color: hsl(39, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rj {
  background-color: hsl(40, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rk {
  background-color: hsl(41, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rl {
  background-color: hsl(42, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rm {
  background-color: hsl(43, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rn {
  background-color: hsl(44, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ro {
  background-color: hsl(45, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rp {
  background-color: hsl(46, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rq {
  background-color: hsl(47, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rr {
  background-color: hsl(48, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rs {
  background-color: hsl(49, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rt {
  background-color: hsl(50, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ru {
  background-color: hsl(51, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rv {
  background-color: hsl(52, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rw {
  background-color: hsl(53, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rx {
  background-color: hsl(54, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ry {
  background-color: hsl(55, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rz {
  background-color: hsl(56, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sa {
  background-color: hsl(62, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sb {
  background-color: hsl(63, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sc {
  background-color: hsl(64, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sd {
  background-color: hsl(65, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-se {
  background-color: hsl(66, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sf {
  background-color: hsl(67, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sg {
  background-color: hsl(68, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sh {
  background-color: hsl(69, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-si {
  background-color: hsl(70, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sj {
  background-color: hsl(71, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sk {
  background-color: hsl(72, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sl {
  background-color: hsl(73, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sm {
  background-color: hsl(74, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sn {
  background-color: hsl(75, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-so {
  background-color: hsl(76, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sp {
  background-color: hsl(77, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sq {
  background-color: hsl(78, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sr {
  background-color: hsl(79, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ss {
  background-color: hsl(80, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-st {
  background-color: hsl(81, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-su {
  background-color: hsl(82, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sv {
  background-color: hsl(83, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sw {
  background-color: hsl(84, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sx {
  background-color: hsl(85, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sy {
  background-color: hsl(86, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sz {
  background-color: hsl(87, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ta {
  background-color: hsl(93, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tb {
  background-color: hsl(94, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tc {
  background-color: hsl(95, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-td {
  background-color: hsl(96, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-te {
  background-color: hsl(97, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tf {
  background-color: hsl(98, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tg {
  background-color: hsl(99, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-th {
  background-color: hsl(100, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ti {
  background-color: hsl(101, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tj {
  background-color: hsl(102, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tk {
  background-color: hsl(103, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tl {
  background-color: hsl(104, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tm {
  background-color: hsl(105, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tn {
  background-color: hsl(106, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-to {
  background-color: hsl(107, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tp {
  background-color: hsl(108, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tq {
  background-color: hsl(109, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tr {
  background-color: hsl(110, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ts {
  background-color: hsl(111, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tt {
  background-color: hsl(112, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tu {
  background-color: hsl(113, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tv {
  background-color: hsl(114, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tw {
  background-color: hsl(115, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tx {
  background-color: hsl(116, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ty {
  background-color: hsl(117, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tz {
  background-color: hsl(118, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ua {
  background-color: hsl(124, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ub {
  background-color: hsl(125, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-uc {
  background-color: hsl(126, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ud {
  background-color: hsl(127, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ue {
  background-color: hsl(128, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-uf {
  background-color: hsl(129, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ug {
  background-color: hsl(130, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-uh {
  background-color: hsl(131, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ui {
  background-color: hsl(132, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-uj {
  background-color: hsl(133, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-uk {
  background-color: hsl(134, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ul {
  background-color: hsl(135, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-um {
  background-color: hsl(136, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-un {
  background-color: hsl(137, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-uo {
  background-color: hsl(138, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-up {
  background-color: hsl(139, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-uq {
  background-color: hsl(140, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ur {
  background-color: hsl(141, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-us {
  background-color: hsl(142, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ut {
  background-color: hsl(143, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-uu {
  background-color: hsl(144, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-uv {
  background-color: hsl(145, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-uw {
  background-color: hsl(146, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ux {
  background-color: hsl(147, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-uy {
  background-color: hsl(148, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-uz {
  background-color: hsl(149, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-va {
  background-color: hsl(155, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vb {
  background-color: hsl(156, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vc {
  background-color: hsl(157, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vd {
  background-color: hsl(158, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ve {
  background-color: hsl(159, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vf {
  background-color: hsl(160, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vg {
  background-color: hsl(161, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vh {
  background-color: hsl(162, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vi {
  background-color: hsl(163, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vj {
  background-color: hsl(164, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vk {
  background-color: hsl(165, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vl {
  background-color: hsl(166, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vm {
  background-color: hsl(167, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vn {
  background-color: hsl(168, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vo {
  background-color: hsl(169, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vp {
  background-color: hsl(170, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vq {
  background-color: hsl(171, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vr {
  background-color: hsl(172, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vs {
  background-color: hsl(173, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vt {
  background-color: hsl(174, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vu {
  background-color: hsl(175, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vv {
  background-color: hsl(176, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vw {
  background-color: hsl(177, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vx {
  background-color: hsl(178, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vy {
  background-color: hsl(179, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vz {
  background-color: hsl(180, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wa {
  background-color: hsl(186, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wb {
  background-color: hsl(187, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wc {
  background-color: hsl(188, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wd {
  background-color: hsl(189, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-we {
  background-color: hsl(190, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wf {
  background-color: hsl(191, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wg {
  background-color: hsl(192, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wh {
  background-color: hsl(193, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wi {
  background-color: hsl(194, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wj {
  background-color: hsl(195, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wk {
  background-color: hsl(196, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wl {
  background-color: hsl(197, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wm {
  background-color: hsl(198, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wn {
  background-color: hsl(199, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wo {
  background-color: hsl(200, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wp {
  background-color: hsl(201, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wq {
  background-color: hsl(202, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wr {
  background-color: hsl(203, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ws {
  background-color: hsl(204, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wt {
  background-color: hsl(205, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wu {
  background-color: hsl(206, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wv {
  background-color: hsl(207, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ww {
  background-color: hsl(208, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wx {
  background-color: hsl(209, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wy {
  background-color: hsl(210, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wz {
  background-color: hsl(211, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xa {
  background-color: hsl(217, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xb {
  background-color: hsl(218, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xc {
  background-color: hsl(219, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xd {
  background-color: hsl(220, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xe {
  background-color: hsl(221, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xf {
  background-color: hsl(222, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xg {
  background-color: hsl(223, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xh {
  background-color: hsl(224, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xi {
  background-color: hsl(225, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xj {
  background-color: hsl(226, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xk {
  background-color: hsl(227, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xl {
  background-color: hsl(228, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xm {
  background-color: hsl(229, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xn {
  background-color: hsl(230, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xo {
  background-color: hsl(231, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xp {
  background-color: hsl(232, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xq {
  background-color: hsl(233, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xr {
  background-color: hsl(234, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xs {
  background-color: hsl(235, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xt {
  background-color: hsl(236, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xu {
  background-color: hsl(237, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xv {
  background-color: hsl(238, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xw {
  background-color: hsl(239, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xx {
  background-color: hsl(240, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xy {
  background-color: hsl(241, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xz {
  background-color: hsl(242, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ya {
  background-color: hsl(248, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yb {
  background-color: hsl(249, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yc {
  background-color: hsl(250, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yd {
  background-color: hsl(251, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ye {
  background-color: hsl(252, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yf {
  background-color: hsl(253, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yg {
  background-color: hsl(254, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yh {
  background-color: hsl(255, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yi {
  background-color: hsl(256, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yj {
  background-color: hsl(257, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yk {
  background-color: hsl(258, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yl {
  background-color: hsl(259, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ym {
  background-color: hsl(260, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yn {
  background-color: hsl(261, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yo {
  background-color: hsl(262, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yp {
  background-color: hsl(263, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yq {
  background-color: hsl(264, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yr {
  background-color: hsl(265, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ys {
  background-color: hsl(266, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yt {
  background-color: hsl(267, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yu {
  background-color: hsl(268, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yv {
  background-color: hsl(269, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yw {
  background-color: hsl(270, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yx {
  background-color: hsl(271, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yy {
  background-color: hsl(272, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yz {
  background-color: hsl(273, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-za {
  background-color: hsl(279, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zb {
  background-color: hsl(280, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zc {
  background-color: hsl(281, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zd {
  background-color: hsl(282, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ze {
  background-color: hsl(283, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zf {
  background-color: hsl(284, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zg {
  background-color: hsl(285, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zh {
  background-color: hsl(286, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zi {
  background-color: hsl(287, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zj {
  background-color: hsl(288, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zk {
  background-color: hsl(289, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zl {
  background-color: hsl(290, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zm {
  background-color: hsl(291, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zn {
  background-color: hsl(292, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zo {
  background-color: hsl(293, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zp {
  background-color: hsl(294, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zq {
  background-color: hsl(295, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zr {
  background-color: hsl(296, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zs {
  background-color: hsl(297, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zt {
  background-color: hsl(298, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zu {
  background-color: hsl(299, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zv {
  background-color: hsl(300, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zw {
  background-color: hsl(301, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zx {
  background-color: hsl(302, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zy {
  background-color: hsl(303, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zz {
  background-color: hsl(304, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar {
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar--sm {
  height: 24px;
  width: 24px;
  font-size: 0.75rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar--md {
  height: 44px;
  width: 44px;
  font-size: 1rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar--lg {
  height: 88px;
  width: 88px;
  font-size: 1.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar--rounded {
  border-radius: 0.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .image-placeholder, :where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-game, :where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-movie, :where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-book, :where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-music, :where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-sondages, :where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-jeux_concours, :where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-evenements, :where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-equipes, :where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-enquetes, :where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-articles, :where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-annonces, :where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-albums, :where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-actualites {
  border: 1px solid rgba(37, 38, 40, 0.16);
  overflow: hidden;
}
:where(theme-provider[data-theme=swizy-v3x]) .banner-wavy {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
:where(theme-provider[data-theme=swizy-v3x]) .banner-wavy::before, :where(theme-provider[data-theme=swizy-v3x]) .banner-wavy::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 2;
}
:where(theme-provider[data-theme=swizy-v3x]) .banner-wavy--primary::before, :where(theme-provider[data-theme=swizy-v3x]) .banner-wavy--primary::after {
  height: 10px;
  background-repeat: repeat-x;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 37.6017 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,1.68506 C9.41781,1.68506 9.41781,8.63547 18.8009,8.63547 C28.1839,8.63547 28.2187,1.68506 37.6017,1.68506 V10 H0 Z' fill='rgb(239.7, 248.814893617, 255)'/%3E%3Cpath d='M0,1.68506 C9.41781,1.68506 9.41781,8.63547 18.8009,8.63547 C28.1839,8.63547 28.2187,1.68506 37.6017,1.68506' fill='none' stroke='rgb(153, 213.7659574468, 255)' stroke-width='2'/%3E%3C/svg%3E");
}
:where(theme-provider[data-theme=swizy-v3x]) .banner-wavy--primary::before {
  bottom: -10px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
:where(theme-provider[data-theme=swizy-v3x]) .banner-wavy--primary::after {
  top: -10px;
}
:where(theme-provider[data-theme=swizy-v3x]) .banner-wavy__title {
  font-weight: 700;
}
:where(theme-provider[data-theme=swizy-v3x]) .banner-wavy__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
:where(theme-provider[data-theme=swizy-v3x]) .container-mw-xs {
  width: 100%;
  margin: auto;
  max-width: 100% !important;
}
@media (min-width: 444px) {
  :where(theme-provider[data-theme=swizy-v3x]) .container-mw-xs {
    max-width: 396px !important;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .container-mw-sm {
  width: 100%;
  margin: auto;
  max-width: 100% !important;
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .container-mw-sm {
    max-width: 552px !important;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .container-mw-md {
  width: 100%;
  margin: auto;
  max-width: 100% !important;
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .container-mw-md {
    max-width: 852px !important;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .container-mw-lg {
  width: 100%;
  margin: auto;
  max-width: 100% !important;
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .container-mw-lg {
    max-width: 1152px !important;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .container-mw-xl {
  width: 100%;
  margin: auto;
  max-width: 100% !important;
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .container-mw-xl {
    max-width: 1488px !important;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-aa {
  background-color: hsl(224, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ab {
  background-color: hsl(225, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ac {
  background-color: hsl(226, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ad {
  background-color: hsl(227, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ae {
  background-color: hsl(228, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-af {
  background-color: hsl(229, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ag {
  background-color: hsl(230, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ah {
  background-color: hsl(231, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ai {
  background-color: hsl(232, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-aj {
  background-color: hsl(233, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ak {
  background-color: hsl(234, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-al {
  background-color: hsl(235, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-am {
  background-color: hsl(236, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-an {
  background-color: hsl(237, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ao {
  background-color: hsl(238, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ap {
  background-color: hsl(239, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-aq {
  background-color: hsl(240, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ar {
  background-color: hsl(241, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-as {
  background-color: hsl(242, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-at {
  background-color: hsl(243, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-au {
  background-color: hsl(244, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-av {
  background-color: hsl(245, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-aw {
  background-color: hsl(246, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ax {
  background-color: hsl(247, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ay {
  background-color: hsl(248, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-az {
  background-color: hsl(249, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ba {
  background-color: hsl(255, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bb {
  background-color: hsl(256, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bc {
  background-color: hsl(257, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bd {
  background-color: hsl(258, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-be {
  background-color: hsl(259, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bf {
  background-color: hsl(260, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bg {
  background-color: hsl(261, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bh {
  background-color: hsl(262, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bi {
  background-color: hsl(263, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bj {
  background-color: hsl(264, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bk {
  background-color: hsl(265, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bl {
  background-color: hsl(266, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bm {
  background-color: hsl(267, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bn {
  background-color: hsl(268, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bo {
  background-color: hsl(269, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bp {
  background-color: hsl(270, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bq {
  background-color: hsl(271, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-br {
  background-color: hsl(272, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bs {
  background-color: hsl(273, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bt {
  background-color: hsl(274, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bu {
  background-color: hsl(275, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bv {
  background-color: hsl(276, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bw {
  background-color: hsl(277, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bx {
  background-color: hsl(278, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-by {
  background-color: hsl(279, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-bz {
  background-color: hsl(280, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ca {
  background-color: hsl(286, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cb {
  background-color: hsl(287, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cc {
  background-color: hsl(288, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cd {
  background-color: hsl(289, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ce {
  background-color: hsl(290, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cf {
  background-color: hsl(291, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cg {
  background-color: hsl(292, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ch {
  background-color: hsl(293, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ci {
  background-color: hsl(294, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cj {
  background-color: hsl(295, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ck {
  background-color: hsl(296, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cl {
  background-color: hsl(297, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cm {
  background-color: hsl(298, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cn {
  background-color: hsl(299, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-co {
  background-color: hsl(300, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cp {
  background-color: hsl(301, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cq {
  background-color: hsl(302, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cr {
  background-color: hsl(303, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cs {
  background-color: hsl(304, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ct {
  background-color: hsl(305, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cu {
  background-color: hsl(306, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cv {
  background-color: hsl(307, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cw {
  background-color: hsl(308, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cx {
  background-color: hsl(309, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cy {
  background-color: hsl(310, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-cz {
  background-color: hsl(311, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-da {
  background-color: hsl(317, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-db {
  background-color: hsl(318, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dc {
  background-color: hsl(319, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dd {
  background-color: hsl(320, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-de {
  background-color: hsl(321, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-df {
  background-color: hsl(322, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dg {
  background-color: hsl(323, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dh {
  background-color: hsl(324, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-di {
  background-color: hsl(325, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dj {
  background-color: hsl(326, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dk {
  background-color: hsl(327, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dl {
  background-color: hsl(328, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dm {
  background-color: hsl(329, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dn {
  background-color: hsl(330, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-do {
  background-color: hsl(331, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dp {
  background-color: hsl(332, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dq {
  background-color: hsl(333, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dr {
  background-color: hsl(334, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ds {
  background-color: hsl(335, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dt {
  background-color: hsl(336, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-du {
  background-color: hsl(337, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dv {
  background-color: hsl(338, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dw {
  background-color: hsl(339, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dx {
  background-color: hsl(340, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dy {
  background-color: hsl(341, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-dz {
  background-color: hsl(342, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ea {
  background-color: hsl(348, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-eb {
  background-color: hsl(349, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ec {
  background-color: hsl(350, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ed {
  background-color: hsl(351, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ee {
  background-color: hsl(352, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ef {
  background-color: hsl(353, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-eg {
  background-color: hsl(354, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-eh {
  background-color: hsl(355, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ei {
  background-color: hsl(356, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ej {
  background-color: hsl(357, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ek {
  background-color: hsl(358, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-el {
  background-color: hsl(359, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-em {
  background-color: hsl(0, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-en {
  background-color: hsl(1, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-eo {
  background-color: hsl(2, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ep {
  background-color: hsl(3, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-eq {
  background-color: hsl(4, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-er {
  background-color: hsl(5, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-es {
  background-color: hsl(6, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-et {
  background-color: hsl(7, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-eu {
  background-color: hsl(8, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ev {
  background-color: hsl(9, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ew {
  background-color: hsl(10, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ex {
  background-color: hsl(11, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ey {
  background-color: hsl(12, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ez {
  background-color: hsl(13, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fa {
  background-color: hsl(19, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fb {
  background-color: hsl(20, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fc {
  background-color: hsl(21, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fd {
  background-color: hsl(22, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fe {
  background-color: hsl(23, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ff {
  background-color: hsl(24, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fg {
  background-color: hsl(25, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fh {
  background-color: hsl(26, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fi {
  background-color: hsl(27, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fj {
  background-color: hsl(28, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fk {
  background-color: hsl(29, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fl {
  background-color: hsl(30, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fm {
  background-color: hsl(31, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fn {
  background-color: hsl(32, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fo {
  background-color: hsl(33, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fp {
  background-color: hsl(34, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fq {
  background-color: hsl(35, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fr {
  background-color: hsl(36, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fs {
  background-color: hsl(37, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ft {
  background-color: hsl(38, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fu {
  background-color: hsl(39, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fv {
  background-color: hsl(40, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fw {
  background-color: hsl(41, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fx {
  background-color: hsl(42, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fy {
  background-color: hsl(43, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-fz {
  background-color: hsl(44, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ga {
  background-color: hsl(50, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gb {
  background-color: hsl(51, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gc {
  background-color: hsl(52, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gd {
  background-color: hsl(53, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ge {
  background-color: hsl(54, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gf {
  background-color: hsl(55, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gg {
  background-color: hsl(56, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gh {
  background-color: hsl(57, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gi {
  background-color: hsl(58, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gj {
  background-color: hsl(59, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gk {
  background-color: hsl(60, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gl {
  background-color: hsl(61, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gm {
  background-color: hsl(62, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gn {
  background-color: hsl(63, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-go {
  background-color: hsl(64, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gp {
  background-color: hsl(65, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gq {
  background-color: hsl(66, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gr {
  background-color: hsl(67, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gs {
  background-color: hsl(68, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gt {
  background-color: hsl(69, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gu {
  background-color: hsl(70, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gv {
  background-color: hsl(71, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gw {
  background-color: hsl(72, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gx {
  background-color: hsl(73, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gy {
  background-color: hsl(74, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-gz {
  background-color: hsl(75, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ha {
  background-color: hsl(81, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hb {
  background-color: hsl(82, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hc {
  background-color: hsl(83, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hd {
  background-color: hsl(84, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-he {
  background-color: hsl(85, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hf {
  background-color: hsl(86, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hg {
  background-color: hsl(87, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hh {
  background-color: hsl(88, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hi {
  background-color: hsl(89, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hj {
  background-color: hsl(90, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hk {
  background-color: hsl(91, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hl {
  background-color: hsl(92, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hm {
  background-color: hsl(93, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hn {
  background-color: hsl(94, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ho {
  background-color: hsl(95, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hp {
  background-color: hsl(96, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hq {
  background-color: hsl(97, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hr {
  background-color: hsl(98, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hs {
  background-color: hsl(99, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ht {
  background-color: hsl(100, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hu {
  background-color: hsl(101, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hv {
  background-color: hsl(102, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hw {
  background-color: hsl(103, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hx {
  background-color: hsl(104, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hy {
  background-color: hsl(105, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-hz {
  background-color: hsl(106, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ia {
  background-color: hsl(112, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ib {
  background-color: hsl(113, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ic {
  background-color: hsl(114, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-id {
  background-color: hsl(115, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ie {
  background-color: hsl(116, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-if {
  background-color: hsl(117, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ig {
  background-color: hsl(118, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ih {
  background-color: hsl(119, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ii {
  background-color: hsl(120, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ij {
  background-color: hsl(121, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ik {
  background-color: hsl(122, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-il {
  background-color: hsl(123, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-im {
  background-color: hsl(124, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-in {
  background-color: hsl(125, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-io {
  background-color: hsl(126, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ip {
  background-color: hsl(127, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-iq {
  background-color: hsl(128, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ir {
  background-color: hsl(129, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-is {
  background-color: hsl(130, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-it {
  background-color: hsl(131, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-iu {
  background-color: hsl(132, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-iv {
  background-color: hsl(133, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-iw {
  background-color: hsl(134, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ix {
  background-color: hsl(135, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-iy {
  background-color: hsl(136, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-iz {
  background-color: hsl(137, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ja {
  background-color: hsl(143, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jb {
  background-color: hsl(144, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jc {
  background-color: hsl(145, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jd {
  background-color: hsl(146, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-je {
  background-color: hsl(147, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jf {
  background-color: hsl(148, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jg {
  background-color: hsl(149, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jh {
  background-color: hsl(150, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ji {
  background-color: hsl(151, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jj {
  background-color: hsl(152, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jk {
  background-color: hsl(153, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jl {
  background-color: hsl(154, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jm {
  background-color: hsl(155, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jn {
  background-color: hsl(156, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jo {
  background-color: hsl(157, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jp {
  background-color: hsl(158, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jq {
  background-color: hsl(159, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jr {
  background-color: hsl(160, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-js {
  background-color: hsl(161, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jt {
  background-color: hsl(162, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ju {
  background-color: hsl(163, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jv {
  background-color: hsl(164, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jw {
  background-color: hsl(165, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jx {
  background-color: hsl(166, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jy {
  background-color: hsl(167, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-jz {
  background-color: hsl(168, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ka {
  background-color: hsl(174, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kb {
  background-color: hsl(175, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kc {
  background-color: hsl(176, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kd {
  background-color: hsl(177, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ke {
  background-color: hsl(178, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kf {
  background-color: hsl(179, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kg {
  background-color: hsl(180, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kh {
  background-color: hsl(181, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ki {
  background-color: hsl(182, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kj {
  background-color: hsl(183, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kk {
  background-color: hsl(184, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kl {
  background-color: hsl(185, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-km {
  background-color: hsl(186, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kn {
  background-color: hsl(187, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ko {
  background-color: hsl(188, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kp {
  background-color: hsl(189, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kq {
  background-color: hsl(190, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kr {
  background-color: hsl(191, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ks {
  background-color: hsl(192, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kt {
  background-color: hsl(193, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ku {
  background-color: hsl(194, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kv {
  background-color: hsl(195, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kw {
  background-color: hsl(196, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kx {
  background-color: hsl(197, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ky {
  background-color: hsl(198, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-kz {
  background-color: hsl(199, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-la {
  background-color: hsl(205, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lb {
  background-color: hsl(206, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lc {
  background-color: hsl(207, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ld {
  background-color: hsl(208, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-le {
  background-color: hsl(209, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lf {
  background-color: hsl(210, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lg {
  background-color: hsl(211, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lh {
  background-color: hsl(212, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-li {
  background-color: hsl(213, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lj {
  background-color: hsl(214, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lk {
  background-color: hsl(215, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ll {
  background-color: hsl(216, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lm {
  background-color: hsl(217, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ln {
  background-color: hsl(218, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lo {
  background-color: hsl(219, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lp {
  background-color: hsl(220, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lq {
  background-color: hsl(221, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lr {
  background-color: hsl(222, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ls {
  background-color: hsl(223, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lt {
  background-color: hsl(224, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lu {
  background-color: hsl(225, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lv {
  background-color: hsl(226, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lw {
  background-color: hsl(227, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lx {
  background-color: hsl(228, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ly {
  background-color: hsl(229, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-lz {
  background-color: hsl(230, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ma {
  background-color: hsl(236, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mb {
  background-color: hsl(237, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mc {
  background-color: hsl(238, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-md {
  background-color: hsl(239, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-me {
  background-color: hsl(240, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mf {
  background-color: hsl(241, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mg {
  background-color: hsl(242, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mh {
  background-color: hsl(243, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mi {
  background-color: hsl(244, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mj {
  background-color: hsl(245, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mk {
  background-color: hsl(246, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ml {
  background-color: hsl(247, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mm {
  background-color: hsl(248, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mn {
  background-color: hsl(249, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mo {
  background-color: hsl(250, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mp {
  background-color: hsl(251, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mq {
  background-color: hsl(252, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mr {
  background-color: hsl(253, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ms {
  background-color: hsl(254, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mt {
  background-color: hsl(255, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mu {
  background-color: hsl(256, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mv {
  background-color: hsl(257, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mw {
  background-color: hsl(258, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mx {
  background-color: hsl(259, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-my {
  background-color: hsl(260, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-mz {
  background-color: hsl(261, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-na {
  background-color: hsl(267, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nb {
  background-color: hsl(268, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nc {
  background-color: hsl(269, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nd {
  background-color: hsl(270, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ne {
  background-color: hsl(271, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nf {
  background-color: hsl(272, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ng {
  background-color: hsl(273, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nh {
  background-color: hsl(274, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ni {
  background-color: hsl(275, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nj {
  background-color: hsl(276, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nk {
  background-color: hsl(277, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nl {
  background-color: hsl(278, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nm {
  background-color: hsl(279, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nn {
  background-color: hsl(280, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-no {
  background-color: hsl(281, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-np {
  background-color: hsl(282, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nq {
  background-color: hsl(283, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nr {
  background-color: hsl(284, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ns {
  background-color: hsl(285, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nt {
  background-color: hsl(286, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nu {
  background-color: hsl(287, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nv {
  background-color: hsl(288, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nw {
  background-color: hsl(289, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nx {
  background-color: hsl(290, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ny {
  background-color: hsl(291, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-nz {
  background-color: hsl(292, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-oa {
  background-color: hsl(298, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ob {
  background-color: hsl(299, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-oc {
  background-color: hsl(300, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-od {
  background-color: hsl(301, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-oe {
  background-color: hsl(302, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-of {
  background-color: hsl(303, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-og {
  background-color: hsl(304, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-oh {
  background-color: hsl(305, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-oi {
  background-color: hsl(306, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-oj {
  background-color: hsl(307, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ok {
  background-color: hsl(308, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ol {
  background-color: hsl(309, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-om {
  background-color: hsl(310, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-on {
  background-color: hsl(311, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-oo {
  background-color: hsl(312, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-op {
  background-color: hsl(313, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-oq {
  background-color: hsl(314, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-or {
  background-color: hsl(315, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-os {
  background-color: hsl(316, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ot {
  background-color: hsl(317, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ou {
  background-color: hsl(318, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ov {
  background-color: hsl(319, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ow {
  background-color: hsl(320, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ox {
  background-color: hsl(321, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-oy {
  background-color: hsl(322, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-oz {
  background-color: hsl(323, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pa {
  background-color: hsl(329, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pb {
  background-color: hsl(330, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pc {
  background-color: hsl(331, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pd {
  background-color: hsl(332, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pe {
  background-color: hsl(333, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pf {
  background-color: hsl(334, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pg {
  background-color: hsl(335, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ph {
  background-color: hsl(336, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pi {
  background-color: hsl(337, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pj {
  background-color: hsl(338, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pk {
  background-color: hsl(339, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pl {
  background-color: hsl(340, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pm {
  background-color: hsl(341, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pn {
  background-color: hsl(342, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-po {
  background-color: hsl(343, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pp {
  background-color: hsl(344, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pq {
  background-color: hsl(345, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pr {
  background-color: hsl(346, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ps {
  background-color: hsl(347, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pt {
  background-color: hsl(348, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pu {
  background-color: hsl(349, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pv {
  background-color: hsl(350, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pw {
  background-color: hsl(351, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-px {
  background-color: hsl(352, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-py {
  background-color: hsl(353, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-pz {
  background-color: hsl(354, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qa {
  background-color: hsl(0, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qb {
  background-color: hsl(1, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qc {
  background-color: hsl(2, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qd {
  background-color: hsl(3, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qe {
  background-color: hsl(4, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qf {
  background-color: hsl(5, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qg {
  background-color: hsl(6, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qh {
  background-color: hsl(7, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qi {
  background-color: hsl(8, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qj {
  background-color: hsl(9, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qk {
  background-color: hsl(10, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ql {
  background-color: hsl(11, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qm {
  background-color: hsl(12, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qn {
  background-color: hsl(13, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qo {
  background-color: hsl(14, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qp {
  background-color: hsl(15, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qq {
  background-color: hsl(16, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qr {
  background-color: hsl(17, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qs {
  background-color: hsl(18, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qt {
  background-color: hsl(19, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qu {
  background-color: hsl(20, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qv {
  background-color: hsl(21, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qw {
  background-color: hsl(22, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qx {
  background-color: hsl(23, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qy {
  background-color: hsl(24, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-qz {
  background-color: hsl(25, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ra {
  background-color: hsl(31, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rb {
  background-color: hsl(32, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rc {
  background-color: hsl(33, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rd {
  background-color: hsl(34, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-re {
  background-color: hsl(35, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rf {
  background-color: hsl(36, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rg {
  background-color: hsl(37, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rh {
  background-color: hsl(38, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ri {
  background-color: hsl(39, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rj {
  background-color: hsl(40, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rk {
  background-color: hsl(41, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rl {
  background-color: hsl(42, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rm {
  background-color: hsl(43, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rn {
  background-color: hsl(44, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ro {
  background-color: hsl(45, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rp {
  background-color: hsl(46, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rq {
  background-color: hsl(47, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rr {
  background-color: hsl(48, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rs {
  background-color: hsl(49, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rt {
  background-color: hsl(50, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ru {
  background-color: hsl(51, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rv {
  background-color: hsl(52, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rw {
  background-color: hsl(53, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rx {
  background-color: hsl(54, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ry {
  background-color: hsl(55, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-rz {
  background-color: hsl(56, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sa {
  background-color: hsl(62, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sb {
  background-color: hsl(63, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sc {
  background-color: hsl(64, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sd {
  background-color: hsl(65, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-se {
  background-color: hsl(66, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sf {
  background-color: hsl(67, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sg {
  background-color: hsl(68, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sh {
  background-color: hsl(69, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-si {
  background-color: hsl(70, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sj {
  background-color: hsl(71, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sk {
  background-color: hsl(72, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sl {
  background-color: hsl(73, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sm {
  background-color: hsl(74, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sn {
  background-color: hsl(75, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-so {
  background-color: hsl(76, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sp {
  background-color: hsl(77, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sq {
  background-color: hsl(78, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sr {
  background-color: hsl(79, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ss {
  background-color: hsl(80, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-st {
  background-color: hsl(81, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-su {
  background-color: hsl(82, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sv {
  background-color: hsl(83, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sw {
  background-color: hsl(84, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sx {
  background-color: hsl(85, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sy {
  background-color: hsl(86, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-sz {
  background-color: hsl(87, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ta {
  background-color: hsl(93, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tb {
  background-color: hsl(94, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tc {
  background-color: hsl(95, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-td {
  background-color: hsl(96, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-te {
  background-color: hsl(97, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tf {
  background-color: hsl(98, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tg {
  background-color: hsl(99, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-th {
  background-color: hsl(100, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ti {
  background-color: hsl(101, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tj {
  background-color: hsl(102, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tk {
  background-color: hsl(103, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tl {
  background-color: hsl(104, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tm {
  background-color: hsl(105, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tn {
  background-color: hsl(106, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-to {
  background-color: hsl(107, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tp {
  background-color: hsl(108, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tq {
  background-color: hsl(109, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tr {
  background-color: hsl(110, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ts {
  background-color: hsl(111, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tt {
  background-color: hsl(112, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tu {
  background-color: hsl(113, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tv {
  background-color: hsl(114, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tw {
  background-color: hsl(115, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tx {
  background-color: hsl(116, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ty {
  background-color: hsl(117, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-tz {
  background-color: hsl(118, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ua {
  background-color: hsl(124, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ub {
  background-color: hsl(125, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-uc {
  background-color: hsl(126, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ud {
  background-color: hsl(127, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ue {
  background-color: hsl(128, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-uf {
  background-color: hsl(129, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ug {
  background-color: hsl(130, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-uh {
  background-color: hsl(131, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ui {
  background-color: hsl(132, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-uj {
  background-color: hsl(133, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-uk {
  background-color: hsl(134, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ul {
  background-color: hsl(135, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-um {
  background-color: hsl(136, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-un {
  background-color: hsl(137, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-uo {
  background-color: hsl(138, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-up {
  background-color: hsl(139, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-uq {
  background-color: hsl(140, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ur {
  background-color: hsl(141, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-us {
  background-color: hsl(142, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ut {
  background-color: hsl(143, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-uu {
  background-color: hsl(144, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-uv {
  background-color: hsl(145, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-uw {
  background-color: hsl(146, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ux {
  background-color: hsl(147, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-uy {
  background-color: hsl(148, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-uz {
  background-color: hsl(149, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-va {
  background-color: hsl(155, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vb {
  background-color: hsl(156, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vc {
  background-color: hsl(157, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vd {
  background-color: hsl(158, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ve {
  background-color: hsl(159, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vf {
  background-color: hsl(160, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vg {
  background-color: hsl(161, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vh {
  background-color: hsl(162, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vi {
  background-color: hsl(163, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vj {
  background-color: hsl(164, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vk {
  background-color: hsl(165, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vl {
  background-color: hsl(166, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vm {
  background-color: hsl(167, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vn {
  background-color: hsl(168, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vo {
  background-color: hsl(169, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vp {
  background-color: hsl(170, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vq {
  background-color: hsl(171, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vr {
  background-color: hsl(172, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vs {
  background-color: hsl(173, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vt {
  background-color: hsl(174, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vu {
  background-color: hsl(175, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vv {
  background-color: hsl(176, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vw {
  background-color: hsl(177, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vx {
  background-color: hsl(178, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vy {
  background-color: hsl(179, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-vz {
  background-color: hsl(180, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wa {
  background-color: hsl(186, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wb {
  background-color: hsl(187, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wc {
  background-color: hsl(188, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wd {
  background-color: hsl(189, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-we {
  background-color: hsl(190, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wf {
  background-color: hsl(191, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wg {
  background-color: hsl(192, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wh {
  background-color: hsl(193, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wi {
  background-color: hsl(194, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wj {
  background-color: hsl(195, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wk {
  background-color: hsl(196, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wl {
  background-color: hsl(197, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wm {
  background-color: hsl(198, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wn {
  background-color: hsl(199, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wo {
  background-color: hsl(200, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wp {
  background-color: hsl(201, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wq {
  background-color: hsl(202, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wr {
  background-color: hsl(203, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ws {
  background-color: hsl(204, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wt {
  background-color: hsl(205, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wu {
  background-color: hsl(206, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wv {
  background-color: hsl(207, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ww {
  background-color: hsl(208, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wx {
  background-color: hsl(209, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wy {
  background-color: hsl(210, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-wz {
  background-color: hsl(211, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xa {
  background-color: hsl(217, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xb {
  background-color: hsl(218, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xc {
  background-color: hsl(219, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xd {
  background-color: hsl(220, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xe {
  background-color: hsl(221, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xf {
  background-color: hsl(222, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xg {
  background-color: hsl(223, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xh {
  background-color: hsl(224, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xi {
  background-color: hsl(225, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xj {
  background-color: hsl(226, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xk {
  background-color: hsl(227, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xl {
  background-color: hsl(228, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xm {
  background-color: hsl(229, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xn {
  background-color: hsl(230, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xo {
  background-color: hsl(231, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xp {
  background-color: hsl(232, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xq {
  background-color: hsl(233, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xr {
  background-color: hsl(234, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xs {
  background-color: hsl(235, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xt {
  background-color: hsl(236, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xu {
  background-color: hsl(237, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xv {
  background-color: hsl(238, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xw {
  background-color: hsl(239, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xx {
  background-color: hsl(240, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xy {
  background-color: hsl(241, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-xz {
  background-color: hsl(242, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ya {
  background-color: hsl(248, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yb {
  background-color: hsl(249, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yc {
  background-color: hsl(250, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yd {
  background-color: hsl(251, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ye {
  background-color: hsl(252, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yf {
  background-color: hsl(253, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yg {
  background-color: hsl(254, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yh {
  background-color: hsl(255, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yi {
  background-color: hsl(256, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yj {
  background-color: hsl(257, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yk {
  background-color: hsl(258, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yl {
  background-color: hsl(259, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ym {
  background-color: hsl(260, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yn {
  background-color: hsl(261, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yo {
  background-color: hsl(262, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yp {
  background-color: hsl(263, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yq {
  background-color: hsl(264, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yr {
  background-color: hsl(265, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ys {
  background-color: hsl(266, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yt {
  background-color: hsl(267, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yu {
  background-color: hsl(268, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yv {
  background-color: hsl(269, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yw {
  background-color: hsl(270, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yx {
  background-color: hsl(271, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yy {
  background-color: hsl(272, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-yz {
  background-color: hsl(273, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-za {
  background-color: hsl(279, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zb {
  background-color: hsl(280, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zc {
  background-color: hsl(281, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zd {
  background-color: hsl(282, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-ze {
  background-color: hsl(283, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zf {
  background-color: hsl(284, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zg {
  background-color: hsl(285, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zh {
  background-color: hsl(286, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zi {
  background-color: hsl(287, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zj {
  background-color: hsl(288, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zk {
  background-color: hsl(289, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zl {
  background-color: hsl(290, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zm {
  background-color: hsl(291, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zn {
  background-color: hsl(292, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zo {
  background-color: hsl(293, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zp {
  background-color: hsl(294, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zq {
  background-color: hsl(295, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zr {
  background-color: hsl(296, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zs {
  background-color: hsl(297, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zt {
  background-color: hsl(298, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zu {
  background-color: hsl(299, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zv {
  background-color: hsl(300, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zw {
  background-color: hsl(301, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zx {
  background-color: hsl(302, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zy {
  background-color: hsl(303, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar-text-bg-zz {
  background-color: hsl(304, 50%, 50%) !important;
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar {
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar--sm {
  height: 24px;
  width: 24px;
  font-size: 0.75rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar--md {
  height: 44px;
  width: 44px;
  font-size: 1rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar--lg {
  height: 88px;
  width: 88px;
  font-size: 1.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .avatar--rounded {
  border-radius: 0.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .activity-log {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
:where(theme-provider[data-theme=swizy-v3x]) .activity-log__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
:where(theme-provider[data-theme=swizy-v3x]) .activity-log__item__line {
  margin-top: 0.5rem;
  width: 2px;
  background-color: rgba(37, 38, 40, 0.16);
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
:where(theme-provider[data-theme=swizy-v3x]) .activity-log__item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
:where(theme-provider[data-theme=swizy-v3x]) .activity-log__item__side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 0.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .activity-log__item:last-child .activity-log__item__line {
  display: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .activity-log__item:last-child .activity-log__item__content {
  padding-bottom: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .activity-log__item__title {
  font-weight: bold;
}
:where(theme-provider[data-theme=swizy-v3x]) .activity-log__item__metadata {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
:where(theme-provider[data-theme=swizy-v3x]) .divider-horizontal {
  display: block;
  height: 1px;
  width: 100%;
  background-color: rgba(37, 38, 40, 0.16);
}
:where(theme-provider[data-theme=swizy-v3x]) .divider-vertical {
  display: inline-block;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  width: 1px;
  height: auto;
  background-color: rgba(37, 38, 40, 0.16);
}
:where(theme-provider[data-theme=swizy-v3x]) .divider-xs-vertical {
  display: inline-block;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  width: 1px;
  height: auto;
  background-color: rgba(37, 38, 40, 0.16);
}
:where(theme-provider[data-theme=swizy-v3x]) .divider-xs-horizontal {
  display: block;
  height: 1px;
  width: 100%;
  background-color: rgba(37, 38, 40, 0.16);
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .divider-sm-vertical {
    display: inline-block;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    width: 1px;
    height: auto;
    background-color: rgba(37, 38, 40, 0.16);
  }
  :where(theme-provider[data-theme=swizy-v3x]) .divider-sm-horizontal {
    display: block;
    height: 1px;
    width: 100%;
    background-color: rgba(37, 38, 40, 0.16);
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .divider-md-vertical {
    display: inline-block;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    width: 1px;
    height: auto;
    background-color: rgba(37, 38, 40, 0.16);
  }
  :where(theme-provider[data-theme=swizy-v3x]) .divider-md-horizontal {
    display: block;
    height: 1px;
    width: 100%;
    background-color: rgba(37, 38, 40, 0.16);
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .divider-lg-vertical {
    display: inline-block;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    width: 1px;
    height: auto;
    background-color: rgba(37, 38, 40, 0.16);
  }
  :where(theme-provider[data-theme=swizy-v3x]) .divider-lg-horizontal {
    display: block;
    height: 1px;
    width: 100%;
    background-color: rgba(37, 38, 40, 0.16);
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .divider-xl-vertical {
    display: inline-block;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    width: 1px;
    height: auto;
    background-color: rgba(37, 38, 40, 0.16);
  }
  :where(theme-provider[data-theme=swizy-v3x]) .divider-xl-horizontal {
    display: block;
    height: 1px;
    width: 100%;
    background-color: rgba(37, 38, 40, 0.16);
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 0.5rem;
  overflow: hidden;
}
:where(theme-provider[data-theme=swizy-v3x]) .toolbar--floating {
  position: fixed;
  z-index: 1020;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  background-color: #ffffff;
  padding: 0.5rem;
  bottom: 1rem;
  -webkit-box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
  border-radius: 1rem;
}
@media (max-width: 599.98px) {
  :where(theme-provider[data-theme=swizy-v3x]) .toolbar--floating {
    left: 1rem;
    right: 1rem;
    -webkit-transform: unset;
    transform: unset;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .toolbar--sticky {
  position: fixed;
  z-index: 1020;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  padding: 1rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .toolbar--relative {
  position: relative;
  z-index: auto;
  bottom: auto;
  left: auto;
  right: auto;
  background-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) .toolbar-xs--sticky {
  position: fixed;
  z-index: 1020;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  padding: 1rem;
  -webkit-box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
}
:where(theme-provider[data-theme=swizy-v3x]) .toolbar-xs--relative {
  position: relative;
  z-index: auto;
  bottom: auto;
  left: auto;
  right: auto;
  background-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) .toolbar-xs--floating {
  position: fixed;
  z-index: 1020;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  background-color: #ffffff;
  padding: 0.5rem;
  bottom: 1rem;
  -webkit-box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
  border-radius: 1rem;
}
@media (max-width: 599.98px) {
  :where(theme-provider[data-theme=swizy-v3x]) .toolbar-xs--floating {
    left: 1rem;
    right: 1rem;
    -webkit-transform: unset;
    transform: unset;
  }
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .toolbar-sm--sticky {
    position: fixed;
    z-index: 1020;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    padding: 1rem;
    -webkit-box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  }
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .toolbar-sm--relative {
    position: relative;
    z-index: auto;
    bottom: auto;
    left: auto;
    right: auto;
    background-color: transparent;
  }
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .toolbar-sm--floating {
    position: fixed;
    z-index: 1020;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    background-color: #ffffff;
    padding: 0.5rem;
    bottom: 1rem;
    -webkit-box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
    border-radius: 1rem;
  }
}
@media (min-width: 600px) and (max-width: 599.98px) {
  :where(theme-provider[data-theme=swizy-v3x]) .toolbar-sm--floating {
    left: 1rem;
    right: 1rem;
    -webkit-transform: unset;
    transform: unset;
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .toolbar-md--sticky {
    position: fixed;
    z-index: 1020;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    padding: 1rem;
    -webkit-box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .toolbar-md--relative {
    position: relative;
    z-index: auto;
    bottom: auto;
    left: auto;
    right: auto;
    background-color: transparent;
  }
}
@media (min-width: 900px) {
  :where(theme-provider[data-theme=swizy-v3x]) .toolbar-md--floating {
    position: fixed;
    z-index: 1020;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    background-color: #ffffff;
    padding: 0.5rem;
    bottom: 1rem;
    -webkit-box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
    border-radius: 1rem;
  }
}
@media (min-width: 900px) and (max-width: 599.98px) {
  :where(theme-provider[data-theme=swizy-v3x]) .toolbar-md--floating {
    left: 1rem;
    right: 1rem;
    -webkit-transform: unset;
    transform: unset;
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .toolbar-lg--sticky {
    position: fixed;
    z-index: 1020;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    padding: 1rem;
    -webkit-box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .toolbar-lg--relative {
    position: relative;
    z-index: auto;
    bottom: auto;
    left: auto;
    right: auto;
    background-color: transparent;
  }
}
@media (min-width: 1200px) {
  :where(theme-provider[data-theme=swizy-v3x]) .toolbar-lg--floating {
    position: fixed;
    z-index: 1020;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    background-color: #ffffff;
    padding: 0.5rem;
    bottom: 1rem;
    -webkit-box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
    border-radius: 1rem;
  }
}
@media (min-width: 1200px) and (max-width: 599.98px) {
  :where(theme-provider[data-theme=swizy-v3x]) .toolbar-lg--floating {
    left: 1rem;
    right: 1rem;
    -webkit-transform: unset;
    transform: unset;
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .toolbar-xl--sticky {
    position: fixed;
    z-index: 1020;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    padding: 1rem;
    -webkit-box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .toolbar-xl--relative {
    position: relative;
    z-index: auto;
    bottom: auto;
    left: auto;
    right: auto;
    background-color: transparent;
  }
}
@media (min-width: 1536px) {
  :where(theme-provider[data-theme=swizy-v3x]) .toolbar-xl--floating {
    position: fixed;
    z-index: 1020;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    background-color: #ffffff;
    padding: 0.5rem;
    bottom: 1rem;
    -webkit-box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
    border-radius: 1rem;
  }
}
@media (min-width: 1536px) and (max-width: 599.98px) {
  :where(theme-provider[data-theme=swizy-v3x]) .toolbar-xl--floating {
    left: 1rem;
    right: 1rem;
    -webkit-transform: unset;
    transform: unset;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) {
  /**
   * Styles spécifiques pour le composant Carte Avantage
   * 
   * Ce fichier contient les styles personnalisés pour le composant carte-avantage
   * qui complètent les classes Bootstrap existantes
   */
}
:where(theme-provider[data-theme=swizy-v3x]) .carte-avantage {
  border-radius: 0.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .carte-avantage--modern {
  border-radius: 1rem;
  min-height: 180px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
:where(theme-provider[data-theme=swizy-v3x]) .carte-avantage__footer-modern {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 576px) {
  :where(theme-provider[data-theme=swizy-v3x]) .carte-avantage--modern {
    min-height: 180px;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .carte-avantage--modern .montant-principal {
    font-size: 1.75rem !important;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .montant-principal {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 768px) {
  :where(theme-provider[data-theme=swizy-v3x]) .montant-principal {
    font-size: 2rem;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .progress-bar-integrated .progress-track {
  width: 100%;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  overflow: hidden;
}
:where(theme-provider[data-theme=swizy-v3x]) .progress-bar-integrated .progress-fill {
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
:where(theme-provider[data-theme=swizy-v3x]) .progress-bar-integrated.progress-bar-dark .progress-track {
  background-color: rgba(0, 0, 0, 0.1);
}
:where(theme-provider[data-theme=swizy-v3x]) .progress-bar-integrated.progress-bar-dark .progress-fill {
  background-color: rgba(0, 0, 0, 0.6);
}
:where(theme-provider[data-theme=swizy-v3x]) .expiration-badge {
  background-color: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
:where(theme-provider[data-theme=swizy-v3x]) .icon-container {
  width: 4.5rem;
  height: 4.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
:where(theme-provider[data-theme=swizy-v3x]) .agenda-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  outline: 1px solid rgba(37, 38, 40, 0.16);
  outline-offset: -1px;
  overflow: hidden;
  border-radius: 1rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .agenda-date--small {
  border-radius: 0.5rem;
  width: 73px;
  min-width: 73px;
}
:where(theme-provider[data-theme=swizy-v3x]) .agenda-date--small .agenda-date__top {
  height: 24px;
}
:where(theme-provider[data-theme=swizy-v3x]) .agenda-date--small .agenda-date__bottom {
  height: 30px;
}
:where(theme-provider[data-theme=swizy-v3x]) .agenda-date--expired .agenda-date__top {
  background-color: rgba(37, 38, 40, 0.56);
}
:where(theme-provider[data-theme=swizy-v3x]) .agenda-date__top {
  color: white;
  background-color: #e0000f;
  font-weight: 700;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  white-space: nowrap;
  height: 58px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
:where(theme-provider[data-theme=swizy-v3x]) .agenda-date__bottom {
  font-variant-numeric: lining-nums tabular-nums;
  color: #252628;
  font-size: 20px;
  font-weight: 700;
  background-color: rgb(247.35, 247.35, 247.35);
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
:where(theme-provider[data-theme=swizy-v3x]) .swiper {
  max-width: 100%;
  width: 100%;
}
:where(theme-provider[data-theme=swizy-v3x]) .swiper-pagination-bullets {
  margin-top: 2rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  -webkit-transition: width 0.3s ease, border-radius 0.3s ease;
  transition: width 0.3s ease, border-radius 0.3s ease;
  background: rgba(37, 38, 40, 0.06);
  border: 1px solid rgba(37, 38, 40, 0.06);
  opacity: 1;
}
:where(theme-provider[data-theme=swizy-v3x]) .swiper-pagination-bullets .swiper-pagination-bullet-active {
  width: 40px;
  border-radius: 0.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .swiper-nav {
  position: absolute;
  top: 40%;
  border-radius: 50%;
  border: 1px solid rgba(37, 38, 40, 0.16);
  background-color: white;
  z-index: 10;
  width: 40px;
  height: 40px;
}
:where(theme-provider[data-theme=swizy-v3x]) .swiper-nav.swiper-nav-next {
  right: 0%;
}
:where(theme-provider[data-theme=swizy-v3x]) .swiper-nav.swiper-nav-prev {
  left: 0%;
}
@media (max-width: 899.98px) {
  :where(theme-provider[data-theme=swizy-v3x]) .swiper-nav {
    display: none;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .wizard__progress-stepper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  height: 6px;
}
:where(theme-provider[data-theme=swizy-v3x]) .wizard__progress-stepper > div {
  border-radius: 16px;
  width: 32px;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-control-group__label {
  font-size: 14px;
  line-height: 1.3;
  font-family: "Satoshi", sans-serif;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-control-group__label--emphasized {
  font-size: 20px !important;
  line-height: 1.5 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-control-group__input-container .form-select,
:where(theme-provider[data-theme=swizy-v3x]) .form-control-group__input-container .form-control {
  border-color: rgba(37, 38, 40, 0.06);
}
:where(theme-provider[data-theme=swizy-v3x]) .form-control-group__input-container .form-select:focus,
:where(theme-provider[data-theme=swizy-v3x]) .form-control-group__input-container .form-control:focus {
  border-color: black;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-control-group__input-container .input-group-text {
  border-color: transparent;
}
:where(theme-provider[data-theme=swizy-v3x]) .form-check.form-switch .form-check-input {
  border: none;
  height: 2em;
  width: 3.25em;
  background-color: rgba(37, 38, 40, 0.15);
}
:where(theme-provider[data-theme=swizy-v3x]) .form-check.form-switch .form-check-input:checked {
  background-color: rgb(0, 112, 188);
}
:where(theme-provider[data-theme=swizy-v3x]) .input_eazyce-media {
  overflow: hidden;
  max-width: 300px;
  width: 100%;
}
:where(theme-provider[data-theme=swizy-v3x]) .boutique-product-card__logo-container {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  height: auto;
  border-radius: 0.25rem;
  background-color: rgba(255, 255, 255, 0.85);
  max-width: 90px;
}
:where(theme-provider[data-theme=swizy-v3x]) .dropdown-toggle--carret-hidden:after {
  content: unset;
}
:where(theme-provider[data-theme=swizy-v3x]) .wallet {
  border-radius: 0.5rem;
  text-decoration: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .wallet__image-container {
  height: 72px;
  width: 72px;
  border-radius: 0.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .wallet__image {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
:where(theme-provider[data-theme=swizy-v3x]) .wallet__type-nom {
  font-weight: 500;
  text-transform: uppercase;
}
:where(theme-provider[data-theme=swizy-v3x]) .wallet__nom {
  font-weight: 700;
}
:where(theme-provider[data-theme=swizy-v3x]) .wallet__amount {
  font-variant-numeric: lining-nums tabular-nums;
}
:where(theme-provider[data-theme=swizy-v3x]) .wallet__amount__remaining {
  font-weight: 700;
  text-align: center;
  font-size: 38px;
}
:where(theme-provider[data-theme=swizy-v3x]) .wallet__amount__total {
  font-weight: 700;
  text-align: center;
}
:where(theme-provider[data-theme=swizy-v3x]) .wallet--ecc {
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .wallet--ecc .badge {
  background-color: rgba(255, 255, 255, 0.06);
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .wallet--ecc .progress {
  height: 6px;
  background-color: rgba(255, 255, 255, 0.45);
}
:where(theme-provider[data-theme=swizy-v3x]) .wallet--ecc .progress-bar {
  background-color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .wallet--ecc .wallet__image-container {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background-color: rgba(255, 255, 255, 0.06);
}
:where(theme-provider[data-theme=swizy-v3x]) .wallet--ecc-cb {
  background: linear-gradient(96deg, #F0F0F0 0%, #D1D1D1 100%);
  color: #212529;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}
:where(theme-provider[data-theme=swizy-v3x]) .wallet--ecc-cb .progress {
  height: 6px;
  background-color: rgba(37, 39, 39, 0.45);
}
:where(theme-provider[data-theme=swizy-v3x]) .wallet--ecc-cb .progress-bar {
  background-color: rgb(37, 39, 39);
}
:where(theme-provider[data-theme=swizy-v3x]) .wallet--ecc-cb .wallet__image-container {
  border: 1px solid rgba(0, 0, 0, 0.16);
  background-color: rgba(0, 0, 0, 0.06);
}
:where(theme-provider[data-theme=swizy-v3x]) .wallet--sub {
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .wallet--sub .badge {
  background-color: rgba(255, 255, 255, 0.06);
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .wallet--sub .progress {
  height: 6px;
  background-color: rgba(255, 255, 255, 0.45);
}
:where(theme-provider[data-theme=swizy-v3x]) .wallet--sub .progress-bar {
  background-color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .wallet--sub .wallet__image-container {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background-color: rgba(255, 255, 255, 0.06);
}
:where(theme-provider[data-theme=swizy-v3x]) .wallet--vacances {
  background: linear-gradient(102deg, #333333 19%, #111111 100%);
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .wallet--vacances .badge {
  background-color: rgba(255, 255, 255, 0.06);
  color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .wallet--vacances .progress {
  height: 6px;
  background-color: rgba(255, 255, 255, 0.45);
}
:where(theme-provider[data-theme=swizy-v3x]) .wallet--vacances .progress-bar {
  background-color: white;
}
:where(theme-provider[data-theme=swizy-v3x]) .wallet--vacances .wallet__image-container {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background-color: rgba(255, 255, 255, 0.06);
}
:where(theme-provider[data-theme=swizy-v3x]) .pswp__bg {
  background: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pswp.pswp--open {
  background-color: rgba(0, 0, 0, 0.6);
}
:where(theme-provider[data-theme=swizy-v3x]) .pswp__preloader {
  display: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .pswp__top-bar {
  height: 100vh !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pswp__top-bar .pswp__button--zoom {
  display: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pswp__top-bar .pswp__custom-top-bar {
  width: 100%;
  pointer-events: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pswp__top-bar .pswp__custom-bottom-bar {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  pointer-events: none !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .pswp__top-bar .pswp__custom-arrows {
  width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  z-index: 1100;
  pointer-events: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .pswp__top-bar .pswp-btn {
  pointer-events: all;
}
@media (max-width: 899.98px) {
  :where(theme-provider[data-theme=swizy-v3x]) .pswp__top-bar .pswp__custom-arrows {
    top: unset;
    bottom: 100px;
    -webkit-transform: unset;
    transform: unset;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .notification-item .form-check-input:not(:checked) {
  opacity: 0.3;
}
:where(theme-provider[data-theme=swizy-v3x]) .notification-item:hover .form-check-input {
  opacity: 1;
}
:where(theme-provider[data-theme=swizy-v3x]) .notification-item--unread {
  background-color: rgb(239.7, 248.814893617, 255);
}
:where(theme-provider[data-theme=swizy-v3x]) .h-scrollable {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  overflow-x: scroll;
}
:where(theme-provider[data-theme=swizy-v3x]) .h-scrollable::-webkit-scrollbar {
  display: none;
}
:where(theme-provider[data-theme=swizy-v3x]) .h-scrollable {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
:where(theme-provider[data-theme=swizy-v3x]) .sidebar-container {
  width: 300px;
  min-width: 300px;
}
:where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-actualites {
  background-image: url("../assets/images/actualites_placeholder.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30%;
}
:where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-albums {
  background-image: url("../assets/images/albums_placeholder.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30%;
}
:where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-annonces {
  background-image: url("../assets/images/annonces_placeholder.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30%;
}
:where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-articles {
  background-image: url("../assets/images/articles_placeholder.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30%;
}
:where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-enquetes {
  background-image: url("../assets/images/enquetes_placeholder.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30%;
}
:where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-equipes {
  background-image: url("../assets/images/equipes_placeholder.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30%;
}
:where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-evenements {
  background-image: url("../assets/images/evenements_placeholder.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30%;
}
:where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-jeux_concours {
  background-image: url("../assets/images/jeux_concours_placeholder.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30%;
}
:where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-sondages {
  background-image: url("../assets/images/sondages_placeholder.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30%;
}
:where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-music {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
:where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-music::after {
  content: "\f025";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  font-size: 3rem;
  color: #C2C2C2;
}
:where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-book {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
:where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-book::after {
  content: "\f02d";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  font-size: 3rem;
  color: #C2C2C2;
}
:where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-movie {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
:where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-movie::after {
  content: "\e131";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  font-size: 3rem;
  color: #C2C2C2;
}
:where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-game {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
:where(theme-provider[data-theme=swizy-v3x]) .image-placeholder-game::after {
  content: "\f11b";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  font-size: 3rem;
  color: #C2C2C2;
}
:where(theme-provider[data-theme=swizy-v3x]) .pa-admin-item__image {
  width: 100px;
}
@media (min-width: 600px) {
  :where(theme-provider[data-theme=swizy-v3x]) .pa-admin-item__image {
    width: 200px;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
:where(theme-provider[data-theme=swizy-v3x]) .page__title-container__title {
  font-weight: 700;
}
:where(theme-provider[data-theme=swizy-v3x]) .page__title-container__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
:where(theme-provider[data-theme=swizy-v3x]) .page__title-container__header__toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
:where(theme-provider[data-theme=swizy-v3x]) .page__title-container__header__toolbar .btn, :where(theme-provider[data-theme=swizy-v3x]) .page__title-container__header__toolbar .nav-pills .nav-link, :where(theme-provider[data-theme=swizy-v3x]) .nav-pills .page__title-container__header__toolbar .nav-link, :where(theme-provider[data-theme=swizy-v3x]) .page__title-container__header__toolbar .popover__btn-close, :where(theme-provider[data-theme=swizy-v3x]) .page__title-container__header__toolbar .modal-header .btn-close, :where(theme-provider[data-theme=swizy-v3x]) .modal-header .page__title-container__header__toolbar .btn-close {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (max-width: 899.98px) {
  :where(theme-provider[data-theme=swizy-v3x]) .page__title-container__header__toolbar--sticky {
    position: fixed;
    z-index: 1020;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    padding: 1rem;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .footer__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
:where(theme-provider[data-theme=swizy-v3x]) .footer__list-item a {
  color: #252628;
  font-weight: 500;
}
:where(theme-provider[data-theme=swizy-v3x]) .footer__list-item__icon {
  margin-right: 0.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .footer__list-item--underline {
  text-decoration: underline;
}
:where(theme-provider[data-theme=swizy-v3x]) .footer__app-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
:where(theme-provider[data-theme=swizy-v3x]) .footer__app-links a {
  max-width: 140px;
  height: auto;
  width: 100%;
}
:where(theme-provider[data-theme=swizy-v3x]) .footer__app-links a img {
  width: 100%;
}
@media (max-width: 899.98px) {
  :where(theme-provider[data-theme=swizy-v3x]) .footer__app-links a {
    height: 40px;
    width: auto;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .footer__app-links a img {
    height: 100%;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .html-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .app-header {
  z-index: 1030;
  position: sticky;
  background-color: #ffffff;
  top: 0;
  left: 0;
  right: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) .app-header__logo {
  height: 48px;
}
:where(theme-provider[data-theme=swizy-v3x]) .app-header__logo img {
  height: 100%;
}
:where(theme-provider[data-theme=swizy-v3x]) .app-header .second-row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 50px;
}
@media (max-width: 899.98px) {
  :where(theme-provider[data-theme=swizy-v3x]) .app-header .second-row {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .app-header .second-row .right-view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 899.98px) {
  :where(theme-provider[data-theme=swizy-v3x]) .app-header .second-row nav.main-menu {
    display: none !important;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) ul.sf-menu {
  padding-left: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) ul.sf-menu ul.nav-child li,
:where(theme-provider[data-theme=swizy-v3x]) ul.sf-menu ul li,
:where(theme-provider[data-theme=swizy-v3x]) ul.sf-menu ul,
:where(theme-provider[data-theme=swizy-v3x]) ul.sf-menu li {
  background: #ffffff;
}
:where(theme-provider[data-theme=swizy-v3x]) ul.sf-menu li.deeper .sf-with-ul {
  padding-right: 0.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) ul.sf-menu li.deeper.sfHover {
  background: rgba(37, 38, 40, 0.06);
}
:where(theme-provider[data-theme=swizy-v3x]) ul.sf-menu > li.deeper.sfHover > a::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
:where(theme-provider[data-theme=swizy-v3x]) ul.sf-menu > li.deeper > a::after {
  font-family: "Font Awesome 6 pro";
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  border: none;
  top: unset;
  right: unset;
  margin-top: unset;
  width: unset;
  height: unset;
  content: "\f107";
  position: relative;
  margin-left: 0.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) ul.sf-menu ul > li.deeper.sfHover > a::after {
  -webkit-transform: none;
  transform: none;
}
:where(theme-provider[data-theme=swizy-v3x]) ul.sf-menu ul > li.deeper > a::after {
  font-family: "Font Awesome 6 pro";
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  border: none;
  top: unset;
  right: unset;
  margin-top: unset;
  width: unset;
  height: unset;
  content: "\f105";
  position: absolute;
  right: 1rem;
}
:where(theme-provider[data-theme=swizy-v3x]) ul.sf-menu li.deeper ul {
  padding-left: 0;
  border-radius: 0.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) ul.sf-menu li.deeper ul li:first-of-type {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) ul.sf-menu li.deeper ul li:last-of-type {
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) ul.sf-menu li.deeper li.current {
  border-bottom: 2px solid rgba(37, 38, 40, 0.16);
}
:where(theme-provider[data-theme=swizy-v3x]) ul.sf-menu > li {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) ul.sf-menu ul.nav-child li:hover,
:where(theme-provider[data-theme=swizy-v3x]) ul.sf-menu li:hover {
  background: rgba(37, 38, 40, 0.06);
}
:where(theme-provider[data-theme=swizy-v3x]) ul.sf-menu a, :where(theme-provider[data-theme=swizy-v3x]) ul.sf-menu span {
  font-weight: 500;
  border: none;
}
:where(theme-provider[data-theme=swizy-v3x]) ul.sf-menu.sf-vertical.sf-accordion ul {
  position: relative;
  left: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
}
:where(theme-provider[data-theme=swizy-v3x]) ul.sf-menu.sf-vertical.sf-accordion a, :where(theme-provider[data-theme=swizy-v3x]) ul.sf-menu.sf-vertical.sf-accordion span {
  padding: 1rem;
  display: block;
}
:where(theme-provider[data-theme=swizy-v3x]) ul.sf-menu.sf-vertical.sf-accordion li {
  border-bottom: 1px solid rgba(37, 38, 40, 0.16);
  border-radius: 0 !important;
}
:where(theme-provider[data-theme=swizy-v3x]) ul.sf-menu.sf-vertical.sf-accordion li:last-child {
  border-bottom: none;
}
:where(theme-provider[data-theme=swizy-v3x]) ul.sf-menu.sf-vertical.sf-accordion li.current {
  background-color: rgba(37, 38, 40, 0.06);
  border-bottom: none;
}
:where(theme-provider[data-theme=swizy-v3x]) ul.sf-menu.sf-vertical.sf-accordion li.deeper.sfHover > span::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
:where(theme-provider[data-theme=swizy-v3x]) ul.sf-menu.sf-vertical.sf-accordion > li.deeper > a::after {
  font-family: "Font Awesome 6 pro";
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  border: none;
  top: unset;
  right: unset;
  margin-top: unset;
  width: unset;
  height: unset;
  content: "\f107";
  position: absolute;
  right: 1.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .section-newsletter {
  margin-bottom: -2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
:where(theme-provider[data-theme=swizy-v3x]) .section-newsletter__surtitle {
  text-align: center;
  font-weight: 700;
}
:where(theme-provider[data-theme=swizy-v3x]) .section-newsletter__title {
  text-align: center;
  font-weight: 700;
}
:where(theme-provider[data-theme=swizy-v3x]) .section-newsletter__container-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 899.98px) {
  :where(theme-provider[data-theme=swizy-v3x]) .section-newsletter__container-cta {
    min-width: 100%;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .section-newsletter__container-cta__input {
  padding-left: 3rem;
  min-width: 300px;
  position: relative;
  background-color: #ffffff;
}
:where(theme-provider[data-theme=swizy-v3x]) .section-newsletter__container-cta__input input:disabled {
  background-color: #ffffff;
  color: #252628;
  border: none;
  height: 100%;
  font-weight: 500;
}
:where(theme-provider[data-theme=swizy-v3x]) .section-newsletter__container-cta__input i {
  position: absolute;
  left: 20px;
  top: 35%;
}
@media (max-width: 899.98px) {
  :where(theme-provider[data-theme=swizy-v3x]) .section-newsletter__container-cta__input {
    height: 42px;
    min-width: 100%;
  }
  :where(theme-provider[data-theme=swizy-v3x]) .section-newsletter__container-cta__input input:disabled {
    min-width: 100%;
  }
}
:where(theme-provider[data-theme=swizy-v3x]) .section-newsletter__consent {
  text-align: center;
}
:where(theme-provider[data-theme=swizy-v3x]) .page-image {
  position: relative;
  height: 100%;
}
:where(theme-provider[data-theme=swizy-v3x]) .page-image__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border: 1px solid rgba(37, 38, 40, 0.15);
  overflow: hidden;
}
:where(theme-provider[data-theme=swizy-v3x]) .page-image__badges-container {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .swiper-album {
  overflow: visible !important;
}
:where(theme-provider[data-theme=swizy-v3x]) .swiper-album .swiper-slide {
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  max-width: 350px;
}
:where(theme-provider[data-theme=swizy-v3x]) .swiper-album .swiper-slide img {
  width: 100%;
  height: 100%;
  max-height: 350px;
  display: block;
}
:where(theme-provider[data-theme=swizy-v3x]) .swiper-album .swiper-slide:hover {
  -webkit-transform: rotate(0) scale(1.05) !important;
  transform: rotate(0) scale(1.05) !important;
  opacity: 0.8;
}
:where(theme-provider[data-theme=swizy-v3x]) .swiper-hero .swiper-wrapper .swiper-slide {
  height: auto;
  -webkit-transition: opacity 1.5s ease-out;
  transition: opacity 1.5s ease-out;
}
:where(theme-provider[data-theme=swizy-v3x]) .swiper-hero .swiper-wrapper .swiper-slide-prev {
  opacity: 0.6;
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, color-stop(80%, rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
  -webkit-mask-image: linear-gradient(to right, rgba(255, 255, 255, 0) 80%, rgb(255, 255, 255) 100%);
  mask-image: -webkit-gradient(linear, left top, right top, color-stop(80%, rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
  mask-image: linear-gradient(to right, rgba(255, 255, 255, 0) 80%, rgb(255, 255, 255) 100%);
}
:where(theme-provider[data-theme=swizy-v3x]) .swiper-hero .swiper-wrapper .swiper-slide-next {
  opacity: 0.6;
  -webkit-mask-image: -webkit-gradient(linear, right top, left top, color-stop(80%, rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
  -webkit-mask-image: linear-gradient(to left, rgba(255, 255, 255, 0) 80%, rgb(255, 255, 255) 100%);
  mask-image: -webkit-gradient(linear, right top, left top, color-stop(80%, rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
  mask-image: linear-gradient(to left, rgba(255, 255, 255, 0) 80%, rgb(255, 255, 255) 100%);
}
:where(theme-provider[data-theme=swizy-v3x]) .swiper-hero .swiper-wrapper .swiper-slide-active {
  opacity: 1;
}
:where(theme-provider[data-theme=swizy-v3x]) .swiper-bonsplans .swiper-nav-prev {
  left: 0.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .swiper-bonsplans .swiper-nav-next {
  right: 0.5rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .petite-annonce-main-swiper .swiper-nav-next {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 1rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .petite-annonce-main-swiper .swiper-nav-prev {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 1rem;
}
:where(theme-provider[data-theme=swizy-v3x]) .petite-annonce-thumb-swiper .swiper-slide:not(.swiper-slide-thumb-active) {
  opacity: 0.5;
}
:where(theme-provider[data-theme=swizy-v3x]) .petite-annonce-thumb-swiper .swiper-slide {
  width: 78px !important;
  height: 78px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
:where(theme-provider[data-theme=swizy-v3x]) .petite-annonce-thumb-swiper .swiper-slide-active > div {
  border: 1px solid #252628;
}